diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 103216aa29..9314e96dd8 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -39,7 +39,7 @@ jobs:
run: cd clients && pnpm i
- name: Build components and core-tools to run tests in clients
- run: cd clients && pnpm --filter "./libs/**" m run build
+ run: cd clients && pnpm --filter "./libs/slate-*" --filter "./libs/core-tools" --filter "./libs/ckeditor5-*" m run build
- name: Run tests
run: cd clients && pnpm test
diff --git a/clients/Dockerfile b/clients/Dockerfile
index 89d25242b3..ca43853cb8 100644
--- a/clients/Dockerfile
+++ b/clients/Dockerfile
@@ -44,6 +44,6 @@ ENV SKIP_PREFLIGHT_CHECK=true
RUN pnpm i
-RUN pnpm --filter "./libs/**" m run build
+RUN pnpm --filter "./libs/slate-*" --filter "./libs/core-tools" --filter "./libs/ckeditor5-*" m run build
-RUN pnpm --filter "./packages/**" m run build
+RUN pnpm --filter "./packages/accounts-client" --filter "./packages/canary-client" --filter "./packages/admin-client" m run build
diff --git a/clients/deploy/docker-compose.yml b/clients/deploy/docker-compose.yml
index 51e9ba5b18..08146adb0c 100644
--- a/clients/deploy/docker-compose.yml
+++ b/clients/deploy/docker-compose.yml
@@ -52,7 +52,7 @@ services:
traefik.http.routers.admin-canary.tls.certresolver: myresolver
redes:
- image: ${DOCKER_IMAGE:-nossas/bonde-clients:v7.7.2}
+ image: ${DOCKER_REDES_IMAGE:-nossas/bonde-clients:v7.7.2}
command: pnpm --filter redes-client start
restart: "${DOCKER_RESTART_POLICY:-unless-stopped}"
pull_policy: always
@@ -69,7 +69,7 @@ services:
traefik.http.routers.redes.tls.certresolver: myresolver
public:
- image: ${DOCKER_IMAGE:-nossas/bonde-clients:v7.7.2}
+ image: ${DOCKER_WEBPAGE_IMAGE:-nossas/bonde-clients:v7.7.2}
command: pnpm --filter webpage-client start
restart: "${DOCKER_RESTART_POLICY:-unless-stopped}"
pull_policy: always
diff --git a/clients/libs/ckeditor5-custom-build/LICENSE.md b/clients/libs/ckeditor5-custom-build/LICENSE.md
new file mode 100644
index 0000000000..ff91115678
--- /dev/null
+++ b/clients/libs/ckeditor5-custom-build/LICENSE.md
@@ -0,0 +1,49 @@
+Software License Agreement
+==========================
+
+Copyright (c) 2014-2024, CKSource Holding sp. z o.o. All rights reserved.
+
+Online builder code samples are licensed under the terms of the MIT License (see Appendix A):
+
+ http://en.wikipedia.org/wiki/MIT_License
+
+CKEditor 5 collaboration features are only available under a commercial license. [Contact us](https://ckeditor.com/contact/) for more details.
+
+Free 30-days trials of CKEditor 5 collaboration features are available:
+ * https://ckeditor.com/collaboration/ - Real-time collaboration (with all features).
+ * https://ckeditor.com/collaboration/comments/ - Inline comments feature (without real-time collaborative editing).
+ * https://ckeditor.com/collaboration/track-changes/ - Track changes feature (without real-time collaborative editing).
+
+Trademarks
+----------
+
+CKEditor is a trademark of CKSource Holding sp. z o.o. All other brand
+and product names are trademarks, registered trademarks or service
+marks of their respective holders.
+
+---
+
+Appendix A: The MIT License
+---------------------------
+
+The MIT License (MIT)
+
+Copyright (c) 2014-2024, CKSource Holding sp. z o.o.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/clients/libs/ckeditor5-custom-build/README.md b/clients/libs/ckeditor5-custom-build/README.md
new file mode 100644
index 0000000000..7a00498aba
--- /dev/null
+++ b/clients/libs/ckeditor5-custom-build/README.md
@@ -0,0 +1,60 @@
+# CKEditor 5 editor generated with the online builder
+
+This repository presents a CKEditor 5 editor build generated by the [Online builder tool](https://ckeditor.com/ckeditor-5/online-builder)
+
+## Quick start
+
+1. Open the `sample/index.html` page in the browser.
+
+2. Fill the prompt with the license key. If you do not have the license key yet [contact us](https://ckeditor.com/contact/).
+
+## Configuring build
+
+Changes like changing toolbar items, changing order of icons or customizing plugin configurations should be relatively easy to make. Open the `sample/index.html` file and edit the script that initialized the CKEditor 5. Save the file and refresh the browser. That's all.
+
+*Note:* If you have any problems with browser caching use the `Ctrl + R` or `Cmd + R` shortcut depending on your system.
+
+However if you want to remove or add a plugin to the build you need to follow the next step of this guide.
+
+Note that it is also possible to go back to the [Online builder tool](https://ckeditor.com/ckeditor-5/online-builder) and pick other set of plugins. But we encourage you to try the harder way and to learn the principles of Node.js and CKEditor 5 ecosystems that will allow you to do more cool things in the future!
+
+### Installation
+
+In order to rebuild the application you need to install all dependencies first. To do it, open the terminal in the project directory and type:
+
+```
+npm install
+```
+
+Make sure that you have the `node` and `npm` installed first. If not, then follow the instructions on the [Node.js documentation page](https://nodejs.org/en/).
+
+### Adding or removing plugins
+
+Now you can install additional plugin in the build. Just follow the [Adding a plugin to an editor tutorial](https://ckeditor.com/docs/ckeditor5/latest/installation/plugins/installing-plugins.html#adding-a-plugin-to-an-editor)
+
+### Rebuilding editor
+
+If you have already done the [Installation](#installation) and [Adding or removing plugins](#adding-or-removing-plugins) steps, you're ready to rebuild the editor by running the following command:
+
+```
+npm run build
+```
+
+This will build the CKEditor 5 to the `build` directory. You can open your browser and you should be able to see the changes you've made in the code. If not, then try to refresh also the browser cache by typing `Ctrl + R` or `Cmd + R` depending on your system.
+
+## What's next?
+
+Follow the guides available on https://ckeditor.com/docs/ckeditor5/latest/framework/index.html and enjoy the document editing.
+
+## FAQ
+| Where is the place to report bugs and feature requests?
+
+You can create an issue on https://github.com/ckeditor/ckeditor5/issues including the build id - `93okfd2y7ie6-b0yvsfceumgh`. Make sure that the question / problem is unique, please look for a possibly asked questions in the search box. Duplicates will be closed.
+
+| Where can I learn more about the CKEditor 5 framework?
+
+Here: https://ckeditor.com/docs/ckeditor5/latest/framework/
+
+| Is it possible to use online builder with common frameworks like React, Vue or Angular?
+
+Not yet, but it these integrations will be available at some point in the future.
diff --git a/clients/libs/ckeditor5-custom-build/package.json b/clients/libs/ckeditor5-custom-build/package.json
new file mode 100644
index 0000000000..3fab8a7e29
--- /dev/null
+++ b/clients/libs/ckeditor5-custom-build/package.json
@@ -0,0 +1,53 @@
+{
+ "name": "ckeditor5-custom-build",
+ "author": "CKSource",
+ "description": "A custom CKEditor 5 build made by the CKEditor 5 online builder.",
+ "version": "0.0.1",
+ "license": "SEE LICENSE IN LICENSE.md",
+ "private": true,
+ "main": "./build/ckeditor.js",
+ "types": "./build/ckeditor.d.ts",
+ "dependencies": {
+ "@ckeditor/ckeditor5-alignment": "41.4.2",
+ "@ckeditor/ckeditor5-basic-styles": "41.4.2",
+ "@ckeditor/ckeditor5-block-quote": "41.4.2",
+ "@ckeditor/ckeditor5-cloud-services": "41.4.2",
+ "@ckeditor/ckeditor5-editor-classic": "41.4.2",
+ "@ckeditor/ckeditor5-essentials": "41.4.2",
+ "@ckeditor/ckeditor5-font": "41.4.2",
+ "@ckeditor/ckeditor5-heading": "41.4.2",
+ "@ckeditor/ckeditor5-html-support": "41.4.2",
+ "@ckeditor/ckeditor5-image": "41.4.2",
+ "@ckeditor/ckeditor5-indent": "41.4.2",
+ "@ckeditor/ckeditor5-link": "41.4.2",
+ "@ckeditor/ckeditor5-list": "41.4.2",
+ "@ckeditor/ckeditor5-media-embed": "41.4.2",
+ "@ckeditor/ckeditor5-paragraph": "41.4.2",
+ "@ckeditor/ckeditor5-special-characters": "41.4.2",
+ "@ckeditor/ckeditor5-style": "41.4.2",
+ "@ckeditor/ckeditor5-table": "41.4.2",
+ "@ckeditor/ckeditor5-undo": "41.4.2",
+ "@ckeditor/ckeditor5-upload": "41.4.2"
+ },
+ "devDependencies": {
+ "@ckeditor/ckeditor5-core": "41.4.2",
+ "@ckeditor/ckeditor5-dev-translations": "^32.1.2",
+ "@ckeditor/ckeditor5-dev-utils": "^32.1.2",
+ "@ckeditor/ckeditor5-theme-lark": "41.4.2",
+ "css-loader": "^5.2.7",
+ "postcss": "^8.4.38",
+ "postcss-loader": "^4.3.0",
+ "raw-loader": "^4.0.2",
+ "style-loader": "^2.0.0",
+ "terser-webpack-plugin": "^4.2.3",
+ "ts-loader": "^9.5.1",
+ "typescript": "5.0.4",
+ "webpack": "^5.91.0",
+ "webpack-cli": "^4.10.0"
+ },
+ "scripts": {
+ "prepare": "webpack --mode production",
+ "build": "webpack --mode production",
+ "postbuild": "tsc --declaration --declarationDir build --stripInternal --emitDeclarationOnly"
+ }
+}
diff --git a/clients/libs/ckeditor5-custom-build/sample/index.html b/clients/libs/ckeditor5-custom-build/sample/index.html
new file mode 100644
index 0000000000..10e999eb9c
--- /dev/null
+++ b/clients/libs/ckeditor5-custom-build/sample/index.html
@@ -0,0 +1,107 @@
+
+
+
+
+ CKEditor 5 ClassicEditor build
+
+
+
+
+
+
+
+
+
+
CKEditor 5 online builder demo - ClassicEditor build
+
+
+
+
+
+
+
Bilingual Personality Disorder
+
+ One language, one person.
+
+
+ This may be the first time you hear about this made-up disorder but
+ it actually isn’t so far from the truth. Even the studies that were conducted almost half a century show that
+ the language you speak has more effects on you than you realize .
+
+
+ One of the very first experiments conducted on this topic dates back to 1964.
+ In the experiment
+ designed by linguist Ervin-Tripp who is an authority expert in psycholinguistic and sociolinguistic studies,
+ adults who are bilingual in English in French were showed series of pictures and were asked to create 3-minute stories.
+ In the end participants emphasized drastically different dynamics for stories in English and French.
+
+
+ Another ground-breaking experiment which included bilingual Japanese women married to American men in San Francisco were
+ asked to complete sentences. The goal of the experiment was to investigate whether or not human feelings and thoughts
+ are expressed differently in different language mindsets .
+ Here is a sample from the the experiment:
+
+
+
+
+
+ English
+ Japanese
+
+
+
+
+ Real friends should
+ Be very frank
+ Help each other
+
+
+ I will probably become
+ A teacher
+ A housewife
+
+
+ When there is a conflict with family
+ I do what I want
+ It's a time of great unhappiness
+
+
+
+
+ More recent studies show, the language a person speaks affects
+ their cognition, behaviour, emotions and hence their personality .
+ This shouldn’t come as a surprise
+ since we already know that different regions
+ of the brain become more active depending on the person’s activity at hand. Since structure, information and especially
+ the culture of languages varies substantially and the language a person speaks is an essential element of daily life.
+
+
+
+
+
+
+ CKEditor 5
+ – Rich text editor of tomorrow, available today
+
+ Copyright © 2003-2024,
+ CKSource
+ Holding sp. z o.o. All rights reserved.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/clients/libs/ckeditor5-custom-build/sample/script.js b/clients/libs/ckeditor5-custom-build/sample/script.js
new file mode 100644
index 0000000000..46f4bdfa79
--- /dev/null
+++ b/clients/libs/ckeditor5-custom-build/sample/script.js
@@ -0,0 +1,20 @@
+ClassicEditor
+ .create( document.querySelector( '.editor' ), {
+ // Editor configuration.
+ } )
+ .then( editor => {
+ window.editor = editor;
+ } )
+ .catch( handleSampleError );
+
+function handleSampleError( error ) {
+ const issueUrl = 'https://github.com/ckeditor/ckeditor5/issues';
+
+ const message = [
+ 'Oops, something went wrong!',
+ `Please, report the following error on ${ issueUrl } with the build id "93okfd2y7ie6-b0yvsfceumgh" and the error stack trace:`
+ ].join( '\n' );
+
+ console.error( message );
+ console.error( error );
+}
diff --git a/clients/libs/ckeditor5-custom-build/sample/styles.css b/clients/libs/ckeditor5-custom-build/sample/styles.css
new file mode 100644
index 0000000000..d3700160bd
--- /dev/null
+++ b/clients/libs/ckeditor5-custom-build/sample/styles.css
@@ -0,0 +1,514 @@
+/**
+ * @license Copyright (c) 2014-2024, CKSource Holding sp. z o.o. All rights reserved.
+ * This file is licensed under the terms of the MIT License (see LICENSE.md).
+ */
+
+:root {
+ --ck-sample-base-spacing: 2em;
+ --ck-sample-color-white: #fff;
+ --ck-sample-color-green: #279863;
+ --ck-sample-color-blue: #1a9aef;
+ --ck-sample-container-width: 1285px;
+ --ck-sample-sidebar-width: 350px;
+ --ck-sample-editor-min-height: 400px;
+ --ck-sample-editor-z-index: 10;
+}
+
+/* --------- EDITOR STYLES ---------------------------------------------------------------------------------------- */
+
+.editor__editable,
+/* Classic build. */
+main .ck-editor[role='application'] .ck.ck-content,
+/* Decoupled document build. */
+.ck.editor__editable[role='textbox'],
+.ck.ck-editor__editable[role='textbox'],
+/* Inline & Balloon build. */
+.ck.editor[role='textbox'] {
+ width: 100%;
+ background: #fff;
+ font-size: 1em;
+ line-height: 1.6em;
+ min-height: var(--ck-sample-editor-min-height);
+ padding: 1.5em 2em;
+}
+
+.ck.ck-editor__editable {
+ background: #fff;
+ border: 1px solid hsl(0, 0%, 70%);
+ width: 100%;
+}
+
+/* Because of sidebar `position: relative`, Edge is overriding the outline of a focused editor. */
+.ck.ck-editor__editable {
+ position: relative;
+ z-index: var(--ck-sample-editor-z-index);
+}
+
+.editor-container {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: nowrap;
+ position: relative;
+ width: 100%;
+ justify-content: center;
+}
+
+.editor-container--with-sidebar > .ck.ck-editor {
+ width: calc( 100% - var(--ck-sample-sidebar-width) );
+}
+
+/* --------- DECOUPLED (DOCUMENT) BUILD. ---------------------------------------------*/
+body[data-editor='DecoupledEditor'] .document-editor__toolbar {
+ width: 100%;
+}
+
+body[data-editor='DecoupledEditor'] .collaboration-demo__editable,
+body[data-editor='DecoupledEditor'] .row-editor .editor {
+ /* A pixel is added for each of the border. */
+ width: calc(21cm + 2px);
+ min-height: calc(29.7cm + 2px);
+ /* To avoid having extra scrolls inside the editor container. */
+ height: fit-content;
+ padding: 2cm 1.2cm;
+ margin: 2.5rem;
+ border: 1px hsl( 0, 0%, 82.7% ) solid;
+ background-color: var(--ck-sample-color-white);
+ box-shadow: 0 0 5px hsla( 0, 0%, 0%, .1 );
+ box-sizing: border-box;
+}
+
+body[data-editor='DecoupledEditor'] .row-editor {
+ display: flex;
+ position: relative;
+ justify-content: center;
+ overflow-y: auto;
+ background-color: #f2f2f2;
+ border: 1px solid hsl(0, 0%, 77%);
+ /* Limit the max-height of the editor to avoid scrolling from bottom to top to see the toolbar. */
+ max-height: 700px;
+}
+
+body[data-editor='DecoupledEditor'] .sidebar {
+ background: transparent;
+ border: 0;
+ box-shadow: none;
+}
+
+/* --------- COMMENTS & TRACK CHANGES FEATURE ---------------------------------------------------------------------- */
+.sidebar {
+ padding: 0 15px;
+ position: relative;
+ min-width: var(--ck-sample-sidebar-width);
+ max-width: var(--ck-sample-sidebar-width);
+ font-size: 20px;
+ border: 1px solid hsl(0, 0%, 77%);
+ background: hsl(0, 0%, 98%);
+ border-left: 0;
+ overflow: hidden;
+ min-height: 100%;
+ flex-grow: 1;
+}
+
+/* Do not inherit styles related to the editable editor content. See line 25.*/
+.sidebar .ck-content[role='textbox'],
+.ck.ck-annotation-wrapper .ck-content[role='textbox'] {
+ min-height: unset;
+ width: unset;
+ padding: 0;
+ background: transparent;
+}
+
+.sidebar.narrow {
+ min-width: 60px;
+ flex-grow: 0;
+}
+
+.sidebar.hidden {
+ display: none !important;
+}
+
+#sidebar-display-toggle {
+ position: absolute;
+ z-index: 1;
+ width: 30px;
+ height: 30px;
+ text-align: center;
+ left: 15px;
+ top: 30px;
+ border: 0;
+ padding: 0;
+ color: hsl( 0, 0%, 50% );
+ transition: 250ms ease color;
+ background-color: transparent;
+}
+
+#sidebar-display-toggle:hover {
+ color: hsl( 0, 0%, 30% );
+ cursor: pointer;
+}
+
+#sidebar-display-toggle:focus,
+#sidebar-display-toggle:active {
+ outline: none;
+ border: 1px solid #a9d29d;
+}
+
+#sidebar-display-toggle svg {
+ fill: currentColor;
+}
+
+/* --------- COLLABORATION FEATURES (USERS) ------------------------------------------------------------------------ */
+.row-presence {
+ width: 100%;
+ border: 1px solid hsl(0, 0%, 77%);
+ border-bottom: 0;
+ background: hsl(0, 0%, 98%);
+ padding: var(--ck-spacing-small);
+
+ /* Make `border-bottom` as `box-shadow` to not overlap with the editor border. */
+ box-shadow: 0 1px 0 0 hsl(0, 0%, 77%);
+
+ /* Make `z-index` bigger than `.editor` to properly display tooltips. */
+ z-index: 20;
+}
+
+.ck.ck-presence-list {
+ flex: 1;
+ padding: 1.25rem .75rem;
+}
+
+.presence .ck.ck-presence-list__counter {
+ order: 2;
+ margin-left: var(--ck-spacing-large)
+}
+
+/* --------- REAL TIME COLLABORATION FEATURES (SHARE TOPBAR CONTAINER) --------------------------------------------- */
+.collaboration-demo__row {
+ display: flex;
+ position: relative;
+ justify-content: center;
+ overflow-y: auto;
+ background-color: #f2f2f2;
+ border: 1px solid hsl(0, 0%, 77%);
+}
+
+body[data-editor='InlineEditor'] .collaboration-demo__row {
+ border: 0;
+}
+
+.collaboration-demo__container {
+ max-width: var(--ck-sample-container-width);
+ margin: 0 auto;
+ padding: 1.25rem;
+}
+
+.presence, .collaboration-demo__row {
+ transition: .2s opacity;
+}
+
+.collaboration-demo__topbar {
+ background: #fff;
+ border: 1px solid var(--ck-color-toolbar-border);
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ border-bottom: 0;
+ border-radius: 4px 4px 0 0;
+}
+
+.collaboration-demo__topbar .btn {
+ margin-right: 1em;
+ outline-offset: 2px;
+ outline-width: 2px;
+ background-color: var( --ck-sample-color-blue );
+}
+
+.collaboration-demo__topbar .btn:focus,
+.collaboration-demo__topbar .btn:hover {
+ border-color: var( --ck-sample-color-blue );
+}
+
+.collaboration-demo__share {
+ display: flex;
+ align-items: center;
+ padding: 1.25rem .75rem
+}
+
+.collaboration-demo__share-description p {
+ margin: 0;
+ font-weight: bold;
+ font-size: 0.9em;
+}
+
+.collaboration-demo__share input {
+ height: auto;
+ font-size: 0.9em;
+ min-width: 220px;
+ margin: 0 10px;
+ border-radius: 4px;
+ border: 1px solid var(--ck-color-toolbar-border)
+}
+
+.collaboration-demo__share button,
+.collaboration-demo__share input {
+ height: 40px;
+ padding: 5px 10px;
+}
+
+.collaboration-demo__share button {
+ position: relative;
+}
+
+.collaboration-demo__share button:focus {
+ outline: none;
+}
+
+.collaboration-demo__share button[data-tooltip]::before,
+.collaboration-demo__share button[data-tooltip]::after {
+ position: absolute;
+ visibility: hidden;
+ opacity: 0;
+ pointer-events: none;
+ transition: all .15s cubic-bezier(.5,1,.25,1);
+ z-index: 1;
+}
+
+.collaboration-demo__share button[data-tooltip]::before {
+ content: attr(data-tooltip);
+ padding: 5px 15px;
+ border-radius: 3px;
+ background: #111;
+ color: #fff;
+ text-align: center;
+ font-size: 11px;
+ top: 100%;
+ left: 50%;
+ margin-top: 5px;
+ transform: translateX(-50%);
+}
+
+.collaboration-demo__share button[data-tooltip]::after {
+ content: '';
+ border: 5px solid transparent;
+ width: 0;
+ font-size: 0;
+ line-height: 0;
+ top: 100%;
+ left: 50%;
+ transform: translateX(-50%);
+ border-bottom: 5px solid #111;
+ border-top: none;
+}
+
+.collaboration-demo__share button[data-tooltip]:hover:before,
+.collaboration-demo__share button[data-tooltip]:hover:after {
+ visibility: visible;
+ opacity: 1;
+}
+
+.collaboration-demo--ready {
+ overflow: visible;
+ height: auto;
+}
+
+.collaboration-demo--ready .presence,
+.collaboration-demo--ready .collaboration-demo__row {
+ opacity: 1;
+}
+
+/* --------- PAGINATION FEATURE ------------------------------------------------------------------------------------ */
+
+/* Pagination view line must be stacked at least at the same level as the editor,
+ otherwise it will be hidden underneath. */
+.ck.ck-pagination-view-line {
+ z-index: var(--ck-sample-editor-z-index);
+}
+
+/* --------- REVISION HISTORY FEATURE ------------------------------------------------------------------------------ */
+
+.revision-viewer-container {
+ display: none;
+ max-width: 100%;
+ word-wrap: break-word;
+}
+
+.revision-viewer-sidebar {
+ position: relative;
+ min-width: 310px;
+ overflow: hidden;
+ background: var(--ck-color-toolbar-background);
+ border: 1px solid var(--ck-color-toolbar-border);
+ margin-left: -1px;
+}
+
+/* A case when Pagination and Revision History features are enabled in the editor. */
+/* Move the square with page number from the Pagination plugin to the left side, so that it does not cover the RH sidebar. */
+body[data-revision-history='true'] .ck.ck-pagination-view-line::after {
+ transform: translateX(-100%) !important;
+ left: -1px !important;
+ right: unset !important;
+}
+
+/* --------- DOCUMENT OUTLINE FEATURE ------------------------------------------------------------------------------ */
+
+.document-outline-container {
+ max-height: 80vh;
+ overflow-y: auto;
+ margin-bottom: 1em;
+}
+
+.document-outline-container .ck.ck-document-outline {
+ min-height: 100%;
+ border: 1px solid var(--ck-color-base-border);
+ background-color: hsl(0, 0%, 96%);
+}
+
+/* --------- SAMPLE GENERIC STYLES (not related to CKEditor) ------------------------------------------------------- */
+body, html {
+ padding: 0;
+ margin: 0;
+
+ font-family: sans-serif, Arial, Verdana, "Trebuchet MS", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+ font-size: 16px;
+ line-height: 1.5;
+}
+
+body {
+ height: 100%;
+ color: #2D3A4A;
+}
+
+body * {
+ box-sizing: border-box;
+}
+
+a {
+ color: #38A5EE;
+}
+
+header .centered {
+ display: flex;
+ flex-flow: row nowrap;
+ justify-content: space-between;
+ align-items: center;
+ min-height: 8em;
+}
+
+header h1 a {
+ font-size: 20px;
+ display: flex;
+ align-items: center;
+ color: #2D3A4A;
+ text-decoration: none;
+}
+
+header h1 img {
+ display: block;
+ height: 64px;
+}
+
+header nav ul {
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+}
+
+header nav ul li {
+ display: inline-block;
+}
+
+header nav ul li + li {
+ margin-left: 1em;
+}
+
+header nav ul li a {
+ font-weight: bold;
+ text-decoration: none;
+ color: #2D3A4A;
+}
+
+header nav ul li a:hover {
+ text-decoration: underline;
+}
+
+main .message {
+ padding: 0 0 var(--ck-sample-base-spacing);
+ background: var(--ck-sample-color-green);
+ color: var(--ck-sample-color-white);
+}
+
+main .message::after {
+ content: "";
+ z-index: -1;
+ display: block;
+ height: 10em;
+ width: 100%;
+ background: var(--ck-sample-color-green);
+ position: absolute;
+ left: 0;
+}
+
+main .message h2 {
+ position: relative;
+ padding-top: 1em;
+ font-size: 2em;
+}
+
+.centered {
+ max-width: var(--ck-sample-container-width);
+ margin: 0 auto;
+ padding: 0 var(--ck-sample-base-spacing);
+}
+
+.row {
+ display: flex;
+ position: relative;
+}
+
+.btn {
+ cursor: pointer;
+ padding: 8px 16px;
+ font-size: 1rem;
+ user-select: none;
+ border-radius: 4px;
+ transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out,opacity .2s ease-in-out;
+ background-color: var(--ck-sample-color-button-blue);
+ border-color: var(--ck-sample-color-button-blue);
+ color: var(--ck-sample-color-white);
+ display: inline-block;
+}
+
+.btn--tiny {
+ padding: 6px 12px;
+ font-size: .8rem;
+}
+
+footer {
+ margin: calc(2*var(--ck-sample-base-spacing)) var(--ck-sample-base-spacing);
+ font-size: .8em;
+ text-align: center;
+ color: rgba(0,0,0,.4);
+}
+
+/* --------- RWD --------------------------------------------------------------------------------------------------- */
+@media screen and ( max-width: 800px ) {
+ :root {
+ --ck-sample-base-spacing: 1em;
+ }
+
+ header h1 {
+ width: 100%;
+ }
+
+ header h1 img {
+ height: 40px;
+ }
+
+ header nav ul {
+ text-align: right;
+ }
+
+ main .message h2 {
+ font-size: 1.5em;
+ }
+}
diff --git a/clients/libs/ckeditor5-custom-build/src/ckeditor.ts b/clients/libs/ckeditor5-custom-build/src/ckeditor.ts
new file mode 100644
index 0000000000..ed50d3c194
--- /dev/null
+++ b/clients/libs/ckeditor5-custom-build/src/ckeditor.ts
@@ -0,0 +1,129 @@
+/**
+ * @license Copyright (c) 2014-2024, CKSource Holding sp. z o.o. All rights reserved.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
+ */
+
+import { ClassicEditor } from '@ckeditor/ckeditor5-editor-classic';
+
+import { Alignment } from '@ckeditor/ckeditor5-alignment';
+import { Bold, Italic, Underline } from '@ckeditor/ckeditor5-basic-styles';
+import { BlockQuote } from '@ckeditor/ckeditor5-block-quote';
+import { CloudServices } from '@ckeditor/ckeditor5-cloud-services';
+import type { EditorConfig } from '@ckeditor/ckeditor5-core';
+import { Essentials } from '@ckeditor/ckeditor5-essentials';
+import { FontBackgroundColor, FontColor, FontFamily, FontSize } from '@ckeditor/ckeditor5-font';
+import { Heading } from '@ckeditor/ckeditor5-heading';
+import { GeneralHtmlSupport } from '@ckeditor/ckeditor5-html-support';
+import {
+ Image,
+ ImageCaption,
+ ImageInsert,
+ ImageResize,
+ ImageStyle,
+ ImageToolbar,
+ ImageUpload
+} from '@ckeditor/ckeditor5-image';
+import { Indent } from '@ckeditor/ckeditor5-indent';
+import { AutoLink, Link, LinkImage } from '@ckeditor/ckeditor5-link';
+import { List } from '@ckeditor/ckeditor5-list';
+import { MediaEmbed, MediaEmbedToolbar } from '@ckeditor/ckeditor5-media-embed';
+import { Paragraph } from '@ckeditor/ckeditor5-paragraph';
+import { SpecialCharacters } from '@ckeditor/ckeditor5-special-characters';
+import { Style } from '@ckeditor/ckeditor5-style';
+import { Table, TableCaption } from '@ckeditor/ckeditor5-table';
+import { Undo } from '@ckeditor/ckeditor5-undo';
+import { S3Upload } from './s3upload';
+
+// You can read more about extending the build with additional plugins in the "Installing plugins" guide.
+// See https://ckeditor.com/docs/ckeditor5/latest/installation/plugins/installing-plugins.html for details.
+
+class Editor extends ClassicEditor {
+ public static override builtinPlugins = [
+ Alignment,
+ AutoLink,
+ BlockQuote,
+ Bold,
+ CloudServices,
+ Essentials,
+ FontBackgroundColor,
+ FontColor,
+ FontFamily,
+ FontSize,
+ GeneralHtmlSupport,
+ Heading,
+ Image,
+ ImageCaption,
+ ImageInsert,
+ ImageResize,
+ ImageStyle,
+ ImageToolbar,
+ ImageUpload,
+ Indent,
+ Italic,
+ Link,
+ LinkImage,
+ List,
+ MediaEmbed,
+ MediaEmbedToolbar,
+ Paragraph,
+ S3Upload,
+ SpecialCharacters,
+ Style,
+ Table,
+ TableCaption,
+ Underline,
+ Undo
+ ];
+
+ public static override defaultConfig: EditorConfig = {
+ toolbar: {
+ items: [
+ 'undo',
+ 'redo',
+ '|',
+ 'heading',
+ '|',
+ 'bold',
+ 'italic',
+ 'underline',
+ 'blockQuote',
+ 'alignment',
+ '|',
+ 'FontBackgroundColor',
+ 'fontColor',
+ 'fontFamily',
+ 'fontSize',
+ '|',
+ 'link',
+ 'imageUpload',
+ 'imageInsert',
+ 'mediaEmbed',
+ 'insertTable',
+ '|',
+ 'bulletedList',
+ 'numberedList'
+ ]
+ },
+ language: 'pt-br',
+ heading: {
+ options: [
+ { model: 'paragraph', title: 'Paragraph', class: 'ck-heading_paragraph' },
+ { model: 'heading1', view: 'h1', title: 'Heading 1', class: 'ck-heading_heading1' },
+ { model: 'heading2', view: 'h2', title: 'Heading 2', class: 'ck-heading_heading2' },
+ { model: 'heading3', view: 'h3', title: 'Heading 3', class: 'ck-heading_heading3' }
+ ]
+ },
+ image: {
+ toolbar: [
+ 'imageTextAlternative',
+ 'toggleImageCaption',
+ 'imageStyle:inline',
+ 'imageStyle:block',
+ 'imageStyle:side',
+ 'linkImage'
+ ]
+ }
+ };
+}
+
+export default Editor;
diff --git a/clients/libs/ckeditor5-custom-build/src/s3upload.ts b/clients/libs/ckeditor5-custom-build/src/s3upload.ts
new file mode 100644
index 0000000000..e61a6ca5b5
--- /dev/null
+++ b/clients/libs/ckeditor5-custom-build/src/s3upload.ts
@@ -0,0 +1,109 @@
+import { Plugin } from '@ckeditor/ckeditor5-core';
+import FileRepository from '@ckeditor/ckeditor5-upload/src/filerepository';
+
+
+class Adapter {
+ loader: any;
+ url: any;
+ xhr: any;
+
+ constructor(loader: any, url: any) {
+ this.loader = loader;
+ this.url = url;
+ }
+
+ upload(): Promise {
+ return this.getCredentials().then(this.uploadImage.bind(this));
+ }
+
+ abort() {
+ if (this.xhr) this.xhr.abort();
+ }
+
+ getCredentials() {
+ return new Promise((resolve, reject) => {
+ this.loader.file.then((file: any) => {
+ var filename = file.name;
+ var contentType = file.type
+
+ if (!filename) return reject('No filename found');
+
+ const queryString = '?objectName=' + filename + '&contentType=' + encodeURIComponent(contentType);
+
+ this.xhr = new XMLHttpRequest();
+ var xhr = this.xhr;
+
+ this.xhr.withCredentials = false;
+ this.xhr.open('GET', this.url + queryString, true);
+ this.xhr.responseType = 'json';
+ this.xhr.setRequestHeader('Content-Type', 'application/json');
+ this.xhr.setRequestHeader('Access-Control-Allow-Origin', '*');
+
+ this.xhr.addEventListener('error', (err: any) => reject('crederr'));
+ this.xhr.addEventListener('abort', (err: any) => reject('credabort'));
+ this.xhr.addEventListener('load', function () {
+ var res = xhr.response;
+
+ if (!res) return reject('No response from s3 creds url');
+
+ resolve(res);
+ });
+
+ this.xhr.send();
+ })
+ });
+ }
+
+ uploadImage(s3creds: any) {
+ return new Promise((resolve, reject) => {
+
+ this.loader.file.then((file: any) => {
+ var xhr = this.xhr = new XMLHttpRequest();
+
+ xhr.addEventListener('error', err => reject('s3err'));
+ xhr.addEventListener('abort', err => reject('s3abort'));
+ xhr.addEventListener('load', () => {
+ if (xhr.status !== 200) {
+ console.log("S3Upload Error ---->", { xhr });
+ return reject(`Error ${xhr.status}: ${xhr.statusText}`);
+ }
+
+ const imgUrl = xhr.responseURL.split("?")[0];
+ console.log("S3Upload Success ---->", { url: imgUrl });
+ return resolve({
+ urls: {
+ default: imgUrl
+ }
+ });
+ });
+
+ xhr.open('PUT', s3creds.signedUrl, true);
+ xhr.setRequestHeader("X-Amz-Acl", "public-read")
+ xhr.send(file);
+ });
+ });
+ }
+}
+
+
+export class S3Upload extends Plugin {
+
+ static get requires() {
+ return [FileRepository];
+ }
+
+ static get pluginName() {
+ return 'S3Upload';
+ }
+
+ init() {
+ const url = this.editor.config.get('s3Upload.signingUrl');
+
+ if (!url) {
+ console.warn('s3Upload.signingUrl is not configured')
+ return;
+ }
+
+ this.editor.plugins.get('FileRepository').createUploadAdapter = (loader: any) => new Adapter(loader, url);
+ }
+}
\ No newline at end of file
diff --git a/clients/libs/ckeditor5-custom-build/tsconfig.json b/clients/libs/ckeditor5-custom-build/tsconfig.json
new file mode 100644
index 0000000000..4cbebfd250
--- /dev/null
+++ b/clients/libs/ckeditor5-custom-build/tsconfig.json
@@ -0,0 +1,23 @@
+{
+ "compilerOptions": {
+ "types": [],
+ "lib": [
+ "ES2019",
+ "ES2020.String",
+ "DOM",
+ "DOM.Iterable"
+ ],
+ "noImplicitAny": true,
+ "noImplicitOverride": true,
+ "strict": true,
+ "module": "es6",
+ "target": "es2019",
+ "sourceMap": true,
+ "allowJs": true,
+ "moduleResolution": "node",
+ "skipLibCheck": true
+ },
+ "include": [
+ "./src"
+ ]
+}
diff --git a/clients/libs/ckeditor5-custom-build/webpack.config.js b/clients/libs/ckeditor5-custom-build/webpack.config.js
new file mode 100644
index 0000000000..e4329146af
--- /dev/null
+++ b/clients/libs/ckeditor5-custom-build/webpack.config.js
@@ -0,0 +1,96 @@
+/**
+ * @license Copyright (c) 2014-2024, CKSource Holding sp. z o.o. All rights reserved.
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
+ */
+
+'use strict';
+
+/* eslint-env node */
+
+const path = require( 'path' );
+const webpack = require( 'webpack' );
+const { bundler, styles } = require( '@ckeditor/ckeditor5-dev-utils' );
+const { CKEditorTranslationsPlugin } = require( '@ckeditor/ckeditor5-dev-translations' );
+const TerserWebpackPlugin = require( 'terser-webpack-plugin' );
+
+module.exports = {
+ devtool: 'source-map',
+ performance: { hints: false },
+
+ entry: path.resolve( __dirname, 'src', 'ckeditor.ts' ),
+
+ output: {
+ // The name under which the editor will be exported.
+ library: 'ClassicEditor',
+
+ path: path.resolve( __dirname, 'build' ),
+ filename: 'ckeditor.js',
+ libraryTarget: 'umd',
+ libraryExport: 'default'
+ },
+
+ optimization: {
+ minimizer: [
+ new TerserWebpackPlugin( {
+ sourceMap: true,
+ terserOptions: {
+ output: {
+ // Preserve CKEditor 5 license comments.
+ comments: /^!/
+ }
+ },
+ extractComments: false
+ } )
+ ]
+ },
+
+ plugins: [
+ new CKEditorTranslationsPlugin( {
+ // UI language. Language codes follow the https://en.wikipedia.org/wiki/ISO_639-1 format.
+ // When changing the built-in language, remember to also change it in the editor's configuration (src/ckeditor.ts).
+ language: 'pt-br',
+ additionalLanguages: 'all'
+ } ),
+ new webpack.BannerPlugin( {
+ banner: bundler.getLicenseBanner(),
+ raw: true
+ } )
+ ],
+
+ resolve: {
+ extensions: [ '.ts', '.js', '.json' ]
+ },
+
+ module: {
+ rules: [ {
+ test: /\.svg$/,
+ use: [ 'raw-loader' ]
+ }, {
+ test: /\.ts$/,
+ use: 'ts-loader'
+ }, {
+ test: /\.css$/,
+ use: [ {
+ loader: 'style-loader',
+ options: {
+ injectType: 'singletonStyleTag',
+ attributes: {
+ 'data-cke': true
+ }
+ }
+ }, {
+ loader: 'css-loader'
+ }, {
+ loader: 'postcss-loader',
+ options: {
+ postcssOptions: styles.getPostCssConfig( {
+ themeImporter: {
+ themePath: require.resolve( '@ckeditor/ckeditor5-theme-lark' )
+ },
+ minify: true
+ } )
+ }
+ } ]
+ } ]
+ }
+};
diff --git a/clients/libs/components/.gitignore b/clients/libs/components/.gitignore
index 267a1149cb..27a3ac310a 100644
--- a/clients/libs/components/.gitignore
+++ b/clients/libs/components/.gitignore
@@ -6,7 +6,7 @@ dist
*.d.ts
storybook-static
# build folders
-__dist
-/form
-/chakra
-/icons
+# __dist
+# /form
+# /chakra
+# /icons
diff --git a/clients/libs/components/__dist/bonde-components.cjs.development.js b/clients/libs/components/__dist/bonde-components.cjs.development.js
new file mode 100644
index 0000000000..b4c0569e7e
--- /dev/null
+++ b/clients/libs/components/__dist/bonde-components.cjs.development.js
@@ -0,0 +1,3105 @@
+'use strict';
+
+Object.defineProperty(exports, '__esModule', { value: true });
+
+function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
+
+var React = require('react');
+var React__default = _interopDefault(React);
+var GoogleFontLoader = _interopDefault(require('react-google-font-loader'));
+var styled = require('styled-components');
+var styled__default = _interopDefault(styled);
+var reactTable = require('react-table');
+var react = require('@chakra-ui/react');
+var ReactSelect = require('react-select');
+var ReactSelect__default = _interopDefault(ReactSelect);
+var reactFinalForm = require('react-final-form');
+var ReactS3Uploader = _interopDefault(require('react-s3-uploader'));
+var reactColor = require('react-color');
+var colorMode = require('@chakra-ui/color-mode');
+var reactToastify = require('react-toastify');
+var styled$1 = _interopDefault(require('@emotion/styled'));
+
+const FontsLoader = () => React__default.createElement(GoogleFontLoader, {
+ fonts: [{
+ font: 'Nunito Sans',
+ weights: [400, 700, 800]
+ }],
+ subsets: ['cyrillic-ext', 'greek']
+});
+
+function _taggedTemplateLiteralLoose(strings, raw) {
+ if (!raw) {
+ raw = strings.slice(0);
+ }
+ strings.raw = raw;
+ return strings;
+}
+
+var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
+const Spark = /*#__PURE__*/styled__default.path(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n fill: ", ";\n animation-name: ", ";\n animation-duration: ", ";\n animation-iteration-count: infinite;\n"])), props => props.colorInit, props => props.pulse, props => props.duration);
+const Sparkles = _ref => {
+ let {
+ color,
+ colorInit,
+ duration
+ } = _ref;
+ return React__default.createElement(React__default.Fragment, null, React__default.createElement(Spark, {
+ colorInit: colorInit,
+ duration: duration,
+ pulse: styled.keyframes(_templateObject2 || (_templateObject2 = _taggedTemplateLiteralLoose(["\n 0% { fill: ", " }\n 81% { fill: ", " }\n 82% { fill: ", " }\n "])), color, color, colorInit),
+ d: "M23,84H12.5c-1.7,0-3-1.4-3-3l0,0c0-1.7,1.4-3,3-3H23c1.7,0,3,1.4,3,3l0,0C26,82.7,24.6,84,23,84z"
+ }), React__default.createElement(Spark, {
+ colorInit: colorInit,
+ duration: duration,
+ pulse: styled.keyframes(_templateObject3 || (_templateObject3 = _taggedTemplateLiteralLoose(["\n 15% { fill: ", " }\n 16% { fill: ", " }\n 81% { fill: ", " }\n 82% { fill: ", " }\n "])), colorInit, color, color, colorInit),
+ d: "M36,35.1l7.4,7.4c1.2,1.2,3.1,1.2,4.3,0l0,0c1.2-1.2,1.2-3.1,0-4.3l-7.4-7.4c-1.2-1.2-3.1-1.2-4.3,0l0,0 C34.8,32,34.8,34,36,35.1z"
+ }), React__default.createElement(Spark, {
+ colorInit: colorInit,
+ duration: duration,
+ pulse: styled.keyframes(_templateObject4 || (_templateObject4 = _taggedTemplateLiteralLoose(["\n 31% { fill: ", " }\n 32% { fill: ", " }\n 81% { fill: ", " }\n 82% { fill: ", " }\n "])), colorInit, color, color, colorInit),
+ d: "M89.8,14.1v10.4c0,1.7-1.4,3-3,3l0,0c-1.7,0-3-1.4-3-3V14.1c0-1.7,1.4-3,3-3l0,0C88.4,11.1,89.8,12.5,89.8,14.1 z"
+ }), React__default.createElement(Spark, {
+ color: color,
+ colorInit: colorInit,
+ duration: duration,
+ pulse: styled.keyframes(_templateObject5 || (_templateObject5 = _taggedTemplateLiteralLoose(["\n 47% { fill: ", " }\n 48% { fill: ", " }\n 81% { fill: ", " }\n 82% { fill: ", " }\n "])), colorInit, color, color, colorInit),
+ d: "M138.3,35.1l-7.4,7.4c-1.2,1.2-3.1,1.2-4.3,0v0c-1.2-1.2-1.2-3.1,0-4.3l7.4-7.4c1.2-1.2,3.1-1.2,4.3,0v0 C139.5,32,139.5,34,138.3,35.1z"
+ }), React__default.createElement(Spark, {
+ color: color,
+ colorInit: colorInit,
+ duration: duration,
+ pulse: styled.keyframes(_templateObject6 || (_templateObject6 = _taggedTemplateLiteralLoose(["\n 63% { fill: ", " }\n 64% { fill: ", " }\n 81% { fill: ", " }\n 82% { fill: ", " }\n "])), colorInit, color, color, colorInit),
+ d: "M163,84h-10.4c-1.7,0-3-1.4-3-3l0,0c0-1.7,1.4-3,3-3H163c1.7,0,3,1.4,3,3l0,0C166,82.7,164.7,84,163,84z"
+ }));
+};
+Sparkles.defaultProps = {
+ colorInit: '#DBDBDB',
+ color: '#35E3C3',
+ duration: '6s'
+};
+
+var _templateObject$1;
+/**
+ * Animated loading transition component.
+ */
+const LoadingSVG = /*#__PURE__*/styled__default(props => {
+ const {
+ className,
+ color,
+ sparklesColor,
+ sparklesColorInit,
+ sparklesDuration
+ } = props;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className,
+ viewBox: "0 0 176 135"
+ }, React__default.createElement("path", {
+ fill: color,
+ d: "M129.7,123.3H43.8c-1.1,0-2-0.9-2-2V119c0-1.1,0.9-2,2-2h85.9c1.1,0,2,0.9,2,2v2.3C131.7,122.4,130.8,123.3,129.7,123.3z"
+ }), React__default.createElement("path", {
+ fill: color,
+ d: "M117,68.2c-12.7,0-15.2,0-15.2,0v-4h-12L96,58v-4.7l-6.6-6.6c0,0-2.6-2.3-4.9,0s-5.9,5.9-5.9,5.9v4.7l7,7H73.2 v3.8H55.5c0,0-13.7-0.2-13.7,13.5v21c0,0-1.2,5.4,10.5,6.4c0.8,3.2,3.9,5.6,7.7,5.6c3.7,0,6.8-2.3,7.7-5.4c0.6,0,1.1,0,1.7,0 c0.9,3.1,4,5.4,7.7,5.4s6.8-2.3,7.7-5.4c2.5,0,5.1,0,7.7,0c0.9,3.1,4,5.4,7.7,5.4s6.8-2.3,7.7-5.4c0.6,0,1.2,0,1.7,0 c0.9,3.1,4,5.4,7.7,5.4c3.7,0,6.8-2.4,7.7-5.5c1.2-0.5,6.9-2.9,6.9-8.9c0-6.7,0-26.5,0-26.5S129.7,68.2,117,68.2z M70.3,75.8 c0-1.1,0.9-2,2-2h10.3c1.1,0,2,0.9,2,2v15.3c0,1.1-0.9,2-2,2H72.3c-1.1,0-2-0.9-2-2V75.8z M50.8,90.5v-11c2-5.3,6.3-5.7,6.3-5.7 s0,0,4,0s3.8,2,3.8,2s0,4,0,11.2c0,5.7-1.6,6.2-1.6,6.2s-5.4,0-8.9,0S50.8,90.5,50.8,90.5z M60,111.6c-2,0-3.7-1-4.4-2.4 c0.1,0,0.3,0,0.4,0c2.2,0,5.1,0,8.4,0C63.7,110.6,62,111.6,60,111.6z M77,111.6c-2,0-3.6-1-4.4-2.4c2.8,0,5.8,0,8.9,0 C80.7,110.6,79,111.6,77,111.6z M109.2,75.8c0-1.1,0.9-2,2-2h10.3c1.1,0,2,0.9,2,2v15.3c0,1.1-0.9,2-2,2h-10.3c-1.1,0-2-0.9-2-2 V75.8z M89.8,91.2V75.8c0-1.1,0.9-2,2-2h10.3c1.1,0,2,0.9,2,2v15.3c0,1.1-0.9,2-2,2H91.8C90.7,93.2,89.8,92.3,89.8,91.2z M100,111.6 c-2,0-3.6-1-4.4-2.4c3.1,0,6,0,8.9,0C103.6,110.6,102,111.6,100,111.6z M117.1,111.6c-2,0-3.6-1-4.4-2.4c3.7,0,6.8,0,8.9,0 C120.7,110.6,119,111.6,117.1,111.6z"
+ }), React__default.createElement(Sparkles, {
+ color: sparklesColor,
+ colorInit: sparklesColorInit,
+ duration: sparklesDuration
+ }));
+})(_templateObject$1 || (_templateObject$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n ", "\n ", "\n"])), props => props.size === 'small' && "\n width: calc(0.5*176px);\n height: calc(0.5*135px);\n ", props => props.size === 'default' && "\n width: calc(0.75*176px);\n height: calc(0.75*135px);\n ", props => props.size === 'large' && "\n width: calc(1*176px);\n height: calc(1*135px);\n ");
+LoadingSVG.defaultProps = {
+ color: '#050505',
+ size: 'default',
+ sparklesColor: '#35E3C3',
+ sparklesColorInit: '#DBDBDB',
+ sparklesDuration: '6s'
+};
+
+const theme = {
+ brand: {
+ main: '#ee0099',
+ dark: '#000',
+ light: '#fff'
+ },
+ commons: {
+ dark: '#4A4A4A',
+ main: '#aaa',
+ light: '#eee'
+ },
+ fontFamily: "'Nunito Sans', sans-serif",
+ body: {
+ padding: 60,
+ background: {
+ light: '#fff',
+ main: 'rgb(247,247,247)',
+ dark: '#000'
+ }
+ },
+ default: {
+ color: {
+ main: '#fff'
+ },
+ border: {
+ main: '#ee0099'
+ },
+ background: {
+ main: '#ee0099',
+ hover: '#e2058a',
+ focus: '#b4006c'
+ }
+ },
+ dark: {
+ color: {
+ main: '#000',
+ hover: '#4A4A4A',
+ focus: '#9b9b9b'
+ },
+ border: {
+ main: '#000',
+ hover: '#4A4A4A',
+ focus: '#9b9b9b'
+ },
+ background: {
+ main: 'none'
+ }
+ },
+ light: {
+ color: {
+ main: '#fff',
+ hover: '#9b9b9b',
+ focus: '#4A4A4A'
+ },
+ border: {
+ main: '#fff',
+ hover: '#eee',
+ focus: '#4A4A4A'
+ },
+ background: {
+ main: 'none'
+ }
+ },
+ secondary: {
+ color: {
+ main: '#000',
+ hover: '#424242',
+ focus: '#9B9B9B'
+ },
+ border: {
+ main: 'transparent',
+ hover: 'transparent',
+ focus: 'transparent'
+ },
+ background: {
+ main: 'none'
+ },
+ disabled: {
+ color: {
+ main: '#AAAAAA',
+ hover: '#AAAAAA',
+ focus: '#AAAAAA'
+ },
+ background: {
+ main: 'none'
+ }
+ }
+ },
+ error: '#FF2B4E'
+};
+
+var _templateObject$2, _templateObject2$1, _templateObject3$1, _templateObject4$1, _templateObject5$1, _templateObject6$1, _templateObject7;
+/**
+ * The only true paragraph.
+ */
+const Text = /*#__PURE__*/styled__default.p(_templateObject$2 || (_templateObject$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-size: 16px;\n font-weight: ", ";\n line-height: 25px;\n color: ", ";\n text-align: ", ";\n letter-spacing: normal;\n\n ", "\n"])), props => props.theme.fontFamily, props => props.bold ? 'bold' : 'normal', props => props.theme.commons.dark, props => props.align, props => props.uppercase && 'text-transform: uppercase;');
+Text.defaultProps = {
+ theme,
+ align: 'left',
+ uppercase: false,
+ bold: false
+};
+Text.displayName = 'Text';
+const annotate = Component => {
+ Component.defaultProps = {
+ theme
+ };
+ return Component;
+};
+var Header = {
+ H1: /*#__PURE__*/annotate( /*#__PURE__*/styled__default(Text.withComponent('h1'))(_templateObject2$1 || (_templateObject2$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 60px;\n font-weight: 900;\n line-height: 1;\n color: #000;\n "])))),
+ H2: /*#__PURE__*/annotate( /*#__PURE__*/styled__default(Text.withComponent('h2'))(_templateObject3$1 || (_templateObject3$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 36px;\n font-weight: 900;\n line-height: 1.22;\n color: #000;\n "])))),
+ H3: /*#__PURE__*/annotate( /*#__PURE__*/styled__default(Text.withComponent('h3'))(_templateObject4$1 || (_templateObject4$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 21px;\n font-weight: 800;\n line-height: 0.95;\n margin-bottom: 12px;\n color: #000;\n "])))),
+ H4: /*#__PURE__*/annotate( /*#__PURE__*/styled__default(Text.withComponent('h4'))(_templateObject5$1 || (_templateObject5$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 18px;\n font-weight: 800;\n line-height: 1.39;\n margin-bottom: 5px;\n color: #000;\n "])))),
+ H5: /*#__PURE__*/annotate( /*#__PURE__*/styled__default(Text.withComponent('h5'))(_templateObject6$1 || (_templateObject6$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 13px;\n line-height: 18px;\n color: #424242;\n letter-spacing: 0.005em;\n font-weight: 800;\n "])))),
+ H6: /*#__PURE__*/annotate( /*#__PURE__*/styled__default(Text.withComponent('h6'))(_templateObject7 || (_templateObject7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 11px;\n line-height: 2.27;\n color: #424242;\n "]))))
+};
+
+var _templateObject$3, _templateObject2$2;
+const FullSize = /*#__PURE__*/styled__default.div(_templateObject$3 || (_templateObject$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100vh;\n align-items: center;\n justify-content: center;\n background: ", ";\n"])), props => props.background);
+const LoadingStyles = /*#__PURE__*/styled__default.div(_templateObject2$2 || (_templateObject2$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n text-align: ", ";\n"])), props => props.align);
+/**
+ * Animated loading transition component.
+ */
+const Loading = _ref => {
+ let {
+ children,
+ align,
+ fullsize,
+ background,
+ message,
+ messageComponent: MessageComponent,
+ ...props
+ } = _ref;
+ return fullsize ? React__default.createElement(FullSize, {
+ background: background
+ }, React__default.createElement(LoadingSVG, Object.assign({}, props)), message ? React__default.createElement(MessageComponent, null, message) : children) : React__default.createElement(LoadingStyles, {
+ align: align
+ }, React__default.createElement(LoadingSVG, Object.assign({}, props)), message ? React__default.createElement(MessageComponent, null, message) : children);
+};
+Loading.defaultProps = {
+ align: 'center',
+ fullsize: false,
+ background: 'rgba(219,219,219,0.31)',
+ color: '#050505',
+ size: 'default',
+ sparklesColor: '#35E3C3',
+ sparklesColorInit: '#DBDBDB',
+ sparklesDuration: '6s',
+ messageComponent: Header.H3
+};
+
+var _templateObject$4;
+const Ring = /*#__PURE__*/styled__default.div(_templateObject$4 || (_templateObject$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n & div {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 64px;\n height: 64px;\n margin: 8px;\n border: 8px solid ", ";\n border-radius: 50%;\n animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: ", " transparent transparent\n transparent;\n }\n & div:nth-child(1) {\n animation-delay: -0.45s;\n }\n & div:nth-child(2) {\n animation-delay: -0.3s;\n }\n & div:nth-child(3) {\n animation-delay: -0.15s;\n }\n @keyframes lds-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.commons.light;
+}, _ref2 => {
+ let {
+ theme
+ } = _ref2;
+ return theme.commons.light;
+});
+const Spinner = _ref3 => {
+ let {
+ theme
+ } = _ref3;
+ return React__default.createElement(Ring, {
+ theme: theme
+ }, React__default.createElement("div", null), React__default.createElement("div", null), React__default.createElement("div", null), React__default.createElement("div", null));
+};
+Spinner.defaultProps = {
+ theme
+};
+
+var _templateObject$5;
+const Bonde = /*#__PURE__*/styled__default(_ref => {
+ let {
+ className,
+ large
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className,
+ width: large ? 260 : 85,
+ viewBox: large ? '0 0 200 100' : '50 25 100 50'
+ }, React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M44.948 52.505c0-11.641 9.21-20.568 20.568-20.568 11.357 0 20.567 8.927 20.567 20.568 0 11.639-9.21 20.568-20.567 20.568-11.358 0-20.568-8.929-20.568-20.568zm32.094 0c0-7.064-5.084-11.754-11.525-11.754-6.442 0-11.527 4.689-11.527 11.754 0 7.062 5.085 11.752 11.527 11.752 6.441 0 11.525-4.69 11.525-11.752zM122.243 32.727V72.28h-6.78l-15.255-21.473V72.28h-9.042V32.727h6.781l15.255 21.471V32.727h9.041zM164.056 52.505c0 11.188-8.307 19.775-19.212 19.775h-15.821V32.727h15.821c10.905 0 19.212 8.588 19.212 19.778zm-8.702 0c0-6.781-4.295-11.076-10.51-11.076h-6.78v22.15h6.78c6.215 0 10.51-4.295 10.51-11.074zM194 63.579v8.701h-24.862V32.727h24.579v8.702h-15.538v6.555h14.127v8.59h-14.127v7.006H194zM40.937 59.731c0 7.381-6.012 12.203-13.453 12.203H9.981V30.263h16.311c7.264 0 13.156 4.704 13.156 11.906 0 3.454-1.369 6.192-3.632 8.157 3.097 1.962 5.121 5.179 5.121 9.405zM19.505 39.193v7.381h6.787c2.145 0 3.633-1.546 3.633-3.691 0-2.142-1.43-3.69-3.633-3.69h-6.787zm11.908 19.824c0-2.322-1.549-3.988-3.93-3.988h-7.979v7.979h7.979c2.381-.001 3.93-1.669 3.93-3.991z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M40.196 59.274c0 7.383-6.014 12.205-13.453 12.205H9.239V29.807h16.312c7.265 0 13.157 4.704 13.157 11.907 0 3.452-1.369 6.191-3.632 8.156 3.097 1.965 5.12 5.178 5.12 9.404zM18.765 38.738v7.382h6.786c2.144 0 3.632-1.548 3.632-3.691 0-2.144-1.428-3.691-3.632-3.691h-6.786zm11.906 19.824c0-2.322-1.548-3.988-3.928-3.988h-7.979v7.977h7.979c2.38-.001 3.928-1.669 3.928-3.989z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M39.456 58.813c0 7.381-6.014 12.203-13.454 12.203H8.499V29.345h16.312c7.264 0 13.157 4.703 13.157 11.907 0 3.453-1.369 6.191-3.632 8.155 3.096 1.965 5.12 5.178 5.12 9.406zM18.024 38.275v7.382h6.786c2.144 0 3.632-1.548 3.632-3.691s-1.43-3.691-3.632-3.691h-6.786zM29.93 58.099c0-2.322-1.546-3.988-3.928-3.988h-7.978v7.975h7.978c2.382-.001 3.928-1.667 3.928-3.987z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M41.679 60.188c0 7.381-6.014 12.201-13.454 12.201H10.722v-41.67h16.311c7.264 0 13.156 4.704 13.156 11.907 0 3.453-1.369 6.192-3.631 8.155 3.096 1.964 5.121 5.181 5.121 9.407zM20.247 39.649v7.382h6.785c2.145 0 3.633-1.548 3.633-3.69 0-2.143-1.43-3.691-3.633-3.691h-6.785zm11.906 19.823c0-2.322-1.548-3.988-3.929-3.988h-7.978v7.979h7.978c2.381-.001 3.929-1.669 3.929-3.991z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M38.714 58.358c0 7.383-6.012 12.205-13.453 12.205H7.758V28.89H24.07c7.264 0 13.156 4.704 13.156 11.907 0 3.453-1.369 6.192-3.631 8.155 3.096 1.965 5.119 5.18 5.119 9.406zm-21.43-20.537v7.381h6.785c2.145 0 3.633-1.548 3.633-3.691s-1.43-3.69-3.633-3.69h-6.785zM29.19 57.644c0-2.322-1.549-3.99-3.93-3.99h-7.977v7.98h7.977c2.382 0 3.93-1.668 3.93-3.99z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M37.974 57.903c0 7.383-6.012 12.203-13.453 12.203H7.019V28.435H23.33c7.264 0 13.156 4.704 13.156 11.907 0 3.453-1.369 6.192-3.631 8.157 3.095 1.963 5.119 5.178 5.119 9.404zM16.542 37.365v7.383h6.787c2.145 0 3.631-1.548 3.631-3.692s-1.428-3.691-3.631-3.691h-6.787zM28.448 57.19c0-2.324-1.547-3.99-3.928-3.99h-7.979v7.977h7.979c2.381 0 3.928-1.666 3.928-3.987z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M37.233 57.45c0 7.381-6.014 12.201-13.454 12.201H6.276v-41.67h16.312c7.264 0 13.155 4.703 13.155 11.907 0 3.453-1.369 6.191-3.631 8.156 3.098 1.963 5.121 5.178 5.121 9.406zM15.802 36.912v7.381h6.787c2.143 0 3.631-1.548 3.631-3.691 0-2.142-1.429-3.69-3.631-3.69h-6.787zm11.906 19.821c0-2.32-1.548-3.988-3.929-3.988h-7.978v7.979h7.978c2.381 0 3.929-1.668 3.929-3.991z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M6.276 69.651L11.072 73.065 11.462 71.479 6.704 68.45 6.28 68.206z"
+ }), React__default.createElement("path", {
+ d: "M6.276 55.521L11.462 58.956 11.462 57.267 6.704 54.235 6.28 53.995z"
+ }), React__default.createElement("path", {
+ d: "M6.276 52.792L11.462 56.022 11.462 50.519 6.704 47.488 6.28 47.246z"
+ }), React__default.createElement("path", {
+ d: "M11.854 30.988L6.276 27.981 8.501 27.981 14.479 30.988z"
+ }), React__default.createElement("path", {
+ d: "M42.419 60.458c0 7.381-6.014 12.201-13.455 12.201H11.462V30.988h16.312c7.262 0 13.154 4.704 13.154 11.906 0 3.453-1.368 6.192-3.631 8.157 3.099 1.964 5.122 5.178 5.122 9.407zM20.987 39.919V47.3h6.787c2.143 0 3.631-1.547 3.631-3.69 0-2.144-1.429-3.691-3.631-3.691h-6.787zm11.907 19.822c0-2.322-1.549-3.988-3.93-3.988h-7.977v7.977h7.977c2.381-.001 3.93-1.667 3.93-3.989z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M28.964 73.104H11.019v-42.56h16.756c7.88 0 13.6 5.194 13.6 12.35 0 3.204-1.158 5.993-3.356 8.103 3.13 2.191 4.846 5.527 4.846 9.461-.002 7.326-5.847 12.646-13.901 12.646zm-17.057-.888h17.057c7.539 0 13.011-4.945 13.011-11.758 0-3.814-1.745-7.021-4.914-9.033l-.503-.318.449-.391c2.276-1.977 3.479-4.68 3.479-7.821 0-6.642-5.346-11.462-12.711-11.462H11.907v40.783zm17.057-8.041h-8.421V55.31h8.421c2.575 0 4.373 1.822 4.373 4.432s-1.798 4.433-4.373 4.433zm-7.532-.889h7.532c2.086 0 3.486-1.424 3.486-3.545 0-2.119-1.4-3.545-3.486-3.545h-7.532v7.09zm6.342-15.541h-7.231v-8.27h7.231c2.398 0 4.074 1.7 4.074 4.134.001 2.397-1.712 4.136-4.074 4.136zm-6.342-.888h6.343c1.877 0 3.188-1.336 3.188-3.247 0-1.942-1.281-3.247-3.188-3.247h-6.343v6.494z"
+ }), React__default.createElement("g", null, React__default.createElement("path", {
+ d: "M259.224 51.742c0-11.267 8.915-19.909 19.909-19.909 10.993 0 19.908 8.642 19.908 19.909 0 11.269-8.915 19.909-19.908 19.909-10.994 0-19.909-8.64-19.909-19.909zm31.066 0c0-6.837-4.923-11.376-11.157-11.376-6.235 0-11.158 4.54-11.158 11.376 0 6.838 4.923 11.377 11.158 11.377 6.234 0 11.157-4.539 11.157-11.377zM334.043 32.599v38.287h-6.563l-14.768-20.785v20.785h-8.752V32.599h6.565l14.765 20.784V32.599h8.753zM374.515 51.742c0 10.83-8.042 19.144-18.596 19.144h-15.316V32.599h15.316c10.554 0 18.596 8.315 18.596 19.143zm-8.423 0c0-6.562-4.155-10.72-10.173-10.72h-6.564v21.441h6.564c6.018 0 10.173-4.156 10.173-10.721zM403.5 62.463v8.423h-24.064V32.599h23.79v8.423h-15.041v6.344h13.675v8.315h-13.675v6.782H403.5zM255.342 58.738c0 7.146-5.82 11.812-13.023 11.812h-16.942V30.214h15.789c7.031 0 12.735 4.553 12.735 11.524 0 3.343-1.326 5.994-3.516 7.896 2.998 1.899 4.957 5.012 4.957 9.104zm-20.744-19.881v7.146h6.567c2.075 0 3.517-1.498 3.517-3.572 0-2.077-1.385-3.574-3.517-3.574h-6.567zm11.522 19.19c0-2.247-1.498-3.861-3.802-3.861h-7.721v7.721h7.721c2.304-.001 3.802-1.614 3.802-3.86z"
+ }), React__default.createElement("path", {
+ d: "M254.625 58.297c0 7.146-5.821 11.813-13.023 11.813H224.66V29.774h15.788c7.03 0 12.735 4.552 12.735 11.525 0 3.341-1.325 5.992-3.516 7.895 2.998 1.9 4.958 5.011 4.958 9.103zm-20.748-19.88v7.146h6.57c2.076 0 3.517-1.5 3.517-3.574s-1.383-3.573-3.517-3.573h-6.57zm11.526 19.188c0-2.247-1.497-3.86-3.802-3.86h-7.725v7.722h7.725c2.305 0 3.802-1.614 3.802-3.862z"
+ }), React__default.createElement("path", {
+ d: "M253.907 57.85c0 7.145-5.821 11.812-13.022 11.812h-16.941V29.325h15.788c7.03 0 12.734 4.553 12.734 11.526 0 3.34-1.325 5.993-3.515 7.894 2.997 1.901 4.956 5.012 4.956 9.105zm-20.746-19.88v7.146h6.57c2.074 0 3.515-1.5 3.515-3.573 0-2.074-1.383-3.573-3.515-3.573h-6.57zm11.527 19.188c0-2.249-1.498-3.861-3.803-3.861h-7.724v7.721h7.724c2.304 0 3.803-1.613 3.803-3.86z"
+ }), React__default.createElement("path", {
+ d: "M256.059 59.18c0 7.145-5.82 11.812-13.022 11.812h-16.943V30.654h15.789c7.031 0 12.733 4.554 12.733 11.526 0 3.341-1.323 5.993-3.513 7.894 2.997 1.903 4.956 5.015 4.956 9.106zM235.313 39.3v7.145h6.568c2.075 0 3.517-1.497 3.517-3.572 0-2.076-1.385-3.573-3.517-3.573h-6.568zm11.526 19.188c0-2.248-1.5-3.862-3.803-3.862h-7.723v7.722h7.723c2.303 0 3.803-1.614 3.803-3.86z"
+ }), React__default.createElement("path", {
+ d: "M253.19 57.41c0 7.146-5.821 11.812-13.023 11.812h-16.94V28.886h15.788c7.03 0 12.734 4.553 12.734 11.525 0 3.343-1.325 5.994-3.515 7.895 2.997 1.901 4.956 5.013 4.956 9.104zm-20.745-19.88v7.145h6.569c2.075 0 3.515-1.497 3.515-3.572 0-2.076-1.383-3.573-3.515-3.573h-6.569zm11.526 19.188c0-2.247-1.5-3.861-3.804-3.861h-7.722v7.723h7.722c2.304-.001 3.804-1.615 3.804-3.862z"
+ }), React__default.createElement("path", {
+ d: "M252.473 56.969c0 7.146-5.819 11.812-13.022 11.812h-16.942V28.444h15.789c7.032 0 12.734 4.553 12.734 11.525 0 3.342-1.325 5.994-3.514 7.895 2.996 1.903 4.955 5.014 4.955 9.105zm-20.744-19.881v7.146h6.568c2.076 0 3.516-1.498 3.516-3.573 0-2.074-1.383-3.574-3.516-3.574h-6.568zm11.524 19.189c0-2.247-1.498-3.86-3.803-3.86h-7.722v7.722h7.722c2.305 0 3.803-1.616 3.803-3.862z"
+ }), React__default.createElement("path", {
+ d: "M251.756 56.528c0 7.145-5.818 11.813-13.022 11.813h-16.942V28.005h15.789c7.031 0 12.734 4.552 12.734 11.525 0 3.342-1.326 5.993-3.516 7.895 2.997 1.901 4.957 5.012 4.957 9.103zm-20.745-19.88v7.146h6.569c2.076 0 3.515-1.497 3.515-3.573 0-2.074-1.383-3.573-3.515-3.573h-6.569zm11.524 19.189c0-2.247-1.497-3.86-3.802-3.86h-7.723v7.722h7.723c2.305-.001 3.802-1.615 3.802-3.862z"
+ }), React__default.createElement("path", {
+ d: "M221.791 68.342L226.433 71.647 226.811 70.11 222.205 67.176 221.794 66.942z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M221.791 54.664L226.811 57.988 226.811 56.354 222.205 53.42 221.794 53.187z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M221.791 52.021L226.811 55.15 226.811 49.821 222.205 46.888 221.794 46.652z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M227.19 30.915L221.791 28.005 223.943 28.005 229.731 30.915z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M256.774 59.44c0 7.145-5.819 11.812-13.022 11.812h-16.941V30.915h15.788c7.031 0 12.734 4.554 12.734 11.526 0 3.341-1.324 5.994-3.514 7.894 2.997 1.902 4.955 5.014 4.955 9.105zM236.03 39.561v7.146h6.568c2.076 0 3.516-1.5 3.516-3.574s-1.384-3.571-3.516-3.571h-6.568zm11.525 19.188c0-2.248-1.499-3.861-3.803-3.861h-7.722v7.722h7.722c2.304-.001 3.803-1.615 3.803-3.861z"
+ }), React__default.createElement("path", {
+ d: "M243.752 71.648h-17.338V30.52h16.185c7.608 0 13.131 5.013 13.131 11.921 0 3.107-1.127 5.808-3.269 7.847 3.042 2.112 4.709 5.345 4.709 9.152 0 7.074-5.642 12.208-13.418 12.208zm-16.546-.792h16.546c7.317 0 12.628-4.802 12.628-11.416 0-3.702-1.695-6.818-4.772-8.769l-.449-.285.4-.349c2.211-1.92 3.379-4.547 3.379-7.596 0-6.448-5.188-11.13-12.339-11.13h-15.393v39.545zm16.546-7.849h-8.117v-8.515h8.117c2.474 0 4.198 1.751 4.198 4.257 0 2.504-1.724 4.258-4.198 4.258zm-7.327-.793h7.327c2.038 0 3.408-1.393 3.408-3.465 0-2.073-1.37-3.465-3.408-3.465h-7.327v6.93zm6.174-15.112h-6.964v-7.937h6.964c2.303 0 3.911 1.632 3.911 3.968 0 2.3-1.646 3.969-3.911 3.969zm-6.174-.792h6.174c1.837 0 3.12-1.307 3.12-3.178 0-1.898-1.253-3.176-3.12-3.176h-6.174v6.354z"
+ })));
+})(_templateObject$5 || (_templateObject$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n ", "\n"])), props => !props.large && "\n height: calc(1.5 * 15px);\n ");
+Bonde.defaultProps = {
+ large: false
+};
+
+var _templateObject$6;
+const EmptyIcon = () => {
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "38",
+ height: "56",
+ fill: "none",
+ viewBox: "0 0 38 56"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M35.435 28.166c-.678-.665-1.865-1.148-2.823-1.148l-8.484-.002v9.216h8.484c.958 0 2.145-.483 2.823-1.148l1.891-1.858A2.23 2.23 0 0038 31.624c0-.606-.24-1.175-.675-1.601l-1.89-1.857zM24.129 22.174h8.483c.958 0 2.146-.483 2.823-1.149l1.891-1.858A2.23 2.23 0 0038 17.565a2.23 2.23 0 00-.675-1.601l-1.89-1.856c-.677-.665-1.865-1.148-2.823-1.148l-8.607-.002c.08.352.124.717.124 1.093v8.123zM19 11.2c-1.6 0-2.902 1.279-2.902 2.851V47.44c0 .604.498 1.093 1.113 1.093h3.578c.614 0 1.113-.49 1.113-1.093V14.05C21.902 12.48 20.6 11.2 19 11.2zM2.564 21.135l-1.89 1.858A2.23 2.23 0 000 24.595c0 .606.24 1.175.675 1.602l1.89 1.855c.677.665 1.864 1.148 2.823 1.148l8.484.002v-9.216H5.388c-.958 0-2.146.483-2.824 1.15zM25.65 5.6c-1.571 0-2.85-1.256-2.85-2.8 0-1.544 1.279-2.8 2.85-2.8 1.571 0 2.85 1.256 2.85 2.8 0 1.544-1.279 2.8-2.85 2.8zm0-3.733a.943.943 0 00-.95.933c0 .515.427.933.95.933.523 0 .95-.418.95-.933a.943.943 0 00-.95-.933z"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ d: "M34.2 11.2h-6.812c-2.007 0-3.638-1.603-3.638-3.573v-.32c0-1.97 1.631-3.574 3.638-3.574.97 0 1.883.372 2.571 1.047l4.914 4.827a.92.92 0 01.206 1.017.952.952 0 01-.879.576zm-6.812-5.6c-.96 0-1.738.765-1.738 1.706v.321c0 .941.779 1.706 1.738 1.706h4.519L28.617 6.1a1.744 1.744 0 00-1.23-.499z"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ d: "M26.6 10.267h1.9V14h-1.9v-3.733zM30.4 10.267h1.9V14h-1.9v-3.733zM21.09 2.8c0-.515.421-.933.94-.933H23c.52 0 .94.418.94.933 0 .515-.42.933-.94.933h-.97a.937.937 0 01-.94-.933z"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ d: "M27.55 2.8c0 1.03-.85 1.867-1.9 1.867-1.05 0-1.9-.836-1.9-1.867 0-1.03.85-1.867 1.9-1.867 1.05 0 1.9.836 1.9 1.867zM34.2 10.267h-6.813c-1.484 0-2.687-1.182-2.687-2.64v-.32c0-1.459 1.203-2.64 2.687-2.64.712 0 1.396.278 1.9.773l4.913 4.827zM5.503 53.268a2.742 2.742 0 012.752-2.731h20.638a2.742 2.742 0 012.752 2.731A2.742 2.742 0 0128.893 56H8.255a2.742 2.742 0 01-2.752-2.732z"
+ }));
+};
+const EmptyWrap = /*#__PURE__*/styled__default.div(_templateObject$6 || (_templateObject$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n align-items: center;\n justify-content: center;\n\n ", " {\n margin-top: 15px;\n font-weight: normal;\n }\n"])), Header.H4);
+const Empty = _ref => {
+ let {
+ message
+ } = _ref;
+ return React__default.createElement(EmptyWrap, null, React__default.createElement(EmptyIcon, null), message && React__default.createElement(Header.H4, null, message));
+};
+
+const Icon = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "4 4 15 15"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"
+ }));
+};
+Icon.displayName = 'Icon.ArrowDown';
+
+const Icon$1 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "4 4 15 15"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"
+ }));
+};
+Icon$1.displayName = 'Icon.ArrowLeft';
+
+const Icon$2 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "4 4 15 15"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"
+ }));
+};
+Icon$2.displayName = 'Icon.ArrowRight';
+
+const Icon$3 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "4 4 15 15"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"
+ }));
+};
+Icon$3.displayName = 'Icon.ArrowUp';
+
+const Icon$4 = _ref => {
+ let {
+ className,
+ color
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className,
+ viewBox: "0 0 18 22"
+ }, React__default.createElement("g", {
+ fill: "none",
+ fillRule: "evenodd"
+ }, React__default.createElement("path", {
+ fill: "none",
+ d: "M-153-28h1440v130H-153z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M16.632 15.045c0 3.478-2.88 5.749-6.48 5.749H1.8V1.135h7.848c3.456 0 6.336 2.2 6.336 5.607a4.852 4.852 0 0 1-1.728 3.832 5.238 5.238 0 0 1 2.376 4.471zM6.336 5.323V8.8h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521h-3.24v.07zm5.76 9.367a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H6.336v3.761h3.816a1.773 1.773 0 0 0 1.41-.473c.376-.357.571-.86.534-1.372z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M16.272 14.832c0 3.478-2.88 5.749-6.48 5.749H1.44V.923h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.832 5.238 5.238 0 0 1 2.376 4.471zM5.976 5.11v3.477h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.647 1.647 0 0 0-.465-1.264 1.697 1.697 0 0 0-1.263-.51l-3.24.07zm5.76 9.367a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H5.976v3.762h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.357.571-.86.534-1.372z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M15.912 14.62c0 3.477-2.88 5.748-6.48 5.748H1.08V.71h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.832 5.146 5.146 0 0 1 2.376 4.471zM5.616 4.896v3.477h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521h-3.24v.07zm5.76 9.368a1.795 1.795 0 0 0-.51-1.363 1.85 1.85 0 0 0-1.362-.554H5.616v3.762h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.357.571-.859.534-1.371z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M16.992 15.258c0 3.477-2.88 5.748-6.48 5.748H2.16V1.348h7.848c3.456 0 6.336 2.2 6.336 5.607a4.852 4.852 0 0 1-1.728 3.832 5.238 5.238 0 0 1 2.376 4.471zM6.696 5.535v3.478h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521c0 .07-3.24.07-3.24.07zm5.76 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H6.696v3.761h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.356.571-.858.534-1.37z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M15.552 14.406c0 3.478-2.88 5.749-6.48 5.749H.72V.497h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.832 5.146 5.146 0 0 1 2.376 4.471zM5.256 4.684V8.16h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521h-3.24v.07zm5.76 9.368a1.795 1.795 0 0 0-.51-1.363 1.85 1.85 0 0 0-1.362-.554H5.256v3.762h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.357.571-.859.534-1.371z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M15.192 14.194c0 3.477-2.88 5.748-6.48 5.748H.36V.284h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.833 5.146 5.146 0 0 1 2.376 4.47zM4.896 4.47v3.477h3.24c.475.014.934-.172 1.263-.51.329-.337.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521l-3.24.071zm5.76 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H4.896v3.76h3.816a1.744 1.744 0 0 0 1.422-.461 1.69 1.69 0 0 0 .522-1.383z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M14.832 13.98c0 3.478-2.88 5.749-6.48 5.749H0V0h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.833 5.364 5.364 0 0 1 2.376 4.542zM4.608 4.259v3.477h3.24c.475.014.934-.172 1.263-.51.329-.337.498-.796.465-1.264a1.682 1.682 0 0 0-.478-1.252 1.733 1.733 0 0 0-1.25-.522c0 .071-3.24.071-3.24.071zm5.688 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H4.608v3.761h3.816a1.721 1.721 0 0 0 1.381-.484c.363-.358.544-.858.491-1.361z"
+ }), React__default.createElement("path", {
+ fill: "#FFF",
+ d: "M0 19.729l2.304 1.632.216-.71-2.304-1.49-.216-.07z"
+ }), React__default.createElement("path", {
+ fill: color || '#000',
+ d: "M0 13.058l2.52 1.632v-.78L.216 12.49 0 12.348zM0 11.78l2.52 1.491v-2.555L.216 9.296 0 9.156zM2.664 1.49L0 0h1.08l2.88 1.49zM17.352 15.4c0 3.477-2.88 5.748-6.48 5.748H2.52V1.49h7.848c3.456 0 6.336 2.2 6.336 5.607a4.852 4.852 0 0 1-1.728 3.832 5.315 5.315 0 0 1 2.376 4.471zM7.056 5.677v3.478h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.647 1.647 0 0 0-.465-1.265 1.697 1.697 0 0 0-1.263-.51l-3.24.071zm5.688 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H7.056v3.761h3.816a1.721 1.721 0 0 0 1.381-.483c.363-.358.544-.858.491-1.362z"
+ }), React__default.createElement("path", {
+ fill: "#FCFAFA",
+ d: "M10.872 21.361H2.304V1.277h7.992c3.744 0 6.48 2.484 6.48 5.82a5.11 5.11 0 0 1-1.656 3.832 5.278 5.278 0 0 1 2.304 4.471c.144 3.477-2.664 5.961-6.552 5.961zm-8.208-.355h8.208c3.6 0 6.264-2.341 6.264-5.606a4.81 4.81 0 0 0-2.376-4.258L14.544 11l.216-.142a4.704 4.704 0 0 0 1.656-3.69c0-3.123-2.592-5.465-6.12-5.465H2.664v19.303zm8.208-3.832H6.84v-4.187h4.032a2.138 2.138 0 0 1 1.767 2.094 2.138 2.138 0 0 1-1.767 2.093zm-3.6-.426h3.6c.457.016.898-.161 1.214-.486a1.57 1.57 0 0 0 .442-1.217 1.57 1.57 0 0 0-.442-1.216 1.618 1.618 0 0 0-1.214-.487h-3.6v3.406zm3.024-7.38H6.84V5.465h3.456a1.865 1.865 0 0 1 1.405.531c.37.366.566.869.539 1.385a1.83 1.83 0 0 1-.519 1.424c-.371.38-.89.585-1.425.563zm-3.024-.355h3.096c.42.023.83-.137 1.121-.437.29-.3.434-.711.391-1.124a1.464 1.464 0 0 0-.412-1.105 1.508 1.508 0 0 0-1.1-.457H7.272v3.123z"
+ })));
+};
+Icon$4.displayName = 'Icon.Bonde';
+
+const Icon$5 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "16",
+ height: "25",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 16 25"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ stroke: "#fff",
+ strokeWidth: "0.1",
+ d: "M15.481 9.799h0a.731.731 0 00-.637-.374H9.388l.005-.054.71-8.529A.731.731 0 009.612.09h0a.73.73 0 00-.85.294h0L.168 13.665h0a.73.73 0 00.613 1.129h5.46l-.004.054-.716 9.315h0a.731.731 0 00.504.752L15.48 9.799zm0 0c.13.23.125.513-.013.739 0 0 0 0 0 0L6.874 24.6a.732.732 0 01-.849.315l9.456-15.116zM7.228 21.034l.093.03 6.172-10.1.047-.077H8.594a.731.731 0 01-.729-.791l.522-6.269-.092-.031-6.12 9.458-.05.077h4.906a.733.733 0 01.73.788h0l-.533 6.915z"
+ }));
+};
+Icon$5.displayName = 'Icon.Bolt';
+
+const Icon$6 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "23",
+ height: "30",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 23 30"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M22.31 11.729c-.198-.296-.573-.479-.979-.479H13.57L14.59 1.016c.043-.429-.27-.827-.756-.965-.486-.14-1.026.016-1.305.377L.18 16.366a.807.807 0 00-.043.957c.196.302.575.49.986.49h7.769L7.862 28.99c-.04.433.28.831.774.965.114.03.23.045.346.045.382 0 .75-.164.958-.449l12.35-16.874a.807.807 0 00.02-.948zM10.459 25.246l.765-8.299a.85.85 0 00-.296-.71 1.238 1.238 0 00-.824-.3H3.187l8.794-11.35-.75 7.523c-.026.261.08.52.293.713.212.192.511.302.826.302h6.98l-8.871 12.12z"
+ }));
+};
+Icon$6.displayName = 'Icon.BoltUnfilled';
+
+const Icon$7 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "0 0 18 14",
+ fill: "none"
+ }, React__default.createElement("path", {
+ d: "M15.5581 14C15.5581 11.12 13.2151 8.77704 10.3351 8.77704H6.94517C4.06558 8.77704 1.72266 11.12 1.72266 14H3.06096C3.06096 11.8578 4.80344 10.1153 6.94517 10.1153H10.3351C12.4773 10.1153 14.2198 11.8578 14.2198 14H15.5581Z",
+ fill: "black"
+ }), React__default.createElement("path", {
+ d: "M1.94727 6.18966C1.94727 7.29644 2.84795 8.19712 3.95472 8.19712H13.0516C14.1584 8.19712 15.0591 7.29644 15.0591 6.18966V2.00746C15.0591 0.900678 14.1584 0 13.0516 0H3.95472C2.84795 0 1.94727 0.900678 1.94727 2.00746V6.18966ZM3.28557 2.00746C3.28557 1.63853 3.5858 1.3383 3.95472 1.3383H13.0516C13.4206 1.3383 13.7208 1.63853 13.7208 2.00746V6.18966C13.7208 6.55859 13.4206 6.85881 13.0516 6.85881H3.95472C3.5858 6.85881 3.28557 6.55859 3.28557 6.18966V2.00746Z",
+ fill: "black"
+ }), React__default.createElement("path", {
+ d: "M6.81682 2.51956H5.47852V5.67841H6.81682V2.51956Z",
+ fill: "black"
+ }), React__default.createElement("path", {
+ d: "M11.7309 2.51956H10.3926V5.67841H11.7309V2.51956Z",
+ fill: "black"
+ }), React__default.createElement("path", {
+ d: "M1.33831 2.58249H0V5.61464H1.33831V2.58249Z",
+ fill: "black"
+ }), React__default.createElement("path", {
+ d: "M17.2797 2.58249H15.9414V5.61464H17.2797V2.58249Z",
+ fill: "black"
+ }));
+};
+Icon$7.displayName = 'Icon.Bot';
+
+const Icon$8 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "13",
+ height: "10",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 13 10"
+ }, React__default.createElement("path", {
+ fill: "#50E3C2",
+ fillRule: "evenodd",
+ d: "M12.339 1.707L4.652 9.394 0 4.742l1.414-1.414 3.238 3.238L10.925.293l1.414 1.414z",
+ clipRule: "evenodd"
+ }));
+};
+Icon$8.displayName = 'Icon.Check';
+
+const Icon$9 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' stroke',
+ viewBox: "0 0 10 10"
+ }, React__default.createElement("path", {
+ fill: "#D8D8D8",
+ fillRule: "evenodd",
+ stroke: "#000",
+ strokeLinecap: "square",
+ strokeWidth: "1.5",
+ d: "M5.337 5.013l3.324 3.325.107.107-.2.2-.107-.106-3.325-3.325L1.74 8.61l-.1.1-.214-.213.1-.1L4.922 5 1.604 1.682l-.107-.107.2-.201.107.107 3.319 3.318 3.273-3.273.1-.1.215.214-.1.1-3.274 3.273z"
+ }));
+};
+Icon$9.displayName = 'Icon.Times';
+
+const Icon$a = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ width: "28",
+ height: "28",
+ fill: "none",
+ viewBox: "0 0 28 28"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M17.754 5.123a8.81 8.81 0 00-8.682 7.119 5.55 5.55 0 00-2.388-.413c-2.93.13-5.252 2.627-5.252 5.687a5.373 5.373 0 005.36 5.362h11.374c4.645 0 8.444-3.777 8.444-8.444v-.065c0-.13.022-.239.022-.369 0-4.905-3.994-8.877-8.878-8.877zm7.076 9.116V14.564c-.065 3.625-3.039 6.534-6.663 6.534H6.792a3.585 3.585 0 01-3.582-3.582c0-2.062 1.607-3.82 3.56-3.907h.174c.846 0 1.628.283 2.3.782.261.195.608.239.912.108.304-.13.5-.434.521-.76a7.068 7.068 0 017.076-6.815c3.907 0 7.098 3.19 7.098 7.098 0 .065 0 .13-.022.217z"
+ }));
+};
+Icon$a.displayName = 'Icon.Cloud';
+
+const Icon$b = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "14",
+ height: "16",
+ fill: "none",
+ viewBox: "0 0 14 16",
+ className: className + ' fill'
+ }, React__default.createElement("path", {
+ fill: "#000",
+ fillRule: "evenodd",
+ d: "M10.01 0H1.43C.644 0 0 .655 0 1.455v10.181h1.43V1.455h8.58V0zm2.146 2.91H4.29c-.786 0-1.43.654-1.43 1.454v10.181c0 .8.644 1.455 1.43 1.455h7.866c.786 0 1.43-.655 1.43-1.454V4.364c0-.8-.644-1.455-1.43-1.455zm0 11.636H4.29V4.364h7.866v10.181z",
+ clipRule: "evenodd"
+ }));
+};
+Icon$b.displayName = 'Icon.Copy';
+
+function Icon$c(_ref) {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "22",
+ height: "22",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 22 22"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M10.81 21.581c5.953 0 10.79-4.837 10.79-10.79C21.6 4.837 16.763 0 10.81 0 4.855 0 0 4.837 0 10.79c0 5.954 4.856 10.791 10.81 10.791zm0-20.093c5.116 0 9.283 4.168 9.283 9.284 0 5.116-4.167 9.284-9.284 9.284-5.116 0-9.283-4.168-9.283-9.284 0-5.116 4.167-9.284 9.283-9.284z"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ d: "M12.652 13.602V9.35c0-.624-.507-1.13-1.13-1.13H9.44c-.623 0-1.13.506-1.13 1.13v1.07c0 .556.402 1.019.93 1.114v2.093a1.133 1.133 0 00-.93 1.113v1.07c0 .624.507 1.131 1.13 1.131h3.052c.624 0 1.131-.507 1.131-1.13v-1.07c0-.58-.423-1.06-.97-1.14zm-.26 2.108h-2.85v-.868h.184a.748.748 0 00.746-.747v-3.028a.748.748 0 00-.746-.746H9.54v-.87h1.88v4.624c0 .412.335.747.746.747h.225v.889zM10.872 7.851c.987 0 1.79-.802 1.79-1.79 0-.986-.803-1.789-1.79-1.789s-1.79.803-1.79 1.79.803 1.79 1.79 1.79zm0-2.347a.559.559 0 11-.002 1.117.559.559 0 01.002-1.117z"
+ }));
+}
+Icon$c.displayName = 'Icon.Info';
+
+function Icon$d(_ref) {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "21",
+ height: "21",
+ fill: "none",
+ viewBox: "0 0 21 21",
+ className: className + ' fill'
+ }, React__default.createElement("g", {
+ fill: "#000",
+ clipPath: "url(#clip0)"
+ }, React__default.createElement("path", {
+ d: "M21.018 10.075a10.245 10.245 0 00-3.174-7.209A10.244 10.244 0 0010.52.002a10.244 10.244 0 00-7.324 2.864A10.245 10.245 0 00.02 10.075v.017a9.91 9.91 0 003.294 7.327v2.539A1.04 1.04 0 004.344 21c.19 0 .378-.053.543-.156l2.04-1.275a10.78 10.78 0 003.572.607h.015l.202.002c2.67 0 5.195-1.013 7.128-2.866a10.245 10.245 0 003.174-7.209v-.028zm-4.026 6.347a9.023 9.023 0 01-6.46 2.523h-.014a9.588 9.588 0 01-3.319-.587.896.896 0 00-.788.081l-1.865 1.165V17.27a.901.901 0 00-.31-.68 8.677 8.677 0 01-2.984-6.495 9.02 9.02 0 012.795-6.338 9.027 9.027 0 016.46-2.523h.025a9.021 9.021 0 016.46 2.523 9.02 9.02 0 012.794 6.333 9.02 9.02 0 01-2.794 6.333z"
+ }), React__default.createElement("path", {
+ d: "M12.213 12.896V8.645c0-.624-.508-1.131-1.131-1.131H9c-.624 0-1.131.507-1.131 1.13v1.07c0 .557.402 1.02.931 1.114v2.094a1.133 1.133 0 00-.931 1.113v1.07c0 .624.507 1.131 1.13 1.131h3.053c.623 0 1.13-.507 1.13-1.131v-1.07c0-.58-.422-1.06-.97-1.14zm-.261 2.108h-2.85v-.868h.184a.748.748 0 00.747-.747V10.36a.748.748 0 00-.747-.747h-.184v-.868h1.879v4.623c0 .412.335.747.747.747h.224v.888zM10.432 7.145c.987 0 1.79-.802 1.79-1.79 0-.986-.803-1.79-1.79-1.79-.987.001-1.79.804-1.79 1.79 0 .988.803 1.79 1.79 1.79zm0-2.347a.559.559 0 11-.001 1.117.559.559 0 01.001-1.117z"
+ })), React__default.createElement("defs", null, React__default.createElement("clipPath", {
+ id: "clip0"
+ }, React__default.createElement("path", {
+ fill: "#fff",
+ d: "M0 0H20.959V21H0z"
+ }))));
+}
+Icon$d.displayName = 'Icon.InfoMsg';
+
+const Icon$e = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ fill: "none",
+ viewBox: "0 0 25 18"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M24.3 17.858c0-3.508-2.845-6.362-6.342-6.362h-4.116c-3.497 0-6.342 2.854-6.342 6.362h1.625c0-2.61 2.116-4.732 4.717-4.732h4.116c2.601 0 4.717 2.123 4.717 4.732H24.3z"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ fillRule: "evenodd",
+ d: "M15.906 1.542a3.758 3.758 0 00-3.752 3.763 3.758 3.758 0 003.752 3.764 3.758 3.758 0 003.751-3.764 3.758 3.758 0 00-3.751-3.763zm-5.29 3.763c0-2.93 2.369-5.305 5.29-5.305 2.92 0 5.289 2.375 5.289 5.305 0 2.93-2.369 5.306-5.29 5.306-2.92 0-5.288-2.376-5.288-5.306z",
+ clipRule: "evenodd"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ d: "M9.815 3.421a4.236 4.236 0 00-2.119-.563c-2.327 0-4.213 1.862-4.213 4.159 0 2.297 1.886 4.16 4.213 4.16 1.34 0 2.532-.617 3.304-1.579a4.702 4.702 0 01-.884-.849 2.997 2.997 0 01-2.42 1.218c-1.65 0-2.989-1.32-2.989-2.95 0-1.63 1.338-2.95 2.99-2.95.592 0 1.144.17 1.609.464a4.59 4.59 0 01.51-1.11zM9.538 11.875a5.092 5.092 0 00-.207-.005h-3.28C3.267 11.87 1 14.108 1 16.858h1.295c0-2.046 1.685-3.71 3.757-3.71h1.74a5.612 5.612 0 011.746-1.273z"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ fillRule: "evenodd",
+ d: "M7.696 2.958c-2.273 0-4.113 1.818-4.113 4.059 0 2.24 1.84 4.06 4.113 4.06 1.27 0 2.406-.57 3.16-1.462a4.808 4.808 0 01-.738-.705 3.098 3.098 0 01-2.422 1.158c-1.705 0-3.089-1.365-3.089-3.051 0-1.686 1.384-3.05 3.09-3.05.565 0 1.096.15 1.552.413a4.69 4.69 0 01.426-.922 4.137 4.137 0 00-1.979-.5zM3.383 7.017c0-2.353 1.932-4.26 4.313-4.26.79 0 1.532.21 2.169.578l.09.052-.055.088c-.212.335-.38.699-.499 1.085l-.038.125-.11-.07a2.903 2.903 0 00-1.557-.449c-1.597 0-2.889 1.278-2.889 2.851s1.292 2.85 2.89 2.85c.961 0 1.813-.464 2.338-1.177l.078-.105.081.102a4.6 4.6 0 00.865.83l.084.062-.065.082a4.326 4.326 0 01-3.382 1.615c-2.38 0-4.313-1.906-4.313-4.259zM.9 16.857c0-2.806 2.312-5.087 5.152-5.087H9.33c.07 0 .141.002.211.005l.039.19a5.511 5.511 0 00-1.715 1.251l-.03.032H6.052c-2.018 0-3.657 1.62-3.657 3.61v.1H.9v-.1zm.201-.1h1.095c.054-2.055 1.764-3.709 3.856-3.709h1.676c.39-.422.842-.786 1.344-1.078h-3.02c-2.698 0-4.897 2.14-4.95 4.788z",
+ clipRule: "evenodd"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ d: "M24.3 17.858c0-3.508-2.845-6.362-6.342-6.362h-4.116c-3.497 0-6.342 2.854-6.342 6.362h1.625c0-2.61 2.116-4.732 4.717-4.732h4.116c2.601 0 4.717 2.123 4.717 4.732H24.3z"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ d: "M9.815 3.421a4.236 4.236 0 00-2.119-.563c-2.327 0-4.213 1.862-4.213 4.159 0 2.297 1.886 4.16 4.213 4.16 1.34 0 2.532-.617 3.304-1.579a4.702 4.702 0 01-.884-.849 2.997 2.997 0 01-2.42 1.218c-1.65 0-2.989-1.32-2.989-2.95 0-1.63 1.338-2.95 2.989-2.95.593 0 1.145.17 1.61.464a4.59 4.59 0 01.51-1.11zM9.538 11.875a5.093 5.093 0 00-.207-.005h-3.28C3.267 11.87 1 14.108 1 16.858h1.295c0-2.046 1.685-3.71 3.757-3.71h1.74a5.612 5.612 0 011.746-1.273z"
+ }));
+};
+Icon$e.displayName = 'Icon.Network';
+
+const Icon$f = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ width: "30",
+ height: "26",
+ fill: "none",
+ viewBox: "0 0 30 26"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ fillRule: "evenodd",
+ d: "M1.5 1.5v15h19v-15h-19zM1 0a1 1 0 00-1 1v16a1 1 0 001 1h20a1 1 0 001-1V1a1 1 0 00-1-1H1z",
+ clipRule: "evenodd"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ fillRule: "evenodd",
+ d: "M22 6H0V4.5h22V6z",
+ clipRule: "evenodd"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ d: "M19 2.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0z"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ stroke: "#fff",
+ strokeLinecap: "square",
+ strokeWidth: "2",
+ d: "M20.476 10.017h-1v5.375h-5.458v3.62h5.458v5.571H23.116v-5.57h5.468v-3.62h-5.467v-5.376h-2.641z"
+ }));
+};
+Icon$f.displayName = 'Icon.New';
+
+function Icon$g(_ref) {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "18",
+ height: "18",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 18 18"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M.06 13.512L.042 17.14c0 .204.074.409.223.558a.745.745 0 00.54.223l3.609-.019c.204 0 .39-.074.54-.223L17.418 5.214a.786.786 0 000-1.098L13.846.506a.786.786 0 00-1.097 0L10.256 3.02.284 12.972a.828.828 0 00-.224.54zM13.307 2.144l2.511 2.512-1.413 1.414-2.512-2.512 1.414-1.414zM1.605 13.847l9.19-9.191 2.512 2.511-9.19 9.173-2.531.018.019-2.511z"
+ }));
+}
+Icon$g.displayName = 'Icon.Pencil';
+
+const Icon$h = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' stroke',
+ viewBox: "0 0 12 12"
+ }, React__default.createElement("path", {
+ fill: "#D8D8D8",
+ fillRule: "evenodd",
+ stroke: "#000",
+ strokeLinecap: "square",
+ strokeWidth: "1.5",
+ d: "M6.147 5.771H11v.284H6.147V11h-.302V6.055H1v-.284h4.845V1h.302v4.772z"
+ }));
+};
+Icon$h.displayName = 'Icon.Plus';
+
+const Icon$i = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' stroke',
+ fill: "none",
+ viewBox: "0 0 18 18"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M12.13 11.75A6.988 6.988 0 0014 7c0-3.854-3.136-7-7-7S0 3.146 0 7c0 3.853 3.135 6.999 7 6.999 1.572 0 3.019-.518 4.19-1.394l5.205 5.205c.127.127.285.19.444.19a.607.607 0 00.443-.19.644.644 0 000-.897L12.13 11.75zM1.267 7a5.738 5.738 0 015.732-5.733 5.738 5.738 0 015.733 5.732 5.731 5.731 0 01-5.733 5.733 5.738 5.738 0 01-5.732-5.733z"
+ }));
+};
+Icon$i.displayName = 'Icon.Search';
+
+const Icon$j = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "0 0 22 21",
+ fill: "none"
+ }, React__default.createElement("path", {
+ d: "M19.9718 8.14773C19.6525 8.09994 19.3245 8.05352 18.9942 8.00945C18.8278 7.45594 18.6055 6.9193 18.3312 6.40963C18.5333 6.14526 18.7325 5.88042 18.925 5.62025C19.3525 5.0422 19.2906 4.22239 18.7814 3.71336L17.5053 2.43747C16.996 1.92812 16.1762 1.86637 15.5983 2.29395C15.3373 2.48712 15.0725 2.68626 14.809 2.88766C14.2994 2.61337 13.7628 2.39106 13.2091 2.22453C13.165 1.89422 13.1187 1.56624 13.0709 1.24699C12.9646 0.536154 12.3413 0 11.6211 0H9.81648C9.09628 0 8.47295 0.536154 8.36664 1.24691C8.31893 1.566 8.2726 1.89405 8.22844 2.22445C7.67477 2.39098 7.13813 2.61328 6.62862 2.88758C6.36522 2.6861 6.1003 2.48687 5.83932 2.29387C5.26128 1.86629 4.44146 1.92804 3.93235 2.43731L2.65646 3.71312C2.14711 4.22231 2.0852 5.0422 2.51278 5.62033C2.70514 5.88042 2.90436 6.14534 3.10641 6.40963C2.83228 6.91922 2.60989 7.45578 2.44336 8.00945C2.11313 8.05361 1.78507 8.09994 1.46582 8.14773C0.754903 8.25412 0.21875 8.87737 0.21875 9.59765V11.4022C0.21875 12.1224 0.754743 12.7457 1.46566 12.8521C1.78499 12.8999 2.11297 12.9463 2.44328 12.9904C2.60981 13.544 2.83211 14.0805 3.10633 14.5902C2.90444 14.8543 2.70522 15.1191 2.51246 15.3796C2.08512 15.9575 2.14687 16.7774 2.65614 17.2864L3.93219 18.5624C4.44138 19.0718 5.26119 19.1335 5.83916 18.706C6.10022 18.513 6.36498 18.3137 6.62846 18.1123C7.13822 18.3866 7.67485 18.6089 8.22836 18.7754C8.27236 19.1056 8.31877 19.4337 8.36656 19.753C8.47295 20.4638 9.09628 21 9.81648 21H11.6211C12.3413 21 12.9646 20.464 13.0709 19.7529C13.1186 19.4336 13.165 19.1056 13.2091 18.7753C13.7627 18.6089 14.2993 18.3865 14.809 18.1122C15.0724 18.3137 15.3373 18.5129 15.5983 18.706C16.1761 19.1336 16.9961 19.0718 17.5052 18.5625L18.7813 17.2866C19.2905 16.7774 19.3524 15.9576 18.9248 15.3795C18.7322 15.1191 18.533 14.8542 18.3312 14.5903C18.6053 14.0807 18.8277 13.5442 18.9942 12.9905C19.3244 12.9463 19.6525 12.9 19.9718 12.8522C20.6827 12.7458 21.2188 12.1225 21.2188 11.4023V9.59773C21.2187 8.87745 20.6827 8.25412 19.9718 8.14773ZM19.4613 11.1511C19.1713 11.1931 18.8755 11.234 18.5787 11.2726C17.9916 11.3492 17.511 11.7659 17.3545 12.334C17.2046 12.878 16.9871 13.403 16.708 13.8942C16.4165 14.4071 16.4615 15.0417 16.8226 15.5112C17.0046 15.7479 17.1852 15.9861 17.3609 16.2215L16.4403 17.1421C16.2042 16.9659 15.966 16.7854 15.7298 16.6038C15.2605 16.2426 14.6257 16.1979 14.1128 16.4891C13.6215 16.7682 13.0965 16.9858 12.5529 17.1357C11.9844 17.2923 11.5677 17.7729 11.4914 18.3598C11.4527 18.6566 11.4119 18.9526 11.3698 19.2425H10.0678C10.0257 18.9526 9.98495 18.6567 9.9462 18.3602C9.8696 17.773 9.45299 17.2924 8.88471 17.1358C8.34089 16.9859 7.81612 16.7684 7.3246 16.4893C6.8117 16.1979 6.1769 16.2427 5.70767 16.6038C5.47139 16.7855 5.23334 16.9659 4.99707 17.1421L4.07652 16.2215C4.25225 15.9859 4.43275 15.7478 4.61502 15.5109C4.97584 15.0415 5.02081 14.4069 4.7294 13.8941C4.45035 13.4028 4.2328 12.8778 4.0829 12.334C3.92638 11.7657 3.44584 11.3491 2.85875 11.2725C2.56194 11.2337 2.26601 11.193 1.97606 11.1508V9.84894C2.26601 9.80688 2.56186 9.76604 2.85867 9.72737C3.44576 9.65077 3.92638 9.23408 4.08282 8.66596C4.23272 8.12206 4.45018 7.59712 4.72932 7.10577C5.0208 6.59295 4.97584 5.95823 4.61494 5.48883C4.43259 5.25184 4.25209 5.01371 4.07652 4.77848L4.99707 3.85785C5.23318 4.03407 5.47131 4.21456 5.70742 4.3961C6.17658 4.75733 6.81129 4.80238 7.3246 4.51089C7.81579 4.23184 8.34081 4.01429 8.88455 3.86431C9.45299 3.70771 9.86968 3.22709 9.94604 2.64017C9.98479 2.34335 10.0256 2.04751 10.0677 1.75755H11.3697C11.4118 2.04743 11.4526 2.34327 11.4912 2.63992C11.5678 3.22709 11.9845 3.70771 12.5527 3.86423C13.0966 4.01413 13.6216 4.23176 14.1129 4.51081C14.6259 4.8023 15.2606 4.75701 15.7298 4.39619C15.966 4.21456 16.2041 4.03407 16.4403 3.85785L17.3609 4.77848C17.1853 5.01379 17.0048 5.252 16.8225 5.48908C16.4616 5.95839 16.4167 6.59303 16.7079 7.10585C16.987 7.59729 17.2045 8.1223 17.3544 8.66604C17.511 9.23432 17.9915 9.65093 18.5786 9.72753C18.8754 9.76628 19.1713 9.80704 19.4613 9.84918V11.1511Z",
+ fill: "#000"
+ }), React__default.createElement("path", {
+ d: "M10.7248 6.29998C8.40559 6.29998 6.5187 8.18679 6.5187 10.5061C6.5187 12.8254 8.4055 14.7122 10.7248 14.7122C13.0441 14.7122 14.9309 12.8254 14.9309 10.5061C14.9309 8.18679 13.0441 6.29998 10.7248 6.29998ZM10.7248 12.8425C9.43661 12.8425 8.38837 11.7943 8.38837 10.506C8.38837 9.21762 9.43651 8.16956 10.7248 8.16956C12.013 8.16956 13.0611 9.21771 13.0612 10.506C13.0612 11.7943 12.013 12.8425 10.7248 12.8425Z",
+ fill: "#000"
+ }));
+};
+Icon$j.displayName = 'Icon.Settings';
+
+function Icon$k(_ref) {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "18",
+ height: "18",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 18 18"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M13.556 3.886L12.6 14.784H5.59L4.632 3.886l-1.212.106.974 11.096c.051.511.495.912 1.01.912h7.379c.515 0 .959-.4 1.011-.92l.973-11.088-1.212-.106z"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ d: "M11.324 1H6.865c-.559 0-1.014.455-1.014 1.014v1.925h1.217V2.216h4.054V3.94h1.216V2.014c0-.56-.455-1.014-1.014-1.014z"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ d: "M15.581 3.331H2.608a.608.608 0 100 1.216h12.973a.608.608 0 100-1.216z"
+ }));
+}
+Icon$k.displayName = 'Icon.Trash';
+
+const Icon$l = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "30",
+ height: "23",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 30 23"
+ }, React__default.createElement("path", {
+ fill: "#000",
+ d: "M29.718 15.43a2.022 2.022 0 000-2.06l-1.257-2.09a.065.065 0 010-.067l1.257-2.09a2.021 2.021 0 000-2.06l-1.257-2.09a.065.065 0 010-.067l1.002-1.666c.288-.48.306-1.086.045-1.582A1.473 1.473 0 0028.21.853H1.79c-.54 0-1.037.308-1.298.804A1.624 1.624 0 00.537 3.24l1.002 1.667a.065.065 0 010 .066L.282 7.063a2.021 2.021 0 000 2.061l1.257 2.09a.065.065 0 010 .067L.282 13.37a2.02 2.02 0 000 2.06l1.257 2.09a.065.065 0 010 .066L.537 19.254a1.624 1.624 0 00-.045 1.582c.26.497.758.805 1.298.805h26.42c.54 0 1.037-.308 1.298-.805a1.623 1.623 0 00-.045-1.582l-1.002-1.667a.065.065 0 010-.067l1.257-2.09zm-1.504-.997l-1.257 2.09a2.02 2.02 0 000 2.06l.716 1.19h-6.37v-.061c0-.516-.399-.934-.89-.934-.49 0-.889.418-.889.934v.062H2.327l.716-1.19a2.021 2.021 0 000-2.06l-1.257-2.09a.065.065 0 010-.066l1.257-2.09a2.02 2.02 0 000-2.061l-1.257-2.09a.065.065 0 010-.067l1.257-2.09a2.022 2.022 0 000-2.06l-.716-1.19h17.197v.062c0 .516.398.934.89.934.49 0 .888-.418.888-.934V2.72h6.37l-.715 1.189a2.02 2.02 0 000 2.06l1.257 2.09a.065.065 0 010 .067l-1.257 2.09a2.02 2.02 0 000 2.06l1.257 2.09a.065.065 0 010 .067z"
+ }), React__default.createElement("path", {
+ fill: "#000",
+ d: "M20.413 5.67c-.49 0-.889.42-.889.935v.546c0 .515.398.933.89.933.49 0 .888-.418.888-.933v-.546c0-.516-.398-.934-.889-.934zM20.413 14.409c-.49 0-.889.418-.889.933v.547c0 .515.398.933.89.933.49 0 .888-.418.888-.933v-.547c0-.515-.398-.933-.889-.933zM20.413 10.04c-.49 0-.889.418-.889.934v.546c0 .515.398.933.89.933.49 0 .888-.418.888-.933v-.546c0-.516-.398-.934-.889-.934zM11.992 10.184c-1.218-.53-1.424-.805-1.424-1.22 0-.382.269-.789 1.023-.789.79 0 1.288.3 1.501.426.105.064.23.075.345.032a.424.424 0 00.248-.255l.338-.939a.444.444 0 00-.178-.529 3.74 3.74 0 00-1.556-.527v-.975a.425.425 0 00-.414-.435h-.84a.425.425 0 00-.414.435v1.085c-1.263.351-2.046 1.36-2.046 2.642 0 .714.238 1.3.727 1.794.39.394.952.733 1.767 1.069 1.118.476 1.272.901 1.272 1.29 0 .573-.481.959-1.198.959a3.07 3.07 0 01-1.72-.539.396.396 0 00-.36-.05.422.422 0 00-.26.266l-.325.952a.45.45 0 00.149.5c.462.347 1.169.6 1.9.68v1.03c0 .24.185.434.413.434h.854a.425.425 0 00.414-.435v-1.128c1.301-.367 2.14-1.449 2.14-2.769 0-.732-.206-1.334-.63-1.84-.38-.453-.93-.824-1.726-1.164z"
+ }));
+};
+Icon$l.displayName = 'Icon.Ticket';
+
+const Icon$m = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "30",
+ height: "23",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 30 23"
+ }, React__default.createElement("g", {
+ fill: "#000",
+ clipPath: "url(#clip0)"
+ }, React__default.createElement("path", {
+ d: "M11.77 9.711c-1.196-.533-1.398-.81-1.398-1.228 0-.384.264-.794 1.003-.794.776 0 1.265.3 1.474.429a.38.38 0 00.338.032.423.423 0 00.243-.257l.332-.945a.453.453 0 00-.174-.533 3.608 3.608 0 00-1.527-.531v-.982c0-.241-.183-.438-.407-.438h-.824c-.224 0-.406.197-.406.438v1.093c-1.24.354-2.008 1.369-2.008 2.66 0 .72.233 1.31.713 1.807.383.396.934.739 1.734 1.076 1.098.48 1.249.908 1.249 1.3 0 .577-.473.965-1.176.965a2.96 2.96 0 01-1.689-.542.38.38 0 00-.353-.052.42.42 0 00-.255.268l-.32.96a.46.46 0 00.147.504c.454.349 1.147.603 1.865.685v1.036c0 .241.182.437.406.437h.837c.225 0 .407-.196.407-.438v-1.136c1.277-.37 2.1-1.459 2.1-2.788 0-.738-.202-1.344-.618-1.853-.374-.457-.912-.83-1.693-1.173zM28.656 18.399c-.715 1.332-1.867 2.358-3.245 2.85h2.277c.53 0 1.018-.31 1.274-.81s.239-1.11-.044-1.594l-.262-.446z"
+ }), React__default.createElement("path", {
+ d: "M21.7 21.249H1.757c-.53 0-1.018-.31-1.274-.81s-.24-1.111.044-1.594l.984-1.678a.067.067 0 000-.067L.277 14.995a2.08 2.08 0 010-2.075l1.234-2.104a.068.068 0 000-.067L.277 8.644a2.081 2.081 0 010-2.075l1.234-2.105a.067.067 0 000-.067L.527 2.718a1.672 1.672 0 01-.044-1.593c.256-.5.744-.81 1.273-.81h25.932c.53 0 1.018.31 1.274.81.255.5.239 1.11-.044 1.593l-.985 1.679a.066.066 0 000 .067l1.234 2.104c.37.63.37 1.445 0 2.075l-1.234 2.105a.067.067 0 000 .067l.53.902a6.124 6.124 0 00-1.988-2.002l1.217-2.076a.067.067 0 000-.067l-1.234-2.104a2.08 2.08 0 010-2.075l.702-1.198h-6.252v.063c0 .519-.39.94-.873.94-.482 0-.872-.421-.872-.94v-.063H2.284l.703 1.198c.37.63.37 1.445 0 2.075L1.753 7.573a.067.067 0 000 .067l1.234 2.105c.37.63.37 1.444 0 2.075l-1.234 2.104a.067.067 0 000 .067l1.234 2.105c.37.63.37 1.445 0 2.075l-.703 1.197h16.811A5.892 5.892 0 0021.7 21.25zM28.61 11.97c.407.73.68 1.555.786 2.437.11-.5.033-1.04-.229-1.488l-.556-.95z"
+ }), React__default.createElement("path", {
+ d: "M27.168 9.678c-1.373-1.111-3.066-1.58-4.767-1.32l-.933.142 1.285-1.847-.953-.77-2.503 3.598 3.295 2.714.724-1.02-1.703-1.401.956-.146c2.86-.438 5.517 1.714 5.923 4.795.406 3.082-1.591 5.944-4.451 6.382-2.86.437-5.518-1.715-5.924-4.796l-.084-.635-1.178.18.083.635c.242 1.832 1.13 3.453 2.504 4.565 1.373 1.111 3.065 1.58 4.766 1.32 1.7-.26 3.205-1.217 4.237-2.696 1.032-1.48 1.467-3.303 1.226-5.135-.241-1.832-1.13-3.453-2.503-4.565z"
+ }), React__default.createElement("path", {
+ fillRule: "evenodd",
+ d: "M21.765 5.617L23 6.615l-1.135 1.632.512-.078c1.747-.267 3.486.215 4.897 1.357 1.41 1.142 2.324 2.808 2.572 4.69.248 1.882-.2 3.757-1.26 5.276-1.06 1.52-2.606 2.504-4.353 2.771-1.747.267-3.487-.215-4.898-1.357-1.41-1.142-2.324-2.808-2.572-4.69l-.108-.824 1.529-.233.108.823c.392 2.978 2.96 5.056 5.724 4.634 2.764-.422 4.693-3.189 4.301-6.166-.392-2.977-2.96-5.056-5.724-4.634l-.537.082 1.507 1.242-.938 1.321-3.574-2.944 2.714-3.9zm.07.533l-2.291 3.294 3.015 2.484.51-.717L21.17 9.65l1.373-.21c2.957-.452 5.703 1.772 6.123 4.957.42 3.186-1.645 6.145-4.602 6.597-2.957.452-5.703-1.772-6.123-4.957l-.058-.447-.83.127.06.446c.234 1.782 1.098 3.358 2.434 4.44 1.335 1.081 2.98 1.537 4.635 1.284 1.654-.253 3.117-1.184 4.12-2.623 1.004-1.438 1.428-3.211 1.193-4.993-.235-1.782-1.099-3.358-2.435-4.44-1.335-1.08-2.98-1.537-4.635-1.284l-1.355.207 1.435-2.062-.67-.54z",
+ clipRule: "evenodd"
+ })), React__default.createElement("defs", null, React__default.createElement("clipPath", {
+ id: "clip0"
+ }, React__default.createElement("path", {
+ fill: "#fff",
+ d: "M0 0H30V22.5H0z"
+ }))));
+};
+Icon$m.displayName = 'Icon.TicketRecurring';
+
+const Icon$n = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ className: className + ' fill',
+ width: "17",
+ height: "18",
+ viewBox: "0 0 17 18",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React__default.createElement("path", {
+ d: "M16.8001 18C16.8001 14.492 13.9551 11.6382 10.458 11.6382H6.34162C2.84498 11.6382 0 14.492 0 18H1.62509C1.62509 15.3908 3.74095 13.2684 6.34162 13.2684H10.458C13.0592 13.2684 15.175 15.3908 15.175 18H16.8001Z",
+ fill: "black"
+ }), React__default.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M8.40559 1.68385C6.33344 1.68385 4.65364 3.36885 4.65364 5.44741C4.65364 7.52596 6.33344 9.21097 8.40559 9.21097C10.4777 9.21097 12.1575 7.52596 12.1575 5.44741C12.1575 3.36885 10.4777 1.68385 8.40559 1.68385ZM3.1167 5.44741C3.1167 2.51739 5.48462 0.142151 8.40559 0.142151C11.3266 0.142151 13.6945 2.51739 13.6945 5.44741C13.6945 8.37742 11.3266 10.7527 8.40559 10.7527C5.48462 10.7527 3.1167 8.37742 3.1167 5.44741Z",
+ fill: "black"
+ }));
+};
+Icon$n.displayName = 'Icon.User';
+
+const Icon$o = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "0 0 18 14",
+ fill: "none"
+ }, React__default.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M1.44792 1.16667V12.8333H16.2257V1.16667H1.44792ZM1.05903 0C0.629473 0 0.28125 0.348223 0.28125 0.777778V13.2222C0.28125 13.6518 0.629473 14 1.05903 14H16.6146C17.0441 14 17.3924 13.6518 17.3924 13.2222V0.777778C17.3924 0.348223 17.0441 0 16.6146 0H1.05903Z",
+ fill: "black"
+ }), React__default.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M17.3924 4.66669H0.28125V3.50002H17.3924V4.66669Z",
+ fill: "black"
+ }), React__default.createElement("path", {
+ d: "M15.0592 2.13888C15.0592 2.46104 14.7981 2.72221 14.4759 2.72221C14.1537 2.72221 13.8926 2.46104 13.8926 2.13888C13.8926 1.81671 14.1537 1.55554 14.4759 1.55554C14.7981 1.55554 15.0592 1.81671 15.0592 2.13888Z",
+ fill: "black"
+ }));
+};
+Icon$o.displayName = 'Icon.Window';
+
+const Icon$p = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ className: className + ' fill',
+ width: "18",
+ height: "22",
+ viewBox: "0 0 18 22",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React__default.createElement("path", {
+ d: "M15.9074 3.75557C14.2585 1.36903 11.6451 0 8.73789 0C5.8307 0 3.21731 1.36903 1.56833 3.75557C-0.0725558 6.13005 -0.451442 9.13621 0.55279 11.7921C0.821398 12.5174 1.24838 13.2221 1.81884 13.8824L8.16291 21.3341C8.30639 21.5028 8.51661 21.6 8.73789 21.6C8.95916 21.6 9.16938 21.5028 9.31286 21.3341L15.6552 13.8844C16.2282 13.2203 16.6546 12.5164 16.921 11.7969C17.9272 9.13621 17.5483 6.13005 15.9074 3.75557ZM15.5067 11.268C15.3013 11.8231 14.9659 12.3719 14.5105 12.8998L14.5069 12.9038L8.73789 19.6799L2.96528 12.8996C2.51012 12.3722 2.17477 11.8234 1.96734 11.263C1.13683 9.06647 1.45202 6.58096 2.81071 4.61455C4.17366 2.64187 6.33417 1.51048 8.73789 1.51048C11.1416 1.51048 13.3018 2.64182 14.6648 4.61455C16.0238 6.58096 16.3392 9.06647 15.5067 11.268Z",
+ fill: "black"
+ }), React__default.createElement("path", {
+ d: "M8.73795 4.48119C6.40599 4.48119 4.50857 6.37836 4.50857 8.71057C4.50857 11.0428 6.40574 12.94 8.73795 12.94C11.0702 12.94 12.9673 11.0428 12.9673 8.71057C12.9673 6.37862 11.0699 4.48119 8.73795 4.48119ZM8.73795 11.4294C7.23878 11.4294 6.01905 10.2097 6.01905 8.71053C6.01905 7.21136 7.23878 5.99163 8.73795 5.99163C10.2371 5.99163 11.4568 7.21136 11.4568 8.71053C11.4568 10.2097 10.2371 11.4294 8.73795 11.4294Z",
+ fill: "black"
+ }));
+};
+Icon$p.displayName = 'Icon.MapMarker';
+
+const Icon$q = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ className: className + ' fill',
+ width: "20",
+ height: "18",
+ viewBox: "0 0 20 18",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React__default.createElement("path", {
+ d: "M14.3575 0C12.6549 0 11.0611 0.726824 10 1.94461C8.93886 0.726782 7.34514 0 5.64255 0C2.53125 0 0 2.38662 0 5.32023C0 7.61737 1.45275 10.2744 4.3178 13.2174C6.52268 15.4823 8.92123 17.2359 9.60382 17.7195L9.99987 18L10.3959 17.7195C11.0785 17.236 13.4771 15.4824 15.6821 13.2175C18.5472 10.2745 20 7.61741 20 5.32023C20 2.38662 17.4687 0 14.3575 0ZM14.7106 12.3767C12.897 14.2396 10.9458 15.7455 9.99987 16.4395C9.05393 15.7455 7.10286 14.2395 5.28927 12.3766C2.69169 9.70836 1.31868 7.26828 1.31868 5.32023C1.31868 3.07225 3.25837 1.24335 5.64255 1.24335C7.21152 1.24335 8.66022 2.04963 9.42334 3.34757L10 4.32841L10.5767 3.34757C11.3397 2.04967 12.7884 1.24335 14.3575 1.24335C16.7416 1.24335 18.6813 3.0722 18.6813 5.32023C18.6813 7.26836 17.3083 9.70844 14.7106 12.3767Z",
+ fill: "black"
+ }));
+};
+Icon$q.displayName = 'Icon.Heart';
+
+const Icon$r = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "14",
+ height: "14",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 14 14"
+ }, React__default.createElement("g", {
+ fill: "#424242",
+ clipPath: "url(#clip0)"
+ }, React__default.createElement("path", {
+ d: "M13.94 12.687L7.425.846a.485.485 0 00-.85 0L.06 12.686a.485.485 0 00.425.72h13.03a.484.484 0 00.425-.72zm-12.636-.251L7 2.085l5.696 10.35H1.304z"
+ }), React__default.createElement("path", {
+ d: "M6.393 5.547V9.05a.607.607 0 001.214 0V5.547a.607.607 0 00-1.214 0zM7 10.288a.64.64 0 100 1.28.64.64 0 000-1.28z"
+ })), React__default.createElement("defs", null, React__default.createElement("clipPath", {
+ id: "clip0"
+ }, React__default.createElement("path", {
+ fill: "#fff",
+ d: "M0 0H14V14H0z"
+ }))));
+};
+Icon$r.displayName = 'Icon.Warning';
+
+const Icon$s = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ className: className + ' fill',
+ width: "16",
+ height: "16",
+ viewBox: "0 0 16 16",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React__default.createElement("path", {
+ d: "M16.0002 7.79396C16.0002 12.0985 12.4839 15.5879 8.14553 15.5879C6.76826 15.5879 5.47438 15.2359 4.34868 14.6181L0 16L1.4178 11.8183C0.702587 10.6439 0.29067 9.26649 0.29067 7.79396C0.29067 3.48942 3.80734 0 8.14553 0C12.4842 0 16.0002 3.48942 16.0002 7.79396ZM8.14553 1.24124C4.50388 1.24124 1.54171 4.1808 1.54171 7.79396C1.54171 9.22773 2.00909 10.5556 2.79968 11.6357L1.9746 14.0693L4.51241 13.2628C5.55509 13.9474 6.80418 14.3467 8.1457 14.3467C11.7868 14.3467 14.7495 11.4075 14.7495 7.79431C14.7495 4.18116 11.787 1.24124 8.14553 1.24124ZM12.112 9.58898C12.0634 9.50951 11.9353 9.46151 11.7429 9.36604C11.5502 9.27058 10.6033 8.80818 10.4273 8.74471C10.2508 8.68107 10.1221 8.64907 9.99391 8.84018C9.86573 9.03147 9.49665 9.46151 9.38412 9.58898C9.27176 9.7168 9.15958 9.7328 8.96687 9.63716C8.77451 9.54169 8.15424 9.33973 7.41876 8.68907C6.84649 8.18276 6.45999 7.55769 6.34764 7.36622C6.23546 7.17511 6.3359 7.07182 6.43208 6.97671C6.51884 6.89102 6.6248 6.7536 6.72097 6.64213C6.81751 6.53049 6.84951 6.45102 6.91333 6.32338C6.97787 6.19591 6.94569 6.08444 6.89733 5.98862C6.84933 5.89316 6.4639 4.95307 6.30355 4.57049C6.14319 4.18827 5.98301 4.25191 5.87047 4.25191C5.7583 4.25191 5.62976 4.23591 5.5014 4.23591C5.37305 4.23591 5.16433 4.28373 4.9878 4.47484C4.81144 4.66613 4.31419 5.12836 4.31419 6.06827C4.31419 7.00836 5.0038 7.91662 5.10033 8.04391C5.19651 8.1712 6.4319 10.163 8.38926 10.928C10.3468 11.6926 10.3468 11.4375 10.6999 11.4055C11.0526 11.3737 11.8387 10.9435 11.9998 10.4976C12.1598 10.051 12.1598 9.66862 12.112 9.58898Z",
+ fill: "black"
+ }));
+};
+Icon$s.displayName = 'Icon.Eye';
+
+const Icon$t = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ width: "24",
+ className: className + ' fill',
+ height: "24",
+ viewBox: "0 0 24 24",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React__default.createElement("path", {
+ d: "M12.0371 6.75351C6.75341 6.75351 1.63714 11.7954 1.43248 12.0186C1.28365 12.1675 1.20923 12.3535 1.20923 12.5582C1.20923 12.7628 1.28365 12.9489 1.43248 13.0977C1.65574 13.321 6.75341 18.3628 12.0371 18.3628C17.3209 18.3628 22.4371 13.321 22.6418 13.0977C22.7906 12.9489 22.865 12.7628 22.865 12.5582C22.865 12.3535 22.7906 12.1675 22.6418 12.0186C22.4371 11.7954 17.3395 6.75351 12.0371 6.75351ZM12.0371 16.8186C8.33481 16.8186 4.52086 13.8047 3.0883 12.5396C4.52086 11.2744 8.33481 8.26049 12.0371 8.26049C15.7395 8.26049 19.5534 11.2744 20.986 12.5396C19.5534 13.8047 15.7395 16.8186 12.0371 16.8186Z",
+ fill: "black"
+ }), React__default.createElement("path", {
+ d: "M9.30225 12.5396C9.30225 14.0465 10.5302 15.293 12.0557 15.293C13.5813 15.293 14.8092 14.0651 14.8092 12.5396C14.8092 11.014 13.5813 9.78607 12.0557 9.78607C10.5302 9.78607 9.30225 11.0326 9.30225 12.5396ZM13.265 12.5396C13.265 13.2093 12.7255 13.7675 12.0371 13.7675C11.3674 13.7675 10.8092 13.2279 10.8092 12.5396C10.8092 11.8512 11.3488 11.3117 12.0371 11.3117C12.7069 11.3303 13.265 11.8698 13.265 12.5396Z",
+ fill: "black"
+ }));
+};
+Icon$t.displayName = 'Icon.Show';
+
+const Icon$u = _ref => {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ className: className + ' fill',
+ width: "25",
+ height: "25",
+ viewBox: "0 0 25 25",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React__default.createElement("mask", {
+ id: "path-1-inside-1",
+ fill: "white"
+ }, React__default.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M12.5009 3.18628C12.907 3.18628 13.2362 2.85706 13.2362 2.45098V0.735295C13.2362 0.329216 12.907 0 12.5009 0C12.0948 0 11.7656 0.329216 11.7656 0.735295V2.45098C11.7656 2.85706 12.0948 3.18628 12.5009 3.18628ZM12.5 6.03516C17.7504 6.03516 22.561 9.26579 24.8332 12.0341C25.0557 12.3053 25.0557 12.6957 24.8332 12.9669C22.6596 15.6151 17.8695 18.9659 12.5 18.9659C7.31483 18.9659 2.49292 15.8022 0.166838 12.9669C-0.0556128 12.6957 -0.0556128 12.3053 0.166838 12.0341C2.42003 9.28776 7.23086 6.03516 12.5 6.03516ZM12.5 17.4953C15.2542 17.4953 17.4948 15.2546 17.4948 12.5005C17.4948 9.74668 15.2544 7.50575 12.5 7.5057C9.74581 7.5057 7.50518 9.74638 7.50518 12.5005C7.50518 15.2545 9.74577 17.4953 12.5 17.4953ZM7.35287 8.5928C4.55165 9.78423 2.55615 11.6406 1.72856 12.5007C3.24365 14.0782 5.22218 15.5044 7.35204 16.4071C5.59424 14.0964 5.59493 10.9027 7.35287 8.5928ZM17.648 8.59388C19.4058 10.9046 19.4051 14.0983 17.6472 16.4082C20.4484 15.2167 22.4439 13.3605 23.2715 12.5003C21.7564 10.9228 19.7778 9.49658 17.648 8.59388ZM12.499 15C11.1205 15 9.99902 13.8785 9.99902 12.5C9.99902 11.1215 11.1205 10 12.499 10C13.8775 10 14.999 11.1215 14.999 12.5C14.999 13.8785 13.8775 15 12.499 15ZM12.499 13.5294C13.0666 13.5294 13.5284 13.0676 13.5284 12.5C13.5284 11.9323 13.0666 11.4706 12.499 11.4706C11.9314 11.4706 11.4696 11.9323 11.4696 12.5C11.4696 13.0676 11.9314 13.5294 12.499 13.5294ZM17.8897 3.89547C17.6885 4.24841 17.2393 4.37101 16.8867 4.16993C16.534 3.9687 16.4112 3.51964 16.6123 3.16694L17.5909 1.45125C17.7921 1.09841 18.241 0.975615 18.5939 1.17679C18.9466 1.37802 19.0694 1.82704 18.8683 2.17978L17.8897 3.89547ZM7.11039 3.89546C7.31157 4.24821 7.76059 4.37105 8.11338 4.16987C8.46613 3.9687 8.58897 3.51963 8.3878 3.16688L7.40927 1.4512C7.20809 1.09845 6.75897 0.975607 6.40627 1.17678C6.05353 1.37796 5.93068 1.82703 6.13186 2.17977L7.11039 3.89546ZM11.7656 22.5493C11.7656 22.1432 12.0948 21.814 12.5009 21.814C12.907 21.814 13.2362 22.1432 13.2362 22.5493V24.265C13.2362 24.671 12.907 25.0003 12.5009 25.0003C12.0948 25.0003 11.7656 24.671 11.7656 24.265V22.5493ZM8.11338 20.8301C7.76063 20.629 7.31161 20.7517 7.11039 21.1045L6.13186 22.8202C5.93068 23.1729 6.05353 23.622 6.40627 23.8232C6.75907 24.0243 7.20809 23.9015 7.40926 23.5488L8.38779 21.8331C8.58902 21.4803 8.46612 21.0313 8.11338 20.8301ZM16.8867 20.8301C17.2394 20.629 17.6886 20.7517 17.8897 21.1045L18.8683 22.8202C19.0694 23.173 18.9466 23.622 18.5939 23.8232C18.241 24.0244 17.792 23.9015 17.5909 23.5487L16.6123 21.833C16.4112 21.4803 16.534 21.0312 16.8867 20.8301Z"
+ })), React__default.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M12.5009 3.18628C12.907 3.18628 13.2362 2.85706 13.2362 2.45098V0.735295C13.2362 0.329216 12.907 0 12.5009 0C12.0948 0 11.7656 0.329216 11.7656 0.735295V2.45098C11.7656 2.85706 12.0948 3.18628 12.5009 3.18628ZM12.5 6.03516C17.7504 6.03516 22.561 9.26579 24.8332 12.0341C25.0557 12.3053 25.0557 12.6957 24.8332 12.9669C22.6596 15.6151 17.8695 18.9659 12.5 18.9659C7.31483 18.9659 2.49292 15.8022 0.166838 12.9669C-0.0556128 12.6957 -0.0556128 12.3053 0.166838 12.0341C2.42003 9.28776 7.23086 6.03516 12.5 6.03516ZM12.5 17.4953C15.2542 17.4953 17.4948 15.2546 17.4948 12.5005C17.4948 9.74668 15.2544 7.50575 12.5 7.5057C9.74581 7.5057 7.50518 9.74638 7.50518 12.5005C7.50518 15.2545 9.74577 17.4953 12.5 17.4953ZM7.35287 8.5928C4.55165 9.78423 2.55615 11.6406 1.72856 12.5007C3.24365 14.0782 5.22218 15.5044 7.35204 16.4071C5.59424 14.0964 5.59493 10.9027 7.35287 8.5928ZM17.648 8.59388C19.4058 10.9046 19.4051 14.0983 17.6472 16.4082C20.4484 15.2167 22.4439 13.3605 23.2715 12.5003C21.7564 10.9228 19.7778 9.49658 17.648 8.59388ZM12.499 15C11.1205 15 9.99902 13.8785 9.99902 12.5C9.99902 11.1215 11.1205 10 12.499 10C13.8775 10 14.999 11.1215 14.999 12.5C14.999 13.8785 13.8775 15 12.499 15ZM12.499 13.5294C13.0666 13.5294 13.5284 13.0676 13.5284 12.5C13.5284 11.9323 13.0666 11.4706 12.499 11.4706C11.9314 11.4706 11.4696 11.9323 11.4696 12.5C11.4696 13.0676 11.9314 13.5294 12.499 13.5294ZM17.8897 3.89547C17.6885 4.24841 17.2393 4.37101 16.8867 4.16993C16.534 3.9687 16.4112 3.51964 16.6123 3.16694L17.5909 1.45125C17.7921 1.09841 18.241 0.975615 18.5939 1.17679C18.9466 1.37802 19.0694 1.82704 18.8683 2.17978L17.8897 3.89547ZM7.11039 3.89546C7.31157 4.24821 7.76059 4.37105 8.11338 4.16987C8.46613 3.9687 8.58897 3.51963 8.3878 3.16688L7.40927 1.4512C7.20809 1.09845 6.75897 0.975607 6.40627 1.17678C6.05353 1.37796 5.93068 1.82703 6.13186 2.17977L7.11039 3.89546ZM11.7656 22.5493C11.7656 22.1432 12.0948 21.814 12.5009 21.814C12.907 21.814 13.2362 22.1432 13.2362 22.5493V24.265C13.2362 24.671 12.907 25.0003 12.5009 25.0003C12.0948 25.0003 11.7656 24.671 11.7656 24.265V22.5493ZM8.11338 20.8301C7.76063 20.629 7.31161 20.7517 7.11039 21.1045L6.13186 22.8202C5.93068 23.1729 6.05353 23.622 6.40627 23.8232C6.75907 24.0243 7.20809 23.9015 7.40926 23.5488L8.38779 21.8331C8.58902 21.4803 8.46612 21.0313 8.11338 20.8301ZM16.8867 20.8301C17.2394 20.629 17.6886 20.7517 17.8897 21.1045L18.8683 22.8202C19.0694 23.173 18.9466 23.622 18.5939 23.8232C18.241 24.0244 17.792 23.9015 17.5909 23.5487L16.6123 21.833C16.4112 21.4803 16.534 21.0312 16.8867 20.8301Z",
+ fill: "black"
+ }), React__default.createElement("path", {
+ d: "M24.8332 12.0341L25.6093 11.3973L25.6092 11.3972L24.8332 12.0341ZM24.8332 12.9669L25.6092 13.6039L25.6094 13.6036L24.8332 12.9669ZM0.166838 12.9669L0.942986 12.3301L0.942961 12.3301L0.166838 12.9669ZM0.166838 12.0341L0.942961 12.6709L0.942978 12.6709L0.166838 12.0341ZM12.5 7.5057L12.5 6.50177H12.5V7.5057ZM1.72856 12.5007L1.00512 11.8046L0.336008 12.5001L1.00449 13.1961L1.72856 12.5007ZM7.35287 8.5928L8.15175 9.20079L10.4459 6.18632L6.95995 7.66897L7.35287 8.5928ZM7.35204 16.4071L6.96028 17.3315L10.4377 18.8053L8.15105 15.7993L7.35204 16.4071ZM17.6472 16.4082L16.8483 15.8002L14.5542 18.8148L18.0401 17.332L17.6472 16.4082ZM17.648 8.59388L18.0398 7.66956L14.5624 6.19565L16.849 9.20169L17.648 8.59388ZM23.2715 12.5003L23.995 13.1963L24.6641 12.5008L23.9955 11.8048L23.2715 12.5003ZM16.8867 4.16993L16.3893 5.04194L16.3894 5.04198L16.8867 4.16993ZM17.8897 3.89547L17.0177 3.3981L17.0177 3.39815L17.8897 3.89547ZM16.6123 3.16694L17.4844 3.66434L17.4844 3.66431L16.6123 3.16694ZM17.5909 1.45125L18.4629 1.94862L18.4629 1.9486L17.5909 1.45125ZM18.5939 1.17679L19.0912 0.304749L19.0911 0.304666L18.5939 1.17679ZM18.8683 2.17978L19.7403 2.67715L19.7403 2.67713L18.8683 2.17978ZM8.11338 4.16987L8.61068 5.04197L8.61074 5.04194L8.11338 4.16987ZM7.11039 3.89546L7.98246 3.39811L7.98245 3.39809L7.11039 3.89546ZM8.3878 3.16688L9.25986 2.66953L9.25985 2.66951L8.3878 3.16688ZM7.40927 1.4512L6.5372 1.94855L6.53721 1.94857L7.40927 1.4512ZM6.40627 1.17678L6.90363 2.04885L6.90368 2.04882L6.40627 1.17678ZM6.13186 2.17977L5.2598 2.67713L5.25981 2.67714L6.13186 2.17977ZM7.11039 21.1045L6.23838 20.607L6.23833 20.6071L7.11039 21.1045ZM8.11338 20.8301L8.61073 19.958L8.61064 19.958L8.11338 20.8301ZM6.13186 22.8202L5.25981 22.3228L5.2598 22.3228L6.13186 22.8202ZM6.40627 23.8232L5.90892 24.6952L5.90897 24.6953L6.40627 23.8232ZM7.40926 23.5488L8.2813 24.0462L8.28132 24.0461L7.40926 23.5488ZM8.38779 21.8331L7.51578 21.3356L7.51574 21.3357L8.38779 21.8331ZM17.8897 21.1045L17.0176 21.6018L17.0177 21.6019L17.8897 21.1045ZM16.8867 20.8301L16.3895 19.958L16.3894 19.958L16.8867 20.8301ZM18.8683 22.8202L19.7403 22.3229L19.7403 22.3228L18.8683 22.8202ZM18.5939 23.8232L19.0911 24.6953L19.0912 24.6953L18.5939 23.8232ZM17.5909 23.5487L18.463 23.0515L18.4629 23.0514L17.5909 23.5487ZM16.6123 21.833L15.7403 22.3304L15.7403 22.3304L16.6123 21.833ZM12.2323 2.45098C12.2323 2.30261 12.3526 2.18235 12.5009 2.18235V4.1902C13.4614 4.1902 14.2401 3.41151 14.2401 2.45098H12.2323ZM12.2323 0.735295V2.45098H14.2401V0.735295H12.2323ZM12.5009 1.00392C12.3526 1.00392 12.2323 0.883669 12.2323 0.735295H14.2401C14.2401 -0.225237 13.4614 -1.00392 12.5009 -1.00392V1.00392ZM12.7695 0.735295C12.7695 0.883669 12.6493 1.00392 12.5009 1.00392V-1.00392C11.5404 -1.00392 10.7617 -0.225237 10.7617 0.735295H12.7695ZM12.7695 2.45098V0.735295H10.7617V2.45098H12.7695ZM12.5009 2.18235C12.6493 2.18235 12.7695 2.30261 12.7695 2.45098H10.7617C10.7617 3.41151 11.5404 4.1902 12.5009 4.1902V2.18235ZM25.6092 11.3972C23.198 8.45944 18.1238 5.03123 12.5 5.03123V7.03908C17.3769 7.03908 21.9241 10.0721 24.0572 12.6711L25.6092 11.3972ZM25.6094 13.6036C26.1355 12.9623 26.1356 12.0387 25.6093 11.3973L24.0571 12.6709C23.9758 12.5718 23.9759 12.4292 24.057 12.3302L25.6094 13.6036ZM12.5 19.9698C18.2507 19.9698 23.3028 16.4139 25.6092 13.6039L24.0572 12.33C22.0165 14.8163 17.4883 17.962 12.5 17.962V19.9698ZM-0.609309 13.6036C1.85939 16.6128 6.94582 19.9698 12.5 19.9698V17.962C7.68384 17.962 3.12645 14.9916 0.942986 12.3301L-0.609309 13.6036ZM-0.609284 11.3973C-1.13547 12.0387 -1.13547 12.9623 -0.609284 13.6037L0.942961 12.3301C1.02424 12.4292 1.02424 12.5718 0.942961 12.6709L-0.609284 11.3973ZM12.5 5.03123C6.85619 5.03123 1.78204 8.4826 -0.609301 11.3974L0.942978 12.6709C3.05801 10.0929 7.60554 7.03908 12.5 7.03908V5.03123ZM16.4909 12.5005C16.4909 14.7002 14.6997 16.4914 12.5 16.4914V18.4992C15.8086 18.4992 18.4987 15.8091 18.4987 12.5005H16.4909ZM12.5 8.50962C14.6999 8.50966 16.4909 10.3011 16.4909 12.5005H18.4987C18.4987 9.19229 15.8089 6.50183 12.5 6.50177L12.5 8.50962ZM8.5091 12.5005C8.5091 10.3008 10.3003 8.50962 12.5 8.50962V6.50177C9.19136 6.50177 6.50125 9.19194 6.50125 12.5005H8.5091ZM12.5 16.4914C10.3002 16.4914 8.5091 14.7001 8.5091 12.5005H6.50125C6.50125 15.8089 9.19128 18.4992 12.5 18.4992V16.4914ZM2.45199 13.1968C3.23229 12.3858 5.1185 10.6341 7.7458 9.51664L6.95995 7.66897C3.98479 8.93437 1.88002 10.8953 1.00512 11.8046L2.45199 13.1968ZM7.7438 15.4828C5.74951 14.6376 3.88178 13.2934 2.45262 11.8053L1.00449 13.1961C2.60553 14.8631 4.69486 16.3713 6.96028 17.3315L7.7438 15.4828ZM6.55399 7.98482C4.52274 10.6538 4.52194 14.3449 6.55303 17.0149L8.15105 15.7993C6.66655 13.8478 6.66712 11.1516 8.15175 9.20079L6.55399 7.98482ZM18.4461 17.0162C20.4773 14.3471 20.4781 10.6561 18.447 7.98608L16.849 9.20169C18.3335 11.1532 18.3329 13.8494 16.8483 15.8002L18.4461 17.0162ZM22.548 11.8042C21.7678 12.6153 19.8816 14.3669 17.2543 15.4844L18.0401 17.332C21.0153 16.0666 23.12 14.1057 23.995 13.1963L22.548 11.8042ZM17.2563 9.51821C19.2504 10.3634 21.1182 11.7077 22.5475 13.1957L23.9955 11.8048C22.3945 10.1379 20.3051 8.62972 18.0398 7.66956L17.2563 9.51821ZM8.9951 12.5C8.9951 14.433 10.566 16.0039 12.499 16.0039V13.9961C11.6749 13.9961 11.0029 13.3241 11.0029 12.5H8.9951ZM12.499 8.99608C10.566 8.99608 8.9951 10.567 8.9951 12.5H11.0029C11.0029 11.6759 11.6749 11.0039 12.499 11.0039V8.99608ZM16.0029 12.5C16.0029 10.567 14.4319 8.99608 12.499 8.99608V11.0039C13.3231 11.0039 13.9951 11.6759 13.9951 12.5H16.0029ZM12.499 16.0039C14.4319 16.0039 16.0029 14.433 16.0029 12.5H13.9951C13.9951 13.3241 13.3231 13.9961 12.499 13.9961V16.0039ZM12.5245 12.5C12.5245 12.5047 12.5238 12.507 12.523 12.5087C12.522 12.5111 12.52 12.5144 12.5167 12.5177C12.5134 12.521 12.5101 12.523 12.5077 12.524C12.506 12.5247 12.5037 12.5255 12.499 12.5255V14.5333C13.621 14.5333 14.5324 13.6221 14.5324 12.5H12.5245ZM12.499 12.4745C12.5037 12.4745 12.506 12.4753 12.5077 12.476C12.5101 12.477 12.5134 12.479 12.5167 12.4823C12.52 12.4856 12.522 12.4889 12.523 12.4913C12.5238 12.493 12.5245 12.4953 12.5245 12.5H14.5324C14.5324 11.3779 13.621 10.4667 12.499 10.4667V12.4745ZM12.4735 12.5C12.4735 12.4953 12.4743 12.493 12.475 12.4913C12.476 12.4889 12.478 12.4856 12.4813 12.4823C12.4846 12.479 12.4879 12.477 12.4903 12.476C12.492 12.4753 12.4943 12.4745 12.499 12.4745V10.4667C11.3769 10.4667 10.4657 11.3779 10.4657 12.5H12.4735ZM12.499 12.5255C12.4943 12.5255 12.492 12.5247 12.4903 12.524C12.4879 12.523 12.4846 12.521 12.4813 12.5177C12.478 12.5144 12.476 12.5111 12.475 12.5087C12.4743 12.507 12.4735 12.5047 12.4735 12.5H10.4657C10.4657 13.6221 11.3769 14.5333 12.499 14.5333V12.5255ZM16.3894 5.04198C17.2232 5.51759 18.2857 5.22771 18.7618 4.39279L17.0177 3.39815C17.0912 3.26912 17.2553 3.22443 17.3841 3.29788L16.3894 5.04198ZM15.7403 2.66954C15.2644 3.50389 15.555 4.56603 16.3893 5.04194L17.3842 3.29792C17.513 3.37138 17.5579 3.53538 17.4844 3.66434L15.7403 2.66954ZM16.7188 0.953882L15.7403 2.66957L17.4844 3.66431L18.4629 1.94862L16.7188 0.953882ZM19.0911 0.304666C18.2568 -0.171032 17.1948 0.119332 16.7188 0.953909L18.4629 1.9486C18.3894 2.07749 18.2252 2.12226 18.0966 2.04892L19.0911 0.304666ZM19.7403 2.67713C20.2161 1.84285 19.9257 0.780711 19.0912 0.304749L18.0965 2.04884C17.9676 1.97532 17.9227 1.81122 17.9962 1.68243L19.7403 2.67713ZM18.7618 4.39284L19.7403 2.67715L17.9962 1.68241L17.0177 3.3981L18.7618 4.39284ZM7.61608 3.29778C7.7448 3.22438 7.9089 3.26914 7.98246 3.39811L6.23833 4.39282C6.71424 5.22728 7.77637 5.51772 8.61068 5.04197L7.61608 3.29778ZM7.51573 3.66424C7.44227 3.53542 7.48708 3.37135 7.61603 3.29781L8.61074 5.04194C9.44518 4.56604 9.73568 3.50383 9.25986 2.66953L7.51573 3.66424ZM6.53721 1.94857L7.51574 3.66425L9.25985 2.66951L8.28132 0.953824L6.53721 1.94857ZM6.90368 2.04882C6.77478 2.12234 6.61074 2.07749 6.5372 1.94855L8.28133 0.95384C7.80544 0.119409 6.74316 -0.171128 5.90887 0.304747L6.90368 2.04882ZM7.00393 1.68242C7.07739 1.81123 7.03258 1.9753 6.90363 2.04885L5.90892 0.304717C5.07447 0.780616 4.78398 1.84283 5.2598 2.67713L7.00393 1.68242ZM7.98245 3.39809L7.00392 1.6824L5.25981 2.67714L6.23834 4.39283L7.98245 3.39809ZM12.5009 20.81C11.5404 20.81 10.7617 21.5887 10.7617 22.5493H12.7695C12.7695 22.6976 12.6493 22.8179 12.5009 22.8179V20.81ZM14.2401 22.5493C14.2401 21.5887 13.4615 20.81 12.5009 20.81V22.8179C12.3525 22.8179 12.2323 22.6976 12.2323 22.5493H14.2401ZM14.2401 24.265V22.5493H12.2323V24.265H14.2401ZM12.5009 26.0042C13.4615 26.0042 14.2401 25.2255 14.2401 24.265H12.2323C12.2323 24.1166 12.3525 23.9963 12.5009 23.9963V26.0042ZM10.7617 24.265C10.7617 25.2255 11.5404 26.0042 12.5009 26.0042V23.9963C12.6493 23.9963 12.7695 24.1166 12.7695 24.265H10.7617ZM10.7617 22.5493V24.265H12.7695V22.5493H10.7617ZM7.9824 21.6019C7.90887 21.7308 7.74484 21.7756 7.61611 21.7022L8.61064 19.958C7.77642 19.4823 6.71436 19.7727 6.23838 20.607L7.9824 21.6019ZM7.00392 23.3175L7.98245 21.6019L6.23833 20.6071L5.25981 22.3228L7.00392 23.3175ZM6.90363 22.9511C7.03258 23.0246 7.07739 23.1887 7.00393 23.3175L5.2598 22.3228C4.78398 23.1571 5.07447 24.2193 5.90892 24.6952L6.90363 22.9511ZM6.53722 23.0513C6.61074 22.9225 6.77477 22.8776 6.90357 22.9511L5.90897 24.6953C6.74336 25.1711 7.80543 24.8804 8.2813 24.0462L6.53722 23.0513ZM7.51574 21.3357L6.53721 23.0514L8.28132 24.0461L9.25985 22.3304L7.51574 21.3357ZM7.61603 21.7021C7.48717 21.6287 7.44221 21.4646 7.51578 21.3356L9.2598 22.3305C9.73582 21.4961 9.44508 20.4339 8.61073 19.958L7.61603 21.7021ZM18.7618 20.6072C18.2858 19.7725 17.2235 19.4824 16.3895 19.958L17.384 21.7022C17.2553 21.7756 17.0913 21.7309 17.0176 21.6018L18.7618 20.6072ZM19.7403 22.3228L18.7618 20.6071L17.0177 21.6019L17.9962 23.3176L19.7403 22.3228ZM19.0912 24.6953C19.9257 24.2194 20.2161 23.1572 19.7403 22.3229L17.9962 23.3176C17.9227 23.1888 17.9675 23.0247 18.0965 22.9511L19.0912 24.6953ZM16.7187 24.046C17.1946 24.8805 18.2567 25.171 19.0911 24.6953L18.0966 22.9511C18.2253 22.8777 18.3894 22.9224 18.463 23.0515L16.7187 24.046ZM15.7403 22.3304L16.7188 24.0461L18.4629 23.0514L17.4844 21.3357L15.7403 22.3304ZM16.3894 19.958C15.5549 20.4339 15.2645 21.4961 15.7403 22.3304L17.4844 21.3357C17.5579 21.4645 17.5131 21.6286 17.3841 21.7021L16.3894 19.958Z",
+ fill: "black",
+ mask: "url(#path-1-inside-1)"
+ }));
+};
+Icon$u.displayName = 'Icon.Open';
+
+function Icon$v(_ref) {
+ let {
+ className
+ } = _ref;
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ width: "14",
+ height: "15",
+ fill: "none",
+ viewBox: "0 0 14 15"
+ }, React__default.createElement("g", {
+ fill: "#424242",
+ clipPath: "url(#clip0)"
+ }, React__default.createElement("path", {
+ d: "M11.95 2.304A6.954 6.954 0 007 .254a7.017 7.017 0 00-3.24.793c-.572.3-1.102.68-1.572 1.125V.254H1.093v3.828h3.828V2.988H2.917A5.927 5.927 0 017 1.348a5.913 5.913 0 015.882 6.449l1.089.1c.02-.213.029-.429.029-.643h-.547H14c0-1.87-.728-3.628-2.05-4.95zM2.398 10.957l-.851.686c.247.307.523.595.818.856l.724-.819a5.956 5.956 0 01-.69-.723zM1.428 9.217l-1.032.364c.132.372.296.735.488 1.08l.955-.533a5.893 5.893 0 01-.41-.91zM1.094 7.254H0c0 .395.033.792.1 1.18l1.077-.184a5.967 5.967 0 01-.083-.996zM3.89 12.277l-.576.93c.336.207.691.388 1.056.536l.411-1.014a5.894 5.894 0 01-.89-.452zM12.708 8.78a5.88 5.88 0 01-.339.94l.994.458c.165-.359.3-.734.402-1.115l-1.057-.282zM10.488 12.02a5.918 5.918 0 01-.853.521l.488.979a7.02 7.02 0 001.012-.617l-.647-.882zM11.875 10.59a5.957 5.957 0 01-.633.773l.786.762c.274-.284.526-.592.75-.917l-.903-.619zM8.706 12.91a5.887 5.887 0 01-.977.206l.133 1.085c.392-.048.782-.13 1.16-.244l-.316-1.047zM5.737 13.025l-.233 1.068c.384.084.78.136 1.174.153l.05-1.092a5.931 5.931 0 01-.991-.13z"
+ })), React__default.createElement("defs", null, React__default.createElement("clipPath", {
+ id: "clip0"
+ }, React__default.createElement("path", {
+ fill: "#fff",
+ d: "M0 0H14V14H0z",
+ transform: "translate(0 .25)"
+ }))));
+}
+Icon$v.displayName = 'Icon.Sync';
+
+
+
+var SVGIcons = {
+ __proto__: null,
+ ArrowDown: Icon,
+ ArrowLeft: Icon$1,
+ ArrowRight: Icon$2,
+ ArrowUp: Icon$3,
+ Bonde: Icon$4,
+ Bolt: Icon$5,
+ BoltUnfilled: Icon$6,
+ Bot: Icon$7,
+ Check: Icon$8,
+ Close: Icon$9,
+ Cloud: Icon$a,
+ Copy: Icon$b,
+ Info: Icon$c,
+ InfoMsg: Icon$d,
+ Network: Icon$e,
+ New: Icon$f,
+ Pencil: Icon$g,
+ Plus: Icon$h,
+ Search: Icon$i,
+ Settings: Icon$j,
+ Trash: Icon$k,
+ Ticket: Icon$l,
+ TicketRecurring: Icon$m,
+ User: Icon$n,
+ Window: Icon$o,
+ MapMarker: Icon$p,
+ Heart: Icon$q,
+ Warning: Icon$r,
+ Whatsapp: Icon$s,
+ Eye: Icon$t,
+ Open: Icon$u,
+ Sync: Icon$v
+};
+
+var _templateObject$7;
+const IconController = _ref => {
+ let {
+ name,
+ ...props
+ } = _ref;
+ const IconSVG = SVGIcons[name];
+ if (IconSVG) return React__default.createElement(IconSVG, Object.assign({}, props));else return React__default.createElement("span", null);
+};
+const Icon$w = /*#__PURE__*/styled__default(IconController)(_templateObject$7 || (_templateObject$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n vertical-align: middle;\n ", "\n ", "\n ", "\n ", "\n\n &.fill {\n path {\n fill: ", ";\n }\n }\n &.stroke {\n path {\n stroke: ", ";\n }\n }\n"])), props => props.size === 'xs' && "\n width: calc(0.75*20px);\n height: calc(0.75*15px);\n ", props => props.size === 'small' && "\n width: calc(1*20px);\n height: calc(1*15px);\n ", props => props.size === 'default' && "\n width: calc(1.5*20px);\n height: calc(1.5*15px);\n ", props => props.size === 'large' && "\n width: calc(2*20px);\n height: calc(2*15px);\n ", props => props.color, props => props.color);
+Icon$w.defaultProps = {
+ size: 'default',
+ color: '#000'
+};
+
+var _templateObject$8;
+const Link = /*#__PURE__*/styled__default(props => {
+ const {
+ component: Component,
+ className,
+ ...ownProps
+ } = props;
+ return React__default.createElement(Component, Object.assign({
+ className: className
+ }, ownProps));
+})(_templateObject$8 || (_templateObject$8 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-weight: 600;\n font-size: 13px;\n text-transform: uppercase;\n text-decoration: none;\n color: ", ";\n cursor: pointer;\n\n &:hover,\n &:active {\n color: ", ";\n text-decoration: underline;\n }\n &:focus {\n color: ", ";\n }\n"])), props => props.theme.fontFamily, props => props.theme.dark.color.main, props => props.theme.dark.color.hover, props => props.theme.dark.color.focus);
+Link.defaultProps = {
+ theme,
+ component: 'a'
+};
+
+var _templateObject$9;
+const CleanButton = /*#__PURE__*/styled__default.button(_templateObject$9 || (_templateObject$9 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border: none;\n margin: 0;\n padding: 0;\n width: auto;\n overflow: visible;\n\n background: transparent;\n\n /* inherit font & color from ancestor */\n color: inherit;\n font: inherit;\n\n /* Normalize 'line-height'. Cannot be changed from 'normal' in Firefox 4+. */\n line-height: normal;\n\n /* Corrects font smoothing for webkit */\n -webkit-font-smoothing: inherit;\n -moz-osx-font-smoothing: inherit;\n\n /* Corrects inability to style clickable 'input' types in iOS */\n -webkit-appearance: none;\n\n /* Remove excess padding and border in Firefox 4+ */\n &::-moz-focus-inner {\n border: 0;\n padding: 0;\n }\n"])));
+CleanButton.displayName = 'CleanButton';
+
+var _templateObject$a, _templateObject2$3;
+const Wrapper = /*#__PURE__*/styled__default(CleanButton)(_templateObject$a || (_templateObject$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 200px;\n height: 90px;\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 5px;\n cursor: pointer;\n background-color: ", ";\n padding: 0px 20px;\n\n display: grid;\n grid-template-columns: auto auto;\n align-items: center;\n justify-content: center;\n grid-column-gap: 20px;\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.brand.light;
+});
+const Text$1 = /*#__PURE__*/styled__default(Header.H5)(_templateObject2$3 || (_templateObject2$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n text-transform: uppercase;\n margin: 0;\n text-align: left;\n color: ", ";\n"])), _ref2 => {
+ let {
+ theme
+ } = _ref2;
+ return theme.brand.dark;
+});
+const Shortcut = _ref3 => {
+ let {
+ icon,
+ text,
+ theme
+ } = _ref3;
+ return React__default.createElement(Wrapper, {
+ theme: theme
+ }, icon, React__default.createElement(Text$1, {
+ theme: theme
+ }, text));
+};
+Shortcut.defaultProps = {
+ theme
+};
+
+var _templateObject$b, _templateObject2$4, _templateObject3$2;
+const ModalStyled = /*#__PURE__*/styled__default.div(_templateObject$b || (_templateObject$b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: ", "; /* Hidden by default */\n position: fixed; /* Stay in place */\n z-index: 1; /* Sit on top */\n left: 0;\n top: 0;\n width: 100%; /* Full width */\n height: 100%; /* Full height */\n overflow: auto; /* Enable scroll if needed */\n background-color: rgb(0, 0, 0); /* Fallback color */\n background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */\n z-index: 3;\n"])), props => !props.isOpen ? 'none' : 'block');
+const ModalContentStyled = /*#__PURE__*/styled__default.div(_templateObject2$4 || (_templateObject2$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: ", ";\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 4px;\n padding: 30px;\n width: ", ";\n height: ", ";\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n"])), props => props.theme.brand.light, props => props.width, props => props.height ? "" + props.height : 'auto');
+const CloseButtonStyled = /*#__PURE__*/styled__default(CleanButton)(_templateObject3$2 || (_templateObject3$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: ", ";\n font-size: 28px;\n font-weight: bold;\n float: right;\n &:hover,\n &:focus {\n color: ", ";\n text-decoration: none;\n cursor: pointer;\n }\n"])), props => props.theme.commons.main, props => props.theme.brand.dark);
+const Modal = _ref => {
+ let {
+ children,
+ isOpen,
+ onClose,
+ width
+ } = _ref;
+ return React__default.createElement(ModalStyled, {
+ isOpen: isOpen
+ }, React__default.createElement(ModalContentStyled, {
+ width: width,
+ theme: theme
+ }, React__default.createElement(CloseButtonStyled, {
+ theme: theme,
+ onClick: onClose
+ }, "\u00D7"), children));
+};
+Modal.defaultProps = {
+ isOpen: false,
+ width: 300
+};
+
+var _templateObject$c, _templateObject2$5, _templateObject3$3, _templateObject4$2, _templateObject5$2, _templateObject6$2, _templateObject7$1, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12;
+const SelectIcon = /*#__PURE__*/styled__default.div(_templateObject$c || (_templateObject$c = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n transition: all 350ms;\n\n ", "\n"])), props => props.show && styled.css(_templateObject2$5 || (_templateObject2$5 = _taggedTemplateLiteralLoose(["\n transform: rotate(180deg);\n position: relative;\n top: 2px;\n "]))));
+const StyledControl = /*#__PURE__*/styled__default.div(_templateObject3$3 || (_templateObject3$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n & > .Select__control {\n // Sets clear button color dinamically\n & > .Select__indicators > .Select__clear-indicator {\n color: ", ";\n }\n background-color: unset;\n ", "\n ", "\n box-shadow: none;\n width: 100%;\n & > .Select__value-container {\n & > .Select__placeholder {\n font-family: ", ";\n color: ", ";\n }\n }\n }\n"])), props => props.theme.brand.main, props => !props.value ? styled.css(_templateObject4$2 || (_templateObject4$2 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), props.theme.commons.main, props.theme.commons.main) : styled.css(_templateObject5$2 || (_templateObject5$2 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), props.theme.brand.main, props.theme.brand.main), props => props.invalid && styled.css(_templateObject6$2 || (_templateObject6$2 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), props.theme.error, props.theme.error), props => props.theme.fontFamily, props => props.theme.commons.dark);
+StyledControl.defaultProps = {
+ theme
+};
+const StyledSingleValue = /*#__PURE__*/styled__default.div(_templateObject7$1 || (_templateObject7$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n & > .Select__single-value {\n opacity: ", ";\n transition: opacity 300ms;\n font-family: ", ";\n color: ", ";\n }\n"])), props => props.isDisabled ? 0.5 : 1, props => props.theme.fontFamily, props => !props.value ? props.theme.commons.main : props.theme.brand.main);
+StyledSingleValue.defaultProps = {
+ theme
+};
+const StyledOption = /*#__PURE__*/styled__default.div(_templateObject8 || (_templateObject8 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n & > .Select__option {\n font-family: ", ";\n cursor: ", ";\n ", "\n ", "\n ", "\n color: ", ";\n }\n"])), props => props.theme.fontFamily, props => props.isDisabled ? 'not-allowed' : 'default', props => props.isSelected && styled.css(_templateObject9 || (_templateObject9 = _taggedTemplateLiteralLoose(["\n background-color: rgba(74, 74, 74, 0.5);\n &:active {\n backgroundcolor: rgba(74, 74, 74, 0.5);\n }\n "]))), props => props.isFocused && styled.css(_templateObject10 || (_templateObject10 = _taggedTemplateLiteralLoose(["\n background-color: rgba(74, 74, 74, 0.3);\n "]))), props => props.isDisabled && styled.css(_templateObject11 || (_templateObject11 = _taggedTemplateLiteralLoose(["\n color: #ccc;\n "]))), props => props.isSelected ? props.theme.brand.light : props.theme.commons.dark);
+const StyledMenu = /*#__PURE__*/styled__default.div(_templateObject12 || (_templateObject12 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n & > .Select__menu {\n z-index: 3;\n }\n"])));
+StyledOption.defaultProps = {
+ theme
+};
+const SingleValue = props => React__default.createElement(StyledSingleValue, Object.assign({
+ value: props.selectProps.value
+}, props), React__default.createElement(ReactSelect.components.SingleValue, Object.assign({}, props)));
+const DropdownIndicator = props => {
+ const color = !props.selectProps.value ? theme.commons.main : theme.brand.main;
+ return React__default.createElement(ReactSelect.components.DropdownIndicator, Object.assign({}, props), React__default.createElement(SelectIcon, {
+ show: props.selectProps.show
+ }, React__default.createElement(Icon$w, {
+ name: "ArrowDown",
+ size: "small",
+ color: color
+ })));
+};
+const Control = props => React__default.createElement(StyledControl, Object.assign({
+ value: props.selectProps.value
+}, props), React__default.createElement(ReactSelect.components.Control, Object.assign({}, props)));
+const Option = props => React__default.createElement(StyledOption, Object.assign({
+ value: props.selectProps.value
+}, props), React__default.createElement(ReactSelect.components.Option, Object.assign({}, props)));
+const Menu = props => {
+ return React__default.createElement(StyledMenu, null, React__default.createElement(ReactSelect.components.Menu, Object.assign({}, props), props.children));
+};
+const RoundSelect = _ref => {
+ let {
+ ...props
+ } = _ref;
+ const [show, toggle] = React.useState(false);
+ return React__default.createElement(ReactSelect__default, Object.assign({}, props, {
+ components: {
+ DropdownIndicator,
+ IndicatorSeparator: () => null,
+ Control,
+ SingleValue,
+ Option,
+ Menu
+ },
+ onMenuOpen: () => toggle(true),
+ onMenuClose: () => toggle(false),
+ onInputChange: () => toggle(false),
+ show: show,
+ classNamePrefix: 'Select'
+ }));
+};
+RoundSelect.defaultProps = {
+ theme,
+ menuHeight: 300
+};
+RoundSelect.displayName = 'RoundSelect';
+
+var _templateObject$d;
+const WrapSelect = /*#__PURE__*/styled__default.div(_templateObject$d || (_templateObject$d = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 150px;\n & .Select__control {\n border-color: ", ";\n &:hover {\n border-color: ", ";\n }\n &:focus {\n border-color: ", ";\n }\n }\n & .Select__single-value {\n color: ", ";\n &:hover {\n color: ", ";\n }\n &:focus {\n color: ", ";\n }\n }\n .Select__indicators svg path {\n fill: ", ";\n &:hover {\n fill: ", ";\n }\n &:focus {\n fill: ", ";\n }\n }\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.brand.dark;
+}, _ref2 => {
+ let {
+ theme
+ } = _ref2;
+ return theme.commons.dark;
+}, _ref3 => {
+ let {
+ theme
+ } = _ref3;
+ return theme.dark.border.focus;
+}, _ref4 => {
+ let {
+ theme
+ } = _ref4;
+ return theme.brand.dark;
+}, _ref5 => {
+ let {
+ theme
+ } = _ref5;
+ return theme.commons.dark;
+}, _ref6 => {
+ let {
+ theme
+ } = _ref6;
+ return theme.dark.border.focus;
+}, _ref7 => {
+ let {
+ theme
+ } = _ref7;
+ return theme.brand.dark;
+}, _ref8 => {
+ let {
+ theme
+ } = _ref8;
+ return theme.commons.dark;
+}, _ref9 => {
+ let {
+ theme
+ } = _ref9;
+ return theme.dark.border.focus;
+});
+WrapSelect.defaultProps = {
+ theme
+};
+const getItems = (page, totalPages) => {
+ let startPage, endPage;
+ if (totalPages <= 10) {
+ // less than 10 total pages so show all
+ startPage = 1;
+ endPage = totalPages;
+ } else {
+ // more than 10 total pages so calculate start and end pages
+ if (page <= 6) {
+ startPage = 1;
+ endPage = 10;
+ } else if (page + 4 >= totalPages) {
+ startPage = totalPages - 9;
+ endPage = totalPages;
+ } else {
+ startPage = page - 5;
+ endPage = page + 4;
+ }
+ }
+ // create an array of pages to ng-repeat in the pager control
+ return Array.from(Array(endPage + 1 - startPage), (_, i) => startPage + i);
+};
+const Pagination = _ref10 => {
+ let {
+ goToPage,
+ pageIndex,
+ pageSize,
+ totalPages,
+ setPageSize,
+ showMorePlacement
+ } = _ref10;
+ const [items, setItems] = React.useState([]);
+ React.useEffect(() => {
+ setItems(getItems(pageIndex, totalPages));
+ }, [pageIndex, totalPages]);
+ const setPage = page => {
+ const items = getItems(page, totalPages);
+ setItems(items);
+ return goToPage(page);
+ };
+ return React__default.createElement(react.Stack, {
+ direction: "row",
+ my: 4,
+ spacing: 2,
+ justify: "center"
+ }, React__default.createElement(react.Button, {
+ variant: "link",
+ colorScheme: "gray",
+ onClick: () => setPage(0),
+ disabled: pageIndex === 0
+ }, '<<'), ' ', React__default.createElement(react.Button, {
+ variant: "link",
+ colorScheme: "gray",
+ onClick: () => setPage(pageIndex - 1),
+ disabled: pageIndex === 0
+ }, "anterior"), ' ', React__default.createElement(react.Stack, {
+ direction: "row",
+ spacing: 2
+ }, items.map((item, i) => React__default.createElement(react.Button, {
+ key: "page-item-" + i,
+ variant: "link",
+ colorScheme: "gray",
+ color: item - 1 === pageIndex ? 'pink.200' : 'gray.300',
+ onClick: () => setPage(item - 1)
+ }, item))), React__default.createElement(react.Button, {
+ variant: "link",
+ colorScheme: "gray",
+ onClick: () => setPage(pageIndex + 1),
+ disabled: pageIndex === totalPages - 1
+ }, "pr\u00F3xima"), ' ', React__default.createElement(react.Button, {
+ variant: "link",
+ colorScheme: "gray",
+ onClick: () => setPage(totalPages - 1),
+ disabled: pageIndex === totalPages - 1
+ }, '>>'), ' ', React__default.createElement(WrapSelect, null, React__default.createElement(RoundSelect, {
+ options: [{
+ value: 10,
+ label: 'Mostrar 10'
+ }, {
+ value: 20,
+ label: 'Mostrar 20'
+ }, {
+ value: 30,
+ label: 'Mostrar 30'
+ }, {
+ value: 40,
+ label: 'Mostrar 40'
+ }, {
+ value: 50,
+ label: 'Mostrar 50'
+ }],
+ placeholder: "",
+ value: {
+ value: pageSize,
+ label: "Mostrar " + pageSize
+ },
+ onChange: e => setPageSize(Number(e.value)),
+ menuPortalTarget: document.querySelector('body'),
+ menuPlacement: showMorePlacement
+ })));
+};
+
+var _templateObject$e, _templateObject2$6, _templateObject3$4, _templateObject4$3, _templateObject5$3, _templateObject6$3, _templateObject7$2;
+const StyledTh = /*#__PURE__*/styled__default.th(_templateObject$e || (_templateObject$e = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-size: 13px;\n font-weight: 600;\n line-height: 18px;\n text-transform: uppercase;\n color: #a4a4a4;\n text-align: left;\n border-bottom: 1px solid #e5e5e5;\n cursor: pointer;\n height: 40px;\n\n display: flex;\n align-items: center;\n\n /* Sticky */\n position: sticky !important;\n top: 0;\n background-color: ", ";\n\n &.hide {\n display: none;\n }\n"])), props => props.theme.fontFamily, props => props.backgroundColor);
+const StyledTd = /*#__PURE__*/styled__default.td(_templateObject2$6 || (_templateObject2$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-size: 16px;\n font-weight: ", ";\n line-height: 22px;\n color: ", ";\n letter-spacing: normal;\n word-break: break-word;\n min-height: 60px;\n\n margin: 0;\n border-bottom: 1px solid #e5e5e5;\n\n display: flex;\n align-items: center;\n\n &.hide {\n display: none;\n }\n"])), props => props.theme.fontFamily, props => props.bold ? 'bold' : 'normal', props => props.theme.commons.dark);
+const StyledTr = /*#__PURE__*/styled__default.tr(_templateObject3$4 || (_templateObject3$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n :last-child {\n td {\n border-bottom: 0;\n }\n }\n border-bottom: 1px solid #e5e5e5;\n"])));
+const StyledTable = /*#__PURE__*/styled__default.table(_templateObject4$3 || (_templateObject4$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border-spacing: 0;\n border: 1px solid #e5e5e5;\n background-color: ", ";\n width: 100%;\n\n thead {\n /* These styles are required for a scrollable body to align with the header properly */\n overflow-y: auto;\n overflow-x: hidden;\n }\n\n tbody {\n /* These styles are required for a scrollable table body */\n overflow-y: scroll;\n overflow-x: hidden;\n height: 250px;\n }\n\n th,\n td {\n margin: 0;\n padding-left: 20px;\n\n /* In this example we use an absolutely position resizer,\n so this is required. */\n position: relative;\n\n :last-child {\n border-right: 0;\n }\n }\n\n ", "\n\n ", "\n\n .sticky {\n position: sticky !important;\n top: 0;\n z-index: 1;\n background-color: ", ";\n }\n"])), props => props.backgroundColor, _ref => {
+ let {
+ sticky
+ } = _ref;
+ return sticky === 'end' && styled.css(_templateObject5$3 || (_templateObject5$3 = _taggedTemplateLiteralLoose(["\n .sticky {\n right: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-left: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-left: 1px solid #e5e5e5;\n padding-left: 0;\n }\n }\n "])));
+}, _ref2 => {
+ let {
+ sticky
+ } = _ref2;
+ return sticky === 'start' && styled.css(_templateObject6$3 || (_templateObject6$3 = _taggedTemplateLiteralLoose(["\n .sticky {\n left: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n "])));
+}, props => props.backgroundColor);
+const Main = /*#__PURE__*/styled__default.div(_templateObject7$2 || (_templateObject7$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n /* These styles are suggested for the table fill all available space in its containing element */\n display: block;\n /* These styles are required for a horizontaly scrollable table overflow */\n overflow: auto;\n"])));
+function Table(_ref3) {
+ let {
+ columns,
+ data,
+ backgroundColor,
+ sticky,
+ pagination
+ } = _ref3;
+ const defaultColumn = React__default.useMemo(() => ({
+ // When using the useFlexLayout:
+ minWidth: 30,
+ width: 150,
+ maxWidth: 300
+ }), []);
+ const {
+ getTableProps,
+ getTableBodyProps,
+ headerGroups,
+ rows,
+ prepareRow
+ } = reactTable.useTable({
+ columns,
+ data,
+ defaultColumn
+ }, reactTable.useSortBy, reactTable.useFlexLayout);
+ // Render the UI for your table
+ return React__default.createElement(react.Stack, {
+ spacing: 4
+ }, React__default.createElement(Main, null, React__default.createElement(StyledTable, Object.assign({
+ sticky: sticky,
+ backgroundColor: backgroundColor
+ }, getTableProps()), React__default.createElement("thead", null, headerGroups.map(headerGroup => React__default.createElement(StyledTr, Object.assign({}, headerGroup.getHeaderGroupProps()), headerGroup.headers.map(column => React__default.createElement(StyledTh, Object.assign({}, column.getHeaderProps({
+ ...column.getSortByToggleProps(),
+ className: column.collapse ? 'collapse ' : '' + column.className || '',
+ style: column.style
+ }), {
+ theme: theme,
+ backgroundColor: backgroundColor
+ }), React__default.createElement("div", {
+ style: {
+ display: 'flex',
+ justifyContent: 'space-between',
+ paddingRight: '5px'
+ }
+ }, column.render('Header'), React__default.createElement("span", null, column.isSorted ? column.isSortedDesc ? React__default.createElement(Icon$w, {
+ name: "ArrowDown",
+ size: "small"
+ }) : React__default.createElement(Icon$w, {
+ name: "ArrowUp",
+ size: "small"
+ }) : ''))))))), React__default.createElement("tbody", Object.assign({}, getTableBodyProps()), rows.map(row => {
+ prepareRow(row);
+ return React__default.createElement(StyledTr, Object.assign({}, row.getRowProps()), row.cells.map(cell => React__default.createElement(StyledTd, Object.assign({}, cell.getCellProps({
+ className: cell.column.className,
+ style: cell.column.style,
+ bold: cell.column.bold
+ }), {
+ theme: theme
+ }), cell.render('Cell'))));
+ })))), pagination && React__default.createElement(Pagination, {
+ goToPage: pagination.goToPage,
+ pageIndex: pagination.pageIndex,
+ pageSize: pagination.pageSize,
+ setPageSize: pagination.setPageSize,
+ totalPages: pagination.totalPages,
+ showMorePlacement: "top"
+ }));
+}
+Table.defaultProps = {
+ backgroundColor: '#fff'
+};
+
+var _templateObject$f;
+const SpacingStyled = /*#__PURE__*/styled__default.div(_templateObject$f || (_templateObject$f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n ", "\n ", "\n ", "\n ", "\n ", "\n ", "\n ", "\n"])), _ref => {
+ let {
+ margin
+ } = _ref;
+ return margin.top && "margin-top: " + margin.top + "px;";
+}, _ref2 => {
+ let {
+ margin
+ } = _ref2;
+ return margin.bottom && "margin-bottom: " + margin.bottom + "px;";
+}, _ref3 => {
+ let {
+ margin
+ } = _ref3;
+ return margin.left && "margin-left: " + margin.left + "px;";
+}, _ref4 => {
+ let {
+ margin
+ } = _ref4;
+ return margin.right && "margin-right: " + margin.right + "px;";
+}, _ref5 => {
+ let {
+ padding
+ } = _ref5;
+ return padding.top && "padding-top: " + padding.top + "px;";
+}, _ref6 => {
+ let {
+ padding
+ } = _ref6;
+ return padding.bottom && "padding-bottom: " + padding.bottom + "px;";
+}, _ref7 => {
+ let {
+ padding
+ } = _ref7;
+ return padding.left && "padding-left: " + padding.left + "px;";
+}, _ref8 => {
+ let {
+ padding
+ } = _ref8;
+ return padding.right && "padding-right: " + padding.right + "px;";
+});
+/**
+ * The only true Spacing component.
+ */
+const Spacing = _ref9 => {
+ let {
+ margin,
+ padding,
+ ...ownProps
+ } = _ref9;
+ const {
+ x: marginX,
+ y: marginY
+ } = margin;
+ const {
+ x: paddingX,
+ y: paddingY
+ } = padding;
+ return React__default.createElement(SpacingStyled, Object.assign({}, ownProps, {
+ margin: {
+ top: marginY || margin.top,
+ bottom: marginY || margin.bottom,
+ left: marginX || margin.left,
+ right: marginX || margin.right
+ },
+ padding: {
+ top: paddingY || padding.top,
+ bottom: paddingY || padding.bottom,
+ left: paddingX || padding.left,
+ right: paddingX || padding.right
+ }
+ }));
+};
+Spacing.displayName = 'Spacing';
+Spacing.defaultProps = {
+ margin: {},
+ padding: {}
+};
+
+var _templateObject$g;
+const CardStyled = /*#__PURE__*/styled__default.div(_templateObject$g || (_templateObject$g = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n border-radius: ", ";\n background-color: #ffffff;\n box-shadow: 2px 1px 14px 11px rgba(0, 0, 0, 0.04);\n width: ", ";\n display: block;\n ", "\n ", "\n ", "\n"])), props => props.rounded || '1px', props => props.width || '100%', _ref => {
+ let {
+ height
+ } = _ref;
+ return height && "height: " + height + ";";
+}, _ref2 => {
+ let {
+ onClick
+ } = _ref2;
+ return onClick && "cursor: pointer;";
+}, _ref3 => {
+ let {
+ border
+ } = _ref3;
+ return border && "border: " + border + ";";
+});
+const Card = _ref4 => {
+ let {
+ margin,
+ padding,
+ children,
+ ...rest
+ } = _ref4;
+ return React__default.createElement(Spacing, {
+ margin: margin
+ }, React__default.createElement(CardStyled, Object.assign({}, rest), React__default.createElement(Spacing, {
+ padding: padding
+ }, children)));
+};
+Card.defaultProps = {
+ margin: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0
+ },
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0
+ }
+};
+Card.displayName = 'Card';
+
+var _templateObject$h;
+const Message = /*#__PURE__*/styled__default.span(_templateObject$h || (_templateObject$h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: Nunito Sans;\n position: absolute;\n background-color: #424242;\n padding: 23px 16px;\n width: 250px;\n font-size: 13px;\n text-transform: none;\n color: #fff;\n right: -200px;\n top: 25px;\n line-height: 17.73px;\n z-index: 1;\n\n p {\n margin-bottom: 5px;\n }\n"])));
+
+var _templateObject$i;
+const DropdownList = /*#__PURE__*/styled__default.div(_templateObject$i || (_templateObject$i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: #fff;\n padding: 20px 0;\n white-space: nowrap;\n overflow-y: auto;\n box-shadow: 0 3px 7px rgba(0, 0, 0, 0.45), 0 2px 2px rgba(0, 0, 0, 0.45);\n max-height: calc(100vh - 30px - 40px);\n"])));
+
+var _templateObject$j;
+const DropdownItem = /*#__PURE__*/styled__default(_ref => {
+ let {
+ className,
+ value
+ } = _ref;
+ return React__default.createElement("div", {
+ className: className
+ }, value);
+})(_templateObject$j || (_templateObject$j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n &:hover {\n color: #ee0099;\n }\n"])));
+
+const DropdownInput = _ref => {
+ let {
+ value
+ } = _ref;
+ return React__default.createElement("span", null, value);
+};
+
+var _templateObject$k, _templateObject2$7, _templateObject3$5, _templateObject4$4, _templateObject5$4;
+const useOutsideAlerter = (ref, onEvent) => {
+ const handleClickOutside = event => {
+ if (ref.current && !ref.current.contains(event.target)) {
+ onEvent();
+ }
+ };
+ React.useEffect(() => {
+ document.addEventListener('mousedown', handleClickOutside);
+ return () => {
+ document.removeEventListener('mousedown', handleClickOutside);
+ };
+ });
+};
+const DropdownFluid = /*#__PURE__*/styled__default.div(_templateObject$k || (_templateObject$k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n font-family: ", ";\n"])), props => props.theme.fontFamily);
+DropdownFluid.defaultProps = {
+ theme
+};
+const DropdownFluidList = /*#__PURE__*/styled__default.div(_templateObject2$7 || (_templateObject2$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: calc(100% + 15px);\n display: flex;\n flex-direction: column;\n z-index: 3;\n ", "\n ", "\n"])), props => props.direction === 'left' && "\n left: 0;\n ", props => props.direction === 'right' && "\n right: 0;\n ");
+const DropdownFluidInput = /*#__PURE__*/styled__default(_ref => {
+ let {
+ children,
+ className,
+ onToggle,
+ open
+ } = _ref;
+ return React__default.createElement("div", {
+ className: className,
+ onClick: onToggle
+ }, children, React__default.createElement(Icon$w, {
+ name: !open ? 'ArrowDown' : 'ArrowUp',
+ color: "#fff",
+ size: "small"
+ }));
+})(_templateObject3$5 || (_templateObject3$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n z-index: 2;\n cursor: pointer;\n flex-direction: row;\n align-items: center;\n color: #fff;\n font-weight: bold;\n font-size: 13px;\n text-transform: uppercase;\n\n ", " {\n margin-left: 10px;\n }\n"])), Icon$w);
+const DropdownFluidItem = /*#__PURE__*/styled__default.div(_templateObject4$4 || (_templateObject4$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n ", "\n"])), props => props.clickable && "cursor: pointer;");
+const DropdownFluidLayout = /*#__PURE__*/styled__default.div(_templateObject5$4 || (_templateObject5$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n"])));
+const Dropdown = _ref2 => {
+ let {
+ placeholder,
+ item,
+ items,
+ selectable,
+ onSelect,
+ direction,
+ dropdownInput: DropdownInputUI,
+ dropdownItem: DropdownItemUI,
+ dropdownList: DropdownListUI
+ } = _ref2;
+ const [open, setOpen] = React.useState(false);
+ // click ousite dropdown is close
+ const dropdownRef = React.useRef(null);
+ useOutsideAlerter(dropdownRef, () => setOpen(false));
+ return React__default.createElement(DropdownFluid, {
+ ref: dropdownRef
+ }, React__default.createElement(DropdownFluidInput, {
+ open: open,
+ onToggle: () => setOpen(!open)
+ }, !item ? React__default.createElement("span", null, placeholder) : selectable && !!item ? React__default.createElement(DropdownInputUI, {
+ value: item
+ }) : React__default.createElement("span", null, placeholder)), React__default.createElement(DropdownFluidLayout, null, open && React__default.createElement(DropdownFluidList, {
+ direction: direction
+ }, React__default.createElement(DropdownListUI, null, items.map((value, index) => {
+ const clickable = typeof value === 'string' ? true : typeof value.clickable === 'undefined' ? true : value.clickable;
+ const itemProps = {
+ clickable,
+ onClick: !clickable ? null : () => {
+ onSelect(value);
+ setOpen(false);
+ }
+ };
+ return React__default.createElement(DropdownFluidItem, Object.assign({
+ key: "dropdown-item-" + index
+ }, itemProps), typeof value !== 'string' && value.render ? React__default.createElement(value.render, {
+ value: value,
+ selected: item
+ }) : React__default.createElement(DropdownItemUI, {
+ clickable: true,
+ value: value,
+ selected: item
+ }));
+ })))));
+};
+Dropdown.defaultProps = {
+ direction: 'left',
+ selectable: true,
+ items: [],
+ dropdownInput: DropdownInput,
+ dropdownItem: DropdownItem,
+ dropdownList: DropdownList
+};
+
+var _templateObject$l;
+const DropdownIconItem = /*#__PURE__*/styled__default(_ref => {
+ let {
+ className,
+ value,
+ onClick
+ } = _ref;
+ const {
+ icon,
+ label
+ } = value;
+ return React__default.createElement("div", {
+ className: className,
+ onClick: onClick
+ }, React__default.createElement(Icon$w, {
+ name: icon,
+ size: "small"
+ }), label);
+})(_templateObject$l || (_templateObject$l = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n ", " {\n margin-right: 10px;\n }\n\n &:hover {\n color: #ee0099;\n\n ", " {\n path {\n color: #ee0099;\n fill: #ee0099;\n stroke: #ee0099;\n }\n }\n }\n"])), Icon$w, Icon$w);
+
+var _templateObject$m;
+const DropdownImageInput = /*#__PURE__*/styled__default(_ref => {
+ let {
+ className,
+ value
+ } = _ref;
+ const {
+ img,
+ label
+ } = value;
+ return React__default.createElement("div", {
+ className: className
+ }, React__default.createElement("img", {
+ src: img.src,
+ alt: img.alt
+ }), label);
+})(_templateObject$m || (_templateObject$m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-grow: 1;\n align-items: center;\n\n img {\n border-radius: 50px;\n width: 25px;\n height: 25px;\n margin-right: 10px;\n }\n"])));
+
+var _templateObject$n;
+const DropdownImageItem = /*#__PURE__*/styled__default(_ref => {
+ let {
+ className,
+ value
+ } = _ref;
+ const {
+ img,
+ label
+ } = value;
+ return React__default.createElement("div", {
+ className: className
+ }, React__default.createElement("img", {
+ src: img.src,
+ alt: img.alt
+ }), label);
+})(_templateObject$n || (_templateObject$n = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n img {\n width: 40px;\n height: 40px;\n margin-right: 10px;\n }\n ", "\n ", ", ", " {\n margin: 0;\n }\n"])), props => props.clickable && "\n &:hover {\n background-color: #c7c7c7;\n }\n ", Header.H4, Header.H5);
+
+var _templateObject$o;
+const Form = /*#__PURE__*/styled__default.form(_templateObject$o || (_templateObject$o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: ", ";\n"])), props => props.direction);
+Form.defaultProps = {
+ direction: 'column'
+};
+
+const ConnectedForm = _ref => {
+ let {
+ children,
+ onSubmit,
+ ...ownProps
+ } = _ref;
+ return React__default.createElement(reactFinalForm.Form, Object.assign({
+ onSubmit: onSubmit
+ }, ownProps), _ref2 => {
+ let {
+ handleSubmit,
+ ...formProps
+ } = _ref2;
+ return React__default.createElement(Form, {
+ onSubmit: handleSubmit
+ }, children(formProps));
+ });
+};
+
+var _templateObject$p;
+const handleColor = _ref => {
+ let {
+ color
+ } = _ref;
+ switch (color) {
+ case 'info':
+ return '#aaa';
+ case 'error':
+ return '#ff0931';
+ default:
+ return '#50e3c2';
+ }
+};
+const Hint = /*#__PURE__*/styled__default.span(_templateObject$p || (_templateObject$p = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-size: 11px;\n font-weight: 600;\n line-height: 1.36;\n letter-spacing: 0.4px;\n text-transform: uppercase;\n color: ", ";\n"])), props => props.theme.fontFamily, handleColor);
+Hint.defaultProps = {
+ theme,
+ color: 'info'
+};
+
+var _templateObject$q;
+const FormField = /*#__PURE__*/styled__default.div(_templateObject$q || (_templateObject$q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n display: flex;\n padding: 0 0 30px;\n\n flex-direction: ", ";\n ", "\n\n ", " {\n position: absolute;\n right: 0;\n }\n"])), props => props.direction, props => props.direction === 'row' && "\n align-items: flex-end;\n ", Hint);
+FormField.defaultProps = {
+ direction: 'column'
+};
+
+const ArrowUpIcon = /*#__PURE__*/react.createIcon({
+ displayName: 'ArrowUpIcon',
+ viewBox: '4 4 15 15',
+ path: ( /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("path", {
+ fill: "currentColor",
+ d: "M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"
+ })))
+});
+
+const ArrowDownIcon = /*#__PURE__*/react.createIcon({
+ displayName: 'ArrowDownIcon',
+ viewBox: '4 4 15 15',
+ path: ( /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("path", {
+ fill: "currentColor",
+ d: "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"
+ })))
+});
+
+const BotIcon = /*#__PURE__*/react.createIcon({
+ displayName: 'BotIcon',
+ path: ( /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("path", {
+ d: "M16.319 14.684a5.484 5.484 0 00-5.478-5.478H7.285a5.484 5.484 0 00-5.478 5.478h1.404a4.079 4.079 0 014.074-4.074h3.556a4.079 4.079 0 014.074 4.074h1.404zM2.042 6.492c0 1.161.944 2.106 2.105 2.106h9.542c1.16 0 2.105-.945 2.105-2.106V2.106C15.794.945 14.85 0 13.69 0H4.147c-1.16 0-2.106.945-2.106 2.106v4.386zm1.403-4.386c0-.387.315-.702.702-.702h9.542c.387 0 .701.315.701.702v4.386a.703.703 0 01-.701.702H4.147a.703.703 0 01-.702-.702V2.106z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ d: "M7.15 2.643H5.748v3.313H7.15V2.643zM12.304 2.643H10.9v3.313h1.404V2.643zM1.404 2.709H0v3.18h1.404V2.71zM18.125 2.709H16.72v3.18h1.404V2.71z",
+ fill: "currentColor"
+ })))
+});
+
+const EditIcon = /*#__PURE__*/react.createIcon({
+ displayName: 'EditIcon',
+ path: ( /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("circle", {
+ cx: "12",
+ cy: "12",
+ r: "11.5",
+ fill: "#E09",
+ stroke: "currentColor"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ fill: "currentColor",
+ d: "M6.04 15.008l-.013 2.418c0 .137.05.273.15.372.098.1.222.15.359.15l2.406-.013c.137 0 .26-.05.36-.149l8.31-8.31a.524.524 0 000-.732L15.23 6.338a.524.524 0 00-.731 0l-1.662 1.674-6.648 6.636a.553.553 0 00-.15.36zm8.83-7.579l1.675 1.675-.943.943-1.674-1.675.943-.943zm-7.8 7.802l6.126-6.127 1.675 1.674-6.127 6.115-1.687.012.012-1.674z"
+ })))
+});
+
+const InfoIcon = /*#__PURE__*/react.createIcon({
+ displayName: 'InfoIcon',
+ viewBox: '0 0 14 14',
+ path: ( /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("path", {
+ fill: "currentColor",
+ d: "M7.012 14c3.862 0 7-3.138 7-7s-3.138-7-7-7S0 3.138 0 7s3.15 7 7.012 7zm0-13.034a6.032 6.032 0 016.022 6.022 6.032 6.032 0 01-6.022 6.022A6.032 6.032 0 01.99 6.988 6.032 6.032 0 017.012.966z"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ fill: "currentColor",
+ d: "M8.208 8.824V6.066a.735.735 0 00-.734-.734h-1.35a.735.735 0 00-.734.734v.694c0 .36.262.661.605.722V8.84a.735.735 0 00-.605.723v.694c0 .404.33.734.734.734h1.98c.404 0 .734-.33.734-.734v-.694a.744.744 0 00-.63-.74zm-.17 1.367H6.19v-.563h.12a.485.485 0 00.485-.485V7.18a.485.485 0 00-.485-.485h-.12v-.564h1.22v3c0 .267.217.484.484.484h.145v.576zm-.985-5.098a1.16 1.16 0 100-2.322 1.16 1.16 0 00-.001 2.322zm0-1.523a.363.363 0 11-.001.725.363.363 0 010-.725z"
+ }), /*#__PURE__*/React__default.createElement("circle", {
+ cx: "6.811",
+ cy: "6.811",
+ r: "4.865",
+ fill: "#fff"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ fill: "currentColor",
+ d: "M7.115 10.704a.697.697 0 01-.462-.154c-.116-.11-.174-.264-.174-.462V6.127c0-.198.058-.349.174-.451a.697.697 0 01.462-.154c.185 0 .338.05.462.154.123.102.184.253.184.451v3.961c0 .198-.061.352-.184.462a.697.697 0 01-.462.154zm0-6.096c-.233 0-.417-.061-.554-.184a.663.663 0 01-.206-.503.63.63 0 01.206-.493c.137-.123.321-.184.554-.184.226 0 .407.061.544.184a.616.616 0 01.215.493.663.663 0 01-.205.503c-.137.123-.322.184-.554.184z"
+ })))
+});
+
+const NetIcon = /*#__PURE__*/react.createIcon({
+ displayName: 'NetIcon',
+ path: ( /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("path", {
+ d: "M24.3 17.858c0-3.508-2.845-6.362-6.342-6.362h-4.116c-3.497 0-6.342 2.854-6.342 6.362h1.625c0-2.61 2.116-4.732 4.716-4.732h4.117c2.601 0 4.717 2.123 4.717 4.732H24.3z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M15.905 1.542a3.758 3.758 0 00-3.752 3.763 3.758 3.758 0 003.752 3.764 3.758 3.758 0 003.752-3.764 3.758 3.758 0 00-3.752-3.763zm-5.288 3.763c0-2.93 2.367-5.305 5.288-5.305 2.921 0 5.29 2.375 5.29 5.305 0 2.93-2.369 5.306-5.29 5.306-2.92 0-5.288-2.376-5.288-5.306z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ d: "M9.815 3.421a4.236 4.236 0 00-2.119-.563c-2.327 0-4.213 1.862-4.213 4.159 0 2.297 1.886 4.16 4.213 4.16 1.339 0 2.532-.617 3.304-1.579a4.702 4.702 0 01-.884-.849 2.997 2.997 0 01-2.42 1.218c-1.65 0-2.989-1.32-2.989-2.95 0-1.63 1.338-2.95 2.989-2.95.593 0 1.145.17 1.61.464a4.59 4.59 0 01.509-1.11zM9.538 11.875a5.092 5.092 0 00-.207-.005H6.05C3.267 11.87 1 14.108 1 16.858h1.294c0-2.046 1.686-3.71 3.758-3.71h1.74a5.612 5.612 0 011.746-1.273z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M7.696 2.958c-2.273 0-4.113 1.818-4.113 4.059 0 2.24 1.84 4.06 4.113 4.06 1.27 0 2.406-.57 3.16-1.462a4.803 4.803 0 01-.738-.705 3.098 3.098 0 01-2.422 1.158c-1.705 0-3.089-1.365-3.089-3.051 0-1.686 1.384-3.05 3.089-3.05.566 0 1.097.15 1.553.413a4.69 4.69 0 01.426-.922 4.137 4.137 0 00-1.98-.5zM3.383 7.017c0-2.353 1.932-4.26 4.313-4.26.79 0 1.532.21 2.169.578l.09.052-.055.088c-.212.335-.38.699-.499 1.085l-.038.125-.11-.07a2.903 2.903 0 00-1.557-.449c-1.597 0-2.889 1.278-2.889 2.851s1.292 2.85 2.889 2.85c.962 0 1.814-.464 2.34-1.177l.076-.105.082.102c.25.313.541.592.865.83l.084.062-.065.082a4.326 4.326 0 01-3.382 1.615c-2.381 0-4.313-1.906-4.313-4.259zM.9 16.857c0-2.806 2.312-5.087 5.152-5.087H9.33c.07 0 .141.002.211.005l.038.19a5.511 5.511 0 00-1.714 1.251l-.03.032H6.052c-2.018 0-3.658 1.62-3.658 3.61v.1H.9v-.1zm.2-.1h1.096c.054-2.055 1.764-3.709 3.856-3.709h1.676c.39-.422.842-.786 1.343-1.078h-3.02c-2.697 0-4.896 2.14-4.95 4.788z",
+ fill: "currentColor"
+ })))
+});
+
+const PagesIcon = /*#__PURE__*/react.createIcon({
+ displayName: 'PagesIcon',
+ path: ( /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M1.5 1.5v15h19v-15h-19zM1 0a1 1 0 00-1 1v16a1 1 0 001 1h20a1 1 0 001-1V1a1 1 0 00-1-1H1z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M22 6H0V4.5h22V6z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ d: "M19 2.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",
+ fill: "currentColor"
+ })))
+});
+
+const SettingsIcon = /*#__PURE__*/react.createIcon({
+ displayName: 'PagesIcon',
+ path: ( /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("path", {
+ d: "M19.753 8.148a62.2 62.2 0 00-.977-.139 8.613 8.613 0 00-.664-1.6c.203-.264.402-.529.594-.789a1.474 1.474 0 00-.143-1.907l-1.276-1.276a1.474 1.474 0 00-1.907-.143c-.262.193-.526.392-.79.594a8.608 8.608 0 00-1.6-.663c-.044-.33-.09-.659-.138-.978A1.474 1.474 0 0011.402 0H9.598c-.72 0-1.344.536-1.45 1.247-.048.319-.094.647-.138.977a8.606 8.606 0 00-1.6.664c-.264-.202-.528-.401-.79-.594a1.474 1.474 0 00-1.906.143L2.438 3.713c-.51.51-.572 1.33-.144 1.907.192.26.392.525.594.79a8.62 8.62 0 00-.663 1.6c-.33.044-.659.09-.978.138C.537 8.254 0 8.878 0 9.598v1.804c0 .72.536 1.344 1.247 1.45.32.048.647.094.978.138.166.554.388 1.09.663 1.6-.202.264-.402.53-.594.79a1.474 1.474 0 00.143 1.906l1.276 1.276c.51.51 1.33.572 1.907.144.261-.193.526-.392.79-.594.51.275 1.046.497 1.6.663.044.33.09.659.138.978.106.71.73 1.247 1.45 1.247h1.804c.72 0 1.344-.536 1.45-1.247.048-.32.094-.647.138-.978a8.604 8.604 0 001.6-.663c.264.202.528.4.79.594a1.474 1.474 0 001.906-.143l1.276-1.276c.51-.51.572-1.33.144-1.907-.193-.26-.392-.526-.594-.79.275-.51.497-1.046.664-1.6.33-.044.658-.09.977-.138A1.474 1.474 0 0021 11.402V9.598c0-.72-.536-1.344-1.247-1.45zm-.51 3.003c-.29.042-.586.083-.883.122a1.461 1.461 0 00-1.224 1.061 6.842 6.842 0 01-.647 1.56 1.462 1.462 0 00.115 1.617c.182.237.362.475.538.71l-.92.921a62.411 62.411 0 01-.71-.538 1.462 1.462 0 00-1.618-.115 6.846 6.846 0 01-1.56.647 1.461 1.461 0 00-1.061 1.224c-.039.297-.08.593-.122.883H9.85c-.042-.29-.083-.586-.122-.883a1.462 1.462 0 00-1.061-1.224 6.847 6.847 0 01-1.56-.647 1.462 1.462 0 00-1.617.115c-.236.181-.474.362-.71.538l-.921-.92c.175-.236.356-.474.538-.711.361-.47.406-1.104.115-1.617a6.845 6.845 0 01-.647-1.56 1.462 1.462 0 00-1.224-1.061c-.297-.04-.593-.08-.883-.122V9.849c.29-.042.586-.083.883-.122a1.462 1.462 0 001.224-1.061 6.84 6.84 0 01.647-1.56 1.462 1.462 0 00-.115-1.617 61.019 61.019 0 01-.538-.71l.92-.921c.236.176.475.357.71.538.47.361 1.105.406 1.618.115a6.847 6.847 0 011.56-.647A1.461 1.461 0 009.727 2.64c.039-.297.08-.592.122-.882h1.302c.042.29.083.585.122.882a1.462 1.462 0 001.061 1.224c.544.15 1.069.368 1.56.647a1.462 1.462 0 001.617-.115c.236-.181.474-.362.71-.538l.921.92c-.175.236-.356.474-.538.711a1.462 1.462 0 00-.115 1.617c.28.491.497 1.016.647 1.56.156.568.637.985 1.224 1.062.297.038.593.079.883.121v1.302z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ d: "M10.506 6.3A4.21 4.21 0 006.3 10.506a4.21 4.21 0 004.206 4.206 4.21 4.21 0 004.206-4.206A4.21 4.21 0 0010.506 6.3zm0 6.542a2.34 2.34 0 01-2.336-2.336 2.339 2.339 0 012.336-2.336 2.34 2.34 0 012.336 2.336 2.34 2.34 0 01-2.336 2.336z",
+ fill: "currentColor"
+ })))
+});
+
+const CloseIcon = /*#__PURE__*/react.createIcon({
+ displayName: 'CloseIcon',
+ viewBox: '0 0 10 10',
+ path: ( /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("path", {
+ fill: "currentColor",
+ fillRule: "evenodd",
+ stroke: "currentColor",
+ strokeLinecap: "square",
+ strokeWidth: "1.5",
+ d: "M5.337 5.013l3.324 3.325.107.107-.2.2-.107-.106-3.325-3.325L1.74 8.61l-.1.1-.214-.213.1-.1L4.922 5 1.604 1.682l-.107-.107.2-.201.107.107 3.319 3.318 3.273-3.273.1-.1.215.214-.1.1-3.274 3.273z"
+ })))
+});
+
+const UploadImageIcon = /*#__PURE__*/react.createIcon({
+ displayName: 'UploadImageIcon',
+ viewBox: '0 0 84 84',
+ path: ( /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("circle", {
+ cx: "42",
+ cy: "42",
+ r: "41.5",
+ fill: "#424242",
+ stroke: "#EEE"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ fill: "#000",
+ d: "M59.58 29H25v25.56h34.58V29z",
+ opacity: "0.502"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ fill: "#fff",
+ d: "M37.968 36.668l9.262 12.78H28.705l9.263-12.78z"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ fill: "#fff",
+ d: "M49.083 43.058l5.558 6.39H43.525l5.558-6.39z"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ fill: "#D8D8D8",
+ stroke: "#fff",
+ d: "M57.904 52.558h3.89v.228h-3.891v3.964h-.242v-3.964h-3.884v-.228h3.884v-3.825h.243v3.825z"
+ }), /*#__PURE__*/React__default.createElement("circle", {
+ cx: "72",
+ cy: "72",
+ r: "11.5",
+ fill: "#E09",
+ stroke: "#fff"
+ }), /*#__PURE__*/React__default.createElement("path", {
+ fill: "#fff",
+ d: "M66.04 75.008l-.013 2.418c0 .137.05.273.15.372.098.1.222.15.359.15l2.406-.013c.137 0 .26-.05.36-.149l8.31-8.31a.524.524 0 000-.732l-2.382-2.406a.524.524 0 00-.731 0l-1.662 1.674-6.648 6.636a.553.553 0 00-.15.36zm8.83-7.579l1.675 1.675-.942.942-1.675-1.674.943-.943zm-7.8 7.802l6.126-6.127 1.675 1.674-6.127 6.115-1.687.012.012-1.674z"
+ })))
+});
+
+// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
+const InputField = props => {
+ const {
+ variant,
+ label,
+ name,
+ placeholder,
+ helpText,
+ type,
+ disabled,
+ onBlur,
+ ...config
+ } = props;
+ const {
+ input,
+ meta
+ } = reactFinalForm.useField(name, config);
+ return React__default.createElement(react.FormControl, {
+ isInvalid: (meta.error || meta.submitError) && meta.touched,
+ mb: 4
+ }, React__default.createElement(react.Flex, {
+ direction: "row",
+ justify: "space-between"
+ }, React__default.createElement(react.Stack, {
+ direction: "row",
+ spacing: 2,
+ align: "center"
+ }, React__default.createElement(react.FormLabel, null, label), helpText && React__default.createElement(react.Tooltip, {
+ label: helpText
+ }, React__default.createElement(InfoIcon, {
+ color: "gray.300",
+ boxSize: 3
+ }))), (meta.error || meta.submitError) && meta.touched && React__default.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError)), React__default.createElement(react.Input, {
+ variant: variant,
+ value: input.value,
+ onChange: input.onChange,
+ placeholder: placeholder,
+ type: type || input.type,
+ disabled: disabled,
+ onBlur: e => {
+ onBlur && onBlur(e);
+ input.onBlur(e);
+ }
+ }));
+};
+
+const SelectField = props => {
+ const {
+ label,
+ name,
+ disabled,
+ children,
+ ...config
+ } = props;
+ const {
+ input,
+ meta
+ } = reactFinalForm.useField(name, config);
+ return React__default.createElement(react.FormControl, {
+ isInvalid: (meta.error || meta.submitError) && meta.touched,
+ mb: 4
+ }, React__default.createElement(react.Flex, {
+ direction: "row",
+ justify: "space-between"
+ }, React__default.createElement(react.FormLabel, null, label), (meta.error || meta.submitError) && meta.touched && React__default.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError)), React__default.createElement(react.Select, Object.assign({
+ disabled: disabled
+ }, input), children));
+};
+
+var _templateObject$r;
+const Label = /*#__PURE__*/styled__default.label(_templateObject$r || (_templateObject$r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-weight: 600;\n font-size: 13px;\n line-height: 1.15;\n letter-spacing: 0.5px;\n color: ", ";\n text-transform: uppercase;\n"])), props => props.theme.fontFamily, props => props.theme.commons.main);
+Label.defaultProps = {
+ theme
+};
+
+// Validate for redux-form
+// https://redux-form.com/7.4.2/docs/api/field.md/#-code-validate-value-allvalues-props-name-gt-error-code-optional-
+const isEmail = message => value => {
+ // eslint-disable-next-line
+ const regexEmail = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
+ return !regexEmail.test(value) ? message : undefined;
+};
+const required = message => value => !value ? message : undefined;
+const min = (size, message) => value => value && value.length < size ? message : undefined;
+const max = (size, message) => value => value && value.length > size ? message : undefined;
+const composeValidators = function () {
+ for (var _len = arguments.length, validators = new Array(_len), _key = 0; _key < _len; _key++) {
+ validators[_key] = arguments[_key];
+ }
+ return value => validators.reduce((error, validator) => error || validator(value), undefined);
+};
+var Validators = {
+ isEmail,
+ required,
+ min,
+ max,
+ composeValidators
+};
+
+var _templateObject$s;
+const Textarea = /*#__PURE__*/styled__default.textarea(_templateObject$s || (_templateObject$s = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n font-family: ", ";\n font-size: 16px;\n color: #000000;\n border: none;\n border-bottom: 1px solid #AAAAAA;\n padding: 0 0 8px;\n flex: 1;\n background: none;\n min-height: 109px;\n\n &[disabled] {\n color: #D1CDD2;\n background: none;\n }\n\n &:focus {\n outline: none;\n border-bottom: 1px solid ", ";\n }\n\n &::placeholder {\n color: ", ";\n }\n &::-webkit-input-placeholder {\n color: ", ";\n }\n &::-moz-placeholder {\n color: ", ";\n }\n &:-ms-input-placeholder {\n color: ", ";\n }\n &:-moz-placeholder {\n color: ", ";\n }\n\n ", "\n"])), props => props.fullWidth && 'width: 100%;', theme.fontFamily, theme.brand.main, theme.commons.dark, theme.commons.dark, theme.commons.dark, theme.commons.dark, theme.commons.dark, props => props.invalid && "border-color: #ff0931;");
+Textarea.displayName = 'Textarea';
+
+// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
+const TextareaField = props => {
+ const {
+ label,
+ name,
+ placeholder,
+ disabled,
+ ...config
+ } = props;
+ const {
+ input,
+ meta
+ } = reactFinalForm.useField(name, config);
+ return React__default.createElement(FormField, null, React__default.createElement(Label, null, label), (meta.error || meta.submitError) && meta.touched && React__default.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError), React__default.createElement("div", {
+ style: {
+ display: 'flex',
+ paddingTop: '8px'
+ }
+ }, React__default.createElement(Textarea, Object.assign({
+ placeholder: placeholder,
+ invalid: (meta.error || meta.submitError) && meta.touched,
+ disabled: disabled
+ }, input))));
+};
+
+const RoundSelectField = _ref => {
+ let {
+ label,
+ name,
+ placeholder,
+ disabled,
+ options,
+ menuPortalTarget,
+ isClearable,
+ onChange,
+ maxMenuHeight = 300,
+ menuPlacement = 'bottom',
+ ...config
+ } = _ref;
+ const {
+ input,
+ meta
+ } = reactFinalForm.useField(name, config);
+ return React__default.createElement(FormField, null, label && React__default.createElement(Label, null, label), (meta.error || meta.submitError) && meta.touched && React__default.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError), React__default.createElement(RoundSelect, Object.assign({}, input, {
+ options: options,
+ placeholder: placeholder,
+ invalid: (meta.error || meta.submitError) && meta.touched,
+ disabled: disabled,
+ menuPortalTarget: menuPortalTarget,
+ isClearable: isClearable,
+ maxMenuHeight: maxMenuHeight,
+ menuPlacement: menuPlacement,
+ onChange: e => {
+ onChange && onChange(e);
+ input.onChange(e);
+ }
+ })));
+};
+
+var _templateObject$t, _templateObject2$8, _templateObject3$6, _templateObject4$5;
+const RoundInput = /*#__PURE__*/styled__default.input(_templateObject$t || (_templateObject$t = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 0 60px 0 15px;\n width: 100%;\n height: 40px;\n\n font-family: ", ";\n font-size: 14px;\n line-height: 22px;\n color: ", ";\n border: none;\n box-sizing: border-box;\n background-color: unset;\n\n &[disabled] {\n color: #d1cdd2;\n background: unset;\n }\n\n &::placeholder,\n &::-webkit-input-placeholder,\n &::-moz-placeholder,\n &:-ms-input-placeholder,\n &:-moz-placeholder {\n color: ", ";\n font-family: ", ";\n }\n\n ", "\n"])), props => props.theme.fontFamily, props => props.theme.commons.dark, props => props.theme.commons.dark, props => props.theme.fontFamily, _ref => {
+ let {
+ border,
+ value,
+ theme,
+ invalid
+ } = _ref;
+ return border && styled.css(_templateObject2$8 || (_templateObject2$8 = _taggedTemplateLiteralLoose(["\n border: 1px solid;\n border-radius: 7px;\n ", "\n ", "\n "])), !value ? styled.css(_templateObject3$6 || (_templateObject3$6 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), theme.commons.main, theme.commons.main) : styled.css(_templateObject4$5 || (_templateObject4$5 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), theme.brand.main, theme.brand.main), invalid && "border-color: " + theme.error + ";");
+});
+RoundInput.defaultProps = {
+ invalid: false,
+ type: 'text',
+ theme
+};
+
+var _templateObject$u, _templateObject2$9, _templateObject3$7;
+const StyledFormField = /*#__PURE__*/styled__default(FormField)(_templateObject$u || (_templateObject$u = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border: 1px solid;\n border-radius: 7px;\n padding: 0;\n ", "\n\n ", "\n"])), props => !props.value ? styled.css(_templateObject2$9 || (_templateObject2$9 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), props.theme.commons.main, props.theme.commons.main) : styled.css(_templateObject3$7 || (_templateObject3$7 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), props.theme.brand.main, props.theme.brand.main), props => props.invalid && "\n border-color: " + props.theme.error + ";\n ");
+StyledFormField.defaultProps = {
+ theme
+};
+const RoundInputField = _ref => {
+ let {
+ name,
+ type,
+ label,
+ placeholder,
+ disabled,
+ onBlur,
+ ...config
+ } = _ref;
+ const {
+ input,
+ meta
+ } = reactFinalForm.useField(name, config);
+ return React__default.createElement(StyledFormField, {
+ value: input.value,
+ invalid: (meta.error || meta.submitError) && meta.touched
+ }, label && React__default.createElement(Label, null, label), (meta.error || meta.submitError) && meta.touched && React__default.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError), React__default.createElement(RoundInput, Object.assign({}, input, {
+ placeholder: placeholder,
+ type: type,
+ invalid: (meta.error || meta.submitError) && meta.touched,
+ disabled: disabled,
+ onBlur: e => {
+ onBlur && onBlur(e);
+ input.onBlur(e);
+ }
+ })));
+};
+
+var _templateObject$v;
+const Switch = _ref => {
+ let {
+ onClick,
+ checked,
+ disabled
+ } = _ref;
+ return React__default.createElement(Label$1, null, React__default.createElement("input", {
+ onClick: onClick,
+ type: "checkbox",
+ checked: checked,
+ disabled: disabled
+ }), React__default.createElement("span", {
+ className: "slider"
+ }));
+};
+const Label$1 = /*#__PURE__*/styled__default.label(_templateObject$v || (_templateObject$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n display: inline-block;\n width: 28px;\n min-width: 28px;\n height: 14px;\n border-radius: 50%;\n box-shadow: 3px 3px 10px 1px rgb(138 138 138 / 55%);\n\n input {\n opacity: 0;\n width: 0;\n height: 0;\n }\n\n .slider {\n position: absolute;\n cursor: pointer;\n border-radius: 34px;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background-color: #858585;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n .slider::before {\n position: absolute;\n content: '';\n height: 12px;\n width: 12px;\n border-radius: 50%;\n left: 1px;\n bottom: 1px;\n background-color: white;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n input:checked + .slider {\n background-color: #50e3c2;\n }\n\n input:checked + .slider::before {\n -webkit-transform: translateX(14px);\n -ms-transform: translateX(14px);\n transform: translateX(14px);\n }\n"])));
+
+var _templateObject$w;
+const SwitchField = props => {
+ const {
+ label,
+ name,
+ disabled,
+ textOff,
+ textOn,
+ ...config
+ } = props;
+ const {
+ input,
+ meta
+ } = reactFinalForm.useField(name, config);
+ return React__default.createElement(FormField, null, (meta.error || meta.submitError) && meta.touched && React__default.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError), React__default.createElement(Container, {
+ disabled: !input.value
+ }, label && React__default.createElement(Label, null, label), React__default.createElement("span", {
+ className: "text"
+ }, input.value ? textOn : textOff), React__default.createElement(Switch, {
+ disabled: disabled,
+ onClick: () => input.onChange(!input.value),
+ checked: input.value
+ })));
+};
+const Container = /*#__PURE__*/styled__default.div(_templateObject$w || (_templateObject$w = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n\n .text {\n font-size: '13px';\n font-weight: 800;\n margin-right: 8px;\n color: ", ";\n }\n"])), _ref => {
+ let {
+ disabled
+ } = _ref;
+ return disabled ? '#858585' : '#50E3C2';
+});
+
+// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
+const RadioField = _ref => {
+ let {
+ children,
+ label,
+ name,
+ direction
+ } = _ref;
+ const {
+ input,
+ meta
+ } = reactFinalForm.useField(name);
+ return React__default.createElement(react.FormControl, {
+ isInvalid: (meta.error || meta.submitError) && meta.touched,
+ mb: 4
+ }, React__default.createElement(react.Flex, {
+ direction: "row",
+ justify: "space-between"
+ }, React__default.createElement(react.FormLabel, null, label), (meta.error || meta.submitError) && meta.touched && React__default.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError)), React__default.createElement(react.RadioGroup, {
+ onChange: input.onChange,
+ value: input.value
+ }, React__default.createElement(react.Stack, {
+ direction: direction,
+ spacing: 4
+ }, children)));
+};
+RadioField.defaultProps = {
+ direction: 'row'
+};
+
+const S3UploadFileField = _ref => {
+ let {
+ children,
+ onChange,
+ signingUrl,
+ disabled
+ } = _ref;
+ const inputRef = React__default.useRef(null);
+ // Override callbacks
+ const onProgress = args => {
+ console.log('onProgress', {
+ args
+ });
+ };
+ const onError = args => {
+ console.log('onError', {
+ args
+ });
+ };
+ const onFinish = _ref2 => {
+ let {
+ signedUrl
+ } = _ref2;
+ const imageUrl = signedUrl.substring(0, signedUrl.indexOf('?'));
+ console.log('onFinish', {
+ imageUrl
+ });
+ onChange(imageUrl);
+ };
+ // Button should be ReactS3Uploader active.
+ const onClick = evt => {
+ evt === null || evt === void 0 ? void 0 : evt.preventDefault();
+ inputRef === null || inputRef === void 0 ? void 0 : inputRef.current.click();
+ };
+ return React__default.createElement("div", {
+ className: "wrapper-upload-file-button"
+ }, React__default.createElement("button", {
+ onClick: onClick,
+ disabled: disabled
+ }, children), React__default.createElement(ReactS3Uploader, {
+ signingUrl: signingUrl,
+ accept: "image/*",
+ onProgress: onProgress,
+ onError: onError,
+ onFinish: onFinish,
+ inputRef: inputRef,
+ style: {
+ display: 'none'
+ }
+ }));
+};
+// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
+const S3UploadField = props => {
+ const {
+ label,
+ helpText,
+ name,
+ disabled,
+ alt,
+ signingUrl,
+ uploadImageIcon: UploadImageIconComponent,
+ removeTextButton,
+ borderRadius,
+ boxSize,
+ ...config
+ } = props;
+ const {
+ input
+ } = reactFinalForm.useField(name, config);
+ return React__default.createElement(react.Stack, {
+ direction: "row",
+ spacing: 6,
+ mb: 4,
+ align: "center"
+ }, React__default.createElement(S3UploadFileField, {
+ onChange: input.onChange,
+ disabled: disabled,
+ signingUrl: signingUrl
+ }, input.value ? React__default.createElement(react.Box, {
+ position: "relative",
+ boxSize: boxSize,
+ borderRadius: borderRadius
+ }, React__default.createElement(react.Image, {
+ alt: alt,
+ src: input.value
+ }), React__default.createElement(react.Box, {
+ position: "absolute",
+ bottom: "3px",
+ right: "0"
+ }, React__default.createElement(EditIcon, {
+ color: "white",
+ boxSize: 6
+ }))) : React__default.createElement(UploadImageIconComponent, {
+ boxSize: boxSize
+ })), React__default.createElement(react.FormControl, {
+ id: name + "-id"
+ }, React__default.createElement(react.FormLabel, null, label), helpText && React__default.createElement(react.FormHelperText, {
+ mt: 3,
+ color: "gray.400",
+ fontSize: "md"
+ }, helpText), props.formData && React__default.createElement(react.Button, {
+ type: "button",
+ variant: "link",
+ fontWeight: "normal",
+ colorScheme: "gray",
+ onClick: () => props.onChange(null)
+ }, removeTextButton)));
+};
+S3UploadField.defaultProps = {
+ uploadImageIcon: UploadImageIcon,
+ removeTextButton: 'Remover',
+ borderRadius: '50%',
+ boxSize: '85px'
+};
+
+// interface ColorFieldProps extends {
+// name: string
+// label?: string
+// helpText?: string
+// }
+const ColorField = props => {
+ const {
+ // variant,
+ label,
+ name,
+ // placeholder,
+ helpText,
+ // type,
+ // disabled,
+ // onBlur,
+ ...config
+ } = props;
+ const {
+ input,
+ meta
+ } = reactFinalForm.useField(name, config);
+ return React__default.createElement(react.FormControl, {
+ isInvalid: (meta.error || meta.submitError) && meta.touched,
+ mb: 4
+ }, React__default.createElement(react.Flex, {
+ direction: "row",
+ justify: "space-between"
+ }, React__default.createElement(react.Stack, {
+ direction: "row",
+ spacing: 2,
+ align: "center"
+ }, React__default.createElement(react.FormLabel, null, label), helpText && React__default.createElement(react.Tooltip, {
+ label: helpText
+ }, React__default.createElement(InfoIcon, {
+ boxSize: 4
+ }))), (meta.error || meta.submitError) && meta.touched && React__default.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError)), React__default.createElement(reactColor.SketchPicker, {
+ color: input.value,
+ onChangeComplete: color => input.onChange(color.hex)
+ }));
+};
+
+var _templateObject$x;
+const Navigation = /*#__PURE__*/styled__default.div(_templateObject$x || (_templateObject$x = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n height: 40px;\n background-color: ", ";\n align-items: flex-end;\n\n & > a {\n color: inherit;\n text-decoration: none;\n }\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.brand.dark;
+});
+Navigation.defaultProps = {
+ theme
+};
+
+const Tab = _ref => {
+ let {
+ children,
+ active,
+ onClick
+ } = _ref;
+ const {
+ colorMode: colorMode$1
+ } = colorMode.useColorMode();
+ const defaultColor = colorMode$1 === 'dark' ? 'white' : 'black';
+ const defaultStylesProps = {
+ color: defaultColor
+ };
+ if (!active && colorMode$1 === 'light') {
+ defaultStylesProps.color = 'black';
+ defaultStylesProps._hover = {
+ color: 'gray.400'
+ };
+ }
+ if (!active && colorMode$1 === 'dark') {
+ defaultStylesProps.color = 'white';
+ defaultStylesProps._hover = {
+ color: 'gray.200'
+ };
+ }
+ if (active) {
+ defaultStylesProps.color = 'pink.200';
+ defaultStylesProps._hover = {
+ color: 'pink.200',
+ borderBottomColor: 'pink.200'
+ };
+ defaultStylesProps.borderBottomWidth = '2px';
+ defaultStylesProps.borderBottomStyle = 'solid';
+ defaultStylesProps.borderBottomColor = 'pink.200';
+ }
+ return React__default.createElement(react.Button, Object.assign({
+ variant: "link",
+ colorScheme: "white",
+ onClick: onClick,
+ px: 0,
+ pb: 2,
+ mr: 5
+ }, defaultStylesProps), children);
+};
+
+var _templateObject$y;
+const StyledContainer = /*#__PURE__*/styled__default(reactToastify.ToastContainer)(_templateObject$y || (_templateObject$y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n .Toastify__toast {\n font-family: Nunito Sans;\n font-size: 16px;\n color: #fff;\n\n padding: 15px 18px;\n }\n .Toastify__toast--success {\n background-color: #50e3c2;\n }\n"])));
+
+const Icon$x = () => {
+ return React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "18",
+ height: "18",
+ fill: "none",
+ viewBox: "0 0 18 18"
+ }, React__default.createElement("g", {
+ clipPath: "url(#clip0)"
+ }, React__default.createElement("path", {
+ fill: "#fff",
+ d: "M13.034 17.965l-1.914-.002c-2.408 0-4.133-.209-5.43-.657-.276-.097-.517-.204-.73-.299-.377-.167-.674-.3-.983-.3H2.72c-.381 0-.932-.04-1.321-.392-.417-.376-.465-.922-.465-1.3V9.277c0-.526.162-.971.469-1.286.22-.226.628-.496 1.317-.496l.111.001c.393.004 1.04.011 1.458-.351l.073-.136c.015-.03.029-.054.04-.073l.01-.02a.856.856 0 01.104-.182 6.17 6.17 0 01.692-.957c.482-.526.928-.798 1.322-1.038.463-.282.797-.486 1.088-1.053l.02-.04c.436-.847.616-1.197.725-1.618.037-.143.053-.293.048-.446C8.37.988 8.665.077 9.643-.032l.029-.003h.03c.594 0 1.092.14 1.48.418.576.412.868 1.082.868 1.992 0 1.622-.397 2.92-.74 3.737l4.081.511c.978.057 1.733.94 1.688 1.982a2.104 2.104 0 01-.602 1.399c.33.323.505.76.486 1.264-.006.505-.161.908-.46 1.199-.117.112-.246.199-.383.266.232.306.357.678.357 1.072 0 .537-.204 1.028-.574 1.38a1.93 1.93 0 01-1.114.516c.065.18.095.375.087.58-.001.083-.009.234-.02.306a1.343 1.343 0 01-.402.787c-.407.386-.898.59-1.42.59zM2.72 8.55c-.511 0-.73.217-.73.728v5.737c0 .188.02.431.118.519.049.044.194.119.612.119h1.257c.534 0 .96.19 1.413.391.204.09.415.184.648.266 1.164.402 2.827.599 5.082.599l1.915.001c.248 0 .481-.1.691-.3.027-.026.063-.06.085-.188.003-.031.007-.11.008-.143V16.243c.01-.205-.092-.356-.3-.449a.625.625 0 01.307-1.196l.71.06a.879.879 0 00.637-.235.83.83 0 00.247-.618c0-.338-.247-.722-.79-.764a.575.575 0 01-.525-.636.57.57 0 01.58-.503c.324.006.867.016 1.08-.191.035-.034.139-.134.141-.461v-.018c.02-.465-.35-.647-.666-.718a.54.54 0 01-.42-.57.54.54 0 01.511-.492c.361-.018.672-.418.692-.892.02-.47-.294-.866-.701-.884l-.043-.004-4.156-.52a1.006 1.006 0 01-.753-.5 1.002 1.002 0 01-.054-.902 8.77 8.77 0 00.678-3.375c0-1.18-.666-1.35-1.26-1.355-.116.018-.175.07-.22.19a.88.88 0 00-.048.308v.017c.01.258-.017.513-.08.757-.139.534-.348.942-.808 1.836l-.02.04c-.426.83-.96 1.156-1.477 1.47-.35.214-.713.435-1.094.851-.174.19-.392.495-.58.814l-.034.053c-.02.046-.041.08-.055.105l-.012.021-.011.022c-.032.06-.07.129-.105.2l-.039.075-.06.06c-.729.728-1.77.717-2.271.712l-.1-.001zm11.093 7.863a.096.096 0 010 .002v-.002zm0-.002v.002-.002zm.007-.123v.004-.004zm.89-4.299h.001zm.675-1.484z"
+ })), React__default.createElement("defs", null, React__default.createElement("clipPath", {
+ id: "clip0"
+ }, React__default.createElement("path", {
+ fill: "#fff",
+ d: "M0 0H18V18H0z"
+ }))));
+};
+Icon$x.displayName = 'SuccessIcon';
+
+var _templateObject$z;
+const Message$1 = /*#__PURE__*/styled__default.div(_templateObject$z || (_templateObject$z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n\n svg {\n margin-right: 18px;\n }\n"])));
+const Success = _ref => {
+ let {
+ message
+ } = _ref;
+ return React__default.createElement(Message$1, null, React__default.createElement(Icon$x, null), React__default.createElement("span", null, message));
+};
+
+var _templateObject$A;
+const Body = /*#__PURE__*/styled__default.div(_templateObject$A || (_templateObject$A = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n padding: 0 ", "px;\n overflow: hidden;\n /* background-color: ", "; */\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.body.padding;
+}, props => props.theme.body);
+Body.defaultProps = {
+ theme
+};
+
+var _templateObject$B;
+const Footer = /*#__PURE__*/styled__default(_ref => {
+ let {
+ className,
+ children
+ } = _ref;
+ return React__default.createElement("div", {
+ className: className
+ }, React__default.createElement(Bonde, null), children);
+})(_templateObject$B || (_templateObject$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n background-color: ", ";\n padding: 20px ", "px;\n"])), _ref2 => {
+ let {
+ theme
+ } = _ref2;
+ return theme.body.background.dark;
+}, _ref3 => {
+ let {
+ theme
+ } = _ref3;
+ return theme.body.padding;
+});
+Footer.defaultProps = {
+ theme
+};
+
+var _templateObject$C;
+const Main$1 = /*#__PURE__*/styled__default.div(_templateObject$C || (_templateObject$C = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n min-height: 100vh;\n min-width: 100%;\n background-color: ", ";\n font-family: ", ";\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.body.background.main;
+}, _ref2 => {
+ let {
+ theme
+ } = _ref2;
+ return theme.fontFamily;
+});
+Main$1.defaultProps = {
+ theme
+};
+
+var _templateObject$D;
+// Reset link to keep BondeSVG render
+const HomeLink = /*#__PURE__*/styled__default.a(_templateObject$D || (_templateObject$D = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: #000;\n text-decoration: none;\n\n &:hover {\n color: #000;\n text-decoration: none;\n }\n"])));
+const Navbar = _ref => {
+ let {
+ brand,
+ children,
+ indexRoute,
+ fixed = false
+ } = _ref;
+ return React__default.createElement(react.Flex, {
+ position: fixed ? 'fixed' : 'relative',
+ direction: "row",
+ w: "100%",
+ bg: "black",
+ px: [6, null, null, 12],
+ py: 4,
+ alignItems: "center"
+ }, React__default.createElement(HomeLink, {
+ href: indexRoute,
+ title: "Bonde Home Link"
+ }, brand !== 'small' ? React__default.createElement(Bonde, null) : React__default.createElement(Icon$w, {
+ name: "Bonde"
+ })), children);
+};
+
+const dropdownContext = /*#__PURE__*/React.createContext({
+ isOpen: false,
+ onToggle: () => {}
+});
+const PerformDropdownList = _ref => {
+ let {
+ children,
+ scroll
+ } = _ref;
+ const {
+ isOpen
+ } = React.useContext(dropdownContext);
+ const boxProps = {
+ minWidth: '200px',
+ maxWidth: '400px',
+ bg: 'white',
+ boxShadow: 'base',
+ mt: 10
+ };
+ if (scroll) {
+ boxProps.overflowY = 'scroll';
+ boxProps.height = '500px';
+ }
+ return React__default.createElement(react.Fade, {
+ in: isOpen,
+ style: {
+ position: 'absolute',
+ top: isOpen ? '0' : '-1000px',
+ zIndex: 2
+ }
+ }, React__default.createElement(react.Box, Object.assign({}, boxProps), children));
+};
+const PerformDropdownItem = _ref2 => {
+ let {
+ children,
+ onClick
+ } = _ref2;
+ const {
+ onToggle
+ } = React.useContext(dropdownContext);
+ return React__default.createElement(react.Box, {
+ cursor: "pointer",
+ onClick: () => {
+ if (onClick) onClick();
+ onToggle();
+ },
+ _hover: {
+ bg: 'gray.100'
+ }
+ }, children);
+};
+const PerformDropdownButton = _ref3 => {
+ let {
+ children,
+ color,
+ ...props
+ } = _ref3;
+ const {
+ isOpen,
+ onToggle
+ } = React.useContext(dropdownContext);
+ const buttonProps = {
+ ...props,
+ zIndex: 3,
+ rightIcon: isOpen ? React__default.createElement(ArrowUpIcon, {
+ boxSize: 3
+ }) : React__default.createElement(ArrowDownIcon, {
+ boxSize: 3
+ }),
+ onClick: onToggle
+ };
+ if (color) {
+ buttonProps.color = color;
+ buttonProps['_hover'] = {
+ color
+ };
+ buttonProps['_active'] = {
+ color
+ };
+ }
+ return React__default.createElement(react.Button, Object.assign({}, buttonProps), children);
+};
+const PerformDropdown = _ref4 => {
+ let {
+ children
+ } = _ref4;
+ const wrapperRef = React.useRef();
+ const [isOpen, setIsOpen] = React.useState(false);
+ react.useOutsideClick({
+ ref: wrapperRef,
+ handler: () => setIsOpen(false)
+ });
+ return React__default.createElement(dropdownContext.Provider, {
+ value: {
+ isOpen,
+ onToggle: () => setIsOpen(!isOpen)
+ }
+ }, React__default.createElement(react.Box, {
+ ref: wrapperRef,
+ position: "relative",
+ display: "flex"
+ }, children));
+};
+
+const items = {
+ settings: [SettingsIcon, 'Configurações'],
+ mobilization: [PagesIcon, 'Mobilizações'],
+ redes: [NetIcon, 'Redes'],
+ chatbot: [BotIcon, 'Chatbot']
+};
+const CommunityMenu = _ref => {
+ let {
+ community,
+ session,
+ inverted
+ } = _ref;
+ const {
+ apps: config,
+ updateSession
+ } = session;
+ const {
+ modules
+ } = community;
+ const handleClick = url => function () {
+ try {
+ updateSession('community', community).then(() => {
+ window.location.href = url;
+ });
+ return Promise.resolve();
+ } catch (e) {
+ return Promise.reject(e);
+ }
+ };
+ return React__default.createElement(react.Stack, {
+ direction: "row",
+ spacing: 2
+ }, Object.keys(modules).filter(key => !!modules[key]).map((key, index) => {
+ let moduleHost = '';
+ let baseHost = '';
+ try {
+ moduleHost = new URL('', config[key]).host;
+ baseHost = new URL('', window.location.href).host;
+ } catch (err) {
+ console.log('error URL', err);
+ }
+ const hoverColor = color => ({
+ color: color + ".200"
+ });
+ const isActive = moduleHost === baseHost;
+ const IconComponent = items[key][0];
+ const colorSystem = inverted ? {
+ color: isActive ? 'pink.200' : 'white',
+ _hover: isActive ? hoverColor('pink') : hoverColor('gray')
+ } : {
+ color: 'gray.400',
+ _hover: hoverColor('gray')
+ };
+ return React__default.createElement(react.IconButton, {
+ "aria-label": items[key][1],
+ key: "community-navigation-" + index,
+ variant: "link",
+ colorScheme: "gray",
+ title: items[key][1],
+ icon: React__default.createElement(IconComponent, Object.assign({}, colorSystem, {
+ boxSize: [0, 0, 4, 4]
+ })),
+ onClick: handleClick(config[key])
+ });
+ }));
+};
+
+const CommunitiesDropdown = _ref => {
+ let {
+ session,
+ isMobile
+ } = _ref;
+ const {
+ communities,
+ community,
+ updateSession
+ } = session;
+ return React__default.createElement(react.Stack, {
+ direction: "row",
+ spacing: 2
+ }, React__default.createElement(PerformDropdown, null, React__default.createElement(PerformDropdownButton, {
+ variant: "link",
+ color: "white"
+ }, community ? React__default.createElement(react.Stack, {
+ direction: "row",
+ spacing: 4,
+ alignItems: "center"
+ }, React__default.createElement(react.Image, {
+ boxSize: 6,
+ rounded: "50%",
+ src: (community === null || community === void 0 ? void 0 : community.image) || "https://via.placeholder.com/100?text=" + community.name.substring(0, 1)
+ }), React__default.createElement(react.Text, {
+ color: "white",
+ fontSize: "sm",
+ fontWeight: "extrabold",
+ textTransform: "uppercase"
+ }, community === null || community === void 0 ? void 0 : community.name)) : 'Selecione uma comunidade'), React__default.createElement(PerformDropdownList, {
+ scroll: communities.length > 10
+ }, communities.map(c => React__default.createElement(PerformDropdownItem, {
+ key: c.id,
+ onClick: () => {
+ updateSession('community', c);
+ }
+ }, React__default.createElement(react.Stack, {
+ direction: "row",
+ spacing: 4,
+ p: 4
+ }, React__default.createElement(react.Image, {
+ boxSize: 8,
+ rounded: "50%",
+ src: c.image || "https://via.placeholder.com/100?text=" + c.name.substring(0, 1)
+ }), React__default.createElement(react.Text, null, c.name)))))), community && !isMobile && React__default.createElement(CommunityMenu, {
+ community: community,
+ session: session,
+ inverted: true
+ }));
+};
+
+const UserDropdown = _ref => {
+ let {
+ session
+ } = _ref;
+ const {
+ currentUser: user,
+ logout
+ } = session;
+ const name = user.firstName + " " + user.lastName;
+ const title = React__default.createElement(react.Stack, {
+ spacing: 1
+ }, React__default.createElement(react.Heading, {
+ as: "h3",
+ size: "md"
+ }, name), React__default.createElement(react.Text, {
+ fontSize: "md",
+ color: "gray.200"
+ }, user.email));
+ return React__default.createElement(react.Menu, {
+ variant: "link",
+ colorScheme: "pink"
+ }, _ref2 => {
+ let {
+ isOpen
+ } = _ref2;
+ return React__default.createElement(React__default.Fragment, null, React__default.createElement(react.MenuButton, {
+ "aria-label": "User Menu",
+ as: react.Button,
+ variant: "dropdown",
+ color: "white",
+ rightIcon: isOpen ? React__default.createElement(ArrowUpIcon, {
+ boxSize: 3
+ }) : React__default.createElement(ArrowDownIcon, {
+ boxSize: 3
+ })
+ }, name), React__default.createElement(react.MenuList, {
+ zIndex: "3"
+ }, React__default.createElement(react.MenuGroup, {
+ title: title
+ }, React__default.createElement(react.MenuItem, {
+ onClick: logout,
+ icon: React__default.createElement(CloseIcon, {
+ boxSize: 3
+ })
+ }, "Logout"))));
+ });
+};
+
+const Logout = _ref => {
+ let {
+ session
+ } = _ref;
+ return React__default.createElement(react.Button, {
+ type: "button",
+ variant: "ghost",
+ onClick: session.logout
+ }, React__default.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "24",
+ height: "24",
+ fill: "none",
+ viewBox: "0 0 24 24"
+ }, React__default.createElement("path", {
+ fill: "#fff",
+ d: "M16.484 17.563a.745.745 0 00.54.223c.204 0 .39-.074.539-.223l5.023-5.023a.493.493 0 00.093-.112s.019-.019.019-.037c.018-.037.037-.075.056-.093 0-.019 0-.037.018-.037.019-.038.019-.056.038-.093.018-.056.018-.094.018-.15 0-.055 0-.092-.018-.148a.142.142 0 00-.038-.093c0-.019 0-.037-.018-.037l-.056-.112s0-.019-.019-.019c-.018-.037-.056-.074-.093-.111l-5.023-5.024a.763.763 0 00-1.08 1.08l3.722 3.72H6.977a.754.754 0 00-.763.763c0 .428.335.763.763.763h13.228l-3.721 3.721c-.298.26-.298.744 0 1.042z"
+ }), React__default.createElement("path", {
+ fill: "#fff",
+ d: "M1.954 22.79H12a.754.754 0 00.763-.762V14.53a.754.754 0 00-.763-.763.754.754 0 00-.763.763v6.735h-8.52V2.716h8.52v6.735c0 .428.335.763.763.763a.754.754 0 00.763-.763V1.953A.754.754 0 0012 1.191H1.954a.754.754 0 00-.763.762v20.075c.019.428.353.763.763.763z"
+ })));
+};
+
+var _templateObject$E;
+const Content = /*#__PURE__*/styled$1.div(_templateObject$E || (_templateObject$E = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-grow: 1;\n background-color: ", ";\n\n ", "\n"])), props => props.bgColor, props => props.isMobile && "\n padding-top: 65px;\n overflow-y: auto;\n ");
+const FooterTool = _ref => {
+ let {
+ languageTool: LanguageTool
+ } = _ref;
+ return LanguageTool ? React__default.createElement(Footer, null, React__default.createElement(LanguageTool, null)) : React__default.createElement(Footer, null);
+};
+const BaseUI = _ref2 => {
+ let {
+ children,
+ bgColor,
+ disableNavigation,
+ indexRoute,
+ isMobile,
+ session,
+ languageTool: LanguageTool
+ } = _ref2;
+ return React__default.createElement(Main$1, null, React__default.createElement(Navbar, {
+ fixed: isMobile,
+ indexRoute: indexRoute,
+ brand: disableNavigation ? 'default' : 'small'
+ }, React__default.createElement(react.Flex, {
+ direction: "row",
+ grow: 1,
+ justify: "space-between"
+ }, disableNavigation ? React__default.createElement("div", null) : React__default.createElement(CommunitiesDropdown, {
+ session: session
+ }), isMobile ? React__default.createElement(Logout, {
+ session: session
+ }) : React__default.createElement(UserDropdown, {
+ session: session
+ }))), React__default.createElement(Content, {
+ isMobile: !!isMobile,
+ bgColor: bgColor || 'rgb(247,247,247)'
+ }, children), !isMobile ? React__default.createElement(FooterTool, {
+ languageTool: LanguageTool
+ }) : null);
+};
+BaseUI.defaultProps = {
+ disableNavigation: false
+};
+
+Object.defineProperty(exports, 'toast', {
+ enumerable: true,
+ get: function () {
+ return reactToastify.toast;
+ }
+});
+exports.BModal = Modal;
+exports.BTable = Table;
+exports.Body = Body;
+exports.Bonde = Bonde;
+exports.Card = Card;
+exports.CleanButton = CleanButton;
+exports.ColorField = ColorField;
+exports.CommunityMenu = CommunityMenu;
+exports.ConnectedForm = ConnectedForm;
+exports.Dropdown = Dropdown;
+exports.DropdownIconItem = DropdownIconItem;
+exports.DropdownImageInput = DropdownImageInput;
+exports.DropdownImageItem = DropdownImageItem;
+exports.Empty = Empty;
+exports.FontsLoader = FontsLoader;
+exports.Footer = Footer;
+exports.Form = Form;
+exports.FormField = FormField;
+exports.Header = Header;
+exports.Hint = Hint;
+exports.Icon = Icon$w;
+exports.InputField = InputField;
+exports.Label = Label;
+exports.Link = Link;
+exports.Loading = Loading;
+exports.Main = Main$1;
+exports.Message = Message;
+exports.Navbar = Navbar;
+exports.Navigation = Navigation;
+exports.Pagination = Pagination;
+exports.PerformDropdown = PerformDropdown;
+exports.PerformDropdownButton = PerformDropdownButton;
+exports.PerformDropdownItem = PerformDropdownItem;
+exports.PerformDropdownList = PerformDropdownList;
+exports.RadioField = RadioField;
+exports.RoundInput = RoundInput;
+exports.RoundInputField = RoundInputField;
+exports.RoundSelect = RoundSelect;
+exports.RoundSelectField = RoundSelectField;
+exports.S3UploadField = S3UploadField;
+exports.SelectField = SelectField;
+exports.SessionUI = BaseUI;
+exports.Shortcut = Shortcut;
+exports.Spacing = Spacing;
+exports.Spinner = Spinner;
+exports.Success = Success;
+exports.SwitchField = SwitchField;
+exports.Tab = Tab;
+exports.Textarea = Textarea;
+exports.TextareaField = TextareaField;
+exports.Theme = theme;
+exports.ToastContainer = StyledContainer;
+exports.Validators = Validators;
+//# sourceMappingURL=bonde-components.cjs.development.js.map
diff --git a/clients/libs/components/__dist/bonde-components.cjs.development.js.map b/clients/libs/components/__dist/bonde-components.cjs.development.js.map
new file mode 100644
index 0000000000..97ae41d8af
--- /dev/null
+++ b/clients/libs/components/__dist/bonde-components.cjs.development.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"bonde-components.cjs.development.js","sources":["../src/FontsLoader.tsx","../src/ui/await/Sparkles.tsx","../src/ui/await/LoadingSVG.tsx","../src/ui/base/theme.ts","../src/ui/content/Header.tsx","../src/ui/await/Loading.tsx","../src/ui/await/Spinner.tsx","../src/ui/content/Bonde.tsx","../src/ui/content/Empty.tsx","../src/ui/content/Icon/SVGIcons/ArrowDown.tsx","../src/ui/content/Icon/SVGIcons/ArrowLeft.tsx","../src/ui/content/Icon/SVGIcons/ArrowRight.tsx","../src/ui/content/Icon/SVGIcons/ArrowUp.tsx","../src/ui/content/Icon/SVGIcons/Bonde.tsx","../src/ui/content/Icon/SVGIcons/Bolt.tsx","../src/ui/content/Icon/SVGIcons/BoltUnfilled.tsx","../src/ui/content/Icon/SVGIcons/Bot.tsx","../src/ui/content/Icon/SVGIcons/Check.tsx","../src/ui/content/Icon/SVGIcons/Close.tsx","../src/ui/content/Icon/SVGIcons/Cloud.tsx","../src/ui/content/Icon/SVGIcons/Copy.tsx","../src/ui/content/Icon/SVGIcons/Info.tsx","../src/ui/content/Icon/SVGIcons/InfoMsg.tsx","../src/ui/content/Icon/SVGIcons/Network.tsx","../src/ui/content/Icon/SVGIcons/New.tsx","../src/ui/content/Icon/SVGIcons/Pencil.tsx","../src/ui/content/Icon/SVGIcons/Plus.tsx","../src/ui/content/Icon/SVGIcons/Search.tsx","../src/ui/content/Icon/SVGIcons/Settings.tsx","../src/ui/content/Icon/SVGIcons/Trash.tsx","../src/ui/content/Icon/SVGIcons/Ticket.tsx","../src/ui/content/Icon/SVGIcons/TicketRecurring.tsx","../src/ui/content/Icon/SVGIcons/User.tsx","../src/ui/content/Icon/SVGIcons/Window.tsx","../src/ui/content/Icon/SVGIcons/MapMarker.tsx","../src/ui/content/Icon/SVGIcons/Heart.tsx","../src/ui/content/Icon/SVGIcons/Warning.tsx","../src/ui/content/Icon/SVGIcons/Whatsapp.tsx","../src/ui/content/Icon/SVGIcons/Eye.tsx","../src/ui/content/Icon/SVGIcons/Open.tsx","../src/ui/content/Icon/SVGIcons/Sync.tsx","../src/ui/content/Icon/index.tsx","../src/ui/content/Link.tsx","../src/ui/content/CleanButton.tsx","../src/ui/content/Shortcut.tsx","../src/ui/content/Modal.tsx","../src/ui/form/RoundSelect.tsx","../src/ui/content/Pagination.tsx","../src/ui/content/Table.tsx","../src/ui/layout/Spacing.tsx","../src/ui/content/Card.tsx","../src/ui/content/Tooltip/index.tsx","../src/ui/dropdown/ui/DropdownList.tsx","../src/ui/dropdown/ui/DropdownItem.tsx","../src/ui/dropdown/ui/DropdownInput.tsx","../src/ui/dropdown/Dropdown.tsx","../src/ui/dropdown/DropdownIconItem.tsx","../src/ui/dropdown/DropdownImageInput.tsx","../src/ui/dropdown/DropdownImageItem.tsx","../src/ui/form/Form.tsx","../src/ui/form/ConnectedForm.tsx","../src/ui/form/Hint.tsx","../src/ui/form/FormField.tsx","../src/icons/ArrowUpIcon.tsx","../src/icons/ArrowDownIcon.tsx","../src/icons/BotIcon.tsx","../src/icons/EditIcon.tsx","../src/icons/InfoIcon.tsx","../src/icons/NetIcon.tsx","../src/icons/PagesIcon.tsx","../src/icons/SettingsIcon.tsx","../src/icons/CloseIcon.tsx","../src/icons/UploadImageIcon.tsx","../src/ui/form/InputField.tsx","../src/ui/form/SelectField.tsx","../src/ui/form/Label.tsx","../src/ui/form/Validators.ts","../src/ui/form/Textarea.tsx","../src/ui/form/TextareaField.tsx","../src/ui/form/RoundSelectField.tsx","../src/ui/form/RoundInput.tsx","../src/ui/form/RoundInputField.tsx","../src/ui/form/Switch.tsx","../src/ui/form/SwitchField.tsx","../src/ui/form/RadioField.tsx","../src/ui/form/S3UploadField.tsx","../src/ui/form/ColorField.tsx","../src/ui/navigation/Navigation.tsx","../src/ui/navigation/Tab.tsx","../src/ui/notifications/StyledContainer.tsx","../src/ui/notifications/Icons/SuccessIcon.tsx","../src/ui/notifications/Success.tsx","../src/ui/page/Body.tsx","../src/ui/page/Footer.tsx","../src/ui/page/Main.tsx","../src/ui/page/Navbar.tsx","../src/ui/perform-dropdown/index.tsx","../src/session/CommunityMenu.tsx","../src/session/CommunitiesDropdown.tsx","../src/session/UserDropdown.tsx","../src/session/Logout.tsx","../src/session/BaseUI.tsx"],"sourcesContent":["import React from 'react';\nimport GoogleFontLoader from 'react-google-font-loader';\n\nconst FontsLoader = (): React.ReactElement => (\n \n);\n\nexport default FontsLoader;\n","import React from 'react';\nimport styled, { keyframes } from 'styled-components';\n\ninterface SparkProps {\n colorInit: string;\n d: string;\n duration: string;\n pulse: any;\n}\n\nconst Spark = styled.path`\n fill: ${props => props.colorInit};\n animation-name: ${props => props.pulse};\n animation-duration: ${props => props.duration};\n animation-iteration-count: infinite;\n`;\n\ninterface SparklesProps {\n color: string;\n colorInit: string;\n duration: string;\n}\n\nconst Sparkles: React.FC = ({ color, colorInit, duration }) => {\n return (\n \n \n \n \n \n \n \n );\n};\n\nSparkles.defaultProps = {\n colorInit: '#DBDBDB',\n color: '#35E3C3',\n duration: '6s',\n};\n\nexport default Sparkles;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Sparkles from './Sparkles';\n\nexport interface LoadingSVGProps {\n size?: 'small' | 'default' | 'large';\n color?: string;\n sparklesColor?: string;\n sparklesColorInit?: string;\n sparklesDuration?: string;\n}\n\n/**\n * Animated loading transition component.\n */\nconst LoadingSVG = styled(props => {\n const {\n className,\n color,\n sparklesColor,\n sparklesColorInit,\n sparklesDuration,\n } = props;\n\n return (\n \n \n \n \n \n );\n})`\n ${props =>\n props.size === 'small' &&\n `\n width: calc(0.5*176px);\n height: calc(0.5*135px);\n `}\n ${props =>\n props.size === 'default' &&\n `\n width: calc(0.75*176px);\n height: calc(0.75*135px);\n `}\n ${props =>\n props.size === 'large' &&\n `\n width: calc(1*176px);\n height: calc(1*135px);\n `}\n`;\n\nLoadingSVG.defaultProps = {\n color: '#050505',\n size: 'default',\n sparklesColor: '#35E3C3',\n sparklesColorInit: '#DBDBDB',\n sparklesDuration: '6s',\n};\n\nexport default LoadingSVG;\n","const theme = {\n brand: {\n main: '#ee0099',\n dark: '#000',\n light: '#fff',\n },\n commons: {\n dark: '#4A4A4A',\n main: '#aaa',\n light: '#eee',\n },\n fontFamily: \"'Nunito Sans', sans-serif\",\n body: {\n padding: 60,\n background: {\n light: '#fff',\n main: 'rgb(247,247,247)',\n dark: '#000',\n },\n },\n default: {\n color: {\n main: '#fff',\n },\n border: {\n main: '#ee0099',\n },\n background: {\n main: '#ee0099',\n hover: '#e2058a',\n focus: '#b4006c',\n },\n },\n dark: {\n color: {\n main: '#000',\n hover: '#4A4A4A',\n focus: '#9b9b9b',\n },\n border: {\n main: '#000',\n hover: '#4A4A4A',\n focus: '#9b9b9b',\n },\n background: {\n main: 'none',\n },\n },\n light: {\n color: {\n main: '#fff',\n hover: '#9b9b9b',\n focus: '#4A4A4A',\n },\n border: {\n main: '#fff',\n hover: '#eee',\n focus: '#4A4A4A',\n },\n background: {\n main: 'none',\n },\n },\n secondary: {\n color: {\n main: '#000',\n hover: '#424242',\n focus: '#9B9B9B',\n },\n border: {\n main: 'transparent',\n hover: 'transparent',\n focus: 'transparent',\n },\n background: {\n main: 'none',\n },\n disabled: {\n color: {\n main: '#AAAAAA',\n hover: '#AAAAAA',\n focus: '#AAAAAA',\n },\n background: {\n main: 'none',\n },\n },\n },\n error: '#FF2B4E',\n};\n\nexport default theme;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nexport interface TextProps {\n align?: 'left' | 'center' | 'right';\n bold?: boolean;\n uppercase?: boolean;\n}\n\n/**\n * The only true paragraph.\n */\nconst Text = styled.p`\n font-family: ${props => props.theme.fontFamily};\n font-size: 16px;\n font-weight: ${props => (props.bold ? 'bold' : 'normal')};\n line-height: 25px;\n color: ${props => props.theme.commons.dark};\n text-align: ${props => props.align};\n letter-spacing: normal;\n\n ${props => props.uppercase && 'text-transform: uppercase;'}\n`;\n\nText.defaultProps = {\n theme,\n align: 'left',\n uppercase: false,\n bold: false,\n};\n\nText.displayName = 'Text';\n\nconst annotate = (Component: any) => {\n Component.defaultProps = {\n theme,\n };\n\n return Component;\n};\n\nexport default {\n H1: annotate(styled(Text.withComponent('h1'))`\n font-size: 60px;\n font-weight: 900;\n line-height: 1;\n color: #000;\n `),\n H2: annotate(styled(Text.withComponent('h2'))`\n font-size: 36px;\n font-weight: 900;\n line-height: 1.22;\n color: #000;\n `),\n H3: annotate(styled(Text.withComponent('h3'))`\n font-size: 21px;\n font-weight: 800;\n line-height: 0.95;\n margin-bottom: 12px;\n color: #000;\n `),\n H4: annotate(styled(Text.withComponent('h4'))`\n font-size: 18px;\n font-weight: 800;\n line-height: 1.39;\n margin-bottom: 5px;\n color: #000;\n `),\n H5: annotate(styled(Text.withComponent('h5'))`\n font-size: 13px;\n line-height: 18px;\n color: #424242;\n letter-spacing: 0.005em;\n font-weight: 800;\n `),\n H6: annotate(styled(Text.withComponent('h6'))`\n font-size: 11px;\n line-height: 2.27;\n color: #424242;\n `),\n};\n","import React from 'react';\nimport styled from 'styled-components';\nimport LoadingSVG, { LoadingSVGProps } from './LoadingSVG';\nimport Header from '../content/Header';\n\ninterface FullSizeProps {\n background?: string;\n}\n\nconst FullSize = styled.div`\n position: absolute;\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100vh;\n align-items: center;\n justify-content: center;\n background: ${props => props.background};\n`;\n\ninterface LoadingProps extends LoadingSVGProps {\n fullsize?: boolean;\n background?: string;\n message?: string;\n messageComponent?: any;\n align?: 'center' | 'left' | 'right';\n}\n\ntype LoadingStylesProps = Pick;\n\nconst LoadingStyles = styled.div`\n text-align: ${props => props.align};\n`;\n\ninterface LoadingProps {\n align?: 'center' | 'left' | 'right';\n fullsize?: boolean;\n background?: string;\n message?: string;\n messageComponent?: any;\n}\n\n/**\n * Animated loading transition component.\n */\nconst Loading: React.FC = ({\n children,\n align,\n fullsize,\n background,\n message,\n messageComponent: MessageComponent,\n ...props\n}) => {\n return fullsize ? (\n \n \n {message ? {message} : children}\n \n ) : (\n \n \n {message ? {message} : children}\n \n );\n};\n\nLoading.defaultProps = {\n align: 'center',\n fullsize: false,\n background: 'rgba(219,219,219,0.31)',\n color: '#050505',\n size: 'default',\n sparklesColor: '#35E3C3',\n sparklesColorInit: '#DBDBDB',\n sparklesDuration: '6s',\n messageComponent: Header.H3,\n};\n\nexport default Loading;\n","import React from 'react';\nimport styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Ring = styled.div<{ theme: any }>`\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n & div {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 64px;\n height: 64px;\n margin: 8px;\n border: 8px solid ${({ theme }) => theme.commons.light};\n border-radius: 50%;\n animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: ${({ theme }) => theme.commons.light} transparent transparent\n transparent;\n }\n & div:nth-child(1) {\n animation-delay: -0.45s;\n }\n & div:nth-child(2) {\n animation-delay: -0.3s;\n }\n & div:nth-child(3) {\n animation-delay: -0.15s;\n }\n @keyframes lds-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n`;\n\nconst Spinner = ({ theme }: any) => {\n return (\n \n
\n
\n
\n
\n \n );\n};\n\nSpinner.defaultProps = {\n theme,\n};\n\nexport default Spinner;\n","import React from 'react';\nimport styled from 'styled-components';\n\ninterface BondeProps {\n large?: boolean;\n}\n\nconst Bonde = styled(({ className, large }: any) => (\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n)) `\n display: flex;\n ${props =>\n !props.large &&\n `\n height: calc(1.5 * 15px);\n `}\n`;\n\nBonde.defaultProps = {\n large: false,\n};\n\nexport default Bonde;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Header from './Header';\n\nconst EmptyIcon = () => {\n return (\n \n \n \n \n \n \n );\n};\n\nconst EmptyWrap = styled.div`\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n align-items: center;\n justify-content: center;\n\n ${Header.H4} {\n margin-top: 15px;\n font-weight: normal;\n }\n`;\n\ninterface EmptyProps {\n message?: string;\n}\n\nconst Empty: React.FC = ({ message }) => (\n \n \n {message && {message} }\n \n);\n\nexport default Empty;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowDown';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowLeft';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowRight';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowUp';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className, color }: any) => (\n \n \n \n \n \n \n \n \n \n \n \n {/* avoid this type of code, this is the type of component that we should discuss if it is in the right place. */}\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Bonde';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Bolt';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.BoltUnfilled';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Bot';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => {\n return (\n \n \n \n );\n};\n\nIcon.displayName = 'Icon.Check';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Times';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Cloud';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon: React.FC = ({ className }: any) => {\n return (\n \n \n \n );\n};\n\nIcon.displayName = 'Icon.Copy';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Info';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n \n \n \n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.InfoMsg';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Network';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.New';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Pencil';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Plus';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Search';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Settings';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Trash';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Ticket';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.TicketRecurring';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.User';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Window';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.MapMarker';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Heart';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon: React.FC = ({ className }: any) => {\n return (\n \n \n \n \n \n \n \n \n \n \n \n );\n};\n\nIcon.displayName = 'Icon.Warning';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Eye';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Show';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Open';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n \n \n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Sync';\n\nexport default Icon;\n","import React from 'react';\nimport styled from 'styled-components';\nimport * as SVGIcons from './SVGIcons';\n\ninterface IconProps {\n className?: string;\n size?: 'default' | 'small' | 'large' | 'xs';\n name: keyof typeof SVGIcons;\n color?: string;\n}\n\nconst IconController: React.FC = ({ name, ...props }) => {\n const IconSVG = SVGIcons[name];\n if (IconSVG) return ;\n else return ;\n};\n\nconst Icon = styled(IconController)`\n vertical-align: middle;\n ${props =>\n props.size === 'xs' &&\n `\n width: calc(0.75*20px);\n height: calc(0.75*15px);\n `}\n ${props =>\n props.size === 'small' &&\n `\n width: calc(1*20px);\n height: calc(1*15px);\n `}\n ${props =>\n props.size === 'default' &&\n `\n width: calc(1.5*20px);\n height: calc(1.5*15px);\n `}\n ${props =>\n props.size === 'large' &&\n `\n width: calc(2*20px);\n height: calc(2*15px);\n `}\n\n &.fill {\n path {\n fill: ${props => props.color};\n }\n }\n &.stroke {\n path {\n stroke: ${props => props.color};\n }\n }\n`;\n\nIcon.defaultProps = {\n size: 'default',\n color: '#000',\n};\n\nexport default Icon;\n","import React from 'react';\nimport styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Link = styled((props: any) => {\n const { component: Component, className, ...ownProps } = props;\n return ;\n})`\n font-family: ${props => props.theme.fontFamily};\n font-weight: 600;\n font-size: 13px;\n text-transform: uppercase;\n text-decoration: none;\n color: ${props => props.theme.dark.color.main};\n cursor: pointer;\n\n &:hover,\n &:active {\n color: ${props => props.theme.dark.color.hover};\n text-decoration: underline;\n }\n &:focus {\n color: ${props => props.theme.dark.color.focus};\n }\n`;\n\nLink.defaultProps = {\n theme,\n component: 'a',\n};\n\nexport default Link;\n","import styled from 'styled-components';\n\nconst CleanButton = styled.button`\n border: none;\n margin: 0;\n padding: 0;\n width: auto;\n overflow: visible;\n\n background: transparent;\n\n /* inherit font & color from ancestor */\n color: inherit;\n font: inherit;\n\n /* Normalize 'line-height'. Cannot be changed from 'normal' in Firefox 4+. */\n line-height: normal;\n\n /* Corrects font smoothing for webkit */\n -webkit-font-smoothing: inherit;\n -moz-osx-font-smoothing: inherit;\n\n /* Corrects inability to style clickable 'input' types in iOS */\n -webkit-appearance: none;\n\n /* Remove excess padding and border in Firefox 4+ */\n &::-moz-focus-inner {\n border: 0;\n padding: 0;\n }\n`;\n\nCleanButton.displayName = 'CleanButton';\n\nexport default CleanButton;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Header from './Header';\nimport CleanButton from './CleanButton';\nimport theme from '../base/theme';\n\nconst Wrapper = styled(CleanButton)<{ theme: any }>`\n width: 200px;\n height: 90px;\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 5px;\n cursor: pointer;\n background-color: ${({ theme }) => theme.brand.light};\n padding: 0px 20px;\n\n display: grid;\n grid-template-columns: auto auto;\n align-items: center;\n justify-content: center;\n grid-column-gap: 20px;\n`;\n\nconst Text = styled(Header.H5)<{ theme: any }>`\n text-transform: uppercase;\n margin: 0;\n text-align: left;\n color: ${({ theme }) => theme.brand.dark};\n`;\n\nconst Shortcut = ({\n icon,\n text,\n theme,\n}: {\n icon: React.ReactElement;\n text: string;\n theme: any;\n}) => (\n \n {icon}\n {text} \n \n);\n\nShortcut.defaultProps = {\n theme,\n};\n\nexport default Shortcut;\n","import React from 'react';\nimport styled from 'styled-components';\nimport theme from '../base/theme';\nimport CleanButton from './CleanButton';\n\ntype ModalProps = {\n isOpen?: boolean;\n};\n\nconst ModalStyled = styled.div`\n display: ${props =>\n !props.isOpen ? 'none' : 'block'}; /* Hidden by default */\n position: fixed; /* Stay in place */\n z-index: 1; /* Sit on top */\n left: 0;\n top: 0;\n width: 100%; /* Full width */\n height: 100%; /* Full height */\n overflow: auto; /* Enable scroll if needed */\n background-color: rgb(0, 0, 0); /* Fallback color */\n background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */\n z-index: 3;\n`;\n\ntype ModalContent = {\n width: string;\n theme: any;\n height?: string;\n};\n\nconst ModalContentStyled = styled.div`\n background-color: ${props => props.theme.brand.light};\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 4px;\n padding: 30px;\n width: ${props => props.width};\n height: ${props => (props.height ? `${props.height}` : 'auto')};\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n`;\n\nconst CloseButtonStyled = styled(CleanButton)`\n color: ${props => props.theme.commons.main};\n font-size: 28px;\n font-weight: bold;\n float: right;\n &:hover,\n &:focus {\n color: ${props => props.theme.brand.dark};\n text-decoration: none;\n cursor: pointer;\n }\n`;\n\ntype Props = {\n /** Flag used to control modal open and close */\n isOpen?: boolean;\n /** Width of modal content in percent (%) */\n width: string;\n height?: string;\n /** Function used when closing modal */\n onClose: () => void;\n children: React.ReactNode;\n};\n\nconst Modal = ({ children, isOpen, onClose, width }: Props) => (\n \n \n \n ×\n \n {children}\n \n \n);\n\nModal.defaultProps = {\n isOpen: false,\n width: 300,\n};\n\n/** @component */\nexport default Modal;\n","import React, { useState } from 'react';\nimport styled, { css } from 'styled-components';\nimport ReactSelect, { components } from 'react-select';\n\nimport theme from '../base/theme';\nimport Icon from '../content/Icon';\n\nconst SelectIcon = styled.div<{ show: boolean }>`\n transition: all 350ms;\n\n ${props =>\n props.show &&\n css`\n transform: rotate(180deg);\n position: relative;\n top: 2px;\n `}\n`;\n\nconst StyledControl = styled.div<{\n value: string;\n theme: any;\n invalid: boolean;\n}>`\n & > .Select__control {\n // Sets clear button color dinamically\n & > .Select__indicators > .Select__clear-indicator {\n color: ${props => props.theme.brand.main};\n }\n background-color: unset;\n ${props =>\n !props.value\n ? css`\n &:hover,\n &:focus {\n border-color: ${props.theme.commons.main};\n }\n border-color: ${props.theme.commons.main};\n `\n : css`\n &:hover,\n &:focus {\n border-color: ${props.theme.brand.main};\n }\n border-color: ${props.theme.brand.main};\n `}\n ${props =>\n props.invalid &&\n css`\n &:hover,\n &:focus {\n border-color: ${props.theme.error};\n }\n border-color: ${props.theme.error};\n `}\n box-shadow: none;\n width: 100%;\n & > .Select__value-container {\n & > .Select__placeholder {\n font-family: ${props => props.theme.fontFamily};\n color: ${props => props.theme.commons.dark};\n }\n }\n }\n`;\n\nStyledControl.defaultProps = {\n theme,\n};\n\nconst StyledSingleValue = styled.div<{\n isDisabled: boolean;\n theme: any;\n value: string;\n}>`\n & > .Select__single-value {\n opacity: ${props => (props.isDisabled ? 0.5 : 1)};\n transition: opacity 300ms;\n font-family: ${props => props.theme.fontFamily};\n color: ${props =>\n !props.value ? props.theme.commons.main : props.theme.brand.main};\n }\n`;\n\nStyledSingleValue.defaultProps = {\n theme,\n};\n\nconst StyledOption = styled.div<{\n theme: any;\n isSelected: boolean;\n isFocused: boolean;\n isDisabled: boolean;\n}>`\n & > .Select__option {\n font-family: ${props => props.theme.fontFamily};\n cursor: ${props => (props.isDisabled ? 'not-allowed' : 'default')};\n ${props =>\n props.isSelected &&\n css`\n background-color: rgba(74, 74, 74, 0.5);\n &:active {\n backgroundcolor: rgba(74, 74, 74, 0.5);\n }\n `}\n ${props =>\n props.isFocused &&\n css`\n background-color: rgba(74, 74, 74, 0.3);\n `}\n ${props =>\n props.isDisabled &&\n css`\n color: #ccc;\n `}\n color: ${props =>\n props.isSelected ? props.theme.brand.light : props.theme.commons.dark};\n }\n`;\n\nconst StyledMenu = styled.div`\n & > .Select__menu {\n z-index: 3;\n }\n`;\n\nStyledOption.defaultProps = {\n theme,\n};\n\nconst SingleValue = (props: any) => (\n \n \n \n);\n\nconst DropdownIndicator = (props: any) => {\n const color = !props.selectProps.value\n ? theme.commons.main\n : theme.brand.main;\n return (\n \n \n \n \n \n );\n};\n\nconst Control = (props: any) => (\n \n \n \n);\n\nconst Option = (props: any) => (\n \n \n \n);\n\nconst Menu = (props: any) => {\n return (\n \n {props.children} \n \n );\n};\n\ntype Props = {\n options: Array<{\n value: unknown;\n label: string | number;\n }>;\n value: {\n value: unknown;\n label: string | number;\n };\n onChange: (event: any) => void;\n placeholder?: string;\n invalid?: boolean;\n disabled?: boolean;\n menuPortalTarget?: HTMLBodyElement | null;\n isClearable?: boolean;\n maxMenuHeight?: number;\n menuPlacement?: 'auto' | 'top' | 'bottom';\n};\n\nconst RoundSelect = ({ ...props }: Props) => {\n const [show, toggle] = useState(false);\n return (\n null,\n Control,\n SingleValue,\n Option,\n Menu,\n }}\n onMenuOpen={() => toggle(true)}\n onMenuClose={() => toggle(false)}\n onInputChange={() => toggle(false)}\n show={show}\n classNamePrefix={'Select'}\n />\n );\n};\n\nRoundSelect.defaultProps = {\n theme,\n menuHeight: 300,\n};\n\nRoundSelect.displayName = 'RoundSelect';\n\nexport default RoundSelect;\n","import React, { useState, useEffect } from 'react';\nimport styled from 'styled-components';\nimport { Stack, Button } from '@chakra-ui/react';\nimport RoundSelect from '../form/RoundSelect';\nimport theme from '../base/theme';\n\ntype Props = {\n goToPage: (arg: number) => void;\n pageIndex: number;\n pageSize: number;\n setPageSize: (arg: number) => void;\n totalPages: number;\n showMorePlacement?: 'auto' | 'top' | 'bottom';\n};\n\nconst WrapSelect = styled.div<{ theme: any }>`\n width: 150px;\n & .Select__control {\n border-color: ${({ theme }) => theme.brand.dark};\n &:hover {\n border-color: ${({ theme }) => theme.commons.dark};\n }\n &:focus {\n border-color: ${({ theme }) => theme.dark.border.focus};\n }\n }\n & .Select__single-value {\n color: ${({ theme }) => theme.brand.dark};\n &:hover {\n color: ${({ theme }) => theme.commons.dark};\n }\n &:focus {\n color: ${({ theme }) => theme.dark.border.focus};\n }\n }\n .Select__indicators svg path {\n fill: ${({ theme }) => theme.brand.dark};\n &:hover {\n fill: ${({ theme }) => theme.commons.dark};\n }\n &:focus {\n fill: ${({ theme }) => theme.dark.border.focus};\n }\n }\n`;\n\nWrapSelect.defaultProps = {\n theme,\n};\n\nconst getItems = (page: number, totalPages: number) => {\n let startPage: number, endPage: number;\n if (totalPages <= 10) {\n // less than 10 total pages so show all\n startPage = 1;\n endPage = totalPages;\n } else {\n // more than 10 total pages so calculate start and end pages\n if (page <= 6) {\n startPage = 1;\n endPage = 10;\n } else if (page + 4 >= totalPages) {\n startPage = totalPages - 9;\n endPage = totalPages;\n } else {\n startPage = page - 5;\n endPage = page + 4;\n }\n }\n\n // create an array of pages to ng-repeat in the pager control\n return Array.from(Array(endPage + 1 - startPage), (_, i) => startPage + i);\n};\n\nconst Pagination = ({\n goToPage,\n pageIndex,\n pageSize,\n totalPages,\n setPageSize,\n showMorePlacement,\n}: Props): React.ReactElement => {\n const [items, setItems] = useState([]);\n\n useEffect(() => {\n setItems(getItems(pageIndex, totalPages));\n }, [pageIndex, totalPages]);\n\n const setPage = (page: number) => {\n const items = getItems(page, totalPages);\n setItems(items);\n return goToPage(page);\n };\n\n return (\n \n setPage(0)}\n disabled={pageIndex === 0}\n >\n {'<<'}\n {' '}\n setPage(pageIndex - 1)}\n disabled={pageIndex === 0}\n >\n anterior\n {' '}\n \n {items.map((item: number, i: number) => (\n setPage(item - 1)}\n >\n {item}\n \n ))}\n \n setPage(pageIndex + 1)}\n disabled={pageIndex === totalPages - 1}\n >\n próxima\n {' '}\n setPage(totalPages - 1)}\n disabled={pageIndex === totalPages - 1}\n >\n {'>>'}\n {' '}\n \n setPageSize(Number(e.value))}\n menuPortalTarget={document.querySelector('body')}\n menuPlacement={showMorePlacement}\n />\n \n \n );\n};\n\nexport default Pagination;\n","/* eslint-disable react/jsx-key */\nimport React from 'react';\nimport { useTable, useSortBy, useFlexLayout } from 'react-table';\nimport { Stack } from '@chakra-ui/react';\nimport styled, { css } from 'styled-components';\n\nimport Pagination from './Pagination';\nimport Icon from './Icon';\nimport theme from '../base/theme';\n\ninterface Columns {\n accessor?: string;\n Header: any;\n Cell?: (arg0: any) => string | React.ReactElement | null;\n className?: string;\n bold?: boolean;\n show?: boolean;\n Column?: any;\n columns?: Array;\n minWidth?: number;\n width?: number;\n collapse?: boolean;\n}\n\nconst StyledTh = styled.th<{ theme: any; backgroundColor: string }>`\n font-family: ${props => props.theme.fontFamily};\n font-size: 13px;\n font-weight: 600;\n line-height: 18px;\n text-transform: uppercase;\n color: #a4a4a4;\n text-align: left;\n border-bottom: 1px solid #e5e5e5;\n cursor: pointer;\n height: 40px;\n\n display: flex;\n align-items: center;\n\n /* Sticky */\n position: sticky !important;\n top: 0;\n background-color: ${props => props.backgroundColor};\n\n &.hide {\n display: none;\n }\n`;\n\nconst StyledTd = styled.td<{ theme: any; bold?: boolean; hide?: boolean }>`\n font-family: ${props => props.theme.fontFamily};\n font-size: 16px;\n font-weight: ${props => (props.bold ? 'bold' : 'normal')};\n line-height: 22px;\n color: ${props => props.theme.commons.dark};\n letter-spacing: normal;\n word-break: break-word;\n min-height: 60px;\n\n margin: 0;\n border-bottom: 1px solid #e5e5e5;\n\n display: flex;\n align-items: center;\n\n &.hide {\n display: none;\n }\n`;\n\nconst StyledTr = styled.tr`\n :last-child {\n td {\n border-bottom: 0;\n }\n }\n border-bottom: 1px solid #e5e5e5;\n`;\n\nconst StyledTable = styled.table<{ backgroundColor: string; sticky: string }>`\n border-spacing: 0;\n border: 1px solid #e5e5e5;\n background-color: ${props => props.backgroundColor};\n width: 100%;\n\n thead {\n /* These styles are required for a scrollable body to align with the header properly */\n overflow-y: auto;\n overflow-x: hidden;\n }\n\n tbody {\n /* These styles are required for a scrollable table body */\n overflow-y: scroll;\n overflow-x: hidden;\n height: 250px;\n }\n\n th,\n td {\n margin: 0;\n padding-left: 20px;\n\n /* In this example we use an absolutely position resizer,\n so this is required. */\n position: relative;\n\n :last-child {\n border-right: 0;\n }\n }\n\n ${({ sticky }) =>\n sticky === 'end' &&\n css`\n .sticky {\n right: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-left: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-left: 1px solid #e5e5e5;\n padding-left: 0;\n }\n }\n `}\n\n ${({ sticky }) =>\n sticky === 'start' &&\n css`\n .sticky {\n left: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n `}\n\n .sticky {\n position: sticky !important;\n top: 0;\n z-index: 1;\n background-color: ${props => props.backgroundColor};\n }\n`;\n\nconst Main = styled.div`\n /* These styles are suggested for the table fill all available space in its containing element */\n display: block;\n /* These styles are required for a horizontaly scrollable table overflow */\n overflow: auto;\n`;\n\ntype Props = {\n columns: Array;\n data: Array;\n backgroundColor: string;\n sticky?: 'end' | 'start';\n pagination?: {\n totalPages: number;\n goToPage: (page: number) => void;\n setPageSize: (arg0: number) => void;\n pageIndex: number;\n pageSize: number;\n };\n};\n\nfunction Table({\n columns,\n data,\n backgroundColor,\n sticky,\n pagination,\n}: Props): React.ReactElement {\n const defaultColumn = React.useMemo(\n () => ({\n // When using the useFlexLayout:\n minWidth: 30, // minWidth is only used as a limit for resizing\n width: 150, // width is used for both the flex-basis and flex-grow\n maxWidth: 300, // maxWidth is only used as a limit for resizing\n }),\n []\n );\n\n const {\n getTableProps,\n getTableBodyProps,\n headerGroups,\n rows,\n prepareRow,\n } = useTable(\n {\n columns,\n data,\n defaultColumn,\n },\n useSortBy,\n useFlexLayout\n );\n\n // Render the UI for your table\n return (\n \n \n \n \n {headerGroups.map(headerGroup => (\n \n {headerGroup.headers.map((column: any) => (\n \n \n {column.render('Header')}\n \n {column.isSorted ? (\n column.isSortedDesc ? (\n \n ) : (\n \n )\n ) : (\n ''\n )}\n \n
\n \n ))}\n \n ))}\n \n \n {rows.map(row => {\n prepareRow(row);\n return (\n \n {row.cells.map((cell: any) => (\n \n {cell.render('Cell')}\n \n ))}\n \n );\n })}\n \n \n \n {pagination && (\n \n )}\n \n );\n}\n\nTable.defaultProps = {\n backgroundColor: '#fff',\n};\n\nexport default Table;\n","import styled from 'styled-components';\nimport React from 'react';\n\ntype Props = {\n /** The margin property. */\n margin: {\n x?: number;\n y?: number;\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n /** The padding property. */\n padding: {\n x?: number;\n y?: number;\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n children: any;\n};\n\ntype SpacingProps = {\n margin: {\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n padding: {\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n};\n\nconst SpacingStyled = styled.div`\n ${({ margin }) => margin.top && `margin-top: ${margin.top}px;`}\n ${({ margin }) => margin.bottom && `margin-bottom: ${margin.bottom}px;`}\n ${({ margin }) => margin.left && `margin-left: ${margin.left}px;`}\n ${({ margin }) => margin.right && `margin-right: ${margin.right}px;`}\n ${({ padding }) => padding.top && `padding-top: ${padding.top}px;`}\n ${({ padding }) => padding.bottom && `padding-bottom: ${padding.bottom}px;`}\n ${({ padding }) => padding.left && `padding-left: ${padding.left}px;`}\n ${({ padding }) => padding.right && `padding-right: ${padding.right}px;`}\n`;\n\n/**\n * The only true Spacing component.\n */\nconst Spacing = ({\n margin,\n padding,\n ...ownProps\n}: Props): React.ReactElement => {\n const { x: marginX, y: marginY } = margin;\n const { x: paddingX, y: paddingY } = padding;\n return (\n \n );\n};\n\nSpacing.displayName = 'Spacing';\n\nSpacing.defaultProps = {\n margin: {},\n padding: {},\n};\n\n/** @component */\nexport default Spacing;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Spacing from '../layout/Spacing';\n\ntype Props = {\n margin?: Record;\n padding?: Record;\n height?: string;\n onClick?: () => void;\n border?: string;\n width?: string;\n rounded?: string;\n children: any;\n};\n\ntype CardProps = Omit;\n\nconst CardStyled = styled.div`\n position: relative;\n border-radius: ${props => props.rounded || '1px'};\n background-color: #ffffff;\n box-shadow: 2px 1px 14px 11px rgba(0, 0, 0, 0.04);\n width: ${props => props.width || '100%'};\n display: block;\n ${({ height }) => height && `height: ${height};`}\n ${({ onClick }) => onClick && `cursor: pointer;`}\n ${({ border }) => border && `border: ${border};`}\n`;\n\nconst Card = ({\n margin,\n padding,\n children,\n ...rest\n}: Props): React.ReactElement => (\n \n \n {children} \n \n \n);\n\nCard.defaultProps = {\n margin: {\n top: 0,\n bottom: 0,\n left: 0,\n right: 0,\n },\n padding: {\n top: 0,\n bottom: 0,\n left: 0,\n right: 0,\n },\n};\n\nCard.displayName = 'Card';\n\n/** @component */\nexport default Card;\n","import React, { useState } from 'react';\nimport styled from 'styled-components';\nimport TooltipIcon from './TooltipIcon';\n\nexport const Message = styled.span`\n font-family: Nunito Sans;\n position: absolute;\n background-color: #424242;\n padding: 23px 16px;\n width: 250px;\n font-size: 13px;\n text-transform: none;\n color: #fff;\n right: -200px;\n top: 25px;\n line-height: 17.73px;\n z-index: 1;\n\n p {\n margin-bottom: 5px;\n }\n`;\n\ntype Props = {\n className?: string;\n label?: string | any;\n info: string | any;\n};\n\nconst Tooltip = styled(({ label, info, className }: Props) => {\n const [visible, setVisible] = useState(false);\n\n return (\n \n {label}\n
setVisible(true)}\n onMouseOut={() => setVisible(false)}\n >\n \n {visible && {info} }\n
\n
\n );\n})`\n display: flex;\n flex-direction: row;\n\n svg {\n margin-left: 10px;\n cursor: pointer;\n }\n`;\n\nexport default Tooltip;\n","import styled from 'styled-components';\n\nconst DropdownList = styled.div`\n background-color: #fff;\n padding: 20px 0;\n white-space: nowrap;\n overflow-y: auto;\n box-shadow: 0 3px 7px rgba(0, 0, 0, 0.45), 0 2px 2px rgba(0, 0, 0, 0.45);\n max-height: calc(100vh - 30px - 40px);\n`;\n\nexport default DropdownList;\n","import React from 'react';\nimport styled from 'styled-components';\n\nconst DropdownItem = styled(({ className, value }) => (\n {value}
\n))`\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n &:hover {\n color: #ee0099;\n }\n`;\n\nexport default DropdownItem;\n","import React from 'react';\n\ninterface DropdownInputProps {\n value: string;\n}\n\nconst DropdownInput: React.FC = ({ value }) => (\n {value} \n);\n\nexport default DropdownInput;\n","import React, { useRef, useEffect, useState } from 'react';\nimport styled from 'styled-components';\nimport DropdownList from './ui/DropdownList';\nimport DropdownItem from './ui/DropdownItem';\nimport DropdownInput from './ui/DropdownInput';\nimport Icon from '../content/Icon';\nimport theme from '../base/theme';\n\nconst useOutsideAlerter = (ref: any, onEvent: any) => {\n const handleClickOutside = (event: any) => {\n if (ref.current && !ref.current.contains(event.target)) {\n onEvent();\n }\n };\n\n useEffect(() => {\n document.addEventListener('mousedown', handleClickOutside);\n return () => {\n document.removeEventListener('mousedown', handleClickOutside);\n };\n });\n};\n\nexport const DropdownFluid = styled.div`\n display: flex;\n flex-direction: column;\n font-family: ${props => props.theme.fontFamily};\n`;\n\nDropdownFluid.defaultProps = {\n theme,\n};\n\ninterface DropdownFluidListProps {\n direction?: 'left' | 'right';\n}\n\nconst DropdownFluidList = styled.div`\n position: absolute;\n top: calc(100% + 15px);\n display: flex;\n flex-direction: column;\n z-index: 3;\n ${props =>\n props.direction === 'left' &&\n `\n left: 0;\n `}\n ${props =>\n props.direction === 'right' &&\n `\n right: 0;\n `}\n`;\n\nconst DropdownFluidInput = styled(({ children, className, onToggle, open }: any) => (\n \n {children}\n \n
\n))`\n display: flex;\n z-index: 2;\n cursor: pointer;\n flex-direction: row;\n align-items: center;\n color: #fff;\n font-weight: bold;\n font-size: 13px;\n text-transform: uppercase;\n\n ${Icon} {\n margin-left: 10px;\n }\n`;\n\ninterface DropdownFluidItemProps {\n clickable?: boolean;\n onClick?: any;\n}\n\nconst DropdownFluidItem = styled.div`\n display: flex;\n ${props => props.clickable && `cursor: pointer;`}\n`;\n\nconst DropdownFluidLayout = styled.div`\n position: relative;\n`;\n\ninterface DropdownProps {\n placeholder?: string;\n item?: any;\n items: any[];\n selectable?: boolean;\n onSelect: Function;\n dropdownInput?: any;\n dropdownItem?: any;\n dropdownList?: any;\n direction?: 'left' | 'right';\n}\n\nconst Dropdown: React.FC = ({\n placeholder,\n item,\n items,\n selectable,\n onSelect,\n direction,\n dropdownInput: DropdownInputUI,\n dropdownItem: DropdownItemUI,\n dropdownList: DropdownListUI,\n}) => {\n const [open, setOpen] = useState(false);\n // click ousite dropdown is close\n const dropdownRef = useRef(null);\n useOutsideAlerter(dropdownRef, () => setOpen(false));\n\n return (\n \n setOpen(!open)}>\n {!item ? (\n {placeholder} \n ) : selectable && !!item ? (\n \n ) : (\n {placeholder} \n )}\n \n \n {open && (\n \n \n {items.map((value, index) => {\n const clickable =\n typeof value === 'string'\n ? true\n : typeof value.clickable === 'undefined'\n ? true\n : value.clickable;\n\n const itemProps = {\n clickable,\n onClick: !clickable\n ? null\n : () => {\n onSelect(value);\n setOpen(false);\n },\n };\n\n return (\n \n {typeof value !== 'string' && value.render ? (\n \n ) : (\n \n )}\n \n );\n })}\n \n \n )}\n \n \n );\n};\n\nDropdown.defaultProps = {\n direction: 'left',\n selectable: true,\n items: [],\n dropdownInput: DropdownInput,\n dropdownItem: DropdownItem,\n dropdownList: DropdownList,\n};\n\nexport default Dropdown;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Icon from '../content/Icon';\n\nconst DropdownIconItem = styled(({ className, value, onClick }: any) => {\n const { icon, label } = value;\n\n return (\n \n \n {label}\n
\n );\n})`\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n ${Icon} {\n margin-right: 10px;\n }\n\n &:hover {\n color: #ee0099;\n\n ${Icon} {\n path {\n color: #ee0099;\n fill: #ee0099;\n stroke: #ee0099;\n }\n }\n }\n`;\n\nexport default DropdownIconItem;\n","import React from 'react';\nimport styled from 'styled-components';\n\ninterface Img {\n src: string;\n alt?: string;\n}\n\ninterface Value {\n img: Img;\n label: string;\n}\n\ninterface DropdownImageInputProps {\n value: Value;\n placeholder: string;\n clickable?: boolean;\n}\n\nconst DropdownImageInput = styled(({ className, value }: any) => {\n const { img, label } = value;\n return (\n \n
\n {label}\n
\n );\n}) `\n display: flex;\n flex-grow: 1;\n align-items: center;\n\n img {\n border-radius: 50px;\n width: 25px;\n height: 25px;\n margin-right: 10px;\n }\n`;\n\nexport default DropdownImageInput;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Header from '../content/Header';\n\ninterface Img {\n src: string;\n alt?: string;\n}\n\ninterface Value {\n img: Img;\n label: string;\n}\n\ninterface DropdownImageItemProps {\n value: Value;\n placeholder: string;\n clickable?: boolean;\n}\n\nconst DropdownImageItem = styled(({ className, value }: any) => {\n const { img, label } = value;\n return (\n \n
\n {label}\n
\n );\n}) `\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n img {\n width: 40px;\n height: 40px;\n margin-right: 10px;\n }\n ${props =>\n props.clickable &&\n `\n &:hover {\n background-color: #c7c7c7;\n }\n `}\n ${Header.H4}, ${Header.H5} {\n margin: 0;\n }\n`;\n\nexport default DropdownImageItem;\n","import styled from 'styled-components';\n\ninterface FormProps {\n direction?: 'row' | 'column';\n}\n\nconst Form = styled.form`\n display: flex;\n flex-direction: ${props => props.direction};\n`;\n\nForm.defaultProps = {\n direction: 'column',\n};\n\nexport default Form;\n","import React from 'react';\nimport { Form as FinalForm } from 'react-final-form';\n// eslint-disable-next-line prettier/prettier\nimport type { FormProps } from 'react-final-form';\nimport Form from './Form';\n\ninterface ConnectedFormProps extends FormProps {\n children(formProps: any): any;\n onSubmit(values: any): any;\n}\n\nconst ConnectedForm: React.FC = ({\n children,\n onSubmit,\n ...ownProps\n}) => (\n \n {({ handleSubmit, ...formProps }) => (\n \n )}\n \n);\n\nexport default ConnectedForm;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\ninterface HintProps {\n color?: 'error' | 'warning' | 'info';\n}\n\nconst handleColor = ({ color }: HintProps) => {\n switch (color) {\n case 'info':\n return '#aaa';\n case 'error':\n return '#ff0931';\n default:\n return '#50e3c2';\n }\n};\n\nconst Hint = styled.span`\n font-family: ${props => props.theme.fontFamily};\n font-size: 11px;\n font-weight: 600;\n line-height: 1.36;\n letter-spacing: 0.4px;\n text-transform: uppercase;\n color: ${handleColor};\n`;\n\nHint.defaultProps = {\n theme,\n color: 'info',\n};\n\nexport default Hint;\n","import styled from 'styled-components';\nimport Hint from './Hint';\n\ninterface FormFieldProps {\n direction?: 'row' | 'column';\n}\n\nconst FormField = styled.div`\n position: relative;\n display: flex;\n padding: 0 0 30px;\n\n flex-direction: ${props => props.direction};\n ${props =>\n props.direction === 'row' &&\n `\n align-items: flex-end;\n `}\n\n ${Hint} {\n position: absolute;\n right: 0;\n }\n`;\n\nFormField.defaultProps = {\n direction: 'column',\n};\n\nexport default FormField;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst ArrowUpIcon = createIcon({\n displayName: 'ArrowUpIcon',\n viewBox: '4 4 15 15',\n path: (\n <>\n \n >\n ),\n});\n\nexport default ArrowUpIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst ArrowDownIcon = createIcon({\n displayName: 'ArrowDownIcon',\n viewBox: '4 4 15 15',\n path: (\n <>\n \n >\n ),\n});\n\nexport default ArrowDownIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst BotIcon = createIcon({\n displayName: 'BotIcon',\n path: (\n <>\n \n \n >\n ),\n});\n\nexport default BotIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst EditIcon = createIcon({\n displayName: 'EditIcon',\n path: (\n <>\n \n \n >\n ),\n});\n\nexport default EditIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst InfoIcon = createIcon({\n displayName: 'InfoIcon',\n viewBox: '0 0 14 14',\n path: (\n <>\n \n \n \n \n >\n ),\n});\n\nexport default InfoIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst NetIcon = createIcon({\n displayName: 'NetIcon',\n path: (\n <>\n \n \n \n \n >\n ),\n});\n\nexport default NetIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst PagesIcon = createIcon({\n displayName: 'PagesIcon',\n path: (\n <>\n \n \n \n >\n ),\n});\n\nexport default PagesIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst SettingsIcon = createIcon({\n displayName: 'PagesIcon',\n path: (\n <>\n \n \n >\n ),\n});\n\nexport default SettingsIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst CloseIcon = createIcon({\n displayName: 'CloseIcon',\n viewBox: '0 0 10 10',\n path: (\n <>\n \n >\n ),\n});\n\nexport default CloseIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst UploadImageIcon = createIcon({\n displayName: 'UploadImageIcon',\n viewBox: '0 0 84 84',\n path: (\n <>\n \n \n \n \n \n \n \n >\n ),\n});\n\nexport default UploadImageIcon;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport {\n Input,\n FormControl,\n FormLabel,\n Flex,\n Tooltip,\n Stack,\n} from '@chakra-ui/react';\nimport { InfoIcon } from '../../icons';\nimport Hint from './Hint';\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst InputField = (props: any): React.ReactElement => {\n const {\n variant,\n label,\n name,\n placeholder,\n helpText,\n type,\n disabled,\n onBlur,\n ...config\n } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n \n \n {label} \n {helpText && (\n \n \n \n )}\n \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n {\n onBlur && onBlur(e);\n input.onBlur(e);\n }}\n />\n \n );\n};\n\nexport default InputField;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport { Select, FormControl, FormLabel, Flex } from '@chakra-ui/react';\nimport Hint from './Hint';\n\ntype Props = {\n children: any;\n label: string;\n name: string;\n disabled?: boolean;\n validate?: any;\n};\n\nconst SelectField = (props: Props): React.ReactElement => {\n const { label, name, disabled, children, ...config } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n \n {label} \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n \n {children}\n \n \n );\n};\n\nexport default SelectField;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Label = styled.label`\n font-family: ${props => props.theme.fontFamily};\n font-weight: 600;\n font-size: 13px;\n line-height: 1.15;\n letter-spacing: 0.5px;\n color: ${props => props.theme.commons.main};\n text-transform: uppercase;\n`;\n\nLabel.defaultProps = {\n theme,\n};\n\nexport default Label;\n","// Validate for redux-form\n// https://redux-form.com/7.4.2/docs/api/field.md/#-code-validate-value-allvalues-props-name-gt-error-code-optional-\n\nconst isEmail = (message: string) => (value: any) => {\n // eslint-disable-next-line\n const regexEmail = /^(([^<>()[\\]\\\\.,;:\\s@\\\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\\\"]+)*)|(\\\".+\\\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;\n\n return !regexEmail.test(value) ? message : undefined;\n};\n\nconst required = (message: string) => (value: any) =>\n !value ? message : undefined;\n\nconst min = (size: number, message: string) => (value: any) =>\n value && value.length < size ? message : undefined;\n\nconst max = (size: number, message: string) => (value: any) =>\n value && value.length > size ? message : undefined;\n\nconst composeValidators = (...validators: any) => (value: any) =>\n validators.reduce(\n (error: any, validator: any) => error || validator(value),\n undefined\n );\n\nexport default {\n isEmail,\n required,\n min,\n max,\n composeValidators,\n};\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\ntype TextareaProps = {\n invalid?: boolean;\n fullWidth?: boolean;\n valid?: boolean;\n showValid?: boolean;\n touched?: boolean;\n};\n\nconst Textarea = styled.textarea`\n ${props => props.fullWidth && 'width: 100%;'}\n font-family: ${theme.fontFamily};\n font-size: 16px;\n color: #000000;\n border: none;\n border-bottom: 1px solid #AAAAAA;\n padding: 0 0 8px;\n flex: 1;\n background: none;\n min-height: 109px;\n\n &[disabled] {\n color: #D1CDD2;\n background: none;\n }\n\n &:focus {\n outline: none;\n border-bottom: 1px solid ${theme.brand.main};\n }\n\n &::placeholder {\n color: ${theme.commons.dark};\n }\n &::-webkit-input-placeholder {\n color: ${theme.commons.dark};\n }\n &::-moz-placeholder {\n color: ${theme.commons.dark};\n }\n &:-ms-input-placeholder {\n color: ${theme.commons.dark};\n }\n &:-moz-placeholder {\n color: ${theme.commons.dark};\n }\n\n ${props => props.invalid && `border-color: #ff0931;`}\n`;\n\nTextarea.displayName = 'Textarea';\n\n/** @component */\nexport default Textarea;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport Textarea from './Textarea';\nimport Label from './Label';\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst TextareaField = (props: any) => {\n const { label, name, placeholder, disabled, ...config } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n {label} \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n \n
\n \n );\n};\n\nexport default TextareaField;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport RoundSelect from './RoundSelect';\nimport Label from './Label';\n\ntype Props = {\n name: string;\n options: Array<{\n value: string | number;\n label: string | number;\n }>;\n label?: string;\n placeholder?: string;\n disabled?: boolean;\n menuPortalTarget?: HTMLBodyElement | null;\n isClearable?: boolean;\n onChange?: (event: any) => void;\n maxMenuHeight?: number;\n menuPlacement?: 'auto' | 'top' | 'bottom';\n};\n\nconst RoundSelectField = ({\n label,\n name,\n placeholder,\n disabled,\n options,\n menuPortalTarget,\n isClearable,\n onChange,\n maxMenuHeight = 300,\n menuPlacement = 'bottom',\n ...config\n}: Props) => {\n const { input, meta } = useField(name, config);\n return (\n \n {label && {label} }\n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n {\n onChange && onChange(e);\n input.onChange(e);\n }}\n />\n \n );\n};\n\nexport default RoundSelectField;\n","import styled, { css } from 'styled-components';\nimport theme from '../base/theme';\n\ntype Props = {\n type?: string;\n invalid?: boolean;\n disabled?: boolean;\n theme: any;\n onBlur?: (e: any) => void;\n placeholder?: string;\n border?: boolean;\n};\n\nconst RoundInput = styled.input`\n padding: 0 60px 0 15px;\n width: 100%;\n height: 40px;\n\n font-family: ${props => props.theme.fontFamily};\n font-size: 14px;\n line-height: 22px;\n color: ${props => props.theme.commons.dark};\n border: none;\n box-sizing: border-box;\n background-color: unset;\n\n &[disabled] {\n color: #d1cdd2;\n background: unset;\n }\n\n &::placeholder,\n &::-webkit-input-placeholder,\n &::-moz-placeholder,\n &:-ms-input-placeholder,\n &:-moz-placeholder {\n color: ${props => props.theme.commons.dark};\n font-family: ${props => props.theme.fontFamily};\n }\n\n ${({ border, value, theme, invalid }) =>\n border &&\n css`\n border: 1px solid;\n border-radius: 7px;\n ${!value\n ? css`\n &:hover,\n &:focus {\n border-color: ${theme.commons.main};\n }\n border-color: ${theme.commons.main};\n `\n : css`\n &:hover,\n &:focus {\n border-color: ${theme.brand.main};\n }\n border-color: ${theme.brand.main};\n `}\n ${invalid && `border-color: ${theme.error};`}\n `}\n`;\n\nRoundInput.defaultProps = {\n invalid: false,\n type: 'text',\n theme,\n};\n\nexport default RoundInput;\n","import React from 'react';\nimport styled, { css } from 'styled-components';\nimport { useField } from 'react-final-form';\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport RoundInput from './RoundInput';\nimport Label from './Label';\nimport theme from '../base/theme';\n\ntype Props = {\n name: string;\n type?: string;\n label?: string;\n placeholder?: string;\n disabled?: boolean;\n onBlur?: (e: any) => void;\n};\n\nconst StyledFormField = styled(FormField)<{\n invalid?: boolean;\n value?: string;\n}>`\n border: 1px solid;\n border-radius: 7px;\n padding: 0;\n ${props =>\n !props.value\n ? css`\n &:hover,\n &:focus {\n border-color: ${props.theme.commons.main};\n }\n border-color: ${props.theme.commons.main};\n `\n : css`\n &:hover,\n &:focus {\n border-color: ${props.theme.brand.main};\n }\n border-color: ${props.theme.brand.main};\n `}\n\n ${props =>\n props.invalid &&\n `\n border-color: ${props.theme.error};\n `}\n`;\n\nStyledFormField.defaultProps = {\n theme,\n};\n\nconst RoundInputField = ({\n name,\n type,\n label,\n placeholder,\n disabled,\n onBlur,\n ...config\n}: Props) => {\n const { input, meta } = useField(name, config);\n return (\n \n {label && {label} }\n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n {\n onBlur && onBlur(e);\n input.onBlur(e);\n }}\n />\n \n );\n};\n\nexport default RoundInputField;\n","import styled from 'styled-components';\nimport React from 'react';\n\ninterface SwitchProps {\n onClick?: () => void;\n checked?: boolean;\n disabled?: boolean;\n}\n\nconst Switch = ({ onClick, checked, disabled }: SwitchProps) => {\n return (\n \n \n \n \n );\n};\n\nconst Label = styled.label`\n position: relative;\n display: inline-block;\n width: 28px;\n min-width: 28px;\n height: 14px;\n border-radius: 50%;\n box-shadow: 3px 3px 10px 1px rgb(138 138 138 / 55%);\n\n input {\n opacity: 0;\n width: 0;\n height: 0;\n }\n\n .slider {\n position: absolute;\n cursor: pointer;\n border-radius: 34px;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background-color: #858585;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n .slider::before {\n position: absolute;\n content: '';\n height: 12px;\n width: 12px;\n border-radius: 50%;\n left: 1px;\n bottom: 1px;\n background-color: white;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n input:checked + .slider {\n background-color: #50e3c2;\n }\n\n input:checked + .slider::before {\n -webkit-transform: translateX(14px);\n -ms-transform: translateX(14px);\n transform: translateX(14px);\n }\n`;\n\nexport default Switch;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport styled from 'styled-components';\n\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport Switch from './Switch';\nimport Label from './Label';\n\nconst SwitchField = (props: any) => {\n const { label, name, disabled, textOff, textOn, ...config } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n {label && {label} }\n\n {input.value ? textOn : textOff} \n\n input.onChange(!input.value)}\n checked={input.value}\n />\n \n \n );\n};\n\ntype ContainerProps = {\n disabled: boolean;\n};\n\nconst Container = styled.div`\n display: flex;\n align-items: center;\n\n .text {\n font-size: '13px';\n font-weight: 800;\n margin-right: 8px;\n color: ${({ disabled }) => (disabled ? '#858585' : '#50E3C2')};\n }\n`;\n\nexport default SwitchField;\n","import React from 'react';\nimport {\n FormControl,\n FormLabel,\n Flex,\n Stack,\n RadioGroup,\n} from '@chakra-ui/react';\nimport { useField } from 'react-final-form';\nimport Hint from './Hint';\n\ntype RadioFieldProps = {\n children: any;\n label: string;\n name: string;\n direction?: 'row' | 'column';\n};\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst RadioField = ({ children, label, name, direction }: RadioFieldProps) => {\n const { input, meta } = useField(name);\n\n return (\n \n \n {label} \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n \n \n {children}\n \n \n \n );\n};\n\nRadioField.defaultProps = {\n direction: 'row',\n};\n\nexport default RadioField;\n","import React from 'react';\nimport {\n Box,\n Button,\n Image,\n FormControl,\n FormLabel,\n FormHelperText,\n Stack,\n} from '@chakra-ui/react';\nimport { useField, FieldInputProps } from 'react-final-form';\nimport ReactS3Uploader from 'react-s3-uploader';\nimport { EditIcon, UploadImageIcon } from '../../icons';\n\ninterface S3UploadFileFieldProps {\n signingUrl: string;\n onChange: any;\n disabled?: boolean;\n}\n\nconst S3UploadFileField: React.FC = ({\n children,\n onChange,\n signingUrl,\n disabled,\n}) => {\n const inputRef: any = React.useRef(null);\n\n // Override callbacks\n const onProgress = (args: any) => {\n console.log('onProgress', { args });\n };\n const onError = (args: any) => {\n console.log('onError', { args });\n };\n const onFinish = ({ signedUrl }: any) => {\n const imageUrl: string = signedUrl.substring(0, signedUrl.indexOf('?'));\n console.log('onFinish', { imageUrl });\n onChange(imageUrl);\n };\n // Button should be ReactS3Uploader active.\n const onClick = (evt: any) => {\n evt?.preventDefault();\n inputRef?.current.click();\n };\n\n return (\n \n \n {children}\n \n \n
\n );\n};\n\ninterface S3UploadFieldProps extends FieldInputProps {\n label?: string;\n helpText?: string;\n disabled?: boolean;\n alt?: string;\n signingUrl: string;\n uploadImageIcon: any;\n removeTextButton?: string;\n borderRadius?: any;\n boxSize?: any;\n}\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst S3UploadField = (props: S3UploadFieldProps) => {\n const {\n label,\n helpText,\n name,\n disabled,\n alt,\n signingUrl,\n uploadImageIcon: UploadImageIconComponent,\n removeTextButton,\n borderRadius,\n boxSize,\n ...config\n } = props;\n const { input } = useField(name, config);\n\n return (\n \n \n {input.value ? (\n \n \n \n \n \n \n ) : (\n \n )}\n \n \n {label} \n {helpText && (\n \n {helpText}\n \n )}\n {props.formData && (\n props.onChange(null)}\n >\n {removeTextButton}\n \n )}\n \n \n );\n};\n\nS3UploadField.defaultProps = {\n uploadImageIcon: UploadImageIcon,\n removeTextButton: 'Remover',\n borderRadius: '50%',\n boxSize: '85px',\n};\n\nexport default S3UploadField;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport { SketchPicker } from 'react-color';\nimport { Flex, FormControl, FormLabel, Stack, Tooltip } from '@chakra-ui/react';\nimport { InfoIcon } from '../../icons';\nimport Hint from './Hint';\n\n// interface ColorFieldProps extends {\n// name: string\n// label?: string\n// helpText?: string\n// }\n\nconst ColorField = (props: any): any => {\n const {\n // variant,\n label,\n name,\n // placeholder,\n helpText,\n // type,\n // disabled,\n // onBlur,\n ...config\n } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n \n \n {label} \n {helpText && (\n \n \n \n )}\n \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n input.onChange(color.hex)}\n />\n \n );\n};\n\nexport default ColorField;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Navigation = styled.div`\n display: flex;\n height: 40px;\n background-color: ${({ theme }) => theme.brand.dark};\n align-items: flex-end;\n\n & > a {\n color: inherit;\n text-decoration: none;\n }\n`;\n\nNavigation.defaultProps = {\n theme,\n};\n\nexport default Navigation;\n","import React from 'react';\nimport { Button } from '@chakra-ui/react';\nimport { useColorMode } from '@chakra-ui/color-mode';\n\nexport interface TabProps {\n active?: boolean;\n onClick?: () => void;\n}\n\nconst Tab: React.FC = ({ children, active, onClick }) => {\n const { colorMode } = useColorMode();\n const defaultColor = colorMode === 'dark' ? 'white' : 'black';\n\n const defaultStylesProps: any = {\n color: defaultColor,\n };\n\n if (!active && colorMode === 'light') {\n defaultStylesProps.color = 'black';\n defaultStylesProps._hover = {\n color: 'gray.400',\n };\n }\n\n if (!active && colorMode === 'dark') {\n defaultStylesProps.color = 'white';\n defaultStylesProps._hover = {\n color: 'gray.200',\n };\n }\n\n if (active) {\n defaultStylesProps.color = 'pink.200';\n defaultStylesProps._hover = {\n color: 'pink.200',\n borderBottomColor: 'pink.200',\n };\n defaultStylesProps.borderBottomWidth = '2px';\n defaultStylesProps.borderBottomStyle = 'solid';\n defaultStylesProps.borderBottomColor = 'pink.200';\n }\n\n return (\n \n {children}\n \n );\n};\n\nexport default Tab;\n","import styled from 'styled-components';\nimport { ToastContainer } from 'react-toastify';\n\nconst StyledContainer = styled(ToastContainer)`\n .Toastify__toast {\n font-family: Nunito Sans;\n font-size: 16px;\n color: #fff;\n\n padding: 15px 18px;\n }\n .Toastify__toast--success {\n background-color: #50e3c2;\n }\n`;\n\nexport default StyledContainer;\n","import React from 'react';\n\nconst Icon: React.FC = () => {\n return (\n \n \n \n \n \n \n \n \n \n \n );\n};\n\nIcon.displayName = 'SuccessIcon';\n\nexport default Icon;\n","import React from 'react';\nimport styled from 'styled-components';\nimport { SuccessIcon } from './Icons';\n\nconst Message: React.FC = styled.div`\n display: flex;\n flex-direction: row;\n\n svg {\n margin-right: 18px;\n }\n`;\n\ntype Props = {\n message: string;\n};\n\nconst Success = ({ message }: Props) => {\n return (\n \n \n {message} \n \n );\n};\n\nexport default Success;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Body = styled.div`\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n padding: 0 ${({ theme }) => theme.body.padding}px;\n overflow: hidden;\n /* background-color: ${props => props.theme.body}; */\n`;\n\nBody.defaultProps = {\n theme,\n};\n\nexport default Body;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Bonde from '../content/Bonde';\nimport theme from '../base/theme';\n\nconst Footer = styled(({ className, children }: any) => (\n \n \n {children}\n
\n))`\n display: flex;\n flex-direction: row;\n background-color: ${({ theme }) => theme.body.background.dark};\n padding: 20px ${({ theme }) => theme.body.padding}px;\n`;\n\nFooter.defaultProps = {\n theme,\n};\n\nexport default Footer;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Main = styled.div`\n display: flex;\n flex-direction: column;\n min-height: 100vh;\n min-width: 100%;\n background-color: ${({ theme }) => theme.body.background.main};\n font-family: ${({ theme }) => theme.fontFamily};\n`;\n\nMain.defaultProps = {\n theme,\n};\n\nexport default Main;\n","import React from 'react';\nimport styled from 'styled-components';\nimport { Flex } from '@chakra-ui/react';\nimport Icon from '../content/Icon';\nimport Bonde from '../content/Bonde';\n\ninterface NavbarProps {\n className?: string;\n indexRoute: string;\n fixed?: boolean;\n brand?: 'default' | 'small';\n}\n\n// Reset link to keep BondeSVG render\nconst HomeLink = styled.a`\n color: #000;\n text-decoration: none;\n\n &:hover {\n color: #000;\n text-decoration: none;\n }\n`;\n\nconst Navbar: React.FC = ({\n brand,\n children,\n indexRoute,\n fixed = false,\n}) => (\n \n \n {brand !== 'small' ? : }\n \n {children}\n \n);\n\nexport default Navbar;\n","import React, { useState, createContext, useContext, useRef } from 'react';\nimport { Button, Box, Fade, useOutsideClick } from '@chakra-ui/react';\nimport { ArrowUpIcon, ArrowDownIcon } from '../../icons';\n\ntype DropdownContext = {\n isOpen: boolean;\n onToggle: () => void;\n};\n\nconst dropdownContext = createContext({\n isOpen: false,\n onToggle: () => {},\n});\n\ntype PerformDropdownListProps = {\n scroll?: boolean;\n};\n\nexport const PerformDropdownList: React.FC = ({\n children,\n scroll,\n}) => {\n const { isOpen } = useContext(dropdownContext);\n const boxProps: any = {\n minWidth: '200px',\n maxWidth: '400px',\n bg: 'white',\n boxShadow: 'base',\n mt: 10,\n };\n\n if (scroll) {\n boxProps.overflowY = 'scroll';\n boxProps.height = '500px';\n }\n\n return (\n \n {children} \n \n );\n};\n\ntype PerformDropdownItemProps = {\n onClick?: any;\n};\n\nexport const PerformDropdownItem: React.FC = ({\n children,\n onClick,\n}) => {\n const { onToggle } = useContext(dropdownContext);\n\n return (\n {\n if (onClick) onClick();\n onToggle();\n }}\n _hover={{ bg: 'gray.100' }}\n >\n {children}\n \n );\n};\n\nexport const PerformDropdownButton: React.FC = ({\n children,\n color,\n ...props\n}) => {\n const { isOpen, onToggle } = useContext(dropdownContext);\n const buttonProps = {\n ...props,\n zIndex: 3,\n rightIcon: isOpen ? (\n \n ) : (\n \n ),\n onClick: onToggle,\n };\n\n if (color) {\n buttonProps.color = color;\n buttonProps['_hover'] = { color };\n buttonProps['_active'] = { color };\n }\n\n return {children} ;\n};\n\nconst PerformDropdown: React.FC = ({ children }) => {\n const wrapperRef: any = useRef();\n const [isOpen, setIsOpen] = useState(false);\n\n useOutsideClick({\n ref: wrapperRef,\n handler: () => setIsOpen(false),\n });\n\n return (\n setIsOpen(!isOpen),\n }}\n >\n \n {children}\n \n \n );\n};\n\nexport default PerformDropdown;\n","import React from 'react';\nimport { IconButton, Stack } from '@chakra-ui/react';\nimport { Session, Community } from './types';\n\nimport { SettingsIcon, PagesIcon, BotIcon, NetIcon } from '../icons';\n\nconst items: any = {\n settings: [SettingsIcon, 'Configurações'],\n mobilization: [PagesIcon, 'Mobilizações'],\n redes: [NetIcon, 'Redes'],\n chatbot: [BotIcon, 'Chatbot'],\n};\n\ninterface CommunityMenuProps {\n community: Community;\n inverted?: boolean;\n session: Session;\n}\n\nconst CommunityMenu = ({\n community,\n session,\n inverted,\n}: CommunityMenuProps): React.ReactElement => {\n const { apps: config, updateSession }: any = session;\n const { modules } = community;\n\n const handleClick = (url: string) => async () => {\n updateSession('community', community).then(() => {\n window.location.href = url;\n });\n };\n\n return (\n \n {Object.keys(modules)\n .filter((key: string) => !!modules[key])\n .map((key: any, index: number) => {\n let moduleHost = '';\n let baseHost = '';\n try {\n moduleHost = new URL('', config[key]).host;\n baseHost = new URL('', window.location.href).host;\n } catch (err) {\n console.log('error URL', err);\n }\n\n const hoverColor = (color: string) => ({ color: `${color}.200` });\n const isActive = moduleHost === baseHost;\n const IconComponent: any = items[key][0];\n\n const colorSystem = inverted\n ? {\n color: isActive ? 'pink.200' : 'white',\n _hover: isActive ? hoverColor('pink') : hoverColor('gray'),\n }\n : {\n color: 'gray.400',\n _hover: hoverColor('gray'),\n };\n\n return (\n }\n onClick={handleClick(config[key])}\n />\n );\n })}\n \n );\n};\n\nexport default CommunityMenu;\n","import React from 'react';\nimport { Stack, Image, Text } from '@chakra-ui/react';\nimport {\n PerformDropdown,\n PerformDropdownList,\n PerformDropdownItem,\n PerformDropdownButton,\n} from '../ui';\nimport CommunityMenu from './CommunityMenu';\n\nimport { Session } from './types';\n\ninterface CommunitiesDropdownProperties {\n isMobile?: boolean;\n session: Session;\n}\n\nconst CommunitiesDropdown: React.FC = ({\n session,\n isMobile,\n}) => {\n const { communities, community, updateSession } = session;\n\n return (\n \n \n \n {community ? (\n \n \n \n {community?.name}\n \n \n ) : (\n 'Selecione uma comunidade'\n )}\n \n 10}>\n {communities.map((c: any) => (\n {\n updateSession('community', c);\n }}\n >\n \n \n {c.name} \n \n \n ))}\n \n \n {community && !isMobile && (\n \n )}\n \n );\n};\n\nexport default CommunitiesDropdown;\n","import React from 'react';\nimport {\n Button,\n Text,\n Stack,\n Heading,\n Menu,\n MenuButton,\n MenuList,\n MenuItem,\n MenuGroup,\n} from '@chakra-ui/react';\nimport { ArrowDownIcon, ArrowUpIcon, CloseIcon } from '../icons';\nimport { Session } from './types';\n\ninterface UserDropdownProperties {\n session: Session;\n}\n\nconst UserDropdown: React.FC = ({ session }) => {\n const { currentUser: user, logout } = session;\n const name = `${user.firstName} ${user.lastName}`;\n\n const title: any = (\n \n \n {name}\n \n \n {user.email}\n \n \n );\n\n return (\n \n {({ isOpen }: any) => (\n <>\n \n ) : (\n \n )\n }\n >\n {name}\n \n \n \n }>\n Logout\n \n \n \n >\n )}\n \n );\n};\n\nexport default UserDropdown;\n","import React from 'react';\nimport { Button } from '@chakra-ui/react';\nimport { Session } from './types';\n\nconst Logout: React.FC<{ session: Session }> = ({ session }) => {\n return (\n \n \n \n \n \n \n );\n};\n\nexport default Logout;\n","import React from 'react';\nimport styled from '@emotion/styled';\nimport { Flex } from '@chakra-ui/react';\nimport { Main, Footer, Navbar } from '../ui';\nimport CommunitiesDropdown from './CommunitiesDropdown';\nimport UserDropdown from './UserDropdown';\nimport Logout from './Logout';\nimport { BaseUIProperties } from './types';\n\ninterface ContentProps {\n isMobile: boolean;\n bgColor: string;\n}\n\nconst Content = styled.div`\n display: flex;\n flex-grow: 1;\n background-color: ${(props: ContentProps) => props.bgColor};\n\n ${(props: ContentProps) =>\n props.isMobile &&\n `\n padding-top: 65px;\n overflow-y: auto;\n `}\n`;\n\nconst FooterTool: React.FC = ({ languageTool: LanguageTool }) =>\n LanguageTool ? (\n \n ) : (\n \n );\n\nconst BaseUI: React.FC = ({\n children,\n bgColor,\n disableNavigation,\n indexRoute,\n isMobile,\n session,\n languageTool: LanguageTool,\n}) => {\n return (\n \n \n \n {disableNavigation ? (\n
\n ) : (\n \n )}\n {isMobile ? (\n \n ) : (\n \n )}\n \n \n \n {children}\n \n {!isMobile ? : null}\n \n );\n};\n\nBaseUI.defaultProps = {\n disableNavigation: false,\n};\n\nexport default BaseUI;\n"],"names":["FontsLoader","React","GoogleFontLoader","fonts","font","weights","subsets","Spark","styled","path","_templateObject","_taggedTemplateLiteralLoose","props","colorInit","pulse","duration","Sparkles","_ref","color","Fragment","keyframes","_templateObject2","d","_templateObject3","_templateObject4","_templateObject5","_templateObject6","defaultProps","LoadingSVG","className","sparklesColor","sparklesColorInit","sparklesDuration","xmlns","viewBox","fill","size","theme","brand","main","dark","light","commons","fontFamily","body","padding","background","default","border","hover","focus","secondary","disabled","error","Text","p","bold","align","uppercase","displayName","annotate","Component","H1","withComponent","H2","H3","H4","H5","H6","_templateObject7","FullSize","div","LoadingStyles","Loading","children","fullsize","message","messageComponent","MessageComponent","Header","Ring","_ref2","Spinner","_ref3","Bonde","large","width","EmptyIcon","height","EmptyWrap","Empty","Icon","fillRule","stroke","strokeWidth","clipRule","strokeLinecap","clipPath","id","mask","transform","IconController","name","IconSVG","SVGIcons","Link","component","ownProps","CleanButton","button","Wrapper","Shortcut","icon","text","ModalStyled","isOpen","ModalContentStyled","CloseButtonStyled","Modal","onClose","onClick","SelectIcon","show","css","StyledControl","value","invalid","StyledSingleValue","isDisabled","StyledOption","_templateObject8","isSelected","_templateObject9","isFocused","_templateObject10","_templateObject11","StyledMenu","_templateObject12","SingleValue","selectProps","components","DropdownIndicator","Control","Option","Menu","RoundSelect","toggle","useState","ReactSelect","IndicatorSeparator","onMenuOpen","onMenuClose","onInputChange","classNamePrefix","menuHeight","WrapSelect","_ref4","_ref5","_ref6","_ref7","_ref8","_ref9","getItems","page","totalPages","startPage","endPage","Array","from","_","i","Pagination","_ref10","goToPage","pageIndex","pageSize","setPageSize","showMorePlacement","items","setItems","useEffect","setPage","Stack","direction","my","spacing","justify","Button","variant","colorScheme","map","item","key","options","label","placeholder","onChange","e","Number","menuPortalTarget","document","querySelector","menuPlacement","StyledTh","th","backgroundColor","StyledTd","td","StyledTr","tr","StyledTable","table","sticky","Main","Table","columns","data","pagination","defaultColumn","useMemo","minWidth","maxWidth","getTableProps","getTableBodyProps","headerGroups","rows","prepareRow","useTable","useSortBy","useFlexLayout","headerGroup","getHeaderGroupProps","headers","column","getHeaderProps","getSortByToggleProps","collapse","style","display","justifyContent","paddingRight","render","isSorted","isSortedDesc","row","getRowProps","cells","cell","getCellProps","SpacingStyled","margin","top","bottom","left","right","Spacing","x","marginX","y","marginY","paddingX","paddingY","CardStyled","rounded","Card","rest","Message","span","DropdownList","DropdownItem","DropdownInput","useOutsideAlerter","ref","onEvent","handleClickOutside","event","current","contains","target","addEventListener","removeEventListener","DropdownFluid","DropdownFluidList","DropdownFluidInput","onToggle","open","DropdownFluidItem","clickable","DropdownFluidLayout","Dropdown","selectable","onSelect","dropdownInput","DropdownInputUI","dropdownItem","DropdownItemUI","dropdownList","DropdownListUI","setOpen","dropdownRef","useRef","index","itemProps","selected","DropdownIconItem","DropdownImageInput","img","src","alt","DropdownImageItem","Form","form","ConnectedForm","onSubmit","FinalForm","handleSubmit","formProps","handleColor","Hint","FormField","ArrowUpIcon","createIcon","ArrowDownIcon","BotIcon","EditIcon","cx","cy","r","InfoIcon","NetIcon","PagesIcon","SettingsIcon","CloseIcon","UploadImageIcon","opacity","InputField","helpText","type","onBlur","config","input","meta","useField","FormControl","isInvalid","submitError","touched","mb","Flex","FormLabel","Tooltip","boxSize","Input","SelectField","Select","Label","isEmail","regexEmail","test","undefined","required","min","length","max","composeValidators","_len","arguments","validators","_key","reduce","validator","Textarea","textarea","fullWidth","TextareaField","paddingTop","RoundSelectField","isClearable","maxMenuHeight","RoundInput","StyledFormField","RoundInputField","Switch","checked","SwitchField","textOff","textOn","Container","RadioField","RadioGroup","S3UploadFileField","signingUrl","inputRef","onProgress","args","console","log","onError","onFinish","signedUrl","imageUrl","substring","indexOf","evt","preventDefault","click","ReactS3Uploader","accept","S3UploadField","uploadImageIcon","UploadImageIconComponent","removeTextButton","borderRadius","Box","position","Image","FormHelperText","mt","fontSize","formData","fontWeight","ColorField","SketchPicker","onChangeComplete","hex","Navigation","Tab","active","colorMode","useColorMode","defaultColor","defaultStylesProps","_hover","borderBottomColor","borderBottomWidth","borderBottomStyle","px","pb","mr","StyledContainer","ToastContainer","Success","SuccessIcon","Body","Footer","HomeLink","a","Navbar","indexRoute","fixed","w","bg","py","alignItems","href","title","dropdownContext","createContext","PerformDropdownList","scroll","useContext","boxProps","boxShadow","overflowY","Fade","in","zIndex","PerformDropdownItem","cursor","PerformDropdownButton","buttonProps","rightIcon","PerformDropdown","wrapperRef","setIsOpen","useOutsideClick","handler","Provider","settings","mobilization","redes","chatbot","CommunityMenu","community","session","inverted","apps","updateSession","modules","handleClick","url","then","window","location","Promise","resolve","reject","Object","keys","filter","moduleHost","baseHost","URL","host","err","hoverColor","isActive","IconComponent","colorSystem","IconButton","CommunitiesDropdown","isMobile","communities","image","textTransform","c","UserDropdown","currentUser","user","logout","firstName","lastName","Heading","as","email","MenuButton","MenuList","MenuGroup","MenuItem","Logout","Content","bgColor","FooterTool","languageTool","LanguageTool","BaseUI","disableNavigation","grow"],"mappings":"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"}
\ No newline at end of file
diff --git a/clients/libs/components/__dist/bonde-components.cjs.production.min.js b/clients/libs/components/__dist/bonde-components.cjs.production.min.js
new file mode 100644
index 0000000000..3ea7b3cc1b
--- /dev/null
+++ b/clients/libs/components/__dist/bonde-components.cjs.production.min.js
@@ -0,0 +1,2 @@
+"use strict";function e(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(exports,"__esModule",{value:!0});var n,t,l,r,a,o,c=require("react"),i=e(c),s=e(require("react-google-font-loader")),m=require("styled-components"),d=e(m),h=require("react-table"),p=require("@chakra-ui/react"),u=require("react-select"),f=e(u),g=require("react-final-form"),v=e(require("react-s3-uploader")),C=require("react-color"),b=require("@chakra-ui/color-mode"),x=require("react-toastify"),E=e(require("@emotion/styled"));function w(e,n){return n||(n=e.slice(0)),e.raw=n,e}const M=d.path(n||(n=w(["\n fill: ",";\n animation-name: ",";\n animation-duration: ",";\n animation-iteration-count: infinite;\n"])),e=>e.colorInit,e=>e.pulse,e=>e.duration),z=e=>{let{color:n,colorInit:c,duration:s}=e;return i.createElement(i.Fragment,null,i.createElement(M,{colorInit:c,duration:s,pulse:m.keyframes(t||(t=w(["\n 0% { fill: "," }\n 81% { fill: "," }\n 82% { fill: "," }\n "])),n,n,c),d:"M23,84H12.5c-1.7,0-3-1.4-3-3l0,0c0-1.7,1.4-3,3-3H23c1.7,0,3,1.4,3,3l0,0C26,82.7,24.6,84,23,84z"}),i.createElement(M,{colorInit:c,duration:s,pulse:m.keyframes(l||(l=w(["\n 15% { fill: "," }\n 16% { fill: "," }\n 81% { fill: "," }\n 82% { fill: "," }\n "])),c,n,n,c),d:"M36,35.1l7.4,7.4c1.2,1.2,3.1,1.2,4.3,0l0,0c1.2-1.2,1.2-3.1,0-4.3l-7.4-7.4c-1.2-1.2-3.1-1.2-4.3,0l0,0 C34.8,32,34.8,34,36,35.1z"}),i.createElement(M,{colorInit:c,duration:s,pulse:m.keyframes(r||(r=w(["\n 31% { fill: "," }\n 32% { fill: "," }\n 81% { fill: "," }\n 82% { fill: "," }\n "])),c,n,n,c),d:"M89.8,14.1v10.4c0,1.7-1.4,3-3,3l0,0c-1.7,0-3-1.4-3-3V14.1c0-1.7,1.4-3,3-3l0,0C88.4,11.1,89.8,12.5,89.8,14.1 z"}),i.createElement(M,{color:n,colorInit:c,duration:s,pulse:m.keyframes(a||(a=w(["\n 47% { fill: "," }\n 48% { fill: "," }\n 81% { fill: "," }\n 82% { fill: "," }\n "])),c,n,n,c),d:"M138.3,35.1l-7.4,7.4c-1.2,1.2-3.1,1.2-4.3,0v0c-1.2-1.2-1.2-3.1,0-4.3l7.4-7.4c1.2-1.2,3.1-1.2,4.3,0v0 C139.5,32,139.5,34,138.3,35.1z"}),i.createElement(M,{color:n,colorInit:c,duration:s,pulse:m.keyframes(o||(o=w(["\n 63% { fill: "," }\n 64% { fill: "," }\n 81% { fill: "," }\n 82% { fill: "," }\n "])),c,n,n,c),d:"M163,84h-10.4c-1.7,0-3-1.4-3-3l0,0c0-1.7,1.4-3,3-3H163c1.7,0,3,1.4,3,3l0,0C166,82.7,164.7,84,163,84z"}))};var L;z.defaultProps={colorInit:"#DBDBDB",color:"#35E3C3",duration:"6s"};const k=d(e=>{const{className:n,color:t,sparklesColor:l,sparklesColorInit:r,sparklesDuration:a}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n,viewBox:"0 0 176 135"},i.createElement("path",{fill:t,d:"M129.7,123.3H43.8c-1.1,0-2-0.9-2-2V119c0-1.1,0.9-2,2-2h85.9c1.1,0,2,0.9,2,2v2.3C131.7,122.4,130.8,123.3,129.7,123.3z"}),i.createElement("path",{fill:t,d:"M117,68.2c-12.7,0-15.2,0-15.2,0v-4h-12L96,58v-4.7l-6.6-6.6c0,0-2.6-2.3-4.9,0s-5.9,5.9-5.9,5.9v4.7l7,7H73.2 v3.8H55.5c0,0-13.7-0.2-13.7,13.5v21c0,0-1.2,5.4,10.5,6.4c0.8,3.2,3.9,5.6,7.7,5.6c3.7,0,6.8-2.3,7.7-5.4c0.6,0,1.1,0,1.7,0 c0.9,3.1,4,5.4,7.7,5.4s6.8-2.3,7.7-5.4c2.5,0,5.1,0,7.7,0c0.9,3.1,4,5.4,7.7,5.4s6.8-2.3,7.7-5.4c0.6,0,1.2,0,1.7,0 c0.9,3.1,4,5.4,7.7,5.4c3.7,0,6.8-2.4,7.7-5.5c1.2-0.5,6.9-2.9,6.9-8.9c0-6.7,0-26.5,0-26.5S129.7,68.2,117,68.2z M70.3,75.8 c0-1.1,0.9-2,2-2h10.3c1.1,0,2,0.9,2,2v15.3c0,1.1-0.9,2-2,2H72.3c-1.1,0-2-0.9-2-2V75.8z M50.8,90.5v-11c2-5.3,6.3-5.7,6.3-5.7 s0,0,4,0s3.8,2,3.8,2s0,4,0,11.2c0,5.7-1.6,6.2-1.6,6.2s-5.4,0-8.9,0S50.8,90.5,50.8,90.5z M60,111.6c-2,0-3.7-1-4.4-2.4 c0.1,0,0.3,0,0.4,0c2.2,0,5.1,0,8.4,0C63.7,110.6,62,111.6,60,111.6z M77,111.6c-2,0-3.6-1-4.4-2.4c2.8,0,5.8,0,8.9,0 C80.7,110.6,79,111.6,77,111.6z M109.2,75.8c0-1.1,0.9-2,2-2h10.3c1.1,0,2,0.9,2,2v15.3c0,1.1-0.9,2-2,2h-10.3c-1.1,0-2-0.9-2-2 V75.8z M89.8,91.2V75.8c0-1.1,0.9-2,2-2h10.3c1.1,0,2,0.9,2,2v15.3c0,1.1-0.9,2-2,2H91.8C90.7,93.2,89.8,92.3,89.8,91.2z M100,111.6 c-2,0-3.6-1-4.4-2.4c3.1,0,6,0,8.9,0C103.6,110.6,102,111.6,100,111.6z M117.1,111.6c-2,0-3.6-1-4.4-2.4c3.7,0,6.8,0,8.9,0 C120.7,110.6,119,111.6,117.1,111.6z"}),i.createElement(z,{color:l,colorInit:r,duration:a}))})(L||(L=w(["\n ","\n ","\n ","\n"])),e=>"small"===e.size&&"\n width: calc(0.5*176px);\n height: calc(0.5*135px);\n ",e=>"default"===e.size&&"\n width: calc(0.75*176px);\n height: calc(0.75*135px);\n ",e=>"large"===e.size&&"\n width: calc(1*176px);\n height: calc(1*135px);\n ");k.defaultProps={color:"#050505",size:"default",sparklesColor:"#35E3C3",sparklesColorInit:"#DBDBDB",sparklesDuration:"6s"};const y={brand:{main:"#ee0099",dark:"#000",light:"#fff"},commons:{dark:"#4A4A4A",main:"#aaa",light:"#eee"},fontFamily:"'Nunito Sans', sans-serif",body:{padding:60,background:{light:"#fff",main:"rgb(247,247,247)",dark:"#000"}},default:{color:{main:"#fff"},border:{main:"#ee0099"},background:{main:"#ee0099",hover:"#e2058a",focus:"#b4006c"}},dark:{color:{main:"#000",hover:"#4A4A4A",focus:"#9b9b9b"},border:{main:"#000",hover:"#4A4A4A",focus:"#9b9b9b"},background:{main:"none"}},light:{color:{main:"#fff",hover:"#9b9b9b",focus:"#4A4A4A"},border:{main:"#fff",hover:"#eee",focus:"#4A4A4A"},background:{main:"none"}},secondary:{color:{main:"#000",hover:"#424242",focus:"#9B9B9B"},border:{main:"transparent",hover:"transparent",focus:"transparent"},background:{main:"none"},disabled:{color:{main:"#AAAAAA",hover:"#AAAAAA",focus:"#AAAAAA"},background:{main:"none"}}},error:"#FF2B4E"};var H,V,N,Z,F,I,S;const B=d.p(H||(H=w(["\n font-family: ",";\n font-size: 16px;\n font-weight: ",";\n line-height: 25px;\n color: ",";\n text-align: ",";\n letter-spacing: normal;\n\n ","\n"])),e=>e.theme.fontFamily,e=>e.bold?"bold":"normal",e=>e.theme.commons.dark,e=>e.align,e=>e.uppercase&&"text-transform: uppercase;");B.defaultProps={theme:y,align:"left",uppercase:!1,bold:!1},B.displayName="Text";const P=e=>(e.defaultProps={theme:y},e);var A,R,T={H1:P(d(B.withComponent("h1"))(V||(V=w(["\n font-size: 60px;\n font-weight: 900;\n line-height: 1;\n color: #000;\n "])))),H2:P(d(B.withComponent("h2"))(N||(N=w(["\n font-size: 36px;\n font-weight: 900;\n line-height: 1.22;\n color: #000;\n "])))),H3:P(d(B.withComponent("h3"))(Z||(Z=w(["\n font-size: 21px;\n font-weight: 800;\n line-height: 0.95;\n margin-bottom: 12px;\n color: #000;\n "])))),H4:P(d(B.withComponent("h4"))(F||(F=w(["\n font-size: 18px;\n font-weight: 800;\n line-height: 1.39;\n margin-bottom: 5px;\n color: #000;\n "])))),H5:P(d(B.withComponent("h5"))(I||(I=w(["\n font-size: 13px;\n line-height: 18px;\n color: #424242;\n letter-spacing: 0.005em;\n font-weight: 800;\n "])))),H6:P(d(B.withComponent("h6"))(S||(S=w(["\n font-size: 11px;\n line-height: 2.27;\n color: #424242;\n "]))))};const O=d.div(A||(A=w(["\n position: absolute;\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100vh;\n align-items: center;\n justify-content: center;\n background: ",";\n"])),e=>e.background),j=d.div(R||(R=w(["\n text-align: ",";\n"])),e=>e.align),D=e=>{let{children:n,align:t,fullsize:l,background:r,message:a,messageComponent:o,...c}=e;return l?i.createElement(O,{background:r},i.createElement(k,Object.assign({},c)),a?i.createElement(o,null,a):n):i.createElement(j,{align:t},i.createElement(k,Object.assign({},c)),a?i.createElement(o,null,a):n)};var _;D.defaultProps={align:"center",fullsize:!1,background:"rgba(219,219,219,0.31)",color:"#050505",size:"default",sparklesColor:"#35E3C3",sparklesColorInit:"#DBDBDB",sparklesDuration:"6s",messageComponent:T.H3};const U=d.div(_||(_=w(["\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n & div {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 64px;\n height: 64px;\n margin: 8px;\n border: 8px solid ",";\n border-radius: 50%;\n animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: "," transparent transparent\n transparent;\n }\n & div:nth-child(1) {\n animation-delay: -0.45s;\n }\n & div:nth-child(2) {\n animation-delay: -0.3s;\n }\n & div:nth-child(3) {\n animation-delay: -0.15s;\n }\n @keyframes lds-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n"])),e=>{let{theme:n}=e;return n.commons.light},e=>{let{theme:n}=e;return n.commons.light}),q=e=>{let{theme:n}=e;return i.createElement(U,{theme:n},i.createElement("div",null),i.createElement("div",null),i.createElement("div",null),i.createElement("div",null))};var W;q.defaultProps={theme:y};const G=d(e=>{let{className:n,large:t}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n,width:t?260:85,viewBox:t?"0 0 200 100":"50 25 100 50"},i.createElement("path",{fill:"#FFF",d:"M44.948 52.505c0-11.641 9.21-20.568 20.568-20.568 11.357 0 20.567 8.927 20.567 20.568 0 11.639-9.21 20.568-20.567 20.568-11.358 0-20.568-8.929-20.568-20.568zm32.094 0c0-7.064-5.084-11.754-11.525-11.754-6.442 0-11.527 4.689-11.527 11.754 0 7.062 5.085 11.752 11.527 11.752 6.441 0 11.525-4.69 11.525-11.752zM122.243 32.727V72.28h-6.78l-15.255-21.473V72.28h-9.042V32.727h6.781l15.255 21.471V32.727h9.041zM164.056 52.505c0 11.188-8.307 19.775-19.212 19.775h-15.821V32.727h15.821c10.905 0 19.212 8.588 19.212 19.778zm-8.702 0c0-6.781-4.295-11.076-10.51-11.076h-6.78v22.15h6.78c6.215 0 10.51-4.295 10.51-11.074zM194 63.579v8.701h-24.862V32.727h24.579v8.702h-15.538v6.555h14.127v8.59h-14.127v7.006H194zM40.937 59.731c0 7.381-6.012 12.203-13.453 12.203H9.981V30.263h16.311c7.264 0 13.156 4.704 13.156 11.906 0 3.454-1.369 6.192-3.632 8.157 3.097 1.962 5.121 5.179 5.121 9.405zM19.505 39.193v7.381h6.787c2.145 0 3.633-1.546 3.633-3.691 0-2.142-1.43-3.69-3.633-3.69h-6.787zm11.908 19.824c0-2.322-1.549-3.988-3.93-3.988h-7.979v7.979h7.979c2.381-.001 3.93-1.669 3.93-3.991z"}),i.createElement("path",{fill:"#FFF",d:"M40.196 59.274c0 7.383-6.014 12.205-13.453 12.205H9.239V29.807h16.312c7.265 0 13.157 4.704 13.157 11.907 0 3.452-1.369 6.191-3.632 8.156 3.097 1.965 5.12 5.178 5.12 9.404zM18.765 38.738v7.382h6.786c2.144 0 3.632-1.548 3.632-3.691 0-2.144-1.428-3.691-3.632-3.691h-6.786zm11.906 19.824c0-2.322-1.548-3.988-3.928-3.988h-7.979v7.977h7.979c2.38-.001 3.928-1.669 3.928-3.989z"}),i.createElement("path",{fill:"#FFF",d:"M39.456 58.813c0 7.381-6.014 12.203-13.454 12.203H8.499V29.345h16.312c7.264 0 13.157 4.703 13.157 11.907 0 3.453-1.369 6.191-3.632 8.155 3.096 1.965 5.12 5.178 5.12 9.406zM18.024 38.275v7.382h6.786c2.144 0 3.632-1.548 3.632-3.691s-1.43-3.691-3.632-3.691h-6.786zM29.93 58.099c0-2.322-1.546-3.988-3.928-3.988h-7.978v7.975h7.978c2.382-.001 3.928-1.667 3.928-3.987z"}),i.createElement("path",{fill:"#FFF",d:"M41.679 60.188c0 7.381-6.014 12.201-13.454 12.201H10.722v-41.67h16.311c7.264 0 13.156 4.704 13.156 11.907 0 3.453-1.369 6.192-3.631 8.155 3.096 1.964 5.121 5.181 5.121 9.407zM20.247 39.649v7.382h6.785c2.145 0 3.633-1.548 3.633-3.69 0-2.143-1.43-3.691-3.633-3.691h-6.785zm11.906 19.823c0-2.322-1.548-3.988-3.929-3.988h-7.978v7.979h7.978c2.381-.001 3.929-1.669 3.929-3.991z"}),i.createElement("path",{fill:"#FFF",d:"M38.714 58.358c0 7.383-6.012 12.205-13.453 12.205H7.758V28.89H24.07c7.264 0 13.156 4.704 13.156 11.907 0 3.453-1.369 6.192-3.631 8.155 3.096 1.965 5.119 5.18 5.119 9.406zm-21.43-20.537v7.381h6.785c2.145 0 3.633-1.548 3.633-3.691s-1.43-3.69-3.633-3.69h-6.785zM29.19 57.644c0-2.322-1.549-3.99-3.93-3.99h-7.977v7.98h7.977c2.382 0 3.93-1.668 3.93-3.99z"}),i.createElement("path",{fill:"#FFF",d:"M37.974 57.903c0 7.383-6.012 12.203-13.453 12.203H7.019V28.435H23.33c7.264 0 13.156 4.704 13.156 11.907 0 3.453-1.369 6.192-3.631 8.157 3.095 1.963 5.119 5.178 5.119 9.404zM16.542 37.365v7.383h6.787c2.145 0 3.631-1.548 3.631-3.692s-1.428-3.691-3.631-3.691h-6.787zM28.448 57.19c0-2.324-1.547-3.99-3.928-3.99h-7.979v7.977h7.979c2.381 0 3.928-1.666 3.928-3.987z"}),i.createElement("path",{fill:"#FFF",d:"M37.233 57.45c0 7.381-6.014 12.201-13.454 12.201H6.276v-41.67h16.312c7.264 0 13.155 4.703 13.155 11.907 0 3.453-1.369 6.191-3.631 8.156 3.098 1.963 5.121 5.178 5.121 9.406zM15.802 36.912v7.381h6.787c2.143 0 3.631-1.548 3.631-3.691 0-2.142-1.429-3.69-3.631-3.69h-6.787zm11.906 19.821c0-2.32-1.548-3.988-3.929-3.988h-7.978v7.979h7.978c2.381 0 3.929-1.668 3.929-3.991z"}),i.createElement("path",{fill:"#FFF",d:"M6.276 69.651L11.072 73.065 11.462 71.479 6.704 68.45 6.28 68.206z"}),i.createElement("path",{d:"M6.276 55.521L11.462 58.956 11.462 57.267 6.704 54.235 6.28 53.995z"}),i.createElement("path",{d:"M6.276 52.792L11.462 56.022 11.462 50.519 6.704 47.488 6.28 47.246z"}),i.createElement("path",{d:"M11.854 30.988L6.276 27.981 8.501 27.981 14.479 30.988z"}),i.createElement("path",{d:"M42.419 60.458c0 7.381-6.014 12.201-13.455 12.201H11.462V30.988h16.312c7.262 0 13.154 4.704 13.154 11.906 0 3.453-1.368 6.192-3.631 8.157 3.099 1.964 5.122 5.178 5.122 9.407zM20.987 39.919V47.3h6.787c2.143 0 3.631-1.547 3.631-3.69 0-2.144-1.429-3.691-3.631-3.691h-6.787zm11.907 19.822c0-2.322-1.549-3.988-3.93-3.988h-7.977v7.977h7.977c2.381-.001 3.93-1.667 3.93-3.989z"}),i.createElement("path",{fill:"#FFF",d:"M28.964 73.104H11.019v-42.56h16.756c7.88 0 13.6 5.194 13.6 12.35 0 3.204-1.158 5.993-3.356 8.103 3.13 2.191 4.846 5.527 4.846 9.461-.002 7.326-5.847 12.646-13.901 12.646zm-17.057-.888h17.057c7.539 0 13.011-4.945 13.011-11.758 0-3.814-1.745-7.021-4.914-9.033l-.503-.318.449-.391c2.276-1.977 3.479-4.68 3.479-7.821 0-6.642-5.346-11.462-12.711-11.462H11.907v40.783zm17.057-8.041h-8.421V55.31h8.421c2.575 0 4.373 1.822 4.373 4.432s-1.798 4.433-4.373 4.433zm-7.532-.889h7.532c2.086 0 3.486-1.424 3.486-3.545 0-2.119-1.4-3.545-3.486-3.545h-7.532v7.09zm6.342-15.541h-7.231v-8.27h7.231c2.398 0 4.074 1.7 4.074 4.134.001 2.397-1.712 4.136-4.074 4.136zm-6.342-.888h6.343c1.877 0 3.188-1.336 3.188-3.247 0-1.942-1.281-3.247-3.188-3.247h-6.343v6.494z"}),i.createElement("g",null,i.createElement("path",{d:"M259.224 51.742c0-11.267 8.915-19.909 19.909-19.909 10.993 0 19.908 8.642 19.908 19.909 0 11.269-8.915 19.909-19.908 19.909-10.994 0-19.909-8.64-19.909-19.909zm31.066 0c0-6.837-4.923-11.376-11.157-11.376-6.235 0-11.158 4.54-11.158 11.376 0 6.838 4.923 11.377 11.158 11.377 6.234 0 11.157-4.539 11.157-11.377zM334.043 32.599v38.287h-6.563l-14.768-20.785v20.785h-8.752V32.599h6.565l14.765 20.784V32.599h8.753zM374.515 51.742c0 10.83-8.042 19.144-18.596 19.144h-15.316V32.599h15.316c10.554 0 18.596 8.315 18.596 19.143zm-8.423 0c0-6.562-4.155-10.72-10.173-10.72h-6.564v21.441h6.564c6.018 0 10.173-4.156 10.173-10.721zM403.5 62.463v8.423h-24.064V32.599h23.79v8.423h-15.041v6.344h13.675v8.315h-13.675v6.782H403.5zM255.342 58.738c0 7.146-5.82 11.812-13.023 11.812h-16.942V30.214h15.789c7.031 0 12.735 4.553 12.735 11.524 0 3.343-1.326 5.994-3.516 7.896 2.998 1.899 4.957 5.012 4.957 9.104zm-20.744-19.881v7.146h6.567c2.075 0 3.517-1.498 3.517-3.572 0-2.077-1.385-3.574-3.517-3.574h-6.567zm11.522 19.19c0-2.247-1.498-3.861-3.802-3.861h-7.721v7.721h7.721c2.304-.001 3.802-1.614 3.802-3.86z"}),i.createElement("path",{d:"M254.625 58.297c0 7.146-5.821 11.813-13.023 11.813H224.66V29.774h15.788c7.03 0 12.735 4.552 12.735 11.525 0 3.341-1.325 5.992-3.516 7.895 2.998 1.9 4.958 5.011 4.958 9.103zm-20.748-19.88v7.146h6.57c2.076 0 3.517-1.5 3.517-3.574s-1.383-3.573-3.517-3.573h-6.57zm11.526 19.188c0-2.247-1.497-3.86-3.802-3.86h-7.725v7.722h7.725c2.305 0 3.802-1.614 3.802-3.862z"}),i.createElement("path",{d:"M253.907 57.85c0 7.145-5.821 11.812-13.022 11.812h-16.941V29.325h15.788c7.03 0 12.734 4.553 12.734 11.526 0 3.34-1.325 5.993-3.515 7.894 2.997 1.901 4.956 5.012 4.956 9.105zm-20.746-19.88v7.146h6.57c2.074 0 3.515-1.5 3.515-3.573 0-2.074-1.383-3.573-3.515-3.573h-6.57zm11.527 19.188c0-2.249-1.498-3.861-3.803-3.861h-7.724v7.721h7.724c2.304 0 3.803-1.613 3.803-3.86z"}),i.createElement("path",{d:"M256.059 59.18c0 7.145-5.82 11.812-13.022 11.812h-16.943V30.654h15.789c7.031 0 12.733 4.554 12.733 11.526 0 3.341-1.323 5.993-3.513 7.894 2.997 1.903 4.956 5.015 4.956 9.106zM235.313 39.3v7.145h6.568c2.075 0 3.517-1.497 3.517-3.572 0-2.076-1.385-3.573-3.517-3.573h-6.568zm11.526 19.188c0-2.248-1.5-3.862-3.803-3.862h-7.723v7.722h7.723c2.303 0 3.803-1.614 3.803-3.86z"}),i.createElement("path",{d:"M253.19 57.41c0 7.146-5.821 11.812-13.023 11.812h-16.94V28.886h15.788c7.03 0 12.734 4.553 12.734 11.525 0 3.343-1.325 5.994-3.515 7.895 2.997 1.901 4.956 5.013 4.956 9.104zm-20.745-19.88v7.145h6.569c2.075 0 3.515-1.497 3.515-3.572 0-2.076-1.383-3.573-3.515-3.573h-6.569zm11.526 19.188c0-2.247-1.5-3.861-3.804-3.861h-7.722v7.723h7.722c2.304-.001 3.804-1.615 3.804-3.862z"}),i.createElement("path",{d:"M252.473 56.969c0 7.146-5.819 11.812-13.022 11.812h-16.942V28.444h15.789c7.032 0 12.734 4.553 12.734 11.525 0 3.342-1.325 5.994-3.514 7.895 2.996 1.903 4.955 5.014 4.955 9.105zm-20.744-19.881v7.146h6.568c2.076 0 3.516-1.498 3.516-3.573 0-2.074-1.383-3.574-3.516-3.574h-6.568zm11.524 19.189c0-2.247-1.498-3.86-3.803-3.86h-7.722v7.722h7.722c2.305 0 3.803-1.616 3.803-3.862z"}),i.createElement("path",{d:"M251.756 56.528c0 7.145-5.818 11.813-13.022 11.813h-16.942V28.005h15.789c7.031 0 12.734 4.552 12.734 11.525 0 3.342-1.326 5.993-3.516 7.895 2.997 1.901 4.957 5.012 4.957 9.103zm-20.745-19.88v7.146h6.569c2.076 0 3.515-1.497 3.515-3.573 0-2.074-1.383-3.573-3.515-3.573h-6.569zm11.524 19.189c0-2.247-1.497-3.86-3.802-3.86h-7.723v7.722h7.723c2.305-.001 3.802-1.615 3.802-3.862z"}),i.createElement("path",{d:"M221.791 68.342L226.433 71.647 226.811 70.11 222.205 67.176 221.794 66.942z"}),i.createElement("path",{fill:"#FFF",d:"M221.791 54.664L226.811 57.988 226.811 56.354 222.205 53.42 221.794 53.187z"}),i.createElement("path",{fill:"#FFF",d:"M221.791 52.021L226.811 55.15 226.811 49.821 222.205 46.888 221.794 46.652z"}),i.createElement("path",{fill:"#FFF",d:"M227.19 30.915L221.791 28.005 223.943 28.005 229.731 30.915z"}),i.createElement("path",{fill:"#FFF",d:"M256.774 59.44c0 7.145-5.819 11.812-13.022 11.812h-16.941V30.915h15.788c7.031 0 12.734 4.554 12.734 11.526 0 3.341-1.324 5.994-3.514 7.894 2.997 1.902 4.955 5.014 4.955 9.105zM236.03 39.561v7.146h6.568c2.076 0 3.516-1.5 3.516-3.574s-1.384-3.571-3.516-3.571h-6.568zm11.525 19.188c0-2.248-1.499-3.861-3.803-3.861h-7.722v7.722h7.722c2.304-.001 3.803-1.615 3.803-3.861z"}),i.createElement("path",{d:"M243.752 71.648h-17.338V30.52h16.185c7.608 0 13.131 5.013 13.131 11.921 0 3.107-1.127 5.808-3.269 7.847 3.042 2.112 4.709 5.345 4.709 9.152 0 7.074-5.642 12.208-13.418 12.208zm-16.546-.792h16.546c7.317 0 12.628-4.802 12.628-11.416 0-3.702-1.695-6.818-4.772-8.769l-.449-.285.4-.349c2.211-1.92 3.379-4.547 3.379-7.596 0-6.448-5.188-11.13-12.339-11.13h-15.393v39.545zm16.546-7.849h-8.117v-8.515h8.117c2.474 0 4.198 1.751 4.198 4.257 0 2.504-1.724 4.258-4.198 4.258zm-7.327-.793h7.327c2.038 0 3.408-1.393 3.408-3.465 0-2.073-1.37-3.465-3.408-3.465h-7.327v6.93zm6.174-15.112h-6.964v-7.937h6.964c2.303 0 3.911 1.632 3.911 3.968 0 2.3-1.646 3.969-3.911 3.969zm-6.174-.792h6.174c1.837 0 3.12-1.307 3.12-3.178 0-1.898-1.253-3.176-3.12-3.176h-6.174v6.354z"})))})(W||(W=w(["\n display: flex;\n ","\n"])),e=>!e.large&&"\n height: calc(1.5 * 15px);\n ");var X;G.defaultProps={large:!1};const Y=()=>i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"38",height:"56",fill:"none",viewBox:"0 0 38 56"},i.createElement("path",{fill:"#000",d:"M35.435 28.166c-.678-.665-1.865-1.148-2.823-1.148l-8.484-.002v9.216h8.484c.958 0 2.145-.483 2.823-1.148l1.891-1.858A2.23 2.23 0 0038 31.624c0-.606-.24-1.175-.675-1.601l-1.89-1.857zM24.129 22.174h8.483c.958 0 2.146-.483 2.823-1.149l1.891-1.858A2.23 2.23 0 0038 17.565a2.23 2.23 0 00-.675-1.601l-1.89-1.856c-.677-.665-1.865-1.148-2.823-1.148l-8.607-.002c.08.352.124.717.124 1.093v8.123zM19 11.2c-1.6 0-2.902 1.279-2.902 2.851V47.44c0 .604.498 1.093 1.113 1.093h3.578c.614 0 1.113-.49 1.113-1.093V14.05C21.902 12.48 20.6 11.2 19 11.2zM2.564 21.135l-1.89 1.858A2.23 2.23 0 000 24.595c0 .606.24 1.175.675 1.602l1.89 1.855c.677.665 1.864 1.148 2.823 1.148l8.484.002v-9.216H5.388c-.958 0-2.146.483-2.824 1.15zM25.65 5.6c-1.571 0-2.85-1.256-2.85-2.8 0-1.544 1.279-2.8 2.85-2.8 1.571 0 2.85 1.256 2.85 2.8 0 1.544-1.279 2.8-2.85 2.8zm0-3.733a.943.943 0 00-.95.933c0 .515.427.933.95.933.523 0 .95-.418.95-.933a.943.943 0 00-.95-.933z"}),i.createElement("path",{fill:"#000",d:"M34.2 11.2h-6.812c-2.007 0-3.638-1.603-3.638-3.573v-.32c0-1.97 1.631-3.574 3.638-3.574.97 0 1.883.372 2.571 1.047l4.914 4.827a.92.92 0 01.206 1.017.952.952 0 01-.879.576zm-6.812-5.6c-.96 0-1.738.765-1.738 1.706v.321c0 .941.779 1.706 1.738 1.706h4.519L28.617 6.1a1.744 1.744 0 00-1.23-.499z"}),i.createElement("path",{fill:"#000",d:"M26.6 10.267h1.9V14h-1.9v-3.733zM30.4 10.267h1.9V14h-1.9v-3.733zM21.09 2.8c0-.515.421-.933.94-.933H23c.52 0 .94.418.94.933 0 .515-.42.933-.94.933h-.97a.937.937 0 01-.94-.933z"}),i.createElement("path",{fill:"#000",d:"M27.55 2.8c0 1.03-.85 1.867-1.9 1.867-1.05 0-1.9-.836-1.9-1.867 0-1.03.85-1.867 1.9-1.867 1.05 0 1.9.836 1.9 1.867zM34.2 10.267h-6.813c-1.484 0-2.687-1.182-2.687-2.64v-.32c0-1.459 1.203-2.64 2.687-2.64.712 0 1.396.278 1.9.773l4.913 4.827zM5.503 53.268a2.742 2.742 0 012.752-2.731h20.638a2.742 2.742 0 012.752 2.731A2.742 2.742 0 0128.893 56H8.255a2.742 2.742 0 01-2.752-2.732z"})),$=d.div(X||(X=w(["\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n align-items: center;\n justify-content: center;\n\n "," {\n margin-top: 15px;\n font-weight: normal;\n }\n"])),T.H4),J=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" fill",viewBox:"4 4 15 15"},i.createElement("path",{fill:"#000",d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}))};J.displayName="Icon.ArrowDown";const K=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" fill",viewBox:"4 4 15 15"},i.createElement("path",{fill:"#000",d:"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"}))};K.displayName="Icon.ArrowLeft";const Q=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" fill",viewBox:"4 4 15 15"},i.createElement("path",{fill:"#000",d:"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"}))};Q.displayName="Icon.ArrowRight";const ee=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" fill",viewBox:"4 4 15 15"},i.createElement("path",{fill:"#000",d:"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"}))};ee.displayName="Icon.ArrowUp";const ne=e=>{let{className:n,color:t}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n,viewBox:"0 0 18 22"},i.createElement("g",{fill:"none",fillRule:"evenodd"},i.createElement("path",{fill:"none",d:"M-153-28h1440v130H-153z"}),i.createElement("path",{fill:"#FFF",d:"M16.632 15.045c0 3.478-2.88 5.749-6.48 5.749H1.8V1.135h7.848c3.456 0 6.336 2.2 6.336 5.607a4.852 4.852 0 0 1-1.728 3.832 5.238 5.238 0 0 1 2.376 4.471zM6.336 5.323V8.8h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521h-3.24v.07zm5.76 9.367a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H6.336v3.761h3.816a1.773 1.773 0 0 0 1.41-.473c.376-.357.571-.86.534-1.372z"}),i.createElement("path",{fill:"#FFF",d:"M16.272 14.832c0 3.478-2.88 5.749-6.48 5.749H1.44V.923h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.832 5.238 5.238 0 0 1 2.376 4.471zM5.976 5.11v3.477h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.647 1.647 0 0 0-.465-1.264 1.697 1.697 0 0 0-1.263-.51l-3.24.07zm5.76 9.367a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H5.976v3.762h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.357.571-.86.534-1.372z"}),i.createElement("path",{fill:"#FFF",d:"M15.912 14.62c0 3.477-2.88 5.748-6.48 5.748H1.08V.71h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.832 5.146 5.146 0 0 1 2.376 4.471zM5.616 4.896v3.477h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521h-3.24v.07zm5.76 9.368a1.795 1.795 0 0 0-.51-1.363 1.85 1.85 0 0 0-1.362-.554H5.616v3.762h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.357.571-.859.534-1.371z"}),i.createElement("path",{fill:"#FFF",d:"M16.992 15.258c0 3.477-2.88 5.748-6.48 5.748H2.16V1.348h7.848c3.456 0 6.336 2.2 6.336 5.607a4.852 4.852 0 0 1-1.728 3.832 5.238 5.238 0 0 1 2.376 4.471zM6.696 5.535v3.478h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521c0 .07-3.24.07-3.24.07zm5.76 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H6.696v3.761h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.356.571-.858.534-1.37z"}),i.createElement("path",{fill:"#FFF",d:"M15.552 14.406c0 3.478-2.88 5.749-6.48 5.749H.72V.497h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.832 5.146 5.146 0 0 1 2.376 4.471zM5.256 4.684V8.16h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521h-3.24v.07zm5.76 9.368a1.795 1.795 0 0 0-.51-1.363 1.85 1.85 0 0 0-1.362-.554H5.256v3.762h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.357.571-.859.534-1.371z"}),i.createElement("path",{fill:"#FFF",d:"M15.192 14.194c0 3.477-2.88 5.748-6.48 5.748H.36V.284h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.833 5.146 5.146 0 0 1 2.376 4.47zM4.896 4.47v3.477h3.24c.475.014.934-.172 1.263-.51.329-.337.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521l-3.24.071zm5.76 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H4.896v3.76h3.816a1.744 1.744 0 0 0 1.422-.461 1.69 1.69 0 0 0 .522-1.383z"}),i.createElement("path",{fill:"#FFF",d:"M14.832 13.98c0 3.478-2.88 5.749-6.48 5.749H0V0h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.833 5.364 5.364 0 0 1 2.376 4.542zM4.608 4.259v3.477h3.24c.475.014.934-.172 1.263-.51.329-.337.498-.796.465-1.264a1.682 1.682 0 0 0-.478-1.252 1.733 1.733 0 0 0-1.25-.522c0 .071-3.24.071-3.24.071zm5.688 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H4.608v3.761h3.816a1.721 1.721 0 0 0 1.381-.484c.363-.358.544-.858.491-1.361z"}),i.createElement("path",{fill:"#FFF",d:"M0 19.729l2.304 1.632.216-.71-2.304-1.49-.216-.07z"}),i.createElement("path",{fill:t||"#000",d:"M0 13.058l2.52 1.632v-.78L.216 12.49 0 12.348zM0 11.78l2.52 1.491v-2.555L.216 9.296 0 9.156zM2.664 1.49L0 0h1.08l2.88 1.49zM17.352 15.4c0 3.477-2.88 5.748-6.48 5.748H2.52V1.49h7.848c3.456 0 6.336 2.2 6.336 5.607a4.852 4.852 0 0 1-1.728 3.832 5.315 5.315 0 0 1 2.376 4.471zM7.056 5.677v3.478h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.647 1.647 0 0 0-.465-1.265 1.697 1.697 0 0 0-1.263-.51l-3.24.071zm5.688 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H7.056v3.761h3.816a1.721 1.721 0 0 0 1.381-.483c.363-.358.544-.858.491-1.362z"}),i.createElement("path",{fill:"#FCFAFA",d:"M10.872 21.361H2.304V1.277h7.992c3.744 0 6.48 2.484 6.48 5.82a5.11 5.11 0 0 1-1.656 3.832 5.278 5.278 0 0 1 2.304 4.471c.144 3.477-2.664 5.961-6.552 5.961zm-8.208-.355h8.208c3.6 0 6.264-2.341 6.264-5.606a4.81 4.81 0 0 0-2.376-4.258L14.544 11l.216-.142a4.704 4.704 0 0 0 1.656-3.69c0-3.123-2.592-5.465-6.12-5.465H2.664v19.303zm8.208-3.832H6.84v-4.187h4.032a2.138 2.138 0 0 1 1.767 2.094 2.138 2.138 0 0 1-1.767 2.093zm-3.6-.426h3.6c.457.016.898-.161 1.214-.486a1.57 1.57 0 0 0 .442-1.217 1.57 1.57 0 0 0-.442-1.216 1.618 1.618 0 0 0-1.214-.487h-3.6v3.406zm3.024-7.38H6.84V5.465h3.456a1.865 1.865 0 0 1 1.405.531c.37.366.566.869.539 1.385a1.83 1.83 0 0 1-.519 1.424c-.371.38-.89.585-1.425.563zm-3.024-.355h3.096c.42.023.83-.137 1.121-.437.29-.3.434-.711.391-1.124a1.464 1.464 0 0 0-.412-1.105 1.508 1.508 0 0 0-1.1-.457H7.272v3.123z"})))};ne.displayName="Icon.Bonde";const te=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"25",fill:"none",className:n+" fill",viewBox:"0 0 16 25"},i.createElement("path",{fill:"#000",stroke:"#fff",strokeWidth:"0.1",d:"M15.481 9.799h0a.731.731 0 00-.637-.374H9.388l.005-.054.71-8.529A.731.731 0 009.612.09h0a.73.73 0 00-.85.294h0L.168 13.665h0a.73.73 0 00.613 1.129h5.46l-.004.054-.716 9.315h0a.731.731 0 00.504.752L15.48 9.799zm0 0c.13.23.125.513-.013.739 0 0 0 0 0 0L6.874 24.6a.732.732 0 01-.849.315l9.456-15.116zM7.228 21.034l.093.03 6.172-10.1.047-.077H8.594a.731.731 0 01-.729-.791l.522-6.269-.092-.031-6.12 9.458-.05.077h4.906a.733.733 0 01.73.788h0l-.533 6.915z"}))};te.displayName="Icon.Bolt";const le=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"23",height:"30",fill:"none",className:n+" fill",viewBox:"0 0 23 30"},i.createElement("path",{fill:"#000",d:"M22.31 11.729c-.198-.296-.573-.479-.979-.479H13.57L14.59 1.016c.043-.429-.27-.827-.756-.965-.486-.14-1.026.016-1.305.377L.18 16.366a.807.807 0 00-.043.957c.196.302.575.49.986.49h7.769L7.862 28.99c-.04.433.28.831.774.965.114.03.23.045.346.045.382 0 .75-.164.958-.449l12.35-16.874a.807.807 0 00.02-.948zM10.459 25.246l.765-8.299a.85.85 0 00-.296-.71 1.238 1.238 0 00-.824-.3H3.187l8.794-11.35-.75 7.523c-.026.261.08.52.293.713.212.192.511.302.826.302h6.98l-8.871 12.12z"}))};le.displayName="Icon.BoltUnfilled";const re=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" fill",viewBox:"0 0 18 14",fill:"none"},i.createElement("path",{d:"M15.5581 14C15.5581 11.12 13.2151 8.77704 10.3351 8.77704H6.94517C4.06558 8.77704 1.72266 11.12 1.72266 14H3.06096C3.06096 11.8578 4.80344 10.1153 6.94517 10.1153H10.3351C12.4773 10.1153 14.2198 11.8578 14.2198 14H15.5581Z",fill:"black"}),i.createElement("path",{d:"M1.94727 6.18966C1.94727 7.29644 2.84795 8.19712 3.95472 8.19712H13.0516C14.1584 8.19712 15.0591 7.29644 15.0591 6.18966V2.00746C15.0591 0.900678 14.1584 0 13.0516 0H3.95472C2.84795 0 1.94727 0.900678 1.94727 2.00746V6.18966ZM3.28557 2.00746C3.28557 1.63853 3.5858 1.3383 3.95472 1.3383H13.0516C13.4206 1.3383 13.7208 1.63853 13.7208 2.00746V6.18966C13.7208 6.55859 13.4206 6.85881 13.0516 6.85881H3.95472C3.5858 6.85881 3.28557 6.55859 3.28557 6.18966V2.00746Z",fill:"black"}),i.createElement("path",{d:"M6.81682 2.51956H5.47852V5.67841H6.81682V2.51956Z",fill:"black"}),i.createElement("path",{d:"M11.7309 2.51956H10.3926V5.67841H11.7309V2.51956Z",fill:"black"}),i.createElement("path",{d:"M1.33831 2.58249H0V5.61464H1.33831V2.58249Z",fill:"black"}),i.createElement("path",{d:"M17.2797 2.58249H15.9414V5.61464H17.2797V2.58249Z",fill:"black"}))};re.displayName="Icon.Bot";const ae=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"13",height:"10",fill:"none",className:n+" fill",viewBox:"0 0 13 10"},i.createElement("path",{fill:"#50E3C2",fillRule:"evenodd",d:"M12.339 1.707L4.652 9.394 0 4.742l1.414-1.414 3.238 3.238L10.925.293l1.414 1.414z",clipRule:"evenodd"}))};ae.displayName="Icon.Check";const oe=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" stroke",viewBox:"0 0 10 10"},i.createElement("path",{fill:"#D8D8D8",fillRule:"evenodd",stroke:"#000",strokeLinecap:"square",strokeWidth:"1.5",d:"M5.337 5.013l3.324 3.325.107.107-.2.2-.107-.106-3.325-3.325L1.74 8.61l-.1.1-.214-.213.1-.1L4.922 5 1.604 1.682l-.107-.107.2-.201.107.107 3.319 3.318 3.273-3.273.1-.1.215.214-.1.1-3.274 3.273z"}))};oe.displayName="Icon.Times";const ce=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" fill",width:"28",height:"28",fill:"none",viewBox:"0 0 28 28"},i.createElement("path",{fill:"#000",d:"M17.754 5.123a8.81 8.81 0 00-8.682 7.119 5.55 5.55 0 00-2.388-.413c-2.93.13-5.252 2.627-5.252 5.687a5.373 5.373 0 005.36 5.362h11.374c4.645 0 8.444-3.777 8.444-8.444v-.065c0-.13.022-.239.022-.369 0-4.905-3.994-8.877-8.878-8.877zm7.076 9.116V14.564c-.065 3.625-3.039 6.534-6.663 6.534H6.792a3.585 3.585 0 01-3.582-3.582c0-2.062 1.607-3.82 3.56-3.907h.174c.846 0 1.628.283 2.3.782.261.195.608.239.912.108.304-.13.5-.434.521-.76a7.068 7.068 0 017.076-6.815c3.907 0 7.098 3.19 7.098 7.098 0 .065 0 .13-.022.217z"}))};ce.displayName="Icon.Cloud";const ie=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"14",height:"16",fill:"none",viewBox:"0 0 14 16",className:n+" fill"},i.createElement("path",{fill:"#000",fillRule:"evenodd",d:"M10.01 0H1.43C.644 0 0 .655 0 1.455v10.181h1.43V1.455h8.58V0zm2.146 2.91H4.29c-.786 0-1.43.654-1.43 1.454v10.181c0 .8.644 1.455 1.43 1.455h7.866c.786 0 1.43-.655 1.43-1.454V4.364c0-.8-.644-1.455-1.43-1.455zm0 11.636H4.29V4.364h7.866v10.181z",clipRule:"evenodd"}))};function se(e){let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",fill:"none",className:n+" fill",viewBox:"0 0 22 22"},i.createElement("path",{fill:"#000",d:"M10.81 21.581c5.953 0 10.79-4.837 10.79-10.79C21.6 4.837 16.763 0 10.81 0 4.855 0 0 4.837 0 10.79c0 5.954 4.856 10.791 10.81 10.791zm0-20.093c5.116 0 9.283 4.168 9.283 9.284 0 5.116-4.167 9.284-9.284 9.284-5.116 0-9.283-4.168-9.283-9.284 0-5.116 4.167-9.284 9.283-9.284z"}),i.createElement("path",{fill:"#000",d:"M12.652 13.602V9.35c0-.624-.507-1.13-1.13-1.13H9.44c-.623 0-1.13.506-1.13 1.13v1.07c0 .556.402 1.019.93 1.114v2.093a1.133 1.133 0 00-.93 1.113v1.07c0 .624.507 1.131 1.13 1.131h3.052c.624 0 1.131-.507 1.131-1.13v-1.07c0-.58-.423-1.06-.97-1.14zm-.26 2.108h-2.85v-.868h.184a.748.748 0 00.746-.747v-3.028a.748.748 0 00-.746-.746H9.54v-.87h1.88v4.624c0 .412.335.747.746.747h.225v.889zM10.872 7.851c.987 0 1.79-.802 1.79-1.79 0-.986-.803-1.789-1.79-1.789s-1.79.803-1.79 1.79.803 1.79 1.79 1.79zm0-2.347a.559.559 0 11-.002 1.117.559.559 0 01.002-1.117z"}))}function me(e){let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"21",height:"21",fill:"none",viewBox:"0 0 21 21",className:n+" fill"},i.createElement("g",{fill:"#000",clipPath:"url(#clip0)"},i.createElement("path",{d:"M21.018 10.075a10.245 10.245 0 00-3.174-7.209A10.244 10.244 0 0010.52.002a10.244 10.244 0 00-7.324 2.864A10.245 10.245 0 00.02 10.075v.017a9.91 9.91 0 003.294 7.327v2.539A1.04 1.04 0 004.344 21c.19 0 .378-.053.543-.156l2.04-1.275a10.78 10.78 0 003.572.607h.015l.202.002c2.67 0 5.195-1.013 7.128-2.866a10.245 10.245 0 003.174-7.209v-.028zm-4.026 6.347a9.023 9.023 0 01-6.46 2.523h-.014a9.588 9.588 0 01-3.319-.587.896.896 0 00-.788.081l-1.865 1.165V17.27a.901.901 0 00-.31-.68 8.677 8.677 0 01-2.984-6.495 9.02 9.02 0 012.795-6.338 9.027 9.027 0 016.46-2.523h.025a9.021 9.021 0 016.46 2.523 9.02 9.02 0 012.794 6.333 9.02 9.02 0 01-2.794 6.333z"}),i.createElement("path",{d:"M12.213 12.896V8.645c0-.624-.508-1.131-1.131-1.131H9c-.624 0-1.131.507-1.131 1.13v1.07c0 .557.402 1.02.931 1.114v2.094a1.133 1.133 0 00-.931 1.113v1.07c0 .624.507 1.131 1.13 1.131h3.053c.623 0 1.13-.507 1.13-1.131v-1.07c0-.58-.422-1.06-.97-1.14zm-.261 2.108h-2.85v-.868h.184a.748.748 0 00.747-.747V10.36a.748.748 0 00-.747-.747h-.184v-.868h1.879v4.623c0 .412.335.747.747.747h.224v.888zM10.432 7.145c.987 0 1.79-.802 1.79-1.79 0-.986-.803-1.79-1.79-1.79-.987.001-1.79.804-1.79 1.79 0 .988.803 1.79 1.79 1.79zm0-2.347a.559.559 0 11-.001 1.117.559.559 0 01.001-1.117z"})),i.createElement("defs",null,i.createElement("clipPath",{id:"clip0"},i.createElement("path",{fill:"#fff",d:"M0 0H20.959V21H0z"}))))}ie.displayName="Icon.Copy",se.displayName="Icon.Info",me.displayName="Icon.InfoMsg";const de=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" fill",fill:"none",viewBox:"0 0 25 18"},i.createElement("path",{fill:"#000",d:"M24.3 17.858c0-3.508-2.845-6.362-6.342-6.362h-4.116c-3.497 0-6.342 2.854-6.342 6.362h1.625c0-2.61 2.116-4.732 4.717-4.732h4.116c2.601 0 4.717 2.123 4.717 4.732H24.3z"}),i.createElement("path",{fill:"#000",fillRule:"evenodd",d:"M15.906 1.542a3.758 3.758 0 00-3.752 3.763 3.758 3.758 0 003.752 3.764 3.758 3.758 0 003.751-3.764 3.758 3.758 0 00-3.751-3.763zm-5.29 3.763c0-2.93 2.369-5.305 5.29-5.305 2.92 0 5.289 2.375 5.289 5.305 0 2.93-2.369 5.306-5.29 5.306-2.92 0-5.288-2.376-5.288-5.306z",clipRule:"evenodd"}),i.createElement("path",{fill:"#000",d:"M9.815 3.421a4.236 4.236 0 00-2.119-.563c-2.327 0-4.213 1.862-4.213 4.159 0 2.297 1.886 4.16 4.213 4.16 1.34 0 2.532-.617 3.304-1.579a4.702 4.702 0 01-.884-.849 2.997 2.997 0 01-2.42 1.218c-1.65 0-2.989-1.32-2.989-2.95 0-1.63 1.338-2.95 2.99-2.95.592 0 1.144.17 1.609.464a4.59 4.59 0 01.51-1.11zM9.538 11.875a5.092 5.092 0 00-.207-.005h-3.28C3.267 11.87 1 14.108 1 16.858h1.295c0-2.046 1.685-3.71 3.757-3.71h1.74a5.612 5.612 0 011.746-1.273z"}),i.createElement("path",{fill:"#000",fillRule:"evenodd",d:"M7.696 2.958c-2.273 0-4.113 1.818-4.113 4.059 0 2.24 1.84 4.06 4.113 4.06 1.27 0 2.406-.57 3.16-1.462a4.808 4.808 0 01-.738-.705 3.098 3.098 0 01-2.422 1.158c-1.705 0-3.089-1.365-3.089-3.051 0-1.686 1.384-3.05 3.09-3.05.565 0 1.096.15 1.552.413a4.69 4.69 0 01.426-.922 4.137 4.137 0 00-1.979-.5zM3.383 7.017c0-2.353 1.932-4.26 4.313-4.26.79 0 1.532.21 2.169.578l.09.052-.055.088c-.212.335-.38.699-.499 1.085l-.038.125-.11-.07a2.903 2.903 0 00-1.557-.449c-1.597 0-2.889 1.278-2.889 2.851s1.292 2.85 2.89 2.85c.961 0 1.813-.464 2.338-1.177l.078-.105.081.102a4.6 4.6 0 00.865.83l.084.062-.065.082a4.326 4.326 0 01-3.382 1.615c-2.38 0-4.313-1.906-4.313-4.259zM.9 16.857c0-2.806 2.312-5.087 5.152-5.087H9.33c.07 0 .141.002.211.005l.039.19a5.511 5.511 0 00-1.715 1.251l-.03.032H6.052c-2.018 0-3.657 1.62-3.657 3.61v.1H.9v-.1zm.201-.1h1.095c.054-2.055 1.764-3.709 3.856-3.709h1.676c.39-.422.842-.786 1.344-1.078h-3.02c-2.698 0-4.897 2.14-4.95 4.788z",clipRule:"evenodd"}),i.createElement("path",{fill:"#000",d:"M24.3 17.858c0-3.508-2.845-6.362-6.342-6.362h-4.116c-3.497 0-6.342 2.854-6.342 6.362h1.625c0-2.61 2.116-4.732 4.717-4.732h4.116c2.601 0 4.717 2.123 4.717 4.732H24.3z"}),i.createElement("path",{fill:"#000",d:"M9.815 3.421a4.236 4.236 0 00-2.119-.563c-2.327 0-4.213 1.862-4.213 4.159 0 2.297 1.886 4.16 4.213 4.16 1.34 0 2.532-.617 3.304-1.579a4.702 4.702 0 01-.884-.849 2.997 2.997 0 01-2.42 1.218c-1.65 0-2.989-1.32-2.989-2.95 0-1.63 1.338-2.95 2.989-2.95.593 0 1.145.17 1.61.464a4.59 4.59 0 01.51-1.11zM9.538 11.875a5.093 5.093 0 00-.207-.005h-3.28C3.267 11.87 1 14.108 1 16.858h1.295c0-2.046 1.685-3.71 3.757-3.71h1.74a5.612 5.612 0 011.746-1.273z"}))};de.displayName="Icon.Network";const he=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" fill",width:"30",height:"26",fill:"none",viewBox:"0 0 30 26"},i.createElement("path",{fill:"#000",fillRule:"evenodd",d:"M1.5 1.5v15h19v-15h-19zM1 0a1 1 0 00-1 1v16a1 1 0 001 1h20a1 1 0 001-1V1a1 1 0 00-1-1H1z",clipRule:"evenodd"}),i.createElement("path",{fill:"#000",fillRule:"evenodd",d:"M22 6H0V4.5h22V6z",clipRule:"evenodd"}),i.createElement("path",{fill:"#000",d:"M19 2.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0z"}),i.createElement("path",{fill:"#000",stroke:"#fff",strokeLinecap:"square",strokeWidth:"2",d:"M20.476 10.017h-1v5.375h-5.458v3.62h5.458v5.571H23.116v-5.57h5.468v-3.62h-5.467v-5.376h-2.641z"}))};function pe(e){let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"18",height:"18",fill:"none",className:n+" fill",viewBox:"0 0 18 18"},i.createElement("path",{fill:"#000",d:"M.06 13.512L.042 17.14c0 .204.074.409.223.558a.745.745 0 00.54.223l3.609-.019c.204 0 .39-.074.54-.223L17.418 5.214a.786.786 0 000-1.098L13.846.506a.786.786 0 00-1.097 0L10.256 3.02.284 12.972a.828.828 0 00-.224.54zM13.307 2.144l2.511 2.512-1.413 1.414-2.512-2.512 1.414-1.414zM1.605 13.847l9.19-9.191 2.512 2.511-9.19 9.173-2.531.018.019-2.511z"}))}he.displayName="Icon.New",pe.displayName="Icon.Pencil";const ue=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" stroke",viewBox:"0 0 12 12"},i.createElement("path",{fill:"#D8D8D8",fillRule:"evenodd",stroke:"#000",strokeLinecap:"square",strokeWidth:"1.5",d:"M6.147 5.771H11v.284H6.147V11h-.302V6.055H1v-.284h4.845V1h.302v4.772z"}))};ue.displayName="Icon.Plus";const fe=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" stroke",fill:"none",viewBox:"0 0 18 18"},i.createElement("path",{fill:"#000",d:"M12.13 11.75A6.988 6.988 0 0014 7c0-3.854-3.136-7-7-7S0 3.146 0 7c0 3.853 3.135 6.999 7 6.999 1.572 0 3.019-.518 4.19-1.394l5.205 5.205c.127.127.285.19.444.19a.607.607 0 00.443-.19.644.644 0 000-.897L12.13 11.75zM1.267 7a5.738 5.738 0 015.732-5.733 5.738 5.738 0 015.733 5.732 5.731 5.731 0 01-5.733 5.733 5.738 5.738 0 01-5.732-5.733z"}))};fe.displayName="Icon.Search";const ge=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" fill",viewBox:"0 0 22 21",fill:"none"},i.createElement("path",{d:"M19.9718 8.14773C19.6525 8.09994 19.3245 8.05352 18.9942 8.00945C18.8278 7.45594 18.6055 6.9193 18.3312 6.40963C18.5333 6.14526 18.7325 5.88042 18.925 5.62025C19.3525 5.0422 19.2906 4.22239 18.7814 3.71336L17.5053 2.43747C16.996 1.92812 16.1762 1.86637 15.5983 2.29395C15.3373 2.48712 15.0725 2.68626 14.809 2.88766C14.2994 2.61337 13.7628 2.39106 13.2091 2.22453C13.165 1.89422 13.1187 1.56624 13.0709 1.24699C12.9646 0.536154 12.3413 0 11.6211 0H9.81648C9.09628 0 8.47295 0.536154 8.36664 1.24691C8.31893 1.566 8.2726 1.89405 8.22844 2.22445C7.67477 2.39098 7.13813 2.61328 6.62862 2.88758C6.36522 2.6861 6.1003 2.48687 5.83932 2.29387C5.26128 1.86629 4.44146 1.92804 3.93235 2.43731L2.65646 3.71312C2.14711 4.22231 2.0852 5.0422 2.51278 5.62033C2.70514 5.88042 2.90436 6.14534 3.10641 6.40963C2.83228 6.91922 2.60989 7.45578 2.44336 8.00945C2.11313 8.05361 1.78507 8.09994 1.46582 8.14773C0.754903 8.25412 0.21875 8.87737 0.21875 9.59765V11.4022C0.21875 12.1224 0.754743 12.7457 1.46566 12.8521C1.78499 12.8999 2.11297 12.9463 2.44328 12.9904C2.60981 13.544 2.83211 14.0805 3.10633 14.5902C2.90444 14.8543 2.70522 15.1191 2.51246 15.3796C2.08512 15.9575 2.14687 16.7774 2.65614 17.2864L3.93219 18.5624C4.44138 19.0718 5.26119 19.1335 5.83916 18.706C6.10022 18.513 6.36498 18.3137 6.62846 18.1123C7.13822 18.3866 7.67485 18.6089 8.22836 18.7754C8.27236 19.1056 8.31877 19.4337 8.36656 19.753C8.47295 20.4638 9.09628 21 9.81648 21H11.6211C12.3413 21 12.9646 20.464 13.0709 19.7529C13.1186 19.4336 13.165 19.1056 13.2091 18.7753C13.7627 18.6089 14.2993 18.3865 14.809 18.1122C15.0724 18.3137 15.3373 18.5129 15.5983 18.706C16.1761 19.1336 16.9961 19.0718 17.5052 18.5625L18.7813 17.2866C19.2905 16.7774 19.3524 15.9576 18.9248 15.3795C18.7322 15.1191 18.533 14.8542 18.3312 14.5903C18.6053 14.0807 18.8277 13.5442 18.9942 12.9905C19.3244 12.9463 19.6525 12.9 19.9718 12.8522C20.6827 12.7458 21.2188 12.1225 21.2188 11.4023V9.59773C21.2187 8.87745 20.6827 8.25412 19.9718 8.14773ZM19.4613 11.1511C19.1713 11.1931 18.8755 11.234 18.5787 11.2726C17.9916 11.3492 17.511 11.7659 17.3545 12.334C17.2046 12.878 16.9871 13.403 16.708 13.8942C16.4165 14.4071 16.4615 15.0417 16.8226 15.5112C17.0046 15.7479 17.1852 15.9861 17.3609 16.2215L16.4403 17.1421C16.2042 16.9659 15.966 16.7854 15.7298 16.6038C15.2605 16.2426 14.6257 16.1979 14.1128 16.4891C13.6215 16.7682 13.0965 16.9858 12.5529 17.1357C11.9844 17.2923 11.5677 17.7729 11.4914 18.3598C11.4527 18.6566 11.4119 18.9526 11.3698 19.2425H10.0678C10.0257 18.9526 9.98495 18.6567 9.9462 18.3602C9.8696 17.773 9.45299 17.2924 8.88471 17.1358C8.34089 16.9859 7.81612 16.7684 7.3246 16.4893C6.8117 16.1979 6.1769 16.2427 5.70767 16.6038C5.47139 16.7855 5.23334 16.9659 4.99707 17.1421L4.07652 16.2215C4.25225 15.9859 4.43275 15.7478 4.61502 15.5109C4.97584 15.0415 5.02081 14.4069 4.7294 13.8941C4.45035 13.4028 4.2328 12.8778 4.0829 12.334C3.92638 11.7657 3.44584 11.3491 2.85875 11.2725C2.56194 11.2337 2.26601 11.193 1.97606 11.1508V9.84894C2.26601 9.80688 2.56186 9.76604 2.85867 9.72737C3.44576 9.65077 3.92638 9.23408 4.08282 8.66596C4.23272 8.12206 4.45018 7.59712 4.72932 7.10577C5.0208 6.59295 4.97584 5.95823 4.61494 5.48883C4.43259 5.25184 4.25209 5.01371 4.07652 4.77848L4.99707 3.85785C5.23318 4.03407 5.47131 4.21456 5.70742 4.3961C6.17658 4.75733 6.81129 4.80238 7.3246 4.51089C7.81579 4.23184 8.34081 4.01429 8.88455 3.86431C9.45299 3.70771 9.86968 3.22709 9.94604 2.64017C9.98479 2.34335 10.0256 2.04751 10.0677 1.75755H11.3697C11.4118 2.04743 11.4526 2.34327 11.4912 2.63992C11.5678 3.22709 11.9845 3.70771 12.5527 3.86423C13.0966 4.01413 13.6216 4.23176 14.1129 4.51081C14.6259 4.8023 15.2606 4.75701 15.7298 4.39619C15.966 4.21456 16.2041 4.03407 16.4403 3.85785L17.3609 4.77848C17.1853 5.01379 17.0048 5.252 16.8225 5.48908C16.4616 5.95839 16.4167 6.59303 16.7079 7.10585C16.987 7.59729 17.2045 8.1223 17.3544 8.66604C17.511 9.23432 17.9915 9.65093 18.5786 9.72753C18.8754 9.76628 19.1713 9.80704 19.4613 9.84918V11.1511Z",fill:"#000"}),i.createElement("path",{d:"M10.7248 6.29998C8.40559 6.29998 6.5187 8.18679 6.5187 10.5061C6.5187 12.8254 8.4055 14.7122 10.7248 14.7122C13.0441 14.7122 14.9309 12.8254 14.9309 10.5061C14.9309 8.18679 13.0441 6.29998 10.7248 6.29998ZM10.7248 12.8425C9.43661 12.8425 8.38837 11.7943 8.38837 10.506C8.38837 9.21762 9.43651 8.16956 10.7248 8.16956C12.013 8.16956 13.0611 9.21771 13.0612 10.506C13.0612 11.7943 12.013 12.8425 10.7248 12.8425Z",fill:"#000"}))};function ve(e){let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"18",height:"18",fill:"none",className:n+" fill",viewBox:"0 0 18 18"},i.createElement("path",{fill:"#000",d:"M13.556 3.886L12.6 14.784H5.59L4.632 3.886l-1.212.106.974 11.096c.051.511.495.912 1.01.912h7.379c.515 0 .959-.4 1.011-.92l.973-11.088-1.212-.106z"}),i.createElement("path",{fill:"#000",d:"M11.324 1H6.865c-.559 0-1.014.455-1.014 1.014v1.925h1.217V2.216h4.054V3.94h1.216V2.014c0-.56-.455-1.014-1.014-1.014z"}),i.createElement("path",{fill:"#000",d:"M15.581 3.331H2.608a.608.608 0 100 1.216h12.973a.608.608 0 100-1.216z"}))}ge.displayName="Icon.Settings",ve.displayName="Icon.Trash";const Ce=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"30",height:"23",fill:"none",className:n+" fill",viewBox:"0 0 30 23"},i.createElement("path",{fill:"#000",d:"M29.718 15.43a2.022 2.022 0 000-2.06l-1.257-2.09a.065.065 0 010-.067l1.257-2.09a2.021 2.021 0 000-2.06l-1.257-2.09a.065.065 0 010-.067l1.002-1.666c.288-.48.306-1.086.045-1.582A1.473 1.473 0 0028.21.853H1.79c-.54 0-1.037.308-1.298.804A1.624 1.624 0 00.537 3.24l1.002 1.667a.065.065 0 010 .066L.282 7.063a2.021 2.021 0 000 2.061l1.257 2.09a.065.065 0 010 .067L.282 13.37a2.02 2.02 0 000 2.06l1.257 2.09a.065.065 0 010 .066L.537 19.254a1.624 1.624 0 00-.045 1.582c.26.497.758.805 1.298.805h26.42c.54 0 1.037-.308 1.298-.805a1.623 1.623 0 00-.045-1.582l-1.002-1.667a.065.065 0 010-.067l1.257-2.09zm-1.504-.997l-1.257 2.09a2.02 2.02 0 000 2.06l.716 1.19h-6.37v-.061c0-.516-.399-.934-.89-.934-.49 0-.889.418-.889.934v.062H2.327l.716-1.19a2.021 2.021 0 000-2.06l-1.257-2.09a.065.065 0 010-.066l1.257-2.09a2.02 2.02 0 000-2.061l-1.257-2.09a.065.065 0 010-.067l1.257-2.09a2.022 2.022 0 000-2.06l-.716-1.19h17.197v.062c0 .516.398.934.89.934.49 0 .888-.418.888-.934V2.72h6.37l-.715 1.189a2.02 2.02 0 000 2.06l1.257 2.09a.065.065 0 010 .067l-1.257 2.09a2.02 2.02 0 000 2.06l1.257 2.09a.065.065 0 010 .067z"}),i.createElement("path",{fill:"#000",d:"M20.413 5.67c-.49 0-.889.42-.889.935v.546c0 .515.398.933.89.933.49 0 .888-.418.888-.933v-.546c0-.516-.398-.934-.889-.934zM20.413 14.409c-.49 0-.889.418-.889.933v.547c0 .515.398.933.89.933.49 0 .888-.418.888-.933v-.547c0-.515-.398-.933-.889-.933zM20.413 10.04c-.49 0-.889.418-.889.934v.546c0 .515.398.933.89.933.49 0 .888-.418.888-.933v-.546c0-.516-.398-.934-.889-.934zM11.992 10.184c-1.218-.53-1.424-.805-1.424-1.22 0-.382.269-.789 1.023-.789.79 0 1.288.3 1.501.426.105.064.23.075.345.032a.424.424 0 00.248-.255l.338-.939a.444.444 0 00-.178-.529 3.74 3.74 0 00-1.556-.527v-.975a.425.425 0 00-.414-.435h-.84a.425.425 0 00-.414.435v1.085c-1.263.351-2.046 1.36-2.046 2.642 0 .714.238 1.3.727 1.794.39.394.952.733 1.767 1.069 1.118.476 1.272.901 1.272 1.29 0 .573-.481.959-1.198.959a3.07 3.07 0 01-1.72-.539.396.396 0 00-.36-.05.422.422 0 00-.26.266l-.325.952a.45.45 0 00.149.5c.462.347 1.169.6 1.9.68v1.03c0 .24.185.434.413.434h.854a.425.425 0 00.414-.435v-1.128c1.301-.367 2.14-1.449 2.14-2.769 0-.732-.206-1.334-.63-1.84-.38-.453-.93-.824-1.726-1.164z"}))};Ce.displayName="Icon.Ticket";const be=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"30",height:"23",fill:"none",className:n+" fill",viewBox:"0 0 30 23"},i.createElement("g",{fill:"#000",clipPath:"url(#clip0)"},i.createElement("path",{d:"M11.77 9.711c-1.196-.533-1.398-.81-1.398-1.228 0-.384.264-.794 1.003-.794.776 0 1.265.3 1.474.429a.38.38 0 00.338.032.423.423 0 00.243-.257l.332-.945a.453.453 0 00-.174-.533 3.608 3.608 0 00-1.527-.531v-.982c0-.241-.183-.438-.407-.438h-.824c-.224 0-.406.197-.406.438v1.093c-1.24.354-2.008 1.369-2.008 2.66 0 .72.233 1.31.713 1.807.383.396.934.739 1.734 1.076 1.098.48 1.249.908 1.249 1.3 0 .577-.473.965-1.176.965a2.96 2.96 0 01-1.689-.542.38.38 0 00-.353-.052.42.42 0 00-.255.268l-.32.96a.46.46 0 00.147.504c.454.349 1.147.603 1.865.685v1.036c0 .241.182.437.406.437h.837c.225 0 .407-.196.407-.438v-1.136c1.277-.37 2.1-1.459 2.1-2.788 0-.738-.202-1.344-.618-1.853-.374-.457-.912-.83-1.693-1.173zM28.656 18.399c-.715 1.332-1.867 2.358-3.245 2.85h2.277c.53 0 1.018-.31 1.274-.81s.239-1.11-.044-1.594l-.262-.446z"}),i.createElement("path",{d:"M21.7 21.249H1.757c-.53 0-1.018-.31-1.274-.81s-.24-1.111.044-1.594l.984-1.678a.067.067 0 000-.067L.277 14.995a2.08 2.08 0 010-2.075l1.234-2.104a.068.068 0 000-.067L.277 8.644a2.081 2.081 0 010-2.075l1.234-2.105a.067.067 0 000-.067L.527 2.718a1.672 1.672 0 01-.044-1.593c.256-.5.744-.81 1.273-.81h25.932c.53 0 1.018.31 1.274.81.255.5.239 1.11-.044 1.593l-.985 1.679a.066.066 0 000 .067l1.234 2.104c.37.63.37 1.445 0 2.075l-1.234 2.105a.067.067 0 000 .067l.53.902a6.124 6.124 0 00-1.988-2.002l1.217-2.076a.067.067 0 000-.067l-1.234-2.104a2.08 2.08 0 010-2.075l.702-1.198h-6.252v.063c0 .519-.39.94-.873.94-.482 0-.872-.421-.872-.94v-.063H2.284l.703 1.198c.37.63.37 1.445 0 2.075L1.753 7.573a.067.067 0 000 .067l1.234 2.105c.37.63.37 1.444 0 2.075l-1.234 2.104a.067.067 0 000 .067l1.234 2.105c.37.63.37 1.445 0 2.075l-.703 1.197h16.811A5.892 5.892 0 0021.7 21.25zM28.61 11.97c.407.73.68 1.555.786 2.437.11-.5.033-1.04-.229-1.488l-.556-.95z"}),i.createElement("path",{d:"M27.168 9.678c-1.373-1.111-3.066-1.58-4.767-1.32l-.933.142 1.285-1.847-.953-.77-2.503 3.598 3.295 2.714.724-1.02-1.703-1.401.956-.146c2.86-.438 5.517 1.714 5.923 4.795.406 3.082-1.591 5.944-4.451 6.382-2.86.437-5.518-1.715-5.924-4.796l-.084-.635-1.178.18.083.635c.242 1.832 1.13 3.453 2.504 4.565 1.373 1.111 3.065 1.58 4.766 1.32 1.7-.26 3.205-1.217 4.237-2.696 1.032-1.48 1.467-3.303 1.226-5.135-.241-1.832-1.13-3.453-2.503-4.565z"}),i.createElement("path",{fillRule:"evenodd",d:"M21.765 5.617L23 6.615l-1.135 1.632.512-.078c1.747-.267 3.486.215 4.897 1.357 1.41 1.142 2.324 2.808 2.572 4.69.248 1.882-.2 3.757-1.26 5.276-1.06 1.52-2.606 2.504-4.353 2.771-1.747.267-3.487-.215-4.898-1.357-1.41-1.142-2.324-2.808-2.572-4.69l-.108-.824 1.529-.233.108.823c.392 2.978 2.96 5.056 5.724 4.634 2.764-.422 4.693-3.189 4.301-6.166-.392-2.977-2.96-5.056-5.724-4.634l-.537.082 1.507 1.242-.938 1.321-3.574-2.944 2.714-3.9zm.07.533l-2.291 3.294 3.015 2.484.51-.717L21.17 9.65l1.373-.21c2.957-.452 5.703 1.772 6.123 4.957.42 3.186-1.645 6.145-4.602 6.597-2.957.452-5.703-1.772-6.123-4.957l-.058-.447-.83.127.06.446c.234 1.782 1.098 3.358 2.434 4.44 1.335 1.081 2.98 1.537 4.635 1.284 1.654-.253 3.117-1.184 4.12-2.623 1.004-1.438 1.428-3.211 1.193-4.993-.235-1.782-1.099-3.358-2.435-4.44-1.335-1.08-2.98-1.537-4.635-1.284l-1.355.207 1.435-2.062-.67-.54z",clipRule:"evenodd"})),i.createElement("defs",null,i.createElement("clipPath",{id:"clip0"},i.createElement("path",{fill:"#fff",d:"M0 0H30V22.5H0z"}))))};be.displayName="Icon.TicketRecurring";const xe=e=>{let{className:n}=e;return i.createElement("svg",{className:n+" fill",width:"17",height:"18",viewBox:"0 0 17 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i.createElement("path",{d:"M16.8001 18C16.8001 14.492 13.9551 11.6382 10.458 11.6382H6.34162C2.84498 11.6382 0 14.492 0 18H1.62509C1.62509 15.3908 3.74095 13.2684 6.34162 13.2684H10.458C13.0592 13.2684 15.175 15.3908 15.175 18H16.8001Z",fill:"black"}),i.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.40559 1.68385C6.33344 1.68385 4.65364 3.36885 4.65364 5.44741C4.65364 7.52596 6.33344 9.21097 8.40559 9.21097C10.4777 9.21097 12.1575 7.52596 12.1575 5.44741C12.1575 3.36885 10.4777 1.68385 8.40559 1.68385ZM3.1167 5.44741C3.1167 2.51739 5.48462 0.142151 8.40559 0.142151C11.3266 0.142151 13.6945 2.51739 13.6945 5.44741C13.6945 8.37742 11.3266 10.7527 8.40559 10.7527C5.48462 10.7527 3.1167 8.37742 3.1167 5.44741Z",fill:"black"}))};xe.displayName="Icon.User";const Ee=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" fill",viewBox:"0 0 18 14",fill:"none"},i.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.44792 1.16667V12.8333H16.2257V1.16667H1.44792ZM1.05903 0C0.629473 0 0.28125 0.348223 0.28125 0.777778V13.2222C0.28125 13.6518 0.629473 14 1.05903 14H16.6146C17.0441 14 17.3924 13.6518 17.3924 13.2222V0.777778C17.3924 0.348223 17.0441 0 16.6146 0H1.05903Z",fill:"black"}),i.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.3924 4.66669H0.28125V3.50002H17.3924V4.66669Z",fill:"black"}),i.createElement("path",{d:"M15.0592 2.13888C15.0592 2.46104 14.7981 2.72221 14.4759 2.72221C14.1537 2.72221 13.8926 2.46104 13.8926 2.13888C13.8926 1.81671 14.1537 1.55554 14.4759 1.55554C14.7981 1.55554 15.0592 1.81671 15.0592 2.13888Z",fill:"black"}))};Ee.displayName="Icon.Window";const we=e=>{let{className:n}=e;return i.createElement("svg",{className:n+" fill",width:"18",height:"22",viewBox:"0 0 18 22",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i.createElement("path",{d:"M15.9074 3.75557C14.2585 1.36903 11.6451 0 8.73789 0C5.8307 0 3.21731 1.36903 1.56833 3.75557C-0.0725558 6.13005 -0.451442 9.13621 0.55279 11.7921C0.821398 12.5174 1.24838 13.2221 1.81884 13.8824L8.16291 21.3341C8.30639 21.5028 8.51661 21.6 8.73789 21.6C8.95916 21.6 9.16938 21.5028 9.31286 21.3341L15.6552 13.8844C16.2282 13.2203 16.6546 12.5164 16.921 11.7969C17.9272 9.13621 17.5483 6.13005 15.9074 3.75557ZM15.5067 11.268C15.3013 11.8231 14.9659 12.3719 14.5105 12.8998L14.5069 12.9038L8.73789 19.6799L2.96528 12.8996C2.51012 12.3722 2.17477 11.8234 1.96734 11.263C1.13683 9.06647 1.45202 6.58096 2.81071 4.61455C4.17366 2.64187 6.33417 1.51048 8.73789 1.51048C11.1416 1.51048 13.3018 2.64182 14.6648 4.61455C16.0238 6.58096 16.3392 9.06647 15.5067 11.268Z",fill:"black"}),i.createElement("path",{d:"M8.73795 4.48119C6.40599 4.48119 4.50857 6.37836 4.50857 8.71057C4.50857 11.0428 6.40574 12.94 8.73795 12.94C11.0702 12.94 12.9673 11.0428 12.9673 8.71057C12.9673 6.37862 11.0699 4.48119 8.73795 4.48119ZM8.73795 11.4294C7.23878 11.4294 6.01905 10.2097 6.01905 8.71053C6.01905 7.21136 7.23878 5.99163 8.73795 5.99163C10.2371 5.99163 11.4568 7.21136 11.4568 8.71053C11.4568 10.2097 10.2371 11.4294 8.73795 11.4294Z",fill:"black"}))};we.displayName="Icon.MapMarker";const Me=e=>{let{className:n}=e;return i.createElement("svg",{className:n+" fill",width:"20",height:"18",viewBox:"0 0 20 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i.createElement("path",{d:"M14.3575 0C12.6549 0 11.0611 0.726824 10 1.94461C8.93886 0.726782 7.34514 0 5.64255 0C2.53125 0 0 2.38662 0 5.32023C0 7.61737 1.45275 10.2744 4.3178 13.2174C6.52268 15.4823 8.92123 17.2359 9.60382 17.7195L9.99987 18L10.3959 17.7195C11.0785 17.236 13.4771 15.4824 15.6821 13.2175C18.5472 10.2745 20 7.61741 20 5.32023C20 2.38662 17.4687 0 14.3575 0ZM14.7106 12.3767C12.897 14.2396 10.9458 15.7455 9.99987 16.4395C9.05393 15.7455 7.10286 14.2395 5.28927 12.3766C2.69169 9.70836 1.31868 7.26828 1.31868 5.32023C1.31868 3.07225 3.25837 1.24335 5.64255 1.24335C7.21152 1.24335 8.66022 2.04963 9.42334 3.34757L10 4.32841L10.5767 3.34757C11.3397 2.04967 12.7884 1.24335 14.3575 1.24335C16.7416 1.24335 18.6813 3.0722 18.6813 5.32023C18.6813 7.26836 17.3083 9.70844 14.7106 12.3767Z",fill:"black"}))};Me.displayName="Icon.Heart";const ze=e=>{let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"14",height:"14",fill:"none",className:n+" fill",viewBox:"0 0 14 14"},i.createElement("g",{fill:"#424242",clipPath:"url(#clip0)"},i.createElement("path",{d:"M13.94 12.687L7.425.846a.485.485 0 00-.85 0L.06 12.686a.485.485 0 00.425.72h13.03a.484.484 0 00.425-.72zm-12.636-.251L7 2.085l5.696 10.35H1.304z"}),i.createElement("path",{d:"M6.393 5.547V9.05a.607.607 0 001.214 0V5.547a.607.607 0 00-1.214 0zM7 10.288a.64.64 0 100 1.28.64.64 0 000-1.28z"})),i.createElement("defs",null,i.createElement("clipPath",{id:"clip0"},i.createElement("path",{fill:"#fff",d:"M0 0H14V14H0z"}))))};ze.displayName="Icon.Warning";const Le=e=>{let{className:n}=e;return i.createElement("svg",{className:n+" fill",width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i.createElement("path",{d:"M16.0002 7.79396C16.0002 12.0985 12.4839 15.5879 8.14553 15.5879C6.76826 15.5879 5.47438 15.2359 4.34868 14.6181L0 16L1.4178 11.8183C0.702587 10.6439 0.29067 9.26649 0.29067 7.79396C0.29067 3.48942 3.80734 0 8.14553 0C12.4842 0 16.0002 3.48942 16.0002 7.79396ZM8.14553 1.24124C4.50388 1.24124 1.54171 4.1808 1.54171 7.79396C1.54171 9.22773 2.00909 10.5556 2.79968 11.6357L1.9746 14.0693L4.51241 13.2628C5.55509 13.9474 6.80418 14.3467 8.1457 14.3467C11.7868 14.3467 14.7495 11.4075 14.7495 7.79431C14.7495 4.18116 11.787 1.24124 8.14553 1.24124ZM12.112 9.58898C12.0634 9.50951 11.9353 9.46151 11.7429 9.36604C11.5502 9.27058 10.6033 8.80818 10.4273 8.74471C10.2508 8.68107 10.1221 8.64907 9.99391 8.84018C9.86573 9.03147 9.49665 9.46151 9.38412 9.58898C9.27176 9.7168 9.15958 9.7328 8.96687 9.63716C8.77451 9.54169 8.15424 9.33973 7.41876 8.68907C6.84649 8.18276 6.45999 7.55769 6.34764 7.36622C6.23546 7.17511 6.3359 7.07182 6.43208 6.97671C6.51884 6.89102 6.6248 6.7536 6.72097 6.64213C6.81751 6.53049 6.84951 6.45102 6.91333 6.32338C6.97787 6.19591 6.94569 6.08444 6.89733 5.98862C6.84933 5.89316 6.4639 4.95307 6.30355 4.57049C6.14319 4.18827 5.98301 4.25191 5.87047 4.25191C5.7583 4.25191 5.62976 4.23591 5.5014 4.23591C5.37305 4.23591 5.16433 4.28373 4.9878 4.47484C4.81144 4.66613 4.31419 5.12836 4.31419 6.06827C4.31419 7.00836 5.0038 7.91662 5.10033 8.04391C5.19651 8.1712 6.4319 10.163 8.38926 10.928C10.3468 11.6926 10.3468 11.4375 10.6999 11.4055C11.0526 11.3737 11.8387 10.9435 11.9998 10.4976C12.1598 10.051 12.1598 9.66862 12.112 9.58898Z",fill:"black"}))};Le.displayName="Icon.Eye";const ke=e=>{let{className:n}=e;return i.createElement("svg",{width:"24",className:n+" fill",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i.createElement("path",{d:"M12.0371 6.75351C6.75341 6.75351 1.63714 11.7954 1.43248 12.0186C1.28365 12.1675 1.20923 12.3535 1.20923 12.5582C1.20923 12.7628 1.28365 12.9489 1.43248 13.0977C1.65574 13.321 6.75341 18.3628 12.0371 18.3628C17.3209 18.3628 22.4371 13.321 22.6418 13.0977C22.7906 12.9489 22.865 12.7628 22.865 12.5582C22.865 12.3535 22.7906 12.1675 22.6418 12.0186C22.4371 11.7954 17.3395 6.75351 12.0371 6.75351ZM12.0371 16.8186C8.33481 16.8186 4.52086 13.8047 3.0883 12.5396C4.52086 11.2744 8.33481 8.26049 12.0371 8.26049C15.7395 8.26049 19.5534 11.2744 20.986 12.5396C19.5534 13.8047 15.7395 16.8186 12.0371 16.8186Z",fill:"black"}),i.createElement("path",{d:"M9.30225 12.5396C9.30225 14.0465 10.5302 15.293 12.0557 15.293C13.5813 15.293 14.8092 14.0651 14.8092 12.5396C14.8092 11.014 13.5813 9.78607 12.0557 9.78607C10.5302 9.78607 9.30225 11.0326 9.30225 12.5396ZM13.265 12.5396C13.265 13.2093 12.7255 13.7675 12.0371 13.7675C11.3674 13.7675 10.8092 13.2279 10.8092 12.5396C10.8092 11.8512 11.3488 11.3117 12.0371 11.3117C12.7069 11.3303 13.265 11.8698 13.265 12.5396Z",fill:"black"}))};ke.displayName="Icon.Show";const ye=e=>{let{className:n}=e;return i.createElement("svg",{className:n+" fill",width:"25",height:"25",viewBox:"0 0 25 25",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i.createElement("mask",{id:"path-1-inside-1",fill:"white"},i.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5009 3.18628C12.907 3.18628 13.2362 2.85706 13.2362 2.45098V0.735295C13.2362 0.329216 12.907 0 12.5009 0C12.0948 0 11.7656 0.329216 11.7656 0.735295V2.45098C11.7656 2.85706 12.0948 3.18628 12.5009 3.18628ZM12.5 6.03516C17.7504 6.03516 22.561 9.26579 24.8332 12.0341C25.0557 12.3053 25.0557 12.6957 24.8332 12.9669C22.6596 15.6151 17.8695 18.9659 12.5 18.9659C7.31483 18.9659 2.49292 15.8022 0.166838 12.9669C-0.0556128 12.6957 -0.0556128 12.3053 0.166838 12.0341C2.42003 9.28776 7.23086 6.03516 12.5 6.03516ZM12.5 17.4953C15.2542 17.4953 17.4948 15.2546 17.4948 12.5005C17.4948 9.74668 15.2544 7.50575 12.5 7.5057C9.74581 7.5057 7.50518 9.74638 7.50518 12.5005C7.50518 15.2545 9.74577 17.4953 12.5 17.4953ZM7.35287 8.5928C4.55165 9.78423 2.55615 11.6406 1.72856 12.5007C3.24365 14.0782 5.22218 15.5044 7.35204 16.4071C5.59424 14.0964 5.59493 10.9027 7.35287 8.5928ZM17.648 8.59388C19.4058 10.9046 19.4051 14.0983 17.6472 16.4082C20.4484 15.2167 22.4439 13.3605 23.2715 12.5003C21.7564 10.9228 19.7778 9.49658 17.648 8.59388ZM12.499 15C11.1205 15 9.99902 13.8785 9.99902 12.5C9.99902 11.1215 11.1205 10 12.499 10C13.8775 10 14.999 11.1215 14.999 12.5C14.999 13.8785 13.8775 15 12.499 15ZM12.499 13.5294C13.0666 13.5294 13.5284 13.0676 13.5284 12.5C13.5284 11.9323 13.0666 11.4706 12.499 11.4706C11.9314 11.4706 11.4696 11.9323 11.4696 12.5C11.4696 13.0676 11.9314 13.5294 12.499 13.5294ZM17.8897 3.89547C17.6885 4.24841 17.2393 4.37101 16.8867 4.16993C16.534 3.9687 16.4112 3.51964 16.6123 3.16694L17.5909 1.45125C17.7921 1.09841 18.241 0.975615 18.5939 1.17679C18.9466 1.37802 19.0694 1.82704 18.8683 2.17978L17.8897 3.89547ZM7.11039 3.89546C7.31157 4.24821 7.76059 4.37105 8.11338 4.16987C8.46613 3.9687 8.58897 3.51963 8.3878 3.16688L7.40927 1.4512C7.20809 1.09845 6.75897 0.975607 6.40627 1.17678C6.05353 1.37796 5.93068 1.82703 6.13186 2.17977L7.11039 3.89546ZM11.7656 22.5493C11.7656 22.1432 12.0948 21.814 12.5009 21.814C12.907 21.814 13.2362 22.1432 13.2362 22.5493V24.265C13.2362 24.671 12.907 25.0003 12.5009 25.0003C12.0948 25.0003 11.7656 24.671 11.7656 24.265V22.5493ZM8.11338 20.8301C7.76063 20.629 7.31161 20.7517 7.11039 21.1045L6.13186 22.8202C5.93068 23.1729 6.05353 23.622 6.40627 23.8232C6.75907 24.0243 7.20809 23.9015 7.40926 23.5488L8.38779 21.8331C8.58902 21.4803 8.46612 21.0313 8.11338 20.8301ZM16.8867 20.8301C17.2394 20.629 17.6886 20.7517 17.8897 21.1045L18.8683 22.8202C19.0694 23.173 18.9466 23.622 18.5939 23.8232C18.241 24.0244 17.792 23.9015 17.5909 23.5487L16.6123 21.833C16.4112 21.4803 16.534 21.0312 16.8867 20.8301Z"})),i.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5009 3.18628C12.907 3.18628 13.2362 2.85706 13.2362 2.45098V0.735295C13.2362 0.329216 12.907 0 12.5009 0C12.0948 0 11.7656 0.329216 11.7656 0.735295V2.45098C11.7656 2.85706 12.0948 3.18628 12.5009 3.18628ZM12.5 6.03516C17.7504 6.03516 22.561 9.26579 24.8332 12.0341C25.0557 12.3053 25.0557 12.6957 24.8332 12.9669C22.6596 15.6151 17.8695 18.9659 12.5 18.9659C7.31483 18.9659 2.49292 15.8022 0.166838 12.9669C-0.0556128 12.6957 -0.0556128 12.3053 0.166838 12.0341C2.42003 9.28776 7.23086 6.03516 12.5 6.03516ZM12.5 17.4953C15.2542 17.4953 17.4948 15.2546 17.4948 12.5005C17.4948 9.74668 15.2544 7.50575 12.5 7.5057C9.74581 7.5057 7.50518 9.74638 7.50518 12.5005C7.50518 15.2545 9.74577 17.4953 12.5 17.4953ZM7.35287 8.5928C4.55165 9.78423 2.55615 11.6406 1.72856 12.5007C3.24365 14.0782 5.22218 15.5044 7.35204 16.4071C5.59424 14.0964 5.59493 10.9027 7.35287 8.5928ZM17.648 8.59388C19.4058 10.9046 19.4051 14.0983 17.6472 16.4082C20.4484 15.2167 22.4439 13.3605 23.2715 12.5003C21.7564 10.9228 19.7778 9.49658 17.648 8.59388ZM12.499 15C11.1205 15 9.99902 13.8785 9.99902 12.5C9.99902 11.1215 11.1205 10 12.499 10C13.8775 10 14.999 11.1215 14.999 12.5C14.999 13.8785 13.8775 15 12.499 15ZM12.499 13.5294C13.0666 13.5294 13.5284 13.0676 13.5284 12.5C13.5284 11.9323 13.0666 11.4706 12.499 11.4706C11.9314 11.4706 11.4696 11.9323 11.4696 12.5C11.4696 13.0676 11.9314 13.5294 12.499 13.5294ZM17.8897 3.89547C17.6885 4.24841 17.2393 4.37101 16.8867 4.16993C16.534 3.9687 16.4112 3.51964 16.6123 3.16694L17.5909 1.45125C17.7921 1.09841 18.241 0.975615 18.5939 1.17679C18.9466 1.37802 19.0694 1.82704 18.8683 2.17978L17.8897 3.89547ZM7.11039 3.89546C7.31157 4.24821 7.76059 4.37105 8.11338 4.16987C8.46613 3.9687 8.58897 3.51963 8.3878 3.16688L7.40927 1.4512C7.20809 1.09845 6.75897 0.975607 6.40627 1.17678C6.05353 1.37796 5.93068 1.82703 6.13186 2.17977L7.11039 3.89546ZM11.7656 22.5493C11.7656 22.1432 12.0948 21.814 12.5009 21.814C12.907 21.814 13.2362 22.1432 13.2362 22.5493V24.265C13.2362 24.671 12.907 25.0003 12.5009 25.0003C12.0948 25.0003 11.7656 24.671 11.7656 24.265V22.5493ZM8.11338 20.8301C7.76063 20.629 7.31161 20.7517 7.11039 21.1045L6.13186 22.8202C5.93068 23.1729 6.05353 23.622 6.40627 23.8232C6.75907 24.0243 7.20809 23.9015 7.40926 23.5488L8.38779 21.8331C8.58902 21.4803 8.46612 21.0313 8.11338 20.8301ZM16.8867 20.8301C17.2394 20.629 17.6886 20.7517 17.8897 21.1045L18.8683 22.8202C19.0694 23.173 18.9466 23.622 18.5939 23.8232C18.241 24.0244 17.792 23.9015 17.5909 23.5487L16.6123 21.833C16.4112 21.4803 16.534 21.0312 16.8867 20.8301Z",fill:"black"}),i.createElement("path",{d:"M24.8332 12.0341L25.6093 11.3973L25.6092 11.3972L24.8332 12.0341ZM24.8332 12.9669L25.6092 13.6039L25.6094 13.6036L24.8332 12.9669ZM0.166838 12.9669L0.942986 12.3301L0.942961 12.3301L0.166838 12.9669ZM0.166838 12.0341L0.942961 12.6709L0.942978 12.6709L0.166838 12.0341ZM12.5 7.5057L12.5 6.50177H12.5V7.5057ZM1.72856 12.5007L1.00512 11.8046L0.336008 12.5001L1.00449 13.1961L1.72856 12.5007ZM7.35287 8.5928L8.15175 9.20079L10.4459 6.18632L6.95995 7.66897L7.35287 8.5928ZM7.35204 16.4071L6.96028 17.3315L10.4377 18.8053L8.15105 15.7993L7.35204 16.4071ZM17.6472 16.4082L16.8483 15.8002L14.5542 18.8148L18.0401 17.332L17.6472 16.4082ZM17.648 8.59388L18.0398 7.66956L14.5624 6.19565L16.849 9.20169L17.648 8.59388ZM23.2715 12.5003L23.995 13.1963L24.6641 12.5008L23.9955 11.8048L23.2715 12.5003ZM16.8867 4.16993L16.3893 5.04194L16.3894 5.04198L16.8867 4.16993ZM17.8897 3.89547L17.0177 3.3981L17.0177 3.39815L17.8897 3.89547ZM16.6123 3.16694L17.4844 3.66434L17.4844 3.66431L16.6123 3.16694ZM17.5909 1.45125L18.4629 1.94862L18.4629 1.9486L17.5909 1.45125ZM18.5939 1.17679L19.0912 0.304749L19.0911 0.304666L18.5939 1.17679ZM18.8683 2.17978L19.7403 2.67715L19.7403 2.67713L18.8683 2.17978ZM8.11338 4.16987L8.61068 5.04197L8.61074 5.04194L8.11338 4.16987ZM7.11039 3.89546L7.98246 3.39811L7.98245 3.39809L7.11039 3.89546ZM8.3878 3.16688L9.25986 2.66953L9.25985 2.66951L8.3878 3.16688ZM7.40927 1.4512L6.5372 1.94855L6.53721 1.94857L7.40927 1.4512ZM6.40627 1.17678L6.90363 2.04885L6.90368 2.04882L6.40627 1.17678ZM6.13186 2.17977L5.2598 2.67713L5.25981 2.67714L6.13186 2.17977ZM7.11039 21.1045L6.23838 20.607L6.23833 20.6071L7.11039 21.1045ZM8.11338 20.8301L8.61073 19.958L8.61064 19.958L8.11338 20.8301ZM6.13186 22.8202L5.25981 22.3228L5.2598 22.3228L6.13186 22.8202ZM6.40627 23.8232L5.90892 24.6952L5.90897 24.6953L6.40627 23.8232ZM7.40926 23.5488L8.2813 24.0462L8.28132 24.0461L7.40926 23.5488ZM8.38779 21.8331L7.51578 21.3356L7.51574 21.3357L8.38779 21.8331ZM17.8897 21.1045L17.0176 21.6018L17.0177 21.6019L17.8897 21.1045ZM16.8867 20.8301L16.3895 19.958L16.3894 19.958L16.8867 20.8301ZM18.8683 22.8202L19.7403 22.3229L19.7403 22.3228L18.8683 22.8202ZM18.5939 23.8232L19.0911 24.6953L19.0912 24.6953L18.5939 23.8232ZM17.5909 23.5487L18.463 23.0515L18.4629 23.0514L17.5909 23.5487ZM16.6123 21.833L15.7403 22.3304L15.7403 22.3304L16.6123 21.833ZM12.2323 2.45098C12.2323 2.30261 12.3526 2.18235 12.5009 2.18235V4.1902C13.4614 4.1902 14.2401 3.41151 14.2401 2.45098H12.2323ZM12.2323 0.735295V2.45098H14.2401V0.735295H12.2323ZM12.5009 1.00392C12.3526 1.00392 12.2323 0.883669 12.2323 0.735295H14.2401C14.2401 -0.225237 13.4614 -1.00392 12.5009 -1.00392V1.00392ZM12.7695 0.735295C12.7695 0.883669 12.6493 1.00392 12.5009 1.00392V-1.00392C11.5404 -1.00392 10.7617 -0.225237 10.7617 0.735295H12.7695ZM12.7695 2.45098V0.735295H10.7617V2.45098H12.7695ZM12.5009 2.18235C12.6493 2.18235 12.7695 2.30261 12.7695 2.45098H10.7617C10.7617 3.41151 11.5404 4.1902 12.5009 4.1902V2.18235ZM25.6092 11.3972C23.198 8.45944 18.1238 5.03123 12.5 5.03123V7.03908C17.3769 7.03908 21.9241 10.0721 24.0572 12.6711L25.6092 11.3972ZM25.6094 13.6036C26.1355 12.9623 26.1356 12.0387 25.6093 11.3973L24.0571 12.6709C23.9758 12.5718 23.9759 12.4292 24.057 12.3302L25.6094 13.6036ZM12.5 19.9698C18.2507 19.9698 23.3028 16.4139 25.6092 13.6039L24.0572 12.33C22.0165 14.8163 17.4883 17.962 12.5 17.962V19.9698ZM-0.609309 13.6036C1.85939 16.6128 6.94582 19.9698 12.5 19.9698V17.962C7.68384 17.962 3.12645 14.9916 0.942986 12.3301L-0.609309 13.6036ZM-0.609284 11.3973C-1.13547 12.0387 -1.13547 12.9623 -0.609284 13.6037L0.942961 12.3301C1.02424 12.4292 1.02424 12.5718 0.942961 12.6709L-0.609284 11.3973ZM12.5 5.03123C6.85619 5.03123 1.78204 8.4826 -0.609301 11.3974L0.942978 12.6709C3.05801 10.0929 7.60554 7.03908 12.5 7.03908V5.03123ZM16.4909 12.5005C16.4909 14.7002 14.6997 16.4914 12.5 16.4914V18.4992C15.8086 18.4992 18.4987 15.8091 18.4987 12.5005H16.4909ZM12.5 8.50962C14.6999 8.50966 16.4909 10.3011 16.4909 12.5005H18.4987C18.4987 9.19229 15.8089 6.50183 12.5 6.50177L12.5 8.50962ZM8.5091 12.5005C8.5091 10.3008 10.3003 8.50962 12.5 8.50962V6.50177C9.19136 6.50177 6.50125 9.19194 6.50125 12.5005H8.5091ZM12.5 16.4914C10.3002 16.4914 8.5091 14.7001 8.5091 12.5005H6.50125C6.50125 15.8089 9.19128 18.4992 12.5 18.4992V16.4914ZM2.45199 13.1968C3.23229 12.3858 5.1185 10.6341 7.7458 9.51664L6.95995 7.66897C3.98479 8.93437 1.88002 10.8953 1.00512 11.8046L2.45199 13.1968ZM7.7438 15.4828C5.74951 14.6376 3.88178 13.2934 2.45262 11.8053L1.00449 13.1961C2.60553 14.8631 4.69486 16.3713 6.96028 17.3315L7.7438 15.4828ZM6.55399 7.98482C4.52274 10.6538 4.52194 14.3449 6.55303 17.0149L8.15105 15.7993C6.66655 13.8478 6.66712 11.1516 8.15175 9.20079L6.55399 7.98482ZM18.4461 17.0162C20.4773 14.3471 20.4781 10.6561 18.447 7.98608L16.849 9.20169C18.3335 11.1532 18.3329 13.8494 16.8483 15.8002L18.4461 17.0162ZM22.548 11.8042C21.7678 12.6153 19.8816 14.3669 17.2543 15.4844L18.0401 17.332C21.0153 16.0666 23.12 14.1057 23.995 13.1963L22.548 11.8042ZM17.2563 9.51821C19.2504 10.3634 21.1182 11.7077 22.5475 13.1957L23.9955 11.8048C22.3945 10.1379 20.3051 8.62972 18.0398 7.66956L17.2563 9.51821ZM8.9951 12.5C8.9951 14.433 10.566 16.0039 12.499 16.0039V13.9961C11.6749 13.9961 11.0029 13.3241 11.0029 12.5H8.9951ZM12.499 8.99608C10.566 8.99608 8.9951 10.567 8.9951 12.5H11.0029C11.0029 11.6759 11.6749 11.0039 12.499 11.0039V8.99608ZM16.0029 12.5C16.0029 10.567 14.4319 8.99608 12.499 8.99608V11.0039C13.3231 11.0039 13.9951 11.6759 13.9951 12.5H16.0029ZM12.499 16.0039C14.4319 16.0039 16.0029 14.433 16.0029 12.5H13.9951C13.9951 13.3241 13.3231 13.9961 12.499 13.9961V16.0039ZM12.5245 12.5C12.5245 12.5047 12.5238 12.507 12.523 12.5087C12.522 12.5111 12.52 12.5144 12.5167 12.5177C12.5134 12.521 12.5101 12.523 12.5077 12.524C12.506 12.5247 12.5037 12.5255 12.499 12.5255V14.5333C13.621 14.5333 14.5324 13.6221 14.5324 12.5H12.5245ZM12.499 12.4745C12.5037 12.4745 12.506 12.4753 12.5077 12.476C12.5101 12.477 12.5134 12.479 12.5167 12.4823C12.52 12.4856 12.522 12.4889 12.523 12.4913C12.5238 12.493 12.5245 12.4953 12.5245 12.5H14.5324C14.5324 11.3779 13.621 10.4667 12.499 10.4667V12.4745ZM12.4735 12.5C12.4735 12.4953 12.4743 12.493 12.475 12.4913C12.476 12.4889 12.478 12.4856 12.4813 12.4823C12.4846 12.479 12.4879 12.477 12.4903 12.476C12.492 12.4753 12.4943 12.4745 12.499 12.4745V10.4667C11.3769 10.4667 10.4657 11.3779 10.4657 12.5H12.4735ZM12.499 12.5255C12.4943 12.5255 12.492 12.5247 12.4903 12.524C12.4879 12.523 12.4846 12.521 12.4813 12.5177C12.478 12.5144 12.476 12.5111 12.475 12.5087C12.4743 12.507 12.4735 12.5047 12.4735 12.5H10.4657C10.4657 13.6221 11.3769 14.5333 12.499 14.5333V12.5255ZM16.3894 5.04198C17.2232 5.51759 18.2857 5.22771 18.7618 4.39279L17.0177 3.39815C17.0912 3.26912 17.2553 3.22443 17.3841 3.29788L16.3894 5.04198ZM15.7403 2.66954C15.2644 3.50389 15.555 4.56603 16.3893 5.04194L17.3842 3.29792C17.513 3.37138 17.5579 3.53538 17.4844 3.66434L15.7403 2.66954ZM16.7188 0.953882L15.7403 2.66957L17.4844 3.66431L18.4629 1.94862L16.7188 0.953882ZM19.0911 0.304666C18.2568 -0.171032 17.1948 0.119332 16.7188 0.953909L18.4629 1.9486C18.3894 2.07749 18.2252 2.12226 18.0966 2.04892L19.0911 0.304666ZM19.7403 2.67713C20.2161 1.84285 19.9257 0.780711 19.0912 0.304749L18.0965 2.04884C17.9676 1.97532 17.9227 1.81122 17.9962 1.68243L19.7403 2.67713ZM18.7618 4.39284L19.7403 2.67715L17.9962 1.68241L17.0177 3.3981L18.7618 4.39284ZM7.61608 3.29778C7.7448 3.22438 7.9089 3.26914 7.98246 3.39811L6.23833 4.39282C6.71424 5.22728 7.77637 5.51772 8.61068 5.04197L7.61608 3.29778ZM7.51573 3.66424C7.44227 3.53542 7.48708 3.37135 7.61603 3.29781L8.61074 5.04194C9.44518 4.56604 9.73568 3.50383 9.25986 2.66953L7.51573 3.66424ZM6.53721 1.94857L7.51574 3.66425L9.25985 2.66951L8.28132 0.953824L6.53721 1.94857ZM6.90368 2.04882C6.77478 2.12234 6.61074 2.07749 6.5372 1.94855L8.28133 0.95384C7.80544 0.119409 6.74316 -0.171128 5.90887 0.304747L6.90368 2.04882ZM7.00393 1.68242C7.07739 1.81123 7.03258 1.9753 6.90363 2.04885L5.90892 0.304717C5.07447 0.780616 4.78398 1.84283 5.2598 2.67713L7.00393 1.68242ZM7.98245 3.39809L7.00392 1.6824L5.25981 2.67714L6.23834 4.39283L7.98245 3.39809ZM12.5009 20.81C11.5404 20.81 10.7617 21.5887 10.7617 22.5493H12.7695C12.7695 22.6976 12.6493 22.8179 12.5009 22.8179V20.81ZM14.2401 22.5493C14.2401 21.5887 13.4615 20.81 12.5009 20.81V22.8179C12.3525 22.8179 12.2323 22.6976 12.2323 22.5493H14.2401ZM14.2401 24.265V22.5493H12.2323V24.265H14.2401ZM12.5009 26.0042C13.4615 26.0042 14.2401 25.2255 14.2401 24.265H12.2323C12.2323 24.1166 12.3525 23.9963 12.5009 23.9963V26.0042ZM10.7617 24.265C10.7617 25.2255 11.5404 26.0042 12.5009 26.0042V23.9963C12.6493 23.9963 12.7695 24.1166 12.7695 24.265H10.7617ZM10.7617 22.5493V24.265H12.7695V22.5493H10.7617ZM7.9824 21.6019C7.90887 21.7308 7.74484 21.7756 7.61611 21.7022L8.61064 19.958C7.77642 19.4823 6.71436 19.7727 6.23838 20.607L7.9824 21.6019ZM7.00392 23.3175L7.98245 21.6019L6.23833 20.6071L5.25981 22.3228L7.00392 23.3175ZM6.90363 22.9511C7.03258 23.0246 7.07739 23.1887 7.00393 23.3175L5.2598 22.3228C4.78398 23.1571 5.07447 24.2193 5.90892 24.6952L6.90363 22.9511ZM6.53722 23.0513C6.61074 22.9225 6.77477 22.8776 6.90357 22.9511L5.90897 24.6953C6.74336 25.1711 7.80543 24.8804 8.2813 24.0462L6.53722 23.0513ZM7.51574 21.3357L6.53721 23.0514L8.28132 24.0461L9.25985 22.3304L7.51574 21.3357ZM7.61603 21.7021C7.48717 21.6287 7.44221 21.4646 7.51578 21.3356L9.2598 22.3305C9.73582 21.4961 9.44508 20.4339 8.61073 19.958L7.61603 21.7021ZM18.7618 20.6072C18.2858 19.7725 17.2235 19.4824 16.3895 19.958L17.384 21.7022C17.2553 21.7756 17.0913 21.7309 17.0176 21.6018L18.7618 20.6072ZM19.7403 22.3228L18.7618 20.6071L17.0177 21.6019L17.9962 23.3176L19.7403 22.3228ZM19.0912 24.6953C19.9257 24.2194 20.2161 23.1572 19.7403 22.3229L17.9962 23.3176C17.9227 23.1888 17.9675 23.0247 18.0965 22.9511L19.0912 24.6953ZM16.7187 24.046C17.1946 24.8805 18.2567 25.171 19.0911 24.6953L18.0966 22.9511C18.2253 22.8777 18.3894 22.9224 18.463 23.0515L16.7187 24.046ZM15.7403 22.3304L16.7188 24.0461L18.4629 23.0514L17.4844 21.3357L15.7403 22.3304ZM16.3894 19.958C15.5549 20.4339 15.2645 21.4961 15.7403 22.3304L17.4844 21.3357C17.5579 21.4645 17.5131 21.6286 17.3841 21.7021L16.3894 19.958Z",fill:"black",mask:"url(#path-1-inside-1)"}))};function He(e){let{className:n}=e;return i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",className:n+" fill",width:"14",height:"15",fill:"none",viewBox:"0 0 14 15"},i.createElement("g",{fill:"#424242",clipPath:"url(#clip0)"},i.createElement("path",{d:"M11.95 2.304A6.954 6.954 0 007 .254a7.017 7.017 0 00-3.24.793c-.572.3-1.102.68-1.572 1.125V.254H1.093v3.828h3.828V2.988H2.917A5.927 5.927 0 017 1.348a5.913 5.913 0 015.882 6.449l1.089.1c.02-.213.029-.429.029-.643h-.547H14c0-1.87-.728-3.628-2.05-4.95zM2.398 10.957l-.851.686c.247.307.523.595.818.856l.724-.819a5.956 5.956 0 01-.69-.723zM1.428 9.217l-1.032.364c.132.372.296.735.488 1.08l.955-.533a5.893 5.893 0 01-.41-.91zM1.094 7.254H0c0 .395.033.792.1 1.18l1.077-.184a5.967 5.967 0 01-.083-.996zM3.89 12.277l-.576.93c.336.207.691.388 1.056.536l.411-1.014a5.894 5.894 0 01-.89-.452zM12.708 8.78a5.88 5.88 0 01-.339.94l.994.458c.165-.359.3-.734.402-1.115l-1.057-.282zM10.488 12.02a5.918 5.918 0 01-.853.521l.488.979a7.02 7.02 0 001.012-.617l-.647-.882zM11.875 10.59a5.957 5.957 0 01-.633.773l.786.762c.274-.284.526-.592.75-.917l-.903-.619zM8.706 12.91a5.887 5.887 0 01-.977.206l.133 1.085c.392-.048.782-.13 1.16-.244l-.316-1.047zM5.737 13.025l-.233 1.068c.384.084.78.136 1.174.153l.05-1.092a5.931 5.931 0 01-.991-.13z"})),i.createElement("defs",null,i.createElement("clipPath",{id:"clip0"},i.createElement("path",{fill:"#fff",d:"M0 0H14V14H0z",transform:"translate(0 .25)"}))))}ye.displayName="Icon.Open",He.displayName="Icon.Sync";var Ve,Ne={__proto__:null,ArrowDown:J,ArrowLeft:K,ArrowRight:Q,ArrowUp:ee,Bonde:ne,Bolt:te,BoltUnfilled:le,Bot:re,Check:ae,Close:oe,Cloud:ce,Copy:ie,Info:se,InfoMsg:me,Network:de,New:he,Pencil:pe,Plus:ue,Search:fe,Settings:ge,Trash:ve,Ticket:Ce,TicketRecurring:be,User:xe,Window:Ee,MapMarker:we,Heart:Me,Warning:ze,Whatsapp:Le,Eye:ke,Open:ye,Sync:He};const Ze=d(e=>{let{name:n,...t}=e;const l=Ne[n];return l?i.createElement(l,Object.assign({},t)):i.createElement("span",null)})(Ve||(Ve=w(["\n vertical-align: middle;\n ","\n ","\n ","\n ","\n\n &.fill {\n path {\n fill: ",";\n }\n }\n &.stroke {\n path {\n stroke: ",";\n }\n }\n"])),e=>"xs"===e.size&&"\n width: calc(0.75*20px);\n height: calc(0.75*15px);\n ",e=>"small"===e.size&&"\n width: calc(1*20px);\n height: calc(1*15px);\n ",e=>"default"===e.size&&"\n width: calc(1.5*20px);\n height: calc(1.5*15px);\n ",e=>"large"===e.size&&"\n width: calc(2*20px);\n height: calc(2*15px);\n ",e=>e.color,e=>e.color);var Fe;Ze.defaultProps={size:"default",color:"#000"};const Ie=d(e=>{const{component:n,className:t,...l}=e;return i.createElement(n,Object.assign({className:t},l))})(Fe||(Fe=w(["\n font-family: ",";\n font-weight: 600;\n font-size: 13px;\n text-transform: uppercase;\n text-decoration: none;\n color: ",";\n cursor: pointer;\n\n &:hover,\n &:active {\n color: ",";\n text-decoration: underline;\n }\n &:focus {\n color: ",";\n }\n"])),e=>e.theme.fontFamily,e=>e.theme.dark.color.main,e=>e.theme.dark.color.hover,e=>e.theme.dark.color.focus);var Se;Ie.defaultProps={theme:y,component:"a"};const Be=d.button(Se||(Se=w(["\n border: none;\n margin: 0;\n padding: 0;\n width: auto;\n overflow: visible;\n\n background: transparent;\n\n /* inherit font & color from ancestor */\n color: inherit;\n font: inherit;\n\n /* Normalize 'line-height'. Cannot be changed from 'normal' in Firefox 4+. */\n line-height: normal;\n\n /* Corrects font smoothing for webkit */\n -webkit-font-smoothing: inherit;\n -moz-osx-font-smoothing: inherit;\n\n /* Corrects inability to style clickable 'input' types in iOS */\n -webkit-appearance: none;\n\n /* Remove excess padding and border in Firefox 4+ */\n &::-moz-focus-inner {\n border: 0;\n padding: 0;\n }\n"])));var Pe,Ae;Be.displayName="CleanButton";const Re=d(Be)(Pe||(Pe=w(["\n width: 200px;\n height: 90px;\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 5px;\n cursor: pointer;\n background-color: ",";\n padding: 0px 20px;\n\n display: grid;\n grid-template-columns: auto auto;\n align-items: center;\n justify-content: center;\n grid-column-gap: 20px;\n"])),e=>{let{theme:n}=e;return n.brand.light}),Te=d(T.H5)(Ae||(Ae=w(["\n text-transform: uppercase;\n margin: 0;\n text-align: left;\n color: ",";\n"])),e=>{let{theme:n}=e;return n.brand.dark}),Oe=e=>{let{icon:n,text:t,theme:l}=e;return i.createElement(Re,{theme:l},n,i.createElement(Te,{theme:l},t))};var je,De,_e;Oe.defaultProps={theme:y};const Ue=d.div(je||(je=w(["\n display: ","; /* Hidden by default */\n position: fixed; /* Stay in place */\n z-index: 1; /* Sit on top */\n left: 0;\n top: 0;\n width: 100%; /* Full width */\n height: 100%; /* Full height */\n overflow: auto; /* Enable scroll if needed */\n background-color: rgb(0, 0, 0); /* Fallback color */\n background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */\n z-index: 3;\n"])),e=>e.isOpen?"block":"none"),qe=d.div(De||(De=w(["\n background-color: ",";\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 4px;\n padding: 30px;\n width: ",";\n height: ",";\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n"])),e=>e.theme.brand.light,e=>e.width,e=>e.height?""+e.height:"auto"),We=d(Be)(_e||(_e=w(["\n color: ",";\n font-size: 28px;\n font-weight: bold;\n float: right;\n &:hover,\n &:focus {\n color: ",";\n text-decoration: none;\n cursor: pointer;\n }\n"])),e=>e.theme.commons.main,e=>e.theme.brand.dark),Ge=e=>{let{children:n,isOpen:t,onClose:l,width:r}=e;return i.createElement(Ue,{isOpen:t},i.createElement(qe,{width:r,theme:y},i.createElement(We,{theme:y,onClick:l},"×"),n))};var Xe,Ye,$e,Je,Ke,Qe,en,nn,tn,ln,rn,an;Ge.defaultProps={isOpen:!1,width:300};const on=d.div(Xe||(Xe=w(["\n transition: all 350ms;\n\n ","\n"])),e=>e.show&&m.css(Ye||(Ye=w(["\n transform: rotate(180deg);\n position: relative;\n top: 2px;\n "])))),cn=d.div($e||($e=w(["\n & > .Select__control {\n // Sets clear button color dinamically\n & > .Select__indicators > .Select__clear-indicator {\n color: ",";\n }\n background-color: unset;\n ","\n ","\n box-shadow: none;\n width: 100%;\n & > .Select__value-container {\n & > .Select__placeholder {\n font-family: ",";\n color: ",";\n }\n }\n }\n"])),e=>e.theme.brand.main,e=>e.value?m.css(Ke||(Ke=w(["\n &:hover,\n &:focus {\n border-color: ",";\n }\n border-color: ",";\n "])),e.theme.brand.main,e.theme.brand.main):m.css(Je||(Je=w(["\n &:hover,\n &:focus {\n border-color: ",";\n }\n border-color: ",";\n "])),e.theme.commons.main,e.theme.commons.main),e=>e.invalid&&m.css(Qe||(Qe=w(["\n &:hover,\n &:focus {\n border-color: ",";\n }\n border-color: ",";\n "])),e.theme.error,e.theme.error),e=>e.theme.fontFamily,e=>e.theme.commons.dark);cn.defaultProps={theme:y};const sn=d.div(en||(en=w(["\n & > .Select__single-value {\n opacity: ",";\n transition: opacity 300ms;\n font-family: ",";\n color: ",";\n }\n"])),e=>e.isDisabled?.5:1,e=>e.theme.fontFamily,e=>e.value?e.theme.brand.main:e.theme.commons.main);sn.defaultProps={theme:y};const mn=d.div(nn||(nn=w(["\n & > .Select__option {\n font-family: ",";\n cursor: ",";\n ","\n ","\n ","\n color: ",";\n }\n"])),e=>e.theme.fontFamily,e=>e.isDisabled?"not-allowed":"default",e=>e.isSelected&&m.css(tn||(tn=w(["\n background-color: rgba(74, 74, 74, 0.5);\n &:active {\n backgroundcolor: rgba(74, 74, 74, 0.5);\n }\n "]))),e=>e.isFocused&&m.css(ln||(ln=w(["\n background-color: rgba(74, 74, 74, 0.3);\n "]))),e=>e.isDisabled&&m.css(rn||(rn=w(["\n color: #ccc;\n "]))),e=>e.isSelected?e.theme.brand.light:e.theme.commons.dark),dn=d.div(an||(an=w(["\n & > .Select__menu {\n z-index: 3;\n }\n"])));mn.defaultProps={theme:y};const hn=e=>i.createElement(sn,Object.assign({value:e.selectProps.value},e),i.createElement(u.components.SingleValue,Object.assign({},e))),pn=e=>{const n=e.selectProps.value?y.brand.main:y.commons.main;return i.createElement(u.components.DropdownIndicator,Object.assign({},e),i.createElement(on,{show:e.selectProps.show},i.createElement(Ze,{name:"ArrowDown",size:"small",color:n})))},un=e=>i.createElement(cn,Object.assign({value:e.selectProps.value},e),i.createElement(u.components.Control,Object.assign({},e))),fn=e=>i.createElement(mn,Object.assign({value:e.selectProps.value},e),i.createElement(u.components.Option,Object.assign({},e))),gn=e=>i.createElement(dn,null,i.createElement(u.components.Menu,Object.assign({},e),e.children)),vn=e=>{let{...n}=e;const[t,l]=c.useState(!1);return i.createElement(f,Object.assign({},n,{components:{DropdownIndicator:pn,IndicatorSeparator:()=>null,Control:un,SingleValue:hn,Option:fn,Menu:gn},onMenuOpen:()=>l(!0),onMenuClose:()=>l(!1),onInputChange:()=>l(!1),show:t,classNamePrefix:"Select"}))};var Cn;vn.defaultProps={theme:y,menuHeight:300},vn.displayName="RoundSelect";const bn=d.div(Cn||(Cn=w(["\n width: 150px;\n & .Select__control {\n border-color: ",";\n &:hover {\n border-color: ",";\n }\n &:focus {\n border-color: ",";\n }\n }\n & .Select__single-value {\n color: ",";\n &:hover {\n color: ",";\n }\n &:focus {\n color: ",";\n }\n }\n .Select__indicators svg path {\n fill: ",";\n &:hover {\n fill: ",";\n }\n &:focus {\n fill: ",";\n }\n }\n"])),e=>{let{theme:n}=e;return n.brand.dark},e=>{let{theme:n}=e;return n.commons.dark},e=>{let{theme:n}=e;return n.dark.border.focus},e=>{let{theme:n}=e;return n.brand.dark},e=>{let{theme:n}=e;return n.commons.dark},e=>{let{theme:n}=e;return n.dark.border.focus},e=>{let{theme:n}=e;return n.brand.dark},e=>{let{theme:n}=e;return n.commons.dark},e=>{let{theme:n}=e;return n.dark.border.focus});bn.defaultProps={theme:y};const xn=(e,n)=>{let t,l;return n<=10?(t=1,l=n):e<=6?(t=1,l=10):e+4>=n?(t=n-9,l=n):(t=e-5,l=e+4),Array.from(Array(l+1-t),(e,n)=>t+n)},En=e=>{let{goToPage:n,pageIndex:t,pageSize:l,totalPages:r,setPageSize:a,showMorePlacement:o}=e;const[s,m]=c.useState([]);c.useEffect(()=>{m(xn(t,r))},[t,r]);const d=e=>{const t=xn(e,r);return m(t),n(e)};return i.createElement(p.Stack,{direction:"row",my:4,spacing:2,justify:"center"},i.createElement(p.Button,{variant:"link",colorScheme:"gray",onClick:()=>d(0),disabled:0===t},"<<")," ",i.createElement(p.Button,{variant:"link",colorScheme:"gray",onClick:()=>d(t-1),disabled:0===t},"anterior")," ",i.createElement(p.Stack,{direction:"row",spacing:2},s.map((e,n)=>i.createElement(p.Button,{key:"page-item-"+n,variant:"link",colorScheme:"gray",color:e-1===t?"pink.200":"gray.300",onClick:()=>d(e-1)},e))),i.createElement(p.Button,{variant:"link",colorScheme:"gray",onClick:()=>d(t+1),disabled:t===r-1},"próxima")," ",i.createElement(p.Button,{variant:"link",colorScheme:"gray",onClick:()=>d(r-1),disabled:t===r-1},">>")," ",i.createElement(bn,null,i.createElement(vn,{options:[{value:10,label:"Mostrar 10"},{value:20,label:"Mostrar 20"},{value:30,label:"Mostrar 30"},{value:40,label:"Mostrar 40"},{value:50,label:"Mostrar 50"}],placeholder:"",value:{value:l,label:"Mostrar "+l},onChange:e=>a(Number(e.value)),menuPortalTarget:document.querySelector("body"),menuPlacement:o})))};var wn,Mn,zn,Ln,kn,yn,Hn;const Vn=d.th(wn||(wn=w(["\n font-family: ",";\n font-size: 13px;\n font-weight: 600;\n line-height: 18px;\n text-transform: uppercase;\n color: #a4a4a4;\n text-align: left;\n border-bottom: 1px solid #e5e5e5;\n cursor: pointer;\n height: 40px;\n\n display: flex;\n align-items: center;\n\n /* Sticky */\n position: sticky !important;\n top: 0;\n background-color: ",";\n\n &.hide {\n display: none;\n }\n"])),e=>e.theme.fontFamily,e=>e.backgroundColor),Nn=d.td(Mn||(Mn=w(["\n font-family: ",";\n font-size: 16px;\n font-weight: ",";\n line-height: 22px;\n color: ",";\n letter-spacing: normal;\n word-break: break-word;\n min-height: 60px;\n\n margin: 0;\n border-bottom: 1px solid #e5e5e5;\n\n display: flex;\n align-items: center;\n\n &.hide {\n display: none;\n }\n"])),e=>e.theme.fontFamily,e=>e.bold?"bold":"normal",e=>e.theme.commons.dark),Zn=d.tr(zn||(zn=w(["\n :last-child {\n td {\n border-bottom: 0;\n }\n }\n border-bottom: 1px solid #e5e5e5;\n"]))),Fn=d.table(Ln||(Ln=w(["\n border-spacing: 0;\n border: 1px solid #e5e5e5;\n background-color: ",";\n width: 100%;\n\n thead {\n /* These styles are required for a scrollable body to align with the header properly */\n overflow-y: auto;\n overflow-x: hidden;\n }\n\n tbody {\n /* These styles are required for a scrollable table body */\n overflow-y: scroll;\n overflow-x: hidden;\n height: 250px;\n }\n\n th,\n td {\n margin: 0;\n padding-left: 20px;\n\n /* In this example we use an absolutely position resizer,\n so this is required. */\n position: relative;\n\n :last-child {\n border-right: 0;\n }\n }\n\n ","\n\n ","\n\n .sticky {\n position: sticky !important;\n top: 0;\n z-index: 1;\n background-color: ",";\n }\n"])),e=>e.backgroundColor,e=>{let{sticky:n}=e;return"end"===n&&m.css(kn||(kn=w(["\n .sticky {\n right: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-left: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-left: 1px solid #e5e5e5;\n padding-left: 0;\n }\n }\n "])))},e=>{let{sticky:n}=e;return"start"===n&&m.css(yn||(yn=w(["\n .sticky {\n left: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n "])))},e=>e.backgroundColor),In=d.div(Hn||(Hn=w(["\n /* These styles are suggested for the table fill all available space in its containing element */\n display: block;\n /* These styles are required for a horizontaly scrollable table overflow */\n overflow: auto;\n"])));function Sn(e){let{columns:n,data:t,backgroundColor:l,sticky:r,pagination:a}=e;const o=i.useMemo(()=>({minWidth:30,width:150,maxWidth:300}),[]),{getTableProps:c,getTableBodyProps:s,headerGroups:m,rows:d,prepareRow:u}=h.useTable({columns:n,data:t,defaultColumn:o},h.useSortBy,h.useFlexLayout);return i.createElement(p.Stack,{spacing:4},i.createElement(In,null,i.createElement(Fn,Object.assign({sticky:r,backgroundColor:l},c()),i.createElement("thead",null,m.map(e=>i.createElement(Zn,Object.assign({},e.getHeaderGroupProps()),e.headers.map(e=>i.createElement(Vn,Object.assign({},e.getHeaderProps({...e.getSortByToggleProps(),className:e.collapse?"collapse ":""+e.className||"",style:e.style}),{theme:y,backgroundColor:l}),i.createElement("div",{style:{display:"flex",justifyContent:"space-between",paddingRight:"5px"}},e.render("Header"),i.createElement("span",null,e.isSorted?i.createElement(Ze,e.isSortedDesc?{name:"ArrowDown",size:"small"}:{name:"ArrowUp",size:"small"}):""))))))),i.createElement("tbody",Object.assign({},s()),d.map(e=>(u(e),i.createElement(Zn,Object.assign({},e.getRowProps()),e.cells.map(e=>i.createElement(Nn,Object.assign({},e.getCellProps({className:e.column.className,style:e.column.style,bold:e.column.bold}),{theme:y}),e.render("Cell"))))))))),a&&i.createElement(En,{goToPage:a.goToPage,pageIndex:a.pageIndex,pageSize:a.pageSize,setPageSize:a.setPageSize,totalPages:a.totalPages,showMorePlacement:"top"}))}var Bn;Sn.defaultProps={backgroundColor:"#fff"};const Pn=d.div(Bn||(Bn=w(["\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n"])),e=>{let{margin:n}=e;return n.top&&"margin-top: "+n.top+"px;"},e=>{let{margin:n}=e;return n.bottom&&"margin-bottom: "+n.bottom+"px;"},e=>{let{margin:n}=e;return n.left&&"margin-left: "+n.left+"px;"},e=>{let{margin:n}=e;return n.right&&"margin-right: "+n.right+"px;"},e=>{let{padding:n}=e;return n.top&&"padding-top: "+n.top+"px;"},e=>{let{padding:n}=e;return n.bottom&&"padding-bottom: "+n.bottom+"px;"},e=>{let{padding:n}=e;return n.left&&"padding-left: "+n.left+"px;"},e=>{let{padding:n}=e;return n.right&&"padding-right: "+n.right+"px;"}),An=e=>{let{margin:n,padding:t,...l}=e;const{x:r,y:a}=n,{x:o,y:c}=t;return i.createElement(Pn,Object.assign({},l,{margin:{top:a||n.top,bottom:a||n.bottom,left:r||n.left,right:r||n.right},padding:{top:c||t.top,bottom:c||t.bottom,left:o||t.left,right:o||t.right}}))};var Rn;An.displayName="Spacing",An.defaultProps={margin:{},padding:{}};const Tn=d.div(Rn||(Rn=w(["\n position: relative;\n border-radius: ",";\n background-color: #ffffff;\n box-shadow: 2px 1px 14px 11px rgba(0, 0, 0, 0.04);\n width: ",";\n display: block;\n ","\n ","\n ","\n"])),e=>e.rounded||"1px",e=>e.width||"100%",e=>{let{height:n}=e;return n&&"height: "+n+";"},e=>{let{onClick:n}=e;return n&&"cursor: pointer;"},e=>{let{border:n}=e;return n&&"border: "+n+";"}),On=e=>{let{margin:n,padding:t,children:l,...r}=e;return i.createElement(An,{margin:n},i.createElement(Tn,Object.assign({},r),i.createElement(An,{padding:t},l)))};var jn;On.defaultProps={margin:{top:0,bottom:0,left:0,right:0},padding:{top:0,bottom:0,left:0,right:0}},On.displayName="Card";const Dn=d.span(jn||(jn=w(["\n font-family: Nunito Sans;\n position: absolute;\n background-color: #424242;\n padding: 23px 16px;\n width: 250px;\n font-size: 13px;\n text-transform: none;\n color: #fff;\n right: -200px;\n top: 25px;\n line-height: 17.73px;\n z-index: 1;\n\n p {\n margin-bottom: 5px;\n }\n"])));var _n;const Un=d.div(_n||(_n=w(["\n background-color: #fff;\n padding: 20px 0;\n white-space: nowrap;\n overflow-y: auto;\n box-shadow: 0 3px 7px rgba(0, 0, 0, 0.45), 0 2px 2px rgba(0, 0, 0, 0.45);\n max-height: calc(100vh - 30px - 40px);\n"])));var qn;const Wn=d(e=>{let{className:n,value:t}=e;return i.createElement("div",{className:n},t)})(qn||(qn=w(["\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n &:hover {\n color: #ee0099;\n }\n"])));var Gn,Xn,Yn,$n,Jn;const Kn=d.div(Gn||(Gn=w(["\n display: flex;\n flex-direction: column;\n font-family: ",";\n"])),e=>e.theme.fontFamily);Kn.defaultProps={theme:y};const Qn=d.div(Xn||(Xn=w(["\n position: absolute;\n top: calc(100% + 15px);\n display: flex;\n flex-direction: column;\n z-index: 3;\n ","\n ","\n"])),e=>"left"===e.direction&&"\n left: 0;\n ",e=>"right"===e.direction&&"\n right: 0;\n "),et=d(e=>{let{children:n,className:t,onToggle:l,open:r}=e;return i.createElement("div",{className:t,onClick:l},n,i.createElement(Ze,{name:r?"ArrowUp":"ArrowDown",color:"#fff",size:"small"}))})(Yn||(Yn=w(["\n display: flex;\n z-index: 2;\n cursor: pointer;\n flex-direction: row;\n align-items: center;\n color: #fff;\n font-weight: bold;\n font-size: 13px;\n text-transform: uppercase;\n\n "," {\n margin-left: 10px;\n }\n"])),Ze),nt=d.div($n||($n=w(["\n display: flex;\n ","\n"])),e=>e.clickable&&"cursor: pointer;"),tt=d.div(Jn||(Jn=w(["\n position: relative;\n"]))),lt=e=>{let{placeholder:n,item:t,items:l,selectable:r,onSelect:a,direction:o,dropdownInput:s,dropdownItem:m,dropdownList:d}=e;const[h,p]=c.useState(!1),u=c.useRef(null);return((e,n)=>{const t=n=>{e.current&&!e.current.contains(n.target)&&p(!1)};c.useEffect(()=>(document.addEventListener("mousedown",t),()=>{document.removeEventListener("mousedown",t)}))})(u),i.createElement(Kn,{ref:u},i.createElement(et,{open:h,onToggle:()=>p(!h)},t&&r&&t?i.createElement(s,{value:t}):i.createElement("span",null,n)),i.createElement(tt,null,h&&i.createElement(Qn,{direction:o},i.createElement(d,null,l.map((e,n)=>{const l="string"==typeof e||void 0===e.clickable||e.clickable;return i.createElement(nt,Object.assign({key:"dropdown-item-"+n},{clickable:l,onClick:l?()=>{a(e),p(!1)}:null}),"string"!=typeof e&&e.render?i.createElement(e.render,{value:e,selected:t}):i.createElement(m,{clickable:!0,value:e,selected:t}))})))))};var rt;lt.defaultProps={direction:"left",selectable:!0,items:[],dropdownInput:e=>{let{value:n}=e;return i.createElement("span",null,n)},dropdownItem:Wn,dropdownList:Un};const at=d(e=>{let{className:n,value:t,onClick:l}=e;const{icon:r,label:a}=t;return i.createElement("div",{className:n,onClick:l},i.createElement(Ze,{name:r,size:"small"}),a)})(rt||(rt=w(["\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n "," {\n margin-right: 10px;\n }\n\n &:hover {\n color: #ee0099;\n\n "," {\n path {\n color: #ee0099;\n fill: #ee0099;\n stroke: #ee0099;\n }\n }\n }\n"])),Ze,Ze);var ot;const ct=d(e=>{let{className:n,value:t}=e;const{img:l,label:r}=t;return i.createElement("div",{className:n},i.createElement("img",{src:l.src,alt:l.alt}),r)})(ot||(ot=w(["\n display: flex;\n flex-grow: 1;\n align-items: center;\n\n img {\n border-radius: 50px;\n width: 25px;\n height: 25px;\n margin-right: 10px;\n }\n"])));var it;const st=d(e=>{let{className:n,value:t}=e;const{img:l,label:r}=t;return i.createElement("div",{className:n},i.createElement("img",{src:l.src,alt:l.alt}),r)})(it||(it=w(["\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n img {\n width: 40px;\n height: 40px;\n margin-right: 10px;\n }\n ","\n ",", "," {\n margin: 0;\n }\n"])),e=>e.clickable&&"\n &:hover {\n background-color: #c7c7c7;\n }\n ",T.H4,T.H5);var mt;const dt=d.form(mt||(mt=w(["\n display: flex;\n flex-direction: ",";\n"])),e=>e.direction);var ht;dt.defaultProps={direction:"column"};const pt=e=>{let{color:n}=e;switch(n){case"info":return"#aaa";case"error":return"#ff0931";default:return"#50e3c2"}},ut=d.span(ht||(ht=w(["\n font-family: ",";\n font-size: 11px;\n font-weight: 600;\n line-height: 1.36;\n letter-spacing: 0.4px;\n text-transform: uppercase;\n color: ",";\n"])),e=>e.theme.fontFamily,pt);var ft;ut.defaultProps={theme:y,color:"info"};const gt=d.div(ft||(ft=w(["\n position: relative;\n display: flex;\n padding: 0 0 30px;\n\n flex-direction: ",";\n ","\n\n "," {\n position: absolute;\n right: 0;\n }\n"])),e=>e.direction,e=>"row"===e.direction&&"\n align-items: flex-end;\n ",ut);gt.defaultProps={direction:"column"};const vt=p.createIcon({displayName:"ArrowUpIcon",viewBox:"4 4 15 15",path:i.createElement(i.Fragment,null,i.createElement("path",{fill:"currentColor",d:"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"}))}),Ct=p.createIcon({displayName:"ArrowDownIcon",viewBox:"4 4 15 15",path:i.createElement(i.Fragment,null,i.createElement("path",{fill:"currentColor",d:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"}))}),bt=p.createIcon({displayName:"BotIcon",path:i.createElement(i.Fragment,null,i.createElement("path",{d:"M16.319 14.684a5.484 5.484 0 00-5.478-5.478H7.285a5.484 5.484 0 00-5.478 5.478h1.404a4.079 4.079 0 014.074-4.074h3.556a4.079 4.079 0 014.074 4.074h1.404zM2.042 6.492c0 1.161.944 2.106 2.105 2.106h9.542c1.16 0 2.105-.945 2.105-2.106V2.106C15.794.945 14.85 0 13.69 0H4.147c-1.16 0-2.106.945-2.106 2.106v4.386zm1.403-4.386c0-.387.315-.702.702-.702h9.542c.387 0 .701.315.701.702v4.386a.703.703 0 01-.701.702H4.147a.703.703 0 01-.702-.702V2.106z",fill:"currentColor"}),i.createElement("path",{d:"M7.15 2.643H5.748v3.313H7.15V2.643zM12.304 2.643H10.9v3.313h1.404V2.643zM1.404 2.709H0v3.18h1.404V2.71zM18.125 2.709H16.72v3.18h1.404V2.71z",fill:"currentColor"}))}),xt=p.createIcon({displayName:"EditIcon",path:i.createElement(i.Fragment,null,i.createElement("circle",{cx:"12",cy:"12",r:"11.5",fill:"#E09",stroke:"currentColor"}),i.createElement("path",{fill:"currentColor",d:"M6.04 15.008l-.013 2.418c0 .137.05.273.15.372.098.1.222.15.359.15l2.406-.013c.137 0 .26-.05.36-.149l8.31-8.31a.524.524 0 000-.732L15.23 6.338a.524.524 0 00-.731 0l-1.662 1.674-6.648 6.636a.553.553 0 00-.15.36zm8.83-7.579l1.675 1.675-.943.943-1.674-1.675.943-.943zm-7.8 7.802l6.126-6.127 1.675 1.674-6.127 6.115-1.687.012.012-1.674z"}))}),Et=p.createIcon({displayName:"InfoIcon",viewBox:"0 0 14 14",path:i.createElement(i.Fragment,null,i.createElement("path",{fill:"currentColor",d:"M7.012 14c3.862 0 7-3.138 7-7s-3.138-7-7-7S0 3.138 0 7s3.15 7 7.012 7zm0-13.034a6.032 6.032 0 016.022 6.022 6.032 6.032 0 01-6.022 6.022A6.032 6.032 0 01.99 6.988 6.032 6.032 0 017.012.966z"}),i.createElement("path",{fill:"currentColor",d:"M8.208 8.824V6.066a.735.735 0 00-.734-.734h-1.35a.735.735 0 00-.734.734v.694c0 .36.262.661.605.722V8.84a.735.735 0 00-.605.723v.694c0 .404.33.734.734.734h1.98c.404 0 .734-.33.734-.734v-.694a.744.744 0 00-.63-.74zm-.17 1.367H6.19v-.563h.12a.485.485 0 00.485-.485V7.18a.485.485 0 00-.485-.485h-.12v-.564h1.22v3c0 .267.217.484.484.484h.145v.576zm-.985-5.098a1.16 1.16 0 100-2.322 1.16 1.16 0 00-.001 2.322zm0-1.523a.363.363 0 11-.001.725.363.363 0 010-.725z"}),i.createElement("circle",{cx:"6.811",cy:"6.811",r:"4.865",fill:"#fff"}),i.createElement("path",{fill:"currentColor",d:"M7.115 10.704a.697.697 0 01-.462-.154c-.116-.11-.174-.264-.174-.462V6.127c0-.198.058-.349.174-.451a.697.697 0 01.462-.154c.185 0 .338.05.462.154.123.102.184.253.184.451v3.961c0 .198-.061.352-.184.462a.697.697 0 01-.462.154zm0-6.096c-.233 0-.417-.061-.554-.184a.663.663 0 01-.206-.503.63.63 0 01.206-.493c.137-.123.321-.184.554-.184.226 0 .407.061.544.184a.616.616 0 01.215.493.663.663 0 01-.205.503c-.137.123-.322.184-.554.184z"}))}),wt=p.createIcon({displayName:"NetIcon",path:i.createElement(i.Fragment,null,i.createElement("path",{d:"M24.3 17.858c0-3.508-2.845-6.362-6.342-6.362h-4.116c-3.497 0-6.342 2.854-6.342 6.362h1.625c0-2.61 2.116-4.732 4.716-4.732h4.117c2.601 0 4.717 2.123 4.717 4.732H24.3z",fill:"currentColor"}),i.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.905 1.542a3.758 3.758 0 00-3.752 3.763 3.758 3.758 0 003.752 3.764 3.758 3.758 0 003.752-3.764 3.758 3.758 0 00-3.752-3.763zm-5.288 3.763c0-2.93 2.367-5.305 5.288-5.305 2.921 0 5.29 2.375 5.29 5.305 0 2.93-2.369 5.306-5.29 5.306-2.92 0-5.288-2.376-5.288-5.306z",fill:"currentColor"}),i.createElement("path",{d:"M9.815 3.421a4.236 4.236 0 00-2.119-.563c-2.327 0-4.213 1.862-4.213 4.159 0 2.297 1.886 4.16 4.213 4.16 1.339 0 2.532-.617 3.304-1.579a4.702 4.702 0 01-.884-.849 2.997 2.997 0 01-2.42 1.218c-1.65 0-2.989-1.32-2.989-2.95 0-1.63 1.338-2.95 2.989-2.95.593 0 1.145.17 1.61.464a4.59 4.59 0 01.509-1.11zM9.538 11.875a5.092 5.092 0 00-.207-.005H6.05C3.267 11.87 1 14.108 1 16.858h1.294c0-2.046 1.686-3.71 3.758-3.71h1.74a5.612 5.612 0 011.746-1.273z",fill:"currentColor"}),i.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.696 2.958c-2.273 0-4.113 1.818-4.113 4.059 0 2.24 1.84 4.06 4.113 4.06 1.27 0 2.406-.57 3.16-1.462a4.803 4.803 0 01-.738-.705 3.098 3.098 0 01-2.422 1.158c-1.705 0-3.089-1.365-3.089-3.051 0-1.686 1.384-3.05 3.089-3.05.566 0 1.097.15 1.553.413a4.69 4.69 0 01.426-.922 4.137 4.137 0 00-1.98-.5zM3.383 7.017c0-2.353 1.932-4.26 4.313-4.26.79 0 1.532.21 2.169.578l.09.052-.055.088c-.212.335-.38.699-.499 1.085l-.038.125-.11-.07a2.903 2.903 0 00-1.557-.449c-1.597 0-2.889 1.278-2.889 2.851s1.292 2.85 2.889 2.85c.962 0 1.814-.464 2.34-1.177l.076-.105.082.102c.25.313.541.592.865.83l.084.062-.065.082a4.326 4.326 0 01-3.382 1.615c-2.381 0-4.313-1.906-4.313-4.259zM.9 16.857c0-2.806 2.312-5.087 5.152-5.087H9.33c.07 0 .141.002.211.005l.038.19a5.511 5.511 0 00-1.714 1.251l-.03.032H6.052c-2.018 0-3.658 1.62-3.658 3.61v.1H.9v-.1zm.2-.1h1.096c.054-2.055 1.764-3.709 3.856-3.709h1.676c.39-.422.842-.786 1.343-1.078h-3.02c-2.697 0-4.896 2.14-4.95 4.788z",fill:"currentColor"}))}),Mt=p.createIcon({displayName:"PagesIcon",path:i.createElement(i.Fragment,null,i.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 1.5v15h19v-15h-19zM1 0a1 1 0 00-1 1v16a1 1 0 001 1h20a1 1 0 001-1V1a1 1 0 00-1-1H1z",fill:"currentColor"}),i.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M22 6H0V4.5h22V6z",fill:"currentColor"}),i.createElement("path",{d:"M19 2.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",fill:"currentColor"}))}),zt=p.createIcon({displayName:"PagesIcon",path:i.createElement(i.Fragment,null,i.createElement("path",{d:"M19.753 8.148a62.2 62.2 0 00-.977-.139 8.613 8.613 0 00-.664-1.6c.203-.264.402-.529.594-.789a1.474 1.474 0 00-.143-1.907l-1.276-1.276a1.474 1.474 0 00-1.907-.143c-.262.193-.526.392-.79.594a8.608 8.608 0 00-1.6-.663c-.044-.33-.09-.659-.138-.978A1.474 1.474 0 0011.402 0H9.598c-.72 0-1.344.536-1.45 1.247-.048.319-.094.647-.138.977a8.606 8.606 0 00-1.6.664c-.264-.202-.528-.401-.79-.594a1.474 1.474 0 00-1.906.143L2.438 3.713c-.51.51-.572 1.33-.144 1.907.192.26.392.525.594.79a8.62 8.62 0 00-.663 1.6c-.33.044-.659.09-.978.138C.537 8.254 0 8.878 0 9.598v1.804c0 .72.536 1.344 1.247 1.45.32.048.647.094.978.138.166.554.388 1.09.663 1.6-.202.264-.402.53-.594.79a1.474 1.474 0 00.143 1.906l1.276 1.276c.51.51 1.33.572 1.907.144.261-.193.526-.392.79-.594.51.275 1.046.497 1.6.663.044.33.09.659.138.978.106.71.73 1.247 1.45 1.247h1.804c.72 0 1.344-.536 1.45-1.247.048-.32.094-.647.138-.978a8.604 8.604 0 001.6-.663c.264.202.528.4.79.594a1.474 1.474 0 001.906-.143l1.276-1.276c.51-.51.572-1.33.144-1.907-.193-.26-.392-.526-.594-.79.275-.51.497-1.046.664-1.6.33-.044.658-.09.977-.138A1.474 1.474 0 0021 11.402V9.598c0-.72-.536-1.344-1.247-1.45zm-.51 3.003c-.29.042-.586.083-.883.122a1.461 1.461 0 00-1.224 1.061 6.842 6.842 0 01-.647 1.56 1.462 1.462 0 00.115 1.617c.182.237.362.475.538.71l-.92.921a62.411 62.411 0 01-.71-.538 1.462 1.462 0 00-1.618-.115 6.846 6.846 0 01-1.56.647 1.461 1.461 0 00-1.061 1.224c-.039.297-.08.593-.122.883H9.85c-.042-.29-.083-.586-.122-.883a1.462 1.462 0 00-1.061-1.224 6.847 6.847 0 01-1.56-.647 1.462 1.462 0 00-1.617.115c-.236.181-.474.362-.71.538l-.921-.92c.175-.236.356-.474.538-.711.361-.47.406-1.104.115-1.617a6.845 6.845 0 01-.647-1.56 1.462 1.462 0 00-1.224-1.061c-.297-.04-.593-.08-.883-.122V9.849c.29-.042.586-.083.883-.122a1.462 1.462 0 001.224-1.061 6.84 6.84 0 01.647-1.56 1.462 1.462 0 00-.115-1.617 61.019 61.019 0 01-.538-.71l.92-.921c.236.176.475.357.71.538.47.361 1.105.406 1.618.115a6.847 6.847 0 011.56-.647A1.461 1.461 0 009.727 2.64c.039-.297.08-.592.122-.882h1.302c.042.29.083.585.122.882a1.462 1.462 0 001.061 1.224c.544.15 1.069.368 1.56.647a1.462 1.462 0 001.617-.115c.236-.181.474-.362.71-.538l.921.92c-.175.236-.356.474-.538.711a1.462 1.462 0 00-.115 1.617c.28.491.497 1.016.647 1.56.156.568.637.985 1.224 1.062.297.038.593.079.883.121v1.302z",fill:"currentColor"}),i.createElement("path",{d:"M10.506 6.3A4.21 4.21 0 006.3 10.506a4.21 4.21 0 004.206 4.206 4.21 4.21 0 004.206-4.206A4.21 4.21 0 0010.506 6.3zm0 6.542a2.34 2.34 0 01-2.336-2.336 2.339 2.339 0 012.336-2.336 2.34 2.34 0 012.336 2.336 2.34 2.34 0 01-2.336 2.336z",fill:"currentColor"}))}),Lt=p.createIcon({displayName:"CloseIcon",viewBox:"0 0 10 10",path:i.createElement(i.Fragment,null,i.createElement("path",{fill:"currentColor",fillRule:"evenodd",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"1.5",d:"M5.337 5.013l3.324 3.325.107.107-.2.2-.107-.106-3.325-3.325L1.74 8.61l-.1.1-.214-.213.1-.1L4.922 5 1.604 1.682l-.107-.107.2-.201.107.107 3.319 3.318 3.273-3.273.1-.1.215.214-.1.1-3.274 3.273z"}))}),kt=p.createIcon({displayName:"UploadImageIcon",viewBox:"0 0 84 84",path:i.createElement(i.Fragment,null,i.createElement("circle",{cx:"42",cy:"42",r:"41.5",fill:"#424242",stroke:"#EEE"}),i.createElement("path",{fill:"#000",d:"M59.58 29H25v25.56h34.58V29z",opacity:"0.502"}),i.createElement("path",{fill:"#fff",d:"M37.968 36.668l9.262 12.78H28.705l9.263-12.78z"}),i.createElement("path",{fill:"#fff",d:"M49.083 43.058l5.558 6.39H43.525l5.558-6.39z"}),i.createElement("path",{fill:"#D8D8D8",stroke:"#fff",d:"M57.904 52.558h3.89v.228h-3.891v3.964h-.242v-3.964h-3.884v-.228h3.884v-3.825h.243v3.825z"}),i.createElement("circle",{cx:"72",cy:"72",r:"11.5",fill:"#E09",stroke:"#fff"}),i.createElement("path",{fill:"#fff",d:"M66.04 75.008l-.013 2.418c0 .137.05.273.15.372.098.1.222.15.359.15l2.406-.013c.137 0 .26-.05.36-.149l8.31-8.31a.524.524 0 000-.732l-2.382-2.406a.524.524 0 00-.731 0l-1.662 1.674-6.648 6.636a.553.553 0 00-.15.36zm8.83-7.579l1.675 1.675-.942.942-1.675-1.674.943-.943zm-7.8 7.802l6.126-6.127 1.675 1.674-6.127 6.115-1.687.012.012-1.674z"}))});var yt;const Ht=d.label(yt||(yt=w(["\n font-family: ",";\n font-weight: 600;\n font-size: 13px;\n line-height: 1.15;\n letter-spacing: 0.5px;\n color: ",";\n text-transform: uppercase;\n"])),e=>e.theme.fontFamily,e=>e.theme.commons.main);Ht.defaultProps={theme:y};var Vt,Nt={isEmail:e=>n=>/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(n)?void 0:e,required:e=>n=>n?void 0:e,min:(e,n)=>t=>t&&t.lengtht=>t&&t.length>e?n:void 0,composeValidators:function(){for(var e=arguments.length,n=new Array(e),t=0;tn.reduce((n,t)=>n||t(e),void 0)}};const Zt=d.textarea(Vt||(Vt=w(["\n ","\n font-family: ",";\n font-size: 16px;\n color: #000000;\n border: none;\n border-bottom: 1px solid #AAAAAA;\n padding: 0 0 8px;\n flex: 1;\n background: none;\n min-height: 109px;\n\n &[disabled] {\n color: #D1CDD2;\n background: none;\n }\n\n &:focus {\n outline: none;\n border-bottom: 1px solid ",";\n }\n\n &::placeholder {\n color: ",";\n }\n &::-webkit-input-placeholder {\n color: ",";\n }\n &::-moz-placeholder {\n color: ",";\n }\n &:-ms-input-placeholder {\n color: ",";\n }\n &:-moz-placeholder {\n color: ",";\n }\n\n ","\n"])),e=>e.fullWidth&&"width: 100%;",y.fontFamily,y.brand.main,y.commons.dark,y.commons.dark,y.commons.dark,y.commons.dark,y.commons.dark,e=>e.invalid&&"border-color: #ff0931;");var Ft,It,St,Bt;Zt.displayName="Textarea";const Pt=d.input(Ft||(Ft=w(["\n padding: 0 60px 0 15px;\n width: 100%;\n height: 40px;\n\n font-family: ",";\n font-size: 14px;\n line-height: 22px;\n color: ",";\n border: none;\n box-sizing: border-box;\n background-color: unset;\n\n &[disabled] {\n color: #d1cdd2;\n background: unset;\n }\n\n &::placeholder,\n &::-webkit-input-placeholder,\n &::-moz-placeholder,\n &:-ms-input-placeholder,\n &:-moz-placeholder {\n color: ",";\n font-family: ",";\n }\n\n ","\n"])),e=>e.theme.fontFamily,e=>e.theme.commons.dark,e=>e.theme.commons.dark,e=>e.theme.fontFamily,e=>{let{border:n,value:t,theme:l,invalid:r}=e;return n&&m.css(It||(It=w(["\n border: 1px solid;\n border-radius: 7px;\n ","\n ","\n "])),t?m.css(Bt||(Bt=w(["\n &:hover,\n &:focus {\n border-color: ",";\n }\n border-color: ",";\n "])),l.brand.main,l.brand.main):m.css(St||(St=w(["\n &:hover,\n &:focus {\n border-color: ",";\n }\n border-color: ",";\n "])),l.commons.main,l.commons.main),r&&"border-color: "+l.error+";")});var At,Rt,Tt;Pt.defaultProps={invalid:!1,type:"text",theme:y};const Ot=d(gt)(At||(At=w(["\n border: 1px solid;\n border-radius: 7px;\n padding: 0;\n ","\n\n ","\n"])),e=>e.value?m.css(Tt||(Tt=w(["\n &:hover,\n &:focus {\n border-color: ",";\n }\n border-color: ",";\n "])),e.theme.brand.main,e.theme.brand.main):m.css(Rt||(Rt=w(["\n &:hover,\n &:focus {\n border-color: ",";\n }\n border-color: ",";\n "])),e.theme.commons.main,e.theme.commons.main),e=>e.invalid&&"\n border-color: "+e.theme.error+";\n ");var jt;Ot.defaultProps={theme:y};const Dt=e=>{let{onClick:n,checked:t,disabled:l}=e;return i.createElement(_t,null,i.createElement("input",{onClick:n,type:"checkbox",checked:t,disabled:l}),i.createElement("span",{className:"slider"}))},_t=d.label(jt||(jt=w(["\n position: relative;\n display: inline-block;\n width: 28px;\n min-width: 28px;\n height: 14px;\n border-radius: 50%;\n box-shadow: 3px 3px 10px 1px rgb(138 138 138 / 55%);\n\n input {\n opacity: 0;\n width: 0;\n height: 0;\n }\n\n .slider {\n position: absolute;\n cursor: pointer;\n border-radius: 34px;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background-color: #858585;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n .slider::before {\n position: absolute;\n content: '';\n height: 12px;\n width: 12px;\n border-radius: 50%;\n left: 1px;\n bottom: 1px;\n background-color: white;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n input:checked + .slider {\n background-color: #50e3c2;\n }\n\n input:checked + .slider::before {\n -webkit-transform: translateX(14px);\n -ms-transform: translateX(14px);\n transform: translateX(14px);\n }\n"])));var Ut;const qt=d.div(Ut||(Ut=w(["\n display: flex;\n align-items: center;\n\n .text {\n font-size: '13px';\n font-weight: 800;\n margin-right: 8px;\n color: ",";\n }\n"])),e=>{let{disabled:n}=e;return n?"#858585":"#50E3C2"}),Wt=e=>{let{children:n,label:t,name:l,direction:r}=e;const{input:a,meta:o}=g.useField(l);return i.createElement(p.FormControl,{isInvalid:(o.error||o.submitError)&&o.touched,mb:4},i.createElement(p.Flex,{direction:"row",justify:"space-between"},i.createElement(p.FormLabel,null,t),(o.error||o.submitError)&&o.touched&&i.createElement(ut,{color:"error"},o.error||o.submitError)),i.createElement(p.RadioGroup,{onChange:a.onChange,value:a.value},i.createElement(p.Stack,{direction:r,spacing:4},n)))};Wt.defaultProps={direction:"row"};const Gt=e=>{let{children:n,onChange:t,signingUrl:l,disabled:r}=e;const a=i.useRef(null);return i.createElement("div",{className:"wrapper-upload-file-button"},i.createElement("button",{onClick:e=>{null==e||e.preventDefault(),null==a||a.current.click()},disabled:r},n),i.createElement(v,{signingUrl:l,accept:"image/*",onProgress:e=>{console.log("onProgress",{args:e})},onError:e=>{console.log("onError",{args:e})},onFinish:e=>{let{signedUrl:n}=e;const l=n.substring(0,n.indexOf("?"));console.log("onFinish",{imageUrl:l}),t(l)},inputRef:a,style:{display:"none"}}))},Xt=e=>{const{label:n,helpText:t,name:l,disabled:r,alt:a,signingUrl:o,uploadImageIcon:c,removeTextButton:s,borderRadius:m,boxSize:d,...h}=e,{input:u}=g.useField(l,h);return i.createElement(p.Stack,{direction:"row",spacing:6,mb:4,align:"center"},i.createElement(Gt,{onChange:u.onChange,disabled:r,signingUrl:o},u.value?i.createElement(p.Box,{position:"relative",boxSize:d,borderRadius:m},i.createElement(p.Image,{alt:a,src:u.value}),i.createElement(p.Box,{position:"absolute",bottom:"3px",right:"0"},i.createElement(xt,{color:"white",boxSize:6}))):i.createElement(c,{boxSize:d})),i.createElement(p.FormControl,{id:l+"-id"},i.createElement(p.FormLabel,null,n),t&&i.createElement(p.FormHelperText,{mt:3,color:"gray.400",fontSize:"md"},t),e.formData&&i.createElement(p.Button,{type:"button",variant:"link",fontWeight:"normal",colorScheme:"gray",onClick:()=>e.onChange(null)},s)))};var Yt;Xt.defaultProps={uploadImageIcon:kt,removeTextButton:"Remover",borderRadius:"50%",boxSize:"85px"};const $t=d.div(Yt||(Yt=w(["\n display: flex;\n height: 40px;\n background-color: ",";\n align-items: flex-end;\n\n & > a {\n color: inherit;\n text-decoration: none;\n }\n"])),e=>{let{theme:n}=e;return n.brand.dark});var Jt;$t.defaultProps={theme:y};const Kt=d(x.ToastContainer)(Jt||(Jt=w(["\n .Toastify__toast {\n font-family: Nunito Sans;\n font-size: 16px;\n color: #fff;\n\n padding: 15px 18px;\n }\n .Toastify__toast--success {\n background-color: #50e3c2;\n }\n"]))),Qt=()=>i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"18",height:"18",fill:"none",viewBox:"0 0 18 18"},i.createElement("g",{clipPath:"url(#clip0)"},i.createElement("path",{fill:"#fff",d:"M13.034 17.965l-1.914-.002c-2.408 0-4.133-.209-5.43-.657-.276-.097-.517-.204-.73-.299-.377-.167-.674-.3-.983-.3H2.72c-.381 0-.932-.04-1.321-.392-.417-.376-.465-.922-.465-1.3V9.277c0-.526.162-.971.469-1.286.22-.226.628-.496 1.317-.496l.111.001c.393.004 1.04.011 1.458-.351l.073-.136c.015-.03.029-.054.04-.073l.01-.02a.856.856 0 01.104-.182 6.17 6.17 0 01.692-.957c.482-.526.928-.798 1.322-1.038.463-.282.797-.486 1.088-1.053l.02-.04c.436-.847.616-1.197.725-1.618.037-.143.053-.293.048-.446C8.37.988 8.665.077 9.643-.032l.029-.003h.03c.594 0 1.092.14 1.48.418.576.412.868 1.082.868 1.992 0 1.622-.397 2.92-.74 3.737l4.081.511c.978.057 1.733.94 1.688 1.982a2.104 2.104 0 01-.602 1.399c.33.323.505.76.486 1.264-.006.505-.161.908-.46 1.199-.117.112-.246.199-.383.266.232.306.357.678.357 1.072 0 .537-.204 1.028-.574 1.38a1.93 1.93 0 01-1.114.516c.065.18.095.375.087.58-.001.083-.009.234-.02.306a1.343 1.343 0 01-.402.787c-.407.386-.898.59-1.42.59zM2.72 8.55c-.511 0-.73.217-.73.728v5.737c0 .188.02.431.118.519.049.044.194.119.612.119h1.257c.534 0 .96.19 1.413.391.204.09.415.184.648.266 1.164.402 2.827.599 5.082.599l1.915.001c.248 0 .481-.1.691-.3.027-.026.063-.06.085-.188.003-.031.007-.11.008-.143V16.243c.01-.205-.092-.356-.3-.449a.625.625 0 01.307-1.196l.71.06a.879.879 0 00.637-.235.83.83 0 00.247-.618c0-.338-.247-.722-.79-.764a.575.575 0 01-.525-.636.57.57 0 01.58-.503c.324.006.867.016 1.08-.191.035-.034.139-.134.141-.461v-.018c.02-.465-.35-.647-.666-.718a.54.54 0 01-.42-.57.54.54 0 01.511-.492c.361-.018.672-.418.692-.892.02-.47-.294-.866-.701-.884l-.043-.004-4.156-.52a1.006 1.006 0 01-.753-.5 1.002 1.002 0 01-.054-.902 8.77 8.77 0 00.678-3.375c0-1.18-.666-1.35-1.26-1.355-.116.018-.175.07-.22.19a.88.88 0 00-.048.308v.017c.01.258-.017.513-.08.757-.139.534-.348.942-.808 1.836l-.02.04c-.426.83-.96 1.156-1.477 1.47-.35.214-.713.435-1.094.851-.174.19-.392.495-.58.814l-.034.053c-.02.046-.041.08-.055.105l-.012.021-.011.022c-.032.06-.07.129-.105.2l-.039.075-.06.06c-.729.728-1.77.717-2.271.712l-.1-.001zm11.093 7.863a.096.096 0 010 .002v-.002zm0-.002v.002-.002zm.007-.123v.004-.004zm.89-4.299h.001zm.675-1.484z"})),i.createElement("defs",null,i.createElement("clipPath",{id:"clip0"},i.createElement("path",{fill:"#fff",d:"M0 0H18V18H0z"}))));var el;Qt.displayName="SuccessIcon";const nl=d.div(el||(el=w(["\n display: flex;\n flex-direction: row;\n\n svg {\n margin-right: 18px;\n }\n"])));var tl;const ll=d.div(tl||(tl=w(["\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n padding: 0 ","px;\n overflow: hidden;\n /* background-color: ","; */\n"])),e=>{let{theme:n}=e;return n.body.padding},e=>e.theme.body);var rl;ll.defaultProps={theme:y};const al=d(e=>{let{className:n,children:t}=e;return i.createElement("div",{className:n},i.createElement(G,null),t)})(rl||(rl=w(["\n display: flex;\n flex-direction: row;\n background-color: ",";\n padding: 20px ","px;\n"])),e=>{let{theme:n}=e;return n.body.background.dark},e=>{let{theme:n}=e;return n.body.padding});var ol;al.defaultProps={theme:y};const cl=d.div(ol||(ol=w(["\n display: flex;\n flex-direction: column;\n min-height: 100vh;\n min-width: 100%;\n background-color: ",";\n font-family: ",";\n"])),e=>{let{theme:n}=e;return n.body.background.main},e=>{let{theme:n}=e;return n.fontFamily});var il;cl.defaultProps={theme:y};const sl=d.a(il||(il=w(["\n color: #000;\n text-decoration: none;\n\n &:hover {\n color: #000;\n text-decoration: none;\n }\n"]))),ml=e=>{let{brand:n,children:t,indexRoute:l,fixed:r=!1}=e;return i.createElement(p.Flex,{position:r?"fixed":"relative",direction:"row",w:"100%",bg:"black",px:[6,null,null,12],py:4,alignItems:"center"},i.createElement(sl,{href:l,title:"Bonde Home Link"},"small"!==n?i.createElement(G,null):i.createElement(Ze,{name:"Bonde"})),t)},dl=c.createContext({isOpen:!1,onToggle:()=>{}}),hl=e=>{let{children:n,scroll:t}=e;const{isOpen:l}=c.useContext(dl),r={minWidth:"200px",maxWidth:"400px",bg:"white",boxShadow:"base",mt:10};return t&&(r.overflowY="scroll",r.height="500px"),i.createElement(p.Fade,{in:l,style:{position:"absolute",top:l?"0":"-1000px",zIndex:2}},i.createElement(p.Box,Object.assign({},r),n))},pl=e=>{let{children:n,onClick:t}=e;const{onToggle:l}=c.useContext(dl);return i.createElement(p.Box,{cursor:"pointer",onClick:()=>{t&&t(),l()},_hover:{bg:"gray.100"}},n)},ul=e=>{let{children:n,color:t,...l}=e;const{isOpen:r,onToggle:a}=c.useContext(dl),o={...l,zIndex:3,rightIcon:i.createElement(r?vt:Ct,{boxSize:3}),onClick:a};return t&&(o.color=t,o._hover={color:t},o._active={color:t}),i.createElement(p.Button,Object.assign({},o),n)},fl=e=>{let{children:n}=e;const t=c.useRef(),[l,r]=c.useState(!1);return p.useOutsideClick({ref:t,handler:()=>r(!1)}),i.createElement(dl.Provider,{value:{isOpen:l,onToggle:()=>r(!l)}},i.createElement(p.Box,{ref:t,position:"relative",display:"flex"},n))},gl={settings:[zt,"Configurações"],mobilization:[Mt,"Mobilizações"],redes:[wt,"Redes"],chatbot:[bt,"Chatbot"]},vl=e=>{let{community:n,session:t,inverted:l}=e;const{apps:r,updateSession:a}=t,{modules:o}=n;return i.createElement(p.Stack,{direction:"row",spacing:2},Object.keys(o).filter(e=>!!o[e]).map((e,t)=>{let o="",c="";try{o=new URL("",r[e]).host,c=new URL("",window.location.href).host}catch(e){console.log("error URL",e)}const s=e=>({color:e+".200"}),m=o===c,d=gl[e][0],h=l?{color:m?"pink.200":"white",_hover:s(m?"pink":"gray")}:{color:"gray.400",_hover:s("gray")};return i.createElement(p.IconButton,{"aria-label":gl[e][1],key:"community-navigation-"+t,variant:"link",colorScheme:"gray",title:gl[e][1],icon:i.createElement(d,Object.assign({},h,{boxSize:[0,0,4,4]})),onClick:(u=r[e],function(){try{return a("community",n).then(()=>{window.location.href=u}),Promise.resolve()}catch(e){return Promise.reject(e)}})});var u}))},Cl=e=>{let{session:n,isMobile:t}=e;const{communities:l,community:r,updateSession:a}=n;return i.createElement(p.Stack,{direction:"row",spacing:2},i.createElement(fl,null,i.createElement(ul,{variant:"link",color:"white"},r?i.createElement(p.Stack,{direction:"row",spacing:4,alignItems:"center"},i.createElement(p.Image,{boxSize:6,rounded:"50%",src:(null==r?void 0:r.image)||"https://via.placeholder.com/100?text="+r.name.substring(0,1)}),i.createElement(p.Text,{color:"white",fontSize:"sm",fontWeight:"extrabold",textTransform:"uppercase"},null==r?void 0:r.name)):"Selecione uma comunidade"),i.createElement(hl,{scroll:l.length>10},l.map(e=>i.createElement(pl,{key:e.id,onClick:()=>{a("community",e)}},i.createElement(p.Stack,{direction:"row",spacing:4,p:4},i.createElement(p.Image,{boxSize:8,rounded:"50%",src:e.image||"https://via.placeholder.com/100?text="+e.name.substring(0,1)}),i.createElement(p.Text,null,e.name)))))),r&&!t&&i.createElement(vl,{community:r,session:n,inverted:!0}))},bl=e=>{let{session:n}=e;const{currentUser:t,logout:l}=n,r=t.firstName+" "+t.lastName,a=i.createElement(p.Stack,{spacing:1},i.createElement(p.Heading,{as:"h3",size:"md"},r),i.createElement(p.Text,{fontSize:"md",color:"gray.200"},t.email));return i.createElement(p.Menu,{variant:"link",colorScheme:"pink"},e=>{let{isOpen:n}=e;return i.createElement(i.Fragment,null,i.createElement(p.MenuButton,{"aria-label":"User Menu",as:p.Button,variant:"dropdown",color:"white",rightIcon:i.createElement(n?vt:Ct,{boxSize:3})},r),i.createElement(p.MenuList,{zIndex:"3"},i.createElement(p.MenuGroup,{title:a},i.createElement(p.MenuItem,{onClick:l,icon:i.createElement(Lt,{boxSize:3})},"Logout"))))})},xl=e=>{let{session:n}=e;return i.createElement(p.Button,{type:"button",variant:"ghost",onClick:n.logout},i.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",fill:"none",viewBox:"0 0 24 24"},i.createElement("path",{fill:"#fff",d:"M16.484 17.563a.745.745 0 00.54.223c.204 0 .39-.074.539-.223l5.023-5.023a.493.493 0 00.093-.112s.019-.019.019-.037c.018-.037.037-.075.056-.093 0-.019 0-.037.018-.037.019-.038.019-.056.038-.093.018-.056.018-.094.018-.15 0-.055 0-.092-.018-.148a.142.142 0 00-.038-.093c0-.019 0-.037-.018-.037l-.056-.112s0-.019-.019-.019c-.018-.037-.056-.074-.093-.111l-5.023-5.024a.763.763 0 00-1.08 1.08l3.722 3.72H6.977a.754.754 0 00-.763.763c0 .428.335.763.763.763h13.228l-3.721 3.721c-.298.26-.298.744 0 1.042z"}),i.createElement("path",{fill:"#fff",d:"M1.954 22.79H12a.754.754 0 00.763-.762V14.53a.754.754 0 00-.763-.763.754.754 0 00-.763.763v6.735h-8.52V2.716h8.52v6.735c0 .428.335.763.763.763a.754.754 0 00.763-.763V1.953A.754.754 0 0012 1.191H1.954a.754.754 0 00-.763.762v20.075c.019.428.353.763.763.763z"})))};var El;const wl=E.div(El||(El=w(["\n display: flex;\n flex-grow: 1;\n background-color: ",";\n\n ","\n"])),e=>e.bgColor,e=>e.isMobile&&"\n padding-top: 65px;\n overflow-y: auto;\n "),Ml=e=>{let{languageTool:n}=e;return n?i.createElement(al,null,i.createElement(n,null)):i.createElement(al,null)},zl=e=>{let{children:n,bgColor:t,disableNavigation:l,indexRoute:r,isMobile:a,session:o,languageTool:c}=e;return i.createElement(cl,null,i.createElement(ml,{fixed:a,indexRoute:r,brand:l?"default":"small"},i.createElement(p.Flex,{direction:"row",grow:1,justify:"space-between"},l?i.createElement("div",null):i.createElement(Cl,{session:o}),i.createElement(a?xl:bl,{session:o}))),i.createElement(wl,{isMobile:!!a,bgColor:t||"rgb(247,247,247)"},n),a?null:i.createElement(Ml,{languageTool:c}))};zl.defaultProps={disableNavigation:!1},Object.defineProperty(exports,"toast",{enumerable:!0,get:function(){return x.toast}}),exports.BModal=Ge,exports.BTable=Sn,exports.Body=ll,exports.Bonde=G,exports.Card=On,exports.CleanButton=Be,exports.ColorField=e=>{const{label:n,name:t,helpText:l,...r}=e,{input:a,meta:o}=g.useField(t,r);return i.createElement(p.FormControl,{isInvalid:(o.error||o.submitError)&&o.touched,mb:4},i.createElement(p.Flex,{direction:"row",justify:"space-between"},i.createElement(p.Stack,{direction:"row",spacing:2,align:"center"},i.createElement(p.FormLabel,null,n),l&&i.createElement(p.Tooltip,{label:l},i.createElement(Et,{boxSize:4}))),(o.error||o.submitError)&&o.touched&&i.createElement(ut,{color:"error"},o.error||o.submitError)),i.createElement(C.SketchPicker,{color:a.value,onChangeComplete:e=>a.onChange(e.hex)}))},exports.CommunityMenu=vl,exports.ConnectedForm=e=>{let{children:n,onSubmit:t,...l}=e;return i.createElement(g.Form,Object.assign({onSubmit:t},l),e=>{let{handleSubmit:t,...l}=e;return i.createElement(dt,{onSubmit:t},n(l))})},exports.Dropdown=lt,exports.DropdownIconItem=at,exports.DropdownImageInput=ct,exports.DropdownImageItem=st,exports.Empty=e=>{let{message:n}=e;return i.createElement($,null,i.createElement(Y,null),n&&i.createElement(T.H4,null,n))},exports.FontsLoader=()=>i.createElement(s,{fonts:[{font:"Nunito Sans",weights:[400,700,800]}],subsets:["cyrillic-ext","greek"]}),exports.Footer=al,exports.Form=dt,exports.FormField=gt,exports.Header=T,exports.Hint=ut,exports.Icon=Ze,exports.InputField=e=>{const{variant:n,label:t,name:l,placeholder:r,helpText:a,type:o,disabled:c,onBlur:s,...m}=e,{input:d,meta:h}=g.useField(l,m);return i.createElement(p.FormControl,{isInvalid:(h.error||h.submitError)&&h.touched,mb:4},i.createElement(p.Flex,{direction:"row",justify:"space-between"},i.createElement(p.Stack,{direction:"row",spacing:2,align:"center"},i.createElement(p.FormLabel,null,t),a&&i.createElement(p.Tooltip,{label:a},i.createElement(Et,{color:"gray.300",boxSize:3}))),(h.error||h.submitError)&&h.touched&&i.createElement(ut,{color:"error"},h.error||h.submitError)),i.createElement(p.Input,{variant:n,value:d.value,onChange:d.onChange,placeholder:r,type:o||d.type,disabled:c,onBlur:e=>{s&&s(e),d.onBlur(e)}}))},exports.Label=Ht,exports.Link=Ie,exports.Loading=D,exports.Main=cl,exports.Message=Dn,exports.Navbar=ml,exports.Navigation=$t,exports.Pagination=En,exports.PerformDropdown=fl,exports.PerformDropdownButton=ul,exports.PerformDropdownItem=pl,exports.PerformDropdownList=hl,exports.RadioField=Wt,exports.RoundInput=Pt,exports.RoundInputField=e=>{let{name:n,type:t,label:l,placeholder:r,disabled:a,onBlur:o,...c}=e;const{input:s,meta:m}=g.useField(n,c);return i.createElement(Ot,{value:s.value,invalid:(m.error||m.submitError)&&m.touched},l&&i.createElement(Ht,null,l),(m.error||m.submitError)&&m.touched&&i.createElement(ut,{color:"error"},m.error||m.submitError),i.createElement(Pt,Object.assign({},s,{placeholder:r,type:t,invalid:(m.error||m.submitError)&&m.touched,disabled:a,onBlur:e=>{o&&o(e),s.onBlur(e)}})))},exports.RoundSelect=vn,exports.RoundSelectField=e=>{let{label:n,name:t,placeholder:l,disabled:r,options:a,menuPortalTarget:o,isClearable:c,onChange:s,maxMenuHeight:m=300,menuPlacement:d="bottom",...h}=e;const{input:p,meta:u}=g.useField(t,h);return i.createElement(gt,null,n&&i.createElement(Ht,null,n),(u.error||u.submitError)&&u.touched&&i.createElement(ut,{color:"error"},u.error||u.submitError),i.createElement(vn,Object.assign({},p,{options:a,placeholder:l,invalid:(u.error||u.submitError)&&u.touched,disabled:r,menuPortalTarget:o,isClearable:c,maxMenuHeight:m,menuPlacement:d,onChange:e=>{s&&s(e),p.onChange(e)}})))},exports.S3UploadField=Xt,exports.SelectField=e=>{const{label:n,name:t,disabled:l,children:r,...a}=e,{input:o,meta:c}=g.useField(t,a);return i.createElement(p.FormControl,{isInvalid:(c.error||c.submitError)&&c.touched,mb:4},i.createElement(p.Flex,{direction:"row",justify:"space-between"},i.createElement(p.FormLabel,null,n),(c.error||c.submitError)&&c.touched&&i.createElement(ut,{color:"error"},c.error||c.submitError)),i.createElement(p.Select,Object.assign({disabled:l},o),r))},exports.SessionUI=zl,exports.Shortcut=Oe,exports.Spacing=An,exports.Spinner=q,exports.Success=e=>{let{message:n}=e;return i.createElement(nl,null,i.createElement(Qt,null),i.createElement("span",null,n))},exports.SwitchField=e=>{const{label:n,name:t,disabled:l,textOff:r,textOn:a,...o}=e,{input:c,meta:s}=g.useField(t,o);return i.createElement(gt,null,(s.error||s.submitError)&&s.touched&&i.createElement(ut,{color:"error"},s.error||s.submitError),i.createElement(qt,{disabled:!c.value},n&&i.createElement(Ht,null,n),i.createElement("span",{className:"text"},c.value?a:r),i.createElement(Dt,{disabled:l,onClick:()=>c.onChange(!c.value),checked:c.value})))},exports.Tab=e=>{let{children:n,active:t,onClick:l}=e;const{colorMode:r}=b.useColorMode(),a={color:"dark"===r?"white":"black"};return t||"light"!==r||(a.color="black",a._hover={color:"gray.400"}),t||"dark"!==r||(a.color="white",a._hover={color:"gray.200"}),t&&(a.color="pink.200",a._hover={color:"pink.200",borderBottomColor:"pink.200"},a.borderBottomWidth="2px",a.borderBottomStyle="solid",a.borderBottomColor="pink.200"),i.createElement(p.Button,Object.assign({variant:"link",colorScheme:"white",onClick:l,px:0,pb:2,mr:5},a),n)},exports.Textarea=Zt,exports.TextareaField=e=>{const{label:n,name:t,placeholder:l,disabled:r,...a}=e,{input:o,meta:c}=g.useField(t,a);return i.createElement(gt,null,i.createElement(Ht,null,n),(c.error||c.submitError)&&c.touched&&i.createElement(ut,{color:"error"},c.error||c.submitError),i.createElement("div",{style:{display:"flex",paddingTop:"8px"}},i.createElement(Zt,Object.assign({placeholder:l,invalid:(c.error||c.submitError)&&c.touched,disabled:r},o))))},exports.Theme=y,exports.ToastContainer=Kt,exports.Validators=Nt;
+//# sourceMappingURL=bonde-components.cjs.production.min.js.map
diff --git a/clients/libs/components/__dist/bonde-components.cjs.production.min.js.map b/clients/libs/components/__dist/bonde-components.cjs.production.min.js.map
new file mode 100644
index 0000000000..c9a2033dc3
--- /dev/null
+++ b/clients/libs/components/__dist/bonde-components.cjs.production.min.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"bonde-components.cjs.production.min.js","sources":["../src/ui/await/Sparkles.tsx","../src/ui/await/LoadingSVG.tsx","../src/ui/base/theme.ts","../src/ui/content/Header.tsx","../src/ui/await/Loading.tsx","../src/ui/await/Spinner.tsx","../src/ui/content/Bonde.tsx","../src/ui/content/Empty.tsx","../src/ui/content/Icon/SVGIcons/ArrowDown.tsx","../src/ui/content/Icon/SVGIcons/ArrowLeft.tsx","../src/ui/content/Icon/SVGIcons/ArrowRight.tsx","../src/ui/content/Icon/SVGIcons/ArrowUp.tsx","../src/ui/content/Icon/SVGIcons/Bonde.tsx","../src/ui/content/Icon/SVGIcons/Bolt.tsx","../src/ui/content/Icon/SVGIcons/BoltUnfilled.tsx","../src/ui/content/Icon/SVGIcons/Bot.tsx","../src/ui/content/Icon/SVGIcons/Check.tsx","../src/ui/content/Icon/SVGIcons/Close.tsx","../src/ui/content/Icon/SVGIcons/Cloud.tsx","../src/ui/content/Icon/SVGIcons/Copy.tsx","../src/ui/content/Icon/SVGIcons/Info.tsx","../src/ui/content/Icon/SVGIcons/InfoMsg.tsx","../src/ui/content/Icon/SVGIcons/Network.tsx","../src/ui/content/Icon/SVGIcons/New.tsx","../src/ui/content/Icon/SVGIcons/Pencil.tsx","../src/ui/content/Icon/SVGIcons/Plus.tsx","../src/ui/content/Icon/SVGIcons/Search.tsx","../src/ui/content/Icon/SVGIcons/Settings.tsx","../src/ui/content/Icon/SVGIcons/Trash.tsx","../src/ui/content/Icon/SVGIcons/Ticket.tsx","../src/ui/content/Icon/SVGIcons/TicketRecurring.tsx","../src/ui/content/Icon/SVGIcons/User.tsx","../src/ui/content/Icon/SVGIcons/Window.tsx","../src/ui/content/Icon/SVGIcons/MapMarker.tsx","../src/ui/content/Icon/SVGIcons/Heart.tsx","../src/ui/content/Icon/SVGIcons/Warning.tsx","../src/ui/content/Icon/SVGIcons/Whatsapp.tsx","../src/ui/content/Icon/SVGIcons/Eye.tsx","../src/ui/content/Icon/SVGIcons/Open.tsx","../src/ui/content/Icon/SVGIcons/Sync.tsx","../src/ui/content/Icon/index.tsx","../src/ui/content/Link.tsx","../src/ui/content/CleanButton.tsx","../src/ui/content/Shortcut.tsx","../src/ui/content/Modal.tsx","../src/ui/form/RoundSelect.tsx","../src/ui/content/Pagination.tsx","../src/ui/content/Table.tsx","../src/ui/layout/Spacing.tsx","../src/ui/content/Card.tsx","../src/ui/content/Tooltip/index.tsx","../src/ui/dropdown/ui/DropdownList.tsx","../src/ui/dropdown/ui/DropdownItem.tsx","../src/ui/dropdown/Dropdown.tsx","../src/ui/dropdown/ui/DropdownInput.tsx","../src/ui/dropdown/DropdownIconItem.tsx","../src/ui/dropdown/DropdownImageInput.tsx","../src/ui/dropdown/DropdownImageItem.tsx","../src/ui/form/Form.tsx","../src/ui/form/Hint.tsx","../src/ui/form/FormField.tsx","../src/icons/ArrowUpIcon.tsx","../src/icons/ArrowDownIcon.tsx","../src/icons/BotIcon.tsx","../src/icons/EditIcon.tsx","../src/icons/InfoIcon.tsx","../src/icons/NetIcon.tsx","../src/icons/PagesIcon.tsx","../src/icons/SettingsIcon.tsx","../src/icons/CloseIcon.tsx","../src/icons/UploadImageIcon.tsx","../src/ui/form/Label.tsx","../src/ui/form/Validators.ts","../src/ui/form/Textarea.tsx","../src/ui/form/RoundInput.tsx","../src/ui/form/RoundInputField.tsx","../src/ui/form/Switch.tsx","../src/ui/form/SwitchField.tsx","../src/ui/form/RadioField.tsx","../src/ui/form/S3UploadField.tsx","../src/ui/navigation/Navigation.tsx","../src/ui/notifications/StyledContainer.tsx","../src/ui/notifications/Icons/SuccessIcon.tsx","../src/ui/notifications/Success.tsx","../src/ui/page/Body.tsx","../src/ui/page/Footer.tsx","../src/ui/page/Main.tsx","../src/ui/page/Navbar.tsx","../src/ui/perform-dropdown/index.tsx","../src/session/CommunityMenu.tsx","../src/session/CommunitiesDropdown.tsx","../src/session/UserDropdown.tsx","../src/session/Logout.tsx","../src/session/BaseUI.tsx","../src/ui/form/ColorField.tsx","../src/ui/form/ConnectedForm.tsx","../src/FontsLoader.tsx","../src/ui/form/InputField.tsx","../src/ui/form/RoundSelectField.tsx","../src/ui/form/SelectField.tsx","../src/ui/navigation/Tab.tsx","../src/ui/form/TextareaField.tsx"],"sourcesContent":["import React from 'react';\nimport styled, { keyframes } from 'styled-components';\n\ninterface SparkProps {\n colorInit: string;\n d: string;\n duration: string;\n pulse: any;\n}\n\nconst Spark = styled.path`\n fill: ${props => props.colorInit};\n animation-name: ${props => props.pulse};\n animation-duration: ${props => props.duration};\n animation-iteration-count: infinite;\n`;\n\ninterface SparklesProps {\n color: string;\n colorInit: string;\n duration: string;\n}\n\nconst Sparkles: React.FC = ({ color, colorInit, duration }) => {\n return (\n \n \n \n \n \n \n \n );\n};\n\nSparkles.defaultProps = {\n colorInit: '#DBDBDB',\n color: '#35E3C3',\n duration: '6s',\n};\n\nexport default Sparkles;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Sparkles from './Sparkles';\n\nexport interface LoadingSVGProps {\n size?: 'small' | 'default' | 'large';\n color?: string;\n sparklesColor?: string;\n sparklesColorInit?: string;\n sparklesDuration?: string;\n}\n\n/**\n * Animated loading transition component.\n */\nconst LoadingSVG = styled(props => {\n const {\n className,\n color,\n sparklesColor,\n sparklesColorInit,\n sparklesDuration,\n } = props;\n\n return (\n \n \n \n \n \n );\n})`\n ${props =>\n props.size === 'small' &&\n `\n width: calc(0.5*176px);\n height: calc(0.5*135px);\n `}\n ${props =>\n props.size === 'default' &&\n `\n width: calc(0.75*176px);\n height: calc(0.75*135px);\n `}\n ${props =>\n props.size === 'large' &&\n `\n width: calc(1*176px);\n height: calc(1*135px);\n `}\n`;\n\nLoadingSVG.defaultProps = {\n color: '#050505',\n size: 'default',\n sparklesColor: '#35E3C3',\n sparklesColorInit: '#DBDBDB',\n sparklesDuration: '6s',\n};\n\nexport default LoadingSVG;\n","const theme = {\n brand: {\n main: '#ee0099',\n dark: '#000',\n light: '#fff',\n },\n commons: {\n dark: '#4A4A4A',\n main: '#aaa',\n light: '#eee',\n },\n fontFamily: \"'Nunito Sans', sans-serif\",\n body: {\n padding: 60,\n background: {\n light: '#fff',\n main: 'rgb(247,247,247)',\n dark: '#000',\n },\n },\n default: {\n color: {\n main: '#fff',\n },\n border: {\n main: '#ee0099',\n },\n background: {\n main: '#ee0099',\n hover: '#e2058a',\n focus: '#b4006c',\n },\n },\n dark: {\n color: {\n main: '#000',\n hover: '#4A4A4A',\n focus: '#9b9b9b',\n },\n border: {\n main: '#000',\n hover: '#4A4A4A',\n focus: '#9b9b9b',\n },\n background: {\n main: 'none',\n },\n },\n light: {\n color: {\n main: '#fff',\n hover: '#9b9b9b',\n focus: '#4A4A4A',\n },\n border: {\n main: '#fff',\n hover: '#eee',\n focus: '#4A4A4A',\n },\n background: {\n main: 'none',\n },\n },\n secondary: {\n color: {\n main: '#000',\n hover: '#424242',\n focus: '#9B9B9B',\n },\n border: {\n main: 'transparent',\n hover: 'transparent',\n focus: 'transparent',\n },\n background: {\n main: 'none',\n },\n disabled: {\n color: {\n main: '#AAAAAA',\n hover: '#AAAAAA',\n focus: '#AAAAAA',\n },\n background: {\n main: 'none',\n },\n },\n },\n error: '#FF2B4E',\n};\n\nexport default theme;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nexport interface TextProps {\n align?: 'left' | 'center' | 'right';\n bold?: boolean;\n uppercase?: boolean;\n}\n\n/**\n * The only true paragraph.\n */\nconst Text = styled.p`\n font-family: ${props => props.theme.fontFamily};\n font-size: 16px;\n font-weight: ${props => (props.bold ? 'bold' : 'normal')};\n line-height: 25px;\n color: ${props => props.theme.commons.dark};\n text-align: ${props => props.align};\n letter-spacing: normal;\n\n ${props => props.uppercase && 'text-transform: uppercase;'}\n`;\n\nText.defaultProps = {\n theme,\n align: 'left',\n uppercase: false,\n bold: false,\n};\n\nText.displayName = 'Text';\n\nconst annotate = (Component: any) => {\n Component.defaultProps = {\n theme,\n };\n\n return Component;\n};\n\nexport default {\n H1: annotate(styled(Text.withComponent('h1'))`\n font-size: 60px;\n font-weight: 900;\n line-height: 1;\n color: #000;\n `),\n H2: annotate(styled(Text.withComponent('h2'))`\n font-size: 36px;\n font-weight: 900;\n line-height: 1.22;\n color: #000;\n `),\n H3: annotate(styled(Text.withComponent('h3'))`\n font-size: 21px;\n font-weight: 800;\n line-height: 0.95;\n margin-bottom: 12px;\n color: #000;\n `),\n H4: annotate(styled(Text.withComponent('h4'))`\n font-size: 18px;\n font-weight: 800;\n line-height: 1.39;\n margin-bottom: 5px;\n color: #000;\n `),\n H5: annotate(styled(Text.withComponent('h5'))`\n font-size: 13px;\n line-height: 18px;\n color: #424242;\n letter-spacing: 0.005em;\n font-weight: 800;\n `),\n H6: annotate(styled(Text.withComponent('h6'))`\n font-size: 11px;\n line-height: 2.27;\n color: #424242;\n `),\n};\n","import React from 'react';\nimport styled from 'styled-components';\nimport LoadingSVG, { LoadingSVGProps } from './LoadingSVG';\nimport Header from '../content/Header';\n\ninterface FullSizeProps {\n background?: string;\n}\n\nconst FullSize = styled.div`\n position: absolute;\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100vh;\n align-items: center;\n justify-content: center;\n background: ${props => props.background};\n`;\n\ninterface LoadingProps extends LoadingSVGProps {\n fullsize?: boolean;\n background?: string;\n message?: string;\n messageComponent?: any;\n align?: 'center' | 'left' | 'right';\n}\n\ntype LoadingStylesProps = Pick;\n\nconst LoadingStyles = styled.div`\n text-align: ${props => props.align};\n`;\n\ninterface LoadingProps {\n align?: 'center' | 'left' | 'right';\n fullsize?: boolean;\n background?: string;\n message?: string;\n messageComponent?: any;\n}\n\n/**\n * Animated loading transition component.\n */\nconst Loading: React.FC = ({\n children,\n align,\n fullsize,\n background,\n message,\n messageComponent: MessageComponent,\n ...props\n}) => {\n return fullsize ? (\n \n \n {message ? {message} : children}\n \n ) : (\n \n \n {message ? {message} : children}\n \n );\n};\n\nLoading.defaultProps = {\n align: 'center',\n fullsize: false,\n background: 'rgba(219,219,219,0.31)',\n color: '#050505',\n size: 'default',\n sparklesColor: '#35E3C3',\n sparklesColorInit: '#DBDBDB',\n sparklesDuration: '6s',\n messageComponent: Header.H3,\n};\n\nexport default Loading;\n","import React from 'react';\nimport styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Ring = styled.div<{ theme: any }>`\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n & div {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 64px;\n height: 64px;\n margin: 8px;\n border: 8px solid ${({ theme }) => theme.commons.light};\n border-radius: 50%;\n animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: ${({ theme }) => theme.commons.light} transparent transparent\n transparent;\n }\n & div:nth-child(1) {\n animation-delay: -0.45s;\n }\n & div:nth-child(2) {\n animation-delay: -0.3s;\n }\n & div:nth-child(3) {\n animation-delay: -0.15s;\n }\n @keyframes lds-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n`;\n\nconst Spinner = ({ theme }: any) => {\n return (\n \n
\n
\n
\n
\n \n );\n};\n\nSpinner.defaultProps = {\n theme,\n};\n\nexport default Spinner;\n","import React from 'react';\nimport styled from 'styled-components';\n\ninterface BondeProps {\n large?: boolean;\n}\n\nconst Bonde = styled(({ className, large }: any) => (\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n)) `\n display: flex;\n ${props =>\n !props.large &&\n `\n height: calc(1.5 * 15px);\n `}\n`;\n\nBonde.defaultProps = {\n large: false,\n};\n\nexport default Bonde;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Header from './Header';\n\nconst EmptyIcon = () => {\n return (\n \n \n \n \n \n \n );\n};\n\nconst EmptyWrap = styled.div`\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n align-items: center;\n justify-content: center;\n\n ${Header.H4} {\n margin-top: 15px;\n font-weight: normal;\n }\n`;\n\ninterface EmptyProps {\n message?: string;\n}\n\nconst Empty: React.FC = ({ message }) => (\n \n \n {message && {message} }\n \n);\n\nexport default Empty;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowDown';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowLeft';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowRight';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowUp';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className, color }: any) => (\n \n \n \n \n \n \n \n \n \n \n \n {/* avoid this type of code, this is the type of component that we should discuss if it is in the right place. */}\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Bonde';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Bolt';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.BoltUnfilled';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Bot';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => {\n return (\n \n \n \n );\n};\n\nIcon.displayName = 'Icon.Check';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Times';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Cloud';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon: React.FC = ({ className }: any) => {\n return (\n \n \n \n );\n};\n\nIcon.displayName = 'Icon.Copy';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Info';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n \n \n \n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.InfoMsg';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Network';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.New';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Pencil';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Plus';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Search';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Settings';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Trash';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Ticket';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.TicketRecurring';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.User';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Window';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.MapMarker';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Heart';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon: React.FC = ({ className }: any) => {\n return (\n \n \n \n \n \n \n \n \n \n \n \n );\n};\n\nIcon.displayName = 'Icon.Warning';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Eye';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Show';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Open';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n \n \n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Sync';\n\nexport default Icon;\n","import React from 'react';\nimport styled from 'styled-components';\nimport * as SVGIcons from './SVGIcons';\n\ninterface IconProps {\n className?: string;\n size?: 'default' | 'small' | 'large' | 'xs';\n name: keyof typeof SVGIcons;\n color?: string;\n}\n\nconst IconController: React.FC = ({ name, ...props }) => {\n const IconSVG = SVGIcons[name];\n if (IconSVG) return ;\n else return ;\n};\n\nconst Icon = styled(IconController)`\n vertical-align: middle;\n ${props =>\n props.size === 'xs' &&\n `\n width: calc(0.75*20px);\n height: calc(0.75*15px);\n `}\n ${props =>\n props.size === 'small' &&\n `\n width: calc(1*20px);\n height: calc(1*15px);\n `}\n ${props =>\n props.size === 'default' &&\n `\n width: calc(1.5*20px);\n height: calc(1.5*15px);\n `}\n ${props =>\n props.size === 'large' &&\n `\n width: calc(2*20px);\n height: calc(2*15px);\n `}\n\n &.fill {\n path {\n fill: ${props => props.color};\n }\n }\n &.stroke {\n path {\n stroke: ${props => props.color};\n }\n }\n`;\n\nIcon.defaultProps = {\n size: 'default',\n color: '#000',\n};\n\nexport default Icon;\n","import React from 'react';\nimport styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Link = styled((props: any) => {\n const { component: Component, className, ...ownProps } = props;\n return ;\n})`\n font-family: ${props => props.theme.fontFamily};\n font-weight: 600;\n font-size: 13px;\n text-transform: uppercase;\n text-decoration: none;\n color: ${props => props.theme.dark.color.main};\n cursor: pointer;\n\n &:hover,\n &:active {\n color: ${props => props.theme.dark.color.hover};\n text-decoration: underline;\n }\n &:focus {\n color: ${props => props.theme.dark.color.focus};\n }\n`;\n\nLink.defaultProps = {\n theme,\n component: 'a',\n};\n\nexport default Link;\n","import styled from 'styled-components';\n\nconst CleanButton = styled.button`\n border: none;\n margin: 0;\n padding: 0;\n width: auto;\n overflow: visible;\n\n background: transparent;\n\n /* inherit font & color from ancestor */\n color: inherit;\n font: inherit;\n\n /* Normalize 'line-height'. Cannot be changed from 'normal' in Firefox 4+. */\n line-height: normal;\n\n /* Corrects font smoothing for webkit */\n -webkit-font-smoothing: inherit;\n -moz-osx-font-smoothing: inherit;\n\n /* Corrects inability to style clickable 'input' types in iOS */\n -webkit-appearance: none;\n\n /* Remove excess padding and border in Firefox 4+ */\n &::-moz-focus-inner {\n border: 0;\n padding: 0;\n }\n`;\n\nCleanButton.displayName = 'CleanButton';\n\nexport default CleanButton;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Header from './Header';\nimport CleanButton from './CleanButton';\nimport theme from '../base/theme';\n\nconst Wrapper = styled(CleanButton)<{ theme: any }>`\n width: 200px;\n height: 90px;\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 5px;\n cursor: pointer;\n background-color: ${({ theme }) => theme.brand.light};\n padding: 0px 20px;\n\n display: grid;\n grid-template-columns: auto auto;\n align-items: center;\n justify-content: center;\n grid-column-gap: 20px;\n`;\n\nconst Text = styled(Header.H5)<{ theme: any }>`\n text-transform: uppercase;\n margin: 0;\n text-align: left;\n color: ${({ theme }) => theme.brand.dark};\n`;\n\nconst Shortcut = ({\n icon,\n text,\n theme,\n}: {\n icon: React.ReactElement;\n text: string;\n theme: any;\n}) => (\n \n {icon}\n {text} \n \n);\n\nShortcut.defaultProps = {\n theme,\n};\n\nexport default Shortcut;\n","import React from 'react';\nimport styled from 'styled-components';\nimport theme from '../base/theme';\nimport CleanButton from './CleanButton';\n\ntype ModalProps = {\n isOpen?: boolean;\n};\n\nconst ModalStyled = styled.div`\n display: ${props =>\n !props.isOpen ? 'none' : 'block'}; /* Hidden by default */\n position: fixed; /* Stay in place */\n z-index: 1; /* Sit on top */\n left: 0;\n top: 0;\n width: 100%; /* Full width */\n height: 100%; /* Full height */\n overflow: auto; /* Enable scroll if needed */\n background-color: rgb(0, 0, 0); /* Fallback color */\n background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */\n z-index: 3;\n`;\n\ntype ModalContent = {\n width: string;\n theme: any;\n height?: string;\n};\n\nconst ModalContentStyled = styled.div`\n background-color: ${props => props.theme.brand.light};\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 4px;\n padding: 30px;\n width: ${props => props.width};\n height: ${props => (props.height ? `${props.height}` : 'auto')};\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n`;\n\nconst CloseButtonStyled = styled(CleanButton)`\n color: ${props => props.theme.commons.main};\n font-size: 28px;\n font-weight: bold;\n float: right;\n &:hover,\n &:focus {\n color: ${props => props.theme.brand.dark};\n text-decoration: none;\n cursor: pointer;\n }\n`;\n\ntype Props = {\n /** Flag used to control modal open and close */\n isOpen?: boolean;\n /** Width of modal content in percent (%) */\n width: string;\n height?: string;\n /** Function used when closing modal */\n onClose: () => void;\n children: React.ReactNode;\n};\n\nconst Modal = ({ children, isOpen, onClose, width }: Props) => (\n \n \n \n ×\n \n {children}\n \n \n);\n\nModal.defaultProps = {\n isOpen: false,\n width: 300,\n};\n\n/** @component */\nexport default Modal;\n","import React, { useState } from 'react';\nimport styled, { css } from 'styled-components';\nimport ReactSelect, { components } from 'react-select';\n\nimport theme from '../base/theme';\nimport Icon from '../content/Icon';\n\nconst SelectIcon = styled.div<{ show: boolean }>`\n transition: all 350ms;\n\n ${props =>\n props.show &&\n css`\n transform: rotate(180deg);\n position: relative;\n top: 2px;\n `}\n`;\n\nconst StyledControl = styled.div<{\n value: string;\n theme: any;\n invalid: boolean;\n}>`\n & > .Select__control {\n // Sets clear button color dinamically\n & > .Select__indicators > .Select__clear-indicator {\n color: ${props => props.theme.brand.main};\n }\n background-color: unset;\n ${props =>\n !props.value\n ? css`\n &:hover,\n &:focus {\n border-color: ${props.theme.commons.main};\n }\n border-color: ${props.theme.commons.main};\n `\n : css`\n &:hover,\n &:focus {\n border-color: ${props.theme.brand.main};\n }\n border-color: ${props.theme.brand.main};\n `}\n ${props =>\n props.invalid &&\n css`\n &:hover,\n &:focus {\n border-color: ${props.theme.error};\n }\n border-color: ${props.theme.error};\n `}\n box-shadow: none;\n width: 100%;\n & > .Select__value-container {\n & > .Select__placeholder {\n font-family: ${props => props.theme.fontFamily};\n color: ${props => props.theme.commons.dark};\n }\n }\n }\n`;\n\nStyledControl.defaultProps = {\n theme,\n};\n\nconst StyledSingleValue = styled.div<{\n isDisabled: boolean;\n theme: any;\n value: string;\n}>`\n & > .Select__single-value {\n opacity: ${props => (props.isDisabled ? 0.5 : 1)};\n transition: opacity 300ms;\n font-family: ${props => props.theme.fontFamily};\n color: ${props =>\n !props.value ? props.theme.commons.main : props.theme.brand.main};\n }\n`;\n\nStyledSingleValue.defaultProps = {\n theme,\n};\n\nconst StyledOption = styled.div<{\n theme: any;\n isSelected: boolean;\n isFocused: boolean;\n isDisabled: boolean;\n}>`\n & > .Select__option {\n font-family: ${props => props.theme.fontFamily};\n cursor: ${props => (props.isDisabled ? 'not-allowed' : 'default')};\n ${props =>\n props.isSelected &&\n css`\n background-color: rgba(74, 74, 74, 0.5);\n &:active {\n backgroundcolor: rgba(74, 74, 74, 0.5);\n }\n `}\n ${props =>\n props.isFocused &&\n css`\n background-color: rgba(74, 74, 74, 0.3);\n `}\n ${props =>\n props.isDisabled &&\n css`\n color: #ccc;\n `}\n color: ${props =>\n props.isSelected ? props.theme.brand.light : props.theme.commons.dark};\n }\n`;\n\nconst StyledMenu = styled.div`\n & > .Select__menu {\n z-index: 3;\n }\n`;\n\nStyledOption.defaultProps = {\n theme,\n};\n\nconst SingleValue = (props: any) => (\n \n \n \n);\n\nconst DropdownIndicator = (props: any) => {\n const color = !props.selectProps.value\n ? theme.commons.main\n : theme.brand.main;\n return (\n \n \n \n \n \n );\n};\n\nconst Control = (props: any) => (\n \n \n \n);\n\nconst Option = (props: any) => (\n \n \n \n);\n\nconst Menu = (props: any) => {\n return (\n \n {props.children} \n \n );\n};\n\ntype Props = {\n options: Array<{\n value: unknown;\n label: string | number;\n }>;\n value: {\n value: unknown;\n label: string | number;\n };\n onChange: (event: any) => void;\n placeholder?: string;\n invalid?: boolean;\n disabled?: boolean;\n menuPortalTarget?: HTMLBodyElement | null;\n isClearable?: boolean;\n maxMenuHeight?: number;\n menuPlacement?: 'auto' | 'top' | 'bottom';\n};\n\nconst RoundSelect = ({ ...props }: Props) => {\n const [show, toggle] = useState(false);\n return (\n null,\n Control,\n SingleValue,\n Option,\n Menu,\n }}\n onMenuOpen={() => toggle(true)}\n onMenuClose={() => toggle(false)}\n onInputChange={() => toggle(false)}\n show={show}\n classNamePrefix={'Select'}\n />\n );\n};\n\nRoundSelect.defaultProps = {\n theme,\n menuHeight: 300,\n};\n\nRoundSelect.displayName = 'RoundSelect';\n\nexport default RoundSelect;\n","import React, { useState, useEffect } from 'react';\nimport styled from 'styled-components';\nimport { Stack, Button } from '@chakra-ui/react';\nimport RoundSelect from '../form/RoundSelect';\nimport theme from '../base/theme';\n\ntype Props = {\n goToPage: (arg: number) => void;\n pageIndex: number;\n pageSize: number;\n setPageSize: (arg: number) => void;\n totalPages: number;\n showMorePlacement?: 'auto' | 'top' | 'bottom';\n};\n\nconst WrapSelect = styled.div<{ theme: any }>`\n width: 150px;\n & .Select__control {\n border-color: ${({ theme }) => theme.brand.dark};\n &:hover {\n border-color: ${({ theme }) => theme.commons.dark};\n }\n &:focus {\n border-color: ${({ theme }) => theme.dark.border.focus};\n }\n }\n & .Select__single-value {\n color: ${({ theme }) => theme.brand.dark};\n &:hover {\n color: ${({ theme }) => theme.commons.dark};\n }\n &:focus {\n color: ${({ theme }) => theme.dark.border.focus};\n }\n }\n .Select__indicators svg path {\n fill: ${({ theme }) => theme.brand.dark};\n &:hover {\n fill: ${({ theme }) => theme.commons.dark};\n }\n &:focus {\n fill: ${({ theme }) => theme.dark.border.focus};\n }\n }\n`;\n\nWrapSelect.defaultProps = {\n theme,\n};\n\nconst getItems = (page: number, totalPages: number) => {\n let startPage: number, endPage: number;\n if (totalPages <= 10) {\n // less than 10 total pages so show all\n startPage = 1;\n endPage = totalPages;\n } else {\n // more than 10 total pages so calculate start and end pages\n if (page <= 6) {\n startPage = 1;\n endPage = 10;\n } else if (page + 4 >= totalPages) {\n startPage = totalPages - 9;\n endPage = totalPages;\n } else {\n startPage = page - 5;\n endPage = page + 4;\n }\n }\n\n // create an array of pages to ng-repeat in the pager control\n return Array.from(Array(endPage + 1 - startPage), (_, i) => startPage + i);\n};\n\nconst Pagination = ({\n goToPage,\n pageIndex,\n pageSize,\n totalPages,\n setPageSize,\n showMorePlacement,\n}: Props): React.ReactElement => {\n const [items, setItems] = useState([]);\n\n useEffect(() => {\n setItems(getItems(pageIndex, totalPages));\n }, [pageIndex, totalPages]);\n\n const setPage = (page: number) => {\n const items = getItems(page, totalPages);\n setItems(items);\n return goToPage(page);\n };\n\n return (\n \n setPage(0)}\n disabled={pageIndex === 0}\n >\n {'<<'}\n {' '}\n setPage(pageIndex - 1)}\n disabled={pageIndex === 0}\n >\n anterior\n {' '}\n \n {items.map((item: number, i: number) => (\n setPage(item - 1)}\n >\n {item}\n \n ))}\n \n setPage(pageIndex + 1)}\n disabled={pageIndex === totalPages - 1}\n >\n próxima\n {' '}\n setPage(totalPages - 1)}\n disabled={pageIndex === totalPages - 1}\n >\n {'>>'}\n {' '}\n \n setPageSize(Number(e.value))}\n menuPortalTarget={document.querySelector('body')}\n menuPlacement={showMorePlacement}\n />\n \n \n );\n};\n\nexport default Pagination;\n","/* eslint-disable react/jsx-key */\nimport React from 'react';\nimport { useTable, useSortBy, useFlexLayout } from 'react-table';\nimport { Stack } from '@chakra-ui/react';\nimport styled, { css } from 'styled-components';\n\nimport Pagination from './Pagination';\nimport Icon from './Icon';\nimport theme from '../base/theme';\n\ninterface Columns {\n accessor?: string;\n Header: any;\n Cell?: (arg0: any) => string | React.ReactElement | null;\n className?: string;\n bold?: boolean;\n show?: boolean;\n Column?: any;\n columns?: Array;\n minWidth?: number;\n width?: number;\n collapse?: boolean;\n}\n\nconst StyledTh = styled.th<{ theme: any; backgroundColor: string }>`\n font-family: ${props => props.theme.fontFamily};\n font-size: 13px;\n font-weight: 600;\n line-height: 18px;\n text-transform: uppercase;\n color: #a4a4a4;\n text-align: left;\n border-bottom: 1px solid #e5e5e5;\n cursor: pointer;\n height: 40px;\n\n display: flex;\n align-items: center;\n\n /* Sticky */\n position: sticky !important;\n top: 0;\n background-color: ${props => props.backgroundColor};\n\n &.hide {\n display: none;\n }\n`;\n\nconst StyledTd = styled.td<{ theme: any; bold?: boolean; hide?: boolean }>`\n font-family: ${props => props.theme.fontFamily};\n font-size: 16px;\n font-weight: ${props => (props.bold ? 'bold' : 'normal')};\n line-height: 22px;\n color: ${props => props.theme.commons.dark};\n letter-spacing: normal;\n word-break: break-word;\n min-height: 60px;\n\n margin: 0;\n border-bottom: 1px solid #e5e5e5;\n\n display: flex;\n align-items: center;\n\n &.hide {\n display: none;\n }\n`;\n\nconst StyledTr = styled.tr`\n :last-child {\n td {\n border-bottom: 0;\n }\n }\n border-bottom: 1px solid #e5e5e5;\n`;\n\nconst StyledTable = styled.table<{ backgroundColor: string; sticky: string }>`\n border-spacing: 0;\n border: 1px solid #e5e5e5;\n background-color: ${props => props.backgroundColor};\n width: 100%;\n\n thead {\n /* These styles are required for a scrollable body to align with the header properly */\n overflow-y: auto;\n overflow-x: hidden;\n }\n\n tbody {\n /* These styles are required for a scrollable table body */\n overflow-y: scroll;\n overflow-x: hidden;\n height: 250px;\n }\n\n th,\n td {\n margin: 0;\n padding-left: 20px;\n\n /* In this example we use an absolutely position resizer,\n so this is required. */\n position: relative;\n\n :last-child {\n border-right: 0;\n }\n }\n\n ${({ sticky }) =>\n sticky === 'end' &&\n css`\n .sticky {\n right: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-left: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-left: 1px solid #e5e5e5;\n padding-left: 0;\n }\n }\n `}\n\n ${({ sticky }) =>\n sticky === 'start' &&\n css`\n .sticky {\n left: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n `}\n\n .sticky {\n position: sticky !important;\n top: 0;\n z-index: 1;\n background-color: ${props => props.backgroundColor};\n }\n`;\n\nconst Main = styled.div`\n /* These styles are suggested for the table fill all available space in its containing element */\n display: block;\n /* These styles are required for a horizontaly scrollable table overflow */\n overflow: auto;\n`;\n\ntype Props = {\n columns: Array;\n data: Array;\n backgroundColor: string;\n sticky?: 'end' | 'start';\n pagination?: {\n totalPages: number;\n goToPage: (page: number) => void;\n setPageSize: (arg0: number) => void;\n pageIndex: number;\n pageSize: number;\n };\n};\n\nfunction Table({\n columns,\n data,\n backgroundColor,\n sticky,\n pagination,\n}: Props): React.ReactElement {\n const defaultColumn = React.useMemo(\n () => ({\n // When using the useFlexLayout:\n minWidth: 30, // minWidth is only used as a limit for resizing\n width: 150, // width is used for both the flex-basis and flex-grow\n maxWidth: 300, // maxWidth is only used as a limit for resizing\n }),\n []\n );\n\n const {\n getTableProps,\n getTableBodyProps,\n headerGroups,\n rows,\n prepareRow,\n } = useTable(\n {\n columns,\n data,\n defaultColumn,\n },\n useSortBy,\n useFlexLayout\n );\n\n // Render the UI for your table\n return (\n \n \n \n \n {headerGroups.map(headerGroup => (\n \n {headerGroup.headers.map((column: any) => (\n \n \n {column.render('Header')}\n \n {column.isSorted ? (\n column.isSortedDesc ? (\n \n ) : (\n \n )\n ) : (\n ''\n )}\n \n
\n \n ))}\n \n ))}\n \n \n {rows.map(row => {\n prepareRow(row);\n return (\n \n {row.cells.map((cell: any) => (\n \n {cell.render('Cell')}\n \n ))}\n \n );\n })}\n \n \n \n {pagination && (\n \n )}\n \n );\n}\n\nTable.defaultProps = {\n backgroundColor: '#fff',\n};\n\nexport default Table;\n","import styled from 'styled-components';\nimport React from 'react';\n\ntype Props = {\n /** The margin property. */\n margin: {\n x?: number;\n y?: number;\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n /** The padding property. */\n padding: {\n x?: number;\n y?: number;\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n children: any;\n};\n\ntype SpacingProps = {\n margin: {\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n padding: {\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n};\n\nconst SpacingStyled = styled.div`\n ${({ margin }) => margin.top && `margin-top: ${margin.top}px;`}\n ${({ margin }) => margin.bottom && `margin-bottom: ${margin.bottom}px;`}\n ${({ margin }) => margin.left && `margin-left: ${margin.left}px;`}\n ${({ margin }) => margin.right && `margin-right: ${margin.right}px;`}\n ${({ padding }) => padding.top && `padding-top: ${padding.top}px;`}\n ${({ padding }) => padding.bottom && `padding-bottom: ${padding.bottom}px;`}\n ${({ padding }) => padding.left && `padding-left: ${padding.left}px;`}\n ${({ padding }) => padding.right && `padding-right: ${padding.right}px;`}\n`;\n\n/**\n * The only true Spacing component.\n */\nconst Spacing = ({\n margin,\n padding,\n ...ownProps\n}: Props): React.ReactElement => {\n const { x: marginX, y: marginY } = margin;\n const { x: paddingX, y: paddingY } = padding;\n return (\n \n );\n};\n\nSpacing.displayName = 'Spacing';\n\nSpacing.defaultProps = {\n margin: {},\n padding: {},\n};\n\n/** @component */\nexport default Spacing;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Spacing from '../layout/Spacing';\n\ntype Props = {\n margin?: Record;\n padding?: Record;\n height?: string;\n onClick?: () => void;\n border?: string;\n width?: string;\n rounded?: string;\n children: any;\n};\n\ntype CardProps = Omit;\n\nconst CardStyled = styled.div`\n position: relative;\n border-radius: ${props => props.rounded || '1px'};\n background-color: #ffffff;\n box-shadow: 2px 1px 14px 11px rgba(0, 0, 0, 0.04);\n width: ${props => props.width || '100%'};\n display: block;\n ${({ height }) => height && `height: ${height};`}\n ${({ onClick }) => onClick && `cursor: pointer;`}\n ${({ border }) => border && `border: ${border};`}\n`;\n\nconst Card = ({\n margin,\n padding,\n children,\n ...rest\n}: Props): React.ReactElement => (\n \n \n {children} \n \n \n);\n\nCard.defaultProps = {\n margin: {\n top: 0,\n bottom: 0,\n left: 0,\n right: 0,\n },\n padding: {\n top: 0,\n bottom: 0,\n left: 0,\n right: 0,\n },\n};\n\nCard.displayName = 'Card';\n\n/** @component */\nexport default Card;\n","import React, { useState } from 'react';\nimport styled from 'styled-components';\nimport TooltipIcon from './TooltipIcon';\n\nexport const Message = styled.span`\n font-family: Nunito Sans;\n position: absolute;\n background-color: #424242;\n padding: 23px 16px;\n width: 250px;\n font-size: 13px;\n text-transform: none;\n color: #fff;\n right: -200px;\n top: 25px;\n line-height: 17.73px;\n z-index: 1;\n\n p {\n margin-bottom: 5px;\n }\n`;\n\ntype Props = {\n className?: string;\n label?: string | any;\n info: string | any;\n};\n\nconst Tooltip = styled(({ label, info, className }: Props) => {\n const [visible, setVisible] = useState(false);\n\n return (\n \n {label}\n
setVisible(true)}\n onMouseOut={() => setVisible(false)}\n >\n \n {visible && {info} }\n
\n
\n );\n})`\n display: flex;\n flex-direction: row;\n\n svg {\n margin-left: 10px;\n cursor: pointer;\n }\n`;\n\nexport default Tooltip;\n","import styled from 'styled-components';\n\nconst DropdownList = styled.div`\n background-color: #fff;\n padding: 20px 0;\n white-space: nowrap;\n overflow-y: auto;\n box-shadow: 0 3px 7px rgba(0, 0, 0, 0.45), 0 2px 2px rgba(0, 0, 0, 0.45);\n max-height: calc(100vh - 30px - 40px);\n`;\n\nexport default DropdownList;\n","import React from 'react';\nimport styled from 'styled-components';\n\nconst DropdownItem = styled(({ className, value }) => (\n {value}
\n))`\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n &:hover {\n color: #ee0099;\n }\n`;\n\nexport default DropdownItem;\n","import React, { useRef, useEffect, useState } from 'react';\nimport styled from 'styled-components';\nimport DropdownList from './ui/DropdownList';\nimport DropdownItem from './ui/DropdownItem';\nimport DropdownInput from './ui/DropdownInput';\nimport Icon from '../content/Icon';\nimport theme from '../base/theme';\n\nconst useOutsideAlerter = (ref: any, onEvent: any) => {\n const handleClickOutside = (event: any) => {\n if (ref.current && !ref.current.contains(event.target)) {\n onEvent();\n }\n };\n\n useEffect(() => {\n document.addEventListener('mousedown', handleClickOutside);\n return () => {\n document.removeEventListener('mousedown', handleClickOutside);\n };\n });\n};\n\nexport const DropdownFluid = styled.div`\n display: flex;\n flex-direction: column;\n font-family: ${props => props.theme.fontFamily};\n`;\n\nDropdownFluid.defaultProps = {\n theme,\n};\n\ninterface DropdownFluidListProps {\n direction?: 'left' | 'right';\n}\n\nconst DropdownFluidList = styled.div`\n position: absolute;\n top: calc(100% + 15px);\n display: flex;\n flex-direction: column;\n z-index: 3;\n ${props =>\n props.direction === 'left' &&\n `\n left: 0;\n `}\n ${props =>\n props.direction === 'right' &&\n `\n right: 0;\n `}\n`;\n\nconst DropdownFluidInput = styled(({ children, className, onToggle, open }: any) => (\n \n {children}\n \n
\n))`\n display: flex;\n z-index: 2;\n cursor: pointer;\n flex-direction: row;\n align-items: center;\n color: #fff;\n font-weight: bold;\n font-size: 13px;\n text-transform: uppercase;\n\n ${Icon} {\n margin-left: 10px;\n }\n`;\n\ninterface DropdownFluidItemProps {\n clickable?: boolean;\n onClick?: any;\n}\n\nconst DropdownFluidItem = styled.div`\n display: flex;\n ${props => props.clickable && `cursor: pointer;`}\n`;\n\nconst DropdownFluidLayout = styled.div`\n position: relative;\n`;\n\ninterface DropdownProps {\n placeholder?: string;\n item?: any;\n items: any[];\n selectable?: boolean;\n onSelect: Function;\n dropdownInput?: any;\n dropdownItem?: any;\n dropdownList?: any;\n direction?: 'left' | 'right';\n}\n\nconst Dropdown: React.FC = ({\n placeholder,\n item,\n items,\n selectable,\n onSelect,\n direction,\n dropdownInput: DropdownInputUI,\n dropdownItem: DropdownItemUI,\n dropdownList: DropdownListUI,\n}) => {\n const [open, setOpen] = useState(false);\n // click ousite dropdown is close\n const dropdownRef = useRef(null);\n useOutsideAlerter(dropdownRef, () => setOpen(false));\n\n return (\n \n setOpen(!open)}>\n {!item ? (\n {placeholder} \n ) : selectable && !!item ? (\n \n ) : (\n {placeholder} \n )}\n \n \n {open && (\n \n \n {items.map((value, index) => {\n const clickable =\n typeof value === 'string'\n ? true\n : typeof value.clickable === 'undefined'\n ? true\n : value.clickable;\n\n const itemProps = {\n clickable,\n onClick: !clickable\n ? null\n : () => {\n onSelect(value);\n setOpen(false);\n },\n };\n\n return (\n \n {typeof value !== 'string' && value.render ? (\n \n ) : (\n \n )}\n \n );\n })}\n \n \n )}\n \n \n );\n};\n\nDropdown.defaultProps = {\n direction: 'left',\n selectable: true,\n items: [],\n dropdownInput: DropdownInput,\n dropdownItem: DropdownItem,\n dropdownList: DropdownList,\n};\n\nexport default Dropdown;\n","import React from 'react';\n\ninterface DropdownInputProps {\n value: string;\n}\n\nconst DropdownInput: React.FC = ({ value }) => (\n {value} \n);\n\nexport default DropdownInput;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Icon from '../content/Icon';\n\nconst DropdownIconItem = styled(({ className, value, onClick }: any) => {\n const { icon, label } = value;\n\n return (\n \n \n {label}\n
\n );\n})`\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n ${Icon} {\n margin-right: 10px;\n }\n\n &:hover {\n color: #ee0099;\n\n ${Icon} {\n path {\n color: #ee0099;\n fill: #ee0099;\n stroke: #ee0099;\n }\n }\n }\n`;\n\nexport default DropdownIconItem;\n","import React from 'react';\nimport styled from 'styled-components';\n\ninterface Img {\n src: string;\n alt?: string;\n}\n\ninterface Value {\n img: Img;\n label: string;\n}\n\ninterface DropdownImageInputProps {\n value: Value;\n placeholder: string;\n clickable?: boolean;\n}\n\nconst DropdownImageInput = styled(({ className, value }: any) => {\n const { img, label } = value;\n return (\n \n
\n {label}\n
\n );\n}) `\n display: flex;\n flex-grow: 1;\n align-items: center;\n\n img {\n border-radius: 50px;\n width: 25px;\n height: 25px;\n margin-right: 10px;\n }\n`;\n\nexport default DropdownImageInput;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Header from '../content/Header';\n\ninterface Img {\n src: string;\n alt?: string;\n}\n\ninterface Value {\n img: Img;\n label: string;\n}\n\ninterface DropdownImageItemProps {\n value: Value;\n placeholder: string;\n clickable?: boolean;\n}\n\nconst DropdownImageItem = styled(({ className, value }: any) => {\n const { img, label } = value;\n return (\n \n
\n {label}\n
\n );\n}) `\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n img {\n width: 40px;\n height: 40px;\n margin-right: 10px;\n }\n ${props =>\n props.clickable &&\n `\n &:hover {\n background-color: #c7c7c7;\n }\n `}\n ${Header.H4}, ${Header.H5} {\n margin: 0;\n }\n`;\n\nexport default DropdownImageItem;\n","import styled from 'styled-components';\n\ninterface FormProps {\n direction?: 'row' | 'column';\n}\n\nconst Form = styled.form`\n display: flex;\n flex-direction: ${props => props.direction};\n`;\n\nForm.defaultProps = {\n direction: 'column',\n};\n\nexport default Form;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\ninterface HintProps {\n color?: 'error' | 'warning' | 'info';\n}\n\nconst handleColor = ({ color }: HintProps) => {\n switch (color) {\n case 'info':\n return '#aaa';\n case 'error':\n return '#ff0931';\n default:\n return '#50e3c2';\n }\n};\n\nconst Hint = styled.span`\n font-family: ${props => props.theme.fontFamily};\n font-size: 11px;\n font-weight: 600;\n line-height: 1.36;\n letter-spacing: 0.4px;\n text-transform: uppercase;\n color: ${handleColor};\n`;\n\nHint.defaultProps = {\n theme,\n color: 'info',\n};\n\nexport default Hint;\n","import styled from 'styled-components';\nimport Hint from './Hint';\n\ninterface FormFieldProps {\n direction?: 'row' | 'column';\n}\n\nconst FormField = styled.div`\n position: relative;\n display: flex;\n padding: 0 0 30px;\n\n flex-direction: ${props => props.direction};\n ${props =>\n props.direction === 'row' &&\n `\n align-items: flex-end;\n `}\n\n ${Hint} {\n position: absolute;\n right: 0;\n }\n`;\n\nFormField.defaultProps = {\n direction: 'column',\n};\n\nexport default FormField;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst ArrowUpIcon = createIcon({\n displayName: 'ArrowUpIcon',\n viewBox: '4 4 15 15',\n path: (\n <>\n \n >\n ),\n});\n\nexport default ArrowUpIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst ArrowDownIcon = createIcon({\n displayName: 'ArrowDownIcon',\n viewBox: '4 4 15 15',\n path: (\n <>\n \n >\n ),\n});\n\nexport default ArrowDownIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst BotIcon = createIcon({\n displayName: 'BotIcon',\n path: (\n <>\n \n \n >\n ),\n});\n\nexport default BotIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst EditIcon = createIcon({\n displayName: 'EditIcon',\n path: (\n <>\n \n \n >\n ),\n});\n\nexport default EditIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst InfoIcon = createIcon({\n displayName: 'InfoIcon',\n viewBox: '0 0 14 14',\n path: (\n <>\n \n \n \n \n >\n ),\n});\n\nexport default InfoIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst NetIcon = createIcon({\n displayName: 'NetIcon',\n path: (\n <>\n \n \n \n \n >\n ),\n});\n\nexport default NetIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst PagesIcon = createIcon({\n displayName: 'PagesIcon',\n path: (\n <>\n \n \n \n >\n ),\n});\n\nexport default PagesIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst SettingsIcon = createIcon({\n displayName: 'PagesIcon',\n path: (\n <>\n \n \n >\n ),\n});\n\nexport default SettingsIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst CloseIcon = createIcon({\n displayName: 'CloseIcon',\n viewBox: '0 0 10 10',\n path: (\n <>\n \n >\n ),\n});\n\nexport default CloseIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst UploadImageIcon = createIcon({\n displayName: 'UploadImageIcon',\n viewBox: '0 0 84 84',\n path: (\n <>\n \n \n \n \n \n \n \n >\n ),\n});\n\nexport default UploadImageIcon;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Label = styled.label`\n font-family: ${props => props.theme.fontFamily};\n font-weight: 600;\n font-size: 13px;\n line-height: 1.15;\n letter-spacing: 0.5px;\n color: ${props => props.theme.commons.main};\n text-transform: uppercase;\n`;\n\nLabel.defaultProps = {\n theme,\n};\n\nexport default Label;\n","// Validate for redux-form\n// https://redux-form.com/7.4.2/docs/api/field.md/#-code-validate-value-allvalues-props-name-gt-error-code-optional-\n\nconst isEmail = (message: string) => (value: any) => {\n // eslint-disable-next-line\n const regexEmail = /^(([^<>()[\\]\\\\.,;:\\s@\\\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\\\"]+)*)|(\\\".+\\\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;\n\n return !regexEmail.test(value) ? message : undefined;\n};\n\nconst required = (message: string) => (value: any) =>\n !value ? message : undefined;\n\nconst min = (size: number, message: string) => (value: any) =>\n value && value.length < size ? message : undefined;\n\nconst max = (size: number, message: string) => (value: any) =>\n value && value.length > size ? message : undefined;\n\nconst composeValidators = (...validators: any) => (value: any) =>\n validators.reduce(\n (error: any, validator: any) => error || validator(value),\n undefined\n );\n\nexport default {\n isEmail,\n required,\n min,\n max,\n composeValidators,\n};\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\ntype TextareaProps = {\n invalid?: boolean;\n fullWidth?: boolean;\n valid?: boolean;\n showValid?: boolean;\n touched?: boolean;\n};\n\nconst Textarea = styled.textarea`\n ${props => props.fullWidth && 'width: 100%;'}\n font-family: ${theme.fontFamily};\n font-size: 16px;\n color: #000000;\n border: none;\n border-bottom: 1px solid #AAAAAA;\n padding: 0 0 8px;\n flex: 1;\n background: none;\n min-height: 109px;\n\n &[disabled] {\n color: #D1CDD2;\n background: none;\n }\n\n &:focus {\n outline: none;\n border-bottom: 1px solid ${theme.brand.main};\n }\n\n &::placeholder {\n color: ${theme.commons.dark};\n }\n &::-webkit-input-placeholder {\n color: ${theme.commons.dark};\n }\n &::-moz-placeholder {\n color: ${theme.commons.dark};\n }\n &:-ms-input-placeholder {\n color: ${theme.commons.dark};\n }\n &:-moz-placeholder {\n color: ${theme.commons.dark};\n }\n\n ${props => props.invalid && `border-color: #ff0931;`}\n`;\n\nTextarea.displayName = 'Textarea';\n\n/** @component */\nexport default Textarea;\n","import styled, { css } from 'styled-components';\nimport theme from '../base/theme';\n\ntype Props = {\n type?: string;\n invalid?: boolean;\n disabled?: boolean;\n theme: any;\n onBlur?: (e: any) => void;\n placeholder?: string;\n border?: boolean;\n};\n\nconst RoundInput = styled.input`\n padding: 0 60px 0 15px;\n width: 100%;\n height: 40px;\n\n font-family: ${props => props.theme.fontFamily};\n font-size: 14px;\n line-height: 22px;\n color: ${props => props.theme.commons.dark};\n border: none;\n box-sizing: border-box;\n background-color: unset;\n\n &[disabled] {\n color: #d1cdd2;\n background: unset;\n }\n\n &::placeholder,\n &::-webkit-input-placeholder,\n &::-moz-placeholder,\n &:-ms-input-placeholder,\n &:-moz-placeholder {\n color: ${props => props.theme.commons.dark};\n font-family: ${props => props.theme.fontFamily};\n }\n\n ${({ border, value, theme, invalid }) =>\n border &&\n css`\n border: 1px solid;\n border-radius: 7px;\n ${!value\n ? css`\n &:hover,\n &:focus {\n border-color: ${theme.commons.main};\n }\n border-color: ${theme.commons.main};\n `\n : css`\n &:hover,\n &:focus {\n border-color: ${theme.brand.main};\n }\n border-color: ${theme.brand.main};\n `}\n ${invalid && `border-color: ${theme.error};`}\n `}\n`;\n\nRoundInput.defaultProps = {\n invalid: false,\n type: 'text',\n theme,\n};\n\nexport default RoundInput;\n","import React from 'react';\nimport styled, { css } from 'styled-components';\nimport { useField } from 'react-final-form';\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport RoundInput from './RoundInput';\nimport Label from './Label';\nimport theme from '../base/theme';\n\ntype Props = {\n name: string;\n type?: string;\n label?: string;\n placeholder?: string;\n disabled?: boolean;\n onBlur?: (e: any) => void;\n};\n\nconst StyledFormField = styled(FormField)<{\n invalid?: boolean;\n value?: string;\n}>`\n border: 1px solid;\n border-radius: 7px;\n padding: 0;\n ${props =>\n !props.value\n ? css`\n &:hover,\n &:focus {\n border-color: ${props.theme.commons.main};\n }\n border-color: ${props.theme.commons.main};\n `\n : css`\n &:hover,\n &:focus {\n border-color: ${props.theme.brand.main};\n }\n border-color: ${props.theme.brand.main};\n `}\n\n ${props =>\n props.invalid &&\n `\n border-color: ${props.theme.error};\n `}\n`;\n\nStyledFormField.defaultProps = {\n theme,\n};\n\nconst RoundInputField = ({\n name,\n type,\n label,\n placeholder,\n disabled,\n onBlur,\n ...config\n}: Props) => {\n const { input, meta } = useField(name, config);\n return (\n \n {label && {label} }\n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n {\n onBlur && onBlur(e);\n input.onBlur(e);\n }}\n />\n \n );\n};\n\nexport default RoundInputField;\n","import styled from 'styled-components';\nimport React from 'react';\n\ninterface SwitchProps {\n onClick?: () => void;\n checked?: boolean;\n disabled?: boolean;\n}\n\nconst Switch = ({ onClick, checked, disabled }: SwitchProps) => {\n return (\n \n \n \n \n );\n};\n\nconst Label = styled.label`\n position: relative;\n display: inline-block;\n width: 28px;\n min-width: 28px;\n height: 14px;\n border-radius: 50%;\n box-shadow: 3px 3px 10px 1px rgb(138 138 138 / 55%);\n\n input {\n opacity: 0;\n width: 0;\n height: 0;\n }\n\n .slider {\n position: absolute;\n cursor: pointer;\n border-radius: 34px;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background-color: #858585;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n .slider::before {\n position: absolute;\n content: '';\n height: 12px;\n width: 12px;\n border-radius: 50%;\n left: 1px;\n bottom: 1px;\n background-color: white;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n input:checked + .slider {\n background-color: #50e3c2;\n }\n\n input:checked + .slider::before {\n -webkit-transform: translateX(14px);\n -ms-transform: translateX(14px);\n transform: translateX(14px);\n }\n`;\n\nexport default Switch;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport styled from 'styled-components';\n\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport Switch from './Switch';\nimport Label from './Label';\n\nconst SwitchField = (props: any) => {\n const { label, name, disabled, textOff, textOn, ...config } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n {label && {label} }\n\n {input.value ? textOn : textOff} \n\n input.onChange(!input.value)}\n checked={input.value}\n />\n \n \n );\n};\n\ntype ContainerProps = {\n disabled: boolean;\n};\n\nconst Container = styled.div`\n display: flex;\n align-items: center;\n\n .text {\n font-size: '13px';\n font-weight: 800;\n margin-right: 8px;\n color: ${({ disabled }) => (disabled ? '#858585' : '#50E3C2')};\n }\n`;\n\nexport default SwitchField;\n","import React from 'react';\nimport {\n FormControl,\n FormLabel,\n Flex,\n Stack,\n RadioGroup,\n} from '@chakra-ui/react';\nimport { useField } from 'react-final-form';\nimport Hint from './Hint';\n\ntype RadioFieldProps = {\n children: any;\n label: string;\n name: string;\n direction?: 'row' | 'column';\n};\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst RadioField = ({ children, label, name, direction }: RadioFieldProps) => {\n const { input, meta } = useField(name);\n\n return (\n \n \n {label} \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n \n \n {children}\n \n \n \n );\n};\n\nRadioField.defaultProps = {\n direction: 'row',\n};\n\nexport default RadioField;\n","import React from 'react';\nimport {\n Box,\n Button,\n Image,\n FormControl,\n FormLabel,\n FormHelperText,\n Stack,\n} from '@chakra-ui/react';\nimport { useField, FieldInputProps } from 'react-final-form';\nimport ReactS3Uploader from 'react-s3-uploader';\nimport { EditIcon, UploadImageIcon } from '../../icons';\n\ninterface S3UploadFileFieldProps {\n signingUrl: string;\n onChange: any;\n disabled?: boolean;\n}\n\nconst S3UploadFileField: React.FC = ({\n children,\n onChange,\n signingUrl,\n disabled,\n}) => {\n const inputRef: any = React.useRef(null);\n\n // Override callbacks\n const onProgress = (args: any) => {\n console.log('onProgress', { args });\n };\n const onError = (args: any) => {\n console.log('onError', { args });\n };\n const onFinish = ({ signedUrl }: any) => {\n const imageUrl: string = signedUrl.substring(0, signedUrl.indexOf('?'));\n console.log('onFinish', { imageUrl });\n onChange(imageUrl);\n };\n // Button should be ReactS3Uploader active.\n const onClick = (evt: any) => {\n evt?.preventDefault();\n inputRef?.current.click();\n };\n\n return (\n \n \n {children}\n \n \n
\n );\n};\n\ninterface S3UploadFieldProps extends FieldInputProps {\n label?: string;\n helpText?: string;\n disabled?: boolean;\n alt?: string;\n signingUrl: string;\n uploadImageIcon: any;\n removeTextButton?: string;\n borderRadius?: any;\n boxSize?: any;\n}\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst S3UploadField = (props: S3UploadFieldProps) => {\n const {\n label,\n helpText,\n name,\n disabled,\n alt,\n signingUrl,\n uploadImageIcon: UploadImageIconComponent,\n removeTextButton,\n borderRadius,\n boxSize,\n ...config\n } = props;\n const { input } = useField(name, config);\n\n return (\n \n \n {input.value ? (\n \n \n \n \n \n \n ) : (\n \n )}\n \n \n {label} \n {helpText && (\n \n {helpText}\n \n )}\n {props.formData && (\n props.onChange(null)}\n >\n {removeTextButton}\n \n )}\n \n \n );\n};\n\nS3UploadField.defaultProps = {\n uploadImageIcon: UploadImageIcon,\n removeTextButton: 'Remover',\n borderRadius: '50%',\n boxSize: '85px',\n};\n\nexport default S3UploadField;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Navigation = styled.div`\n display: flex;\n height: 40px;\n background-color: ${({ theme }) => theme.brand.dark};\n align-items: flex-end;\n\n & > a {\n color: inherit;\n text-decoration: none;\n }\n`;\n\nNavigation.defaultProps = {\n theme,\n};\n\nexport default Navigation;\n","import styled from 'styled-components';\nimport { ToastContainer } from 'react-toastify';\n\nconst StyledContainer = styled(ToastContainer)`\n .Toastify__toast {\n font-family: Nunito Sans;\n font-size: 16px;\n color: #fff;\n\n padding: 15px 18px;\n }\n .Toastify__toast--success {\n background-color: #50e3c2;\n }\n`;\n\nexport default StyledContainer;\n","import React from 'react';\n\nconst Icon: React.FC = () => {\n return (\n \n \n \n \n \n \n \n \n \n \n );\n};\n\nIcon.displayName = 'SuccessIcon';\n\nexport default Icon;\n","import React from 'react';\nimport styled from 'styled-components';\nimport { SuccessIcon } from './Icons';\n\nconst Message: React.FC = styled.div`\n display: flex;\n flex-direction: row;\n\n svg {\n margin-right: 18px;\n }\n`;\n\ntype Props = {\n message: string;\n};\n\nconst Success = ({ message }: Props) => {\n return (\n \n \n {message} \n \n );\n};\n\nexport default Success;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Body = styled.div`\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n padding: 0 ${({ theme }) => theme.body.padding}px;\n overflow: hidden;\n /* background-color: ${props => props.theme.body}; */\n`;\n\nBody.defaultProps = {\n theme,\n};\n\nexport default Body;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Bonde from '../content/Bonde';\nimport theme from '../base/theme';\n\nconst Footer = styled(({ className, children }: any) => (\n \n \n {children}\n
\n))`\n display: flex;\n flex-direction: row;\n background-color: ${({ theme }) => theme.body.background.dark};\n padding: 20px ${({ theme }) => theme.body.padding}px;\n`;\n\nFooter.defaultProps = {\n theme,\n};\n\nexport default Footer;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Main = styled.div`\n display: flex;\n flex-direction: column;\n min-height: 100vh;\n min-width: 100%;\n background-color: ${({ theme }) => theme.body.background.main};\n font-family: ${({ theme }) => theme.fontFamily};\n`;\n\nMain.defaultProps = {\n theme,\n};\n\nexport default Main;\n","import React from 'react';\nimport styled from 'styled-components';\nimport { Flex } from '@chakra-ui/react';\nimport Icon from '../content/Icon';\nimport Bonde from '../content/Bonde';\n\ninterface NavbarProps {\n className?: string;\n indexRoute: string;\n fixed?: boolean;\n brand?: 'default' | 'small';\n}\n\n// Reset link to keep BondeSVG render\nconst HomeLink = styled.a`\n color: #000;\n text-decoration: none;\n\n &:hover {\n color: #000;\n text-decoration: none;\n }\n`;\n\nconst Navbar: React.FC = ({\n brand,\n children,\n indexRoute,\n fixed = false,\n}) => (\n \n \n {brand !== 'small' ? : }\n \n {children}\n \n);\n\nexport default Navbar;\n","import React, { useState, createContext, useContext, useRef } from 'react';\nimport { Button, Box, Fade, useOutsideClick } from '@chakra-ui/react';\nimport { ArrowUpIcon, ArrowDownIcon } from '../../icons';\n\ntype DropdownContext = {\n isOpen: boolean;\n onToggle: () => void;\n};\n\nconst dropdownContext = createContext({\n isOpen: false,\n onToggle: () => {},\n});\n\ntype PerformDropdownListProps = {\n scroll?: boolean;\n};\n\nexport const PerformDropdownList: React.FC = ({\n children,\n scroll,\n}) => {\n const { isOpen } = useContext(dropdownContext);\n const boxProps: any = {\n minWidth: '200px',\n maxWidth: '400px',\n bg: 'white',\n boxShadow: 'base',\n mt: 10,\n };\n\n if (scroll) {\n boxProps.overflowY = 'scroll';\n boxProps.height = '500px';\n }\n\n return (\n \n {children} \n \n );\n};\n\ntype PerformDropdownItemProps = {\n onClick?: any;\n};\n\nexport const PerformDropdownItem: React.FC = ({\n children,\n onClick,\n}) => {\n const { onToggle } = useContext(dropdownContext);\n\n return (\n {\n if (onClick) onClick();\n onToggle();\n }}\n _hover={{ bg: 'gray.100' }}\n >\n {children}\n \n );\n};\n\nexport const PerformDropdownButton: React.FC = ({\n children,\n color,\n ...props\n}) => {\n const { isOpen, onToggle } = useContext(dropdownContext);\n const buttonProps = {\n ...props,\n zIndex: 3,\n rightIcon: isOpen ? (\n \n ) : (\n \n ),\n onClick: onToggle,\n };\n\n if (color) {\n buttonProps.color = color;\n buttonProps['_hover'] = { color };\n buttonProps['_active'] = { color };\n }\n\n return {children} ;\n};\n\nconst PerformDropdown: React.FC = ({ children }) => {\n const wrapperRef: any = useRef();\n const [isOpen, setIsOpen] = useState(false);\n\n useOutsideClick({\n ref: wrapperRef,\n handler: () => setIsOpen(false),\n });\n\n return (\n setIsOpen(!isOpen),\n }}\n >\n \n {children}\n \n \n );\n};\n\nexport default PerformDropdown;\n","import React from 'react';\nimport { IconButton, Stack } from '@chakra-ui/react';\nimport { Session, Community } from './types';\n\nimport { SettingsIcon, PagesIcon, BotIcon, NetIcon } from '../icons';\n\nconst items: any = {\n settings: [SettingsIcon, 'Configurações'],\n mobilization: [PagesIcon, 'Mobilizações'],\n redes: [NetIcon, 'Redes'],\n chatbot: [BotIcon, 'Chatbot'],\n};\n\ninterface CommunityMenuProps {\n community: Community;\n inverted?: boolean;\n session: Session;\n}\n\nconst CommunityMenu = ({\n community,\n session,\n inverted,\n}: CommunityMenuProps): React.ReactElement => {\n const { apps: config, updateSession }: any = session;\n const { modules } = community;\n\n const handleClick = (url: string) => async () => {\n updateSession('community', community).then(() => {\n window.location.href = url;\n });\n };\n\n return (\n \n {Object.keys(modules)\n .filter((key: string) => !!modules[key])\n .map((key: any, index: number) => {\n let moduleHost = '';\n let baseHost = '';\n try {\n moduleHost = new URL('', config[key]).host;\n baseHost = new URL('', window.location.href).host;\n } catch (err) {\n console.log('error URL', err);\n }\n\n const hoverColor = (color: string) => ({ color: `${color}.200` });\n const isActive = moduleHost === baseHost;\n const IconComponent: any = items[key][0];\n\n const colorSystem = inverted\n ? {\n color: isActive ? 'pink.200' : 'white',\n _hover: isActive ? hoverColor('pink') : hoverColor('gray'),\n }\n : {\n color: 'gray.400',\n _hover: hoverColor('gray'),\n };\n\n return (\n }\n onClick={handleClick(config[key])}\n />\n );\n })}\n \n );\n};\n\nexport default CommunityMenu;\n","import React from 'react';\nimport { Stack, Image, Text } from '@chakra-ui/react';\nimport {\n PerformDropdown,\n PerformDropdownList,\n PerformDropdownItem,\n PerformDropdownButton,\n} from '../ui';\nimport CommunityMenu from './CommunityMenu';\n\nimport { Session } from './types';\n\ninterface CommunitiesDropdownProperties {\n isMobile?: boolean;\n session: Session;\n}\n\nconst CommunitiesDropdown: React.FC = ({\n session,\n isMobile,\n}) => {\n const { communities, community, updateSession } = session;\n\n return (\n \n \n \n {community ? (\n \n \n \n {community?.name}\n \n \n ) : (\n 'Selecione uma comunidade'\n )}\n \n 10}>\n {communities.map((c: any) => (\n {\n updateSession('community', c);\n }}\n >\n \n \n {c.name} \n \n \n ))}\n \n \n {community && !isMobile && (\n \n )}\n \n );\n};\n\nexport default CommunitiesDropdown;\n","import React from 'react';\nimport {\n Button,\n Text,\n Stack,\n Heading,\n Menu,\n MenuButton,\n MenuList,\n MenuItem,\n MenuGroup,\n} from '@chakra-ui/react';\nimport { ArrowDownIcon, ArrowUpIcon, CloseIcon } from '../icons';\nimport { Session } from './types';\n\ninterface UserDropdownProperties {\n session: Session;\n}\n\nconst UserDropdown: React.FC = ({ session }) => {\n const { currentUser: user, logout } = session;\n const name = `${user.firstName} ${user.lastName}`;\n\n const title: any = (\n \n \n {name}\n \n \n {user.email}\n \n \n );\n\n return (\n \n {({ isOpen }: any) => (\n <>\n \n ) : (\n \n )\n }\n >\n {name}\n \n \n \n }>\n Logout\n \n \n \n >\n )}\n \n );\n};\n\nexport default UserDropdown;\n","import React from 'react';\nimport { Button } from '@chakra-ui/react';\nimport { Session } from './types';\n\nconst Logout: React.FC<{ session: Session }> = ({ session }) => {\n return (\n \n \n \n \n \n \n );\n};\n\nexport default Logout;\n","import React from 'react';\nimport styled from '@emotion/styled';\nimport { Flex } from '@chakra-ui/react';\nimport { Main, Footer, Navbar } from '../ui';\nimport CommunitiesDropdown from './CommunitiesDropdown';\nimport UserDropdown from './UserDropdown';\nimport Logout from './Logout';\nimport { BaseUIProperties } from './types';\n\ninterface ContentProps {\n isMobile: boolean;\n bgColor: string;\n}\n\nconst Content = styled.div`\n display: flex;\n flex-grow: 1;\n background-color: ${(props: ContentProps) => props.bgColor};\n\n ${(props: ContentProps) =>\n props.isMobile &&\n `\n padding-top: 65px;\n overflow-y: auto;\n `}\n`;\n\nconst FooterTool: React.FC = ({ languageTool: LanguageTool }) =>\n LanguageTool ? (\n \n ) : (\n \n );\n\nconst BaseUI: React.FC = ({\n children,\n bgColor,\n disableNavigation,\n indexRoute,\n isMobile,\n session,\n languageTool: LanguageTool,\n}) => {\n return (\n \n \n \n {disableNavigation ? (\n
\n ) : (\n \n )}\n {isMobile ? (\n \n ) : (\n \n )}\n \n \n \n {children}\n \n {!isMobile ? : null}\n \n );\n};\n\nBaseUI.defaultProps = {\n disableNavigation: false,\n};\n\nexport default BaseUI;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport { SketchPicker } from 'react-color';\nimport { Flex, FormControl, FormLabel, Stack, Tooltip } from '@chakra-ui/react';\nimport { InfoIcon } from '../../icons';\nimport Hint from './Hint';\n\n// interface ColorFieldProps extends {\n// name: string\n// label?: string\n// helpText?: string\n// }\n\nconst ColorField = (props: any): any => {\n const {\n // variant,\n label,\n name,\n // placeholder,\n helpText,\n // type,\n // disabled,\n // onBlur,\n ...config\n } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n \n \n {label} \n {helpText && (\n \n \n \n )}\n \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n input.onChange(color.hex)}\n />\n \n );\n};\n\nexport default ColorField;\n","import React from 'react';\nimport { Form as FinalForm } from 'react-final-form';\n// eslint-disable-next-line prettier/prettier\nimport type { FormProps } from 'react-final-form';\nimport Form from './Form';\n\ninterface ConnectedFormProps extends FormProps {\n children(formProps: any): any;\n onSubmit(values: any): any;\n}\n\nconst ConnectedForm: React.FC = ({\n children,\n onSubmit,\n ...ownProps\n}) => (\n \n {({ handleSubmit, ...formProps }) => (\n \n )}\n \n);\n\nexport default ConnectedForm;\n","import React from 'react';\nimport GoogleFontLoader from 'react-google-font-loader';\n\nconst FontsLoader = (): React.ReactElement => (\n \n);\n\nexport default FontsLoader;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport {\n Input,\n FormControl,\n FormLabel,\n Flex,\n Tooltip,\n Stack,\n} from '@chakra-ui/react';\nimport { InfoIcon } from '../../icons';\nimport Hint from './Hint';\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst InputField = (props: any): React.ReactElement => {\n const {\n variant,\n label,\n name,\n placeholder,\n helpText,\n type,\n disabled,\n onBlur,\n ...config\n } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n \n \n {label} \n {helpText && (\n \n \n \n )}\n \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n {\n onBlur && onBlur(e);\n input.onBlur(e);\n }}\n />\n \n );\n};\n\nexport default InputField;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport RoundSelect from './RoundSelect';\nimport Label from './Label';\n\ntype Props = {\n name: string;\n options: Array<{\n value: string | number;\n label: string | number;\n }>;\n label?: string;\n placeholder?: string;\n disabled?: boolean;\n menuPortalTarget?: HTMLBodyElement | null;\n isClearable?: boolean;\n onChange?: (event: any) => void;\n maxMenuHeight?: number;\n menuPlacement?: 'auto' | 'top' | 'bottom';\n};\n\nconst RoundSelectField = ({\n label,\n name,\n placeholder,\n disabled,\n options,\n menuPortalTarget,\n isClearable,\n onChange,\n maxMenuHeight = 300,\n menuPlacement = 'bottom',\n ...config\n}: Props) => {\n const { input, meta } = useField(name, config);\n return (\n \n {label && {label} }\n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n {\n onChange && onChange(e);\n input.onChange(e);\n }}\n />\n \n );\n};\n\nexport default RoundSelectField;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport { Select, FormControl, FormLabel, Flex } from '@chakra-ui/react';\nimport Hint from './Hint';\n\ntype Props = {\n children: any;\n label: string;\n name: string;\n disabled?: boolean;\n validate?: any;\n};\n\nconst SelectField = (props: Props): React.ReactElement => {\n const { label, name, disabled, children, ...config } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n \n {label} \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n \n {children}\n \n \n );\n};\n\nexport default SelectField;\n","import React from 'react';\nimport { Button } from '@chakra-ui/react';\nimport { useColorMode } from '@chakra-ui/color-mode';\n\nexport interface TabProps {\n active?: boolean;\n onClick?: () => void;\n}\n\nconst Tab: React.FC = ({ children, active, onClick }) => {\n const { colorMode } = useColorMode();\n const defaultColor = colorMode === 'dark' ? 'white' : 'black';\n\n const defaultStylesProps: any = {\n color: defaultColor,\n };\n\n if (!active && colorMode === 'light') {\n defaultStylesProps.color = 'black';\n defaultStylesProps._hover = {\n color: 'gray.400',\n };\n }\n\n if (!active && colorMode === 'dark') {\n defaultStylesProps.color = 'white';\n defaultStylesProps._hover = {\n color: 'gray.200',\n };\n }\n\n if (active) {\n defaultStylesProps.color = 'pink.200';\n defaultStylesProps._hover = {\n color: 'pink.200',\n borderBottomColor: 'pink.200',\n };\n defaultStylesProps.borderBottomWidth = '2px';\n defaultStylesProps.borderBottomStyle = 'solid';\n defaultStylesProps.borderBottomColor = 'pink.200';\n }\n\n return (\n \n {children}\n \n );\n};\n\nexport default Tab;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport Textarea from './Textarea';\nimport Label from './Label';\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst TextareaField = (props: any) => {\n const { label, name, placeholder, disabled, ...config } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n {label} \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n \n
\n \n );\n};\n\nexport default TextareaField;\n"],"names":["Spark","styled","path","_templateObject","_taggedTemplateLiteralLoose","props","colorInit","pulse","duration","Sparkles","_ref","color","React","Fragment","keyframes","_templateObject2","d","_templateObject3","_templateObject4","_templateObject5","_templateObject6","defaultProps","LoadingSVG","className","sparklesColor","sparklesColorInit","sparklesDuration","xmlns","viewBox","fill","size","theme","brand","main","dark","light","commons","fontFamily","body","padding","background","default","border","hover","focus","secondary","disabled","error","Text","p","bold","align","uppercase","displayName","annotate","Component","H1","withComponent","H2","H3","H4","H5","H6","_templateObject7","FullSize","div","LoadingStyles","Loading","children","fullsize","message","messageComponent","MessageComponent","Header","Ring","_ref2","Spinner","_ref3","Bonde","large","width","EmptyIcon","height","EmptyWrap","Icon","fillRule","stroke","strokeWidth","clipRule","strokeLinecap","clipPath","id","mask","transform","name","IconSVG","SVGIcons","Link","component","ownProps","CleanButton","button","Wrapper","Shortcut","icon","text","ModalStyled","isOpen","ModalContentStyled","CloseButtonStyled","Modal","onClose","onClick","SelectIcon","show","css","StyledControl","value","invalid","StyledSingleValue","isDisabled","StyledOption","_templateObject8","isSelected","_templateObject9","isFocused","_templateObject10","_templateObject11","StyledMenu","_templateObject12","SingleValue","selectProps","components","DropdownIndicator","Control","Option","Menu","RoundSelect","toggle","useState","ReactSelect","IndicatorSeparator","onMenuOpen","onMenuClose","onInputChange","classNamePrefix","menuHeight","WrapSelect","_ref4","_ref5","_ref6","_ref7","_ref8","_ref9","getItems","page","totalPages","startPage","endPage","Array","from","_","i","Pagination","_ref10","goToPage","pageIndex","pageSize","setPageSize","showMorePlacement","items","setItems","useEffect","setPage","Stack","direction","my","spacing","justify","Button","variant","colorScheme","map","item","key","options","label","placeholder","onChange","e","Number","menuPortalTarget","document","querySelector","menuPlacement","StyledTh","th","backgroundColor","StyledTd","td","StyledTr","tr","StyledTable","table","sticky","Main","Table","columns","data","pagination","defaultColumn","useMemo","minWidth","maxWidth","getTableProps","getTableBodyProps","headerGroups","rows","prepareRow","useTable","useSortBy","useFlexLayout","headerGroup","getHeaderGroupProps","headers","column","getHeaderProps","getSortByToggleProps","collapse","style","display","justifyContent","paddingRight","render","isSorted","isSortedDesc","row","getRowProps","cells","cell","getCellProps","SpacingStyled","margin","top","bottom","left","right","Spacing","x","marginX","y","marginY","paddingX","paddingY","CardStyled","rounded","Card","rest","Message","span","DropdownList","DropdownItem","DropdownFluid","DropdownFluidList","DropdownFluidInput","onToggle","open","DropdownFluidItem","clickable","DropdownFluidLayout","Dropdown","selectable","onSelect","dropdownInput","DropdownInputUI","dropdownItem","DropdownItemUI","dropdownList","DropdownListUI","setOpen","dropdownRef","useRef","useOutsideAlerter","ref","onEvent","handleClickOutside","event","current","contains","target","addEventListener","removeEventListener","index","selected","DropdownIconItem","DropdownImageInput","img","src","alt","DropdownImageItem","Form","form","handleColor","Hint","FormField","ArrowUpIcon","createIcon","ArrowDownIcon","BotIcon","EditIcon","cx","cy","r","InfoIcon","NetIcon","PagesIcon","SettingsIcon","CloseIcon","UploadImageIcon","opacity","Label","isEmail","test","undefined","required","min","length","max","composeValidators","_len","arguments","validators","_key","reduce","validator","Textarea","textarea","fullWidth","RoundInput","input","type","StyledFormField","Switch","checked","Container","RadioField","meta","useField","FormControl","isInvalid","submitError","touched","mb","Flex","FormLabel","RadioGroup","S3UploadFileField","signingUrl","inputRef","evt","preventDefault","click","ReactS3Uploader","accept","onProgress","args","console","log","onError","onFinish","signedUrl","imageUrl","substring","indexOf","S3UploadField","helpText","uploadImageIcon","UploadImageIconComponent","removeTextButton","borderRadius","boxSize","config","Box","position","Image","FormHelperText","mt","fontSize","formData","fontWeight","Navigation","StyledContainer","ToastContainer","Body","Footer","HomeLink","a","Navbar","indexRoute","fixed","w","bg","px","py","alignItems","href","title","dropdownContext","createContext","PerformDropdownList","scroll","useContext","boxProps","boxShadow","overflowY","Fade","in","zIndex","PerformDropdownItem","cursor","_hover","PerformDropdownButton","buttonProps","rightIcon","PerformDropdown","wrapperRef","setIsOpen","useOutsideClick","handler","Provider","settings","mobilization","redes","chatbot","CommunityMenu","community","session","inverted","apps","updateSession","modules","Object","keys","filter","moduleHost","baseHost","URL","host","window","location","err","hoverColor","isActive","IconComponent","colorSystem","IconButton","url","then","Promise","resolve","reject","CommunitiesDropdown","isMobile","communities","image","textTransform","c","UserDropdown","currentUser","user","logout","firstName","lastName","Heading","as","email","MenuButton","MenuList","MenuGroup","MenuItem","Logout","Content","bgColor","FooterTool","languageTool","LanguageTool","BaseUI","disableNavigation","grow","Tooltip","SketchPicker","onChangeComplete","hex","onSubmit","FinalForm","handleSubmit","formProps","FontsLoader","GoogleFontLoader","fonts","font","weights","subsets","onBlur","Input","isClearable","maxMenuHeight","Select","SuccessIcon","textOff","textOn","active","colorMode","useColorMode","defaultStylesProps","borderBottomColor","borderBottomWidth","borderBottomStyle","pb","mr","paddingTop"],"mappings":"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"}
\ No newline at end of file
diff --git a/clients/libs/components/__dist/esm/_rollupPluginBabelHelpers-6b1e63c6.js b/clients/libs/components/__dist/esm/_rollupPluginBabelHelpers-6b1e63c6.js
new file mode 100644
index 0000000000..c2e16ba554
--- /dev/null
+++ b/clients/libs/components/__dist/esm/_rollupPluginBabelHelpers-6b1e63c6.js
@@ -0,0 +1,44 @@
+function _extends() {
+ _extends = Object.assign || function (target) {
+ for (var i = 1; i < arguments.length; i++) {
+ var source = arguments[i];
+
+ for (var key in source) {
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
+ target[key] = source[key];
+ }
+ }
+ }
+
+ return target;
+ };
+
+ return _extends.apply(this, arguments);
+}
+
+function _objectWithoutPropertiesLoose(source, excluded) {
+ if (source == null) return {};
+ var target = {};
+ var sourceKeys = Object.keys(source);
+ var key, i;
+
+ for (i = 0; i < sourceKeys.length; i++) {
+ key = sourceKeys[i];
+ if (excluded.indexOf(key) >= 0) continue;
+ target[key] = source[key];
+ }
+
+ return target;
+}
+
+function _taggedTemplateLiteralLoose(strings, raw) {
+ if (!raw) {
+ raw = strings.slice(0);
+ }
+
+ strings.raw = raw;
+ return strings;
+}
+
+export { _taggedTemplateLiteralLoose as _, _objectWithoutPropertiesLoose as a, _extends as b };
+//# sourceMappingURL=_rollupPluginBabelHelpers-6b1e63c6.js.map
diff --git a/clients/libs/components/__dist/esm/_rollupPluginBabelHelpers-6b1e63c6.js.map b/clients/libs/components/__dist/esm/_rollupPluginBabelHelpers-6b1e63c6.js.map
new file mode 100644
index 0000000000..5af2903e52
--- /dev/null
+++ b/clients/libs/components/__dist/esm/_rollupPluginBabelHelpers-6b1e63c6.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"_rollupPluginBabelHelpers-6b1e63c6.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
\ No newline at end of file
diff --git a/clients/libs/components/__dist/esm/index.js b/clients/libs/components/__dist/esm/index.js
new file mode 100644
index 0000000000..295c1d5b53
--- /dev/null
+++ b/clients/libs/components/__dist/esm/index.js
@@ -0,0 +1,2879 @@
+import React, { useState, useEffect, useRef, useContext, createContext } from 'react';
+import GoogleFontLoader from 'react-google-font-loader';
+import styled, { keyframes, css } from 'styled-components';
+import { useTable, useSortBy, useFlexLayout } from 'react-table';
+import { Stack, Button, FormControl, Flex, FormLabel, Tooltip, Input, Select, RadioGroup, Box, Image, FormHelperText, Fade, useOutsideClick, IconButton, Text as Text$2, Heading, Menu as Menu$1, MenuButton, MenuList, MenuGroup, MenuItem } from '@chakra-ui/react';
+import ReactSelect, { components } from 'react-select';
+import { Form as Form$1, useField } from 'react-final-form';
+import { InfoIcon, EditIcon, UploadImageIcon, ArrowUpIcon, ArrowDownIcon, SettingsIcon, PagesIcon, NetIcon, BotIcon, CloseIcon } from './index2.js';
+import ReactS3Uploader from 'react-s3-uploader';
+import { SketchPicker } from 'react-color';
+import { useColorMode } from '@chakra-ui/color-mode';
+import { ToastContainer } from 'react-toastify';
+export { toast } from 'react-toastify';
+import styled$1 from '@emotion/styled';
+
+const FontsLoader = () => React.createElement(GoogleFontLoader, {
+ fonts: [{
+ font: 'Nunito Sans',
+ weights: [400, 700, 800]
+ }],
+ subsets: ['cyrillic-ext', 'greek']
+});
+
+function _taggedTemplateLiteralLoose(strings, raw) {
+ if (!raw) {
+ raw = strings.slice(0);
+ }
+ strings.raw = raw;
+ return strings;
+}
+
+var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
+const Spark = /*#__PURE__*/styled.path(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n fill: ", ";\n animation-name: ", ";\n animation-duration: ", ";\n animation-iteration-count: infinite;\n"])), props => props.colorInit, props => props.pulse, props => props.duration);
+const Sparkles = _ref => {
+ let {
+ color,
+ colorInit,
+ duration
+ } = _ref;
+ return React.createElement(React.Fragment, null, React.createElement(Spark, {
+ colorInit: colorInit,
+ duration: duration,
+ pulse: keyframes(_templateObject2 || (_templateObject2 = _taggedTemplateLiteralLoose(["\n 0% { fill: ", " }\n 81% { fill: ", " }\n 82% { fill: ", " }\n "])), color, color, colorInit),
+ d: "M23,84H12.5c-1.7,0-3-1.4-3-3l0,0c0-1.7,1.4-3,3-3H23c1.7,0,3,1.4,3,3l0,0C26,82.7,24.6,84,23,84z"
+ }), React.createElement(Spark, {
+ colorInit: colorInit,
+ duration: duration,
+ pulse: keyframes(_templateObject3 || (_templateObject3 = _taggedTemplateLiteralLoose(["\n 15% { fill: ", " }\n 16% { fill: ", " }\n 81% { fill: ", " }\n 82% { fill: ", " }\n "])), colorInit, color, color, colorInit),
+ d: "M36,35.1l7.4,7.4c1.2,1.2,3.1,1.2,4.3,0l0,0c1.2-1.2,1.2-3.1,0-4.3l-7.4-7.4c-1.2-1.2-3.1-1.2-4.3,0l0,0 C34.8,32,34.8,34,36,35.1z"
+ }), React.createElement(Spark, {
+ colorInit: colorInit,
+ duration: duration,
+ pulse: keyframes(_templateObject4 || (_templateObject4 = _taggedTemplateLiteralLoose(["\n 31% { fill: ", " }\n 32% { fill: ", " }\n 81% { fill: ", " }\n 82% { fill: ", " }\n "])), colorInit, color, color, colorInit),
+ d: "M89.8,14.1v10.4c0,1.7-1.4,3-3,3l0,0c-1.7,0-3-1.4-3-3V14.1c0-1.7,1.4-3,3-3l0,0C88.4,11.1,89.8,12.5,89.8,14.1 z"
+ }), React.createElement(Spark, {
+ color: color,
+ colorInit: colorInit,
+ duration: duration,
+ pulse: keyframes(_templateObject5 || (_templateObject5 = _taggedTemplateLiteralLoose(["\n 47% { fill: ", " }\n 48% { fill: ", " }\n 81% { fill: ", " }\n 82% { fill: ", " }\n "])), colorInit, color, color, colorInit),
+ d: "M138.3,35.1l-7.4,7.4c-1.2,1.2-3.1,1.2-4.3,0v0c-1.2-1.2-1.2-3.1,0-4.3l7.4-7.4c1.2-1.2,3.1-1.2,4.3,0v0 C139.5,32,139.5,34,138.3,35.1z"
+ }), React.createElement(Spark, {
+ color: color,
+ colorInit: colorInit,
+ duration: duration,
+ pulse: keyframes(_templateObject6 || (_templateObject6 = _taggedTemplateLiteralLoose(["\n 63% { fill: ", " }\n 64% { fill: ", " }\n 81% { fill: ", " }\n 82% { fill: ", " }\n "])), colorInit, color, color, colorInit),
+ d: "M163,84h-10.4c-1.7,0-3-1.4-3-3l0,0c0-1.7,1.4-3,3-3H163c1.7,0,3,1.4,3,3l0,0C166,82.7,164.7,84,163,84z"
+ }));
+};
+Sparkles.defaultProps = {
+ colorInit: '#DBDBDB',
+ color: '#35E3C3',
+ duration: '6s'
+};
+
+var _templateObject$1;
+/**
+ * Animated loading transition component.
+ */
+const LoadingSVG = /*#__PURE__*/styled(props => {
+ const {
+ className,
+ color,
+ sparklesColor,
+ sparklesColorInit,
+ sparklesDuration
+ } = props;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className,
+ viewBox: "0 0 176 135"
+ }, React.createElement("path", {
+ fill: color,
+ d: "M129.7,123.3H43.8c-1.1,0-2-0.9-2-2V119c0-1.1,0.9-2,2-2h85.9c1.1,0,2,0.9,2,2v2.3C131.7,122.4,130.8,123.3,129.7,123.3z"
+ }), React.createElement("path", {
+ fill: color,
+ d: "M117,68.2c-12.7,0-15.2,0-15.2,0v-4h-12L96,58v-4.7l-6.6-6.6c0,0-2.6-2.3-4.9,0s-5.9,5.9-5.9,5.9v4.7l7,7H73.2 v3.8H55.5c0,0-13.7-0.2-13.7,13.5v21c0,0-1.2,5.4,10.5,6.4c0.8,3.2,3.9,5.6,7.7,5.6c3.7,0,6.8-2.3,7.7-5.4c0.6,0,1.1,0,1.7,0 c0.9,3.1,4,5.4,7.7,5.4s6.8-2.3,7.7-5.4c2.5,0,5.1,0,7.7,0c0.9,3.1,4,5.4,7.7,5.4s6.8-2.3,7.7-5.4c0.6,0,1.2,0,1.7,0 c0.9,3.1,4,5.4,7.7,5.4c3.7,0,6.8-2.4,7.7-5.5c1.2-0.5,6.9-2.9,6.9-8.9c0-6.7,0-26.5,0-26.5S129.7,68.2,117,68.2z M70.3,75.8 c0-1.1,0.9-2,2-2h10.3c1.1,0,2,0.9,2,2v15.3c0,1.1-0.9,2-2,2H72.3c-1.1,0-2-0.9-2-2V75.8z M50.8,90.5v-11c2-5.3,6.3-5.7,6.3-5.7 s0,0,4,0s3.8,2,3.8,2s0,4,0,11.2c0,5.7-1.6,6.2-1.6,6.2s-5.4,0-8.9,0S50.8,90.5,50.8,90.5z M60,111.6c-2,0-3.7-1-4.4-2.4 c0.1,0,0.3,0,0.4,0c2.2,0,5.1,0,8.4,0C63.7,110.6,62,111.6,60,111.6z M77,111.6c-2,0-3.6-1-4.4-2.4c2.8,0,5.8,0,8.9,0 C80.7,110.6,79,111.6,77,111.6z M109.2,75.8c0-1.1,0.9-2,2-2h10.3c1.1,0,2,0.9,2,2v15.3c0,1.1-0.9,2-2,2h-10.3c-1.1,0-2-0.9-2-2 V75.8z M89.8,91.2V75.8c0-1.1,0.9-2,2-2h10.3c1.1,0,2,0.9,2,2v15.3c0,1.1-0.9,2-2,2H91.8C90.7,93.2,89.8,92.3,89.8,91.2z M100,111.6 c-2,0-3.6-1-4.4-2.4c3.1,0,6,0,8.9,0C103.6,110.6,102,111.6,100,111.6z M117.1,111.6c-2,0-3.6-1-4.4-2.4c3.7,0,6.8,0,8.9,0 C120.7,110.6,119,111.6,117.1,111.6z"
+ }), React.createElement(Sparkles, {
+ color: sparklesColor,
+ colorInit: sparklesColorInit,
+ duration: sparklesDuration
+ }));
+})(_templateObject$1 || (_templateObject$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n ", "\n ", "\n"])), props => props.size === 'small' && "\n width: calc(0.5*176px);\n height: calc(0.5*135px);\n ", props => props.size === 'default' && "\n width: calc(0.75*176px);\n height: calc(0.75*135px);\n ", props => props.size === 'large' && "\n width: calc(1*176px);\n height: calc(1*135px);\n ");
+LoadingSVG.defaultProps = {
+ color: '#050505',
+ size: 'default',
+ sparklesColor: '#35E3C3',
+ sparklesColorInit: '#DBDBDB',
+ sparklesDuration: '6s'
+};
+
+const theme = {
+ brand: {
+ main: '#ee0099',
+ dark: '#000',
+ light: '#fff'
+ },
+ commons: {
+ dark: '#4A4A4A',
+ main: '#aaa',
+ light: '#eee'
+ },
+ fontFamily: "'Nunito Sans', sans-serif",
+ body: {
+ padding: 60,
+ background: {
+ light: '#fff',
+ main: 'rgb(247,247,247)',
+ dark: '#000'
+ }
+ },
+ default: {
+ color: {
+ main: '#fff'
+ },
+ border: {
+ main: '#ee0099'
+ },
+ background: {
+ main: '#ee0099',
+ hover: '#e2058a',
+ focus: '#b4006c'
+ }
+ },
+ dark: {
+ color: {
+ main: '#000',
+ hover: '#4A4A4A',
+ focus: '#9b9b9b'
+ },
+ border: {
+ main: '#000',
+ hover: '#4A4A4A',
+ focus: '#9b9b9b'
+ },
+ background: {
+ main: 'none'
+ }
+ },
+ light: {
+ color: {
+ main: '#fff',
+ hover: '#9b9b9b',
+ focus: '#4A4A4A'
+ },
+ border: {
+ main: '#fff',
+ hover: '#eee',
+ focus: '#4A4A4A'
+ },
+ background: {
+ main: 'none'
+ }
+ },
+ secondary: {
+ color: {
+ main: '#000',
+ hover: '#424242',
+ focus: '#9B9B9B'
+ },
+ border: {
+ main: 'transparent',
+ hover: 'transparent',
+ focus: 'transparent'
+ },
+ background: {
+ main: 'none'
+ },
+ disabled: {
+ color: {
+ main: '#AAAAAA',
+ hover: '#AAAAAA',
+ focus: '#AAAAAA'
+ },
+ background: {
+ main: 'none'
+ }
+ }
+ },
+ error: '#FF2B4E'
+};
+
+var _templateObject$2, _templateObject2$1, _templateObject3$1, _templateObject4$1, _templateObject5$1, _templateObject6$1, _templateObject7;
+/**
+ * The only true paragraph.
+ */
+const Text = /*#__PURE__*/styled.p(_templateObject$2 || (_templateObject$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-size: 16px;\n font-weight: ", ";\n line-height: 25px;\n color: ", ";\n text-align: ", ";\n letter-spacing: normal;\n\n ", "\n"])), props => props.theme.fontFamily, props => props.bold ? 'bold' : 'normal', props => props.theme.commons.dark, props => props.align, props => props.uppercase && 'text-transform: uppercase;');
+Text.defaultProps = {
+ theme,
+ align: 'left',
+ uppercase: false,
+ bold: false
+};
+Text.displayName = 'Text';
+const annotate = Component => {
+ Component.defaultProps = {
+ theme
+ };
+ return Component;
+};
+var Header = {
+ H1: /*#__PURE__*/annotate( /*#__PURE__*/styled(Text.withComponent('h1'))(_templateObject2$1 || (_templateObject2$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 60px;\n font-weight: 900;\n line-height: 1;\n color: #000;\n "])))),
+ H2: /*#__PURE__*/annotate( /*#__PURE__*/styled(Text.withComponent('h2'))(_templateObject3$1 || (_templateObject3$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 36px;\n font-weight: 900;\n line-height: 1.22;\n color: #000;\n "])))),
+ H3: /*#__PURE__*/annotate( /*#__PURE__*/styled(Text.withComponent('h3'))(_templateObject4$1 || (_templateObject4$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 21px;\n font-weight: 800;\n line-height: 0.95;\n margin-bottom: 12px;\n color: #000;\n "])))),
+ H4: /*#__PURE__*/annotate( /*#__PURE__*/styled(Text.withComponent('h4'))(_templateObject5$1 || (_templateObject5$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 18px;\n font-weight: 800;\n line-height: 1.39;\n margin-bottom: 5px;\n color: #000;\n "])))),
+ H5: /*#__PURE__*/annotate( /*#__PURE__*/styled(Text.withComponent('h5'))(_templateObject6$1 || (_templateObject6$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 13px;\n line-height: 18px;\n color: #424242;\n letter-spacing: 0.005em;\n font-weight: 800;\n "])))),
+ H6: /*#__PURE__*/annotate( /*#__PURE__*/styled(Text.withComponent('h6'))(_templateObject7 || (_templateObject7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 11px;\n line-height: 2.27;\n color: #424242;\n "]))))
+};
+
+var _templateObject$3, _templateObject2$2;
+const FullSize = /*#__PURE__*/styled.div(_templateObject$3 || (_templateObject$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100vh;\n align-items: center;\n justify-content: center;\n background: ", ";\n"])), props => props.background);
+const LoadingStyles = /*#__PURE__*/styled.div(_templateObject2$2 || (_templateObject2$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n text-align: ", ";\n"])), props => props.align);
+/**
+ * Animated loading transition component.
+ */
+const Loading = _ref => {
+ let {
+ children,
+ align,
+ fullsize,
+ background,
+ message,
+ messageComponent: MessageComponent,
+ ...props
+ } = _ref;
+ return fullsize ? React.createElement(FullSize, {
+ background: background
+ }, React.createElement(LoadingSVG, Object.assign({}, props)), message ? React.createElement(MessageComponent, null, message) : children) : React.createElement(LoadingStyles, {
+ align: align
+ }, React.createElement(LoadingSVG, Object.assign({}, props)), message ? React.createElement(MessageComponent, null, message) : children);
+};
+Loading.defaultProps = {
+ align: 'center',
+ fullsize: false,
+ background: 'rgba(219,219,219,0.31)',
+ color: '#050505',
+ size: 'default',
+ sparklesColor: '#35E3C3',
+ sparklesColorInit: '#DBDBDB',
+ sparklesDuration: '6s',
+ messageComponent: Header.H3
+};
+
+var _templateObject$4;
+const Ring = /*#__PURE__*/styled.div(_templateObject$4 || (_templateObject$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n & div {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 64px;\n height: 64px;\n margin: 8px;\n border: 8px solid ", ";\n border-radius: 50%;\n animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: ", " transparent transparent\n transparent;\n }\n & div:nth-child(1) {\n animation-delay: -0.45s;\n }\n & div:nth-child(2) {\n animation-delay: -0.3s;\n }\n & div:nth-child(3) {\n animation-delay: -0.15s;\n }\n @keyframes lds-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.commons.light;
+}, _ref2 => {
+ let {
+ theme
+ } = _ref2;
+ return theme.commons.light;
+});
+const Spinner = _ref3 => {
+ let {
+ theme
+ } = _ref3;
+ return React.createElement(Ring, {
+ theme: theme
+ }, React.createElement("div", null), React.createElement("div", null), React.createElement("div", null), React.createElement("div", null));
+};
+Spinner.defaultProps = {
+ theme
+};
+
+var _templateObject$5;
+const Bonde = /*#__PURE__*/styled(_ref => {
+ let {
+ className,
+ large
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className,
+ width: large ? 260 : 85,
+ viewBox: large ? '0 0 200 100' : '50 25 100 50'
+ }, React.createElement("path", {
+ fill: "#FFF",
+ d: "M44.948 52.505c0-11.641 9.21-20.568 20.568-20.568 11.357 0 20.567 8.927 20.567 20.568 0 11.639-9.21 20.568-20.567 20.568-11.358 0-20.568-8.929-20.568-20.568zm32.094 0c0-7.064-5.084-11.754-11.525-11.754-6.442 0-11.527 4.689-11.527 11.754 0 7.062 5.085 11.752 11.527 11.752 6.441 0 11.525-4.69 11.525-11.752zM122.243 32.727V72.28h-6.78l-15.255-21.473V72.28h-9.042V32.727h6.781l15.255 21.471V32.727h9.041zM164.056 52.505c0 11.188-8.307 19.775-19.212 19.775h-15.821V32.727h15.821c10.905 0 19.212 8.588 19.212 19.778zm-8.702 0c0-6.781-4.295-11.076-10.51-11.076h-6.78v22.15h6.78c6.215 0 10.51-4.295 10.51-11.074zM194 63.579v8.701h-24.862V32.727h24.579v8.702h-15.538v6.555h14.127v8.59h-14.127v7.006H194zM40.937 59.731c0 7.381-6.012 12.203-13.453 12.203H9.981V30.263h16.311c7.264 0 13.156 4.704 13.156 11.906 0 3.454-1.369 6.192-3.632 8.157 3.097 1.962 5.121 5.179 5.121 9.405zM19.505 39.193v7.381h6.787c2.145 0 3.633-1.546 3.633-3.691 0-2.142-1.43-3.69-3.633-3.69h-6.787zm11.908 19.824c0-2.322-1.549-3.988-3.93-3.988h-7.979v7.979h7.979c2.381-.001 3.93-1.669 3.93-3.991z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M40.196 59.274c0 7.383-6.014 12.205-13.453 12.205H9.239V29.807h16.312c7.265 0 13.157 4.704 13.157 11.907 0 3.452-1.369 6.191-3.632 8.156 3.097 1.965 5.12 5.178 5.12 9.404zM18.765 38.738v7.382h6.786c2.144 0 3.632-1.548 3.632-3.691 0-2.144-1.428-3.691-3.632-3.691h-6.786zm11.906 19.824c0-2.322-1.548-3.988-3.928-3.988h-7.979v7.977h7.979c2.38-.001 3.928-1.669 3.928-3.989z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M39.456 58.813c0 7.381-6.014 12.203-13.454 12.203H8.499V29.345h16.312c7.264 0 13.157 4.703 13.157 11.907 0 3.453-1.369 6.191-3.632 8.155 3.096 1.965 5.12 5.178 5.12 9.406zM18.024 38.275v7.382h6.786c2.144 0 3.632-1.548 3.632-3.691s-1.43-3.691-3.632-3.691h-6.786zM29.93 58.099c0-2.322-1.546-3.988-3.928-3.988h-7.978v7.975h7.978c2.382-.001 3.928-1.667 3.928-3.987z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M41.679 60.188c0 7.381-6.014 12.201-13.454 12.201H10.722v-41.67h16.311c7.264 0 13.156 4.704 13.156 11.907 0 3.453-1.369 6.192-3.631 8.155 3.096 1.964 5.121 5.181 5.121 9.407zM20.247 39.649v7.382h6.785c2.145 0 3.633-1.548 3.633-3.69 0-2.143-1.43-3.691-3.633-3.691h-6.785zm11.906 19.823c0-2.322-1.548-3.988-3.929-3.988h-7.978v7.979h7.978c2.381-.001 3.929-1.669 3.929-3.991z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M38.714 58.358c0 7.383-6.012 12.205-13.453 12.205H7.758V28.89H24.07c7.264 0 13.156 4.704 13.156 11.907 0 3.453-1.369 6.192-3.631 8.155 3.096 1.965 5.119 5.18 5.119 9.406zm-21.43-20.537v7.381h6.785c2.145 0 3.633-1.548 3.633-3.691s-1.43-3.69-3.633-3.69h-6.785zM29.19 57.644c0-2.322-1.549-3.99-3.93-3.99h-7.977v7.98h7.977c2.382 0 3.93-1.668 3.93-3.99z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M37.974 57.903c0 7.383-6.012 12.203-13.453 12.203H7.019V28.435H23.33c7.264 0 13.156 4.704 13.156 11.907 0 3.453-1.369 6.192-3.631 8.157 3.095 1.963 5.119 5.178 5.119 9.404zM16.542 37.365v7.383h6.787c2.145 0 3.631-1.548 3.631-3.692s-1.428-3.691-3.631-3.691h-6.787zM28.448 57.19c0-2.324-1.547-3.99-3.928-3.99h-7.979v7.977h7.979c2.381 0 3.928-1.666 3.928-3.987z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M37.233 57.45c0 7.381-6.014 12.201-13.454 12.201H6.276v-41.67h16.312c7.264 0 13.155 4.703 13.155 11.907 0 3.453-1.369 6.191-3.631 8.156 3.098 1.963 5.121 5.178 5.121 9.406zM15.802 36.912v7.381h6.787c2.143 0 3.631-1.548 3.631-3.691 0-2.142-1.429-3.69-3.631-3.69h-6.787zm11.906 19.821c0-2.32-1.548-3.988-3.929-3.988h-7.978v7.979h7.978c2.381 0 3.929-1.668 3.929-3.991z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M6.276 69.651L11.072 73.065 11.462 71.479 6.704 68.45 6.28 68.206z"
+ }), React.createElement("path", {
+ d: "M6.276 55.521L11.462 58.956 11.462 57.267 6.704 54.235 6.28 53.995z"
+ }), React.createElement("path", {
+ d: "M6.276 52.792L11.462 56.022 11.462 50.519 6.704 47.488 6.28 47.246z"
+ }), React.createElement("path", {
+ d: "M11.854 30.988L6.276 27.981 8.501 27.981 14.479 30.988z"
+ }), React.createElement("path", {
+ d: "M42.419 60.458c0 7.381-6.014 12.201-13.455 12.201H11.462V30.988h16.312c7.262 0 13.154 4.704 13.154 11.906 0 3.453-1.368 6.192-3.631 8.157 3.099 1.964 5.122 5.178 5.122 9.407zM20.987 39.919V47.3h6.787c2.143 0 3.631-1.547 3.631-3.69 0-2.144-1.429-3.691-3.631-3.691h-6.787zm11.907 19.822c0-2.322-1.549-3.988-3.93-3.988h-7.977v7.977h7.977c2.381-.001 3.93-1.667 3.93-3.989z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M28.964 73.104H11.019v-42.56h16.756c7.88 0 13.6 5.194 13.6 12.35 0 3.204-1.158 5.993-3.356 8.103 3.13 2.191 4.846 5.527 4.846 9.461-.002 7.326-5.847 12.646-13.901 12.646zm-17.057-.888h17.057c7.539 0 13.011-4.945 13.011-11.758 0-3.814-1.745-7.021-4.914-9.033l-.503-.318.449-.391c2.276-1.977 3.479-4.68 3.479-7.821 0-6.642-5.346-11.462-12.711-11.462H11.907v40.783zm17.057-8.041h-8.421V55.31h8.421c2.575 0 4.373 1.822 4.373 4.432s-1.798 4.433-4.373 4.433zm-7.532-.889h7.532c2.086 0 3.486-1.424 3.486-3.545 0-2.119-1.4-3.545-3.486-3.545h-7.532v7.09zm6.342-15.541h-7.231v-8.27h7.231c2.398 0 4.074 1.7 4.074 4.134.001 2.397-1.712 4.136-4.074 4.136zm-6.342-.888h6.343c1.877 0 3.188-1.336 3.188-3.247 0-1.942-1.281-3.247-3.188-3.247h-6.343v6.494z"
+ }), React.createElement("g", null, React.createElement("path", {
+ d: "M259.224 51.742c0-11.267 8.915-19.909 19.909-19.909 10.993 0 19.908 8.642 19.908 19.909 0 11.269-8.915 19.909-19.908 19.909-10.994 0-19.909-8.64-19.909-19.909zm31.066 0c0-6.837-4.923-11.376-11.157-11.376-6.235 0-11.158 4.54-11.158 11.376 0 6.838 4.923 11.377 11.158 11.377 6.234 0 11.157-4.539 11.157-11.377zM334.043 32.599v38.287h-6.563l-14.768-20.785v20.785h-8.752V32.599h6.565l14.765 20.784V32.599h8.753zM374.515 51.742c0 10.83-8.042 19.144-18.596 19.144h-15.316V32.599h15.316c10.554 0 18.596 8.315 18.596 19.143zm-8.423 0c0-6.562-4.155-10.72-10.173-10.72h-6.564v21.441h6.564c6.018 0 10.173-4.156 10.173-10.721zM403.5 62.463v8.423h-24.064V32.599h23.79v8.423h-15.041v6.344h13.675v8.315h-13.675v6.782H403.5zM255.342 58.738c0 7.146-5.82 11.812-13.023 11.812h-16.942V30.214h15.789c7.031 0 12.735 4.553 12.735 11.524 0 3.343-1.326 5.994-3.516 7.896 2.998 1.899 4.957 5.012 4.957 9.104zm-20.744-19.881v7.146h6.567c2.075 0 3.517-1.498 3.517-3.572 0-2.077-1.385-3.574-3.517-3.574h-6.567zm11.522 19.19c0-2.247-1.498-3.861-3.802-3.861h-7.721v7.721h7.721c2.304-.001 3.802-1.614 3.802-3.86z"
+ }), React.createElement("path", {
+ d: "M254.625 58.297c0 7.146-5.821 11.813-13.023 11.813H224.66V29.774h15.788c7.03 0 12.735 4.552 12.735 11.525 0 3.341-1.325 5.992-3.516 7.895 2.998 1.9 4.958 5.011 4.958 9.103zm-20.748-19.88v7.146h6.57c2.076 0 3.517-1.5 3.517-3.574s-1.383-3.573-3.517-3.573h-6.57zm11.526 19.188c0-2.247-1.497-3.86-3.802-3.86h-7.725v7.722h7.725c2.305 0 3.802-1.614 3.802-3.862z"
+ }), React.createElement("path", {
+ d: "M253.907 57.85c0 7.145-5.821 11.812-13.022 11.812h-16.941V29.325h15.788c7.03 0 12.734 4.553 12.734 11.526 0 3.34-1.325 5.993-3.515 7.894 2.997 1.901 4.956 5.012 4.956 9.105zm-20.746-19.88v7.146h6.57c2.074 0 3.515-1.5 3.515-3.573 0-2.074-1.383-3.573-3.515-3.573h-6.57zm11.527 19.188c0-2.249-1.498-3.861-3.803-3.861h-7.724v7.721h7.724c2.304 0 3.803-1.613 3.803-3.86z"
+ }), React.createElement("path", {
+ d: "M256.059 59.18c0 7.145-5.82 11.812-13.022 11.812h-16.943V30.654h15.789c7.031 0 12.733 4.554 12.733 11.526 0 3.341-1.323 5.993-3.513 7.894 2.997 1.903 4.956 5.015 4.956 9.106zM235.313 39.3v7.145h6.568c2.075 0 3.517-1.497 3.517-3.572 0-2.076-1.385-3.573-3.517-3.573h-6.568zm11.526 19.188c0-2.248-1.5-3.862-3.803-3.862h-7.723v7.722h7.723c2.303 0 3.803-1.614 3.803-3.86z"
+ }), React.createElement("path", {
+ d: "M253.19 57.41c0 7.146-5.821 11.812-13.023 11.812h-16.94V28.886h15.788c7.03 0 12.734 4.553 12.734 11.525 0 3.343-1.325 5.994-3.515 7.895 2.997 1.901 4.956 5.013 4.956 9.104zm-20.745-19.88v7.145h6.569c2.075 0 3.515-1.497 3.515-3.572 0-2.076-1.383-3.573-3.515-3.573h-6.569zm11.526 19.188c0-2.247-1.5-3.861-3.804-3.861h-7.722v7.723h7.722c2.304-.001 3.804-1.615 3.804-3.862z"
+ }), React.createElement("path", {
+ d: "M252.473 56.969c0 7.146-5.819 11.812-13.022 11.812h-16.942V28.444h15.789c7.032 0 12.734 4.553 12.734 11.525 0 3.342-1.325 5.994-3.514 7.895 2.996 1.903 4.955 5.014 4.955 9.105zm-20.744-19.881v7.146h6.568c2.076 0 3.516-1.498 3.516-3.573 0-2.074-1.383-3.574-3.516-3.574h-6.568zm11.524 19.189c0-2.247-1.498-3.86-3.803-3.86h-7.722v7.722h7.722c2.305 0 3.803-1.616 3.803-3.862z"
+ }), React.createElement("path", {
+ d: "M251.756 56.528c0 7.145-5.818 11.813-13.022 11.813h-16.942V28.005h15.789c7.031 0 12.734 4.552 12.734 11.525 0 3.342-1.326 5.993-3.516 7.895 2.997 1.901 4.957 5.012 4.957 9.103zm-20.745-19.88v7.146h6.569c2.076 0 3.515-1.497 3.515-3.573 0-2.074-1.383-3.573-3.515-3.573h-6.569zm11.524 19.189c0-2.247-1.497-3.86-3.802-3.86h-7.723v7.722h7.723c2.305-.001 3.802-1.615 3.802-3.862z"
+ }), React.createElement("path", {
+ d: "M221.791 68.342L226.433 71.647 226.811 70.11 222.205 67.176 221.794 66.942z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M221.791 54.664L226.811 57.988 226.811 56.354 222.205 53.42 221.794 53.187z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M221.791 52.021L226.811 55.15 226.811 49.821 222.205 46.888 221.794 46.652z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M227.19 30.915L221.791 28.005 223.943 28.005 229.731 30.915z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M256.774 59.44c0 7.145-5.819 11.812-13.022 11.812h-16.941V30.915h15.788c7.031 0 12.734 4.554 12.734 11.526 0 3.341-1.324 5.994-3.514 7.894 2.997 1.902 4.955 5.014 4.955 9.105zM236.03 39.561v7.146h6.568c2.076 0 3.516-1.5 3.516-3.574s-1.384-3.571-3.516-3.571h-6.568zm11.525 19.188c0-2.248-1.499-3.861-3.803-3.861h-7.722v7.722h7.722c2.304-.001 3.803-1.615 3.803-3.861z"
+ }), React.createElement("path", {
+ d: "M243.752 71.648h-17.338V30.52h16.185c7.608 0 13.131 5.013 13.131 11.921 0 3.107-1.127 5.808-3.269 7.847 3.042 2.112 4.709 5.345 4.709 9.152 0 7.074-5.642 12.208-13.418 12.208zm-16.546-.792h16.546c7.317 0 12.628-4.802 12.628-11.416 0-3.702-1.695-6.818-4.772-8.769l-.449-.285.4-.349c2.211-1.92 3.379-4.547 3.379-7.596 0-6.448-5.188-11.13-12.339-11.13h-15.393v39.545zm16.546-7.849h-8.117v-8.515h8.117c2.474 0 4.198 1.751 4.198 4.257 0 2.504-1.724 4.258-4.198 4.258zm-7.327-.793h7.327c2.038 0 3.408-1.393 3.408-3.465 0-2.073-1.37-3.465-3.408-3.465h-7.327v6.93zm6.174-15.112h-6.964v-7.937h6.964c2.303 0 3.911 1.632 3.911 3.968 0 2.3-1.646 3.969-3.911 3.969zm-6.174-.792h6.174c1.837 0 3.12-1.307 3.12-3.178 0-1.898-1.253-3.176-3.12-3.176h-6.174v6.354z"
+ })));
+})(_templateObject$5 || (_templateObject$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n ", "\n"])), props => !props.large && "\n height: calc(1.5 * 15px);\n ");
+Bonde.defaultProps = {
+ large: false
+};
+
+var _templateObject$6;
+const EmptyIcon = () => {
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "38",
+ height: "56",
+ fill: "none",
+ viewBox: "0 0 38 56"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M35.435 28.166c-.678-.665-1.865-1.148-2.823-1.148l-8.484-.002v9.216h8.484c.958 0 2.145-.483 2.823-1.148l1.891-1.858A2.23 2.23 0 0038 31.624c0-.606-.24-1.175-.675-1.601l-1.89-1.857zM24.129 22.174h8.483c.958 0 2.146-.483 2.823-1.149l1.891-1.858A2.23 2.23 0 0038 17.565a2.23 2.23 0 00-.675-1.601l-1.89-1.856c-.677-.665-1.865-1.148-2.823-1.148l-8.607-.002c.08.352.124.717.124 1.093v8.123zM19 11.2c-1.6 0-2.902 1.279-2.902 2.851V47.44c0 .604.498 1.093 1.113 1.093h3.578c.614 0 1.113-.49 1.113-1.093V14.05C21.902 12.48 20.6 11.2 19 11.2zM2.564 21.135l-1.89 1.858A2.23 2.23 0 000 24.595c0 .606.24 1.175.675 1.602l1.89 1.855c.677.665 1.864 1.148 2.823 1.148l8.484.002v-9.216H5.388c-.958 0-2.146.483-2.824 1.15zM25.65 5.6c-1.571 0-2.85-1.256-2.85-2.8 0-1.544 1.279-2.8 2.85-2.8 1.571 0 2.85 1.256 2.85 2.8 0 1.544-1.279 2.8-2.85 2.8zm0-3.733a.943.943 0 00-.95.933c0 .515.427.933.95.933.523 0 .95-.418.95-.933a.943.943 0 00-.95-.933z"
+ }), React.createElement("path", {
+ fill: "#000",
+ d: "M34.2 11.2h-6.812c-2.007 0-3.638-1.603-3.638-3.573v-.32c0-1.97 1.631-3.574 3.638-3.574.97 0 1.883.372 2.571 1.047l4.914 4.827a.92.92 0 01.206 1.017.952.952 0 01-.879.576zm-6.812-5.6c-.96 0-1.738.765-1.738 1.706v.321c0 .941.779 1.706 1.738 1.706h4.519L28.617 6.1a1.744 1.744 0 00-1.23-.499z"
+ }), React.createElement("path", {
+ fill: "#000",
+ d: "M26.6 10.267h1.9V14h-1.9v-3.733zM30.4 10.267h1.9V14h-1.9v-3.733zM21.09 2.8c0-.515.421-.933.94-.933H23c.52 0 .94.418.94.933 0 .515-.42.933-.94.933h-.97a.937.937 0 01-.94-.933z"
+ }), React.createElement("path", {
+ fill: "#000",
+ d: "M27.55 2.8c0 1.03-.85 1.867-1.9 1.867-1.05 0-1.9-.836-1.9-1.867 0-1.03.85-1.867 1.9-1.867 1.05 0 1.9.836 1.9 1.867zM34.2 10.267h-6.813c-1.484 0-2.687-1.182-2.687-2.64v-.32c0-1.459 1.203-2.64 2.687-2.64.712 0 1.396.278 1.9.773l4.913 4.827zM5.503 53.268a2.742 2.742 0 012.752-2.731h20.638a2.742 2.742 0 012.752 2.731A2.742 2.742 0 0128.893 56H8.255a2.742 2.742 0 01-2.752-2.732z"
+ }));
+};
+const EmptyWrap = /*#__PURE__*/styled.div(_templateObject$6 || (_templateObject$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n align-items: center;\n justify-content: center;\n\n ", " {\n margin-top: 15px;\n font-weight: normal;\n }\n"])), Header.H4);
+const Empty = _ref => {
+ let {
+ message
+ } = _ref;
+ return React.createElement(EmptyWrap, null, React.createElement(EmptyIcon, null), message && React.createElement(Header.H4, null, message));
+};
+
+const Icon = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "4 4 15 15"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"
+ }));
+};
+Icon.displayName = 'Icon.ArrowDown';
+
+const Icon$1 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "4 4 15 15"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"
+ }));
+};
+Icon$1.displayName = 'Icon.ArrowLeft';
+
+const Icon$2 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "4 4 15 15"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"
+ }));
+};
+Icon$2.displayName = 'Icon.ArrowRight';
+
+const Icon$3 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "4 4 15 15"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"
+ }));
+};
+Icon$3.displayName = 'Icon.ArrowUp';
+
+const Icon$4 = _ref => {
+ let {
+ className,
+ color
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className,
+ viewBox: "0 0 18 22"
+ }, React.createElement("g", {
+ fill: "none",
+ fillRule: "evenodd"
+ }, React.createElement("path", {
+ fill: "none",
+ d: "M-153-28h1440v130H-153z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M16.632 15.045c0 3.478-2.88 5.749-6.48 5.749H1.8V1.135h7.848c3.456 0 6.336 2.2 6.336 5.607a4.852 4.852 0 0 1-1.728 3.832 5.238 5.238 0 0 1 2.376 4.471zM6.336 5.323V8.8h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521h-3.24v.07zm5.76 9.367a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H6.336v3.761h3.816a1.773 1.773 0 0 0 1.41-.473c.376-.357.571-.86.534-1.372z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M16.272 14.832c0 3.478-2.88 5.749-6.48 5.749H1.44V.923h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.832 5.238 5.238 0 0 1 2.376 4.471zM5.976 5.11v3.477h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.647 1.647 0 0 0-.465-1.264 1.697 1.697 0 0 0-1.263-.51l-3.24.07zm5.76 9.367a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H5.976v3.762h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.357.571-.86.534-1.372z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M15.912 14.62c0 3.477-2.88 5.748-6.48 5.748H1.08V.71h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.832 5.146 5.146 0 0 1 2.376 4.471zM5.616 4.896v3.477h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521h-3.24v.07zm5.76 9.368a1.795 1.795 0 0 0-.51-1.363 1.85 1.85 0 0 0-1.362-.554H5.616v3.762h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.357.571-.859.534-1.371z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M16.992 15.258c0 3.477-2.88 5.748-6.48 5.748H2.16V1.348h7.848c3.456 0 6.336 2.2 6.336 5.607a4.852 4.852 0 0 1-1.728 3.832 5.238 5.238 0 0 1 2.376 4.471zM6.696 5.535v3.478h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521c0 .07-3.24.07-3.24.07zm5.76 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H6.696v3.761h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.356.571-.858.534-1.37z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M15.552 14.406c0 3.478-2.88 5.749-6.48 5.749H.72V.497h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.832 5.146 5.146 0 0 1 2.376 4.471zM5.256 4.684V8.16h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521h-3.24v.07zm5.76 9.368a1.795 1.795 0 0 0-.51-1.363 1.85 1.85 0 0 0-1.362-.554H5.256v3.762h3.816a1.773 1.773 0 0 0 1.41-.474c.376-.357.571-.859.534-1.371z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M15.192 14.194c0 3.477-2.88 5.748-6.48 5.748H.36V.284h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.833 5.146 5.146 0 0 1 2.376 4.47zM4.896 4.47v3.477h3.24c.475.014.934-.172 1.263-.51.329-.337.498-.797.465-1.264a1.682 1.682 0 0 0-.478-1.253 1.733 1.733 0 0 0-1.25-.521l-3.24.071zm5.76 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H4.896v3.76h3.816a1.744 1.744 0 0 0 1.422-.461 1.69 1.69 0 0 0 .522-1.383z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M14.832 13.98c0 3.478-2.88 5.749-6.48 5.749H0V0h7.848c3.456 0 6.336 2.2 6.336 5.606a4.852 4.852 0 0 1-1.728 3.833 5.364 5.364 0 0 1 2.376 4.542zM4.608 4.259v3.477h3.24c.475.014.934-.172 1.263-.51.329-.337.498-.796.465-1.264a1.682 1.682 0 0 0-.478-1.252 1.733 1.733 0 0 0-1.25-.522c0 .071-3.24.071-3.24.071zm5.688 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H4.608v3.761h3.816a1.721 1.721 0 0 0 1.381-.484c.363-.358.544-.858.491-1.361z"
+ }), React.createElement("path", {
+ fill: "#FFF",
+ d: "M0 19.729l2.304 1.632.216-.71-2.304-1.49-.216-.07z"
+ }), React.createElement("path", {
+ fill: color || '#000',
+ d: "M0 13.058l2.52 1.632v-.78L.216 12.49 0 12.348zM0 11.78l2.52 1.491v-2.555L.216 9.296 0 9.156zM2.664 1.49L0 0h1.08l2.88 1.49zM17.352 15.4c0 3.477-2.88 5.748-6.48 5.748H2.52V1.49h7.848c3.456 0 6.336 2.2 6.336 5.607a4.852 4.852 0 0 1-1.728 3.832 5.315 5.315 0 0 1 2.376 4.471zM7.056 5.677v3.478h3.24c.475.013.934-.172 1.263-.51.329-.338.498-.797.465-1.264a1.647 1.647 0 0 0-.465-1.265 1.697 1.697 0 0 0-1.263-.51l-3.24.071zm5.688 9.368a1.795 1.795 0 0 0-.51-1.362 1.85 1.85 0 0 0-1.362-.554H7.056v3.761h3.816a1.721 1.721 0 0 0 1.381-.483c.363-.358.544-.858.491-1.362z"
+ }), React.createElement("path", {
+ fill: "#FCFAFA",
+ d: "M10.872 21.361H2.304V1.277h7.992c3.744 0 6.48 2.484 6.48 5.82a5.11 5.11 0 0 1-1.656 3.832 5.278 5.278 0 0 1 2.304 4.471c.144 3.477-2.664 5.961-6.552 5.961zm-8.208-.355h8.208c3.6 0 6.264-2.341 6.264-5.606a4.81 4.81 0 0 0-2.376-4.258L14.544 11l.216-.142a4.704 4.704 0 0 0 1.656-3.69c0-3.123-2.592-5.465-6.12-5.465H2.664v19.303zm8.208-3.832H6.84v-4.187h4.032a2.138 2.138 0 0 1 1.767 2.094 2.138 2.138 0 0 1-1.767 2.093zm-3.6-.426h3.6c.457.016.898-.161 1.214-.486a1.57 1.57 0 0 0 .442-1.217 1.57 1.57 0 0 0-.442-1.216 1.618 1.618 0 0 0-1.214-.487h-3.6v3.406zm3.024-7.38H6.84V5.465h3.456a1.865 1.865 0 0 1 1.405.531c.37.366.566.869.539 1.385a1.83 1.83 0 0 1-.519 1.424c-.371.38-.89.585-1.425.563zm-3.024-.355h3.096c.42.023.83-.137 1.121-.437.29-.3.434-.711.391-1.124a1.464 1.464 0 0 0-.412-1.105 1.508 1.508 0 0 0-1.1-.457H7.272v3.123z"
+ })));
+};
+Icon$4.displayName = 'Icon.Bonde';
+
+const Icon$5 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "16",
+ height: "25",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 16 25"
+ }, React.createElement("path", {
+ fill: "#000",
+ stroke: "#fff",
+ strokeWidth: "0.1",
+ d: "M15.481 9.799h0a.731.731 0 00-.637-.374H9.388l.005-.054.71-8.529A.731.731 0 009.612.09h0a.73.73 0 00-.85.294h0L.168 13.665h0a.73.73 0 00.613 1.129h5.46l-.004.054-.716 9.315h0a.731.731 0 00.504.752L15.48 9.799zm0 0c.13.23.125.513-.013.739 0 0 0 0 0 0L6.874 24.6a.732.732 0 01-.849.315l9.456-15.116zM7.228 21.034l.093.03 6.172-10.1.047-.077H8.594a.731.731 0 01-.729-.791l.522-6.269-.092-.031-6.12 9.458-.05.077h4.906a.733.733 0 01.73.788h0l-.533 6.915z"
+ }));
+};
+Icon$5.displayName = 'Icon.Bolt';
+
+const Icon$6 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "23",
+ height: "30",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 23 30"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M22.31 11.729c-.198-.296-.573-.479-.979-.479H13.57L14.59 1.016c.043-.429-.27-.827-.756-.965-.486-.14-1.026.016-1.305.377L.18 16.366a.807.807 0 00-.043.957c.196.302.575.49.986.49h7.769L7.862 28.99c-.04.433.28.831.774.965.114.03.23.045.346.045.382 0 .75-.164.958-.449l12.35-16.874a.807.807 0 00.02-.948zM10.459 25.246l.765-8.299a.85.85 0 00-.296-.71 1.238 1.238 0 00-.824-.3H3.187l8.794-11.35-.75 7.523c-.026.261.08.52.293.713.212.192.511.302.826.302h6.98l-8.871 12.12z"
+ }));
+};
+Icon$6.displayName = 'Icon.BoltUnfilled';
+
+const Icon$7 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "0 0 18 14",
+ fill: "none"
+ }, React.createElement("path", {
+ d: "M15.5581 14C15.5581 11.12 13.2151 8.77704 10.3351 8.77704H6.94517C4.06558 8.77704 1.72266 11.12 1.72266 14H3.06096C3.06096 11.8578 4.80344 10.1153 6.94517 10.1153H10.3351C12.4773 10.1153 14.2198 11.8578 14.2198 14H15.5581Z",
+ fill: "black"
+ }), React.createElement("path", {
+ d: "M1.94727 6.18966C1.94727 7.29644 2.84795 8.19712 3.95472 8.19712H13.0516C14.1584 8.19712 15.0591 7.29644 15.0591 6.18966V2.00746C15.0591 0.900678 14.1584 0 13.0516 0H3.95472C2.84795 0 1.94727 0.900678 1.94727 2.00746V6.18966ZM3.28557 2.00746C3.28557 1.63853 3.5858 1.3383 3.95472 1.3383H13.0516C13.4206 1.3383 13.7208 1.63853 13.7208 2.00746V6.18966C13.7208 6.55859 13.4206 6.85881 13.0516 6.85881H3.95472C3.5858 6.85881 3.28557 6.55859 3.28557 6.18966V2.00746Z",
+ fill: "black"
+ }), React.createElement("path", {
+ d: "M6.81682 2.51956H5.47852V5.67841H6.81682V2.51956Z",
+ fill: "black"
+ }), React.createElement("path", {
+ d: "M11.7309 2.51956H10.3926V5.67841H11.7309V2.51956Z",
+ fill: "black"
+ }), React.createElement("path", {
+ d: "M1.33831 2.58249H0V5.61464H1.33831V2.58249Z",
+ fill: "black"
+ }), React.createElement("path", {
+ d: "M17.2797 2.58249H15.9414V5.61464H17.2797V2.58249Z",
+ fill: "black"
+ }));
+};
+Icon$7.displayName = 'Icon.Bot';
+
+const Icon$8 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "13",
+ height: "10",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 13 10"
+ }, React.createElement("path", {
+ fill: "#50E3C2",
+ fillRule: "evenodd",
+ d: "M12.339 1.707L4.652 9.394 0 4.742l1.414-1.414 3.238 3.238L10.925.293l1.414 1.414z",
+ clipRule: "evenodd"
+ }));
+};
+Icon$8.displayName = 'Icon.Check';
+
+const Icon$9 = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' stroke',
+ viewBox: "0 0 10 10"
+ }, React.createElement("path", {
+ fill: "#D8D8D8",
+ fillRule: "evenodd",
+ stroke: "#000",
+ strokeLinecap: "square",
+ strokeWidth: "1.5",
+ d: "M5.337 5.013l3.324 3.325.107.107-.2.2-.107-.106-3.325-3.325L1.74 8.61l-.1.1-.214-.213.1-.1L4.922 5 1.604 1.682l-.107-.107.2-.201.107.107 3.319 3.318 3.273-3.273.1-.1.215.214-.1.1-3.274 3.273z"
+ }));
+};
+Icon$9.displayName = 'Icon.Times';
+
+const Icon$a = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ width: "28",
+ height: "28",
+ fill: "none",
+ viewBox: "0 0 28 28"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M17.754 5.123a8.81 8.81 0 00-8.682 7.119 5.55 5.55 0 00-2.388-.413c-2.93.13-5.252 2.627-5.252 5.687a5.373 5.373 0 005.36 5.362h11.374c4.645 0 8.444-3.777 8.444-8.444v-.065c0-.13.022-.239.022-.369 0-4.905-3.994-8.877-8.878-8.877zm7.076 9.116V14.564c-.065 3.625-3.039 6.534-6.663 6.534H6.792a3.585 3.585 0 01-3.582-3.582c0-2.062 1.607-3.82 3.56-3.907h.174c.846 0 1.628.283 2.3.782.261.195.608.239.912.108.304-.13.5-.434.521-.76a7.068 7.068 0 017.076-6.815c3.907 0 7.098 3.19 7.098 7.098 0 .065 0 .13-.022.217z"
+ }));
+};
+Icon$a.displayName = 'Icon.Cloud';
+
+const Icon$b = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "14",
+ height: "16",
+ fill: "none",
+ viewBox: "0 0 14 16",
+ className: className + ' fill'
+ }, React.createElement("path", {
+ fill: "#000",
+ fillRule: "evenodd",
+ d: "M10.01 0H1.43C.644 0 0 .655 0 1.455v10.181h1.43V1.455h8.58V0zm2.146 2.91H4.29c-.786 0-1.43.654-1.43 1.454v10.181c0 .8.644 1.455 1.43 1.455h7.866c.786 0 1.43-.655 1.43-1.454V4.364c0-.8-.644-1.455-1.43-1.455zm0 11.636H4.29V4.364h7.866v10.181z",
+ clipRule: "evenodd"
+ }));
+};
+Icon$b.displayName = 'Icon.Copy';
+
+function Icon$c(_ref) {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "22",
+ height: "22",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 22 22"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M10.81 21.581c5.953 0 10.79-4.837 10.79-10.79C21.6 4.837 16.763 0 10.81 0 4.855 0 0 4.837 0 10.79c0 5.954 4.856 10.791 10.81 10.791zm0-20.093c5.116 0 9.283 4.168 9.283 9.284 0 5.116-4.167 9.284-9.284 9.284-5.116 0-9.283-4.168-9.283-9.284 0-5.116 4.167-9.284 9.283-9.284z"
+ }), React.createElement("path", {
+ fill: "#000",
+ d: "M12.652 13.602V9.35c0-.624-.507-1.13-1.13-1.13H9.44c-.623 0-1.13.506-1.13 1.13v1.07c0 .556.402 1.019.93 1.114v2.093a1.133 1.133 0 00-.93 1.113v1.07c0 .624.507 1.131 1.13 1.131h3.052c.624 0 1.131-.507 1.131-1.13v-1.07c0-.58-.423-1.06-.97-1.14zm-.26 2.108h-2.85v-.868h.184a.748.748 0 00.746-.747v-3.028a.748.748 0 00-.746-.746H9.54v-.87h1.88v4.624c0 .412.335.747.746.747h.225v.889zM10.872 7.851c.987 0 1.79-.802 1.79-1.79 0-.986-.803-1.789-1.79-1.789s-1.79.803-1.79 1.79.803 1.79 1.79 1.79zm0-2.347a.559.559 0 11-.002 1.117.559.559 0 01.002-1.117z"
+ }));
+}
+Icon$c.displayName = 'Icon.Info';
+
+function Icon$d(_ref) {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "21",
+ height: "21",
+ fill: "none",
+ viewBox: "0 0 21 21",
+ className: className + ' fill'
+ }, React.createElement("g", {
+ fill: "#000",
+ clipPath: "url(#clip0)"
+ }, React.createElement("path", {
+ d: "M21.018 10.075a10.245 10.245 0 00-3.174-7.209A10.244 10.244 0 0010.52.002a10.244 10.244 0 00-7.324 2.864A10.245 10.245 0 00.02 10.075v.017a9.91 9.91 0 003.294 7.327v2.539A1.04 1.04 0 004.344 21c.19 0 .378-.053.543-.156l2.04-1.275a10.78 10.78 0 003.572.607h.015l.202.002c2.67 0 5.195-1.013 7.128-2.866a10.245 10.245 0 003.174-7.209v-.028zm-4.026 6.347a9.023 9.023 0 01-6.46 2.523h-.014a9.588 9.588 0 01-3.319-.587.896.896 0 00-.788.081l-1.865 1.165V17.27a.901.901 0 00-.31-.68 8.677 8.677 0 01-2.984-6.495 9.02 9.02 0 012.795-6.338 9.027 9.027 0 016.46-2.523h.025a9.021 9.021 0 016.46 2.523 9.02 9.02 0 012.794 6.333 9.02 9.02 0 01-2.794 6.333z"
+ }), React.createElement("path", {
+ d: "M12.213 12.896V8.645c0-.624-.508-1.131-1.131-1.131H9c-.624 0-1.131.507-1.131 1.13v1.07c0 .557.402 1.02.931 1.114v2.094a1.133 1.133 0 00-.931 1.113v1.07c0 .624.507 1.131 1.13 1.131h3.053c.623 0 1.13-.507 1.13-1.131v-1.07c0-.58-.422-1.06-.97-1.14zm-.261 2.108h-2.85v-.868h.184a.748.748 0 00.747-.747V10.36a.748.748 0 00-.747-.747h-.184v-.868h1.879v4.623c0 .412.335.747.747.747h.224v.888zM10.432 7.145c.987 0 1.79-.802 1.79-1.79 0-.986-.803-1.79-1.79-1.79-.987.001-1.79.804-1.79 1.79 0 .988.803 1.79 1.79 1.79zm0-2.347a.559.559 0 11-.001 1.117.559.559 0 01.001-1.117z"
+ })), React.createElement("defs", null, React.createElement("clipPath", {
+ id: "clip0"
+ }, React.createElement("path", {
+ fill: "#fff",
+ d: "M0 0H20.959V21H0z"
+ }))));
+}
+Icon$d.displayName = 'Icon.InfoMsg';
+
+const Icon$e = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ fill: "none",
+ viewBox: "0 0 25 18"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M24.3 17.858c0-3.508-2.845-6.362-6.342-6.362h-4.116c-3.497 0-6.342 2.854-6.342 6.362h1.625c0-2.61 2.116-4.732 4.717-4.732h4.116c2.601 0 4.717 2.123 4.717 4.732H24.3z"
+ }), React.createElement("path", {
+ fill: "#000",
+ fillRule: "evenodd",
+ d: "M15.906 1.542a3.758 3.758 0 00-3.752 3.763 3.758 3.758 0 003.752 3.764 3.758 3.758 0 003.751-3.764 3.758 3.758 0 00-3.751-3.763zm-5.29 3.763c0-2.93 2.369-5.305 5.29-5.305 2.92 0 5.289 2.375 5.289 5.305 0 2.93-2.369 5.306-5.29 5.306-2.92 0-5.288-2.376-5.288-5.306z",
+ clipRule: "evenodd"
+ }), React.createElement("path", {
+ fill: "#000",
+ d: "M9.815 3.421a4.236 4.236 0 00-2.119-.563c-2.327 0-4.213 1.862-4.213 4.159 0 2.297 1.886 4.16 4.213 4.16 1.34 0 2.532-.617 3.304-1.579a4.702 4.702 0 01-.884-.849 2.997 2.997 0 01-2.42 1.218c-1.65 0-2.989-1.32-2.989-2.95 0-1.63 1.338-2.95 2.99-2.95.592 0 1.144.17 1.609.464a4.59 4.59 0 01.51-1.11zM9.538 11.875a5.092 5.092 0 00-.207-.005h-3.28C3.267 11.87 1 14.108 1 16.858h1.295c0-2.046 1.685-3.71 3.757-3.71h1.74a5.612 5.612 0 011.746-1.273z"
+ }), React.createElement("path", {
+ fill: "#000",
+ fillRule: "evenodd",
+ d: "M7.696 2.958c-2.273 0-4.113 1.818-4.113 4.059 0 2.24 1.84 4.06 4.113 4.06 1.27 0 2.406-.57 3.16-1.462a4.808 4.808 0 01-.738-.705 3.098 3.098 0 01-2.422 1.158c-1.705 0-3.089-1.365-3.089-3.051 0-1.686 1.384-3.05 3.09-3.05.565 0 1.096.15 1.552.413a4.69 4.69 0 01.426-.922 4.137 4.137 0 00-1.979-.5zM3.383 7.017c0-2.353 1.932-4.26 4.313-4.26.79 0 1.532.21 2.169.578l.09.052-.055.088c-.212.335-.38.699-.499 1.085l-.038.125-.11-.07a2.903 2.903 0 00-1.557-.449c-1.597 0-2.889 1.278-2.889 2.851s1.292 2.85 2.89 2.85c.961 0 1.813-.464 2.338-1.177l.078-.105.081.102a4.6 4.6 0 00.865.83l.084.062-.065.082a4.326 4.326 0 01-3.382 1.615c-2.38 0-4.313-1.906-4.313-4.259zM.9 16.857c0-2.806 2.312-5.087 5.152-5.087H9.33c.07 0 .141.002.211.005l.039.19a5.511 5.511 0 00-1.715 1.251l-.03.032H6.052c-2.018 0-3.657 1.62-3.657 3.61v.1H.9v-.1zm.201-.1h1.095c.054-2.055 1.764-3.709 3.856-3.709h1.676c.39-.422.842-.786 1.344-1.078h-3.02c-2.698 0-4.897 2.14-4.95 4.788z",
+ clipRule: "evenodd"
+ }), React.createElement("path", {
+ fill: "#000",
+ d: "M24.3 17.858c0-3.508-2.845-6.362-6.342-6.362h-4.116c-3.497 0-6.342 2.854-6.342 6.362h1.625c0-2.61 2.116-4.732 4.717-4.732h4.116c2.601 0 4.717 2.123 4.717 4.732H24.3z"
+ }), React.createElement("path", {
+ fill: "#000",
+ d: "M9.815 3.421a4.236 4.236 0 00-2.119-.563c-2.327 0-4.213 1.862-4.213 4.159 0 2.297 1.886 4.16 4.213 4.16 1.34 0 2.532-.617 3.304-1.579a4.702 4.702 0 01-.884-.849 2.997 2.997 0 01-2.42 1.218c-1.65 0-2.989-1.32-2.989-2.95 0-1.63 1.338-2.95 2.989-2.95.593 0 1.145.17 1.61.464a4.59 4.59 0 01.51-1.11zM9.538 11.875a5.093 5.093 0 00-.207-.005h-3.28C3.267 11.87 1 14.108 1 16.858h1.295c0-2.046 1.685-3.71 3.757-3.71h1.74a5.612 5.612 0 011.746-1.273z"
+ }));
+};
+Icon$e.displayName = 'Icon.Network';
+
+const Icon$f = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ width: "30",
+ height: "26",
+ fill: "none",
+ viewBox: "0 0 30 26"
+ }, React.createElement("path", {
+ fill: "#000",
+ fillRule: "evenodd",
+ d: "M1.5 1.5v15h19v-15h-19zM1 0a1 1 0 00-1 1v16a1 1 0 001 1h20a1 1 0 001-1V1a1 1 0 00-1-1H1z",
+ clipRule: "evenodd"
+ }), React.createElement("path", {
+ fill: "#000",
+ fillRule: "evenodd",
+ d: "M22 6H0V4.5h22V6z",
+ clipRule: "evenodd"
+ }), React.createElement("path", {
+ fill: "#000",
+ d: "M19 2.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0z"
+ }), React.createElement("path", {
+ fill: "#000",
+ stroke: "#fff",
+ strokeLinecap: "square",
+ strokeWidth: "2",
+ d: "M20.476 10.017h-1v5.375h-5.458v3.62h5.458v5.571H23.116v-5.57h5.468v-3.62h-5.467v-5.376h-2.641z"
+ }));
+};
+Icon$f.displayName = 'Icon.New';
+
+function Icon$g(_ref) {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "18",
+ height: "18",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 18 18"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M.06 13.512L.042 17.14c0 .204.074.409.223.558a.745.745 0 00.54.223l3.609-.019c.204 0 .39-.074.54-.223L17.418 5.214a.786.786 0 000-1.098L13.846.506a.786.786 0 00-1.097 0L10.256 3.02.284 12.972a.828.828 0 00-.224.54zM13.307 2.144l2.511 2.512-1.413 1.414-2.512-2.512 1.414-1.414zM1.605 13.847l9.19-9.191 2.512 2.511-9.19 9.173-2.531.018.019-2.511z"
+ }));
+}
+Icon$g.displayName = 'Icon.Pencil';
+
+const Icon$h = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' stroke',
+ viewBox: "0 0 12 12"
+ }, React.createElement("path", {
+ fill: "#D8D8D8",
+ fillRule: "evenodd",
+ stroke: "#000",
+ strokeLinecap: "square",
+ strokeWidth: "1.5",
+ d: "M6.147 5.771H11v.284H6.147V11h-.302V6.055H1v-.284h4.845V1h.302v4.772z"
+ }));
+};
+Icon$h.displayName = 'Icon.Plus';
+
+const Icon$i = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' stroke',
+ fill: "none",
+ viewBox: "0 0 18 18"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M12.13 11.75A6.988 6.988 0 0014 7c0-3.854-3.136-7-7-7S0 3.146 0 7c0 3.853 3.135 6.999 7 6.999 1.572 0 3.019-.518 4.19-1.394l5.205 5.205c.127.127.285.19.444.19a.607.607 0 00.443-.19.644.644 0 000-.897L12.13 11.75zM1.267 7a5.738 5.738 0 015.732-5.733 5.738 5.738 0 015.733 5.732 5.731 5.731 0 01-5.733 5.733 5.738 5.738 0 01-5.732-5.733z"
+ }));
+};
+Icon$i.displayName = 'Icon.Search';
+
+const Icon$j = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "0 0 22 21",
+ fill: "none"
+ }, React.createElement("path", {
+ d: "M19.9718 8.14773C19.6525 8.09994 19.3245 8.05352 18.9942 8.00945C18.8278 7.45594 18.6055 6.9193 18.3312 6.40963C18.5333 6.14526 18.7325 5.88042 18.925 5.62025C19.3525 5.0422 19.2906 4.22239 18.7814 3.71336L17.5053 2.43747C16.996 1.92812 16.1762 1.86637 15.5983 2.29395C15.3373 2.48712 15.0725 2.68626 14.809 2.88766C14.2994 2.61337 13.7628 2.39106 13.2091 2.22453C13.165 1.89422 13.1187 1.56624 13.0709 1.24699C12.9646 0.536154 12.3413 0 11.6211 0H9.81648C9.09628 0 8.47295 0.536154 8.36664 1.24691C8.31893 1.566 8.2726 1.89405 8.22844 2.22445C7.67477 2.39098 7.13813 2.61328 6.62862 2.88758C6.36522 2.6861 6.1003 2.48687 5.83932 2.29387C5.26128 1.86629 4.44146 1.92804 3.93235 2.43731L2.65646 3.71312C2.14711 4.22231 2.0852 5.0422 2.51278 5.62033C2.70514 5.88042 2.90436 6.14534 3.10641 6.40963C2.83228 6.91922 2.60989 7.45578 2.44336 8.00945C2.11313 8.05361 1.78507 8.09994 1.46582 8.14773C0.754903 8.25412 0.21875 8.87737 0.21875 9.59765V11.4022C0.21875 12.1224 0.754743 12.7457 1.46566 12.8521C1.78499 12.8999 2.11297 12.9463 2.44328 12.9904C2.60981 13.544 2.83211 14.0805 3.10633 14.5902C2.90444 14.8543 2.70522 15.1191 2.51246 15.3796C2.08512 15.9575 2.14687 16.7774 2.65614 17.2864L3.93219 18.5624C4.44138 19.0718 5.26119 19.1335 5.83916 18.706C6.10022 18.513 6.36498 18.3137 6.62846 18.1123C7.13822 18.3866 7.67485 18.6089 8.22836 18.7754C8.27236 19.1056 8.31877 19.4337 8.36656 19.753C8.47295 20.4638 9.09628 21 9.81648 21H11.6211C12.3413 21 12.9646 20.464 13.0709 19.7529C13.1186 19.4336 13.165 19.1056 13.2091 18.7753C13.7627 18.6089 14.2993 18.3865 14.809 18.1122C15.0724 18.3137 15.3373 18.5129 15.5983 18.706C16.1761 19.1336 16.9961 19.0718 17.5052 18.5625L18.7813 17.2866C19.2905 16.7774 19.3524 15.9576 18.9248 15.3795C18.7322 15.1191 18.533 14.8542 18.3312 14.5903C18.6053 14.0807 18.8277 13.5442 18.9942 12.9905C19.3244 12.9463 19.6525 12.9 19.9718 12.8522C20.6827 12.7458 21.2188 12.1225 21.2188 11.4023V9.59773C21.2187 8.87745 20.6827 8.25412 19.9718 8.14773ZM19.4613 11.1511C19.1713 11.1931 18.8755 11.234 18.5787 11.2726C17.9916 11.3492 17.511 11.7659 17.3545 12.334C17.2046 12.878 16.9871 13.403 16.708 13.8942C16.4165 14.4071 16.4615 15.0417 16.8226 15.5112C17.0046 15.7479 17.1852 15.9861 17.3609 16.2215L16.4403 17.1421C16.2042 16.9659 15.966 16.7854 15.7298 16.6038C15.2605 16.2426 14.6257 16.1979 14.1128 16.4891C13.6215 16.7682 13.0965 16.9858 12.5529 17.1357C11.9844 17.2923 11.5677 17.7729 11.4914 18.3598C11.4527 18.6566 11.4119 18.9526 11.3698 19.2425H10.0678C10.0257 18.9526 9.98495 18.6567 9.9462 18.3602C9.8696 17.773 9.45299 17.2924 8.88471 17.1358C8.34089 16.9859 7.81612 16.7684 7.3246 16.4893C6.8117 16.1979 6.1769 16.2427 5.70767 16.6038C5.47139 16.7855 5.23334 16.9659 4.99707 17.1421L4.07652 16.2215C4.25225 15.9859 4.43275 15.7478 4.61502 15.5109C4.97584 15.0415 5.02081 14.4069 4.7294 13.8941C4.45035 13.4028 4.2328 12.8778 4.0829 12.334C3.92638 11.7657 3.44584 11.3491 2.85875 11.2725C2.56194 11.2337 2.26601 11.193 1.97606 11.1508V9.84894C2.26601 9.80688 2.56186 9.76604 2.85867 9.72737C3.44576 9.65077 3.92638 9.23408 4.08282 8.66596C4.23272 8.12206 4.45018 7.59712 4.72932 7.10577C5.0208 6.59295 4.97584 5.95823 4.61494 5.48883C4.43259 5.25184 4.25209 5.01371 4.07652 4.77848L4.99707 3.85785C5.23318 4.03407 5.47131 4.21456 5.70742 4.3961C6.17658 4.75733 6.81129 4.80238 7.3246 4.51089C7.81579 4.23184 8.34081 4.01429 8.88455 3.86431C9.45299 3.70771 9.86968 3.22709 9.94604 2.64017C9.98479 2.34335 10.0256 2.04751 10.0677 1.75755H11.3697C11.4118 2.04743 11.4526 2.34327 11.4912 2.63992C11.5678 3.22709 11.9845 3.70771 12.5527 3.86423C13.0966 4.01413 13.6216 4.23176 14.1129 4.51081C14.6259 4.8023 15.2606 4.75701 15.7298 4.39619C15.966 4.21456 16.2041 4.03407 16.4403 3.85785L17.3609 4.77848C17.1853 5.01379 17.0048 5.252 16.8225 5.48908C16.4616 5.95839 16.4167 6.59303 16.7079 7.10585C16.987 7.59729 17.2045 8.1223 17.3544 8.66604C17.511 9.23432 17.9915 9.65093 18.5786 9.72753C18.8754 9.76628 19.1713 9.80704 19.4613 9.84918V11.1511Z",
+ fill: "#000"
+ }), React.createElement("path", {
+ d: "M10.7248 6.29998C8.40559 6.29998 6.5187 8.18679 6.5187 10.5061C6.5187 12.8254 8.4055 14.7122 10.7248 14.7122C13.0441 14.7122 14.9309 12.8254 14.9309 10.5061C14.9309 8.18679 13.0441 6.29998 10.7248 6.29998ZM10.7248 12.8425C9.43661 12.8425 8.38837 11.7943 8.38837 10.506C8.38837 9.21762 9.43651 8.16956 10.7248 8.16956C12.013 8.16956 13.0611 9.21771 13.0612 10.506C13.0612 11.7943 12.013 12.8425 10.7248 12.8425Z",
+ fill: "#000"
+ }));
+};
+Icon$j.displayName = 'Icon.Settings';
+
+function Icon$k(_ref) {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "18",
+ height: "18",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 18 18"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M13.556 3.886L12.6 14.784H5.59L4.632 3.886l-1.212.106.974 11.096c.051.511.495.912 1.01.912h7.379c.515 0 .959-.4 1.011-.92l.973-11.088-1.212-.106z"
+ }), React.createElement("path", {
+ fill: "#000",
+ d: "M11.324 1H6.865c-.559 0-1.014.455-1.014 1.014v1.925h1.217V2.216h4.054V3.94h1.216V2.014c0-.56-.455-1.014-1.014-1.014z"
+ }), React.createElement("path", {
+ fill: "#000",
+ d: "M15.581 3.331H2.608a.608.608 0 100 1.216h12.973a.608.608 0 100-1.216z"
+ }));
+}
+Icon$k.displayName = 'Icon.Trash';
+
+const Icon$l = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "30",
+ height: "23",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 30 23"
+ }, React.createElement("path", {
+ fill: "#000",
+ d: "M29.718 15.43a2.022 2.022 0 000-2.06l-1.257-2.09a.065.065 0 010-.067l1.257-2.09a2.021 2.021 0 000-2.06l-1.257-2.09a.065.065 0 010-.067l1.002-1.666c.288-.48.306-1.086.045-1.582A1.473 1.473 0 0028.21.853H1.79c-.54 0-1.037.308-1.298.804A1.624 1.624 0 00.537 3.24l1.002 1.667a.065.065 0 010 .066L.282 7.063a2.021 2.021 0 000 2.061l1.257 2.09a.065.065 0 010 .067L.282 13.37a2.02 2.02 0 000 2.06l1.257 2.09a.065.065 0 010 .066L.537 19.254a1.624 1.624 0 00-.045 1.582c.26.497.758.805 1.298.805h26.42c.54 0 1.037-.308 1.298-.805a1.623 1.623 0 00-.045-1.582l-1.002-1.667a.065.065 0 010-.067l1.257-2.09zm-1.504-.997l-1.257 2.09a2.02 2.02 0 000 2.06l.716 1.19h-6.37v-.061c0-.516-.399-.934-.89-.934-.49 0-.889.418-.889.934v.062H2.327l.716-1.19a2.021 2.021 0 000-2.06l-1.257-2.09a.065.065 0 010-.066l1.257-2.09a2.02 2.02 0 000-2.061l-1.257-2.09a.065.065 0 010-.067l1.257-2.09a2.022 2.022 0 000-2.06l-.716-1.19h17.197v.062c0 .516.398.934.89.934.49 0 .888-.418.888-.934V2.72h6.37l-.715 1.189a2.02 2.02 0 000 2.06l1.257 2.09a.065.065 0 010 .067l-1.257 2.09a2.02 2.02 0 000 2.06l1.257 2.09a.065.065 0 010 .067z"
+ }), React.createElement("path", {
+ fill: "#000",
+ d: "M20.413 5.67c-.49 0-.889.42-.889.935v.546c0 .515.398.933.89.933.49 0 .888-.418.888-.933v-.546c0-.516-.398-.934-.889-.934zM20.413 14.409c-.49 0-.889.418-.889.933v.547c0 .515.398.933.89.933.49 0 .888-.418.888-.933v-.547c0-.515-.398-.933-.889-.933zM20.413 10.04c-.49 0-.889.418-.889.934v.546c0 .515.398.933.89.933.49 0 .888-.418.888-.933v-.546c0-.516-.398-.934-.889-.934zM11.992 10.184c-1.218-.53-1.424-.805-1.424-1.22 0-.382.269-.789 1.023-.789.79 0 1.288.3 1.501.426.105.064.23.075.345.032a.424.424 0 00.248-.255l.338-.939a.444.444 0 00-.178-.529 3.74 3.74 0 00-1.556-.527v-.975a.425.425 0 00-.414-.435h-.84a.425.425 0 00-.414.435v1.085c-1.263.351-2.046 1.36-2.046 2.642 0 .714.238 1.3.727 1.794.39.394.952.733 1.767 1.069 1.118.476 1.272.901 1.272 1.29 0 .573-.481.959-1.198.959a3.07 3.07 0 01-1.72-.539.396.396 0 00-.36-.05.422.422 0 00-.26.266l-.325.952a.45.45 0 00.149.5c.462.347 1.169.6 1.9.68v1.03c0 .24.185.434.413.434h.854a.425.425 0 00.414-.435v-1.128c1.301-.367 2.14-1.449 2.14-2.769 0-.732-.206-1.334-.63-1.84-.38-.453-.93-.824-1.726-1.164z"
+ }));
+};
+Icon$l.displayName = 'Icon.Ticket';
+
+const Icon$m = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "30",
+ height: "23",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 30 23"
+ }, React.createElement("g", {
+ fill: "#000",
+ clipPath: "url(#clip0)"
+ }, React.createElement("path", {
+ d: "M11.77 9.711c-1.196-.533-1.398-.81-1.398-1.228 0-.384.264-.794 1.003-.794.776 0 1.265.3 1.474.429a.38.38 0 00.338.032.423.423 0 00.243-.257l.332-.945a.453.453 0 00-.174-.533 3.608 3.608 0 00-1.527-.531v-.982c0-.241-.183-.438-.407-.438h-.824c-.224 0-.406.197-.406.438v1.093c-1.24.354-2.008 1.369-2.008 2.66 0 .72.233 1.31.713 1.807.383.396.934.739 1.734 1.076 1.098.48 1.249.908 1.249 1.3 0 .577-.473.965-1.176.965a2.96 2.96 0 01-1.689-.542.38.38 0 00-.353-.052.42.42 0 00-.255.268l-.32.96a.46.46 0 00.147.504c.454.349 1.147.603 1.865.685v1.036c0 .241.182.437.406.437h.837c.225 0 .407-.196.407-.438v-1.136c1.277-.37 2.1-1.459 2.1-2.788 0-.738-.202-1.344-.618-1.853-.374-.457-.912-.83-1.693-1.173zM28.656 18.399c-.715 1.332-1.867 2.358-3.245 2.85h2.277c.53 0 1.018-.31 1.274-.81s.239-1.11-.044-1.594l-.262-.446z"
+ }), React.createElement("path", {
+ d: "M21.7 21.249H1.757c-.53 0-1.018-.31-1.274-.81s-.24-1.111.044-1.594l.984-1.678a.067.067 0 000-.067L.277 14.995a2.08 2.08 0 010-2.075l1.234-2.104a.068.068 0 000-.067L.277 8.644a2.081 2.081 0 010-2.075l1.234-2.105a.067.067 0 000-.067L.527 2.718a1.672 1.672 0 01-.044-1.593c.256-.5.744-.81 1.273-.81h25.932c.53 0 1.018.31 1.274.81.255.5.239 1.11-.044 1.593l-.985 1.679a.066.066 0 000 .067l1.234 2.104c.37.63.37 1.445 0 2.075l-1.234 2.105a.067.067 0 000 .067l.53.902a6.124 6.124 0 00-1.988-2.002l1.217-2.076a.067.067 0 000-.067l-1.234-2.104a2.08 2.08 0 010-2.075l.702-1.198h-6.252v.063c0 .519-.39.94-.873.94-.482 0-.872-.421-.872-.94v-.063H2.284l.703 1.198c.37.63.37 1.445 0 2.075L1.753 7.573a.067.067 0 000 .067l1.234 2.105c.37.63.37 1.444 0 2.075l-1.234 2.104a.067.067 0 000 .067l1.234 2.105c.37.63.37 1.445 0 2.075l-.703 1.197h16.811A5.892 5.892 0 0021.7 21.25zM28.61 11.97c.407.73.68 1.555.786 2.437.11-.5.033-1.04-.229-1.488l-.556-.95z"
+ }), React.createElement("path", {
+ d: "M27.168 9.678c-1.373-1.111-3.066-1.58-4.767-1.32l-.933.142 1.285-1.847-.953-.77-2.503 3.598 3.295 2.714.724-1.02-1.703-1.401.956-.146c2.86-.438 5.517 1.714 5.923 4.795.406 3.082-1.591 5.944-4.451 6.382-2.86.437-5.518-1.715-5.924-4.796l-.084-.635-1.178.18.083.635c.242 1.832 1.13 3.453 2.504 4.565 1.373 1.111 3.065 1.58 4.766 1.32 1.7-.26 3.205-1.217 4.237-2.696 1.032-1.48 1.467-3.303 1.226-5.135-.241-1.832-1.13-3.453-2.503-4.565z"
+ }), React.createElement("path", {
+ fillRule: "evenodd",
+ d: "M21.765 5.617L23 6.615l-1.135 1.632.512-.078c1.747-.267 3.486.215 4.897 1.357 1.41 1.142 2.324 2.808 2.572 4.69.248 1.882-.2 3.757-1.26 5.276-1.06 1.52-2.606 2.504-4.353 2.771-1.747.267-3.487-.215-4.898-1.357-1.41-1.142-2.324-2.808-2.572-4.69l-.108-.824 1.529-.233.108.823c.392 2.978 2.96 5.056 5.724 4.634 2.764-.422 4.693-3.189 4.301-6.166-.392-2.977-2.96-5.056-5.724-4.634l-.537.082 1.507 1.242-.938 1.321-3.574-2.944 2.714-3.9zm.07.533l-2.291 3.294 3.015 2.484.51-.717L21.17 9.65l1.373-.21c2.957-.452 5.703 1.772 6.123 4.957.42 3.186-1.645 6.145-4.602 6.597-2.957.452-5.703-1.772-6.123-4.957l-.058-.447-.83.127.06.446c.234 1.782 1.098 3.358 2.434 4.44 1.335 1.081 2.98 1.537 4.635 1.284 1.654-.253 3.117-1.184 4.12-2.623 1.004-1.438 1.428-3.211 1.193-4.993-.235-1.782-1.099-3.358-2.435-4.44-1.335-1.08-2.98-1.537-4.635-1.284l-1.355.207 1.435-2.062-.67-.54z",
+ clipRule: "evenodd"
+ })), React.createElement("defs", null, React.createElement("clipPath", {
+ id: "clip0"
+ }, React.createElement("path", {
+ fill: "#fff",
+ d: "M0 0H30V22.5H0z"
+ }))));
+};
+Icon$m.displayName = 'Icon.TicketRecurring';
+
+const Icon$n = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ className: className + ' fill',
+ width: "17",
+ height: "18",
+ viewBox: "0 0 17 18",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React.createElement("path", {
+ d: "M16.8001 18C16.8001 14.492 13.9551 11.6382 10.458 11.6382H6.34162C2.84498 11.6382 0 14.492 0 18H1.62509C1.62509 15.3908 3.74095 13.2684 6.34162 13.2684H10.458C13.0592 13.2684 15.175 15.3908 15.175 18H16.8001Z",
+ fill: "black"
+ }), React.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M8.40559 1.68385C6.33344 1.68385 4.65364 3.36885 4.65364 5.44741C4.65364 7.52596 6.33344 9.21097 8.40559 9.21097C10.4777 9.21097 12.1575 7.52596 12.1575 5.44741C12.1575 3.36885 10.4777 1.68385 8.40559 1.68385ZM3.1167 5.44741C3.1167 2.51739 5.48462 0.142151 8.40559 0.142151C11.3266 0.142151 13.6945 2.51739 13.6945 5.44741C13.6945 8.37742 11.3266 10.7527 8.40559 10.7527C5.48462 10.7527 3.1167 8.37742 3.1167 5.44741Z",
+ fill: "black"
+ }));
+};
+Icon$n.displayName = 'Icon.User';
+
+const Icon$o = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ viewBox: "0 0 18 14",
+ fill: "none"
+ }, React.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M1.44792 1.16667V12.8333H16.2257V1.16667H1.44792ZM1.05903 0C0.629473 0 0.28125 0.348223 0.28125 0.777778V13.2222C0.28125 13.6518 0.629473 14 1.05903 14H16.6146C17.0441 14 17.3924 13.6518 17.3924 13.2222V0.777778C17.3924 0.348223 17.0441 0 16.6146 0H1.05903Z",
+ fill: "black"
+ }), React.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M17.3924 4.66669H0.28125V3.50002H17.3924V4.66669Z",
+ fill: "black"
+ }), React.createElement("path", {
+ d: "M15.0592 2.13888C15.0592 2.46104 14.7981 2.72221 14.4759 2.72221C14.1537 2.72221 13.8926 2.46104 13.8926 2.13888C13.8926 1.81671 14.1537 1.55554 14.4759 1.55554C14.7981 1.55554 15.0592 1.81671 15.0592 2.13888Z",
+ fill: "black"
+ }));
+};
+Icon$o.displayName = 'Icon.Window';
+
+const Icon$p = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ className: className + ' fill',
+ width: "18",
+ height: "22",
+ viewBox: "0 0 18 22",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React.createElement("path", {
+ d: "M15.9074 3.75557C14.2585 1.36903 11.6451 0 8.73789 0C5.8307 0 3.21731 1.36903 1.56833 3.75557C-0.0725558 6.13005 -0.451442 9.13621 0.55279 11.7921C0.821398 12.5174 1.24838 13.2221 1.81884 13.8824L8.16291 21.3341C8.30639 21.5028 8.51661 21.6 8.73789 21.6C8.95916 21.6 9.16938 21.5028 9.31286 21.3341L15.6552 13.8844C16.2282 13.2203 16.6546 12.5164 16.921 11.7969C17.9272 9.13621 17.5483 6.13005 15.9074 3.75557ZM15.5067 11.268C15.3013 11.8231 14.9659 12.3719 14.5105 12.8998L14.5069 12.9038L8.73789 19.6799L2.96528 12.8996C2.51012 12.3722 2.17477 11.8234 1.96734 11.263C1.13683 9.06647 1.45202 6.58096 2.81071 4.61455C4.17366 2.64187 6.33417 1.51048 8.73789 1.51048C11.1416 1.51048 13.3018 2.64182 14.6648 4.61455C16.0238 6.58096 16.3392 9.06647 15.5067 11.268Z",
+ fill: "black"
+ }), React.createElement("path", {
+ d: "M8.73795 4.48119C6.40599 4.48119 4.50857 6.37836 4.50857 8.71057C4.50857 11.0428 6.40574 12.94 8.73795 12.94C11.0702 12.94 12.9673 11.0428 12.9673 8.71057C12.9673 6.37862 11.0699 4.48119 8.73795 4.48119ZM8.73795 11.4294C7.23878 11.4294 6.01905 10.2097 6.01905 8.71053C6.01905 7.21136 7.23878 5.99163 8.73795 5.99163C10.2371 5.99163 11.4568 7.21136 11.4568 8.71053C11.4568 10.2097 10.2371 11.4294 8.73795 11.4294Z",
+ fill: "black"
+ }));
+};
+Icon$p.displayName = 'Icon.MapMarker';
+
+const Icon$q = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ className: className + ' fill',
+ width: "20",
+ height: "18",
+ viewBox: "0 0 20 18",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React.createElement("path", {
+ d: "M14.3575 0C12.6549 0 11.0611 0.726824 10 1.94461C8.93886 0.726782 7.34514 0 5.64255 0C2.53125 0 0 2.38662 0 5.32023C0 7.61737 1.45275 10.2744 4.3178 13.2174C6.52268 15.4823 8.92123 17.2359 9.60382 17.7195L9.99987 18L10.3959 17.7195C11.0785 17.236 13.4771 15.4824 15.6821 13.2175C18.5472 10.2745 20 7.61741 20 5.32023C20 2.38662 17.4687 0 14.3575 0ZM14.7106 12.3767C12.897 14.2396 10.9458 15.7455 9.99987 16.4395C9.05393 15.7455 7.10286 14.2395 5.28927 12.3766C2.69169 9.70836 1.31868 7.26828 1.31868 5.32023C1.31868 3.07225 3.25837 1.24335 5.64255 1.24335C7.21152 1.24335 8.66022 2.04963 9.42334 3.34757L10 4.32841L10.5767 3.34757C11.3397 2.04967 12.7884 1.24335 14.3575 1.24335C16.7416 1.24335 18.6813 3.0722 18.6813 5.32023C18.6813 7.26836 17.3083 9.70844 14.7106 12.3767Z",
+ fill: "black"
+ }));
+};
+Icon$q.displayName = 'Icon.Heart';
+
+const Icon$r = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "14",
+ height: "14",
+ fill: "none",
+ className: className + ' fill',
+ viewBox: "0 0 14 14"
+ }, React.createElement("g", {
+ fill: "#424242",
+ clipPath: "url(#clip0)"
+ }, React.createElement("path", {
+ d: "M13.94 12.687L7.425.846a.485.485 0 00-.85 0L.06 12.686a.485.485 0 00.425.72h13.03a.484.484 0 00.425-.72zm-12.636-.251L7 2.085l5.696 10.35H1.304z"
+ }), React.createElement("path", {
+ d: "M6.393 5.547V9.05a.607.607 0 001.214 0V5.547a.607.607 0 00-1.214 0zM7 10.288a.64.64 0 100 1.28.64.64 0 000-1.28z"
+ })), React.createElement("defs", null, React.createElement("clipPath", {
+ id: "clip0"
+ }, React.createElement("path", {
+ fill: "#fff",
+ d: "M0 0H14V14H0z"
+ }))));
+};
+Icon$r.displayName = 'Icon.Warning';
+
+const Icon$s = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ className: className + ' fill',
+ width: "16",
+ height: "16",
+ viewBox: "0 0 16 16",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React.createElement("path", {
+ d: "M16.0002 7.79396C16.0002 12.0985 12.4839 15.5879 8.14553 15.5879C6.76826 15.5879 5.47438 15.2359 4.34868 14.6181L0 16L1.4178 11.8183C0.702587 10.6439 0.29067 9.26649 0.29067 7.79396C0.29067 3.48942 3.80734 0 8.14553 0C12.4842 0 16.0002 3.48942 16.0002 7.79396ZM8.14553 1.24124C4.50388 1.24124 1.54171 4.1808 1.54171 7.79396C1.54171 9.22773 2.00909 10.5556 2.79968 11.6357L1.9746 14.0693L4.51241 13.2628C5.55509 13.9474 6.80418 14.3467 8.1457 14.3467C11.7868 14.3467 14.7495 11.4075 14.7495 7.79431C14.7495 4.18116 11.787 1.24124 8.14553 1.24124ZM12.112 9.58898C12.0634 9.50951 11.9353 9.46151 11.7429 9.36604C11.5502 9.27058 10.6033 8.80818 10.4273 8.74471C10.2508 8.68107 10.1221 8.64907 9.99391 8.84018C9.86573 9.03147 9.49665 9.46151 9.38412 9.58898C9.27176 9.7168 9.15958 9.7328 8.96687 9.63716C8.77451 9.54169 8.15424 9.33973 7.41876 8.68907C6.84649 8.18276 6.45999 7.55769 6.34764 7.36622C6.23546 7.17511 6.3359 7.07182 6.43208 6.97671C6.51884 6.89102 6.6248 6.7536 6.72097 6.64213C6.81751 6.53049 6.84951 6.45102 6.91333 6.32338C6.97787 6.19591 6.94569 6.08444 6.89733 5.98862C6.84933 5.89316 6.4639 4.95307 6.30355 4.57049C6.14319 4.18827 5.98301 4.25191 5.87047 4.25191C5.7583 4.25191 5.62976 4.23591 5.5014 4.23591C5.37305 4.23591 5.16433 4.28373 4.9878 4.47484C4.81144 4.66613 4.31419 5.12836 4.31419 6.06827C4.31419 7.00836 5.0038 7.91662 5.10033 8.04391C5.19651 8.1712 6.4319 10.163 8.38926 10.928C10.3468 11.6926 10.3468 11.4375 10.6999 11.4055C11.0526 11.3737 11.8387 10.9435 11.9998 10.4976C12.1598 10.051 12.1598 9.66862 12.112 9.58898Z",
+ fill: "black"
+ }));
+};
+Icon$s.displayName = 'Icon.Eye';
+
+const Icon$t = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ width: "24",
+ className: className + ' fill',
+ height: "24",
+ viewBox: "0 0 24 24",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React.createElement("path", {
+ d: "M12.0371 6.75351C6.75341 6.75351 1.63714 11.7954 1.43248 12.0186C1.28365 12.1675 1.20923 12.3535 1.20923 12.5582C1.20923 12.7628 1.28365 12.9489 1.43248 13.0977C1.65574 13.321 6.75341 18.3628 12.0371 18.3628C17.3209 18.3628 22.4371 13.321 22.6418 13.0977C22.7906 12.9489 22.865 12.7628 22.865 12.5582C22.865 12.3535 22.7906 12.1675 22.6418 12.0186C22.4371 11.7954 17.3395 6.75351 12.0371 6.75351ZM12.0371 16.8186C8.33481 16.8186 4.52086 13.8047 3.0883 12.5396C4.52086 11.2744 8.33481 8.26049 12.0371 8.26049C15.7395 8.26049 19.5534 11.2744 20.986 12.5396C19.5534 13.8047 15.7395 16.8186 12.0371 16.8186Z",
+ fill: "black"
+ }), React.createElement("path", {
+ d: "M9.30225 12.5396C9.30225 14.0465 10.5302 15.293 12.0557 15.293C13.5813 15.293 14.8092 14.0651 14.8092 12.5396C14.8092 11.014 13.5813 9.78607 12.0557 9.78607C10.5302 9.78607 9.30225 11.0326 9.30225 12.5396ZM13.265 12.5396C13.265 13.2093 12.7255 13.7675 12.0371 13.7675C11.3674 13.7675 10.8092 13.2279 10.8092 12.5396C10.8092 11.8512 11.3488 11.3117 12.0371 11.3117C12.7069 11.3303 13.265 11.8698 13.265 12.5396Z",
+ fill: "black"
+ }));
+};
+Icon$t.displayName = 'Icon.Show';
+
+const Icon$u = _ref => {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ className: className + ' fill',
+ width: "25",
+ height: "25",
+ viewBox: "0 0 25 25",
+ fill: "none",
+ xmlns: "http://www.w3.org/2000/svg"
+ }, React.createElement("mask", {
+ id: "path-1-inside-1",
+ fill: "white"
+ }, React.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M12.5009 3.18628C12.907 3.18628 13.2362 2.85706 13.2362 2.45098V0.735295C13.2362 0.329216 12.907 0 12.5009 0C12.0948 0 11.7656 0.329216 11.7656 0.735295V2.45098C11.7656 2.85706 12.0948 3.18628 12.5009 3.18628ZM12.5 6.03516C17.7504 6.03516 22.561 9.26579 24.8332 12.0341C25.0557 12.3053 25.0557 12.6957 24.8332 12.9669C22.6596 15.6151 17.8695 18.9659 12.5 18.9659C7.31483 18.9659 2.49292 15.8022 0.166838 12.9669C-0.0556128 12.6957 -0.0556128 12.3053 0.166838 12.0341C2.42003 9.28776 7.23086 6.03516 12.5 6.03516ZM12.5 17.4953C15.2542 17.4953 17.4948 15.2546 17.4948 12.5005C17.4948 9.74668 15.2544 7.50575 12.5 7.5057C9.74581 7.5057 7.50518 9.74638 7.50518 12.5005C7.50518 15.2545 9.74577 17.4953 12.5 17.4953ZM7.35287 8.5928C4.55165 9.78423 2.55615 11.6406 1.72856 12.5007C3.24365 14.0782 5.22218 15.5044 7.35204 16.4071C5.59424 14.0964 5.59493 10.9027 7.35287 8.5928ZM17.648 8.59388C19.4058 10.9046 19.4051 14.0983 17.6472 16.4082C20.4484 15.2167 22.4439 13.3605 23.2715 12.5003C21.7564 10.9228 19.7778 9.49658 17.648 8.59388ZM12.499 15C11.1205 15 9.99902 13.8785 9.99902 12.5C9.99902 11.1215 11.1205 10 12.499 10C13.8775 10 14.999 11.1215 14.999 12.5C14.999 13.8785 13.8775 15 12.499 15ZM12.499 13.5294C13.0666 13.5294 13.5284 13.0676 13.5284 12.5C13.5284 11.9323 13.0666 11.4706 12.499 11.4706C11.9314 11.4706 11.4696 11.9323 11.4696 12.5C11.4696 13.0676 11.9314 13.5294 12.499 13.5294ZM17.8897 3.89547C17.6885 4.24841 17.2393 4.37101 16.8867 4.16993C16.534 3.9687 16.4112 3.51964 16.6123 3.16694L17.5909 1.45125C17.7921 1.09841 18.241 0.975615 18.5939 1.17679C18.9466 1.37802 19.0694 1.82704 18.8683 2.17978L17.8897 3.89547ZM7.11039 3.89546C7.31157 4.24821 7.76059 4.37105 8.11338 4.16987C8.46613 3.9687 8.58897 3.51963 8.3878 3.16688L7.40927 1.4512C7.20809 1.09845 6.75897 0.975607 6.40627 1.17678C6.05353 1.37796 5.93068 1.82703 6.13186 2.17977L7.11039 3.89546ZM11.7656 22.5493C11.7656 22.1432 12.0948 21.814 12.5009 21.814C12.907 21.814 13.2362 22.1432 13.2362 22.5493V24.265C13.2362 24.671 12.907 25.0003 12.5009 25.0003C12.0948 25.0003 11.7656 24.671 11.7656 24.265V22.5493ZM8.11338 20.8301C7.76063 20.629 7.31161 20.7517 7.11039 21.1045L6.13186 22.8202C5.93068 23.1729 6.05353 23.622 6.40627 23.8232C6.75907 24.0243 7.20809 23.9015 7.40926 23.5488L8.38779 21.8331C8.58902 21.4803 8.46612 21.0313 8.11338 20.8301ZM16.8867 20.8301C17.2394 20.629 17.6886 20.7517 17.8897 21.1045L18.8683 22.8202C19.0694 23.173 18.9466 23.622 18.5939 23.8232C18.241 24.0244 17.792 23.9015 17.5909 23.5487L16.6123 21.833C16.4112 21.4803 16.534 21.0312 16.8867 20.8301Z"
+ })), React.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M12.5009 3.18628C12.907 3.18628 13.2362 2.85706 13.2362 2.45098V0.735295C13.2362 0.329216 12.907 0 12.5009 0C12.0948 0 11.7656 0.329216 11.7656 0.735295V2.45098C11.7656 2.85706 12.0948 3.18628 12.5009 3.18628ZM12.5 6.03516C17.7504 6.03516 22.561 9.26579 24.8332 12.0341C25.0557 12.3053 25.0557 12.6957 24.8332 12.9669C22.6596 15.6151 17.8695 18.9659 12.5 18.9659C7.31483 18.9659 2.49292 15.8022 0.166838 12.9669C-0.0556128 12.6957 -0.0556128 12.3053 0.166838 12.0341C2.42003 9.28776 7.23086 6.03516 12.5 6.03516ZM12.5 17.4953C15.2542 17.4953 17.4948 15.2546 17.4948 12.5005C17.4948 9.74668 15.2544 7.50575 12.5 7.5057C9.74581 7.5057 7.50518 9.74638 7.50518 12.5005C7.50518 15.2545 9.74577 17.4953 12.5 17.4953ZM7.35287 8.5928C4.55165 9.78423 2.55615 11.6406 1.72856 12.5007C3.24365 14.0782 5.22218 15.5044 7.35204 16.4071C5.59424 14.0964 5.59493 10.9027 7.35287 8.5928ZM17.648 8.59388C19.4058 10.9046 19.4051 14.0983 17.6472 16.4082C20.4484 15.2167 22.4439 13.3605 23.2715 12.5003C21.7564 10.9228 19.7778 9.49658 17.648 8.59388ZM12.499 15C11.1205 15 9.99902 13.8785 9.99902 12.5C9.99902 11.1215 11.1205 10 12.499 10C13.8775 10 14.999 11.1215 14.999 12.5C14.999 13.8785 13.8775 15 12.499 15ZM12.499 13.5294C13.0666 13.5294 13.5284 13.0676 13.5284 12.5C13.5284 11.9323 13.0666 11.4706 12.499 11.4706C11.9314 11.4706 11.4696 11.9323 11.4696 12.5C11.4696 13.0676 11.9314 13.5294 12.499 13.5294ZM17.8897 3.89547C17.6885 4.24841 17.2393 4.37101 16.8867 4.16993C16.534 3.9687 16.4112 3.51964 16.6123 3.16694L17.5909 1.45125C17.7921 1.09841 18.241 0.975615 18.5939 1.17679C18.9466 1.37802 19.0694 1.82704 18.8683 2.17978L17.8897 3.89547ZM7.11039 3.89546C7.31157 4.24821 7.76059 4.37105 8.11338 4.16987C8.46613 3.9687 8.58897 3.51963 8.3878 3.16688L7.40927 1.4512C7.20809 1.09845 6.75897 0.975607 6.40627 1.17678C6.05353 1.37796 5.93068 1.82703 6.13186 2.17977L7.11039 3.89546ZM11.7656 22.5493C11.7656 22.1432 12.0948 21.814 12.5009 21.814C12.907 21.814 13.2362 22.1432 13.2362 22.5493V24.265C13.2362 24.671 12.907 25.0003 12.5009 25.0003C12.0948 25.0003 11.7656 24.671 11.7656 24.265V22.5493ZM8.11338 20.8301C7.76063 20.629 7.31161 20.7517 7.11039 21.1045L6.13186 22.8202C5.93068 23.1729 6.05353 23.622 6.40627 23.8232C6.75907 24.0243 7.20809 23.9015 7.40926 23.5488L8.38779 21.8331C8.58902 21.4803 8.46612 21.0313 8.11338 20.8301ZM16.8867 20.8301C17.2394 20.629 17.6886 20.7517 17.8897 21.1045L18.8683 22.8202C19.0694 23.173 18.9466 23.622 18.5939 23.8232C18.241 24.0244 17.792 23.9015 17.5909 23.5487L16.6123 21.833C16.4112 21.4803 16.534 21.0312 16.8867 20.8301Z",
+ fill: "black"
+ }), React.createElement("path", {
+ d: "M24.8332 12.0341L25.6093 11.3973L25.6092 11.3972L24.8332 12.0341ZM24.8332 12.9669L25.6092 13.6039L25.6094 13.6036L24.8332 12.9669ZM0.166838 12.9669L0.942986 12.3301L0.942961 12.3301L0.166838 12.9669ZM0.166838 12.0341L0.942961 12.6709L0.942978 12.6709L0.166838 12.0341ZM12.5 7.5057L12.5 6.50177H12.5V7.5057ZM1.72856 12.5007L1.00512 11.8046L0.336008 12.5001L1.00449 13.1961L1.72856 12.5007ZM7.35287 8.5928L8.15175 9.20079L10.4459 6.18632L6.95995 7.66897L7.35287 8.5928ZM7.35204 16.4071L6.96028 17.3315L10.4377 18.8053L8.15105 15.7993L7.35204 16.4071ZM17.6472 16.4082L16.8483 15.8002L14.5542 18.8148L18.0401 17.332L17.6472 16.4082ZM17.648 8.59388L18.0398 7.66956L14.5624 6.19565L16.849 9.20169L17.648 8.59388ZM23.2715 12.5003L23.995 13.1963L24.6641 12.5008L23.9955 11.8048L23.2715 12.5003ZM16.8867 4.16993L16.3893 5.04194L16.3894 5.04198L16.8867 4.16993ZM17.8897 3.89547L17.0177 3.3981L17.0177 3.39815L17.8897 3.89547ZM16.6123 3.16694L17.4844 3.66434L17.4844 3.66431L16.6123 3.16694ZM17.5909 1.45125L18.4629 1.94862L18.4629 1.9486L17.5909 1.45125ZM18.5939 1.17679L19.0912 0.304749L19.0911 0.304666L18.5939 1.17679ZM18.8683 2.17978L19.7403 2.67715L19.7403 2.67713L18.8683 2.17978ZM8.11338 4.16987L8.61068 5.04197L8.61074 5.04194L8.11338 4.16987ZM7.11039 3.89546L7.98246 3.39811L7.98245 3.39809L7.11039 3.89546ZM8.3878 3.16688L9.25986 2.66953L9.25985 2.66951L8.3878 3.16688ZM7.40927 1.4512L6.5372 1.94855L6.53721 1.94857L7.40927 1.4512ZM6.40627 1.17678L6.90363 2.04885L6.90368 2.04882L6.40627 1.17678ZM6.13186 2.17977L5.2598 2.67713L5.25981 2.67714L6.13186 2.17977ZM7.11039 21.1045L6.23838 20.607L6.23833 20.6071L7.11039 21.1045ZM8.11338 20.8301L8.61073 19.958L8.61064 19.958L8.11338 20.8301ZM6.13186 22.8202L5.25981 22.3228L5.2598 22.3228L6.13186 22.8202ZM6.40627 23.8232L5.90892 24.6952L5.90897 24.6953L6.40627 23.8232ZM7.40926 23.5488L8.2813 24.0462L8.28132 24.0461L7.40926 23.5488ZM8.38779 21.8331L7.51578 21.3356L7.51574 21.3357L8.38779 21.8331ZM17.8897 21.1045L17.0176 21.6018L17.0177 21.6019L17.8897 21.1045ZM16.8867 20.8301L16.3895 19.958L16.3894 19.958L16.8867 20.8301ZM18.8683 22.8202L19.7403 22.3229L19.7403 22.3228L18.8683 22.8202ZM18.5939 23.8232L19.0911 24.6953L19.0912 24.6953L18.5939 23.8232ZM17.5909 23.5487L18.463 23.0515L18.4629 23.0514L17.5909 23.5487ZM16.6123 21.833L15.7403 22.3304L15.7403 22.3304L16.6123 21.833ZM12.2323 2.45098C12.2323 2.30261 12.3526 2.18235 12.5009 2.18235V4.1902C13.4614 4.1902 14.2401 3.41151 14.2401 2.45098H12.2323ZM12.2323 0.735295V2.45098H14.2401V0.735295H12.2323ZM12.5009 1.00392C12.3526 1.00392 12.2323 0.883669 12.2323 0.735295H14.2401C14.2401 -0.225237 13.4614 -1.00392 12.5009 -1.00392V1.00392ZM12.7695 0.735295C12.7695 0.883669 12.6493 1.00392 12.5009 1.00392V-1.00392C11.5404 -1.00392 10.7617 -0.225237 10.7617 0.735295H12.7695ZM12.7695 2.45098V0.735295H10.7617V2.45098H12.7695ZM12.5009 2.18235C12.6493 2.18235 12.7695 2.30261 12.7695 2.45098H10.7617C10.7617 3.41151 11.5404 4.1902 12.5009 4.1902V2.18235ZM25.6092 11.3972C23.198 8.45944 18.1238 5.03123 12.5 5.03123V7.03908C17.3769 7.03908 21.9241 10.0721 24.0572 12.6711L25.6092 11.3972ZM25.6094 13.6036C26.1355 12.9623 26.1356 12.0387 25.6093 11.3973L24.0571 12.6709C23.9758 12.5718 23.9759 12.4292 24.057 12.3302L25.6094 13.6036ZM12.5 19.9698C18.2507 19.9698 23.3028 16.4139 25.6092 13.6039L24.0572 12.33C22.0165 14.8163 17.4883 17.962 12.5 17.962V19.9698ZM-0.609309 13.6036C1.85939 16.6128 6.94582 19.9698 12.5 19.9698V17.962C7.68384 17.962 3.12645 14.9916 0.942986 12.3301L-0.609309 13.6036ZM-0.609284 11.3973C-1.13547 12.0387 -1.13547 12.9623 -0.609284 13.6037L0.942961 12.3301C1.02424 12.4292 1.02424 12.5718 0.942961 12.6709L-0.609284 11.3973ZM12.5 5.03123C6.85619 5.03123 1.78204 8.4826 -0.609301 11.3974L0.942978 12.6709C3.05801 10.0929 7.60554 7.03908 12.5 7.03908V5.03123ZM16.4909 12.5005C16.4909 14.7002 14.6997 16.4914 12.5 16.4914V18.4992C15.8086 18.4992 18.4987 15.8091 18.4987 12.5005H16.4909ZM12.5 8.50962C14.6999 8.50966 16.4909 10.3011 16.4909 12.5005H18.4987C18.4987 9.19229 15.8089 6.50183 12.5 6.50177L12.5 8.50962ZM8.5091 12.5005C8.5091 10.3008 10.3003 8.50962 12.5 8.50962V6.50177C9.19136 6.50177 6.50125 9.19194 6.50125 12.5005H8.5091ZM12.5 16.4914C10.3002 16.4914 8.5091 14.7001 8.5091 12.5005H6.50125C6.50125 15.8089 9.19128 18.4992 12.5 18.4992V16.4914ZM2.45199 13.1968C3.23229 12.3858 5.1185 10.6341 7.7458 9.51664L6.95995 7.66897C3.98479 8.93437 1.88002 10.8953 1.00512 11.8046L2.45199 13.1968ZM7.7438 15.4828C5.74951 14.6376 3.88178 13.2934 2.45262 11.8053L1.00449 13.1961C2.60553 14.8631 4.69486 16.3713 6.96028 17.3315L7.7438 15.4828ZM6.55399 7.98482C4.52274 10.6538 4.52194 14.3449 6.55303 17.0149L8.15105 15.7993C6.66655 13.8478 6.66712 11.1516 8.15175 9.20079L6.55399 7.98482ZM18.4461 17.0162C20.4773 14.3471 20.4781 10.6561 18.447 7.98608L16.849 9.20169C18.3335 11.1532 18.3329 13.8494 16.8483 15.8002L18.4461 17.0162ZM22.548 11.8042C21.7678 12.6153 19.8816 14.3669 17.2543 15.4844L18.0401 17.332C21.0153 16.0666 23.12 14.1057 23.995 13.1963L22.548 11.8042ZM17.2563 9.51821C19.2504 10.3634 21.1182 11.7077 22.5475 13.1957L23.9955 11.8048C22.3945 10.1379 20.3051 8.62972 18.0398 7.66956L17.2563 9.51821ZM8.9951 12.5C8.9951 14.433 10.566 16.0039 12.499 16.0039V13.9961C11.6749 13.9961 11.0029 13.3241 11.0029 12.5H8.9951ZM12.499 8.99608C10.566 8.99608 8.9951 10.567 8.9951 12.5H11.0029C11.0029 11.6759 11.6749 11.0039 12.499 11.0039V8.99608ZM16.0029 12.5C16.0029 10.567 14.4319 8.99608 12.499 8.99608V11.0039C13.3231 11.0039 13.9951 11.6759 13.9951 12.5H16.0029ZM12.499 16.0039C14.4319 16.0039 16.0029 14.433 16.0029 12.5H13.9951C13.9951 13.3241 13.3231 13.9961 12.499 13.9961V16.0039ZM12.5245 12.5C12.5245 12.5047 12.5238 12.507 12.523 12.5087C12.522 12.5111 12.52 12.5144 12.5167 12.5177C12.5134 12.521 12.5101 12.523 12.5077 12.524C12.506 12.5247 12.5037 12.5255 12.499 12.5255V14.5333C13.621 14.5333 14.5324 13.6221 14.5324 12.5H12.5245ZM12.499 12.4745C12.5037 12.4745 12.506 12.4753 12.5077 12.476C12.5101 12.477 12.5134 12.479 12.5167 12.4823C12.52 12.4856 12.522 12.4889 12.523 12.4913C12.5238 12.493 12.5245 12.4953 12.5245 12.5H14.5324C14.5324 11.3779 13.621 10.4667 12.499 10.4667V12.4745ZM12.4735 12.5C12.4735 12.4953 12.4743 12.493 12.475 12.4913C12.476 12.4889 12.478 12.4856 12.4813 12.4823C12.4846 12.479 12.4879 12.477 12.4903 12.476C12.492 12.4753 12.4943 12.4745 12.499 12.4745V10.4667C11.3769 10.4667 10.4657 11.3779 10.4657 12.5H12.4735ZM12.499 12.5255C12.4943 12.5255 12.492 12.5247 12.4903 12.524C12.4879 12.523 12.4846 12.521 12.4813 12.5177C12.478 12.5144 12.476 12.5111 12.475 12.5087C12.4743 12.507 12.4735 12.5047 12.4735 12.5H10.4657C10.4657 13.6221 11.3769 14.5333 12.499 14.5333V12.5255ZM16.3894 5.04198C17.2232 5.51759 18.2857 5.22771 18.7618 4.39279L17.0177 3.39815C17.0912 3.26912 17.2553 3.22443 17.3841 3.29788L16.3894 5.04198ZM15.7403 2.66954C15.2644 3.50389 15.555 4.56603 16.3893 5.04194L17.3842 3.29792C17.513 3.37138 17.5579 3.53538 17.4844 3.66434L15.7403 2.66954ZM16.7188 0.953882L15.7403 2.66957L17.4844 3.66431L18.4629 1.94862L16.7188 0.953882ZM19.0911 0.304666C18.2568 -0.171032 17.1948 0.119332 16.7188 0.953909L18.4629 1.9486C18.3894 2.07749 18.2252 2.12226 18.0966 2.04892L19.0911 0.304666ZM19.7403 2.67713C20.2161 1.84285 19.9257 0.780711 19.0912 0.304749L18.0965 2.04884C17.9676 1.97532 17.9227 1.81122 17.9962 1.68243L19.7403 2.67713ZM18.7618 4.39284L19.7403 2.67715L17.9962 1.68241L17.0177 3.3981L18.7618 4.39284ZM7.61608 3.29778C7.7448 3.22438 7.9089 3.26914 7.98246 3.39811L6.23833 4.39282C6.71424 5.22728 7.77637 5.51772 8.61068 5.04197L7.61608 3.29778ZM7.51573 3.66424C7.44227 3.53542 7.48708 3.37135 7.61603 3.29781L8.61074 5.04194C9.44518 4.56604 9.73568 3.50383 9.25986 2.66953L7.51573 3.66424ZM6.53721 1.94857L7.51574 3.66425L9.25985 2.66951L8.28132 0.953824L6.53721 1.94857ZM6.90368 2.04882C6.77478 2.12234 6.61074 2.07749 6.5372 1.94855L8.28133 0.95384C7.80544 0.119409 6.74316 -0.171128 5.90887 0.304747L6.90368 2.04882ZM7.00393 1.68242C7.07739 1.81123 7.03258 1.9753 6.90363 2.04885L5.90892 0.304717C5.07447 0.780616 4.78398 1.84283 5.2598 2.67713L7.00393 1.68242ZM7.98245 3.39809L7.00392 1.6824L5.25981 2.67714L6.23834 4.39283L7.98245 3.39809ZM12.5009 20.81C11.5404 20.81 10.7617 21.5887 10.7617 22.5493H12.7695C12.7695 22.6976 12.6493 22.8179 12.5009 22.8179V20.81ZM14.2401 22.5493C14.2401 21.5887 13.4615 20.81 12.5009 20.81V22.8179C12.3525 22.8179 12.2323 22.6976 12.2323 22.5493H14.2401ZM14.2401 24.265V22.5493H12.2323V24.265H14.2401ZM12.5009 26.0042C13.4615 26.0042 14.2401 25.2255 14.2401 24.265H12.2323C12.2323 24.1166 12.3525 23.9963 12.5009 23.9963V26.0042ZM10.7617 24.265C10.7617 25.2255 11.5404 26.0042 12.5009 26.0042V23.9963C12.6493 23.9963 12.7695 24.1166 12.7695 24.265H10.7617ZM10.7617 22.5493V24.265H12.7695V22.5493H10.7617ZM7.9824 21.6019C7.90887 21.7308 7.74484 21.7756 7.61611 21.7022L8.61064 19.958C7.77642 19.4823 6.71436 19.7727 6.23838 20.607L7.9824 21.6019ZM7.00392 23.3175L7.98245 21.6019L6.23833 20.6071L5.25981 22.3228L7.00392 23.3175ZM6.90363 22.9511C7.03258 23.0246 7.07739 23.1887 7.00393 23.3175L5.2598 22.3228C4.78398 23.1571 5.07447 24.2193 5.90892 24.6952L6.90363 22.9511ZM6.53722 23.0513C6.61074 22.9225 6.77477 22.8776 6.90357 22.9511L5.90897 24.6953C6.74336 25.1711 7.80543 24.8804 8.2813 24.0462L6.53722 23.0513ZM7.51574 21.3357L6.53721 23.0514L8.28132 24.0461L9.25985 22.3304L7.51574 21.3357ZM7.61603 21.7021C7.48717 21.6287 7.44221 21.4646 7.51578 21.3356L9.2598 22.3305C9.73582 21.4961 9.44508 20.4339 8.61073 19.958L7.61603 21.7021ZM18.7618 20.6072C18.2858 19.7725 17.2235 19.4824 16.3895 19.958L17.384 21.7022C17.2553 21.7756 17.0913 21.7309 17.0176 21.6018L18.7618 20.6072ZM19.7403 22.3228L18.7618 20.6071L17.0177 21.6019L17.9962 23.3176L19.7403 22.3228ZM19.0912 24.6953C19.9257 24.2194 20.2161 23.1572 19.7403 22.3229L17.9962 23.3176C17.9227 23.1888 17.9675 23.0247 18.0965 22.9511L19.0912 24.6953ZM16.7187 24.046C17.1946 24.8805 18.2567 25.171 19.0911 24.6953L18.0966 22.9511C18.2253 22.8777 18.3894 22.9224 18.463 23.0515L16.7187 24.046ZM15.7403 22.3304L16.7188 24.0461L18.4629 23.0514L17.4844 21.3357L15.7403 22.3304ZM16.3894 19.958C15.5549 20.4339 15.2645 21.4961 15.7403 22.3304L17.4844 21.3357C17.5579 21.4645 17.5131 21.6286 17.3841 21.7021L16.3894 19.958Z",
+ fill: "black",
+ mask: "url(#path-1-inside-1)"
+ }));
+};
+Icon$u.displayName = 'Icon.Open';
+
+function Icon$v(_ref) {
+ let {
+ className
+ } = _ref;
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ className: className + ' fill',
+ width: "14",
+ height: "15",
+ fill: "none",
+ viewBox: "0 0 14 15"
+ }, React.createElement("g", {
+ fill: "#424242",
+ clipPath: "url(#clip0)"
+ }, React.createElement("path", {
+ d: "M11.95 2.304A6.954 6.954 0 007 .254a7.017 7.017 0 00-3.24.793c-.572.3-1.102.68-1.572 1.125V.254H1.093v3.828h3.828V2.988H2.917A5.927 5.927 0 017 1.348a5.913 5.913 0 015.882 6.449l1.089.1c.02-.213.029-.429.029-.643h-.547H14c0-1.87-.728-3.628-2.05-4.95zM2.398 10.957l-.851.686c.247.307.523.595.818.856l.724-.819a5.956 5.956 0 01-.69-.723zM1.428 9.217l-1.032.364c.132.372.296.735.488 1.08l.955-.533a5.893 5.893 0 01-.41-.91zM1.094 7.254H0c0 .395.033.792.1 1.18l1.077-.184a5.967 5.967 0 01-.083-.996zM3.89 12.277l-.576.93c.336.207.691.388 1.056.536l.411-1.014a5.894 5.894 0 01-.89-.452zM12.708 8.78a5.88 5.88 0 01-.339.94l.994.458c.165-.359.3-.734.402-1.115l-1.057-.282zM10.488 12.02a5.918 5.918 0 01-.853.521l.488.979a7.02 7.02 0 001.012-.617l-.647-.882zM11.875 10.59a5.957 5.957 0 01-.633.773l.786.762c.274-.284.526-.592.75-.917l-.903-.619zM8.706 12.91a5.887 5.887 0 01-.977.206l.133 1.085c.392-.048.782-.13 1.16-.244l-.316-1.047zM5.737 13.025l-.233 1.068c.384.084.78.136 1.174.153l.05-1.092a5.931 5.931 0 01-.991-.13z"
+ })), React.createElement("defs", null, React.createElement("clipPath", {
+ id: "clip0"
+ }, React.createElement("path", {
+ fill: "#fff",
+ d: "M0 0H14V14H0z",
+ transform: "translate(0 .25)"
+ }))));
+}
+Icon$v.displayName = 'Icon.Sync';
+
+
+
+var SVGIcons = {
+ __proto__: null,
+ ArrowDown: Icon,
+ ArrowLeft: Icon$1,
+ ArrowRight: Icon$2,
+ ArrowUp: Icon$3,
+ Bonde: Icon$4,
+ Bolt: Icon$5,
+ BoltUnfilled: Icon$6,
+ Bot: Icon$7,
+ Check: Icon$8,
+ Close: Icon$9,
+ Cloud: Icon$a,
+ Copy: Icon$b,
+ Info: Icon$c,
+ InfoMsg: Icon$d,
+ Network: Icon$e,
+ New: Icon$f,
+ Pencil: Icon$g,
+ Plus: Icon$h,
+ Search: Icon$i,
+ Settings: Icon$j,
+ Trash: Icon$k,
+ Ticket: Icon$l,
+ TicketRecurring: Icon$m,
+ User: Icon$n,
+ Window: Icon$o,
+ MapMarker: Icon$p,
+ Heart: Icon$q,
+ Warning: Icon$r,
+ Whatsapp: Icon$s,
+ Eye: Icon$t,
+ Open: Icon$u,
+ Sync: Icon$v
+};
+
+var _templateObject$7;
+const IconController = _ref => {
+ let {
+ name,
+ ...props
+ } = _ref;
+ const IconSVG = SVGIcons[name];
+ if (IconSVG) return React.createElement(IconSVG, Object.assign({}, props));else return React.createElement("span", null);
+};
+const Icon$w = /*#__PURE__*/styled(IconController)(_templateObject$7 || (_templateObject$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n vertical-align: middle;\n ", "\n ", "\n ", "\n ", "\n\n &.fill {\n path {\n fill: ", ";\n }\n }\n &.stroke {\n path {\n stroke: ", ";\n }\n }\n"])), props => props.size === 'xs' && "\n width: calc(0.75*20px);\n height: calc(0.75*15px);\n ", props => props.size === 'small' && "\n width: calc(1*20px);\n height: calc(1*15px);\n ", props => props.size === 'default' && "\n width: calc(1.5*20px);\n height: calc(1.5*15px);\n ", props => props.size === 'large' && "\n width: calc(2*20px);\n height: calc(2*15px);\n ", props => props.color, props => props.color);
+Icon$w.defaultProps = {
+ size: 'default',
+ color: '#000'
+};
+
+var _templateObject$8;
+const Link = /*#__PURE__*/styled(props => {
+ const {
+ component: Component,
+ className,
+ ...ownProps
+ } = props;
+ return React.createElement(Component, Object.assign({
+ className: className
+ }, ownProps));
+})(_templateObject$8 || (_templateObject$8 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-weight: 600;\n font-size: 13px;\n text-transform: uppercase;\n text-decoration: none;\n color: ", ";\n cursor: pointer;\n\n &:hover,\n &:active {\n color: ", ";\n text-decoration: underline;\n }\n &:focus {\n color: ", ";\n }\n"])), props => props.theme.fontFamily, props => props.theme.dark.color.main, props => props.theme.dark.color.hover, props => props.theme.dark.color.focus);
+Link.defaultProps = {
+ theme,
+ component: 'a'
+};
+
+var _templateObject$9;
+const CleanButton = /*#__PURE__*/styled.button(_templateObject$9 || (_templateObject$9 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border: none;\n margin: 0;\n padding: 0;\n width: auto;\n overflow: visible;\n\n background: transparent;\n\n /* inherit font & color from ancestor */\n color: inherit;\n font: inherit;\n\n /* Normalize 'line-height'. Cannot be changed from 'normal' in Firefox 4+. */\n line-height: normal;\n\n /* Corrects font smoothing for webkit */\n -webkit-font-smoothing: inherit;\n -moz-osx-font-smoothing: inherit;\n\n /* Corrects inability to style clickable 'input' types in iOS */\n -webkit-appearance: none;\n\n /* Remove excess padding and border in Firefox 4+ */\n &::-moz-focus-inner {\n border: 0;\n padding: 0;\n }\n"])));
+CleanButton.displayName = 'CleanButton';
+
+var _templateObject$a, _templateObject2$3;
+const Wrapper = /*#__PURE__*/styled(CleanButton)(_templateObject$a || (_templateObject$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 200px;\n height: 90px;\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 5px;\n cursor: pointer;\n background-color: ", ";\n padding: 0px 20px;\n\n display: grid;\n grid-template-columns: auto auto;\n align-items: center;\n justify-content: center;\n grid-column-gap: 20px;\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.brand.light;
+});
+const Text$1 = /*#__PURE__*/styled(Header.H5)(_templateObject2$3 || (_templateObject2$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n text-transform: uppercase;\n margin: 0;\n text-align: left;\n color: ", ";\n"])), _ref2 => {
+ let {
+ theme
+ } = _ref2;
+ return theme.brand.dark;
+});
+const Shortcut = _ref3 => {
+ let {
+ icon,
+ text,
+ theme
+ } = _ref3;
+ return React.createElement(Wrapper, {
+ theme: theme
+ }, icon, React.createElement(Text$1, {
+ theme: theme
+ }, text));
+};
+Shortcut.defaultProps = {
+ theme
+};
+
+var _templateObject$b, _templateObject2$4, _templateObject3$2;
+const ModalStyled = /*#__PURE__*/styled.div(_templateObject$b || (_templateObject$b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: ", "; /* Hidden by default */\n position: fixed; /* Stay in place */\n z-index: 1; /* Sit on top */\n left: 0;\n top: 0;\n width: 100%; /* Full width */\n height: 100%; /* Full height */\n overflow: auto; /* Enable scroll if needed */\n background-color: rgb(0, 0, 0); /* Fallback color */\n background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */\n z-index: 3;\n"])), props => !props.isOpen ? 'none' : 'block');
+const ModalContentStyled = /*#__PURE__*/styled.div(_templateObject2$4 || (_templateObject2$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: ", ";\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 4px;\n padding: 30px;\n width: ", ";\n height: ", ";\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n"])), props => props.theme.brand.light, props => props.width, props => props.height ? "" + props.height : 'auto');
+const CloseButtonStyled = /*#__PURE__*/styled(CleanButton)(_templateObject3$2 || (_templateObject3$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: ", ";\n font-size: 28px;\n font-weight: bold;\n float: right;\n &:hover,\n &:focus {\n color: ", ";\n text-decoration: none;\n cursor: pointer;\n }\n"])), props => props.theme.commons.main, props => props.theme.brand.dark);
+const Modal = _ref => {
+ let {
+ children,
+ isOpen,
+ onClose,
+ width
+ } = _ref;
+ return React.createElement(ModalStyled, {
+ isOpen: isOpen
+ }, React.createElement(ModalContentStyled, {
+ width: width,
+ theme: theme
+ }, React.createElement(CloseButtonStyled, {
+ theme: theme,
+ onClick: onClose
+ }, "\u00D7"), children));
+};
+Modal.defaultProps = {
+ isOpen: false,
+ width: 300
+};
+
+var _templateObject$c, _templateObject2$5, _templateObject3$3, _templateObject4$2, _templateObject5$2, _templateObject6$2, _templateObject7$1, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12;
+const SelectIcon = /*#__PURE__*/styled.div(_templateObject$c || (_templateObject$c = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n transition: all 350ms;\n\n ", "\n"])), props => props.show && css(_templateObject2$5 || (_templateObject2$5 = _taggedTemplateLiteralLoose(["\n transform: rotate(180deg);\n position: relative;\n top: 2px;\n "]))));
+const StyledControl = /*#__PURE__*/styled.div(_templateObject3$3 || (_templateObject3$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n & > .Select__control {\n // Sets clear button color dinamically\n & > .Select__indicators > .Select__clear-indicator {\n color: ", ";\n }\n background-color: unset;\n ", "\n ", "\n box-shadow: none;\n width: 100%;\n & > .Select__value-container {\n & > .Select__placeholder {\n font-family: ", ";\n color: ", ";\n }\n }\n }\n"])), props => props.theme.brand.main, props => !props.value ? css(_templateObject4$2 || (_templateObject4$2 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), props.theme.commons.main, props.theme.commons.main) : css(_templateObject5$2 || (_templateObject5$2 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), props.theme.brand.main, props.theme.brand.main), props => props.invalid && css(_templateObject6$2 || (_templateObject6$2 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), props.theme.error, props.theme.error), props => props.theme.fontFamily, props => props.theme.commons.dark);
+StyledControl.defaultProps = {
+ theme
+};
+const StyledSingleValue = /*#__PURE__*/styled.div(_templateObject7$1 || (_templateObject7$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n & > .Select__single-value {\n opacity: ", ";\n transition: opacity 300ms;\n font-family: ", ";\n color: ", ";\n }\n"])), props => props.isDisabled ? 0.5 : 1, props => props.theme.fontFamily, props => !props.value ? props.theme.commons.main : props.theme.brand.main);
+StyledSingleValue.defaultProps = {
+ theme
+};
+const StyledOption = /*#__PURE__*/styled.div(_templateObject8 || (_templateObject8 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n & > .Select__option {\n font-family: ", ";\n cursor: ", ";\n ", "\n ", "\n ", "\n color: ", ";\n }\n"])), props => props.theme.fontFamily, props => props.isDisabled ? 'not-allowed' : 'default', props => props.isSelected && css(_templateObject9 || (_templateObject9 = _taggedTemplateLiteralLoose(["\n background-color: rgba(74, 74, 74, 0.5);\n &:active {\n backgroundcolor: rgba(74, 74, 74, 0.5);\n }\n "]))), props => props.isFocused && css(_templateObject10 || (_templateObject10 = _taggedTemplateLiteralLoose(["\n background-color: rgba(74, 74, 74, 0.3);\n "]))), props => props.isDisabled && css(_templateObject11 || (_templateObject11 = _taggedTemplateLiteralLoose(["\n color: #ccc;\n "]))), props => props.isSelected ? props.theme.brand.light : props.theme.commons.dark);
+const StyledMenu = /*#__PURE__*/styled.div(_templateObject12 || (_templateObject12 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n & > .Select__menu {\n z-index: 3;\n }\n"])));
+StyledOption.defaultProps = {
+ theme
+};
+const SingleValue = props => React.createElement(StyledSingleValue, Object.assign({
+ value: props.selectProps.value
+}, props), React.createElement(components.SingleValue, Object.assign({}, props)));
+const DropdownIndicator = props => {
+ const color = !props.selectProps.value ? theme.commons.main : theme.brand.main;
+ return React.createElement(components.DropdownIndicator, Object.assign({}, props), React.createElement(SelectIcon, {
+ show: props.selectProps.show
+ }, React.createElement(Icon$w, {
+ name: "ArrowDown",
+ size: "small",
+ color: color
+ })));
+};
+const Control = props => React.createElement(StyledControl, Object.assign({
+ value: props.selectProps.value
+}, props), React.createElement(components.Control, Object.assign({}, props)));
+const Option = props => React.createElement(StyledOption, Object.assign({
+ value: props.selectProps.value
+}, props), React.createElement(components.Option, Object.assign({}, props)));
+const Menu = props => {
+ return React.createElement(StyledMenu, null, React.createElement(components.Menu, Object.assign({}, props), props.children));
+};
+const RoundSelect = _ref => {
+ let {
+ ...props
+ } = _ref;
+ const [show, toggle] = useState(false);
+ return React.createElement(ReactSelect, Object.assign({}, props, {
+ components: {
+ DropdownIndicator,
+ IndicatorSeparator: () => null,
+ Control,
+ SingleValue,
+ Option,
+ Menu
+ },
+ onMenuOpen: () => toggle(true),
+ onMenuClose: () => toggle(false),
+ onInputChange: () => toggle(false),
+ show: show,
+ classNamePrefix: 'Select'
+ }));
+};
+RoundSelect.defaultProps = {
+ theme,
+ menuHeight: 300
+};
+RoundSelect.displayName = 'RoundSelect';
+
+var _templateObject$d;
+const WrapSelect = /*#__PURE__*/styled.div(_templateObject$d || (_templateObject$d = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 150px;\n & .Select__control {\n border-color: ", ";\n &:hover {\n border-color: ", ";\n }\n &:focus {\n border-color: ", ";\n }\n }\n & .Select__single-value {\n color: ", ";\n &:hover {\n color: ", ";\n }\n &:focus {\n color: ", ";\n }\n }\n .Select__indicators svg path {\n fill: ", ";\n &:hover {\n fill: ", ";\n }\n &:focus {\n fill: ", ";\n }\n }\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.brand.dark;
+}, _ref2 => {
+ let {
+ theme
+ } = _ref2;
+ return theme.commons.dark;
+}, _ref3 => {
+ let {
+ theme
+ } = _ref3;
+ return theme.dark.border.focus;
+}, _ref4 => {
+ let {
+ theme
+ } = _ref4;
+ return theme.brand.dark;
+}, _ref5 => {
+ let {
+ theme
+ } = _ref5;
+ return theme.commons.dark;
+}, _ref6 => {
+ let {
+ theme
+ } = _ref6;
+ return theme.dark.border.focus;
+}, _ref7 => {
+ let {
+ theme
+ } = _ref7;
+ return theme.brand.dark;
+}, _ref8 => {
+ let {
+ theme
+ } = _ref8;
+ return theme.commons.dark;
+}, _ref9 => {
+ let {
+ theme
+ } = _ref9;
+ return theme.dark.border.focus;
+});
+WrapSelect.defaultProps = {
+ theme
+};
+const getItems = (page, totalPages) => {
+ let startPage, endPage;
+ if (totalPages <= 10) {
+ // less than 10 total pages so show all
+ startPage = 1;
+ endPage = totalPages;
+ } else {
+ // more than 10 total pages so calculate start and end pages
+ if (page <= 6) {
+ startPage = 1;
+ endPage = 10;
+ } else if (page + 4 >= totalPages) {
+ startPage = totalPages - 9;
+ endPage = totalPages;
+ } else {
+ startPage = page - 5;
+ endPage = page + 4;
+ }
+ }
+ // create an array of pages to ng-repeat in the pager control
+ return Array.from(Array(endPage + 1 - startPage), (_, i) => startPage + i);
+};
+const Pagination = _ref10 => {
+ let {
+ goToPage,
+ pageIndex,
+ pageSize,
+ totalPages,
+ setPageSize,
+ showMorePlacement
+ } = _ref10;
+ const [items, setItems] = useState([]);
+ useEffect(() => {
+ setItems(getItems(pageIndex, totalPages));
+ }, [pageIndex, totalPages]);
+ const setPage = page => {
+ const items = getItems(page, totalPages);
+ setItems(items);
+ return goToPage(page);
+ };
+ return React.createElement(Stack, {
+ direction: "row",
+ my: 4,
+ spacing: 2,
+ justify: "center"
+ }, React.createElement(Button, {
+ variant: "link",
+ colorScheme: "gray",
+ onClick: () => setPage(0),
+ disabled: pageIndex === 0
+ }, '<<'), ' ', React.createElement(Button, {
+ variant: "link",
+ colorScheme: "gray",
+ onClick: () => setPage(pageIndex - 1),
+ disabled: pageIndex === 0
+ }, "anterior"), ' ', React.createElement(Stack, {
+ direction: "row",
+ spacing: 2
+ }, items.map((item, i) => React.createElement(Button, {
+ key: "page-item-" + i,
+ variant: "link",
+ colorScheme: "gray",
+ color: item - 1 === pageIndex ? 'pink.200' : 'gray.300',
+ onClick: () => setPage(item - 1)
+ }, item))), React.createElement(Button, {
+ variant: "link",
+ colorScheme: "gray",
+ onClick: () => setPage(pageIndex + 1),
+ disabled: pageIndex === totalPages - 1
+ }, "pr\u00F3xima"), ' ', React.createElement(Button, {
+ variant: "link",
+ colorScheme: "gray",
+ onClick: () => setPage(totalPages - 1),
+ disabled: pageIndex === totalPages - 1
+ }, '>>'), ' ', React.createElement(WrapSelect, null, React.createElement(RoundSelect, {
+ options: [{
+ value: 10,
+ label: 'Mostrar 10'
+ }, {
+ value: 20,
+ label: 'Mostrar 20'
+ }, {
+ value: 30,
+ label: 'Mostrar 30'
+ }, {
+ value: 40,
+ label: 'Mostrar 40'
+ }, {
+ value: 50,
+ label: 'Mostrar 50'
+ }],
+ placeholder: "",
+ value: {
+ value: pageSize,
+ label: "Mostrar " + pageSize
+ },
+ onChange: e => setPageSize(Number(e.value)),
+ menuPortalTarget: document.querySelector('body'),
+ menuPlacement: showMorePlacement
+ })));
+};
+
+var _templateObject$e, _templateObject2$6, _templateObject3$4, _templateObject4$3, _templateObject5$3, _templateObject6$3, _templateObject7$2;
+const StyledTh = /*#__PURE__*/styled.th(_templateObject$e || (_templateObject$e = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-size: 13px;\n font-weight: 600;\n line-height: 18px;\n text-transform: uppercase;\n color: #a4a4a4;\n text-align: left;\n border-bottom: 1px solid #e5e5e5;\n cursor: pointer;\n height: 40px;\n\n display: flex;\n align-items: center;\n\n /* Sticky */\n position: sticky !important;\n top: 0;\n background-color: ", ";\n\n &.hide {\n display: none;\n }\n"])), props => props.theme.fontFamily, props => props.backgroundColor);
+const StyledTd = /*#__PURE__*/styled.td(_templateObject2$6 || (_templateObject2$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-size: 16px;\n font-weight: ", ";\n line-height: 22px;\n color: ", ";\n letter-spacing: normal;\n word-break: break-word;\n min-height: 60px;\n\n margin: 0;\n border-bottom: 1px solid #e5e5e5;\n\n display: flex;\n align-items: center;\n\n &.hide {\n display: none;\n }\n"])), props => props.theme.fontFamily, props => props.bold ? 'bold' : 'normal', props => props.theme.commons.dark);
+const StyledTr = /*#__PURE__*/styled.tr(_templateObject3$4 || (_templateObject3$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n :last-child {\n td {\n border-bottom: 0;\n }\n }\n border-bottom: 1px solid #e5e5e5;\n"])));
+const StyledTable = /*#__PURE__*/styled.table(_templateObject4$3 || (_templateObject4$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border-spacing: 0;\n border: 1px solid #e5e5e5;\n background-color: ", ";\n width: 100%;\n\n thead {\n /* These styles are required for a scrollable body to align with the header properly */\n overflow-y: auto;\n overflow-x: hidden;\n }\n\n tbody {\n /* These styles are required for a scrollable table body */\n overflow-y: scroll;\n overflow-x: hidden;\n height: 250px;\n }\n\n th,\n td {\n margin: 0;\n padding-left: 20px;\n\n /* In this example we use an absolutely position resizer,\n so this is required. */\n position: relative;\n\n :last-child {\n border-right: 0;\n }\n }\n\n ", "\n\n ", "\n\n .sticky {\n position: sticky !important;\n top: 0;\n z-index: 1;\n background-color: ", ";\n }\n"])), props => props.backgroundColor, _ref => {
+ let {
+ sticky
+ } = _ref;
+ return sticky === 'end' && css(_templateObject5$3 || (_templateObject5$3 = _taggedTemplateLiteralLoose(["\n .sticky {\n right: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-left: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-left: 1px solid #e5e5e5;\n padding-left: 0;\n }\n }\n "])));
+}, _ref2 => {
+ let {
+ sticky
+ } = _ref2;
+ return sticky === 'start' && css(_templateObject6$3 || (_templateObject6$3 = _taggedTemplateLiteralLoose(["\n .sticky {\n left: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n "])));
+}, props => props.backgroundColor);
+const Main = /*#__PURE__*/styled.div(_templateObject7$2 || (_templateObject7$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n /* These styles are suggested for the table fill all available space in its containing element */\n display: block;\n /* These styles are required for a horizontaly scrollable table overflow */\n overflow: auto;\n"])));
+function Table(_ref3) {
+ let {
+ columns,
+ data,
+ backgroundColor,
+ sticky,
+ pagination
+ } = _ref3;
+ const defaultColumn = React.useMemo(() => ({
+ // When using the useFlexLayout:
+ minWidth: 30,
+ width: 150,
+ maxWidth: 300
+ }), []);
+ const {
+ getTableProps,
+ getTableBodyProps,
+ headerGroups,
+ rows,
+ prepareRow
+ } = useTable({
+ columns,
+ data,
+ defaultColumn
+ }, useSortBy, useFlexLayout);
+ // Render the UI for your table
+ return React.createElement(Stack, {
+ spacing: 4
+ }, React.createElement(Main, null, React.createElement(StyledTable, Object.assign({
+ sticky: sticky,
+ backgroundColor: backgroundColor
+ }, getTableProps()), React.createElement("thead", null, headerGroups.map(headerGroup => React.createElement(StyledTr, Object.assign({}, headerGroup.getHeaderGroupProps()), headerGroup.headers.map(column => React.createElement(StyledTh, Object.assign({}, column.getHeaderProps({
+ ...column.getSortByToggleProps(),
+ className: column.collapse ? 'collapse ' : '' + column.className || '',
+ style: column.style
+ }), {
+ theme: theme,
+ backgroundColor: backgroundColor
+ }), React.createElement("div", {
+ style: {
+ display: 'flex',
+ justifyContent: 'space-between',
+ paddingRight: '5px'
+ }
+ }, column.render('Header'), React.createElement("span", null, column.isSorted ? column.isSortedDesc ? React.createElement(Icon$w, {
+ name: "ArrowDown",
+ size: "small"
+ }) : React.createElement(Icon$w, {
+ name: "ArrowUp",
+ size: "small"
+ }) : ''))))))), React.createElement("tbody", Object.assign({}, getTableBodyProps()), rows.map(row => {
+ prepareRow(row);
+ return React.createElement(StyledTr, Object.assign({}, row.getRowProps()), row.cells.map(cell => React.createElement(StyledTd, Object.assign({}, cell.getCellProps({
+ className: cell.column.className,
+ style: cell.column.style,
+ bold: cell.column.bold
+ }), {
+ theme: theme
+ }), cell.render('Cell'))));
+ })))), pagination && React.createElement(Pagination, {
+ goToPage: pagination.goToPage,
+ pageIndex: pagination.pageIndex,
+ pageSize: pagination.pageSize,
+ setPageSize: pagination.setPageSize,
+ totalPages: pagination.totalPages,
+ showMorePlacement: "top"
+ }));
+}
+Table.defaultProps = {
+ backgroundColor: '#fff'
+};
+
+var _templateObject$f;
+const SpacingStyled = /*#__PURE__*/styled.div(_templateObject$f || (_templateObject$f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n ", "\n ", "\n ", "\n ", "\n ", "\n ", "\n ", "\n"])), _ref => {
+ let {
+ margin
+ } = _ref;
+ return margin.top && "margin-top: " + margin.top + "px;";
+}, _ref2 => {
+ let {
+ margin
+ } = _ref2;
+ return margin.bottom && "margin-bottom: " + margin.bottom + "px;";
+}, _ref3 => {
+ let {
+ margin
+ } = _ref3;
+ return margin.left && "margin-left: " + margin.left + "px;";
+}, _ref4 => {
+ let {
+ margin
+ } = _ref4;
+ return margin.right && "margin-right: " + margin.right + "px;";
+}, _ref5 => {
+ let {
+ padding
+ } = _ref5;
+ return padding.top && "padding-top: " + padding.top + "px;";
+}, _ref6 => {
+ let {
+ padding
+ } = _ref6;
+ return padding.bottom && "padding-bottom: " + padding.bottom + "px;";
+}, _ref7 => {
+ let {
+ padding
+ } = _ref7;
+ return padding.left && "padding-left: " + padding.left + "px;";
+}, _ref8 => {
+ let {
+ padding
+ } = _ref8;
+ return padding.right && "padding-right: " + padding.right + "px;";
+});
+/**
+ * The only true Spacing component.
+ */
+const Spacing = _ref9 => {
+ let {
+ margin,
+ padding,
+ ...ownProps
+ } = _ref9;
+ const {
+ x: marginX,
+ y: marginY
+ } = margin;
+ const {
+ x: paddingX,
+ y: paddingY
+ } = padding;
+ return React.createElement(SpacingStyled, Object.assign({}, ownProps, {
+ margin: {
+ top: marginY || margin.top,
+ bottom: marginY || margin.bottom,
+ left: marginX || margin.left,
+ right: marginX || margin.right
+ },
+ padding: {
+ top: paddingY || padding.top,
+ bottom: paddingY || padding.bottom,
+ left: paddingX || padding.left,
+ right: paddingX || padding.right
+ }
+ }));
+};
+Spacing.displayName = 'Spacing';
+Spacing.defaultProps = {
+ margin: {},
+ padding: {}
+};
+
+var _templateObject$g;
+const CardStyled = /*#__PURE__*/styled.div(_templateObject$g || (_templateObject$g = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n border-radius: ", ";\n background-color: #ffffff;\n box-shadow: 2px 1px 14px 11px rgba(0, 0, 0, 0.04);\n width: ", ";\n display: block;\n ", "\n ", "\n ", "\n"])), props => props.rounded || '1px', props => props.width || '100%', _ref => {
+ let {
+ height
+ } = _ref;
+ return height && "height: " + height + ";";
+}, _ref2 => {
+ let {
+ onClick
+ } = _ref2;
+ return onClick && "cursor: pointer;";
+}, _ref3 => {
+ let {
+ border
+ } = _ref3;
+ return border && "border: " + border + ";";
+});
+const Card = _ref4 => {
+ let {
+ margin,
+ padding,
+ children,
+ ...rest
+ } = _ref4;
+ return React.createElement(Spacing, {
+ margin: margin
+ }, React.createElement(CardStyled, Object.assign({}, rest), React.createElement(Spacing, {
+ padding: padding
+ }, children)));
+};
+Card.defaultProps = {
+ margin: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0
+ },
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0
+ }
+};
+Card.displayName = 'Card';
+
+var _templateObject$h;
+const Message = /*#__PURE__*/styled.span(_templateObject$h || (_templateObject$h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: Nunito Sans;\n position: absolute;\n background-color: #424242;\n padding: 23px 16px;\n width: 250px;\n font-size: 13px;\n text-transform: none;\n color: #fff;\n right: -200px;\n top: 25px;\n line-height: 17.73px;\n z-index: 1;\n\n p {\n margin-bottom: 5px;\n }\n"])));
+
+var _templateObject$i;
+const DropdownList = /*#__PURE__*/styled.div(_templateObject$i || (_templateObject$i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: #fff;\n padding: 20px 0;\n white-space: nowrap;\n overflow-y: auto;\n box-shadow: 0 3px 7px rgba(0, 0, 0, 0.45), 0 2px 2px rgba(0, 0, 0, 0.45);\n max-height: calc(100vh - 30px - 40px);\n"])));
+
+var _templateObject$j;
+const DropdownItem = /*#__PURE__*/styled(_ref => {
+ let {
+ className,
+ value
+ } = _ref;
+ return React.createElement("div", {
+ className: className
+ }, value);
+})(_templateObject$j || (_templateObject$j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n &:hover {\n color: #ee0099;\n }\n"])));
+
+const DropdownInput = _ref => {
+ let {
+ value
+ } = _ref;
+ return React.createElement("span", null, value);
+};
+
+var _templateObject$k, _templateObject2$7, _templateObject3$5, _templateObject4$4, _templateObject5$4;
+const useOutsideAlerter = (ref, onEvent) => {
+ const handleClickOutside = event => {
+ if (ref.current && !ref.current.contains(event.target)) {
+ onEvent();
+ }
+ };
+ useEffect(() => {
+ document.addEventListener('mousedown', handleClickOutside);
+ return () => {
+ document.removeEventListener('mousedown', handleClickOutside);
+ };
+ });
+};
+const DropdownFluid = /*#__PURE__*/styled.div(_templateObject$k || (_templateObject$k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n font-family: ", ";\n"])), props => props.theme.fontFamily);
+DropdownFluid.defaultProps = {
+ theme
+};
+const DropdownFluidList = /*#__PURE__*/styled.div(_templateObject2$7 || (_templateObject2$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: calc(100% + 15px);\n display: flex;\n flex-direction: column;\n z-index: 3;\n ", "\n ", "\n"])), props => props.direction === 'left' && "\n left: 0;\n ", props => props.direction === 'right' && "\n right: 0;\n ");
+const DropdownFluidInput = /*#__PURE__*/styled(_ref => {
+ let {
+ children,
+ className,
+ onToggle,
+ open
+ } = _ref;
+ return React.createElement("div", {
+ className: className,
+ onClick: onToggle
+ }, children, React.createElement(Icon$w, {
+ name: !open ? 'ArrowDown' : 'ArrowUp',
+ color: "#fff",
+ size: "small"
+ }));
+})(_templateObject3$5 || (_templateObject3$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n z-index: 2;\n cursor: pointer;\n flex-direction: row;\n align-items: center;\n color: #fff;\n font-weight: bold;\n font-size: 13px;\n text-transform: uppercase;\n\n ", " {\n margin-left: 10px;\n }\n"])), Icon$w);
+const DropdownFluidItem = /*#__PURE__*/styled.div(_templateObject4$4 || (_templateObject4$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n ", "\n"])), props => props.clickable && "cursor: pointer;");
+const DropdownFluidLayout = /*#__PURE__*/styled.div(_templateObject5$4 || (_templateObject5$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n"])));
+const Dropdown = _ref2 => {
+ let {
+ placeholder,
+ item,
+ items,
+ selectable,
+ onSelect,
+ direction,
+ dropdownInput: DropdownInputUI,
+ dropdownItem: DropdownItemUI,
+ dropdownList: DropdownListUI
+ } = _ref2;
+ const [open, setOpen] = useState(false);
+ // click ousite dropdown is close
+ const dropdownRef = useRef(null);
+ useOutsideAlerter(dropdownRef, () => setOpen(false));
+ return React.createElement(DropdownFluid, {
+ ref: dropdownRef
+ }, React.createElement(DropdownFluidInput, {
+ open: open,
+ onToggle: () => setOpen(!open)
+ }, !item ? React.createElement("span", null, placeholder) : selectable && !!item ? React.createElement(DropdownInputUI, {
+ value: item
+ }) : React.createElement("span", null, placeholder)), React.createElement(DropdownFluidLayout, null, open && React.createElement(DropdownFluidList, {
+ direction: direction
+ }, React.createElement(DropdownListUI, null, items.map((value, index) => {
+ const clickable = typeof value === 'string' ? true : typeof value.clickable === 'undefined' ? true : value.clickable;
+ const itemProps = {
+ clickable,
+ onClick: !clickable ? null : () => {
+ onSelect(value);
+ setOpen(false);
+ }
+ };
+ return React.createElement(DropdownFluidItem, Object.assign({
+ key: "dropdown-item-" + index
+ }, itemProps), typeof value !== 'string' && value.render ? React.createElement(value.render, {
+ value: value,
+ selected: item
+ }) : React.createElement(DropdownItemUI, {
+ clickable: true,
+ value: value,
+ selected: item
+ }));
+ })))));
+};
+Dropdown.defaultProps = {
+ direction: 'left',
+ selectable: true,
+ items: [],
+ dropdownInput: DropdownInput,
+ dropdownItem: DropdownItem,
+ dropdownList: DropdownList
+};
+
+var _templateObject$l;
+const DropdownIconItem = /*#__PURE__*/styled(_ref => {
+ let {
+ className,
+ value,
+ onClick
+ } = _ref;
+ const {
+ icon,
+ label
+ } = value;
+ return React.createElement("div", {
+ className: className,
+ onClick: onClick
+ }, React.createElement(Icon$w, {
+ name: icon,
+ size: "small"
+ }), label);
+})(_templateObject$l || (_templateObject$l = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n ", " {\n margin-right: 10px;\n }\n\n &:hover {\n color: #ee0099;\n\n ", " {\n path {\n color: #ee0099;\n fill: #ee0099;\n stroke: #ee0099;\n }\n }\n }\n"])), Icon$w, Icon$w);
+
+var _templateObject$m;
+const DropdownImageInput = /*#__PURE__*/styled(_ref => {
+ let {
+ className,
+ value
+ } = _ref;
+ const {
+ img,
+ label
+ } = value;
+ return React.createElement("div", {
+ className: className
+ }, React.createElement("img", {
+ src: img.src,
+ alt: img.alt
+ }), label);
+})(_templateObject$m || (_templateObject$m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-grow: 1;\n align-items: center;\n\n img {\n border-radius: 50px;\n width: 25px;\n height: 25px;\n margin-right: 10px;\n }\n"])));
+
+var _templateObject$n;
+const DropdownImageItem = /*#__PURE__*/styled(_ref => {
+ let {
+ className,
+ value
+ } = _ref;
+ const {
+ img,
+ label
+ } = value;
+ return React.createElement("div", {
+ className: className
+ }, React.createElement("img", {
+ src: img.src,
+ alt: img.alt
+ }), label);
+})(_templateObject$n || (_templateObject$n = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n img {\n width: 40px;\n height: 40px;\n margin-right: 10px;\n }\n ", "\n ", ", ", " {\n margin: 0;\n }\n"])), props => props.clickable && "\n &:hover {\n background-color: #c7c7c7;\n }\n ", Header.H4, Header.H5);
+
+var _templateObject$o;
+const Form = /*#__PURE__*/styled.form(_templateObject$o || (_templateObject$o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: ", ";\n"])), props => props.direction);
+Form.defaultProps = {
+ direction: 'column'
+};
+
+const ConnectedForm = _ref => {
+ let {
+ children,
+ onSubmit,
+ ...ownProps
+ } = _ref;
+ return React.createElement(Form$1, Object.assign({
+ onSubmit: onSubmit
+ }, ownProps), _ref2 => {
+ let {
+ handleSubmit,
+ ...formProps
+ } = _ref2;
+ return React.createElement(Form, {
+ onSubmit: handleSubmit
+ }, children(formProps));
+ });
+};
+
+var _templateObject$p;
+const handleColor = _ref => {
+ let {
+ color
+ } = _ref;
+ switch (color) {
+ case 'info':
+ return '#aaa';
+ case 'error':
+ return '#ff0931';
+ default:
+ return '#50e3c2';
+ }
+};
+const Hint = /*#__PURE__*/styled.span(_templateObject$p || (_templateObject$p = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-size: 11px;\n font-weight: 600;\n line-height: 1.36;\n letter-spacing: 0.4px;\n text-transform: uppercase;\n color: ", ";\n"])), props => props.theme.fontFamily, handleColor);
+Hint.defaultProps = {
+ theme,
+ color: 'info'
+};
+
+var _templateObject$q;
+const FormField = /*#__PURE__*/styled.div(_templateObject$q || (_templateObject$q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n display: flex;\n padding: 0 0 30px;\n\n flex-direction: ", ";\n ", "\n\n ", " {\n position: absolute;\n right: 0;\n }\n"])), props => props.direction, props => props.direction === 'row' && "\n align-items: flex-end;\n ", Hint);
+FormField.defaultProps = {
+ direction: 'column'
+};
+
+// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
+const InputField = props => {
+ const {
+ variant,
+ label,
+ name,
+ placeholder,
+ helpText,
+ type,
+ disabled,
+ onBlur,
+ ...config
+ } = props;
+ const {
+ input,
+ meta
+ } = useField(name, config);
+ return React.createElement(FormControl, {
+ isInvalid: (meta.error || meta.submitError) && meta.touched,
+ mb: 4
+ }, React.createElement(Flex, {
+ direction: "row",
+ justify: "space-between"
+ }, React.createElement(Stack, {
+ direction: "row",
+ spacing: 2,
+ align: "center"
+ }, React.createElement(FormLabel, null, label), helpText && React.createElement(Tooltip, {
+ label: helpText
+ }, React.createElement(InfoIcon, {
+ color: "gray.300",
+ boxSize: 3
+ }))), (meta.error || meta.submitError) && meta.touched && React.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError)), React.createElement(Input, {
+ variant: variant,
+ value: input.value,
+ onChange: input.onChange,
+ placeholder: placeholder,
+ type: type || input.type,
+ disabled: disabled,
+ onBlur: e => {
+ onBlur && onBlur(e);
+ input.onBlur(e);
+ }
+ }));
+};
+
+const SelectField = props => {
+ const {
+ label,
+ name,
+ disabled,
+ children,
+ ...config
+ } = props;
+ const {
+ input,
+ meta
+ } = useField(name, config);
+ return React.createElement(FormControl, {
+ isInvalid: (meta.error || meta.submitError) && meta.touched,
+ mb: 4
+ }, React.createElement(Flex, {
+ direction: "row",
+ justify: "space-between"
+ }, React.createElement(FormLabel, null, label), (meta.error || meta.submitError) && meta.touched && React.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError)), React.createElement(Select, Object.assign({
+ disabled: disabled
+ }, input), children));
+};
+
+var _templateObject$r;
+const Label = /*#__PURE__*/styled.label(_templateObject$r || (_templateObject$r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: ", ";\n font-weight: 600;\n font-size: 13px;\n line-height: 1.15;\n letter-spacing: 0.5px;\n color: ", ";\n text-transform: uppercase;\n"])), props => props.theme.fontFamily, props => props.theme.commons.main);
+Label.defaultProps = {
+ theme
+};
+
+// Validate for redux-form
+// https://redux-form.com/7.4.2/docs/api/field.md/#-code-validate-value-allvalues-props-name-gt-error-code-optional-
+const isEmail = message => value => {
+ // eslint-disable-next-line
+ const regexEmail = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
+ return !regexEmail.test(value) ? message : undefined;
+};
+const required = message => value => !value ? message : undefined;
+const min = (size, message) => value => value && value.length < size ? message : undefined;
+const max = (size, message) => value => value && value.length > size ? message : undefined;
+const composeValidators = function () {
+ for (var _len = arguments.length, validators = new Array(_len), _key = 0; _key < _len; _key++) {
+ validators[_key] = arguments[_key];
+ }
+ return value => validators.reduce((error, validator) => error || validator(value), undefined);
+};
+var Validators = {
+ isEmail,
+ required,
+ min,
+ max,
+ composeValidators
+};
+
+var _templateObject$s;
+const Textarea = /*#__PURE__*/styled.textarea(_templateObject$s || (_templateObject$s = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n font-family: ", ";\n font-size: 16px;\n color: #000000;\n border: none;\n border-bottom: 1px solid #AAAAAA;\n padding: 0 0 8px;\n flex: 1;\n background: none;\n min-height: 109px;\n\n &[disabled] {\n color: #D1CDD2;\n background: none;\n }\n\n &:focus {\n outline: none;\n border-bottom: 1px solid ", ";\n }\n\n &::placeholder {\n color: ", ";\n }\n &::-webkit-input-placeholder {\n color: ", ";\n }\n &::-moz-placeholder {\n color: ", ";\n }\n &:-ms-input-placeholder {\n color: ", ";\n }\n &:-moz-placeholder {\n color: ", ";\n }\n\n ", "\n"])), props => props.fullWidth && 'width: 100%;', theme.fontFamily, theme.brand.main, theme.commons.dark, theme.commons.dark, theme.commons.dark, theme.commons.dark, theme.commons.dark, props => props.invalid && "border-color: #ff0931;");
+Textarea.displayName = 'Textarea';
+
+// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
+const TextareaField = props => {
+ const {
+ label,
+ name,
+ placeholder,
+ disabled,
+ ...config
+ } = props;
+ const {
+ input,
+ meta
+ } = useField(name, config);
+ return React.createElement(FormField, null, React.createElement(Label, null, label), (meta.error || meta.submitError) && meta.touched && React.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError), React.createElement("div", {
+ style: {
+ display: 'flex',
+ paddingTop: '8px'
+ }
+ }, React.createElement(Textarea, Object.assign({
+ placeholder: placeholder,
+ invalid: (meta.error || meta.submitError) && meta.touched,
+ disabled: disabled
+ }, input))));
+};
+
+const RoundSelectField = _ref => {
+ let {
+ label,
+ name,
+ placeholder,
+ disabled,
+ options,
+ menuPortalTarget,
+ isClearable,
+ onChange,
+ maxMenuHeight = 300,
+ menuPlacement = 'bottom',
+ ...config
+ } = _ref;
+ const {
+ input,
+ meta
+ } = useField(name, config);
+ return React.createElement(FormField, null, label && React.createElement(Label, null, label), (meta.error || meta.submitError) && meta.touched && React.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError), React.createElement(RoundSelect, Object.assign({}, input, {
+ options: options,
+ placeholder: placeholder,
+ invalid: (meta.error || meta.submitError) && meta.touched,
+ disabled: disabled,
+ menuPortalTarget: menuPortalTarget,
+ isClearable: isClearable,
+ maxMenuHeight: maxMenuHeight,
+ menuPlacement: menuPlacement,
+ onChange: e => {
+ onChange && onChange(e);
+ input.onChange(e);
+ }
+ })));
+};
+
+var _templateObject$t, _templateObject2$8, _templateObject3$6, _templateObject4$5;
+const RoundInput = /*#__PURE__*/styled.input(_templateObject$t || (_templateObject$t = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 0 60px 0 15px;\n width: 100%;\n height: 40px;\n\n font-family: ", ";\n font-size: 14px;\n line-height: 22px;\n color: ", ";\n border: none;\n box-sizing: border-box;\n background-color: unset;\n\n &[disabled] {\n color: #d1cdd2;\n background: unset;\n }\n\n &::placeholder,\n &::-webkit-input-placeholder,\n &::-moz-placeholder,\n &:-ms-input-placeholder,\n &:-moz-placeholder {\n color: ", ";\n font-family: ", ";\n }\n\n ", "\n"])), props => props.theme.fontFamily, props => props.theme.commons.dark, props => props.theme.commons.dark, props => props.theme.fontFamily, _ref => {
+ let {
+ border,
+ value,
+ theme,
+ invalid
+ } = _ref;
+ return border && css(_templateObject2$8 || (_templateObject2$8 = _taggedTemplateLiteralLoose(["\n border: 1px solid;\n border-radius: 7px;\n ", "\n ", "\n "])), !value ? css(_templateObject3$6 || (_templateObject3$6 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), theme.commons.main, theme.commons.main) : css(_templateObject4$5 || (_templateObject4$5 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), theme.brand.main, theme.brand.main), invalid && "border-color: " + theme.error + ";");
+});
+RoundInput.defaultProps = {
+ invalid: false,
+ type: 'text',
+ theme
+};
+
+var _templateObject$u, _templateObject2$9, _templateObject3$7;
+const StyledFormField = /*#__PURE__*/styled(FormField)(_templateObject$u || (_templateObject$u = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border: 1px solid;\n border-radius: 7px;\n padding: 0;\n ", "\n\n ", "\n"])), props => !props.value ? css(_templateObject2$9 || (_templateObject2$9 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), props.theme.commons.main, props.theme.commons.main) : css(_templateObject3$7 || (_templateObject3$7 = _taggedTemplateLiteralLoose(["\n &:hover,\n &:focus {\n border-color: ", ";\n }\n border-color: ", ";\n "])), props.theme.brand.main, props.theme.brand.main), props => props.invalid && "\n border-color: " + props.theme.error + ";\n ");
+StyledFormField.defaultProps = {
+ theme
+};
+const RoundInputField = _ref => {
+ let {
+ name,
+ type,
+ label,
+ placeholder,
+ disabled,
+ onBlur,
+ ...config
+ } = _ref;
+ const {
+ input,
+ meta
+ } = useField(name, config);
+ return React.createElement(StyledFormField, {
+ value: input.value,
+ invalid: (meta.error || meta.submitError) && meta.touched
+ }, label && React.createElement(Label, null, label), (meta.error || meta.submitError) && meta.touched && React.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError), React.createElement(RoundInput, Object.assign({}, input, {
+ placeholder: placeholder,
+ type: type,
+ invalid: (meta.error || meta.submitError) && meta.touched,
+ disabled: disabled,
+ onBlur: e => {
+ onBlur && onBlur(e);
+ input.onBlur(e);
+ }
+ })));
+};
+
+var _templateObject$v;
+const Switch = _ref => {
+ let {
+ onClick,
+ checked,
+ disabled
+ } = _ref;
+ return React.createElement(Label$1, null, React.createElement("input", {
+ onClick: onClick,
+ type: "checkbox",
+ checked: checked,
+ disabled: disabled
+ }), React.createElement("span", {
+ className: "slider"
+ }));
+};
+const Label$1 = /*#__PURE__*/styled.label(_templateObject$v || (_templateObject$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n display: inline-block;\n width: 28px;\n min-width: 28px;\n height: 14px;\n border-radius: 50%;\n box-shadow: 3px 3px 10px 1px rgb(138 138 138 / 55%);\n\n input {\n opacity: 0;\n width: 0;\n height: 0;\n }\n\n .slider {\n position: absolute;\n cursor: pointer;\n border-radius: 34px;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background-color: #858585;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n .slider::before {\n position: absolute;\n content: '';\n height: 12px;\n width: 12px;\n border-radius: 50%;\n left: 1px;\n bottom: 1px;\n background-color: white;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n input:checked + .slider {\n background-color: #50e3c2;\n }\n\n input:checked + .slider::before {\n -webkit-transform: translateX(14px);\n -ms-transform: translateX(14px);\n transform: translateX(14px);\n }\n"])));
+
+var _templateObject$w;
+const SwitchField = props => {
+ const {
+ label,
+ name,
+ disabled,
+ textOff,
+ textOn,
+ ...config
+ } = props;
+ const {
+ input,
+ meta
+ } = useField(name, config);
+ return React.createElement(FormField, null, (meta.error || meta.submitError) && meta.touched && React.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError), React.createElement(Container, {
+ disabled: !input.value
+ }, label && React.createElement(Label, null, label), React.createElement("span", {
+ className: "text"
+ }, input.value ? textOn : textOff), React.createElement(Switch, {
+ disabled: disabled,
+ onClick: () => input.onChange(!input.value),
+ checked: input.value
+ })));
+};
+const Container = /*#__PURE__*/styled.div(_templateObject$w || (_templateObject$w = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n\n .text {\n font-size: '13px';\n font-weight: 800;\n margin-right: 8px;\n color: ", ";\n }\n"])), _ref => {
+ let {
+ disabled
+ } = _ref;
+ return disabled ? '#858585' : '#50E3C2';
+});
+
+// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
+const RadioField = _ref => {
+ let {
+ children,
+ label,
+ name,
+ direction
+ } = _ref;
+ const {
+ input,
+ meta
+ } = useField(name);
+ return React.createElement(FormControl, {
+ isInvalid: (meta.error || meta.submitError) && meta.touched,
+ mb: 4
+ }, React.createElement(Flex, {
+ direction: "row",
+ justify: "space-between"
+ }, React.createElement(FormLabel, null, label), (meta.error || meta.submitError) && meta.touched && React.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError)), React.createElement(RadioGroup, {
+ onChange: input.onChange,
+ value: input.value
+ }, React.createElement(Stack, {
+ direction: direction,
+ spacing: 4
+ }, children)));
+};
+RadioField.defaultProps = {
+ direction: 'row'
+};
+
+const S3UploadFileField = _ref => {
+ let {
+ children,
+ onChange,
+ signingUrl,
+ disabled
+ } = _ref;
+ const inputRef = React.useRef(null);
+ // Override callbacks
+ const onProgress = args => {
+ console.log('onProgress', {
+ args
+ });
+ };
+ const onError = args => {
+ console.log('onError', {
+ args
+ });
+ };
+ const onFinish = _ref2 => {
+ let {
+ signedUrl
+ } = _ref2;
+ const imageUrl = signedUrl.substring(0, signedUrl.indexOf('?'));
+ console.log('onFinish', {
+ imageUrl
+ });
+ onChange(imageUrl);
+ };
+ // Button should be ReactS3Uploader active.
+ const onClick = evt => {
+ evt === null || evt === void 0 ? void 0 : evt.preventDefault();
+ inputRef === null || inputRef === void 0 ? void 0 : inputRef.current.click();
+ };
+ return React.createElement("div", {
+ className: "wrapper-upload-file-button"
+ }, React.createElement("button", {
+ onClick: onClick,
+ disabled: disabled
+ }, children), React.createElement(ReactS3Uploader, {
+ signingUrl: signingUrl,
+ accept: "image/*",
+ onProgress: onProgress,
+ onError: onError,
+ onFinish: onFinish,
+ inputRef: inputRef,
+ style: {
+ display: 'none'
+ }
+ }));
+};
+// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
+const S3UploadField = props => {
+ const {
+ label,
+ helpText,
+ name,
+ disabled,
+ alt,
+ signingUrl,
+ uploadImageIcon: UploadImageIconComponent,
+ removeTextButton,
+ borderRadius,
+ boxSize,
+ ...config
+ } = props;
+ const {
+ input
+ } = useField(name, config);
+ return React.createElement(Stack, {
+ direction: "row",
+ spacing: 6,
+ mb: 4,
+ align: "center"
+ }, React.createElement(S3UploadFileField, {
+ onChange: input.onChange,
+ disabled: disabled,
+ signingUrl: signingUrl
+ }, input.value ? React.createElement(Box, {
+ position: "relative",
+ boxSize: boxSize,
+ borderRadius: borderRadius
+ }, React.createElement(Image, {
+ alt: alt,
+ src: input.value
+ }), React.createElement(Box, {
+ position: "absolute",
+ bottom: "3px",
+ right: "0"
+ }, React.createElement(EditIcon, {
+ color: "white",
+ boxSize: 6
+ }))) : React.createElement(UploadImageIconComponent, {
+ boxSize: boxSize
+ })), React.createElement(FormControl, {
+ id: name + "-id"
+ }, React.createElement(FormLabel, null, label), helpText && React.createElement(FormHelperText, {
+ mt: 3,
+ color: "gray.400",
+ fontSize: "md"
+ }, helpText), props.formData && React.createElement(Button, {
+ type: "button",
+ variant: "link",
+ fontWeight: "normal",
+ colorScheme: "gray",
+ onClick: () => props.onChange(null)
+ }, removeTextButton)));
+};
+S3UploadField.defaultProps = {
+ uploadImageIcon: UploadImageIcon,
+ removeTextButton: 'Remover',
+ borderRadius: '50%',
+ boxSize: '85px'
+};
+
+// interface ColorFieldProps extends {
+// name: string
+// label?: string
+// helpText?: string
+// }
+const ColorField = props => {
+ const {
+ // variant,
+ label,
+ name,
+ // placeholder,
+ helpText,
+ // type,
+ // disabled,
+ // onBlur,
+ ...config
+ } = props;
+ const {
+ input,
+ meta
+ } = useField(name, config);
+ return React.createElement(FormControl, {
+ isInvalid: (meta.error || meta.submitError) && meta.touched,
+ mb: 4
+ }, React.createElement(Flex, {
+ direction: "row",
+ justify: "space-between"
+ }, React.createElement(Stack, {
+ direction: "row",
+ spacing: 2,
+ align: "center"
+ }, React.createElement(FormLabel, null, label), helpText && React.createElement(Tooltip, {
+ label: helpText
+ }, React.createElement(InfoIcon, {
+ boxSize: 4
+ }))), (meta.error || meta.submitError) && meta.touched && React.createElement(Hint, {
+ color: "error"
+ }, meta.error || meta.submitError)), React.createElement(SketchPicker, {
+ color: input.value,
+ onChangeComplete: color => input.onChange(color.hex)
+ }));
+};
+
+var _templateObject$x;
+const Navigation = /*#__PURE__*/styled.div(_templateObject$x || (_templateObject$x = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n height: 40px;\n background-color: ", ";\n align-items: flex-end;\n\n & > a {\n color: inherit;\n text-decoration: none;\n }\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.brand.dark;
+});
+Navigation.defaultProps = {
+ theme
+};
+
+const Tab = _ref => {
+ let {
+ children,
+ active,
+ onClick
+ } = _ref;
+ const {
+ colorMode
+ } = useColorMode();
+ const defaultColor = colorMode === 'dark' ? 'white' : 'black';
+ const defaultStylesProps = {
+ color: defaultColor
+ };
+ if (!active && colorMode === 'light') {
+ defaultStylesProps.color = 'black';
+ defaultStylesProps._hover = {
+ color: 'gray.400'
+ };
+ }
+ if (!active && colorMode === 'dark') {
+ defaultStylesProps.color = 'white';
+ defaultStylesProps._hover = {
+ color: 'gray.200'
+ };
+ }
+ if (active) {
+ defaultStylesProps.color = 'pink.200';
+ defaultStylesProps._hover = {
+ color: 'pink.200',
+ borderBottomColor: 'pink.200'
+ };
+ defaultStylesProps.borderBottomWidth = '2px';
+ defaultStylesProps.borderBottomStyle = 'solid';
+ defaultStylesProps.borderBottomColor = 'pink.200';
+ }
+ return React.createElement(Button, Object.assign({
+ variant: "link",
+ colorScheme: "white",
+ onClick: onClick,
+ px: 0,
+ pb: 2,
+ mr: 5
+ }, defaultStylesProps), children);
+};
+
+var _templateObject$y;
+const StyledContainer = /*#__PURE__*/styled(ToastContainer)(_templateObject$y || (_templateObject$y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n .Toastify__toast {\n font-family: Nunito Sans;\n font-size: 16px;\n color: #fff;\n\n padding: 15px 18px;\n }\n .Toastify__toast--success {\n background-color: #50e3c2;\n }\n"])));
+
+const Icon$x = () => {
+ return React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "18",
+ height: "18",
+ fill: "none",
+ viewBox: "0 0 18 18"
+ }, React.createElement("g", {
+ clipPath: "url(#clip0)"
+ }, React.createElement("path", {
+ fill: "#fff",
+ d: "M13.034 17.965l-1.914-.002c-2.408 0-4.133-.209-5.43-.657-.276-.097-.517-.204-.73-.299-.377-.167-.674-.3-.983-.3H2.72c-.381 0-.932-.04-1.321-.392-.417-.376-.465-.922-.465-1.3V9.277c0-.526.162-.971.469-1.286.22-.226.628-.496 1.317-.496l.111.001c.393.004 1.04.011 1.458-.351l.073-.136c.015-.03.029-.054.04-.073l.01-.02a.856.856 0 01.104-.182 6.17 6.17 0 01.692-.957c.482-.526.928-.798 1.322-1.038.463-.282.797-.486 1.088-1.053l.02-.04c.436-.847.616-1.197.725-1.618.037-.143.053-.293.048-.446C8.37.988 8.665.077 9.643-.032l.029-.003h.03c.594 0 1.092.14 1.48.418.576.412.868 1.082.868 1.992 0 1.622-.397 2.92-.74 3.737l4.081.511c.978.057 1.733.94 1.688 1.982a2.104 2.104 0 01-.602 1.399c.33.323.505.76.486 1.264-.006.505-.161.908-.46 1.199-.117.112-.246.199-.383.266.232.306.357.678.357 1.072 0 .537-.204 1.028-.574 1.38a1.93 1.93 0 01-1.114.516c.065.18.095.375.087.58-.001.083-.009.234-.02.306a1.343 1.343 0 01-.402.787c-.407.386-.898.59-1.42.59zM2.72 8.55c-.511 0-.73.217-.73.728v5.737c0 .188.02.431.118.519.049.044.194.119.612.119h1.257c.534 0 .96.19 1.413.391.204.09.415.184.648.266 1.164.402 2.827.599 5.082.599l1.915.001c.248 0 .481-.1.691-.3.027-.026.063-.06.085-.188.003-.031.007-.11.008-.143V16.243c.01-.205-.092-.356-.3-.449a.625.625 0 01.307-1.196l.71.06a.879.879 0 00.637-.235.83.83 0 00.247-.618c0-.338-.247-.722-.79-.764a.575.575 0 01-.525-.636.57.57 0 01.58-.503c.324.006.867.016 1.08-.191.035-.034.139-.134.141-.461v-.018c.02-.465-.35-.647-.666-.718a.54.54 0 01-.42-.57.54.54 0 01.511-.492c.361-.018.672-.418.692-.892.02-.47-.294-.866-.701-.884l-.043-.004-4.156-.52a1.006 1.006 0 01-.753-.5 1.002 1.002 0 01-.054-.902 8.77 8.77 0 00.678-3.375c0-1.18-.666-1.35-1.26-1.355-.116.018-.175.07-.22.19a.88.88 0 00-.048.308v.017c.01.258-.017.513-.08.757-.139.534-.348.942-.808 1.836l-.02.04c-.426.83-.96 1.156-1.477 1.47-.35.214-.713.435-1.094.851-.174.19-.392.495-.58.814l-.034.053c-.02.046-.041.08-.055.105l-.012.021-.011.022c-.032.06-.07.129-.105.2l-.039.075-.06.06c-.729.728-1.77.717-2.271.712l-.1-.001zm11.093 7.863a.096.096 0 010 .002v-.002zm0-.002v.002-.002zm.007-.123v.004-.004zm.89-4.299h.001zm.675-1.484z"
+ })), React.createElement("defs", null, React.createElement("clipPath", {
+ id: "clip0"
+ }, React.createElement("path", {
+ fill: "#fff",
+ d: "M0 0H18V18H0z"
+ }))));
+};
+Icon$x.displayName = 'SuccessIcon';
+
+var _templateObject$z;
+const Message$1 = /*#__PURE__*/styled.div(_templateObject$z || (_templateObject$z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n\n svg {\n margin-right: 18px;\n }\n"])));
+const Success = _ref => {
+ let {
+ message
+ } = _ref;
+ return React.createElement(Message$1, null, React.createElement(Icon$x, null), React.createElement("span", null, message));
+};
+
+var _templateObject$A;
+const Body = /*#__PURE__*/styled.div(_templateObject$A || (_templateObject$A = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n padding: 0 ", "px;\n overflow: hidden;\n /* background-color: ", "; */\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.body.padding;
+}, props => props.theme.body);
+Body.defaultProps = {
+ theme
+};
+
+var _templateObject$B;
+const Footer = /*#__PURE__*/styled(_ref => {
+ let {
+ className,
+ children
+ } = _ref;
+ return React.createElement("div", {
+ className: className
+ }, React.createElement(Bonde, null), children);
+})(_templateObject$B || (_templateObject$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n background-color: ", ";\n padding: 20px ", "px;\n"])), _ref2 => {
+ let {
+ theme
+ } = _ref2;
+ return theme.body.background.dark;
+}, _ref3 => {
+ let {
+ theme
+ } = _ref3;
+ return theme.body.padding;
+});
+Footer.defaultProps = {
+ theme
+};
+
+var _templateObject$C;
+const Main$1 = /*#__PURE__*/styled.div(_templateObject$C || (_templateObject$C = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n min-height: 100vh;\n min-width: 100%;\n background-color: ", ";\n font-family: ", ";\n"])), _ref => {
+ let {
+ theme
+ } = _ref;
+ return theme.body.background.main;
+}, _ref2 => {
+ let {
+ theme
+ } = _ref2;
+ return theme.fontFamily;
+});
+Main$1.defaultProps = {
+ theme
+};
+
+var _templateObject$D;
+// Reset link to keep BondeSVG render
+const HomeLink = /*#__PURE__*/styled.a(_templateObject$D || (_templateObject$D = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: #000;\n text-decoration: none;\n\n &:hover {\n color: #000;\n text-decoration: none;\n }\n"])));
+const Navbar = _ref => {
+ let {
+ brand,
+ children,
+ indexRoute,
+ fixed = false
+ } = _ref;
+ return React.createElement(Flex, {
+ position: fixed ? 'fixed' : 'relative',
+ direction: "row",
+ w: "100%",
+ bg: "black",
+ px: [6, null, null, 12],
+ py: 4,
+ alignItems: "center"
+ }, React.createElement(HomeLink, {
+ href: indexRoute,
+ title: "Bonde Home Link"
+ }, brand !== 'small' ? React.createElement(Bonde, null) : React.createElement(Icon$w, {
+ name: "Bonde"
+ })), children);
+};
+
+const dropdownContext = /*#__PURE__*/createContext({
+ isOpen: false,
+ onToggle: () => {}
+});
+const PerformDropdownList = _ref => {
+ let {
+ children,
+ scroll
+ } = _ref;
+ const {
+ isOpen
+ } = useContext(dropdownContext);
+ const boxProps = {
+ minWidth: '200px',
+ maxWidth: '400px',
+ bg: 'white',
+ boxShadow: 'base',
+ mt: 10
+ };
+ if (scroll) {
+ boxProps.overflowY = 'scroll';
+ boxProps.height = '500px';
+ }
+ return React.createElement(Fade, {
+ in: isOpen,
+ style: {
+ position: 'absolute',
+ top: isOpen ? '0' : '-1000px',
+ zIndex: 2
+ }
+ }, React.createElement(Box, Object.assign({}, boxProps), children));
+};
+const PerformDropdownItem = _ref2 => {
+ let {
+ children,
+ onClick
+ } = _ref2;
+ const {
+ onToggle
+ } = useContext(dropdownContext);
+ return React.createElement(Box, {
+ cursor: "pointer",
+ onClick: () => {
+ if (onClick) onClick();
+ onToggle();
+ },
+ _hover: {
+ bg: 'gray.100'
+ }
+ }, children);
+};
+const PerformDropdownButton = _ref3 => {
+ let {
+ children,
+ color,
+ ...props
+ } = _ref3;
+ const {
+ isOpen,
+ onToggle
+ } = useContext(dropdownContext);
+ const buttonProps = {
+ ...props,
+ zIndex: 3,
+ rightIcon: isOpen ? React.createElement(ArrowUpIcon, {
+ boxSize: 3
+ }) : React.createElement(ArrowDownIcon, {
+ boxSize: 3
+ }),
+ onClick: onToggle
+ };
+ if (color) {
+ buttonProps.color = color;
+ buttonProps['_hover'] = {
+ color
+ };
+ buttonProps['_active'] = {
+ color
+ };
+ }
+ return React.createElement(Button, Object.assign({}, buttonProps), children);
+};
+const PerformDropdown = _ref4 => {
+ let {
+ children
+ } = _ref4;
+ const wrapperRef = useRef();
+ const [isOpen, setIsOpen] = useState(false);
+ useOutsideClick({
+ ref: wrapperRef,
+ handler: () => setIsOpen(false)
+ });
+ return React.createElement(dropdownContext.Provider, {
+ value: {
+ isOpen,
+ onToggle: () => setIsOpen(!isOpen)
+ }
+ }, React.createElement(Box, {
+ ref: wrapperRef,
+ position: "relative",
+ display: "flex"
+ }, children));
+};
+
+const items = {
+ settings: [SettingsIcon, 'Configurações'],
+ mobilization: [PagesIcon, 'Mobilizações'],
+ redes: [NetIcon, 'Redes'],
+ chatbot: [BotIcon, 'Chatbot']
+};
+const CommunityMenu = _ref => {
+ let {
+ community,
+ session,
+ inverted
+ } = _ref;
+ const {
+ apps: config,
+ updateSession
+ } = session;
+ const {
+ modules
+ } = community;
+ const handleClick = url => function () {
+ try {
+ updateSession('community', community).then(() => {
+ window.location.href = url;
+ });
+ return Promise.resolve();
+ } catch (e) {
+ return Promise.reject(e);
+ }
+ };
+ return React.createElement(Stack, {
+ direction: "row",
+ spacing: 2
+ }, Object.keys(modules).filter(key => !!modules[key]).map((key, index) => {
+ let moduleHost = '';
+ let baseHost = '';
+ try {
+ moduleHost = new URL('', config[key]).host;
+ baseHost = new URL('', window.location.href).host;
+ } catch (err) {
+ console.log('error URL', err);
+ }
+ const hoverColor = color => ({
+ color: color + ".200"
+ });
+ const isActive = moduleHost === baseHost;
+ const IconComponent = items[key][0];
+ const colorSystem = inverted ? {
+ color: isActive ? 'pink.200' : 'white',
+ _hover: isActive ? hoverColor('pink') : hoverColor('gray')
+ } : {
+ color: 'gray.400',
+ _hover: hoverColor('gray')
+ };
+ return React.createElement(IconButton, {
+ "aria-label": items[key][1],
+ key: "community-navigation-" + index,
+ variant: "link",
+ colorScheme: "gray",
+ title: items[key][1],
+ icon: React.createElement(IconComponent, Object.assign({}, colorSystem, {
+ boxSize: [0, 0, 4, 4]
+ })),
+ onClick: handleClick(config[key])
+ });
+ }));
+};
+
+const CommunitiesDropdown = _ref => {
+ let {
+ session,
+ isMobile
+ } = _ref;
+ const {
+ communities,
+ community,
+ updateSession
+ } = session;
+ return React.createElement(Stack, {
+ direction: "row",
+ spacing: 2
+ }, React.createElement(PerformDropdown, null, React.createElement(PerformDropdownButton, {
+ variant: "link",
+ color: "white"
+ }, community ? React.createElement(Stack, {
+ direction: "row",
+ spacing: 4,
+ alignItems: "center"
+ }, React.createElement(Image, {
+ boxSize: 6,
+ rounded: "50%",
+ src: (community === null || community === void 0 ? void 0 : community.image) || "https://via.placeholder.com/100?text=" + community.name.substring(0, 1)
+ }), React.createElement(Text$2, {
+ color: "white",
+ fontSize: "sm",
+ fontWeight: "extrabold",
+ textTransform: "uppercase"
+ }, community === null || community === void 0 ? void 0 : community.name)) : 'Selecione uma comunidade'), React.createElement(PerformDropdownList, {
+ scroll: communities.length > 10
+ }, communities.map(c => React.createElement(PerformDropdownItem, {
+ key: c.id,
+ onClick: () => {
+ updateSession('community', c);
+ }
+ }, React.createElement(Stack, {
+ direction: "row",
+ spacing: 4,
+ p: 4
+ }, React.createElement(Image, {
+ boxSize: 8,
+ rounded: "50%",
+ src: c.image || "https://via.placeholder.com/100?text=" + c.name.substring(0, 1)
+ }), React.createElement(Text$2, null, c.name)))))), community && !isMobile && React.createElement(CommunityMenu, {
+ community: community,
+ session: session,
+ inverted: true
+ }));
+};
+
+const UserDropdown = _ref => {
+ let {
+ session
+ } = _ref;
+ const {
+ currentUser: user,
+ logout
+ } = session;
+ const name = user.firstName + " " + user.lastName;
+ const title = React.createElement(Stack, {
+ spacing: 1
+ }, React.createElement(Heading, {
+ as: "h3",
+ size: "md"
+ }, name), React.createElement(Text$2, {
+ fontSize: "md",
+ color: "gray.200"
+ }, user.email));
+ return React.createElement(Menu$1, {
+ variant: "link",
+ colorScheme: "pink"
+ }, _ref2 => {
+ let {
+ isOpen
+ } = _ref2;
+ return React.createElement(React.Fragment, null, React.createElement(MenuButton, {
+ "aria-label": "User Menu",
+ as: Button,
+ variant: "dropdown",
+ color: "white",
+ rightIcon: isOpen ? React.createElement(ArrowUpIcon, {
+ boxSize: 3
+ }) : React.createElement(ArrowDownIcon, {
+ boxSize: 3
+ })
+ }, name), React.createElement(MenuList, {
+ zIndex: "3"
+ }, React.createElement(MenuGroup, {
+ title: title
+ }, React.createElement(MenuItem, {
+ onClick: logout,
+ icon: React.createElement(CloseIcon, {
+ boxSize: 3
+ })
+ }, "Logout"))));
+ });
+};
+
+const Logout = _ref => {
+ let {
+ session
+ } = _ref;
+ return React.createElement(Button, {
+ type: "button",
+ variant: "ghost",
+ onClick: session.logout
+ }, React.createElement("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "24",
+ height: "24",
+ fill: "none",
+ viewBox: "0 0 24 24"
+ }, React.createElement("path", {
+ fill: "#fff",
+ d: "M16.484 17.563a.745.745 0 00.54.223c.204 0 .39-.074.539-.223l5.023-5.023a.493.493 0 00.093-.112s.019-.019.019-.037c.018-.037.037-.075.056-.093 0-.019 0-.037.018-.037.019-.038.019-.056.038-.093.018-.056.018-.094.018-.15 0-.055 0-.092-.018-.148a.142.142 0 00-.038-.093c0-.019 0-.037-.018-.037l-.056-.112s0-.019-.019-.019c-.018-.037-.056-.074-.093-.111l-5.023-5.024a.763.763 0 00-1.08 1.08l3.722 3.72H6.977a.754.754 0 00-.763.763c0 .428.335.763.763.763h13.228l-3.721 3.721c-.298.26-.298.744 0 1.042z"
+ }), React.createElement("path", {
+ fill: "#fff",
+ d: "M1.954 22.79H12a.754.754 0 00.763-.762V14.53a.754.754 0 00-.763-.763.754.754 0 00-.763.763v6.735h-8.52V2.716h8.52v6.735c0 .428.335.763.763.763a.754.754 0 00.763-.763V1.953A.754.754 0 0012 1.191H1.954a.754.754 0 00-.763.762v20.075c.019.428.353.763.763.763z"
+ })));
+};
+
+var _templateObject$E;
+const Content = /*#__PURE__*/styled$1.div(_templateObject$E || (_templateObject$E = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-grow: 1;\n background-color: ", ";\n\n ", "\n"])), props => props.bgColor, props => props.isMobile && "\n padding-top: 65px;\n overflow-y: auto;\n ");
+const FooterTool = _ref => {
+ let {
+ languageTool: LanguageTool
+ } = _ref;
+ return LanguageTool ? React.createElement(Footer, null, React.createElement(LanguageTool, null)) : React.createElement(Footer, null);
+};
+const BaseUI = _ref2 => {
+ let {
+ children,
+ bgColor,
+ disableNavigation,
+ indexRoute,
+ isMobile,
+ session,
+ languageTool: LanguageTool
+ } = _ref2;
+ return React.createElement(Main$1, null, React.createElement(Navbar, {
+ fixed: isMobile,
+ indexRoute: indexRoute,
+ brand: disableNavigation ? 'default' : 'small'
+ }, React.createElement(Flex, {
+ direction: "row",
+ grow: 1,
+ justify: "space-between"
+ }, disableNavigation ? React.createElement("div", null) : React.createElement(CommunitiesDropdown, {
+ session: session
+ }), isMobile ? React.createElement(Logout, {
+ session: session
+ }) : React.createElement(UserDropdown, {
+ session: session
+ }))), React.createElement(Content, {
+ isMobile: !!isMobile,
+ bgColor: bgColor || 'rgb(247,247,247)'
+ }, children), !isMobile ? React.createElement(FooterTool, {
+ languageTool: LanguageTool
+ }) : null);
+};
+BaseUI.defaultProps = {
+ disableNavigation: false
+};
+
+export { Modal as BModal, Table as BTable, Body, Bonde, Card, CleanButton, ColorField, CommunityMenu, ConnectedForm, Dropdown, DropdownIconItem, DropdownImageInput, DropdownImageItem, Empty, FontsLoader, Footer, Form, FormField, Header, Hint, Icon$w as Icon, InputField, Label, Link, Loading, Main$1 as Main, Message, Navbar, Navigation, Pagination, PerformDropdown, PerformDropdownButton, PerformDropdownItem, PerformDropdownList, RadioField, RoundInput, RoundInputField, RoundSelect, RoundSelectField, S3UploadField, SelectField, BaseUI as SessionUI, Shortcut, Spacing, Spinner, Success, SwitchField, Tab, Textarea, TextareaField, theme as Theme, StyledContainer as ToastContainer, Validators };
+//# sourceMappingURL=index.js.map
diff --git a/clients/libs/components/__dist/esm/index.js.map b/clients/libs/components/__dist/esm/index.js.map
new file mode 100644
index 0000000000..ace7d79943
--- /dev/null
+++ b/clients/libs/components/__dist/esm/index.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.js","sources":["../../src/FontsLoader.tsx","../../src/ui/await/Sparkles.tsx","../../src/ui/await/LoadingSVG.tsx","../../src/ui/base/theme.ts","../../src/ui/content/Header.tsx","../../src/ui/await/Loading.tsx","../../src/ui/await/Spinner.tsx","../../src/ui/content/Bonde.tsx","../../src/ui/content/Empty.tsx","../../src/ui/content/Icon/SVGIcons/ArrowDown.tsx","../../src/ui/content/Icon/SVGIcons/ArrowLeft.tsx","../../src/ui/content/Icon/SVGIcons/ArrowRight.tsx","../../src/ui/content/Icon/SVGIcons/ArrowUp.tsx","../../src/ui/content/Icon/SVGIcons/Bonde.tsx","../../src/ui/content/Icon/SVGIcons/Bolt.tsx","../../src/ui/content/Icon/SVGIcons/BoltUnfilled.tsx","../../src/ui/content/Icon/SVGIcons/Bot.tsx","../../src/ui/content/Icon/SVGIcons/Check.tsx","../../src/ui/content/Icon/SVGIcons/Close.tsx","../../src/ui/content/Icon/SVGIcons/Cloud.tsx","../../src/ui/content/Icon/SVGIcons/Copy.tsx","../../src/ui/content/Icon/SVGIcons/Info.tsx","../../src/ui/content/Icon/SVGIcons/InfoMsg.tsx","../../src/ui/content/Icon/SVGIcons/Network.tsx","../../src/ui/content/Icon/SVGIcons/New.tsx","../../src/ui/content/Icon/SVGIcons/Pencil.tsx","../../src/ui/content/Icon/SVGIcons/Plus.tsx","../../src/ui/content/Icon/SVGIcons/Search.tsx","../../src/ui/content/Icon/SVGIcons/Settings.tsx","../../src/ui/content/Icon/SVGIcons/Trash.tsx","../../src/ui/content/Icon/SVGIcons/Ticket.tsx","../../src/ui/content/Icon/SVGIcons/TicketRecurring.tsx","../../src/ui/content/Icon/SVGIcons/User.tsx","../../src/ui/content/Icon/SVGIcons/Window.tsx","../../src/ui/content/Icon/SVGIcons/MapMarker.tsx","../../src/ui/content/Icon/SVGIcons/Heart.tsx","../../src/ui/content/Icon/SVGIcons/Warning.tsx","../../src/ui/content/Icon/SVGIcons/Whatsapp.tsx","../../src/ui/content/Icon/SVGIcons/Eye.tsx","../../src/ui/content/Icon/SVGIcons/Open.tsx","../../src/ui/content/Icon/SVGIcons/Sync.tsx","../../src/ui/content/Icon/index.tsx","../../src/ui/content/Link.tsx","../../src/ui/content/CleanButton.tsx","../../src/ui/content/Shortcut.tsx","../../src/ui/content/Modal.tsx","../../src/ui/form/RoundSelect.tsx","../../src/ui/content/Pagination.tsx","../../src/ui/content/Table.tsx","../../src/ui/layout/Spacing.tsx","../../src/ui/content/Card.tsx","../../src/ui/content/Tooltip/index.tsx","../../src/ui/dropdown/ui/DropdownList.tsx","../../src/ui/dropdown/ui/DropdownItem.tsx","../../src/ui/dropdown/ui/DropdownInput.tsx","../../src/ui/dropdown/Dropdown.tsx","../../src/ui/dropdown/DropdownIconItem.tsx","../../src/ui/dropdown/DropdownImageInput.tsx","../../src/ui/dropdown/DropdownImageItem.tsx","../../src/ui/form/Form.tsx","../../src/ui/form/ConnectedForm.tsx","../../src/ui/form/Hint.tsx","../../src/ui/form/FormField.tsx","../../src/ui/form/InputField.tsx","../../src/ui/form/SelectField.tsx","../../src/ui/form/Label.tsx","../../src/ui/form/Validators.ts","../../src/ui/form/Textarea.tsx","../../src/ui/form/TextareaField.tsx","../../src/ui/form/RoundSelectField.tsx","../../src/ui/form/RoundInput.tsx","../../src/ui/form/RoundInputField.tsx","../../src/ui/form/Switch.tsx","../../src/ui/form/SwitchField.tsx","../../src/ui/form/RadioField.tsx","../../src/ui/form/S3UploadField.tsx","../../src/ui/form/ColorField.tsx","../../src/ui/navigation/Navigation.tsx","../../src/ui/navigation/Tab.tsx","../../src/ui/notifications/StyledContainer.tsx","../../src/ui/notifications/Icons/SuccessIcon.tsx","../../src/ui/notifications/Success.tsx","../../src/ui/page/Body.tsx","../../src/ui/page/Footer.tsx","../../src/ui/page/Main.tsx","../../src/ui/page/Navbar.tsx","../../src/ui/perform-dropdown/index.tsx","../../src/session/CommunityMenu.tsx","../../src/session/CommunitiesDropdown.tsx","../../src/session/UserDropdown.tsx","../../src/session/Logout.tsx","../../src/session/BaseUI.tsx"],"sourcesContent":["import React from 'react';\nimport GoogleFontLoader from 'react-google-font-loader';\n\nconst FontsLoader = (): React.ReactElement => (\n \n);\n\nexport default FontsLoader;\n","import React from 'react';\nimport styled, { keyframes } from 'styled-components';\n\ninterface SparkProps {\n colorInit: string;\n d: string;\n duration: string;\n pulse: any;\n}\n\nconst Spark = styled.path`\n fill: ${props => props.colorInit};\n animation-name: ${props => props.pulse};\n animation-duration: ${props => props.duration};\n animation-iteration-count: infinite;\n`;\n\ninterface SparklesProps {\n color: string;\n colorInit: string;\n duration: string;\n}\n\nconst Sparkles: React.FC = ({ color, colorInit, duration }) => {\n return (\n \n \n \n \n \n \n \n );\n};\n\nSparkles.defaultProps = {\n colorInit: '#DBDBDB',\n color: '#35E3C3',\n duration: '6s',\n};\n\nexport default Sparkles;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Sparkles from './Sparkles';\n\nexport interface LoadingSVGProps {\n size?: 'small' | 'default' | 'large';\n color?: string;\n sparklesColor?: string;\n sparklesColorInit?: string;\n sparklesDuration?: string;\n}\n\n/**\n * Animated loading transition component.\n */\nconst LoadingSVG = styled(props => {\n const {\n className,\n color,\n sparklesColor,\n sparklesColorInit,\n sparklesDuration,\n } = props;\n\n return (\n \n \n \n \n \n );\n})`\n ${props =>\n props.size === 'small' &&\n `\n width: calc(0.5*176px);\n height: calc(0.5*135px);\n `}\n ${props =>\n props.size === 'default' &&\n `\n width: calc(0.75*176px);\n height: calc(0.75*135px);\n `}\n ${props =>\n props.size === 'large' &&\n `\n width: calc(1*176px);\n height: calc(1*135px);\n `}\n`;\n\nLoadingSVG.defaultProps = {\n color: '#050505',\n size: 'default',\n sparklesColor: '#35E3C3',\n sparklesColorInit: '#DBDBDB',\n sparklesDuration: '6s',\n};\n\nexport default LoadingSVG;\n","const theme = {\n brand: {\n main: '#ee0099',\n dark: '#000',\n light: '#fff',\n },\n commons: {\n dark: '#4A4A4A',\n main: '#aaa',\n light: '#eee',\n },\n fontFamily: \"'Nunito Sans', sans-serif\",\n body: {\n padding: 60,\n background: {\n light: '#fff',\n main: 'rgb(247,247,247)',\n dark: '#000',\n },\n },\n default: {\n color: {\n main: '#fff',\n },\n border: {\n main: '#ee0099',\n },\n background: {\n main: '#ee0099',\n hover: '#e2058a',\n focus: '#b4006c',\n },\n },\n dark: {\n color: {\n main: '#000',\n hover: '#4A4A4A',\n focus: '#9b9b9b',\n },\n border: {\n main: '#000',\n hover: '#4A4A4A',\n focus: '#9b9b9b',\n },\n background: {\n main: 'none',\n },\n },\n light: {\n color: {\n main: '#fff',\n hover: '#9b9b9b',\n focus: '#4A4A4A',\n },\n border: {\n main: '#fff',\n hover: '#eee',\n focus: '#4A4A4A',\n },\n background: {\n main: 'none',\n },\n },\n secondary: {\n color: {\n main: '#000',\n hover: '#424242',\n focus: '#9B9B9B',\n },\n border: {\n main: 'transparent',\n hover: 'transparent',\n focus: 'transparent',\n },\n background: {\n main: 'none',\n },\n disabled: {\n color: {\n main: '#AAAAAA',\n hover: '#AAAAAA',\n focus: '#AAAAAA',\n },\n background: {\n main: 'none',\n },\n },\n },\n error: '#FF2B4E',\n};\n\nexport default theme;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nexport interface TextProps {\n align?: 'left' | 'center' | 'right';\n bold?: boolean;\n uppercase?: boolean;\n}\n\n/**\n * The only true paragraph.\n */\nconst Text = styled.p`\n font-family: ${props => props.theme.fontFamily};\n font-size: 16px;\n font-weight: ${props => (props.bold ? 'bold' : 'normal')};\n line-height: 25px;\n color: ${props => props.theme.commons.dark};\n text-align: ${props => props.align};\n letter-spacing: normal;\n\n ${props => props.uppercase && 'text-transform: uppercase;'}\n`;\n\nText.defaultProps = {\n theme,\n align: 'left',\n uppercase: false,\n bold: false,\n};\n\nText.displayName = 'Text';\n\nconst annotate = (Component: any) => {\n Component.defaultProps = {\n theme,\n };\n\n return Component;\n};\n\nexport default {\n H1: annotate(styled(Text.withComponent('h1'))`\n font-size: 60px;\n font-weight: 900;\n line-height: 1;\n color: #000;\n `),\n H2: annotate(styled(Text.withComponent('h2'))`\n font-size: 36px;\n font-weight: 900;\n line-height: 1.22;\n color: #000;\n `),\n H3: annotate(styled(Text.withComponent('h3'))`\n font-size: 21px;\n font-weight: 800;\n line-height: 0.95;\n margin-bottom: 12px;\n color: #000;\n `),\n H4: annotate(styled(Text.withComponent('h4'))`\n font-size: 18px;\n font-weight: 800;\n line-height: 1.39;\n margin-bottom: 5px;\n color: #000;\n `),\n H5: annotate(styled(Text.withComponent('h5'))`\n font-size: 13px;\n line-height: 18px;\n color: #424242;\n letter-spacing: 0.005em;\n font-weight: 800;\n `),\n H6: annotate(styled(Text.withComponent('h6'))`\n font-size: 11px;\n line-height: 2.27;\n color: #424242;\n `),\n};\n","import React from 'react';\nimport styled from 'styled-components';\nimport LoadingSVG, { LoadingSVGProps } from './LoadingSVG';\nimport Header from '../content/Header';\n\ninterface FullSizeProps {\n background?: string;\n}\n\nconst FullSize = styled.div`\n position: absolute;\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100vh;\n align-items: center;\n justify-content: center;\n background: ${props => props.background};\n`;\n\ninterface LoadingProps extends LoadingSVGProps {\n fullsize?: boolean;\n background?: string;\n message?: string;\n messageComponent?: any;\n align?: 'center' | 'left' | 'right';\n}\n\ntype LoadingStylesProps = Pick;\n\nconst LoadingStyles = styled.div`\n text-align: ${props => props.align};\n`;\n\ninterface LoadingProps {\n align?: 'center' | 'left' | 'right';\n fullsize?: boolean;\n background?: string;\n message?: string;\n messageComponent?: any;\n}\n\n/**\n * Animated loading transition component.\n */\nconst Loading: React.FC = ({\n children,\n align,\n fullsize,\n background,\n message,\n messageComponent: MessageComponent,\n ...props\n}) => {\n return fullsize ? (\n \n \n {message ? {message} : children}\n \n ) : (\n \n \n {message ? {message} : children}\n \n );\n};\n\nLoading.defaultProps = {\n align: 'center',\n fullsize: false,\n background: 'rgba(219,219,219,0.31)',\n color: '#050505',\n size: 'default',\n sparklesColor: '#35E3C3',\n sparklesColorInit: '#DBDBDB',\n sparklesDuration: '6s',\n messageComponent: Header.H3,\n};\n\nexport default Loading;\n","import React from 'react';\nimport styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Ring = styled.div<{ theme: any }>`\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n & div {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 64px;\n height: 64px;\n margin: 8px;\n border: 8px solid ${({ theme }) => theme.commons.light};\n border-radius: 50%;\n animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: ${({ theme }) => theme.commons.light} transparent transparent\n transparent;\n }\n & div:nth-child(1) {\n animation-delay: -0.45s;\n }\n & div:nth-child(2) {\n animation-delay: -0.3s;\n }\n & div:nth-child(3) {\n animation-delay: -0.15s;\n }\n @keyframes lds-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n`;\n\nconst Spinner = ({ theme }: any) => {\n return (\n \n
\n
\n
\n
\n \n );\n};\n\nSpinner.defaultProps = {\n theme,\n};\n\nexport default Spinner;\n","import React from 'react';\nimport styled from 'styled-components';\n\ninterface BondeProps {\n large?: boolean;\n}\n\nconst Bonde = styled(({ className, large }: any) => (\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n)) `\n display: flex;\n ${props =>\n !props.large &&\n `\n height: calc(1.5 * 15px);\n `}\n`;\n\nBonde.defaultProps = {\n large: false,\n};\n\nexport default Bonde;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Header from './Header';\n\nconst EmptyIcon = () => {\n return (\n \n \n \n \n \n \n );\n};\n\nconst EmptyWrap = styled.div`\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n align-items: center;\n justify-content: center;\n\n ${Header.H4} {\n margin-top: 15px;\n font-weight: normal;\n }\n`;\n\ninterface EmptyProps {\n message?: string;\n}\n\nconst Empty: React.FC = ({ message }) => (\n \n \n {message && {message} }\n \n);\n\nexport default Empty;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowDown';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowLeft';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowRight';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.ArrowUp';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className, color }: any) => (\n \n \n \n \n \n \n \n \n \n \n \n {/* avoid this type of code, this is the type of component that we should discuss if it is in the right place. */}\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Bonde';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Bolt';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.BoltUnfilled';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Bot';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => {\n return (\n \n \n \n );\n};\n\nIcon.displayName = 'Icon.Check';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Times';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Cloud';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon: React.FC = ({ className }: any) => {\n return (\n \n \n \n );\n};\n\nIcon.displayName = 'Icon.Copy';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Info';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n \n \n \n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.InfoMsg';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Network';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.New';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Pencil';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Plus';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Search';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Settings';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Trash';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Ticket';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.TicketRecurring';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.User';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Window';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.MapMarker';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Heart';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon: React.FC = ({ className }: any) => {\n return (\n \n \n \n \n \n \n \n \n \n \n \n );\n};\n\nIcon.displayName = 'Icon.Warning';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n);\n\nIcon.displayName = 'Icon.Eye';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n);\n\nIcon.displayName = 'Icon.Show';\n\nexport default Icon;\n","import React from 'react';\n\nconst Icon = ({ className }: any) => (\n \n \n \n \n \n \n \n);\n\nIcon.displayName = 'Icon.Open';\n\nexport default Icon;\n","import React from 'react';\n\nfunction Icon({ className }: any) {\n return (\n \n \n \n \n \n \n \n \n \n \n );\n}\n\nIcon.displayName = 'Icon.Sync';\n\nexport default Icon;\n","import React from 'react';\nimport styled from 'styled-components';\nimport * as SVGIcons from './SVGIcons';\n\ninterface IconProps {\n className?: string;\n size?: 'default' | 'small' | 'large' | 'xs';\n name: keyof typeof SVGIcons;\n color?: string;\n}\n\nconst IconController: React.FC = ({ name, ...props }) => {\n const IconSVG = SVGIcons[name];\n if (IconSVG) return ;\n else return ;\n};\n\nconst Icon = styled(IconController)`\n vertical-align: middle;\n ${props =>\n props.size === 'xs' &&\n `\n width: calc(0.75*20px);\n height: calc(0.75*15px);\n `}\n ${props =>\n props.size === 'small' &&\n `\n width: calc(1*20px);\n height: calc(1*15px);\n `}\n ${props =>\n props.size === 'default' &&\n `\n width: calc(1.5*20px);\n height: calc(1.5*15px);\n `}\n ${props =>\n props.size === 'large' &&\n `\n width: calc(2*20px);\n height: calc(2*15px);\n `}\n\n &.fill {\n path {\n fill: ${props => props.color};\n }\n }\n &.stroke {\n path {\n stroke: ${props => props.color};\n }\n }\n`;\n\nIcon.defaultProps = {\n size: 'default',\n color: '#000',\n};\n\nexport default Icon;\n","import React from 'react';\nimport styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Link = styled((props: any) => {\n const { component: Component, className, ...ownProps } = props;\n return ;\n})`\n font-family: ${props => props.theme.fontFamily};\n font-weight: 600;\n font-size: 13px;\n text-transform: uppercase;\n text-decoration: none;\n color: ${props => props.theme.dark.color.main};\n cursor: pointer;\n\n &:hover,\n &:active {\n color: ${props => props.theme.dark.color.hover};\n text-decoration: underline;\n }\n &:focus {\n color: ${props => props.theme.dark.color.focus};\n }\n`;\n\nLink.defaultProps = {\n theme,\n component: 'a',\n};\n\nexport default Link;\n","import styled from 'styled-components';\n\nconst CleanButton = styled.button`\n border: none;\n margin: 0;\n padding: 0;\n width: auto;\n overflow: visible;\n\n background: transparent;\n\n /* inherit font & color from ancestor */\n color: inherit;\n font: inherit;\n\n /* Normalize 'line-height'. Cannot be changed from 'normal' in Firefox 4+. */\n line-height: normal;\n\n /* Corrects font smoothing for webkit */\n -webkit-font-smoothing: inherit;\n -moz-osx-font-smoothing: inherit;\n\n /* Corrects inability to style clickable 'input' types in iOS */\n -webkit-appearance: none;\n\n /* Remove excess padding and border in Firefox 4+ */\n &::-moz-focus-inner {\n border: 0;\n padding: 0;\n }\n`;\n\nCleanButton.displayName = 'CleanButton';\n\nexport default CleanButton;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Header from './Header';\nimport CleanButton from './CleanButton';\nimport theme from '../base/theme';\n\nconst Wrapper = styled(CleanButton)<{ theme: any }>`\n width: 200px;\n height: 90px;\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 5px;\n cursor: pointer;\n background-color: ${({ theme }) => theme.brand.light};\n padding: 0px 20px;\n\n display: grid;\n grid-template-columns: auto auto;\n align-items: center;\n justify-content: center;\n grid-column-gap: 20px;\n`;\n\nconst Text = styled(Header.H5)<{ theme: any }>`\n text-transform: uppercase;\n margin: 0;\n text-align: left;\n color: ${({ theme }) => theme.brand.dark};\n`;\n\nconst Shortcut = ({\n icon,\n text,\n theme,\n}: {\n icon: React.ReactElement;\n text: string;\n theme: any;\n}) => (\n \n {icon}\n {text} \n \n);\n\nShortcut.defaultProps = {\n theme,\n};\n\nexport default Shortcut;\n","import React from 'react';\nimport styled from 'styled-components';\nimport theme from '../base/theme';\nimport CleanButton from './CleanButton';\n\ntype ModalProps = {\n isOpen?: boolean;\n};\n\nconst ModalStyled = styled.div`\n display: ${props =>\n !props.isOpen ? 'none' : 'block'}; /* Hidden by default */\n position: fixed; /* Stay in place */\n z-index: 1; /* Sit on top */\n left: 0;\n top: 0;\n width: 100%; /* Full width */\n height: 100%; /* Full height */\n overflow: auto; /* Enable scroll if needed */\n background-color: rgb(0, 0, 0); /* Fallback color */\n background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */\n z-index: 3;\n`;\n\ntype ModalContent = {\n width: string;\n theme: any;\n height?: string;\n};\n\nconst ModalContentStyled = styled.div`\n background-color: ${props => props.theme.brand.light};\n box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);\n border-radius: 4px;\n padding: 30px;\n width: ${props => props.width};\n height: ${props => (props.height ? `${props.height}` : 'auto')};\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n`;\n\nconst CloseButtonStyled = styled(CleanButton)`\n color: ${props => props.theme.commons.main};\n font-size: 28px;\n font-weight: bold;\n float: right;\n &:hover,\n &:focus {\n color: ${props => props.theme.brand.dark};\n text-decoration: none;\n cursor: pointer;\n }\n`;\n\ntype Props = {\n /** Flag used to control modal open and close */\n isOpen?: boolean;\n /** Width of modal content in percent (%) */\n width: string;\n height?: string;\n /** Function used when closing modal */\n onClose: () => void;\n children: React.ReactNode;\n};\n\nconst Modal = ({ children, isOpen, onClose, width }: Props) => (\n \n \n \n ×\n \n {children}\n \n \n);\n\nModal.defaultProps = {\n isOpen: false,\n width: 300,\n};\n\n/** @component */\nexport default Modal;\n","import React, { useState } from 'react';\nimport styled, { css } from 'styled-components';\nimport ReactSelect, { components } from 'react-select';\n\nimport theme from '../base/theme';\nimport Icon from '../content/Icon';\n\nconst SelectIcon = styled.div<{ show: boolean }>`\n transition: all 350ms;\n\n ${props =>\n props.show &&\n css`\n transform: rotate(180deg);\n position: relative;\n top: 2px;\n `}\n`;\n\nconst StyledControl = styled.div<{\n value: string;\n theme: any;\n invalid: boolean;\n}>`\n & > .Select__control {\n // Sets clear button color dinamically\n & > .Select__indicators > .Select__clear-indicator {\n color: ${props => props.theme.brand.main};\n }\n background-color: unset;\n ${props =>\n !props.value\n ? css`\n &:hover,\n &:focus {\n border-color: ${props.theme.commons.main};\n }\n border-color: ${props.theme.commons.main};\n `\n : css`\n &:hover,\n &:focus {\n border-color: ${props.theme.brand.main};\n }\n border-color: ${props.theme.brand.main};\n `}\n ${props =>\n props.invalid &&\n css`\n &:hover,\n &:focus {\n border-color: ${props.theme.error};\n }\n border-color: ${props.theme.error};\n `}\n box-shadow: none;\n width: 100%;\n & > .Select__value-container {\n & > .Select__placeholder {\n font-family: ${props => props.theme.fontFamily};\n color: ${props => props.theme.commons.dark};\n }\n }\n }\n`;\n\nStyledControl.defaultProps = {\n theme,\n};\n\nconst StyledSingleValue = styled.div<{\n isDisabled: boolean;\n theme: any;\n value: string;\n}>`\n & > .Select__single-value {\n opacity: ${props => (props.isDisabled ? 0.5 : 1)};\n transition: opacity 300ms;\n font-family: ${props => props.theme.fontFamily};\n color: ${props =>\n !props.value ? props.theme.commons.main : props.theme.brand.main};\n }\n`;\n\nStyledSingleValue.defaultProps = {\n theme,\n};\n\nconst StyledOption = styled.div<{\n theme: any;\n isSelected: boolean;\n isFocused: boolean;\n isDisabled: boolean;\n}>`\n & > .Select__option {\n font-family: ${props => props.theme.fontFamily};\n cursor: ${props => (props.isDisabled ? 'not-allowed' : 'default')};\n ${props =>\n props.isSelected &&\n css`\n background-color: rgba(74, 74, 74, 0.5);\n &:active {\n backgroundcolor: rgba(74, 74, 74, 0.5);\n }\n `}\n ${props =>\n props.isFocused &&\n css`\n background-color: rgba(74, 74, 74, 0.3);\n `}\n ${props =>\n props.isDisabled &&\n css`\n color: #ccc;\n `}\n color: ${props =>\n props.isSelected ? props.theme.brand.light : props.theme.commons.dark};\n }\n`;\n\nconst StyledMenu = styled.div`\n & > .Select__menu {\n z-index: 3;\n }\n`;\n\nStyledOption.defaultProps = {\n theme,\n};\n\nconst SingleValue = (props: any) => (\n \n \n \n);\n\nconst DropdownIndicator = (props: any) => {\n const color = !props.selectProps.value\n ? theme.commons.main\n : theme.brand.main;\n return (\n \n \n \n \n \n );\n};\n\nconst Control = (props: any) => (\n \n \n \n);\n\nconst Option = (props: any) => (\n \n \n \n);\n\nconst Menu = (props: any) => {\n return (\n \n {props.children} \n \n );\n};\n\ntype Props = {\n options: Array<{\n value: unknown;\n label: string | number;\n }>;\n value: {\n value: unknown;\n label: string | number;\n };\n onChange: (event: any) => void;\n placeholder?: string;\n invalid?: boolean;\n disabled?: boolean;\n menuPortalTarget?: HTMLBodyElement | null;\n isClearable?: boolean;\n maxMenuHeight?: number;\n menuPlacement?: 'auto' | 'top' | 'bottom';\n};\n\nconst RoundSelect = ({ ...props }: Props) => {\n const [show, toggle] = useState(false);\n return (\n null,\n Control,\n SingleValue,\n Option,\n Menu,\n }}\n onMenuOpen={() => toggle(true)}\n onMenuClose={() => toggle(false)}\n onInputChange={() => toggle(false)}\n show={show}\n classNamePrefix={'Select'}\n />\n );\n};\n\nRoundSelect.defaultProps = {\n theme,\n menuHeight: 300,\n};\n\nRoundSelect.displayName = 'RoundSelect';\n\nexport default RoundSelect;\n","import React, { useState, useEffect } from 'react';\nimport styled from 'styled-components';\nimport { Stack, Button } from '@chakra-ui/react';\nimport RoundSelect from '../form/RoundSelect';\nimport theme from '../base/theme';\n\ntype Props = {\n goToPage: (arg: number) => void;\n pageIndex: number;\n pageSize: number;\n setPageSize: (arg: number) => void;\n totalPages: number;\n showMorePlacement?: 'auto' | 'top' | 'bottom';\n};\n\nconst WrapSelect = styled.div<{ theme: any }>`\n width: 150px;\n & .Select__control {\n border-color: ${({ theme }) => theme.brand.dark};\n &:hover {\n border-color: ${({ theme }) => theme.commons.dark};\n }\n &:focus {\n border-color: ${({ theme }) => theme.dark.border.focus};\n }\n }\n & .Select__single-value {\n color: ${({ theme }) => theme.brand.dark};\n &:hover {\n color: ${({ theme }) => theme.commons.dark};\n }\n &:focus {\n color: ${({ theme }) => theme.dark.border.focus};\n }\n }\n .Select__indicators svg path {\n fill: ${({ theme }) => theme.brand.dark};\n &:hover {\n fill: ${({ theme }) => theme.commons.dark};\n }\n &:focus {\n fill: ${({ theme }) => theme.dark.border.focus};\n }\n }\n`;\n\nWrapSelect.defaultProps = {\n theme,\n};\n\nconst getItems = (page: number, totalPages: number) => {\n let startPage: number, endPage: number;\n if (totalPages <= 10) {\n // less than 10 total pages so show all\n startPage = 1;\n endPage = totalPages;\n } else {\n // more than 10 total pages so calculate start and end pages\n if (page <= 6) {\n startPage = 1;\n endPage = 10;\n } else if (page + 4 >= totalPages) {\n startPage = totalPages - 9;\n endPage = totalPages;\n } else {\n startPage = page - 5;\n endPage = page + 4;\n }\n }\n\n // create an array of pages to ng-repeat in the pager control\n return Array.from(Array(endPage + 1 - startPage), (_, i) => startPage + i);\n};\n\nconst Pagination = ({\n goToPage,\n pageIndex,\n pageSize,\n totalPages,\n setPageSize,\n showMorePlacement,\n}: Props): React.ReactElement => {\n const [items, setItems] = useState([]);\n\n useEffect(() => {\n setItems(getItems(pageIndex, totalPages));\n }, [pageIndex, totalPages]);\n\n const setPage = (page: number) => {\n const items = getItems(page, totalPages);\n setItems(items);\n return goToPage(page);\n };\n\n return (\n \n setPage(0)}\n disabled={pageIndex === 0}\n >\n {'<<'}\n {' '}\n setPage(pageIndex - 1)}\n disabled={pageIndex === 0}\n >\n anterior\n {' '}\n \n {items.map((item: number, i: number) => (\n setPage(item - 1)}\n >\n {item}\n \n ))}\n \n setPage(pageIndex + 1)}\n disabled={pageIndex === totalPages - 1}\n >\n próxima\n {' '}\n setPage(totalPages - 1)}\n disabled={pageIndex === totalPages - 1}\n >\n {'>>'}\n {' '}\n \n setPageSize(Number(e.value))}\n menuPortalTarget={document.querySelector('body')}\n menuPlacement={showMorePlacement}\n />\n \n \n );\n};\n\nexport default Pagination;\n","/* eslint-disable react/jsx-key */\nimport React from 'react';\nimport { useTable, useSortBy, useFlexLayout } from 'react-table';\nimport { Stack } from '@chakra-ui/react';\nimport styled, { css } from 'styled-components';\n\nimport Pagination from './Pagination';\nimport Icon from './Icon';\nimport theme from '../base/theme';\n\ninterface Columns {\n accessor?: string;\n Header: any;\n Cell?: (arg0: any) => string | React.ReactElement | null;\n className?: string;\n bold?: boolean;\n show?: boolean;\n Column?: any;\n columns?: Array;\n minWidth?: number;\n width?: number;\n collapse?: boolean;\n}\n\nconst StyledTh = styled.th<{ theme: any; backgroundColor: string }>`\n font-family: ${props => props.theme.fontFamily};\n font-size: 13px;\n font-weight: 600;\n line-height: 18px;\n text-transform: uppercase;\n color: #a4a4a4;\n text-align: left;\n border-bottom: 1px solid #e5e5e5;\n cursor: pointer;\n height: 40px;\n\n display: flex;\n align-items: center;\n\n /* Sticky */\n position: sticky !important;\n top: 0;\n background-color: ${props => props.backgroundColor};\n\n &.hide {\n display: none;\n }\n`;\n\nconst StyledTd = styled.td<{ theme: any; bold?: boolean; hide?: boolean }>`\n font-family: ${props => props.theme.fontFamily};\n font-size: 16px;\n font-weight: ${props => (props.bold ? 'bold' : 'normal')};\n line-height: 22px;\n color: ${props => props.theme.commons.dark};\n letter-spacing: normal;\n word-break: break-word;\n min-height: 60px;\n\n margin: 0;\n border-bottom: 1px solid #e5e5e5;\n\n display: flex;\n align-items: center;\n\n &.hide {\n display: none;\n }\n`;\n\nconst StyledTr = styled.tr`\n :last-child {\n td {\n border-bottom: 0;\n }\n }\n border-bottom: 1px solid #e5e5e5;\n`;\n\nconst StyledTable = styled.table<{ backgroundColor: string; sticky: string }>`\n border-spacing: 0;\n border: 1px solid #e5e5e5;\n background-color: ${props => props.backgroundColor};\n width: 100%;\n\n thead {\n /* These styles are required for a scrollable body to align with the header properly */\n overflow-y: auto;\n overflow-x: hidden;\n }\n\n tbody {\n /* These styles are required for a scrollable table body */\n overflow-y: scroll;\n overflow-x: hidden;\n height: 250px;\n }\n\n th,\n td {\n margin: 0;\n padding-left: 20px;\n\n /* In this example we use an absolutely position resizer,\n so this is required. */\n position: relative;\n\n :last-child {\n border-right: 0;\n }\n }\n\n ${({ sticky }) =>\n sticky === 'end' &&\n css`\n .sticky {\n right: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-left: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-left: 1px solid #e5e5e5;\n padding-left: 0;\n }\n }\n `}\n\n ${({ sticky }) =>\n sticky === 'start' &&\n css`\n .sticky {\n left: 0;\n }\n tr:nth-child(2) {\n th:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n tr {\n td:last-child {\n border-right: 1px solid #e5e5e5;\n }\n }\n `}\n\n .sticky {\n position: sticky !important;\n top: 0;\n z-index: 1;\n background-color: ${props => props.backgroundColor};\n }\n`;\n\nconst Main = styled.div`\n /* These styles are suggested for the table fill all available space in its containing element */\n display: block;\n /* These styles are required for a horizontaly scrollable table overflow */\n overflow: auto;\n`;\n\ntype Props = {\n columns: Array;\n data: Array;\n backgroundColor: string;\n sticky?: 'end' | 'start';\n pagination?: {\n totalPages: number;\n goToPage: (page: number) => void;\n setPageSize: (arg0: number) => void;\n pageIndex: number;\n pageSize: number;\n };\n};\n\nfunction Table({\n columns,\n data,\n backgroundColor,\n sticky,\n pagination,\n}: Props): React.ReactElement {\n const defaultColumn = React.useMemo(\n () => ({\n // When using the useFlexLayout:\n minWidth: 30, // minWidth is only used as a limit for resizing\n width: 150, // width is used for both the flex-basis and flex-grow\n maxWidth: 300, // maxWidth is only used as a limit for resizing\n }),\n []\n );\n\n const {\n getTableProps,\n getTableBodyProps,\n headerGroups,\n rows,\n prepareRow,\n } = useTable(\n {\n columns,\n data,\n defaultColumn,\n },\n useSortBy,\n useFlexLayout\n );\n\n // Render the UI for your table\n return (\n \n \n \n \n {headerGroups.map(headerGroup => (\n \n {headerGroup.headers.map((column: any) => (\n \n \n {column.render('Header')}\n \n {column.isSorted ? (\n column.isSortedDesc ? (\n \n ) : (\n \n )\n ) : (\n ''\n )}\n \n
\n \n ))}\n \n ))}\n \n \n {rows.map(row => {\n prepareRow(row);\n return (\n \n {row.cells.map((cell: any) => (\n \n {cell.render('Cell')}\n \n ))}\n \n );\n })}\n \n \n \n {pagination && (\n \n )}\n \n );\n}\n\nTable.defaultProps = {\n backgroundColor: '#fff',\n};\n\nexport default Table;\n","import styled from 'styled-components';\nimport React from 'react';\n\ntype Props = {\n /** The margin property. */\n margin: {\n x?: number;\n y?: number;\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n /** The padding property. */\n padding: {\n x?: number;\n y?: number;\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n children: any;\n};\n\ntype SpacingProps = {\n margin: {\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n padding: {\n top?: number;\n bottom?: number;\n left?: number;\n right?: number;\n };\n};\n\nconst SpacingStyled = styled.div`\n ${({ margin }) => margin.top && `margin-top: ${margin.top}px;`}\n ${({ margin }) => margin.bottom && `margin-bottom: ${margin.bottom}px;`}\n ${({ margin }) => margin.left && `margin-left: ${margin.left}px;`}\n ${({ margin }) => margin.right && `margin-right: ${margin.right}px;`}\n ${({ padding }) => padding.top && `padding-top: ${padding.top}px;`}\n ${({ padding }) => padding.bottom && `padding-bottom: ${padding.bottom}px;`}\n ${({ padding }) => padding.left && `padding-left: ${padding.left}px;`}\n ${({ padding }) => padding.right && `padding-right: ${padding.right}px;`}\n`;\n\n/**\n * The only true Spacing component.\n */\nconst Spacing = ({\n margin,\n padding,\n ...ownProps\n}: Props): React.ReactElement => {\n const { x: marginX, y: marginY } = margin;\n const { x: paddingX, y: paddingY } = padding;\n return (\n \n );\n};\n\nSpacing.displayName = 'Spacing';\n\nSpacing.defaultProps = {\n margin: {},\n padding: {},\n};\n\n/** @component */\nexport default Spacing;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Spacing from '../layout/Spacing';\n\ntype Props = {\n margin?: Record;\n padding?: Record;\n height?: string;\n onClick?: () => void;\n border?: string;\n width?: string;\n rounded?: string;\n children: any;\n};\n\ntype CardProps = Omit;\n\nconst CardStyled = styled.div`\n position: relative;\n border-radius: ${props => props.rounded || '1px'};\n background-color: #ffffff;\n box-shadow: 2px 1px 14px 11px rgba(0, 0, 0, 0.04);\n width: ${props => props.width || '100%'};\n display: block;\n ${({ height }) => height && `height: ${height};`}\n ${({ onClick }) => onClick && `cursor: pointer;`}\n ${({ border }) => border && `border: ${border};`}\n`;\n\nconst Card = ({\n margin,\n padding,\n children,\n ...rest\n}: Props): React.ReactElement => (\n \n \n {children} \n \n \n);\n\nCard.defaultProps = {\n margin: {\n top: 0,\n bottom: 0,\n left: 0,\n right: 0,\n },\n padding: {\n top: 0,\n bottom: 0,\n left: 0,\n right: 0,\n },\n};\n\nCard.displayName = 'Card';\n\n/** @component */\nexport default Card;\n","import React, { useState } from 'react';\nimport styled from 'styled-components';\nimport TooltipIcon from './TooltipIcon';\n\nexport const Message = styled.span`\n font-family: Nunito Sans;\n position: absolute;\n background-color: #424242;\n padding: 23px 16px;\n width: 250px;\n font-size: 13px;\n text-transform: none;\n color: #fff;\n right: -200px;\n top: 25px;\n line-height: 17.73px;\n z-index: 1;\n\n p {\n margin-bottom: 5px;\n }\n`;\n\ntype Props = {\n className?: string;\n label?: string | any;\n info: string | any;\n};\n\nconst Tooltip = styled(({ label, info, className }: Props) => {\n const [visible, setVisible] = useState(false);\n\n return (\n \n {label}\n
setVisible(true)}\n onMouseOut={() => setVisible(false)}\n >\n \n {visible && {info} }\n
\n
\n );\n})`\n display: flex;\n flex-direction: row;\n\n svg {\n margin-left: 10px;\n cursor: pointer;\n }\n`;\n\nexport default Tooltip;\n","import styled from 'styled-components';\n\nconst DropdownList = styled.div`\n background-color: #fff;\n padding: 20px 0;\n white-space: nowrap;\n overflow-y: auto;\n box-shadow: 0 3px 7px rgba(0, 0, 0, 0.45), 0 2px 2px rgba(0, 0, 0, 0.45);\n max-height: calc(100vh - 30px - 40px);\n`;\n\nexport default DropdownList;\n","import React from 'react';\nimport styled from 'styled-components';\n\nconst DropdownItem = styled(({ className, value }) => (\n {value}
\n))`\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n &:hover {\n color: #ee0099;\n }\n`;\n\nexport default DropdownItem;\n","import React from 'react';\n\ninterface DropdownInputProps {\n value: string;\n}\n\nconst DropdownInput: React.FC = ({ value }) => (\n {value} \n);\n\nexport default DropdownInput;\n","import React, { useRef, useEffect, useState } from 'react';\nimport styled from 'styled-components';\nimport DropdownList from './ui/DropdownList';\nimport DropdownItem from './ui/DropdownItem';\nimport DropdownInput from './ui/DropdownInput';\nimport Icon from '../content/Icon';\nimport theme from '../base/theme';\n\nconst useOutsideAlerter = (ref: any, onEvent: any) => {\n const handleClickOutside = (event: any) => {\n if (ref.current && !ref.current.contains(event.target)) {\n onEvent();\n }\n };\n\n useEffect(() => {\n document.addEventListener('mousedown', handleClickOutside);\n return () => {\n document.removeEventListener('mousedown', handleClickOutside);\n };\n });\n};\n\nexport const DropdownFluid = styled.div`\n display: flex;\n flex-direction: column;\n font-family: ${props => props.theme.fontFamily};\n`;\n\nDropdownFluid.defaultProps = {\n theme,\n};\n\ninterface DropdownFluidListProps {\n direction?: 'left' | 'right';\n}\n\nconst DropdownFluidList = styled.div`\n position: absolute;\n top: calc(100% + 15px);\n display: flex;\n flex-direction: column;\n z-index: 3;\n ${props =>\n props.direction === 'left' &&\n `\n left: 0;\n `}\n ${props =>\n props.direction === 'right' &&\n `\n right: 0;\n `}\n`;\n\nconst DropdownFluidInput = styled(({ children, className, onToggle, open }: any) => (\n \n {children}\n \n
\n))`\n display: flex;\n z-index: 2;\n cursor: pointer;\n flex-direction: row;\n align-items: center;\n color: #fff;\n font-weight: bold;\n font-size: 13px;\n text-transform: uppercase;\n\n ${Icon} {\n margin-left: 10px;\n }\n`;\n\ninterface DropdownFluidItemProps {\n clickable?: boolean;\n onClick?: any;\n}\n\nconst DropdownFluidItem = styled.div`\n display: flex;\n ${props => props.clickable && `cursor: pointer;`}\n`;\n\nconst DropdownFluidLayout = styled.div`\n position: relative;\n`;\n\ninterface DropdownProps {\n placeholder?: string;\n item?: any;\n items: any[];\n selectable?: boolean;\n onSelect: Function;\n dropdownInput?: any;\n dropdownItem?: any;\n dropdownList?: any;\n direction?: 'left' | 'right';\n}\n\nconst Dropdown: React.FC = ({\n placeholder,\n item,\n items,\n selectable,\n onSelect,\n direction,\n dropdownInput: DropdownInputUI,\n dropdownItem: DropdownItemUI,\n dropdownList: DropdownListUI,\n}) => {\n const [open, setOpen] = useState(false);\n // click ousite dropdown is close\n const dropdownRef = useRef(null);\n useOutsideAlerter(dropdownRef, () => setOpen(false));\n\n return (\n \n setOpen(!open)}>\n {!item ? (\n {placeholder} \n ) : selectable && !!item ? (\n \n ) : (\n {placeholder} \n )}\n \n \n {open && (\n \n \n {items.map((value, index) => {\n const clickable =\n typeof value === 'string'\n ? true\n : typeof value.clickable === 'undefined'\n ? true\n : value.clickable;\n\n const itemProps = {\n clickable,\n onClick: !clickable\n ? null\n : () => {\n onSelect(value);\n setOpen(false);\n },\n };\n\n return (\n \n {typeof value !== 'string' && value.render ? (\n \n ) : (\n \n )}\n \n );\n })}\n \n \n )}\n \n \n );\n};\n\nDropdown.defaultProps = {\n direction: 'left',\n selectable: true,\n items: [],\n dropdownInput: DropdownInput,\n dropdownItem: DropdownItem,\n dropdownList: DropdownList,\n};\n\nexport default Dropdown;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Icon from '../content/Icon';\n\nconst DropdownIconItem = styled(({ className, value, onClick }: any) => {\n const { icon, label } = value;\n\n return (\n \n \n {label}\n
\n );\n})`\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n ${Icon} {\n margin-right: 10px;\n }\n\n &:hover {\n color: #ee0099;\n\n ${Icon} {\n path {\n color: #ee0099;\n fill: #ee0099;\n stroke: #ee0099;\n }\n }\n }\n`;\n\nexport default DropdownIconItem;\n","import React from 'react';\nimport styled from 'styled-components';\n\ninterface Img {\n src: string;\n alt?: string;\n}\n\ninterface Value {\n img: Img;\n label: string;\n}\n\ninterface DropdownImageInputProps {\n value: Value;\n placeholder: string;\n clickable?: boolean;\n}\n\nconst DropdownImageInput = styled(({ className, value }: any) => {\n const { img, label } = value;\n return (\n \n
\n {label}\n
\n );\n}) `\n display: flex;\n flex-grow: 1;\n align-items: center;\n\n img {\n border-radius: 50px;\n width: 25px;\n height: 25px;\n margin-right: 10px;\n }\n`;\n\nexport default DropdownImageInput;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Header from '../content/Header';\n\ninterface Img {\n src: string;\n alt?: string;\n}\n\ninterface Value {\n img: Img;\n label: string;\n}\n\ninterface DropdownImageItemProps {\n value: Value;\n placeholder: string;\n clickable?: boolean;\n}\n\nconst DropdownImageItem = styled(({ className, value }: any) => {\n const { img, label } = value;\n return (\n \n
\n {label}\n
\n );\n}) `\n display: flex;\n padding: 10px 25px;\n flex-grow: 1;\n align-items: center;\n\n img {\n width: 40px;\n height: 40px;\n margin-right: 10px;\n }\n ${props =>\n props.clickable &&\n `\n &:hover {\n background-color: #c7c7c7;\n }\n `}\n ${Header.H4}, ${Header.H5} {\n margin: 0;\n }\n`;\n\nexport default DropdownImageItem;\n","import styled from 'styled-components';\n\ninterface FormProps {\n direction?: 'row' | 'column';\n}\n\nconst Form = styled.form`\n display: flex;\n flex-direction: ${props => props.direction};\n`;\n\nForm.defaultProps = {\n direction: 'column',\n};\n\nexport default Form;\n","import React from 'react';\nimport { Form as FinalForm } from 'react-final-form';\n// eslint-disable-next-line prettier/prettier\nimport type { FormProps } from 'react-final-form';\nimport Form from './Form';\n\ninterface ConnectedFormProps extends FormProps {\n children(formProps: any): any;\n onSubmit(values: any): any;\n}\n\nconst ConnectedForm: React.FC = ({\n children,\n onSubmit,\n ...ownProps\n}) => (\n \n {({ handleSubmit, ...formProps }) => (\n \n )}\n \n);\n\nexport default ConnectedForm;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\ninterface HintProps {\n color?: 'error' | 'warning' | 'info';\n}\n\nconst handleColor = ({ color }: HintProps) => {\n switch (color) {\n case 'info':\n return '#aaa';\n case 'error':\n return '#ff0931';\n default:\n return '#50e3c2';\n }\n};\n\nconst Hint = styled.span`\n font-family: ${props => props.theme.fontFamily};\n font-size: 11px;\n font-weight: 600;\n line-height: 1.36;\n letter-spacing: 0.4px;\n text-transform: uppercase;\n color: ${handleColor};\n`;\n\nHint.defaultProps = {\n theme,\n color: 'info',\n};\n\nexport default Hint;\n","import styled from 'styled-components';\nimport Hint from './Hint';\n\ninterface FormFieldProps {\n direction?: 'row' | 'column';\n}\n\nconst FormField = styled.div`\n position: relative;\n display: flex;\n padding: 0 0 30px;\n\n flex-direction: ${props => props.direction};\n ${props =>\n props.direction === 'row' &&\n `\n align-items: flex-end;\n `}\n\n ${Hint} {\n position: absolute;\n right: 0;\n }\n`;\n\nFormField.defaultProps = {\n direction: 'column',\n};\n\nexport default FormField;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport {\n Input,\n FormControl,\n FormLabel,\n Flex,\n Tooltip,\n Stack,\n} from '@chakra-ui/react';\nimport { InfoIcon } from '../../icons';\nimport Hint from './Hint';\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst InputField = (props: any): React.ReactElement => {\n const {\n variant,\n label,\n name,\n placeholder,\n helpText,\n type,\n disabled,\n onBlur,\n ...config\n } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n \n \n {label} \n {helpText && (\n \n \n \n )}\n \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n {\n onBlur && onBlur(e);\n input.onBlur(e);\n }}\n />\n \n );\n};\n\nexport default InputField;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport { Select, FormControl, FormLabel, Flex } from '@chakra-ui/react';\nimport Hint from './Hint';\n\ntype Props = {\n children: any;\n label: string;\n name: string;\n disabled?: boolean;\n validate?: any;\n};\n\nconst SelectField = (props: Props): React.ReactElement => {\n const { label, name, disabled, children, ...config } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n \n {label} \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n \n {children}\n \n \n );\n};\n\nexport default SelectField;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Label = styled.label`\n font-family: ${props => props.theme.fontFamily};\n font-weight: 600;\n font-size: 13px;\n line-height: 1.15;\n letter-spacing: 0.5px;\n color: ${props => props.theme.commons.main};\n text-transform: uppercase;\n`;\n\nLabel.defaultProps = {\n theme,\n};\n\nexport default Label;\n","// Validate for redux-form\n// https://redux-form.com/7.4.2/docs/api/field.md/#-code-validate-value-allvalues-props-name-gt-error-code-optional-\n\nconst isEmail = (message: string) => (value: any) => {\n // eslint-disable-next-line\n const regexEmail = /^(([^<>()[\\]\\\\.,;:\\s@\\\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\\\"]+)*)|(\\\".+\\\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;\n\n return !regexEmail.test(value) ? message : undefined;\n};\n\nconst required = (message: string) => (value: any) =>\n !value ? message : undefined;\n\nconst min = (size: number, message: string) => (value: any) =>\n value && value.length < size ? message : undefined;\n\nconst max = (size: number, message: string) => (value: any) =>\n value && value.length > size ? message : undefined;\n\nconst composeValidators = (...validators: any) => (value: any) =>\n validators.reduce(\n (error: any, validator: any) => error || validator(value),\n undefined\n );\n\nexport default {\n isEmail,\n required,\n min,\n max,\n composeValidators,\n};\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\ntype TextareaProps = {\n invalid?: boolean;\n fullWidth?: boolean;\n valid?: boolean;\n showValid?: boolean;\n touched?: boolean;\n};\n\nconst Textarea = styled.textarea`\n ${props => props.fullWidth && 'width: 100%;'}\n font-family: ${theme.fontFamily};\n font-size: 16px;\n color: #000000;\n border: none;\n border-bottom: 1px solid #AAAAAA;\n padding: 0 0 8px;\n flex: 1;\n background: none;\n min-height: 109px;\n\n &[disabled] {\n color: #D1CDD2;\n background: none;\n }\n\n &:focus {\n outline: none;\n border-bottom: 1px solid ${theme.brand.main};\n }\n\n &::placeholder {\n color: ${theme.commons.dark};\n }\n &::-webkit-input-placeholder {\n color: ${theme.commons.dark};\n }\n &::-moz-placeholder {\n color: ${theme.commons.dark};\n }\n &:-ms-input-placeholder {\n color: ${theme.commons.dark};\n }\n &:-moz-placeholder {\n color: ${theme.commons.dark};\n }\n\n ${props => props.invalid && `border-color: #ff0931;`}\n`;\n\nTextarea.displayName = 'Textarea';\n\n/** @component */\nexport default Textarea;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport Textarea from './Textarea';\nimport Label from './Label';\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst TextareaField = (props: any) => {\n const { label, name, placeholder, disabled, ...config } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n {label} \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n \n
\n \n );\n};\n\nexport default TextareaField;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport RoundSelect from './RoundSelect';\nimport Label from './Label';\n\ntype Props = {\n name: string;\n options: Array<{\n value: string | number;\n label: string | number;\n }>;\n label?: string;\n placeholder?: string;\n disabled?: boolean;\n menuPortalTarget?: HTMLBodyElement | null;\n isClearable?: boolean;\n onChange?: (event: any) => void;\n maxMenuHeight?: number;\n menuPlacement?: 'auto' | 'top' | 'bottom';\n};\n\nconst RoundSelectField = ({\n label,\n name,\n placeholder,\n disabled,\n options,\n menuPortalTarget,\n isClearable,\n onChange,\n maxMenuHeight = 300,\n menuPlacement = 'bottom',\n ...config\n}: Props) => {\n const { input, meta } = useField(name, config);\n return (\n \n {label && {label} }\n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n {\n onChange && onChange(e);\n input.onChange(e);\n }}\n />\n \n );\n};\n\nexport default RoundSelectField;\n","import styled, { css } from 'styled-components';\nimport theme from '../base/theme';\n\ntype Props = {\n type?: string;\n invalid?: boolean;\n disabled?: boolean;\n theme: any;\n onBlur?: (e: any) => void;\n placeholder?: string;\n border?: boolean;\n};\n\nconst RoundInput = styled.input`\n padding: 0 60px 0 15px;\n width: 100%;\n height: 40px;\n\n font-family: ${props => props.theme.fontFamily};\n font-size: 14px;\n line-height: 22px;\n color: ${props => props.theme.commons.dark};\n border: none;\n box-sizing: border-box;\n background-color: unset;\n\n &[disabled] {\n color: #d1cdd2;\n background: unset;\n }\n\n &::placeholder,\n &::-webkit-input-placeholder,\n &::-moz-placeholder,\n &:-ms-input-placeholder,\n &:-moz-placeholder {\n color: ${props => props.theme.commons.dark};\n font-family: ${props => props.theme.fontFamily};\n }\n\n ${({ border, value, theme, invalid }) =>\n border &&\n css`\n border: 1px solid;\n border-radius: 7px;\n ${!value\n ? css`\n &:hover,\n &:focus {\n border-color: ${theme.commons.main};\n }\n border-color: ${theme.commons.main};\n `\n : css`\n &:hover,\n &:focus {\n border-color: ${theme.brand.main};\n }\n border-color: ${theme.brand.main};\n `}\n ${invalid && `border-color: ${theme.error};`}\n `}\n`;\n\nRoundInput.defaultProps = {\n invalid: false,\n type: 'text',\n theme,\n};\n\nexport default RoundInput;\n","import React from 'react';\nimport styled, { css } from 'styled-components';\nimport { useField } from 'react-final-form';\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport RoundInput from './RoundInput';\nimport Label from './Label';\nimport theme from '../base/theme';\n\ntype Props = {\n name: string;\n type?: string;\n label?: string;\n placeholder?: string;\n disabled?: boolean;\n onBlur?: (e: any) => void;\n};\n\nconst StyledFormField = styled(FormField)<{\n invalid?: boolean;\n value?: string;\n}>`\n border: 1px solid;\n border-radius: 7px;\n padding: 0;\n ${props =>\n !props.value\n ? css`\n &:hover,\n &:focus {\n border-color: ${props.theme.commons.main};\n }\n border-color: ${props.theme.commons.main};\n `\n : css`\n &:hover,\n &:focus {\n border-color: ${props.theme.brand.main};\n }\n border-color: ${props.theme.brand.main};\n `}\n\n ${props =>\n props.invalid &&\n `\n border-color: ${props.theme.error};\n `}\n`;\n\nStyledFormField.defaultProps = {\n theme,\n};\n\nconst RoundInputField = ({\n name,\n type,\n label,\n placeholder,\n disabled,\n onBlur,\n ...config\n}: Props) => {\n const { input, meta } = useField(name, config);\n return (\n \n {label && {label} }\n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n {\n onBlur && onBlur(e);\n input.onBlur(e);\n }}\n />\n \n );\n};\n\nexport default RoundInputField;\n","import styled from 'styled-components';\nimport React from 'react';\n\ninterface SwitchProps {\n onClick?: () => void;\n checked?: boolean;\n disabled?: boolean;\n}\n\nconst Switch = ({ onClick, checked, disabled }: SwitchProps) => {\n return (\n \n \n \n \n );\n};\n\nconst Label = styled.label`\n position: relative;\n display: inline-block;\n width: 28px;\n min-width: 28px;\n height: 14px;\n border-radius: 50%;\n box-shadow: 3px 3px 10px 1px rgb(138 138 138 / 55%);\n\n input {\n opacity: 0;\n width: 0;\n height: 0;\n }\n\n .slider {\n position: absolute;\n cursor: pointer;\n border-radius: 34px;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background-color: #858585;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n .slider::before {\n position: absolute;\n content: '';\n height: 12px;\n width: 12px;\n border-radius: 50%;\n left: 1px;\n bottom: 1px;\n background-color: white;\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n input:checked + .slider {\n background-color: #50e3c2;\n }\n\n input:checked + .slider::before {\n -webkit-transform: translateX(14px);\n -ms-transform: translateX(14px);\n transform: translateX(14px);\n }\n`;\n\nexport default Switch;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport styled from 'styled-components';\n\nimport FormField from './FormField';\nimport Hint from './Hint';\nimport Switch from './Switch';\nimport Label from './Label';\n\nconst SwitchField = (props: any) => {\n const { label, name, disabled, textOff, textOn, ...config } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n {label && {label} }\n\n {input.value ? textOn : textOff} \n\n input.onChange(!input.value)}\n checked={input.value}\n />\n \n \n );\n};\n\ntype ContainerProps = {\n disabled: boolean;\n};\n\nconst Container = styled.div`\n display: flex;\n align-items: center;\n\n .text {\n font-size: '13px';\n font-weight: 800;\n margin-right: 8px;\n color: ${({ disabled }) => (disabled ? '#858585' : '#50E3C2')};\n }\n`;\n\nexport default SwitchField;\n","import React from 'react';\nimport {\n FormControl,\n FormLabel,\n Flex,\n Stack,\n RadioGroup,\n} from '@chakra-ui/react';\nimport { useField } from 'react-final-form';\nimport Hint from './Hint';\n\ntype RadioFieldProps = {\n children: any;\n label: string;\n name: string;\n direction?: 'row' | 'column';\n};\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst RadioField = ({ children, label, name, direction }: RadioFieldProps) => {\n const { input, meta } = useField(name);\n\n return (\n \n \n {label} \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n \n \n {children}\n \n \n \n );\n};\n\nRadioField.defaultProps = {\n direction: 'row',\n};\n\nexport default RadioField;\n","import React from 'react';\nimport {\n Box,\n Button,\n Image,\n FormControl,\n FormLabel,\n FormHelperText,\n Stack,\n} from '@chakra-ui/react';\nimport { useField, FieldInputProps } from 'react-final-form';\nimport ReactS3Uploader from 'react-s3-uploader';\nimport { EditIcon, UploadImageIcon } from '../../icons';\n\ninterface S3UploadFileFieldProps {\n signingUrl: string;\n onChange: any;\n disabled?: boolean;\n}\n\nconst S3UploadFileField: React.FC = ({\n children,\n onChange,\n signingUrl,\n disabled,\n}) => {\n const inputRef: any = React.useRef(null);\n\n // Override callbacks\n const onProgress = (args: any) => {\n console.log('onProgress', { args });\n };\n const onError = (args: any) => {\n console.log('onError', { args });\n };\n const onFinish = ({ signedUrl }: any) => {\n const imageUrl: string = signedUrl.substring(0, signedUrl.indexOf('?'));\n console.log('onFinish', { imageUrl });\n onChange(imageUrl);\n };\n // Button should be ReactS3Uploader active.\n const onClick = (evt: any) => {\n evt?.preventDefault();\n inputRef?.current.click();\n };\n\n return (\n \n \n {children}\n \n \n
\n );\n};\n\ninterface S3UploadFieldProps extends FieldInputProps {\n label?: string;\n helpText?: string;\n disabled?: boolean;\n alt?: string;\n signingUrl: string;\n uploadImageIcon: any;\n removeTextButton?: string;\n borderRadius?: any;\n boxSize?: any;\n}\n\n// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\nconst S3UploadField = (props: S3UploadFieldProps) => {\n const {\n label,\n helpText,\n name,\n disabled,\n alt,\n signingUrl,\n uploadImageIcon: UploadImageIconComponent,\n removeTextButton,\n borderRadius,\n boxSize,\n ...config\n } = props;\n const { input } = useField(name, config);\n\n return (\n \n \n {input.value ? (\n \n \n \n \n \n \n ) : (\n \n )}\n \n \n {label} \n {helpText && (\n \n {helpText}\n \n )}\n {props.formData && (\n props.onChange(null)}\n >\n {removeTextButton}\n \n )}\n \n \n );\n};\n\nS3UploadField.defaultProps = {\n uploadImageIcon: UploadImageIcon,\n removeTextButton: 'Remover',\n borderRadius: '50%',\n boxSize: '85px',\n};\n\nexport default S3UploadField;\n","import React from 'react';\nimport { useField } from 'react-final-form';\nimport { SketchPicker } from 'react-color';\nimport { Flex, FormControl, FormLabel, Stack, Tooltip } from '@chakra-ui/react';\nimport { InfoIcon } from '../../icons';\nimport Hint from './Hint';\n\n// interface ColorFieldProps extends {\n// name: string\n// label?: string\n// helpText?: string\n// }\n\nconst ColorField = (props: any): any => {\n const {\n // variant,\n label,\n name,\n // placeholder,\n helpText,\n // type,\n // disabled,\n // onBlur,\n ...config\n } = props;\n const { input, meta } = useField(name, config);\n\n return (\n \n \n \n {label} \n {helpText && (\n \n \n \n )}\n \n {(meta.error || meta.submitError) && meta.touched && (\n {meta.error || meta.submitError} \n )}\n \n input.onChange(color.hex)}\n />\n \n );\n};\n\nexport default ColorField;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Navigation = styled.div`\n display: flex;\n height: 40px;\n background-color: ${({ theme }) => theme.brand.dark};\n align-items: flex-end;\n\n & > a {\n color: inherit;\n text-decoration: none;\n }\n`;\n\nNavigation.defaultProps = {\n theme,\n};\n\nexport default Navigation;\n","import React from 'react';\nimport { Button } from '@chakra-ui/react';\nimport { useColorMode } from '@chakra-ui/color-mode';\n\nexport interface TabProps {\n active?: boolean;\n onClick?: () => void;\n}\n\nconst Tab: React.FC = ({ children, active, onClick }) => {\n const { colorMode } = useColorMode();\n const defaultColor = colorMode === 'dark' ? 'white' : 'black';\n\n const defaultStylesProps: any = {\n color: defaultColor,\n };\n\n if (!active && colorMode === 'light') {\n defaultStylesProps.color = 'black';\n defaultStylesProps._hover = {\n color: 'gray.400',\n };\n }\n\n if (!active && colorMode === 'dark') {\n defaultStylesProps.color = 'white';\n defaultStylesProps._hover = {\n color: 'gray.200',\n };\n }\n\n if (active) {\n defaultStylesProps.color = 'pink.200';\n defaultStylesProps._hover = {\n color: 'pink.200',\n borderBottomColor: 'pink.200',\n };\n defaultStylesProps.borderBottomWidth = '2px';\n defaultStylesProps.borderBottomStyle = 'solid';\n defaultStylesProps.borderBottomColor = 'pink.200';\n }\n\n return (\n \n {children}\n \n );\n};\n\nexport default Tab;\n","import styled from 'styled-components';\nimport { ToastContainer } from 'react-toastify';\n\nconst StyledContainer = styled(ToastContainer)`\n .Toastify__toast {\n font-family: Nunito Sans;\n font-size: 16px;\n color: #fff;\n\n padding: 15px 18px;\n }\n .Toastify__toast--success {\n background-color: #50e3c2;\n }\n`;\n\nexport default StyledContainer;\n","import React from 'react';\n\nconst Icon: React.FC = () => {\n return (\n \n \n \n \n \n \n \n \n \n \n );\n};\n\nIcon.displayName = 'SuccessIcon';\n\nexport default Icon;\n","import React from 'react';\nimport styled from 'styled-components';\nimport { SuccessIcon } from './Icons';\n\nconst Message: React.FC = styled.div`\n display: flex;\n flex-direction: row;\n\n svg {\n margin-right: 18px;\n }\n`;\n\ntype Props = {\n message: string;\n};\n\nconst Success = ({ message }: Props) => {\n return (\n \n \n {message} \n \n );\n};\n\nexport default Success;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Body = styled.div`\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n padding: 0 ${({ theme }) => theme.body.padding}px;\n overflow: hidden;\n /* background-color: ${props => props.theme.body}; */\n`;\n\nBody.defaultProps = {\n theme,\n};\n\nexport default Body;\n","import React from 'react';\nimport styled from 'styled-components';\nimport Bonde from '../content/Bonde';\nimport theme from '../base/theme';\n\nconst Footer = styled(({ className, children }: any) => (\n \n \n {children}\n
\n))`\n display: flex;\n flex-direction: row;\n background-color: ${({ theme }) => theme.body.background.dark};\n padding: 20px ${({ theme }) => theme.body.padding}px;\n`;\n\nFooter.defaultProps = {\n theme,\n};\n\nexport default Footer;\n","import styled from 'styled-components';\nimport theme from '../base/theme';\n\nconst Main = styled.div`\n display: flex;\n flex-direction: column;\n min-height: 100vh;\n min-width: 100%;\n background-color: ${({ theme }) => theme.body.background.main};\n font-family: ${({ theme }) => theme.fontFamily};\n`;\n\nMain.defaultProps = {\n theme,\n};\n\nexport default Main;\n","import React from 'react';\nimport styled from 'styled-components';\nimport { Flex } from '@chakra-ui/react';\nimport Icon from '../content/Icon';\nimport Bonde from '../content/Bonde';\n\ninterface NavbarProps {\n className?: string;\n indexRoute: string;\n fixed?: boolean;\n brand?: 'default' | 'small';\n}\n\n// Reset link to keep BondeSVG render\nconst HomeLink = styled.a`\n color: #000;\n text-decoration: none;\n\n &:hover {\n color: #000;\n text-decoration: none;\n }\n`;\n\nconst Navbar: React.FC = ({\n brand,\n children,\n indexRoute,\n fixed = false,\n}) => (\n \n \n {brand !== 'small' ? : }\n \n {children}\n \n);\n\nexport default Navbar;\n","import React, { useState, createContext, useContext, useRef } from 'react';\nimport { Button, Box, Fade, useOutsideClick } from '@chakra-ui/react';\nimport { ArrowUpIcon, ArrowDownIcon } from '../../icons';\n\ntype DropdownContext = {\n isOpen: boolean;\n onToggle: () => void;\n};\n\nconst dropdownContext = createContext({\n isOpen: false,\n onToggle: () => {},\n});\n\ntype PerformDropdownListProps = {\n scroll?: boolean;\n};\n\nexport const PerformDropdownList: React.FC = ({\n children,\n scroll,\n}) => {\n const { isOpen } = useContext(dropdownContext);\n const boxProps: any = {\n minWidth: '200px',\n maxWidth: '400px',\n bg: 'white',\n boxShadow: 'base',\n mt: 10,\n };\n\n if (scroll) {\n boxProps.overflowY = 'scroll';\n boxProps.height = '500px';\n }\n\n return (\n \n {children} \n \n );\n};\n\ntype PerformDropdownItemProps = {\n onClick?: any;\n};\n\nexport const PerformDropdownItem: React.FC = ({\n children,\n onClick,\n}) => {\n const { onToggle } = useContext(dropdownContext);\n\n return (\n {\n if (onClick) onClick();\n onToggle();\n }}\n _hover={{ bg: 'gray.100' }}\n >\n {children}\n \n );\n};\n\nexport const PerformDropdownButton: React.FC = ({\n children,\n color,\n ...props\n}) => {\n const { isOpen, onToggle } = useContext(dropdownContext);\n const buttonProps = {\n ...props,\n zIndex: 3,\n rightIcon: isOpen ? (\n \n ) : (\n \n ),\n onClick: onToggle,\n };\n\n if (color) {\n buttonProps.color = color;\n buttonProps['_hover'] = { color };\n buttonProps['_active'] = { color };\n }\n\n return {children} ;\n};\n\nconst PerformDropdown: React.FC = ({ children }) => {\n const wrapperRef: any = useRef();\n const [isOpen, setIsOpen] = useState(false);\n\n useOutsideClick({\n ref: wrapperRef,\n handler: () => setIsOpen(false),\n });\n\n return (\n setIsOpen(!isOpen),\n }}\n >\n \n {children}\n \n \n );\n};\n\nexport default PerformDropdown;\n","import React from 'react';\nimport { IconButton, Stack } from '@chakra-ui/react';\nimport { Session, Community } from './types';\n\nimport { SettingsIcon, PagesIcon, BotIcon, NetIcon } from '../icons';\n\nconst items: any = {\n settings: [SettingsIcon, 'Configurações'],\n mobilization: [PagesIcon, 'Mobilizações'],\n redes: [NetIcon, 'Redes'],\n chatbot: [BotIcon, 'Chatbot'],\n};\n\ninterface CommunityMenuProps {\n community: Community;\n inverted?: boolean;\n session: Session;\n}\n\nconst CommunityMenu = ({\n community,\n session,\n inverted,\n}: CommunityMenuProps): React.ReactElement => {\n const { apps: config, updateSession }: any = session;\n const { modules } = community;\n\n const handleClick = (url: string) => async () => {\n updateSession('community', community).then(() => {\n window.location.href = url;\n });\n };\n\n return (\n \n {Object.keys(modules)\n .filter((key: string) => !!modules[key])\n .map((key: any, index: number) => {\n let moduleHost = '';\n let baseHost = '';\n try {\n moduleHost = new URL('', config[key]).host;\n baseHost = new URL('', window.location.href).host;\n } catch (err) {\n console.log('error URL', err);\n }\n\n const hoverColor = (color: string) => ({ color: `${color}.200` });\n const isActive = moduleHost === baseHost;\n const IconComponent: any = items[key][0];\n\n const colorSystem = inverted\n ? {\n color: isActive ? 'pink.200' : 'white',\n _hover: isActive ? hoverColor('pink') : hoverColor('gray'),\n }\n : {\n color: 'gray.400',\n _hover: hoverColor('gray'),\n };\n\n return (\n }\n onClick={handleClick(config[key])}\n />\n );\n })}\n \n );\n};\n\nexport default CommunityMenu;\n","import React from 'react';\nimport { Stack, Image, Text } from '@chakra-ui/react';\nimport {\n PerformDropdown,\n PerformDropdownList,\n PerformDropdownItem,\n PerformDropdownButton,\n} from '../ui';\nimport CommunityMenu from './CommunityMenu';\n\nimport { Session } from './types';\n\ninterface CommunitiesDropdownProperties {\n isMobile?: boolean;\n session: Session;\n}\n\nconst CommunitiesDropdown: React.FC = ({\n session,\n isMobile,\n}) => {\n const { communities, community, updateSession } = session;\n\n return (\n \n \n \n {community ? (\n \n \n \n {community?.name}\n \n \n ) : (\n 'Selecione uma comunidade'\n )}\n \n 10}>\n {communities.map((c: any) => (\n {\n updateSession('community', c);\n }}\n >\n \n \n {c.name} \n \n \n ))}\n \n \n {community && !isMobile && (\n \n )}\n \n );\n};\n\nexport default CommunitiesDropdown;\n","import React from 'react';\nimport {\n Button,\n Text,\n Stack,\n Heading,\n Menu,\n MenuButton,\n MenuList,\n MenuItem,\n MenuGroup,\n} from '@chakra-ui/react';\nimport { ArrowDownIcon, ArrowUpIcon, CloseIcon } from '../icons';\nimport { Session } from './types';\n\ninterface UserDropdownProperties {\n session: Session;\n}\n\nconst UserDropdown: React.FC = ({ session }) => {\n const { currentUser: user, logout } = session;\n const name = `${user.firstName} ${user.lastName}`;\n\n const title: any = (\n \n \n {name}\n \n \n {user.email}\n \n \n );\n\n return (\n \n {({ isOpen }: any) => (\n <>\n \n ) : (\n \n )\n }\n >\n {name}\n \n \n \n }>\n Logout\n \n \n \n >\n )}\n \n );\n};\n\nexport default UserDropdown;\n","import React from 'react';\nimport { Button } from '@chakra-ui/react';\nimport { Session } from './types';\n\nconst Logout: React.FC<{ session: Session }> = ({ session }) => {\n return (\n \n \n \n \n \n \n );\n};\n\nexport default Logout;\n","import React from 'react';\nimport styled from '@emotion/styled';\nimport { Flex } from '@chakra-ui/react';\nimport { Main, Footer, Navbar } from '../ui';\nimport CommunitiesDropdown from './CommunitiesDropdown';\nimport UserDropdown from './UserDropdown';\nimport Logout from './Logout';\nimport { BaseUIProperties } from './types';\n\ninterface ContentProps {\n isMobile: boolean;\n bgColor: string;\n}\n\nconst Content = styled.div`\n display: flex;\n flex-grow: 1;\n background-color: ${(props: ContentProps) => props.bgColor};\n\n ${(props: ContentProps) =>\n props.isMobile &&\n `\n padding-top: 65px;\n overflow-y: auto;\n `}\n`;\n\nconst FooterTool: React.FC = ({ languageTool: LanguageTool }) =>\n LanguageTool ? (\n \n ) : (\n \n );\n\nconst BaseUI: React.FC = ({\n children,\n bgColor,\n disableNavigation,\n indexRoute,\n isMobile,\n session,\n languageTool: LanguageTool,\n}) => {\n return (\n \n \n \n {disableNavigation ? (\n
\n ) : (\n \n )}\n {isMobile ? (\n \n ) : (\n \n )}\n \n \n \n {children}\n \n {!isMobile ? : null}\n \n );\n};\n\nBaseUI.defaultProps = {\n disableNavigation: false,\n};\n\nexport default BaseUI;\n"],"names":["FontsLoader","React","GoogleFontLoader","fonts","font","weights","subsets","Spark","styled","path","_templateObject","_taggedTemplateLiteralLoose","props","colorInit","pulse","duration","Sparkles","_ref","color","Fragment","keyframes","_templateObject2","d","_templateObject3","_templateObject4","_templateObject5","_templateObject6","defaultProps","LoadingSVG","className","sparklesColor","sparklesColorInit","sparklesDuration","xmlns","viewBox","fill","size","theme","brand","main","dark","light","commons","fontFamily","body","padding","background","default","border","hover","focus","secondary","disabled","error","Text","p","bold","align","uppercase","displayName","annotate","Component","H1","withComponent","H2","H3","H4","H5","H6","_templateObject7","FullSize","div","LoadingStyles","Loading","children","fullsize","message","messageComponent","MessageComponent","Header","Ring","_ref2","Spinner","_ref3","Bonde","large","width","EmptyIcon","height","EmptyWrap","Empty","Icon","fillRule","stroke","strokeWidth","clipRule","strokeLinecap","clipPath","id","mask","transform","IconController","name","IconSVG","SVGIcons","Link","component","ownProps","CleanButton","button","Wrapper","Shortcut","icon","text","ModalStyled","isOpen","ModalContentStyled","CloseButtonStyled","Modal","onClose","onClick","SelectIcon","show","css","StyledControl","value","invalid","StyledSingleValue","isDisabled","StyledOption","_templateObject8","isSelected","_templateObject9","isFocused","_templateObject10","_templateObject11","StyledMenu","_templateObject12","SingleValue","selectProps","components","DropdownIndicator","Control","Option","Menu","RoundSelect","toggle","useState","ReactSelect","IndicatorSeparator","onMenuOpen","onMenuClose","onInputChange","classNamePrefix","menuHeight","WrapSelect","_ref4","_ref5","_ref6","_ref7","_ref8","_ref9","getItems","page","totalPages","startPage","endPage","Array","from","_","i","Pagination","_ref10","goToPage","pageIndex","pageSize","setPageSize","showMorePlacement","items","setItems","useEffect","setPage","Stack","direction","my","spacing","justify","Button","variant","colorScheme","map","item","key","options","label","placeholder","onChange","e","Number","menuPortalTarget","document","querySelector","menuPlacement","StyledTh","th","backgroundColor","StyledTd","td","StyledTr","tr","StyledTable","table","sticky","Main","Table","columns","data","pagination","defaultColumn","useMemo","minWidth","maxWidth","getTableProps","getTableBodyProps","headerGroups","rows","prepareRow","useTable","useSortBy","useFlexLayout","headerGroup","getHeaderGroupProps","headers","column","getHeaderProps","getSortByToggleProps","collapse","style","display","justifyContent","paddingRight","render","isSorted","isSortedDesc","row","getRowProps","cells","cell","getCellProps","SpacingStyled","margin","top","bottom","left","right","Spacing","x","marginX","y","marginY","paddingX","paddingY","CardStyled","rounded","Card","rest","Message","span","DropdownList","DropdownItem","DropdownInput","useOutsideAlerter","ref","onEvent","handleClickOutside","event","current","contains","target","addEventListener","removeEventListener","DropdownFluid","DropdownFluidList","DropdownFluidInput","onToggle","open","DropdownFluidItem","clickable","DropdownFluidLayout","Dropdown","selectable","onSelect","dropdownInput","DropdownInputUI","dropdownItem","DropdownItemUI","dropdownList","DropdownListUI","setOpen","dropdownRef","useRef","index","itemProps","selected","DropdownIconItem","DropdownImageInput","img","src","alt","DropdownImageItem","Form","form","ConnectedForm","onSubmit","FinalForm","handleSubmit","formProps","handleColor","Hint","FormField","InputField","helpText","type","onBlur","config","input","meta","useField","FormControl","isInvalid","submitError","touched","mb","Flex","FormLabel","Tooltip","InfoIcon","boxSize","Input","SelectField","Select","Label","isEmail","regexEmail","test","undefined","required","min","length","max","composeValidators","_len","arguments","validators","_key","reduce","validator","Textarea","textarea","fullWidth","TextareaField","paddingTop","RoundSelectField","isClearable","maxMenuHeight","RoundInput","StyledFormField","RoundInputField","Switch","checked","SwitchField","textOff","textOn","Container","RadioField","RadioGroup","S3UploadFileField","signingUrl","inputRef","onProgress","args","console","log","onError","onFinish","signedUrl","imageUrl","substring","indexOf","evt","preventDefault","click","ReactS3Uploader","accept","S3UploadField","uploadImageIcon","UploadImageIconComponent","removeTextButton","borderRadius","Box","position","Image","EditIcon","FormHelperText","mt","fontSize","formData","fontWeight","UploadImageIcon","ColorField","SketchPicker","onChangeComplete","hex","Navigation","Tab","active","colorMode","useColorMode","defaultColor","defaultStylesProps","_hover","borderBottomColor","borderBottomWidth","borderBottomStyle","px","pb","mr","StyledContainer","ToastContainer","Success","SuccessIcon","Body","Footer","HomeLink","a","Navbar","indexRoute","fixed","w","bg","py","alignItems","href","title","dropdownContext","createContext","PerformDropdownList","scroll","useContext","boxProps","boxShadow","overflowY","Fade","in","zIndex","PerformDropdownItem","cursor","PerformDropdownButton","buttonProps","rightIcon","ArrowUpIcon","ArrowDownIcon","PerformDropdown","wrapperRef","setIsOpen","useOutsideClick","handler","Provider","settings","SettingsIcon","mobilization","PagesIcon","redes","NetIcon","chatbot","BotIcon","CommunityMenu","community","session","inverted","apps","updateSession","modules","handleClick","url","then","window","location","Promise","resolve","reject","Object","keys","filter","moduleHost","baseHost","URL","host","err","hoverColor","isActive","IconComponent","colorSystem","IconButton","CommunitiesDropdown","isMobile","communities","image","textTransform","c","UserDropdown","currentUser","user","logout","firstName","lastName","Heading","as","email","MenuButton","MenuList","MenuGroup","MenuItem","CloseIcon","Logout","Content","bgColor","FooterTool","languageTool","LanguageTool","BaseUI","disableNavigation","grow"],"mappings":"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"}
\ No newline at end of file
diff --git a/clients/libs/components/__dist/esm/index2.js b/clients/libs/components/__dist/esm/index2.js
new file mode 100644
index 0000000000..c8eec94804
--- /dev/null
+++ b/clients/libs/components/__dist/esm/index2.js
@@ -0,0 +1,204 @@
+import React from 'react';
+import { createIcon } from '@chakra-ui/react';
+
+const ArrowUpIcon = /*#__PURE__*/createIcon({
+ displayName: 'ArrowUpIcon',
+ viewBox: '4 4 15 15',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
+ fill: "currentColor",
+ d: "M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"
+ })))
+});
+
+const ArrowDownIcon = /*#__PURE__*/createIcon({
+ displayName: 'ArrowDownIcon',
+ viewBox: '4 4 15 15',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
+ fill: "currentColor",
+ d: "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"
+ })))
+});
+
+const ArrowLeftIcon = /*#__PURE__*/createIcon({
+ displayName: 'ArrowUpIcon',
+ viewBox: '0 0 12 18',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
+ stroke: "currentColor",
+ strokeLinecap: "square",
+ strokeWidth: "1.5",
+ d: "M3.463 9l6.323 6.017.414.395-.829.788-.414-.394-6.322-6.017-.007.006-.828-.789L1.806 9 1.8 8.994l.828-.788.007.006 6.322-6.018.414-.394.829.788-.414.395L3.463 9z",
+ clipRule: "evenodd"
+ })))
+});
+
+const BotIcon = /*#__PURE__*/createIcon({
+ displayName: 'BotIcon',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
+ d: "M16.319 14.684a5.484 5.484 0 00-5.478-5.478H7.285a5.484 5.484 0 00-5.478 5.478h1.404a4.079 4.079 0 014.074-4.074h3.556a4.079 4.079 0 014.074 4.074h1.404zM2.042 6.492c0 1.161.944 2.106 2.105 2.106h9.542c1.16 0 2.105-.945 2.105-2.106V2.106C15.794.945 14.85 0 13.69 0H4.147c-1.16 0-2.106.945-2.106 2.106v4.386zm1.403-4.386c0-.387.315-.702.702-.702h9.542c.387 0 .701.315.701.702v4.386a.703.703 0 01-.701.702H4.147a.703.703 0 01-.702-.702V2.106z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React.createElement("path", {
+ d: "M7.15 2.643H5.748v3.313H7.15V2.643zM12.304 2.643H10.9v3.313h1.404V2.643zM1.404 2.709H0v3.18h1.404V2.71zM18.125 2.709H16.72v3.18h1.404V2.71z",
+ fill: "currentColor"
+ })))
+});
+
+const ChartIcon = /*#__PURE__*/createIcon({
+ displayName: 'CloseIcon',
+ viewBox: '0 0 21 21',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("g", {
+ fill: "currentColor",
+ clipPath: "url(#clip0)"
+ }, /*#__PURE__*/React.createElement("path", {
+ d: "M15.72 21h5.24V3.5h-5.24V21zm1.746-15.75h1.747v14h-1.747v-14zM5.24 13.125H0V21h5.24v-7.875zM3.493 19.25H1.747v-4.375h1.746v4.375zM7.86 13.125V21h5.24V8.312h-1.748V19.25H9.606v-6.125H7.859z"
+ }), /*#__PURE__*/React.createElement("path", {
+ d: "M4.9 9.625H0v1.75h5.58L16.058 1.75h4.9V0h-5.58L4.9 9.625z"
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
+ id: "clip0"
+ }, /*#__PURE__*/React.createElement("path", {
+ fill: "#fff",
+ d: "M0 0H20.959V21H0z"
+ })))))
+});
+
+const EditIcon = /*#__PURE__*/createIcon({
+ displayName: 'EditIcon',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("circle", {
+ cx: "12",
+ cy: "12",
+ r: "11.5",
+ fill: "#E09",
+ stroke: "currentColor"
+ }), /*#__PURE__*/React.createElement("path", {
+ fill: "currentColor",
+ d: "M6.04 15.008l-.013 2.418c0 .137.05.273.15.372.098.1.222.15.359.15l2.406-.013c.137 0 .26-.05.36-.149l8.31-8.31a.524.524 0 000-.732L15.23 6.338a.524.524 0 00-.731 0l-1.662 1.674-6.648 6.636a.553.553 0 00-.15.36zm8.83-7.579l1.675 1.675-.943.943-1.674-1.675.943-.943zm-7.8 7.802l6.126-6.127 1.675 1.674-6.127 6.115-1.687.012.012-1.674z"
+ })))
+});
+
+const InfoIcon = /*#__PURE__*/createIcon({
+ displayName: 'InfoIcon',
+ viewBox: '0 0 14 14',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
+ fill: "currentColor",
+ d: "M7.012 14c3.862 0 7-3.138 7-7s-3.138-7-7-7S0 3.138 0 7s3.15 7 7.012 7zm0-13.034a6.032 6.032 0 016.022 6.022 6.032 6.032 0 01-6.022 6.022A6.032 6.032 0 01.99 6.988 6.032 6.032 0 017.012.966z"
+ }), /*#__PURE__*/React.createElement("path", {
+ fill: "currentColor",
+ d: "M8.208 8.824V6.066a.735.735 0 00-.734-.734h-1.35a.735.735 0 00-.734.734v.694c0 .36.262.661.605.722V8.84a.735.735 0 00-.605.723v.694c0 .404.33.734.734.734h1.98c.404 0 .734-.33.734-.734v-.694a.744.744 0 00-.63-.74zm-.17 1.367H6.19v-.563h.12a.485.485 0 00.485-.485V7.18a.485.485 0 00-.485-.485h-.12v-.564h1.22v3c0 .267.217.484.484.484h.145v.576zm-.985-5.098a1.16 1.16 0 100-2.322 1.16 1.16 0 00-.001 2.322zm0-1.523a.363.363 0 11-.001.725.363.363 0 010-.725z"
+ }), /*#__PURE__*/React.createElement("circle", {
+ cx: "6.811",
+ cy: "6.811",
+ r: "4.865",
+ fill: "#fff"
+ }), /*#__PURE__*/React.createElement("path", {
+ fill: "currentColor",
+ d: "M7.115 10.704a.697.697 0 01-.462-.154c-.116-.11-.174-.264-.174-.462V6.127c0-.198.058-.349.174-.451a.697.697 0 01.462-.154c.185 0 .338.05.462.154.123.102.184.253.184.451v3.961c0 .198-.061.352-.184.462a.697.697 0 01-.462.154zm0-6.096c-.233 0-.417-.061-.554-.184a.663.663 0 01-.206-.503.63.63 0 01.206-.493c.137-.123.321-.184.554-.184.226 0 .407.061.544.184a.616.616 0 01.215.493.663.663 0 01-.205.503c-.137.123-.322.184-.554.184z"
+ })))
+});
+
+const NetIcon = /*#__PURE__*/createIcon({
+ displayName: 'NetIcon',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
+ d: "M24.3 17.858c0-3.508-2.845-6.362-6.342-6.362h-4.116c-3.497 0-6.342 2.854-6.342 6.362h1.625c0-2.61 2.116-4.732 4.716-4.732h4.117c2.601 0 4.717 2.123 4.717 4.732H24.3z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M15.905 1.542a3.758 3.758 0 00-3.752 3.763 3.758 3.758 0 003.752 3.764 3.758 3.758 0 003.752-3.764 3.758 3.758 0 00-3.752-3.763zm-5.288 3.763c0-2.93 2.367-5.305 5.288-5.305 2.921 0 5.29 2.375 5.29 5.305 0 2.93-2.369 5.306-5.29 5.306-2.92 0-5.288-2.376-5.288-5.306z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React.createElement("path", {
+ d: "M9.815 3.421a4.236 4.236 0 00-2.119-.563c-2.327 0-4.213 1.862-4.213 4.159 0 2.297 1.886 4.16 4.213 4.16 1.339 0 2.532-.617 3.304-1.579a4.702 4.702 0 01-.884-.849 2.997 2.997 0 01-2.42 1.218c-1.65 0-2.989-1.32-2.989-2.95 0-1.63 1.338-2.95 2.989-2.95.593 0 1.145.17 1.61.464a4.59 4.59 0 01.509-1.11zM9.538 11.875a5.092 5.092 0 00-.207-.005H6.05C3.267 11.87 1 14.108 1 16.858h1.294c0-2.046 1.686-3.71 3.758-3.71h1.74a5.612 5.612 0 011.746-1.273z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M7.696 2.958c-2.273 0-4.113 1.818-4.113 4.059 0 2.24 1.84 4.06 4.113 4.06 1.27 0 2.406-.57 3.16-1.462a4.803 4.803 0 01-.738-.705 3.098 3.098 0 01-2.422 1.158c-1.705 0-3.089-1.365-3.089-3.051 0-1.686 1.384-3.05 3.089-3.05.566 0 1.097.15 1.553.413a4.69 4.69 0 01.426-.922 4.137 4.137 0 00-1.98-.5zM3.383 7.017c0-2.353 1.932-4.26 4.313-4.26.79 0 1.532.21 2.169.578l.09.052-.055.088c-.212.335-.38.699-.499 1.085l-.038.125-.11-.07a2.903 2.903 0 00-1.557-.449c-1.597 0-2.889 1.278-2.889 2.851s1.292 2.85 2.889 2.85c.962 0 1.814-.464 2.34-1.177l.076-.105.082.102c.25.313.541.592.865.83l.084.062-.065.082a4.326 4.326 0 01-3.382 1.615c-2.381 0-4.313-1.906-4.313-4.259zM.9 16.857c0-2.806 2.312-5.087 5.152-5.087H9.33c.07 0 .141.002.211.005l.038.19a5.511 5.511 0 00-1.714 1.251l-.03.032H6.052c-2.018 0-3.658 1.62-3.658 3.61v.1H.9v-.1zm.2-.1h1.096c.054-2.055 1.764-3.709 3.856-3.709h1.676c.39-.422.842-.786 1.343-1.078h-3.02c-2.697 0-4.896 2.14-4.95 4.788z",
+ fill: "currentColor"
+ })))
+});
+
+const PagesIcon = /*#__PURE__*/createIcon({
+ displayName: 'PagesIcon',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M1.5 1.5v15h19v-15h-19zM1 0a1 1 0 00-1 1v16a1 1 0 001 1h20a1 1 0 001-1V1a1 1 0 00-1-1H1z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React.createElement("path", {
+ fillRule: "evenodd",
+ clipRule: "evenodd",
+ d: "M22 6H0V4.5h22V6z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React.createElement("path", {
+ d: "M19 2.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",
+ fill: "currentColor"
+ })))
+});
+
+const SearchIcon = /*#__PURE__*/createIcon({
+ displayName: 'SearchIcon',
+ path: ( /*#__PURE__*/React.createElement("path", {
+ d: "M12.13 11.75A6.988 6.988 0 0014 7c0-3.854-3.136-7-7-7S0 3.146 0 7c0 3.853 3.135 6.999 7 6.999 1.572 0 3.019-.518 4.19-1.394l5.205 5.205c.127.127.285.19.444.19a.607.607 0 00.443-.19.644.644 0 000-.897L12.13 11.75zM1.267 7a5.738 5.738 0 015.732-5.733 5.738 5.738 0 015.733 5.732 5.731 5.731 0 01-5.733 5.733 5.738 5.738 0 01-5.732-5.733z",
+ fill: "currentColor"
+ }))
+});
+
+const SettingsIcon = /*#__PURE__*/createIcon({
+ displayName: 'PagesIcon',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
+ d: "M19.753 8.148a62.2 62.2 0 00-.977-.139 8.613 8.613 0 00-.664-1.6c.203-.264.402-.529.594-.789a1.474 1.474 0 00-.143-1.907l-1.276-1.276a1.474 1.474 0 00-1.907-.143c-.262.193-.526.392-.79.594a8.608 8.608 0 00-1.6-.663c-.044-.33-.09-.659-.138-.978A1.474 1.474 0 0011.402 0H9.598c-.72 0-1.344.536-1.45 1.247-.048.319-.094.647-.138.977a8.606 8.606 0 00-1.6.664c-.264-.202-.528-.401-.79-.594a1.474 1.474 0 00-1.906.143L2.438 3.713c-.51.51-.572 1.33-.144 1.907.192.26.392.525.594.79a8.62 8.62 0 00-.663 1.6c-.33.044-.659.09-.978.138C.537 8.254 0 8.878 0 9.598v1.804c0 .72.536 1.344 1.247 1.45.32.048.647.094.978.138.166.554.388 1.09.663 1.6-.202.264-.402.53-.594.79a1.474 1.474 0 00.143 1.906l1.276 1.276c.51.51 1.33.572 1.907.144.261-.193.526-.392.79-.594.51.275 1.046.497 1.6.663.044.33.09.659.138.978.106.71.73 1.247 1.45 1.247h1.804c.72 0 1.344-.536 1.45-1.247.048-.32.094-.647.138-.978a8.604 8.604 0 001.6-.663c.264.202.528.4.79.594a1.474 1.474 0 001.906-.143l1.276-1.276c.51-.51.572-1.33.144-1.907-.193-.26-.392-.526-.594-.79.275-.51.497-1.046.664-1.6.33-.044.658-.09.977-.138A1.474 1.474 0 0021 11.402V9.598c0-.72-.536-1.344-1.247-1.45zm-.51 3.003c-.29.042-.586.083-.883.122a1.461 1.461 0 00-1.224 1.061 6.842 6.842 0 01-.647 1.56 1.462 1.462 0 00.115 1.617c.182.237.362.475.538.71l-.92.921a62.411 62.411 0 01-.71-.538 1.462 1.462 0 00-1.618-.115 6.846 6.846 0 01-1.56.647 1.461 1.461 0 00-1.061 1.224c-.039.297-.08.593-.122.883H9.85c-.042-.29-.083-.586-.122-.883a1.462 1.462 0 00-1.061-1.224 6.847 6.847 0 01-1.56-.647 1.462 1.462 0 00-1.617.115c-.236.181-.474.362-.71.538l-.921-.92c.175-.236.356-.474.538-.711.361-.47.406-1.104.115-1.617a6.845 6.845 0 01-.647-1.56 1.462 1.462 0 00-1.224-1.061c-.297-.04-.593-.08-.883-.122V9.849c.29-.042.586-.083.883-.122a1.462 1.462 0 001.224-1.061 6.84 6.84 0 01.647-1.56 1.462 1.462 0 00-.115-1.617 61.019 61.019 0 01-.538-.71l.92-.921c.236.176.475.357.71.538.47.361 1.105.406 1.618.115a6.847 6.847 0 011.56-.647A1.461 1.461 0 009.727 2.64c.039-.297.08-.592.122-.882h1.302c.042.29.083.585.122.882a1.462 1.462 0 001.061 1.224c.544.15 1.069.368 1.56.647a1.462 1.462 0 001.617-.115c.236-.181.474-.362.71-.538l.921.92c-.175.236-.356.474-.538.711a1.462 1.462 0 00-.115 1.617c.28.491.497 1.016.647 1.56.156.568.637.985 1.224 1.062.297.038.593.079.883.121v1.302z",
+ fill: "currentColor"
+ }), /*#__PURE__*/React.createElement("path", {
+ d: "M10.506 6.3A4.21 4.21 0 006.3 10.506a4.21 4.21 0 004.206 4.206 4.21 4.21 0 004.206-4.206A4.21 4.21 0 0010.506 6.3zm0 6.542a2.34 2.34 0 01-2.336-2.336 2.339 2.339 0 012.336-2.336 2.34 2.34 0 012.336 2.336 2.34 2.34 0 01-2.336 2.336z",
+ fill: "currentColor"
+ })))
+});
+
+const CloseIcon = /*#__PURE__*/createIcon({
+ displayName: 'CloseIcon',
+ viewBox: '0 0 10 10',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("path", {
+ fill: "currentColor",
+ fillRule: "evenodd",
+ stroke: "currentColor",
+ strokeLinecap: "square",
+ strokeWidth: "1.5",
+ d: "M5.337 5.013l3.324 3.325.107.107-.2.2-.107-.106-3.325-3.325L1.74 8.61l-.1.1-.214-.213.1-.1L4.922 5 1.604 1.682l-.107-.107.2-.201.107.107 3.319 3.318 3.273-3.273.1-.1.215.214-.1.1-3.274 3.273z"
+ })))
+});
+
+const UploadImageIcon = /*#__PURE__*/createIcon({
+ displayName: 'UploadImageIcon',
+ viewBox: '0 0 84 84',
+ path: ( /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("circle", {
+ cx: "42",
+ cy: "42",
+ r: "41.5",
+ fill: "#424242",
+ stroke: "#EEE"
+ }), /*#__PURE__*/React.createElement("path", {
+ fill: "#000",
+ d: "M59.58 29H25v25.56h34.58V29z",
+ opacity: "0.502"
+ }), /*#__PURE__*/React.createElement("path", {
+ fill: "#fff",
+ d: "M37.968 36.668l9.262 12.78H28.705l9.263-12.78z"
+ }), /*#__PURE__*/React.createElement("path", {
+ fill: "#fff",
+ d: "M49.083 43.058l5.558 6.39H43.525l5.558-6.39z"
+ }), /*#__PURE__*/React.createElement("path", {
+ fill: "#D8D8D8",
+ stroke: "#fff",
+ d: "M57.904 52.558h3.89v.228h-3.891v3.964h-.242v-3.964h-3.884v-.228h3.884v-3.825h.243v3.825z"
+ }), /*#__PURE__*/React.createElement("circle", {
+ cx: "72",
+ cy: "72",
+ r: "11.5",
+ fill: "#E09",
+ stroke: "#fff"
+ }), /*#__PURE__*/React.createElement("path", {
+ fill: "#fff",
+ d: "M66.04 75.008l-.013 2.418c0 .137.05.273.15.372.098.1.222.15.359.15l2.406-.013c.137 0 .26-.05.36-.149l8.31-8.31a.524.524 0 000-.732l-2.382-2.406a.524.524 0 00-.731 0l-1.662 1.674-6.648 6.636a.553.553 0 00-.15.36zm8.83-7.579l1.675 1.675-.942.942-1.675-1.674.943-.943zm-7.8 7.802l6.126-6.127 1.675 1.674-6.127 6.115-1.687.012.012-1.674z"
+ })))
+});
+
+export { ArrowDownIcon, ArrowLeftIcon, ArrowUpIcon, BotIcon, ChartIcon, CloseIcon, EditIcon, InfoIcon, NetIcon, PagesIcon, SearchIcon, SettingsIcon, UploadImageIcon };
+//# sourceMappingURL=index2.js.map
diff --git a/clients/libs/components/__dist/esm/index2.js.map b/clients/libs/components/__dist/esm/index2.js.map
new file mode 100644
index 0000000000..ef4a180d48
--- /dev/null
+++ b/clients/libs/components/__dist/esm/index2.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"index2.js","sources":["../../src/icons/ArrowUpIcon.tsx","../../src/icons/ArrowDownIcon.tsx","../../src/icons/ArrowLeftIcon.tsx","../../src/icons/BotIcon.tsx","../../src/icons/ChartIcon.tsx","../../src/icons/EditIcon.tsx","../../src/icons/InfoIcon.tsx","../../src/icons/NetIcon.tsx","../../src/icons/PagesIcon.tsx","../../src/icons/SearchIcon.tsx","../../src/icons/SettingsIcon.tsx","../../src/icons/CloseIcon.tsx","../../src/icons/UploadImageIcon.tsx"],"sourcesContent":["import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst ArrowUpIcon = createIcon({\n displayName: 'ArrowUpIcon',\n viewBox: '4 4 15 15',\n path: (\n <>\n \n >\n ),\n});\n\nexport default ArrowUpIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst ArrowDownIcon = createIcon({\n displayName: 'ArrowDownIcon',\n viewBox: '4 4 15 15',\n path: (\n <>\n \n >\n ),\n});\n\nexport default ArrowDownIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst ArrowLeftIcon = createIcon({\n displayName: 'ArrowUpIcon',\n viewBox: '0 0 12 18',\n path: (\n <>\n \n >\n ),\n});\n\nexport default ArrowLeftIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst BotIcon = createIcon({\n displayName: 'BotIcon',\n path: (\n <>\n \n \n >\n ),\n});\n\nexport default BotIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst ChartIcon = createIcon({\n displayName: 'CloseIcon',\n viewBox: '0 0 21 21',\n path: (\n <>\n \n \n \n \n \n \n \n \n \n >\n ),\n});\n\nexport default ChartIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst EditIcon = createIcon({\n displayName: 'EditIcon',\n path: (\n <>\n \n \n >\n ),\n});\n\nexport default EditIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst InfoIcon = createIcon({\n displayName: 'InfoIcon',\n viewBox: '0 0 14 14',\n path: (\n <>\n \n \n \n \n >\n ),\n});\n\nexport default InfoIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst NetIcon = createIcon({\n displayName: 'NetIcon',\n path: (\n <>\n \n \n \n \n >\n ),\n});\n\nexport default NetIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst PagesIcon = createIcon({\n displayName: 'PagesIcon',\n path: (\n <>\n \n \n \n >\n ),\n});\n\nexport default PagesIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst SearchIcon = createIcon({\n displayName: 'SearchIcon',\n path: (\n \n ),\n});\n\nexport default SearchIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst SettingsIcon = createIcon({\n displayName: 'PagesIcon',\n path: (\n <>\n \n \n >\n ),\n});\n\nexport default SettingsIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst CloseIcon = createIcon({\n displayName: 'CloseIcon',\n viewBox: '0 0 10 10',\n path: (\n <>\n \n >\n ),\n});\n\nexport default CloseIcon;\n","import React from 'react';\nimport { createIcon } from '@chakra-ui/react';\n\nconst UploadImageIcon = createIcon({\n displayName: 'UploadImageIcon',\n viewBox: '0 0 84 84',\n path: (\n <>\n \n \n \n \n \n \n \n >\n ),\n});\n\nexport default UploadImageIcon;\n"],"names":["ArrowUpIcon","createIcon","displayName","viewBox","path","React","fill","d","ArrowDownIcon","ArrowLeftIcon","stroke","strokeLinecap","strokeWidth","clipRule","BotIcon","ChartIcon","clipPath","id","EditIcon","cx","cy","r","InfoIcon","NetIcon","fillRule","PagesIcon","SearchIcon","SettingsIcon","CloseIcon","UploadImageIcon","opacity"],"mappings":";;;AAGA,MAAMA,WAAW,gBAAGC,UAAU,CAAC;EAC7BC,WAAW,EAAE,aAAa;EAC1BC,OAAO,EAAE,WAAW;EACpBC,IAAI,iBACFC,uDACEA;IACEC,IAAI,EAAC,cAAc;IACnBC,CAAC,EAAC;IACF,CACD;CAEN,CAAC;;ACXF,MAAMC,aAAa,gBAAGP,UAAU,CAAC;EAC/BC,WAAW,EAAE,eAAe;EAC5BC,OAAO,EAAE,WAAW;EACpBC,IAAI,iBACFC,uDACEA;IACEC,IAAI,EAAC,cAAc;IACnBC,CAAC,EAAC;IACF,CACD;CAEN,CAAC;;ACXF,MAAME,aAAa,gBAAGR,UAAU,CAAC;EAC/BC,WAAW,EAAE,aAAa;EAC1BC,OAAO,EAAE,WAAW;EACpBC,IAAI,iBACFC,uDACEA;IACEK,MAAM,EAAC,cAAc;IACrBC,aAAa,EAAC,QAAQ;IACtBC,WAAW,EAAC,KAAK;IACjBL,CAAC,EAAC,mKAAmK;IACrKM,QAAQ,EAAC;IACT,CACD;CAEN,CAAC;;ACdF,MAAMC,OAAO,gBAAGb,UAAU,CAAC;EACzBC,WAAW,EAAE,SAAS;EACtBE,IAAI,iBACFC,uDACEA;IACEE,CAAC,EAAC,0bAA0b;IAC5bD,IAAI,EAAC;IACL,eACFD;IACEE,CAAC,EAAC,6IAA6I;IAC/ID,IAAI,EAAC;IACL,CACD;CAEN,CAAC;;ACdF,MAAMS,SAAS,gBAAGd,UAAU,CAAC;EAC3BC,WAAW,EAAE,WAAW;EACxBC,OAAO,EAAE,WAAW;EACpBC,IAAI,iBACFC,uDACEA;IAAGC,IAAI,EAAC,cAAc;IAACU,QAAQ,EAAC;kBAC9BX;IAAME,CAAC,EAAC;IAAiM,eACzMF;IAAME,CAAC,EAAC;IAA8D,CACpE,eACJF,+CACEA;IAAUY,EAAE,EAAC;kBACXZ;IAAMC,IAAI,EAAC,MAAM;IAACC,CAAC,EAAC;IAA2B,CACtC,CACN,CACN;CAEN,CAAC;;AChBF,MAAMW,QAAQ,gBAAGjB,UAAU,CAAC;EAC1BC,WAAW,EAAE,UAAU;EACvBE,IAAI,iBACFC,uDACEA;IAAQc,EAAE,EAAC,IAAI;IAACC,EAAE,EAAC,IAAI;IAACC,CAAC,EAAC,MAAM;IAACf,IAAI,EAAC,MAAM;IAACI,MAAM,EAAC;IAAiB,eACrEL;IACEC,IAAI,EAAC,cAAc;IACnBC,CAAC,EAAC;IACF,CACD;CAEN,CAAC;;ACXF,MAAMe,QAAQ,gBAAGrB,UAAU,CAAC;EAC1BC,WAAW,EAAE,UAAU;EACvBC,OAAO,EAAE,WAAW;EACpBC,IAAI,iBACFC,uDACEA;IACEC,IAAI,EAAC,cAAc;IACnBC,CAAC,EAAC;IACF,eACFF;IACEC,IAAI,EAAC,cAAc;IACnBC,CAAC,EAAC;IACF,eACFF;IAAQc,EAAE,EAAC,OAAO;IAACC,EAAE,EAAC,OAAO;IAACC,CAAC,EAAC,OAAO;IAACf,IAAI,EAAC;IAAS,eACtDD;IACEC,IAAI,EAAC,cAAc;IACnBC,CAAC,EAAC;IACF,CACD;CAEN,CAAC;;ACpBF,MAAMgB,OAAO,gBAAGtB,UAAU,CAAC;EACzBC,WAAW,EAAE,SAAS;EACtBE,IAAI,iBACFC,uDACEA;IACEE,CAAC,EAAC,uKAAuK;IACzKD,IAAI,EAAC;IACL,eACFD;IACEmB,QAAQ,EAAC,SAAS;IAClBX,QAAQ,EAAC,SAAS;IAClBN,CAAC,EAAC,0QAA0Q;IAC5QD,IAAI,EAAC;IACL,eACFD;IACEE,CAAC,EAAC,4bAA4b;IAC9bD,IAAI,EAAC;IACL,eACFD;IACEmB,QAAQ,EAAC,SAAS;IAClBX,QAAQ,EAAC,SAAS;IAClBN,CAAC,EAAC,k7BAAk7B;IACp7BD,IAAI,EAAC;IACL,CACD;CAEN,CAAC;;AC1BF,MAAMmB,SAAS,gBAAGxB,UAAU,CAAC;EAC3BC,WAAW,EAAE,WAAW;EACxBE,IAAI,iBACFC,uDACEA;IACEmB,QAAQ,EAAC,SAAS;IAClBX,QAAQ,EAAC,SAAS;IAClBN,CAAC,EAAC,0FAA0F;IAC5FD,IAAI,EAAC;IACL,eACFD;IACEmB,QAAQ,EAAC,SAAS;IAClBX,QAAQ,EAAC,SAAS;IAClBN,CAAC,EAAC,mBAAmB;IACrBD,IAAI,EAAC;IACL,eACFD;IACEE,CAAC,EAAC,8CAA8C;IAChDD,IAAI,EAAC;IACL,CACD;CAEN,CAAC;;ACtBF,MAAMoB,UAAU,gBAAGzB,UAAU,CAAC;EAC5BC,WAAW,EAAE,YAAY;EACzBE,IAAI,iBACFC;IACEE,CAAC,EAAC,iVAAiV;IACnVD,IAAI,EAAC;IACL;CAEL,CAAC;;ACRF,MAAMqB,YAAY,gBAAG1B,UAAU,CAAC;EAC9BC,WAAW,EAAE,WAAW;EACxBE,IAAI,iBACFC,uDACEA;IACEE,CAAC,EAAC,uvEAAuvE;IACzvED,IAAI,EAAC;IACL,eACFD;IACEE,CAAC,EAAC,yOAAyO;IAC3OD,IAAI,EAAC;IACL,CACD;CAEN,CAAC;;ACdF,MAAMsB,SAAS,gBAAG3B,UAAU,CAAC;EAC3BC,WAAW,EAAE,WAAW;EACxBC,OAAO,EAAE,WAAW;EACpBC,IAAI,iBACFC,uDACEA;IACEC,IAAI,EAAC,cAAc;IACnBkB,QAAQ,EAAC,SAAS;IAClBd,MAAM,EAAC,cAAc;IACrBC,aAAa,EAAC,QAAQ;IACtBC,WAAW,EAAC,KAAK;IACjBL,CAAC,EAAC;IACF,CACD;CAEN,CAAC;;ACfF,MAAMsB,eAAe,gBAAG5B,UAAU,CAAC;EACjCC,WAAW,EAAE,iBAAiB;EAC9BC,OAAO,EAAE,WAAW;EACpBC,IAAI,iBACFC,uDACEA;IAAQc,EAAE,EAAC,IAAI;IAACC,EAAE,EAAC,IAAI;IAACC,CAAC,EAAC,MAAM;IAACf,IAAI,EAAC,SAAS;IAACI,MAAM,EAAC;IAAS,eAChEL;IAAMC,IAAI,EAAC,MAAM;IAACC,CAAC,EAAC,8BAA8B;IAACuB,OAAO,EAAC;IAAU,eACrEzB;IAAMC,IAAI,EAAC,MAAM;IAACC,CAAC,EAAC;IAAmD,eACvEF;IAAMC,IAAI,EAAC,MAAM;IAACC,CAAC,EAAC;IAAiD,eACrEF;IACEC,IAAI,EAAC,SAAS;IACdI,MAAM,EAAC,MAAM;IACbH,CAAC,EAAC;IACF,eACFF;IAAQc,EAAE,EAAC,IAAI;IAACC,EAAE,EAAC,IAAI;IAACC,CAAC,EAAC,MAAM;IAACf,IAAI,EAAC,MAAM;IAACI,MAAM,EAAC;IAAS,eAC7DL;IACEC,IAAI,EAAC,MAAM;IACXC,CAAC,EAAC;IACF,CACD;CAEN,CAAC;;;;"}
\ No newline at end of file
diff --git a/clients/libs/components/__dist/esm/index3.js b/clients/libs/components/__dist/esm/index3.js
new file mode 100644
index 0000000000..6695060251
--- /dev/null
+++ b/clients/libs/components/__dist/esm/index3.js
@@ -0,0 +1,3 @@
+export * from 'react-final-form';
+export { FORM_ERROR } from 'final-form';
+//# sourceMappingURL=index3.js.map
diff --git a/clients/libs/components/__dist/esm/index3.js.map b/clients/libs/components/__dist/esm/index3.js.map
new file mode 100644
index 0000000000..46a261efe5
--- /dev/null
+++ b/clients/libs/components/__dist/esm/index3.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"index3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
\ No newline at end of file
diff --git a/clients/libs/components/__dist/esm/index4.js b/clients/libs/components/__dist/esm/index4.js
new file mode 100644
index 0000000000..d1f774f945
--- /dev/null
+++ b/clients/libs/components/__dist/esm/index4.js
@@ -0,0 +1,697 @@
+import { extendTheme } from '@chakra-ui/react';
+export * from '@chakra-ui/react';
+import { mode } from '@chakra-ui/theme-tools';
+
+var colors = {
+ transparent: 'transparent',
+ black: '#000000',
+ white: '#FFFFFF',
+ red: {
+ 50: '#FBCDCD',
+ 100: '#FF8C8C',
+ 200: '#FF2B4E',
+ 300: '#D92E4A',
+ 400: '#B42940'
+ },
+ gray: {
+ 50: '#EEEEEE',
+ 100: '#D1CDD2',
+ 200: '#AAAAAA',
+ 300: '#9B9B9B',
+ 400: '#424242'
+ },
+ green: {
+ 50: '#BBF1E5',
+ 100: '#9AE3D3',
+ 200: '#50E3C2',
+ 300: '#5ACAB1',
+ 400: '#4A9A88'
+ },
+ pink: {
+ 50: '#F9C2E5',
+ 100: '#F996C5',
+ 200: '#EE0099',
+ 300: '#E2058A',
+ 400: '#B4006C'
+ },
+ blue: {
+ 50: '#BFDDF6',
+ 100: '#8DC4F4',
+ 200: '#1E88E5',
+ 300: '#0D76D1',
+ 400: '#005EB0'
+ },
+ yellow: {
+ 50: '#FFE5BF',
+ 100: '#FFD18C',
+ 200: '#FFCF23',
+ 300: '#FFCF23',
+ 400: '#DDAD03'
+ }
+};
+
+var fonts = {
+ heading: 'Nunito Sans',
+ body: 'Nunito Sans'
+};
+
+
+
+var foundations = {
+ __proto__: null,
+ colors: colors,
+ fonts: fonts
+};
+
+// solid
+const disabled = {
+ solid: {
+ bg: 'gray.100',
+ color: 'white'
+ },
+ outline: {
+ color: 'gray.100',
+ borderColor: 'gray.100',
+ bg: 'transparent'
+ },
+ link: {
+ color: 'gray.100'
+ }
+};
+const sizes = {
+ lg: {
+ px: 8
+ },
+ md: {
+ px: 6
+ },
+ sm: {
+ px: 4
+ },
+ sx: {
+ px: 3
+ }
+};
+const variantOutline = props => {
+ const {
+ colorScheme: c
+ } = props;
+ const defaultStyleProps = {
+ bg: 'transparent',
+ borderRadius: '50px',
+ _focus: {
+ boxShadow: 'none'
+ },
+ _disabled: {
+ color: 'gray.100',
+ borderColor: 'gray.100',
+ bg: 'transparent'
+ }
+ };
+ // Gray works with dark / light mode.
+ if (c === 'gray') {
+ return {
+ ...defaultStyleProps,
+ color: mode('black', 'white')(props),
+ borderColor: mode('black', 'white')(props),
+ _hover: {
+ color: mode('gray.400', 'gray.300')(props),
+ borderColor: mode('gray.400', 'gray.300')(props),
+ bg: 'transparent',
+ _disabled: defaultStyleProps._disabled
+ },
+ _active: {
+ color: mode('gray.300', 'gray.400')(props),
+ borderColor: mode('gray.300', 'gray.400')(props),
+ bg: 'transparent',
+ _disabled: defaultStyleProps._disabled
+ }
+ };
+ }
+ // Theme for all colors.
+ return {
+ ...defaultStyleProps,
+ color: c + ".400",
+ borderColor: c + ".400",
+ _hover: {
+ color: c + ".300",
+ borderColor: c + ".300",
+ bg: 'transparent',
+ _disabled: defaultStyleProps._disabled
+ },
+ _active: {
+ color: c + ".200",
+ borderColor: c + ".200",
+ bg: 'transparent',
+ _disabled: defaultStyleProps._disabled
+ }
+ };
+};
+const variantGhost = props => {
+ const {
+ colorScheme: c
+ } = props;
+ const defaultStyleProps = {
+ bg: 'transparent',
+ borderColor: 'transparent',
+ _focus: {
+ boxShadow: 'none'
+ },
+ _disabled: {
+ color: 'gray.100'
+ }
+ };
+ if (c === 'gray') {
+ return {
+ ...defaultStyleProps,
+ color: mode('black', 'white')(props),
+ borderColor: mode('black', 'white')(props),
+ _hover: {
+ color: mode('gray.400', 'gray.300')(props),
+ borderColor: mode('gray.400', 'gray.300')(props),
+ bg: 'transparent',
+ _disabled: defaultStyleProps._disabled
+ },
+ _active: {
+ color: mode('gray.300', 'gray.400')(props),
+ borderColor: mode('gray.300', 'gray.400')(props),
+ bg: 'transparent',
+ _disabled: defaultStyleProps._disabled
+ }
+ };
+ }
+ if (c === 'pink') {
+ return {
+ ...defaultStyleProps,
+ color: 'pink.200',
+ _hover: {
+ bg: 'transparent',
+ color: 'pink.300'
+ },
+ _active: {
+ bg: 'transparent'
+ }
+ };
+ }
+ return {
+ ...defaultStyleProps,
+ color: c + ".400",
+ _hover: {
+ color: c + ".300",
+ borderColor: 'transparent',
+ bg: 'transparent',
+ textDecoration: 'none',
+ _disabled: defaultStyleProps._disabled
+ },
+ _active: {
+ color: c + ".200",
+ borderColor: 'transparent',
+ bg: 'transparent',
+ textDecoration: 'none',
+ _disabled: defaultStyleProps._disabled
+ }
+ };
+};
+const variantLink = props => {
+ return {
+ padding: 0,
+ height: "auto",
+ lineHeight: "normal",
+ verticalAlign: "baseline",
+ color: mode("black", "white")(props),
+ _hover: {
+ textDecoration: "underline",
+ _disabled: {
+ textDecoration: "none"
+ }
+ },
+ _active: {
+ color: mode("pink.200", "pink.200")(props)
+ }
+ };
+};
+const variantSolid = _ref => {
+ let {
+ colorScheme: c
+ } = _ref;
+ const _disabled = {
+ bg: 'gray.100',
+ color: 'white'
+ };
+ return {
+ bg: c + ".200",
+ borderRadius: '50px',
+ color: 'white',
+ _hover: {
+ bg: c + ".300",
+ _disabled
+ },
+ _active: {
+ bg: c + ".400",
+ _disabled
+ },
+ _focus: {
+ boxShadow: 'none',
+ _disabled
+ },
+ _disabled
+ };
+};
+var Button = {
+ baseStyle: {
+ fontWeight: '800',
+ textTransform: 'uppercase',
+ borderRadius: 0,
+ minW: 36
+ },
+ sizes,
+ variants: {
+ outline: variantOutline,
+ ghost: variantGhost,
+ solid: variantSolid,
+ link: variantLink,
+ tag: _ref2 => {
+ let {
+ colorScheme
+ } = _ref2;
+ return {
+ bg: colorScheme + ".100",
+ borderColor: 'trasparent',
+ color: "black",
+ borderRadius: '4px',
+ textTransform: 'normal',
+ // minW: 'auto',
+ _hover: 'none',
+ _active: 'none',
+ _focus: 'none'
+ };
+ },
+ dropdown: _ref3 => {
+ let {
+ color
+ } = _ref3;
+ return {
+ bg: 'transparet',
+ borderColor: 'trasparent',
+ color,
+ // minW: 'auto',
+ _hover: {
+ color
+ },
+ _active: {
+ color
+ },
+ _focus: {
+ boxShadow: 'none'
+ }
+ };
+ },
+ tableLink: _ref4 => {
+ let {
+ colorScheme
+ } = _ref4;
+ return {
+ bg: 'transparent',
+ borderColor: 'transparent',
+ color: "black",
+ // minW: 'auto',
+ _hover: {
+ color: colorScheme + ".400",
+ borderColor: 'transparent',
+ bg: 'transparent',
+ textDecoration: 'none',
+ _disabled: disabled.link
+ },
+ _active: {
+ color: colorScheme + ".200",
+ borderColor: 'transparent',
+ bg: 'transparent',
+ textDecoration: 'none',
+ _disabled: disabled.link
+ },
+ _focus: {
+ boxShadow: 'none'
+ },
+ _disabled: disabled.link
+ };
+ }
+ },
+ defaultProps: {
+ variant: 'solid',
+ colorScheme: 'pink',
+ size: 'sm'
+ }
+};
+
+var Container = {
+ baseStyle: {
+ w: '100%',
+ mx: 'auto',
+ maxW: '100%',
+ py: '20px',
+ px: [6, null, null, 12]
+ }
+};
+
+var FormLabel = {
+ baseStyle: {
+ color: 'gray.200',
+ fontSize: 'sm',
+ textTransform: 'uppercase',
+ margin: '0'
+ }
+};
+
+const baseStyle = {
+ fontFamily: 'heading',
+ fontWeight: 'bold'
+};
+const sizes$1 = {
+ xs: {
+ fontSize: 'xs'
+ },
+ sm: {
+ fontWeight: 'extrabold',
+ fontSize: ['xs', null, 'sm']
+ },
+ md: {
+ fontWeight: 'bold',
+ fontSize: ['sm', null, 'md']
+ },
+ lg: {
+ fontWeight: 'bold',
+ fontSize: ['md', null, 'lg']
+ },
+ xl: {
+ fontWeight: 'black',
+ fontSize: ['lg', null, 'xl']
+ },
+ '2xl': {
+ fontWeight: 'black',
+ fontSize: ['xl', null, '2xl']
+ },
+ '3xl': {
+ fontWeight: 'black',
+ fontSize: ['2xl', null, '3xl']
+ },
+ '4xl': {
+ fontWeight: 'black',
+ fontSize: ['3xl', null, '4xl']
+ },
+ '5xl': {
+ fontWeight: 'black',
+ fontSize: ['4xl', null, '5xl']
+ },
+ '6xl': {
+ fontWeight: 'black',
+ fontSize: ['5xl', null, '6xl']
+ }
+};
+const defaultProps = {
+ size: '2xl'
+};
+var Heading = {
+ baseStyle,
+ sizes: sizes$1,
+ defaultProps
+};
+
+var Input = {
+ variants: {
+ flushed: _ref => {
+ let {
+ colorScheme
+ } = _ref;
+ return {
+ field: {
+ fontSize: '16px',
+ py: 1,
+ color: 'black',
+ borderBottomWidth: '1px',
+ borderBottomColor: 'gray.200',
+ _placeholder: {
+ color: 'gray.400'
+ },
+ _hover: {
+ borderColor: colorScheme + ".200"
+ },
+ _focus: {
+ outline: 'none',
+ borderColor: colorScheme + ".200",
+ boxShadow: 'none'
+ },
+ _disabled: {
+ borderColor: 'gray.200',
+ bg: 'transparent',
+ color: 'gray.50',
+ _placeholder: {
+ color: 'gray.50'
+ }
+ },
+ _invalid: {
+ borderColor: 'red.100'
+ }
+ }
+ };
+ },
+ outline: _ref2 => {
+ let {
+ colorScheme
+ } = _ref2;
+ return {
+ field: {
+ bg: 'white',
+ borderColor: 'gray.200',
+ _hover: {
+ borderColor: colorScheme + ".200"
+ },
+ _focus: {
+ outline: 'none',
+ borderColor: colorScheme + ".200",
+ boxShadow: 'none'
+ },
+ _disabled: {
+ borderColor: 'gray.200',
+ color: 'gray.50',
+ _placeholder: {
+ color: 'gray.50'
+ }
+ },
+ _invalid: {
+ borderColor: 'red.100'
+ }
+ }
+ };
+ }
+ },
+ defaultProps: {
+ size: 'sm',
+ variant: 'flushed',
+ colorScheme: 'pink'
+ }
+};
+
+const highlighted = {
+ color: 'pink.200',
+ fontWeight: 'bold',
+ _hover: {
+ color: 'pink.300'
+ },
+ _focus: {
+ color: 'pink.400',
+ boxShadow: 'none'
+ }
+};
+var Link = {
+ variants: {
+ highlighted
+ }
+};
+
+const baseButton = {
+ textTransform: 'uppercase'
+};
+const baseList = {
+ borderRadius: 'none',
+ border: 'none',
+ boxShadow: 'sm'
+};
+const baseItem = {
+ _focus: {
+ bg: 'transparent'
+ },
+ _active: {
+ bg: 'transparent'
+ },
+ _expanded: {
+ bg: 'transparent'
+ }
+};
+const baseGroupTitle = {
+ fontWeight: 'normal',
+ fontSize: 'inherit'
+};
+const baseStyle$1 = _ref => {
+ let {
+ colorScheme
+ } = _ref;
+ return {
+ button: baseButton,
+ list: baseList,
+ item: {
+ ...baseItem,
+ _hover: {
+ bg: colorScheme + ".100"
+ }
+ },
+ groupTitle: baseGroupTitle
+ };
+};
+const link = {
+ item: {
+ ...baseItem,
+ _hover: {
+ bg: 'transparent',
+ color: 'pink.200'
+ }
+ }
+};
+var Menu = {
+ baseStyle: baseStyle$1,
+ variants: {
+ link
+ },
+ defaultProps: {
+ colorScheme: 'gray'
+ }
+};
+
+var Modal = {
+ baseStyle: {
+ dialog: {
+ borderRadius: 'none'
+ },
+ header: {
+ fontSize: '3xl',
+ fontWeight: 'black'
+ }
+ },
+ defaultProps: {
+ isCentered: true
+ }
+};
+
+const baseStyle$2 = _ref => {
+ let {
+ colorScheme
+ } = _ref;
+ return {
+ control: {
+ border: '1px solid',
+ borderColor: 'gray.400',
+ _checked: {
+ bg: "none",
+ borderColor: colorScheme + ".200",
+ _before: {
+ w: '100%',
+ h: '100%',
+ bg: colorScheme + ".200",
+ borderColor: 'white',
+ border: "1px solid",
+ color: "white"
+ }
+ },
+ _hover: {
+ borderColor: colorScheme + ".200"
+ },
+ _focus: {
+ boxShadow: 'none'
+ },
+ _disabled: {
+ borderColor: 'gray.100',
+ bg: 'gray.100',
+ _hover: {
+ borderColor: 'gray.100',
+ bg: 'gray.100'
+ }
+ }
+ }
+ };
+};
+var Radio = {
+ baseStyle: baseStyle$2,
+ defaultProps: {
+ colorScheme: 'pink'
+ }
+};
+
+var Select = {
+ variants: {
+ ...Input.variants
+ },
+ defaultProps: {
+ ...Input.defaultProps
+ }
+};
+
+const variantColor = props => {
+ const {
+ colorScheme: c
+ } = props;
+ return {
+ th: {
+ color: 'gray.400',
+ fontWeight: 'normal',
+ borderColor: mode(c + ".50", c + ".700")(props)
+ },
+ td: {
+ borderColor: mode(c + ".50", c + ".700")(props)
+ }
+ };
+};
+var Table = {
+ variants: {
+ simple: variantColor,
+ striped: variantColor
+ }
+};
+
+var Tag = {
+ defaultProps: {
+ size: 'lg'
+ }
+};
+
+var Text = {
+ baseStyle: {
+ textTransform: 'none',
+ color: 'gray.400'
+ }
+};
+
+
+
+var components = {
+ __proto__: null,
+ Button: Button,
+ Container: Container,
+ FormLabel: FormLabel,
+ Heading: Heading,
+ Input: Input,
+ Link: Link,
+ Menu: Menu,
+ Modal: Modal,
+ Radio: Radio,
+ Select: Select,
+ Table: Table,
+ Tag: Tag,
+ Text: Text
+};
+
+var index = /*#__PURE__*/extendTheme({
+ ...foundations,
+ components
+});
+
+export { index as theme };
+//# sourceMappingURL=index4.js.map
diff --git a/clients/libs/components/__dist/esm/index4.js.map b/clients/libs/components/__dist/esm/index4.js.map
new file mode 100644
index 0000000000..4a39dc8182
--- /dev/null
+++ b/clients/libs/components/__dist/esm/index4.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"index4.js","sources":["../../src/chakra/theme/foundations/colors.ts","../../src/chakra/theme/foundations/fonts.ts","../../src/chakra/theme/components/Button.ts","../../src/chakra/theme/components/Container.ts","../../src/chakra/theme/components/FormLabel.ts","../../src/chakra/theme/components/Heading.ts","../../src/chakra/theme/components/Input.ts","../../src/chakra/theme/components/Link.ts","../../src/chakra/theme/components/Menu.ts","../../src/chakra/theme/components/Modal.ts","../../src/chakra/theme/components/Radio.ts","../../src/chakra/theme/components/Select.ts","../../src/chakra/theme/components/Table.ts","../../src/chakra/theme/components/Tag.ts","../../src/chakra/theme/components/Text.ts","../../src/chakra/theme/index.ts"],"sourcesContent":["export default {\n transparent: 'transparent',\n black: '#000000',\n white: '#FFFFFF',\n red: {\n 50: '#FBCDCD',\n 100: '#FF8C8C',\n 200: '#FF2B4E',\n 300: '#D92E4A',\n 400: '#B42940',\n },\n gray: {\n 50: '#EEEEEE',\n 100: '#D1CDD2',\n 200: '#AAAAAA',\n 300: '#9B9B9B',\n 400: '#424242',\n },\n green: {\n 50: '#BBF1E5',\n 100: '#9AE3D3',\n 200: '#50E3C2',\n 300: '#5ACAB1',\n 400: '#4A9A88',\n },\n pink: {\n 50: '#F9C2E5',\n 100: '#F996C5',\n 200: '#EE0099',\n 300: '#E2058A',\n 400: '#B4006C',\n },\n blue: {\n 50: '#BFDDF6',\n 100: '#8DC4F4',\n 200: '#1E88E5',\n 300: '#0D76D1',\n 400: '#005EB0',\n },\n yellow: {\n 50: '#FFE5BF',\n 100: '#FFD18C',\n 200: '#FFCF23',\n 300: '#FFCF23',\n 400: '#DDAD03',\n },\n};\n","export default {\n heading: 'Nunito Sans',\n body: 'Nunito Sans',\n};\n","// solid\n// outline / dark mode e light mode\n// ghost\n// link\nimport { mode } from '@chakra-ui/theme-tools';\nimport {\n SystemStyleFunction,\n StyleFunctionProps,\n SystemStyleObject,\n} from '@chakra-ui/theme-tools';\n\nconst disabled = {\n solid: {\n bg: 'gray.100',\n color: 'white',\n },\n outline: {\n color: 'gray.100',\n borderColor: 'gray.100',\n bg: 'transparent',\n },\n link: {\n color: 'gray.100',\n },\n};\n\nconst sizes: Record = {\n lg: {\n px: 8,\n },\n md: {\n px: 6,\n },\n sm: {\n px: 4,\n },\n sx: {\n px: 3,\n },\n};\n\nconst variantOutline: SystemStyleFunction = props => {\n const { colorScheme: c } = props;\n const defaultStyleProps = {\n bg: 'transparent',\n borderRadius: '50px',\n _focus: {\n boxShadow: 'none',\n },\n _disabled: {\n color: 'gray.100',\n borderColor: 'gray.100',\n bg: 'transparent',\n },\n };\n\n // Gray works with dark / light mode.\n if (c === 'gray') {\n return {\n ...defaultStyleProps,\n color: mode('black', 'white')(props),\n borderColor: mode('black', 'white')(props),\n _hover: {\n color: mode('gray.400', 'gray.300')(props),\n borderColor: mode('gray.400', 'gray.300')(props),\n bg: 'transparent',\n _disabled: defaultStyleProps._disabled,\n },\n _active: {\n color: mode('gray.300', 'gray.400')(props),\n borderColor: mode('gray.300', 'gray.400')(props),\n bg: 'transparent',\n _disabled: defaultStyleProps._disabled,\n },\n };\n }\n // Theme for all colors.\n return {\n ...defaultStyleProps,\n color: `${c}.400`,\n borderColor: `${c}.400`,\n _hover: {\n color: `${c}.300`,\n borderColor: `${c}.300`,\n bg: 'transparent',\n _disabled: defaultStyleProps._disabled,\n },\n _active: {\n color: `${c}.200`,\n borderColor: `${c}.200`,\n bg: 'transparent',\n _disabled: defaultStyleProps._disabled,\n },\n };\n};\n\nconst variantGhost: SystemStyleFunction = props => {\n const { colorScheme: c } = props;\n const defaultStyleProps = {\n bg: 'transparent',\n borderColor: 'transparent',\n _focus: {\n boxShadow: 'none',\n },\n _disabled: {\n color: 'gray.100',\n },\n };\n\n if (c === 'gray') {\n return {\n ...defaultStyleProps,\n color: mode('black', 'white')(props),\n borderColor: mode('black', 'white')(props),\n _hover: {\n color: mode('gray.400', 'gray.300')(props),\n borderColor: mode('gray.400', 'gray.300')(props),\n bg: 'transparent',\n _disabled: defaultStyleProps._disabled,\n },\n _active: {\n color: mode('gray.300', 'gray.400')(props),\n borderColor: mode('gray.300', 'gray.400')(props),\n bg: 'transparent',\n _disabled: defaultStyleProps._disabled,\n },\n };\n }\n\n if (c === 'pink') {\n return {\n ...defaultStyleProps,\n color: 'pink.200',\n _hover: {\n bg: 'transparent',\n color: 'pink.300',\n },\n _active: {\n bg: 'transparent',\n },\n };\n }\n\n return {\n ...defaultStyleProps,\n color: `${c}.400`,\n _hover: {\n color: `${c}.300`,\n borderColor: 'transparent',\n bg: 'transparent',\n textDecoration: 'none',\n _disabled: defaultStyleProps._disabled,\n },\n _active: {\n color: `${c}.200`,\n borderColor: 'transparent',\n bg: 'transparent',\n textDecoration: 'none',\n\n _disabled: defaultStyleProps._disabled,\n },\n };\n};\n\nconst variantLink: SystemStyleFunction = (props) => {\n return {\n padding: 0,\n height: \"auto\",\n lineHeight: \"normal\",\n verticalAlign: \"baseline\",\n color: mode(`black`, `white`)(props),\n _hover: {\n textDecoration: \"underline\",\n _disabled: {\n textDecoration: \"none\",\n },\n },\n _active: {\n color: mode(`pink.200`, `pink.200`)(props),\n },\n }\n}\n\n\nconst variantSolid: SystemStyleFunction = ({ colorScheme: c }): any => {\n const _disabled = {\n bg: 'gray.100',\n color: 'white',\n };\n\n return {\n bg: `${c}.200`,\n borderRadius: '50px',\n color: 'white',\n _hover: {\n bg: `${c}.300`,\n _disabled,\n },\n _active: {\n bg: `${c}.400`,\n _disabled,\n },\n _focus: {\n boxShadow: 'none',\n _disabled,\n },\n _disabled,\n };\n};\n\nexport default {\n baseStyle: {\n fontWeight: '800',\n textTransform: 'uppercase',\n borderRadius: 0,\n minW: 36\n },\n sizes,\n variants: {\n outline: variantOutline,\n ghost: variantGhost,\n solid: variantSolid,\n link: variantLink,\n tag: ({ colorScheme }: StyleFunctionProps): any => ({\n bg: `${colorScheme}.100`,\n borderColor: 'trasparent',\n color: `black`,\n borderRadius: '4px',\n textTransform: 'normal',\n // minW: 'auto',\n _hover: 'none',\n _active: 'none',\n _focus: 'none',\n }),\n dropdown: ({ color }: StyleFunctionProps): any => ({\n bg: 'transparet',\n borderColor: 'trasparent',\n color,\n // minW: 'auto',\n _hover: {\n color,\n },\n _active: {\n color,\n },\n _focus: {\n boxShadow: 'none',\n },\n }),\n tableLink: ({ colorScheme }: StyleFunctionProps): any => ({\n bg: 'transparent',\n borderColor: 'transparent',\n color: `black`,\n // minW: 'auto',\n _hover: {\n color: `${colorScheme}.400`,\n borderColor: 'transparent',\n bg: 'transparent',\n textDecoration: 'none',\n _disabled: disabled.link,\n },\n _active: {\n color: `${colorScheme}.200`,\n borderColor: 'transparent',\n bg: 'transparent',\n textDecoration: 'none',\n _disabled: disabled.link,\n },\n _focus: {\n boxShadow: 'none',\n },\n _disabled: disabled.link,\n }),\n },\n\n defaultProps: {\n variant: 'solid',\n colorScheme: 'pink',\n size: 'sm',\n },\n};\n","export default {\n baseStyle: {\n w: '100%',\n mx: 'auto',\n maxW: '100%',\n py: '20px',\n px: [6, null, null, 12],\n },\n};\n","export default {\n baseStyle: {\n color: 'gray.200',\n fontSize: 'sm',\n textTransform: 'uppercase',\n margin: '0',\n },\n};\n","import { SystemStyleObject } from '@chakra-ui/theme-tools';\n\nconst baseStyle: SystemStyleObject = {\n fontFamily: 'heading',\n fontWeight: 'bold',\n};\n\nconst sizes: Record = {\n xs: {\n fontSize: 'xs',\n },\n sm: {\n fontWeight: 'extrabold',\n fontSize: ['xs', null, 'sm'],\n },\n md: {\n fontWeight: 'bold',\n fontSize: ['sm', null, 'md'],\n },\n lg: {\n fontWeight: 'bold',\n fontSize: ['md', null, 'lg'],\n },\n xl: {\n fontWeight: 'black',\n fontSize: ['lg', null, 'xl'],\n },\n '2xl': {\n fontWeight: 'black',\n fontSize: ['xl', null, '2xl'],\n },\n '3xl': {\n fontWeight: 'black',\n fontSize: ['2xl', null, '3xl'],\n },\n '4xl': {\n fontWeight: 'black',\n fontSize: ['3xl', null, '4xl'],\n },\n '5xl': {\n fontWeight: 'black',\n fontSize: ['4xl', null, '5xl'],\n },\n '6xl': {\n fontWeight: 'black',\n fontSize: ['5xl', null, '6xl'],\n },\n};\n\nconst defaultProps: SystemStyleObject = {\n size: '2xl',\n};\n\nexport default {\n baseStyle,\n sizes,\n defaultProps,\n};\n","import { SystemStyleObject } from '@chakra-ui/theme-tools';\n\ntype Props = {\n colorScheme: 'pink' | any;\n};\n\nexport default {\n variants: {\n flushed: ({ colorScheme }: Props): any => ({\n field: {\n fontSize: '16px',\n py: 1,\n color: 'black',\n borderBottomWidth: '1px',\n borderBottomColor: 'gray.200',\n _placeholder: {\n color: 'gray.400',\n },\n _hover: {\n borderColor: `${colorScheme}.200`,\n },\n _focus: {\n outline: 'none',\n borderColor: `${colorScheme}.200`,\n boxShadow: 'none',\n },\n _disabled: {\n borderColor: 'gray.200',\n bg: 'transparent',\n color: 'gray.50',\n _placeholder: {\n color: 'gray.50',\n },\n },\n _invalid: {\n borderColor: 'red.100',\n },\n },\n }),\n outline: ({ colorScheme }: Props): SystemStyleObject => ({\n field: {\n bg: 'white',\n borderColor: 'gray.200',\n _hover: {\n borderColor: `${colorScheme}.200`,\n },\n _focus: {\n outline: 'none',\n borderColor: `${colorScheme}.200`,\n boxShadow: 'none',\n },\n _disabled: {\n borderColor: 'gray.200',\n color: 'gray.50',\n _placeholder: {\n color: 'gray.50',\n },\n },\n _invalid: {\n borderColor: 'red.100',\n },\n },\n }),\n },\n defaultProps: {\n size: 'sm',\n variant: 'flushed',\n colorScheme: 'pink',\n },\n};\n","\nconst highlighted = {\n color: 'pink.200',\n fontWeight: 'bold',\n _hover: {\n color: 'pink.300'\n },\n _focus: {\n color: 'pink.400',\n boxShadow: 'none'\n }\n}\n\nexport default {\n variants: {\n highlighted\n }\n}","import { StyleFunctionProps } from '@chakra-ui/theme-tools';\n\nconst baseButton = {\n textTransform: 'uppercase',\n};\n\nconst baseList = {\n borderRadius: 'none',\n border: 'none',\n boxShadow: 'sm',\n};\n\nconst baseItem = {\n _focus: {\n bg: 'transparent',\n },\n _active: {\n bg: 'transparent',\n },\n _expanded: {\n bg: 'transparent',\n },\n};\n\nconst baseGroupTitle = {\n fontWeight: 'normal',\n fontSize: 'inherit',\n};\n\nconst baseStyle = ({ colorScheme }: StyleFunctionProps): any => {\n return {\n button: baseButton,\n list: baseList,\n item: {\n ...baseItem,\n _hover: {\n bg: `${colorScheme}.100`,\n },\n },\n groupTitle: baseGroupTitle,\n };\n};\n\nconst link = {\n item: {\n ...baseItem,\n _hover: {\n bg: 'transparent',\n color: 'pink.200',\n },\n },\n};\n\nexport default {\n baseStyle,\n variants: {\n link,\n },\n defaultProps: {\n colorScheme: 'gray',\n },\n};\n","export default {\n baseStyle: {\n dialog: {\n borderRadius: 'none',\n },\n header: {\n fontSize: '3xl',\n fontWeight: 'black',\n },\n },\n defaultProps: {\n isCentered: true,\n },\n};\n","const baseStyle = ({ colorScheme }: any) => ({\n control: {\n border: '1px solid',\n borderColor: 'gray.400',\n _checked: {\n bg: `none`,\n borderColor: `${colorScheme}.200`,\n _before: {\n w: '100%',\n h: '100%',\n bg: `${colorScheme}.200`,\n borderColor: 'white',\n border: `1px solid`,\n color: `white`,\n },\n },\n _hover: {\n borderColor: `${colorScheme}.200`,\n },\n _focus: {\n boxShadow: 'none',\n },\n _disabled: {\n borderColor: 'gray.100',\n bg: 'gray.100',\n _hover: {\n borderColor: 'gray.100',\n bg: 'gray.100',\n },\n },\n },\n});\n\nexport default {\n baseStyle: baseStyle,\n defaultProps: {\n colorScheme: 'pink',\n },\n};\n","import Input from './Input';\n\nexport default {\n variants: {\n ...Input.variants,\n },\n defaultProps: {\n ...Input.defaultProps,\n },\n};\n","import { tableAnatomy as parts } from '@chakra-ui/anatomy';\nimport { mode } from '@chakra-ui/theme-tools';\nimport { PartsStyleFunction } from '@chakra-ui/theme-tools';\n\nconst variantColor: PartsStyleFunction = props => {\n const { colorScheme: c } = props;\n\n return {\n th: {\n color: 'gray.400',\n fontWeight: 'normal',\n borderColor: mode(`${c}.50`, `${c}.700`)(props),\n },\n td: {\n borderColor: mode(`${c}.50`, `${c}.700`)(props),\n },\n };\n};\n\nexport default {\n variants: {\n simple: variantColor,\n striped: variantColor,\n },\n};\n","export default {\n defaultProps: {\n size: 'lg'\n }\n}","export default {\n baseStyle: {\n textTransform: 'none',\n color: 'gray.400',\n },\n};\n","import { extendTheme } from '@chakra-ui/react';\nimport * as foundations from './foundations';\nimport * as components from './components';\n\nexport default extendTheme({\n ...foundations,\n components,\n});\n"],"names":["transparent","black","white","red","gray","green","pink","blue","yellow","heading","body","disabled","solid","bg","color","outline","borderColor","link","sizes","lg","px","md","sm","sx","variantOutline","props","colorScheme","c","defaultStyleProps","borderRadius","_focus","boxShadow","_disabled","mode","_hover","_active","variantGhost","textDecoration","variantLink","padding","height","lineHeight","verticalAlign","variantSolid","_ref","baseStyle","fontWeight","textTransform","minW","variants","ghost","tag","_ref2","dropdown","_ref3","tableLink","_ref4","defaultProps","variant","size","w","mx","maxW","py","fontSize","margin","fontFamily","xs","xl","flushed","field","borderBottomWidth","borderBottomColor","_placeholder","_invalid","highlighted","baseButton","baseList","border","baseItem","_expanded","baseGroupTitle","button","list","item","groupTitle","dialog","header","isCentered","control","_checked","_before","h","Input","variantColor","th","td","simple","striped","extendTheme","foundations","components"],"mappings":"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"}
\ No newline at end of file
diff --git a/clients/libs/components/__dist/index.js b/clients/libs/components/__dist/index.js
new file mode 100644
index 0000000000..1f94bce907
--- /dev/null
+++ b/clients/libs/components/__dist/index.js
@@ -0,0 +1,8 @@
+
+'use strict'
+
+if (process.env.NODE_ENV === 'production') {
+ module.exports = require('./bonde-components.cjs.production.min.js')
+} else {
+ module.exports = require('./bonde-components.cjs.development.js')
+}
diff --git a/clients/libs/components/chakra/index.js b/clients/libs/components/chakra/index.js
new file mode 100644
index 0000000000..861be959cd
--- /dev/null
+++ b/clients/libs/components/chakra/index.js
@@ -0,0 +1 @@
+export * from "../__dist/esm/index4";
diff --git a/clients/libs/components/form/index.js b/clients/libs/components/form/index.js
new file mode 100644
index 0000000000..9dc5e34c24
--- /dev/null
+++ b/clients/libs/components/form/index.js
@@ -0,0 +1 @@
+export * from "../__dist/esm/index3";
diff --git a/clients/libs/components/icons/index.js b/clients/libs/components/icons/index.js
new file mode 100644
index 0000000000..8fd2dca720
--- /dev/null
+++ b/clients/libs/components/icons/index.js
@@ -0,0 +1 @@
+export * from "../__dist/esm/index2";
diff --git a/clients/libs/components/package.json b/clients/libs/components/package.json
index c8a850ed98..4345f75d9c 100644
--- a/clients/libs/components/package.json
+++ b/clients/libs/components/package.json
@@ -1,5 +1,5 @@
{
- "version": "0.0.7",
+ "version": "0.2.0",
"license": "MIT",
"main": "__dist/index.js",
"module": "__dist/esm/index.js",
@@ -18,7 +18,6 @@
"postpack": "sh ./scripts/postpack.sh",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint --fix",
- "prepare": "tsdx build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
diff --git a/clients/libs/slate-editor-components/package.json b/clients/libs/slate-editor-components/package.json
index 63249ab69c..926afff0c7 100644
--- a/clients/libs/slate-editor-components/package.json
+++ b/clients/libs/slate-editor-components/package.json
@@ -29,7 +29,7 @@
"build": "babel src --out-dir dist --copy-files"
},
"dependencies": {
- "@slate-editor/utils": "^5.1.2",
+ "@slate-editor/utils": "workspace:*",
"classnames": "^2.2.5",
"exenv": "^1.2.1",
"react": "^17",
diff --git a/clients/libs/slate-editor-font-family-plugin/package.json b/clients/libs/slate-editor-font-family-plugin/package.json
index 76591e6fa5..e449f12042 100644
--- a/clients/libs/slate-editor-font-family-plugin/package.json
+++ b/clients/libs/slate-editor-font-family-plugin/package.json
@@ -29,7 +29,7 @@
"build": "babel src --out-dir dist --copy-files"
},
"dependencies": {
- "@slate-editor/utils": "^5.1.2",
+ "@slate-editor/utils": "workspace:*",
"classnames": "^2.2.5",
"react": "^17",
"react-dom": "^17"
diff --git a/clients/libs/slate-editor-font-size-plugin/package.json b/clients/libs/slate-editor-font-size-plugin/package.json
index 1adb502a1e..61d8182674 100644
--- a/clients/libs/slate-editor-font-size-plugin/package.json
+++ b/clients/libs/slate-editor-font-size-plugin/package.json
@@ -29,7 +29,7 @@
"build": "babel src --out-dir dist --copy-files"
},
"dependencies": {
- "@slate-editor/utils": "^5.1.2",
+ "@slate-editor/utils": "workspace:*",
"classnames": "^2.2.5",
"exenv": "^1.2.1",
"react": "^17",
diff --git a/clients/package.json b/clients/package.json
index a54a69107f..d82159206d 100644
--- a/clients/package.json
+++ b/clients/package.json
@@ -17,6 +17,7 @@
"i18next": "^19.6.3",
"i18next-browser-languagedetector": "^5.0.1",
"i18next-http-backend": "^1.0.17",
+ "m": "^1.9.0",
"react": "^17",
"react-dom": "^17",
"react-grid-system": "7.0.3",
diff --git a/clients/packages/accounts-client/package.json b/clients/packages/accounts-client/package.json
index 70b6ce7d03..8149ca5292 100644
--- a/clients/packages/accounts-client/package.json
+++ b/clients/packages/accounts-client/package.json
@@ -13,7 +13,7 @@
"@emotion/styled": "^11",
"@types/graceful-fs": "^4.1.5",
"@types/normalize-package-data": "^2.4.0",
- "bonde-components": "workspace:*",
+ "bonde-components": "^0.2.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"bonde-core-tools": "workspace:*",
"react-scripts": "^4",
diff --git a/clients/packages/canary-client/package.json b/clients/packages/canary-client/package.json
index 6b1fe9e957..eeaf6a71cb 100644
--- a/clients/packages/canary-client/package.json
+++ b/clients/packages/canary-client/package.json
@@ -9,6 +9,9 @@
},
"dependencies": {
"@chakra-ui/react": "^1.6.6",
+ "@ckeditor/ckeditor5-core": "41.4.2",
+ "@ckeditor/ckeditor5-react": "^7.0.0",
+ "@ckeditor/ckeditor5-upload": "41.4.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fnando/cnpj": "^1.0.2",
@@ -34,15 +37,17 @@
"@types/normalize-package-data": "^2.4.0",
"@types/react-color": "^3.0.4",
"@types/react-table": "^7.0.22",
- "bonde-components": "workspace:*",
+ "bonde-components": "0.2.0",
"bonde-core-tools": "workspace:*",
"bonde-styleguide": "^0.16.5-alpha.5",
+ "ckeditor5-custom-build": "workspace:*",
"clipboard-copy": "^3.1.0",
"downloadjs": "^1.4.7",
"final-form-arrays": "^3.0.2",
"framer-motion": "^4",
"lodash": "^4.17.21",
"moment": "^2.27.0",
+ "raw-loader": "^4.0.2",
"react-color": "^2.19.3",
"react-device-detect": "^2.1.2",
"react-final-form-arrays": "^3.1.3",
@@ -50,7 +55,6 @@
"react-number-format": "^4.4.1",
"react-qr-reader": "^2.2.1",
"react-s3-uploader": "^4.9.3",
- "typescript": "^3",
"react-scripts": "3.4.1",
"react-select": "^3.1.0",
"react-table": "^7.5.0",
@@ -58,11 +62,15 @@
"recharts": "^2.1.5",
"slate-editor": "workspace:*",
"slate-plain-serializer": "^0.7.13",
- "slugify": "^1.4.6"
+ "slugify": "^1.4.6",
+ "typescript": "^3"
},
"devDependencies": {
"@types/prettier": "^2.2.3",
"@types/recharts": "^1.8.23",
- "@types/scheduler": "^0.16.1"
+ "@types/scheduler": "^0.16.1",
+ "css-loader": "^7.1.2",
+ "postcss-loader": "^8.1.1",
+ "style-loader": "^4.0.0"
}
}
diff --git a/clients/packages/canary-client/pnpm-lock.yaml b/clients/packages/canary-client/pnpm-lock.yaml
new file mode 100644
index 0000000000..9e476ba565
--- /dev/null
+++ b/clients/packages/canary-client/pnpm-lock.yaml
@@ -0,0 +1,15965 @@
+lockfileVersion: 5.4
+
+specifiers:
+ '@chakra-ui/react': ^1.6.6
+ '@ckeditor/ckeditor5-build-classic': ^41.4.2
+ '@emotion/react': ^11
+ '@emotion/styled': ^11
+ '@fnando/cnpj': ^1.0.2
+ '@fnando/cpf': ^1.0.2
+ '@slate-editor/alignment-plugin': workspace:*
+ '@slate-editor/bold-plugin': workspace:*
+ '@slate-editor/color-plugin': workspace:*
+ '@slate-editor/embed-plugin': workspace:*
+ '@slate-editor/font-family-plugin': workspace:*
+ '@slate-editor/font-size-plugin': workspace:*
+ '@slate-editor/grid-plugin': workspace:*
+ '@slate-editor/image-plugin': workspace:*
+ '@slate-editor/italic-plugin': workspace:*
+ '@slate-editor/link-plugin': workspace:*
+ '@slate-editor/list-plugin': workspace:*
+ '@slate-editor/state-logger': workspace:*
+ '@slate-editor/strikethrough-plugin': workspace:*
+ '@slate-editor/toggle-readonly': workspace:*
+ '@slate-editor/underline-plugin': workspace:*
+ '@types/downloadjs': ^1.4.2
+ '@types/graceful-fs': ^4.1.5
+ '@types/lodash': ^4.14.168
+ '@types/normalize-package-data': ^2.4.0
+ '@types/prettier': ^2.2.3
+ '@types/react-color': ^3.0.4
+ '@types/react-table': ^7.0.22
+ '@types/recharts': ^1.8.23
+ '@types/scheduler': ^0.16.1
+ bonde-components: 0.2.0
+ bonde-core-tools: workspace:*
+ bonde-styleguide: ^0.16.5-alpha.5
+ ckeditor5-custom-build: workspace:*
+ clipboard-copy: ^3.1.0
+ css-loader: ^7.1.2
+ downloadjs: ^1.4.7
+ final-form-arrays: ^3.0.2
+ framer-motion: ^4
+ lodash: ^4.17.21
+ moment: ^2.27.0
+ postcss-loader: ^8.1.1
+ raw-loader: ^4.0.2
+ react-color: ^2.19.3
+ react-device-detect: ^2.1.2
+ react-final-form-arrays: ^3.1.3
+ react-hotjar: ^4.0.0
+ react-number-format: ^4.4.1
+ react-qr-reader: ^2.2.1
+ react-s3-uploader: ^4.9.3
+ react-scripts: 3.4.1
+ react-select: ^3.1.0
+ react-table: ^7.5.0
+ react-toastify: 6.0.8
+ recharts: ^2.1.5
+ slate-editor: workspace:*
+ slate-plain-serializer: ^0.7.13
+ slugify: ^1.4.6
+ style-loader: ^4.0.0
+ typescript: ^3
+
+dependencies:
+ '@chakra-ui/react': 1.8.9_bvqj4f5hqz4halcy33kails63e
+ '@ckeditor/ckeditor5-build-classic': 41.4.2
+ '@emotion/react': 11.11.4
+ '@emotion/styled': 11.11.5_@emotion+react@11.11.4
+ '@fnando/cnpj': 1.0.2
+ '@fnando/cpf': 1.0.2
+ '@slate-editor/alignment-plugin': link:../../libs/slate-editor-alignment-plugin
+ '@slate-editor/bold-plugin': link:../../libs/slate-editor-bold-plugin
+ '@slate-editor/color-plugin': link:../../libs/slate-editor-color-plugin
+ '@slate-editor/embed-plugin': link:../../libs/slate-editor-embed-plugin
+ '@slate-editor/font-family-plugin': link:../../libs/slate-editor-font-family-plugin
+ '@slate-editor/font-size-plugin': link:../../libs/slate-editor-font-size-plugin
+ '@slate-editor/grid-plugin': link:../../libs/slate-editor-grid-plugin
+ '@slate-editor/image-plugin': link:../../libs/slate-editor-image-plugin
+ '@slate-editor/italic-plugin': link:../../libs/slate-editor-italic-plugin
+ '@slate-editor/link-plugin': link:../../libs/slate-editor-link-plugin
+ '@slate-editor/list-plugin': link:../../libs/slate-editor-list-plugin
+ '@slate-editor/state-logger': link:../../libs/slate-editor-state-logger
+ '@slate-editor/strikethrough-plugin': link:../../libs/slate-editor-strikethrough-plugin
+ '@slate-editor/toggle-readonly': link:../../libs/slate-editor-toggle-readonly
+ '@slate-editor/underline-plugin': link:../../libs/slate-editor-underline-plugin
+ '@types/downloadjs': 1.4.6
+ '@types/graceful-fs': 4.1.9
+ '@types/lodash': 4.17.5
+ '@types/normalize-package-data': 2.4.4
+ '@types/react-color': 3.0.12
+ '@types/react-table': 7.7.20
+ bonde-components: 0.2.0
+ bonde-core-tools: link:../../libs/core-tools
+ bonde-styleguide: 0.16.5-alpha.5
+ ckeditor5-custom-build: link:../../libs/ckeditor5-custom-build
+ clipboard-copy: 3.2.0
+ downloadjs: 1.4.7
+ final-form-arrays: 3.1.0
+ framer-motion: 4.1.17
+ lodash: 4.17.21
+ moment: 2.30.1
+ raw-loader: 4.0.2
+ react-color: 2.19.3
+ react-device-detect: 2.2.3
+ react-final-form-arrays: 3.1.4_final-form-arrays@3.1.0
+ react-hotjar: 4.0.0
+ react-number-format: 4.9.4
+ react-qr-reader: 2.2.1
+ react-s3-uploader: 4.9.3
+ react-scripts: 3.4.1_typescript@3.9.10
+ react-select: 3.2.0
+ react-table: 7.8.0
+ react-toastify: 6.0.8
+ recharts: 2.12.7
+ slate-editor: link:../../libs/slate-editor
+ slate-plain-serializer: 0.7.13
+ slugify: 1.6.6
+ typescript: 3.9.10
+
+devDependencies:
+ '@types/prettier': 2.7.3
+ '@types/recharts': 1.8.29
+ '@types/scheduler': 0.16.8
+ css-loader: 7.1.2
+ postcss-loader: 8.1.1_typescript@3.9.10
+ style-loader: 4.0.0
+
+packages:
+
+ /@babel/code-frame/7.24.7:
+ resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/highlight': 7.24.7
+ picocolors: 1.0.1
+
+ /@babel/code-frame/7.8.3:
+ resolution: {integrity: sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==}
+ dependencies:
+ '@babel/highlight': 7.24.7
+ dev: false
+
+ /@babel/compat-data/7.24.7:
+ resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /@babel/core/7.9.0:
+ resolution: {integrity: sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.9.0
+ '@babel/helpers': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ convert-source-map: 1.9.0
+ debug: 4.3.5
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ lodash: 4.17.21
+ resolve: 1.15.0
+ semver: 5.7.2
+ source-map: 0.5.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/generator/7.24.7:
+ resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.7
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 2.5.2
+ dev: false
+
+ /@babel/helper-annotate-as-pure/7.24.7:
+ resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@babel/helper-builder-binary-assignment-operator-visitor/7.24.7:
+ resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-compilation-targets/7.24.7:
+ resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ browserslist: 4.23.1
+ lru-cache: 5.1.1
+ semver: 6.3.1
+ dev: false
+
+ /@babel/helper-create-class-features-plugin/7.24.7:
+ resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-create-class-features-plugin/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-create-regexp-features-plugin/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+ dev: false
+
+ /@babel/helper-define-polyfill-provider/0.6.2:
+ resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ debug: 4.3.5
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-define-polyfill-provider/0.6.2_@babel+core@7.9.0:
+ resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ debug: 4.3.5
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-environment-visitor/7.24.7:
+ resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@babel/helper-function-name/7.24.7:
+ resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.24.7
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@babel/helper-hoist-variables/7.24.7:
+ resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@babel/helper-member-expression-to-functions/7.24.7:
+ resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-module-imports/7.24.7:
+ resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-module-imports/7.24.7_supports-color@5.5.0:
+ resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.24.7_supports-color@5.5.0
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-module-transforms/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-optimise-call-expression/7.24.7:
+ resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@babel/helper-plugin-utils/7.24.7:
+ resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /@babel/helper-remap-async-to-generator/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-wrap-function': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-replace-supers/7.24.7:
+ resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-replace-supers/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-simple-access/7.24.7:
+ resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-skip-transparent-expression-wrappers/7.24.7:
+ resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helper-split-export-declaration/7.24.7:
+ resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@babel/helper-string-parser/7.24.7:
+ resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /@babel/helper-validator-identifier/7.24.7:
+ resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
+ engines: {node: '>=6.9.0'}
+
+ /@babel/helper-validator-option/7.24.7:
+ resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /@babel/helper-wrap-function/7.24.7:
+ resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-function-name': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/helpers/7.24.7:
+ resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.24.7
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@babel/highlight/7.24.7:
+ resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.24.7
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ picocolors: 1.0.1
+
+ /@babel/parser/7.24.7:
+ resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@babel/plugin-bugfix-firefox-class-in-computed-class-key/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.7_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-proposal-class-properties/7.18.6:
+ resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/helper-create-class-features-plugin': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-proposal-class-properties/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-proposal-decorators/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-decorators': 7.24.7_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.9.0:
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.9.0:
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-proposal-numeric-separator/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.9.0
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-proposal-optional-chaining/7.9.0_@babel+core@7.9.0:
+ resolution: {integrity: sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.9.0:
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ dev: false
+
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.9.0:
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
+ engines: {node: '>=4'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.9.0:
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.9.0:
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.9.0:
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-decorators/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-flow/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-import-assertions/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-import-attributes/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-jsx/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.9.0:
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.9.0:
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.9.0:
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.9.0:
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-typescript/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.9.0:
+ resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-arrow-functions/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-async-generator-functions/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-async-to-generator/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-block-scoped-functions/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-block-scoping/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-class-properties/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-class-static-block/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-classes/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-split-export-declaration': 7.24.7
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-computed-properties/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/template': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-destructuring/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-dotall-regex/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-duplicate-keys/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-dynamic-import/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-transform-exponentiation-operator/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-export-namespace-from/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-transform-flow-strip-types/7.9.0_@babel+core@7.9.0:
+ resolution: {integrity: sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-flow': 7.24.7_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-transform-for-of/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-function-name/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-json-strings/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-transform-literals/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-logical-assignment-operators/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-transform-member-expression-literals/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-modules-amd/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-modules-commonjs/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-modules-systemjs/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-modules-umd/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-named-capturing-groups-regex/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-new-target/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-nullish-coalescing-operator/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-transform-numeric-separator/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-transform-object-rest-spread/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-transform-object-super/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-optional-catch-binding/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0
+ dev: false
+
+ /@babel/plugin-transform-optional-chaining/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-parameters/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-private-methods/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-private-property-in-object/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-property-literals/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-react-constant-elements/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-react-display-name/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-react-display-name/7.8.3_@babel+core@7.9.0:
+ resolution: {integrity: sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-react-jsx-development/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/plugin-transform-react-jsx': 7.24.7_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-react-jsx-self/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-react-jsx-source/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-react-jsx/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-jsx': 7.24.7_@babel+core@7.9.0
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-react-pure-annotations/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-regenerator/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ regenerator-transform: 0.15.2
+ dev: false
+
+ /@babel/plugin-transform-reserved-words/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-runtime/7.24.7:
+ resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ babel-plugin-polyfill-corejs2: 0.4.11
+ babel-plugin-polyfill-corejs3: 0.10.4
+ babel-plugin-polyfill-regenerator: 0.6.2
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-runtime/7.9.0_@babel+core@7.9.0:
+ resolution: {integrity: sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ resolve: 1.15.0
+ semver: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-shorthand-properties/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-spread/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-sticky-regex/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-template-literals/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-typeof-symbol/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-typescript/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.24.7_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-unicode-escapes/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-unicode-property-regex/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-unicode-regex/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/plugin-transform-unicode-sets-regex/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
+
+ /@babel/preset-env/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.9.0
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.9.0
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.9.0
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.9.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-import-assertions': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-syntax-import-attributes': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.9.0
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.9.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.9.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.9.0
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.9.0
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.9.0
+ '@babel/plugin-transform-arrow-functions': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-async-generator-functions': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-async-to-generator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-block-scoping': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-class-properties': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-class-static-block': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-classes': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-computed-properties': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-destructuring': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-dotall-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-duplicate-keys': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-dynamic-import': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-export-namespace-from': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-for-of': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-function-name': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-json-strings': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-member-expression-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-amd': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-commonjs': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-systemjs': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-umd': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-new-target': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-numeric-separator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-object-rest-spread': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-object-super': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-optional-chaining': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-private-methods': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-private-property-in-object': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-property-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-regenerator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-reserved-words': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-shorthand-properties': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-spread': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-sticky-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-template-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-typeof-symbol': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-unicode-escapes': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-unicode-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.9.0
+ babel-plugin-polyfill-corejs2: 0.4.11_@babel+core@7.9.0
+ babel-plugin-polyfill-corejs3: 0.10.4_@babel+core@7.9.0
+ babel-plugin-polyfill-regenerator: 0.6.2_@babel+core@7.9.0
+ core-js-compat: 3.37.1
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/preset-env/7.9.0_@babel+core@7.9.0:
+ resolution: {integrity: sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.9.0
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.9.0
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.9.0
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.9.0
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-proposal-numeric-separator': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.9.0
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.9.0
+ '@babel/plugin-proposal-optional-chaining': 7.9.0_@babel+core@7.9.0
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.9.0
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.9.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.9.0
+ '@babel/plugin-transform-arrow-functions': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-async-to-generator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-block-scoping': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-classes': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-computed-properties': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-destructuring': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-dotall-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-duplicate-keys': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-for-of': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-function-name': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-member-expression-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-amd': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-commonjs': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-systemjs': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-umd': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-new-target': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-object-super': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-property-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-regenerator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-reserved-words': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-shorthand-properties': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-spread': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-sticky-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-template-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-typeof-symbol': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-unicode-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/preset-modules': 0.1.6_@babel+core@7.9.0
+ '@babel/types': 7.24.7
+ browserslist: 4.23.1
+ core-js-compat: 3.37.1
+ invariant: 2.2.4
+ levenary: 1.1.1
+ semver: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.9.0:
+ resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/types': 7.24.7
+ esutils: 2.0.3
+ dev: false
+
+ /@babel/preset-modules/0.1.6_@babel+core@7.9.0:
+ resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.9.0
+ '@babel/plugin-transform-dotall-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/types': 7.24.7
+ esutils: 2.0.3
+ dev: false
+
+ /@babel/preset-react/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-transform-react-display-name': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-react-jsx': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-react-jsx-development': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-react-pure-annotations': 7.24.7_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/preset-react/7.9.1_@babel+core@7.9.0:
+ resolution: {integrity: sha512-aJBYF23MPj0RNdp/4bHnAP0NVqqZRr9kl0NAOP4nJCex6OYVio59+dnQzsAWFuogdLyeaKA1hmfUIVZkY5J+TQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-transform-react-display-name': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-transform-react-jsx': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-react-jsx-development': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-react-jsx-self': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-react-jsx-source': 7.24.7_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/preset-typescript/7.9.0_@babel+core@7.9.0:
+ resolution: {integrity: sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-transform-typescript': 7.24.7_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/regjsgen/0.8.0:
+ resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
+ dev: false
+
+ /@babel/runtime-corejs3/7.24.7:
+ resolution: {integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ core-js-pure: 3.37.1
+ regenerator-runtime: 0.14.1
+ dev: false
+
+ /@babel/runtime/7.24.7:
+ resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.14.1
+ dev: false
+
+ /@babel/runtime/7.9.0:
+ resolution: {integrity: sha512-cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==}
+ dependencies:
+ regenerator-runtime: 0.13.11
+ dev: false
+
+ /@babel/template/7.24.7:
+ resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@babel/traverse/7.24.7:
+ resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+ debug: 4.3.5
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/traverse/7.24.7_supports-color@5.5.0:
+ resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+ debug: 4.3.5_supports-color@5.5.0
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/types/7.24.7:
+ resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ to-fast-properties: 2.0.0
+ dev: false
+
+ /@chakra-ui/accordion/1.4.12_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-Hq5Ie1SI4mmtgBmeuir+f7QKgopZEyQOojgufo/A20keMSy5Yk9WZjkXNQgvoIRl1AsoziIPUlubQOtkBZjjbA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/descendant': 2.1.4
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/transition': 1.4.8_framer-motion@4.1.17
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17
+ dev: false
+
+ /@chakra-ui/alert/1.3.7_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-fFpJYBpHOIK/BX4BVl/xafYiDBUW+Bq/gUYDOo4iAiO4vHgxo74oa+yOwSRNlNjAgIX7pi2ridsYQALKyWyxxQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/anatomy/1.3.0_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-vj/lcHkCuq/dtbl69DkNsftZTnrGEegB90ODs1B6rxw8iVMdDSYkthPPFAkqzNs4ppv1y2IBjELuVzpeta1OHA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1
+ dev: false
+
+ /@chakra-ui/avatar/1.3.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-/eRRK48Er92/QWAfWhxsJIN0gZBBvk+ew4Hglo+pxt3/NDnfTF2yPE7ZN29Dl6daPNbyTOpoksMwaU2mZIqLgA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/image': 1.1.10_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/breadcrumb/1.3.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-iXxienBO6RUnJEcDvyDWyRt+mzPyl7/b6N8i0vrjGKGLpgtayJFvIdo33tFcvx6TCy7V9hiE3HTtZnNomWdR6A==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/button/1.5.10_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-IVEOrleI378CckAa3b3CTUHMPZRfpy6LPwn1Mx3sMpHEkDTKu8zJcjgEvCE8HYzNC1KbwBsa1PfTgk40ui6EtA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/spinner': 1.2.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/checkbox/1.7.1_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-9Io97yn8OrdaIynCj+3Z/neJV7lTT1MtcdYh3BKMd7WnoJDkRY/GlBM8zsdgC5Wvm+ZQ1M83t0YvRPKLLzusyA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
+ framer-motion: 4.1.17
+ dev: false
+
+ /@chakra-ui/clickable/1.2.6:
+ resolution: {integrity: sha512-89SsrQwwwAadcl/bN8nZqqaaVhVNFdBXqQnxVy1t07DL5ezubmNb5SgFh9LDznkm9YYPQhaGr3W6HFro7iAHMg==}
+ peerDependencies:
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/close-button/1.2.7_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-cYTxfgrIlPU4IZm1sehZXxx/TNQBk9c3LBPvTpywEM8GVRGINh4YLq8WiMaPtO+TDNBnKoWS/jS4IHnR+abADw==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/color-mode/1.4.8:
+ resolution: {integrity: sha512-iD4126DVQi06c6ARr3uf3R2rtEu8aBVjW8rhZ+lOsV26Z15iCJA7OAut13Xu06fcZvgjSB/ChDy6Sx9sV9UjHA==}
+ peerDependencies:
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-env': 1.1.6
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/control-box/1.1.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-EUcq5f854puG6ZA6wAWl4107OPl8+bj4MMHJCa48BB0qec0U8HCEtxQGnFwJmaYLalIAjMfHuY3OwO2A3Hi9hA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/counter/1.2.10:
+ resolution: {integrity: sha512-HQd09IuJ4z8M8vWajH+99jBWWSHDesQZmnN95jUg3HKOuNleLaipf2JFdrqbO1uWQyHobn2PM6u+B+JCAh2nig==}
+ peerDependencies:
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/css-reset/1.1.3_@emotion+react@11.11.4:
+ resolution: {integrity: sha512-AgfrE7bRTJvNi/4zIfacI/kBHmHmHEIeQtHwCvk/0qM9V2gK1VM3ctYlnibf7BTh17F/UszweOGRb1lHSPfWjw==}
+ peerDependencies:
+ '@emotion/react': '>=10.0.35'
+ react: '>=16.8.6'
+ dependencies:
+ '@emotion/react': 11.11.4
+ dev: false
+
+ /@chakra-ui/descendant/2.1.4:
+ resolution: {integrity: sha512-k1olHM6c0fcI5fQxO9rqg9rxripcfHMEm2LkORgH0CAzFn/U75CxCw5ec0IMedNWCdiv740enVfnfhBAoSg7gw==}
+ peerDependencies:
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/react-utils': 1.2.3
+ dev: false
+
+ /@chakra-ui/editable/1.4.2_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-a5zKghA/IvG7yNkmFl7Z9c2KSsf0FgyijsNPTg/4S5jxyz13QJtoTg40tdpyaxHHCT25y25iUcV4FYCj6Jd01w==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/focus-lock/1.2.6:
+ resolution: {integrity: sha512-ZJNE1oNdUM1aGWuCJ+bxFa/d3EwxzfMWzTKzSvKDK50GWoUQQ10xFTT9nY/yFpkcwhBvx1KavxKf44mIhIbSog==}
+ peerDependencies:
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/utils': 1.10.4
+ react-focus-lock: 2.5.2
+ transitivePeerDependencies:
+ - '@types/react'
+ dev: false
+
+ /@chakra-ui/form-control/1.6.0_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-MtUE98aocP2QTgvyyJ/ABuG33mhT3Ox56phKreG3HzbUKByMwrbQSm1QcAgyYdqSZ9eKB2tXx+qgGNh+avAfDA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/hooks/1.9.1:
+ resolution: {integrity: sha512-SEeh1alDKzrP9gMLWMnXOUDBQDKF/URL6iTmkumTn6vhawWNla6sPrcMyoCzWdMzwUhZp3QNtCKbUm7dxBXvPw==}
+ peerDependencies:
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/utils': 1.10.4
+ compute-scroll-into-view: 1.0.14
+ copy-to-clipboard: 3.3.1
+ dev: false
+
+ /@chakra-ui/icon/1.2.1_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-uZxFsiY4Tld+LvGIX7cky0H6oMRac8udPMQRzIk/UQeNZcsWisGetatbQsew3y1lWV/iH/8+TlDuW13GWGyGGQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.9.1
+ dev: false
+
+ /@chakra-ui/icon/2.0.5_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-ZrqRvCCIxGr4qFd/r1pmtd9tobRmv8KAxV7ygFoc/t4vOSKTcVIjhE12gsI3FzgvXM15ZFVwsxa1zodwgo5neQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/image/1.1.10_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-PJZmhQ/R1PgdMyCRjALfoyq1FNh/WzMAw70sliHLtLcb9hBXniwQZuckYfUshCkUoFBj/ow9d4byn9Culdpk7Q==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/input/1.4.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-Ljy/NbOhh9cNQxKTWQRsT4aQiXs2vVya+Cj5NpMAz08NFFjPZovsTawhI7m6ejT5Vsh76QYjh2rOLLI3fWqQQw==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/layout/1.8.0_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-GJtEKez5AZu0XQTxI6a6jwA/hMDD36pP0HBxBOGuHP1hWCebDzMjraiMfWiP9w7hKERFE4j19kocHxIXyocfJA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/live-region/1.1.6:
+ resolution: {integrity: sha512-9gPQHXf7oW0jXyT5R/JzyDMfJ3hF70TqhN8bRH4fMyfNr2Se+SjztMBqCrv5FS5rPjcCeua+e0eArpoB3ROuWQ==}
+ peerDependencies:
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/media-query/1.2.5_hoipxdaut6bba577cceecxeuuy:
+ resolution: {integrity: sha512-Lxa2D9wlTOW4CsFyzbOfmoDrezmdi22ZNOeAH9Sk66rn5z20ynmXCqksHbZH2MIe0woHlhTMGihPhgJSq9MXcQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ '@chakra-ui/theme': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/react-env': 1.1.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.1
+ dev: false
+
+ /@chakra-ui/media-query/2.0.4_hoipxdaut6bba577cceecxeuuy:
+ resolution: {integrity: sha512-kn6g/L0IFFUHz2v4yiCsBnhg9jUeA7525Z+AWl+BPtvryi7i9J+AJ27y/QAge7vUGy4dwDeFyxOZTs2oZ9/BsA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ '@chakra-ui/theme': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/react-env': 1.1.6
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/menu/1.8.12_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-X/s74VpOReQW4fCRCa21f/VOe++cXhPz2Sh7pDjtaT3zmKjrJwgk1Kw75cXfNX1eke6hf/wZ0FGweu/m7+C3OA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/clickable': 1.2.6
+ '@chakra-ui/descendant': 2.1.4
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/popper': 2.4.3
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/transition': 1.4.8_framer-motion@4.1.17
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17
+ dev: false
+
+ /@chakra-ui/modal/1.11.1_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-B2BBDonHb04vbPLAWgko1JYBwgW8ZNSLyhTJK+rbrCsRSgazuLTcwq4hdyJqrYNWtaQEfSwpAXqJ7joMZdv59A==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ react-dom: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/close-button': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/focus-lock': 1.2.6
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/portal': 1.3.10
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/transition': 1.4.8_framer-motion@4.1.17
+ '@chakra-ui/utils': 1.10.4
+ aria-hidden: 1.2.4
+ framer-motion: 4.1.17
+ react-remove-scroll: 2.4.1
+ transitivePeerDependencies:
+ - '@types/react'
+ dev: false
+
+ /@chakra-ui/number-input/1.4.7_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-LorGRZFMipom8vCUEbLi2s7bTHF2Fgiu766W0jTbzMje+8Z1ZoRQunH9OZWQnxnWQTUfUM2KBW8KwToYh1ojfQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/counter': 1.2.10
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/pin-input/1.7.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-KEVUHHmf22tI4F7gzT9+pHi4E5cCyte6M8rPEwRyuc0kUBo48D8OW0BJwGdESWOKMkQXazDF6Zg4o32t45tbpg==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/descendant': 2.1.4
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/popover/1.11.9_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-hJ1/Lwukox3ryTN7W1wnj+nE44utfLwQYvfUSdatt5dznnh8k0P6Wx7Hmjm1cYffRavBhqzwua/QZDWjJN9N0g==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/close-button': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/popper': 2.4.3
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17
+ dev: false
+
+ /@chakra-ui/popper/2.4.3:
+ resolution: {integrity: sha512-TGzFnYt3mtIVkIejtYIAu4Ka9DaYLzMR4NgcqI6EtaTvgK7Xep+6RTiY/Nq+ZT3l/eaNUwqHRFoNrDUg1XYasA==}
+ peerDependencies:
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/react-utils': 1.2.3
+ '@popperjs/core': 2.11.8
+ dev: false
+
+ /@chakra-ui/portal/1.3.10:
+ resolution: {integrity: sha512-t2KQ6MXbyf1qFYxWw/bs//CnwD+Clq7mbsP1Y7g+THCz2FvlLlMj45BWocLB30NoNyA8WCS2zyMBszW2/qvDiA==}
+ peerDependencies:
+ react: '>=16.8.6'
+ react-dom: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/progress/1.2.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-thaHRIYTVktgV78vJMNwzfCX+ickhSpn2bun6FtGVUphFx4tjV+ggz+IGohm6AH2hapskoR1mQU2iNZb6BK0hQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/provider/1.7.14_rfbvewdlpmur7j6viv5dfnygle:
+ resolution: {integrity: sha512-FCA33CZy/jFzExglKMioeri8sr9NtDTcNVPnx95ZJiA7WpfFo0xuZ6/fMC4DwIQPkJKbSIZBXYLZ3U10Ntylrw==}
+ peerDependencies:
+ '@emotion/react': ^11.0.0
+ '@emotion/styled': ^11.0.0
+ react: '>=16.8.6'
+ react-dom: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/css-reset': 1.1.3_@emotion+react@11.11.4
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/portal': 1.3.10
+ '@chakra-ui/react-env': 1.1.6
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ '@emotion/react': 11.11.4
+ '@emotion/styled': 11.11.5_@emotion+react@11.11.4
+ dev: false
+
+ /@chakra-ui/radio/1.5.1_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-zO5eShz+j68A7935jJ2q5u3brX/bjPEGh9Pj2+bnKbmC9Vva6jEzBSJsAx9n4WbkAzR3xDMGWsbpivFp8X1tJw==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
+ dev: false
+
+ /@chakra-ui/react-env/1.1.3:
+ resolution: {integrity: sha512-gyQaZFvr1g5j5r11nCcOAn57qHTBGrlAK1hvkj1j8828NRywqd3mJXVD7BKpy100ZZrq31bP3N/435Lb7yG1Fg==}
+ peerDependencies:
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/utils': 1.10.1
+ dev: false
+
+ /@chakra-ui/react-env/1.1.6:
+ resolution: {integrity: sha512-L90LNvCfe04FTkN9OPok/o2e60zLJNBH8Im/5dUHvqy7dXLXok8ZDad5vEL46XmGbhe7O8fbxhG6FmAYdcCHrQ==}
+ peerDependencies:
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/react-utils/1.2.3:
+ resolution: {integrity: sha512-r8pUwCVVB7UPhb0AiRa9ZzSp4xkMz64yIeJ4O4aGy4WMw7TRH4j4QkbkE1YC9tQitrXrliOlvx4WWJR4VyiGpw==}
+ peerDependencies:
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/react/1.8.9_bvqj4f5hqz4halcy33kails63e:
+ resolution: {integrity: sha512-NfR5XKVqEWhchFLiWaTWkWeYZJK1SNF2O6sQxFVrX6M+nAgJ3Q9tfMk6/I3II+xc4hXJUcYmUvmw37vT92yMaQ==}
+ peerDependencies:
+ '@emotion/react': ^11.0.0
+ '@emotion/styled': ^11.0.0
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ react-dom: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/accordion': 1.4.12_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/alert': 1.3.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/avatar': 1.3.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/breadcrumb': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/button': 1.5.10_@chakra-ui+system@1.12.1
+ '@chakra-ui/checkbox': 1.7.1_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/close-button': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/control-box': 1.1.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/counter': 1.2.10
+ '@chakra-ui/css-reset': 1.1.3_@emotion+react@11.11.4
+ '@chakra-ui/editable': 1.4.2_@chakra-ui+system@1.12.1
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/image': 1.1.10_@chakra-ui+system@1.12.1
+ '@chakra-ui/input': 1.4.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/layout': 1.8.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/live-region': 1.1.6
+ '@chakra-ui/media-query': 2.0.4_hoipxdaut6bba577cceecxeuuy
+ '@chakra-ui/menu': 1.8.12_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/modal': 1.11.1_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/number-input': 1.4.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/pin-input': 1.7.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/popover': 1.11.9_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/popper': 2.4.3
+ '@chakra-ui/portal': 1.3.10
+ '@chakra-ui/progress': 1.2.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/provider': 1.7.14_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/radio': 1.5.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-env': 1.1.6
+ '@chakra-ui/select': 1.2.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/skeleton': 1.2.14_5pds2yrrxb3wz2szfohthxivim
+ '@chakra-ui/slider': 1.5.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/spinner': 1.2.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/stat': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/switch': 1.3.10_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/table': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/tabs': 1.6.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/tag': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/textarea': 1.2.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/toast': 1.5.9_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/tooltip': 1.5.1_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/transition': 1.4.8_framer-motion@4.1.17
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
+ '@emotion/react': 11.11.4
+ '@emotion/styled': 11.11.5_@emotion+react@11.11.4
+ framer-motion: 4.1.17
+ transitivePeerDependencies:
+ - '@types/react'
+ dev: false
+
+ /@chakra-ui/select/1.2.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-6Tis1+ZrRjQeWhQfziQn3ZdPphV5ccafpZOhiPdTcM2J1XcXOlII+9rHxvaW+jx7zQ5ly5o8kd7iXzalDgl5wA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/skeleton/1.2.14_5pds2yrrxb3wz2szfohthxivim:
+ resolution: {integrity: sha512-R0v4DfQ2yjXCJf9SzhTmDb2PLx5//LxsRbjjgRa8qJCR4MZaGswPrekp4dP8YjY8aEYzuZbvHU12T3vqZBk2GA==}
+ peerDependencies:
+ '@chakra-ui/theme': '>=1.0.0'
+ '@emotion/react': ^11.0.0
+ '@emotion/styled': ^11.0.0
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/media-query': 2.0.4_hoipxdaut6bba577cceecxeuuy
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.4
+ '@emotion/react': 11.11.4
+ '@emotion/styled': 11.11.5_@emotion+react@11.11.4
+ dev: false
+
+ /@chakra-ui/slider/1.5.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-THkGU2BsA6XMosXcEVQkWVRftqUIAKCb+y4iEpR3C2ztqL7Fl/CbIGwyr5majhPhKc275rb8dfxwp8R0L0ZIiQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/spinner/1.2.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-GoUCccN120fGRVgUtfuwcEjeoaxffB+XsgpxX7jhWloXf8b6lkqm68bsxX4Ybb2vGN1fANI98/45JmrnddZO/A==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
+ dev: false
+
+ /@chakra-ui/stat/1.2.7_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-m76jumFW1N+mCG4ytrUz9Mh09nZtS4OQcADEvOslfdI5StwwuzasTA1tueaelPzdhBioMwFUWL05Fr1fXbPJ/Q==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
+ dev: false
+
+ /@chakra-ui/styled-system/1.19.0:
+ resolution: {integrity: sha512-z+bMfWs6jQGkpgarge1kmk78DuDhJIXRUMyRqZ3+CiIkze88bIIsww6mV2i8tEfUfTAvALeMnlYZ1DYsHsTTJw==}
+ dependencies:
+ '@chakra-ui/utils': 1.10.4
+ csstype: 3.0.9
+ dev: false
+
+ /@chakra-ui/switch/1.3.10_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-V6qDLY6oECCbPyu7alWWOAhSBI4+SAuT6XW/zEQbelkwuUOiGO1ax67rTXOmZ59A2AaV1gqQFxDh8AcbvwO5XQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/checkbox': 1.7.1_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17
+ dev: false
+
+ /@chakra-ui/system/1.12.1_rfbvewdlpmur7j6viv5dfnygle:
+ resolution: {integrity: sha512-Rp09/rMuPA3hF38OJxeQciGO9N0Ie1GxwHRAw1AFA/TY3fVyK9pNI5oN+J/1cAxq7v9yKdIr1YfnruJTI9xfEg==}
+ peerDependencies:
+ '@emotion/react': ^11.0.0
+ '@emotion/styled': ^11.0.0
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/color-mode': 1.4.8
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/styled-system': 1.19.0
+ '@chakra-ui/utils': 1.10.4
+ '@emotion/react': 11.11.4
+ '@emotion/styled': 11.11.5_@emotion+react@11.11.4
+ react-fast-compare: 3.2.0
+ dev: false
+
+ /@chakra-ui/table/1.3.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-7agZAgAeDFKviqStvixqnLAH54+setzhx67EztioZTr5Xu+6hQ4rotfJbu8L4i587pcbNg98kCEXEkidjw0XRQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/tabs/1.6.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-hGs2REEVVWyfgs+qEkPiUsNnqwv3QwXfKYyXaMnGS7CCkGgUiEvIO7n9968/KGnGbM4GuEHX+BxG2suIUf24yg==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/clickable': 1.2.6
+ '@chakra-ui/descendant': 2.1.4
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/tag/1.2.7_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-RKrKOol4i/CnpFfo3T9LMm1abaqM+5Bs0soQLbo1iJBbBACY09sWXrQYvveQ2GYzU/OrAUloHqqmKjyVGOlNtg==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/textarea/1.2.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-RDWbMyC87/AFRX98EnVum5eig/7hhcvS1BrqW5lvmTgrpr7KVr80Dfa8hUj58Iq37Z7AqZijDPkBn/zg7bPdIg==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/theme-tools/1.3.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-Wxz3XSJhPCU6OwCHEyH44EegEDQHwvlsx+KDkUDGevOjUU88YuNqOVkKtgTpgMLNQcsrYZ93oPWZUJqqCVNRew==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ '@ctrl/tinycolor': 3.6.1
+ dev: false
+
+ /@chakra-ui/theme/1.14.1_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-VeNZi+zD3yDwzvZm234Cy3vnalCzQ+dhAgpHdIYzGO1CYO8DPa+ROcQ70rUueL7dSvUz15KOiGTw6DAl7LXlGA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ dependencies:
+ '@chakra-ui/anatomy': 1.3.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/toast/1.5.9_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-rns04bGdMcG7Ijg45L+PfuEW4rCd0Ycraix4EJQhcl9RXI18G9sphmlp9feidhZAkI6Ukafq1YvyvkBfkKnIzQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ react-dom: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/alert': 1.3.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/close-button': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/transition': 1.4.8_framer-motion@4.1.17
+ '@chakra-ui/utils': 1.10.4
+ '@reach/alert': 0.13.2
+ framer-motion: 4.1.17
+ dev: false
+
+ /@chakra-ui/tooltip/1.5.1_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-EUAlDdlCBt63VpEVtj/RkFjHQVN/xA9gEAumngQdi1Sp+OXPYCBM9GwSY0NwrM1RfKBnhPSH9wz7FwredJWeaw==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ react-dom: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/popper': 2.4.3
+ '@chakra-ui/portal': 1.3.10
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
+ framer-motion: 4.1.17
+ dev: false
+
+ /@chakra-ui/transition/1.4.8_framer-motion@4.1.17:
+ resolution: {integrity: sha512-5uc8LEuCH7+0h++wqAav/EktTHOjbLDSTXQlU9fzPIlNNgyf2eXrHVN2AGMGKiMR9Z4gS7umQjZ54r0w/mZ/Fw==}
+ peerDependencies:
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17
+ dev: false
+
+ /@chakra-ui/utils/1.10.1:
+ resolution: {integrity: sha512-tK1mCvdJnb4F9IKDINIJ/bbKVBDgO1nN1KTiJDHmNRiqeupOs2uOgtW4JbOEEJIcMHeIpyOKV+2NlP2vrYUZGw==}
+ dependencies:
+ '@types/lodash.mergewith': 4.6.6
+ css-box-model: 1.2.1
+ framesync: 5.3.0
+ lodash.mergewith: 4.6.2
+ dev: false
+
+ /@chakra-ui/utils/1.10.4:
+ resolution: {integrity: sha512-AM91VQQxw8F4F1WDA28mqKY6NFIOuzc2Ekkna88imy2OiqqmYH0xkq8J16L2qj4cLiLozpYqba3C79pWioy6FA==}
+ dependencies:
+ '@types/lodash.mergewith': 4.6.6
+ css-box-model: 1.2.1
+ framesync: 5.3.0
+ lodash.mergewith: 4.6.2
+ dev: false
+
+ /@chakra-ui/utils/1.9.1:
+ resolution: {integrity: sha512-Tue8JfpzOqeHd8vSqAnX1l/Y3Gg456+BXFP/TH6mCIeqMAMbrvv25vDskds0wlXRjMYdmpqHxCEzkalFrscGHA==}
+ dependencies:
+ '@types/lodash.mergewith': 4.6.6
+ css-box-model: 1.2.1
+ framesync: 5.3.0
+ lodash.mergewith: 4.6.2
+ dev: false
+
+ /@chakra-ui/visually-hidden/1.1.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-Xzy5bA0UA+IyMgwJizQYSEdgz8cC/tHdmFB3CniXzmpKTSK8mJddeEBl+cGbXHBzxEUhH7xF1eaS41O+0ezWEQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@ckeditor/ckeditor5-adapter-ckfinder/41.4.2:
+ resolution: {integrity: sha512-yXVVEy+lEmyvYwTxn76Ff53fK/qJphf9stoBF4kFKKK/Tfi59EMog2Ctk3iIkLLyt74KmxzvuCXZwE00wDqfLA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-alignment/41.4.2:
+ resolution: {integrity: sha512-kFiEIZfUNt2TCrwJgM4mot6LLqzbH4vbfYcjbrsUz28kLv8guzcwKXPRe0ZrHo+WS7Cny8j5aCEuUAs3sxEmAg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-autoformat/41.4.2:
+ resolution: {integrity: sha512-Ukit63jHiAuLyfESdLSc6ya12xKJxDP83krZFiMY5bfXssg0z39CGuHOZlwaI9r7bBjWWMGJJeaC/9i/6L9y7g==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-autosave/41.4.2:
+ resolution: {integrity: sha512-TgaUhpFfG9csm4seL7LQSS6Rn+Gcm/wteGyD+Yl50BG1mfMIL259KEFkVTXDRwJadQm2KiiHZDLqpcd/lAqc0A==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-basic-styles/41.4.2:
+ resolution: {integrity: sha512-+Y+M9/JRX3xSHX/E5zFwzuKPzEeeuL61wcig1DuEz7GvK5sRLJcbdVQmiJnfDh3iOcf/ob1nahNgHAEoCno0Dw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-block-quote/41.4.2:
+ resolution: {integrity: sha512-tkEKd3pmDO8QWm243FRDRUv5COayXYZJpMFUL6blw3m6IXb4ujcXKn61A+UwUO+kM0NGTuepHZJkFSuV1/90sw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-balloon-block/41.4.2:
+ resolution: {integrity: sha512-p2pXJcS0hNuDZXyMi0frSwLZBm1hGGEEajJtAvKdg+pKZvvrIabQzvjtrkUf5P6Lbhl/z1/v2h0pBa76025Q5Q==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-balloon': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-balloon/41.4.2:
+ resolution: {integrity: sha512-4FLvd2OV4UgPva0/+xHT4ZuEzKLxB9M6D04/G0YFFwvbPiy71zH0iEMj132Wd0fdEJ0fwjF1HfDzhNgI9BPhPA==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-balloon': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-classic/41.4.2:
+ resolution: {integrity: sha512-fdsxmEPdNdo/usXyYMS2cN/E9KcQIrtmImUYDI+jEs6yzmSgI8By01n+enkKgVxu+2t+g+ctjQwrCpiyWIHTAQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-classic': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-decoupled-document/41.4.2:
+ resolution: {integrity: sha512-YIjcJc9flghFsA5gZaL5oIf6TxLJxUZpXgWYa9l5C68enm36bsDycgJWGGbexHK2HOR9AnBr6ThUBQJkn3StTg==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-alignment': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-decoupled': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-font': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-inline/41.4.2:
+ resolution: {integrity: sha512-h57jjFm0cSOFGSTA2MbvhSXMFxUbPZqwIeA9S0bfUNcGrnm84YaerX8ev8ZP2iMLOckPOcjBiC/70Sp0SvGwxg==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-inline': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-multi-root/41.4.2:
+ resolution: {integrity: sha512-Hou3cHuzx2YR6cfbTYYgk2cSBkudCfPru471KxsXUtzw+B7KuHLm3LtnLJNpScF2WoGaOoaFzB9D2PkzlhF5hA==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-multi-root': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-ckbox/41.4.2:
+ resolution: {integrity: sha512-u6HVTW7O+YSeeCZ+plg78aW74B2G+E7uKy5YQxvB99uCXGWmYy57D2maaEkPI87ZwZD3VlRnvAalaAdngc4M1g==}
+ dependencies:
+ blurhash: 2.0.5
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-ckfinder/41.4.2:
+ resolution: {integrity: sha512-QB3igdZOBI+I8q6eTA5+q27VQrj3Nu7PctNKRehwMC/Z6URboTnntqtkZ3inAZEbWcoLTN2tpDthlufUbQ+cfA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-clipboard/41.4.2:
+ resolution: {integrity: sha512-cMoGXClFxp5uR5Wr1cZnop5IdmqTZXTcrUuEoyhF+1hk+QDhp2ibQ2dTKu6hw+TTzw3Xd6g8Kj0Oj+mXoIur+w==}
+ dependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ '@ckeditor/ckeditor5-widget': 41.4.2
+ lodash-es: 4.17.21
+ dev: false
+
+ /@ckeditor/ckeditor5-cloud-services/41.4.2:
+ resolution: {integrity: sha512-rgDrpEonA2AchfvgYaeb/olMk/HYxUK4B8XPqs+nJxLmBraTv2lANsgsMbwsqAIiRjT9MknmJdX+CEbqljgL/w==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-code-block/41.4.2:
+ resolution: {integrity: sha512-NyPvffk+yA2rWsiF3Q/dDyO1ZtUvlX5hEVEWCG9C4wz9NVtBmoK0v1HmcsBDYQ//TwLY3N8HA0LX00UGTHVGFw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-core/41.4.2:
+ resolution: {integrity: sha512-kCIJjviiMNIMBMx7XFXFp1IeTELQKv7xyPJiVFDyUftIfthf9uWty72ipZ3BBNBGBkaoTiSzDZ507EsX6czuIQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ lodash-es: 4.17.21
+ dev: false
+
+ /@ckeditor/ckeditor5-easy-image/41.4.2:
+ resolution: {integrity: sha512-HJJ3Z4R4mCazV2cz+s8bI00ci3/KyIa+fXodBN1+kg3PldX471zSj+DtyFsZyKnUcpUTVygjPEaHKBDpxtUhjQ==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-editor-balloon/41.4.2:
+ resolution: {integrity: sha512-5KI9spGZY1W2GpRLc0aJiqm1/33sGX9vxXAvIRabSF1uhK4b2WP6zdjGy0IcwBpIRnAkEGoPoetFmx1esJOVDw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-editor-classic/41.4.2:
+ resolution: {integrity: sha512-BVf4ipZz36eCTDFiQ8hqN+oBmuvZPzCmNDDjCYuHNGCKGLaIo1Yzi09fHPUWDw1U+en6Cgnwc2HSWgwf7zC7aA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-editor-decoupled/41.4.2:
+ resolution: {integrity: sha512-kzy+Az4Dn+5dCR0FMk1qzlGaqbgNSi0a7qLr17ghfVnqbLYmhhELjgLOKU9cjjIm5L2KMEH2qRq5QHlacO90kA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-editor-inline/41.4.2:
+ resolution: {integrity: sha512-NlDYZzVVpZblkeVLNrguC437PMqYEXNRGB+KF2uzV5/vPAjz3SjleVcGlbTAWVbMQAUMoOtrmrJjeTR4S93UMA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-editor-multi-root/41.4.2:
+ resolution: {integrity: sha512-sqmSEHzX0C3L5H+Svj1dSOyetxOnVb5vL2eS/EdzRpnhThwaPsTVWI83bGHPRTh4h89yEli3nMbNsdTTnsR7Rw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-engine/41.4.2:
+ resolution: {integrity: sha512-25JqIzNYvCqQ6f02YY+a8A8xtjClzI0YCio0JGoRG3JHJXzYsQbTPsiokuE1BCwMCu3gYoFz8eKJYt2selLsCw==}
+ dependencies:
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ lodash-es: 4.17.21
+ dev: false
+
+ /@ckeditor/ckeditor5-enter/41.4.2:
+ resolution: {integrity: sha512-pvNNcFGn7TFFuJ1QbT0Jggd5xflORxa5i32nZuSzDLVflXGDKq53xSXxapCzd7XsiVXQlufbXt2SlGj7lhyP1w==}
+ dependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ dev: false
+
+ /@ckeditor/ckeditor5-essentials/41.4.2:
+ resolution: {integrity: sha512-1UCvk76v2+NDfHfTo3Qg0EJYpddgSC/i66jY3NnQUFt1zt68rAzm/kFOVYjTD/QDn6pyiMAIUeMlKFkswF+upg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-find-and-replace/41.4.2:
+ resolution: {integrity: sha512-y3JZF9UMgf6Zwt3HzaPI9B8Gbwc1s+IoK78LFuhkP9B/rgQDBFWi3fXo6ywHsHKZ/EK5JZQuHMdI9czyBuG29Q==}
+ dependencies:
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-font/41.4.2:
+ resolution: {integrity: sha512-++7oIK+MXtHGUQkqmXgZqGDBCEsHCuGkss43goGZ97PcRwLegnDRInowj3K/r3nwQcts1VAWnnLCnCSSYbcGIQ==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-heading/41.4.2:
+ resolution: {integrity: sha512-8AyMumy90nY49reQlHuCgSJFSaym4emCVF6vAAqd71FHtmgtfS9w3xMqXAk6QbgMjfy46cwind0JITZfBfKqLg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-highlight/41.4.2:
+ resolution: {integrity: sha512-xAb3Kox0KfoenZaRWgWaZPQwYLauK46WdQ4zYJ16ozQN5mssnS8sU27EFx0OG5EOv9EBurmOcHnP3Rih1szROQ==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-horizontal-line/41.4.2:
+ resolution: {integrity: sha512-le+6melLc8lQTPBWppnWXWaX16KXcvXz8ZOO4uuD7+w5JrtRheEG1N35nTblpeT+QcyBjL9mSu519xReL2qjBA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-html-embed/41.4.2:
+ resolution: {integrity: sha512-rpQMp6ckpYPWnBg8vL23SdKfJ0F80C1iIIO7EA9ZyimPc+hWH7kVF7f8D2Q2ckG1LrlXAXn9cg4tahMFGeiSzw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-html-support/41.4.2:
+ resolution: {integrity: sha512-QHqFgzQucCRvEOPdxcXOMervxhlK6DiR6JqUvgeJyyiWWQT0HGiG7Vy7QKhL6S0w5BUYFoS5B8rj5LjOEm+xsg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-image/41.4.2:
+ resolution: {integrity: sha512-4AgXdvYr6tGzEqwAHVRl+LA8nPRER7vQthVBuT4g1FEkRB6w9kgRsPM2JfsGekoGd8GU0WnMaz8kAcL4C2urYg==}
+ dependencies:
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-indent/41.4.2:
+ resolution: {integrity: sha512-pghHa+DKya6788nTiU1ZItKmAgjf+up4Rqe5GOkxKB7vJc189KSBJYc5foov65nM831rXcWgTk4jybK+JGHmjQ==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-language/41.4.2:
+ resolution: {integrity: sha512-YrjwPRxtHDf99fnsbYxos/OuJcdEYYk4sx8oyVgwG/se0yk4IObx7MZGVebGiqd5cZQRxAxP8VGNgRqjHzpcsg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-link/41.4.2:
+ resolution: {integrity: sha512-woMv9/BxkDjG5xsS/OyaxW9tWTuiG6wZWWcYxVJq8FOW2NL68CKQLmyoQ1rdv/2Gw4UPUXTtB+1uGVmQDMXDsQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-list/41.4.2:
+ resolution: {integrity: sha512-nGb36jNJO6YAU35piKabey9B13xw6TnmL5VySS2dEqSt/DTy7RdY5z2K7CU/NGuIGe/bPBZgU1J0dQkRr2F3hA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-markdown-gfm/41.4.2:
+ resolution: {integrity: sha512-4izHzZ2AO9QMo+WirGVPYu3qqf+YuYe0CtF37rhdRNFLwDMYV7lGBpEj24US/3lV7CuEKM1V5N2Ojl6b4ew10w==}
+ dependencies:
+ ckeditor5: 41.4.2
+ marked: 4.0.12
+ turndown: 6.0.0
+ turndown-plugin-gfm: 1.0.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-media-embed/41.4.2:
+ resolution: {integrity: sha512-+4JqfbnMrB9Si2gAKKCRZTY1hixlk11mY8+PA+32UezyCq/myoAlVGT8ytCr3rywe58nbkGGAv2QbVo6fy8zoQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-mention/41.4.2:
+ resolution: {integrity: sha512-jO8eZE/4NIRJ5Tm/mIdgnLqkBnYj7l3jU4HZLkYvU5tEV5Xk6Rf8bsqMkkBvquf3LVhQbwAiLNjtlrHf68vU7Q==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-minimap/41.4.2:
+ resolution: {integrity: sha512-SJUHeD6l6UVFlY/Uh2vZIr7qHbz5A4Ud285zxAZpiiiv0NP4wQDw6bo28tD/QkCMm1hRcLCkKWd1aNDkFe+42w==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-page-break/41.4.2:
+ resolution: {integrity: sha512-J9sIBgBKhAeZn+KpZADUj6z7VjrbUtHHFL88Ivx2h9jePZPT/LIfDwnnrJEnMjf2KF1bkHvIdP23cZz2BzXwKg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-paragraph/41.4.2:
+ resolution: {integrity: sha512-tOsD40Fcqli5zkH/68WhcqYU8BL4qb8J5xGuk1xmBokz3W0LzebWW0GXmFk5PmWv+fg0dOXfSo8uMzb5ni+CuQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ dev: false
+
+ /@ckeditor/ckeditor5-paste-from-office/41.4.2:
+ resolution: {integrity: sha512-jby5YQ2QowGdDCshPq5Ej11wTFcBZP2dYhQTu6fRZRc+mdihKCILxh0rwBgBOCCf+buflx8RYp/WKd76Kcuq5g==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-remove-format/41.4.2:
+ resolution: {integrity: sha512-XlCIvIETcWn6/6jfPhVzSqkXZ6fnU0iqqNlyKF67dStfc6vVc6Ut31P+f84SwAJA8ay553OUNyY14YZcoP2tLg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-restricted-editing/41.4.2:
+ resolution: {integrity: sha512-t34VNBZbxO07nEazAKECXcRgH5VrPbrTJW0iZO0/w/yPHUAPZ8ejcdEuohr7cLS3TCHE09biFc1lNPLas/xK5w==}
+ dependencies:
+ ckeditor5: 41.4.2
+ dev: false
+
+ /@ckeditor/ckeditor5-select-all/41.4.2:
+ resolution: {integrity: sha512-zC0wS0IggFDvk1wDB/SregfejLJk62In+i7P0otOaySg5tFfkJqT3OycplbPqIn3D1UCpIIz4KJzRl66PEVI7g==}
+ dependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ dev: false
+
+ /@ckeditor/ckeditor5-show-blocks/41.4.2:
+ resolution: {integrity: sha512-0mKErojbxNr8Xbx5OjDLdciU3Onwn33h5IMU2j6imcwqORLzyXgU9ENhwwfw6Roeu8Guvi6hEVKBW6GE1UIYIQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
+ dev: false
+
+ /@ckeditor/ckeditor5-source-editing/41.4.2:
+ resolution: {integrity: sha512-TnBJLLEU5dckalm8KZP/xC0kLMeNDVTrWUp8iCLcmLoe9xlt/wIO8VzLVPW+WjgzSZ7Yq+vrzHaCyJRVxuDsBQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-theme-lark': 41.4.2
+ ckeditor5: 41.4.2
+ dev: false
+
+ /@ckeditor/ckeditor5-special-characters/41.4.2:
+ resolution: {integrity: sha512-OicpKzkYqyTjPRGZf6xMYQnuUCAZ4QS2H1MAEH5xTiwYv+eqR/enC/m9FxCEs2Z3DlO9DIjVnoBxe2qUCSxRBQ==}
+ dependencies:
+ ckeditor5: 41.4.2
+ dev: false
+
+ /@ckeditor/ckeditor5-style/41.4.2:
+ resolution: {integrity: sha512-q39mtg1kBrmJ8XA7XbOy4HhVzrICvt0KS484d5c3NaX7JetwapAM/QfWDGfMToMukzFcntaGt0be5Bwja0LJSw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ dev: false
+
+ /@ckeditor/ckeditor5-table/41.4.2:
+ resolution: {integrity: sha512-wDn1UUaKHcrscmTYj2PwCFbj9FOXFfhk4JbCepyGFQt31YyaOKBzAyZaJQ7E38wJq7a4afac3MwUDk+j1X5FDw==}
+ dependencies:
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ dev: false
+
+ /@ckeditor/ckeditor5-theme-lark/41.4.2:
+ resolution: {integrity: sha512-rzFSAhdPMD2QylJDwgGniiBoCuHWQAQIEKDtMbQ4FH+/7JiCfKgUsnZxqhDPJwQyV1MWVz4wmXK/1RKqHohOvg==}
+ dependencies:
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ dev: false
+
+ /@ckeditor/ckeditor5-typing/41.4.2:
+ resolution: {integrity: sha512-dXP+uNl+jkfrSIqMNai2yakR/3JqJ9g0M9WwwnV5vzbEOKD4YKP5+ixvqKb39dwLCLZ4mGpJaX+rjNXBExjSIw==}
+ dependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ lodash-es: 4.17.21
+ dev: false
+
+ /@ckeditor/ckeditor5-ui/41.4.2:
+ resolution: {integrity: sha512-wvRbDXJN8PmaWyB0H487DjvdH2ayMyN52+WLkZlVbhX9ICb1sf5XnLz4v/wXeQ4W8JbWdsg2FZIDDQDeXjvyJw==}
+ dependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ color-convert: 2.0.1
+ color-parse: 1.4.2
+ lodash-es: 4.17.21
+ vanilla-colorful: 0.7.2
+ dev: false
+
+ /@ckeditor/ckeditor5-undo/41.4.2:
+ resolution: {integrity: sha512-mJMoALRWAaFg9Jgu+ufSGR/cUGCawMcz7Iwr5TBdrICmIckxx0DxPwWCPoTgI1laBZtRy/QctO2gQ4H+FYbfUw==}
+ dependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ dev: false
+
+ /@ckeditor/ckeditor5-upload/41.4.2:
+ resolution: {integrity: sha512-dCNQhZw9QcgGUKlYD8STpgNanNp7ILPMRNoDFW9NWHRKsUpjGMYIU3dsE4f08hkA/bckJ9yBaZc7a0LavOrncw==}
+ dependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ dev: false
+
+ /@ckeditor/ckeditor5-utils/41.4.2:
+ resolution: {integrity: sha512-VgLr2eLVggyhDqa7H8JUxpnOLTZ0R/YuDZ6ENVUumd9q4VrpNs94ZK0Y/Shp7UmuHQ/sTth+PWTsi+t5KwYqeQ==}
+ dependencies:
+ lodash-es: 4.17.21
+ dev: false
+
+ /@ckeditor/ckeditor5-watchdog/41.4.2:
+ resolution: {integrity: sha512-u17Y8XHhyDHaShQei7WuZ0th8DgKo56YfJqRdZautHKnPJ32r+O97uTcGfBpsobhZbJ6Ss3tUwebve3Obv2K/w==}
+ dependencies:
+ lodash-es: 4.17.21
+ dev: false
+
+ /@ckeditor/ckeditor5-widget/41.4.2:
+ resolution: {integrity: sha512-hpM9Ti2iFvBBIPAESJp3bOY4SR6fzF3V5t46CpVDStLJdqwnQOuZ8Nv1dqzZZWCuK+EByAbY14pgfYM92nNHrQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-enter': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ lodash-es: 4.17.21
+ dev: false
+
+ /@ckeditor/ckeditor5-word-count/41.4.2:
+ resolution: {integrity: sha512-XuCLL97FotJ9QfuCZOhW7V2XHfVXkplIDpwgnH4HnLjtMLGFVZbyb0k9pEJk3Kp+F8qQbfWDIPFzaNKRDKqtRA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ dev: false
+
+ /@cnakazawa/watch/1.0.4:
+ resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==}
+ engines: {node: '>=0.1.95'}
+ hasBin: true
+ dependencies:
+ exec-sh: 0.3.6
+ minimist: 1.2.8
+ dev: false
+
+ /@csstools/convert-colors/1.4.0:
+ resolution: {integrity: sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==}
+ engines: {node: '>=4.0.0'}
+ dev: false
+
+ /@csstools/normalize.css/10.1.0:
+ resolution: {integrity: sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==}
+ dev: false
+
+ /@ctrl/tinycolor/3.6.1:
+ resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
+ engines: {node: '>=10'}
+ dev: false
+
+ /@emotion/babel-plugin/11.11.0:
+ resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==}
+ dependencies:
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/runtime': 7.24.7
+ '@emotion/hash': 0.9.1
+ '@emotion/memoize': 0.8.1
+ '@emotion/serialize': 1.1.4
+ babel-plugin-macros: 3.1.0
+ convert-source-map: 1.9.0
+ escape-string-regexp: 4.0.0
+ find-root: 1.1.0
+ source-map: 0.5.7
+ stylis: 4.2.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@emotion/cache/10.0.29:
+ resolution: {integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==}
+ dependencies:
+ '@emotion/sheet': 0.9.4
+ '@emotion/stylis': 0.8.5
+ '@emotion/utils': 0.11.3
+ '@emotion/weak-memoize': 0.2.5
+ dev: false
+
+ /@emotion/cache/11.11.0:
+ resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==}
+ dependencies:
+ '@emotion/memoize': 0.8.1
+ '@emotion/sheet': 1.2.2
+ '@emotion/utils': 1.2.1
+ '@emotion/weak-memoize': 0.3.1
+ stylis: 4.2.0
+ dev: false
+
+ /@emotion/core/10.3.1:
+ resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==}
+ peerDependencies:
+ react: '>=16.3.0'
+ dependencies:
+ '@babel/runtime': 7.24.7
+ '@emotion/cache': 10.0.29
+ '@emotion/css': 10.0.27
+ '@emotion/serialize': 0.11.16
+ '@emotion/sheet': 0.9.4
+ '@emotion/utils': 0.11.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@emotion/css/10.0.27:
+ resolution: {integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==}
+ dependencies:
+ '@emotion/serialize': 0.11.16
+ '@emotion/utils': 0.11.3
+ babel-plugin-emotion: 10.2.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@emotion/hash/0.8.0:
+ resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
+ dev: false
+
+ /@emotion/hash/0.9.1:
+ resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==}
+ dev: false
+
+ /@emotion/is-prop-valid/0.8.8:
+ resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
+ dependencies:
+ '@emotion/memoize': 0.7.4
+ dev: false
+
+ /@emotion/is-prop-valid/1.2.2:
+ resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==}
+ dependencies:
+ '@emotion/memoize': 0.8.1
+ dev: false
+
+ /@emotion/memoize/0.7.4:
+ resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
+ dev: false
+
+ /@emotion/memoize/0.8.1:
+ resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
+ dev: false
+
+ /@emotion/react/11.11.4:
+ resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.7
+ '@emotion/babel-plugin': 11.11.0
+ '@emotion/cache': 11.11.0
+ '@emotion/serialize': 1.1.4
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.1
+ '@emotion/utils': 1.2.1
+ '@emotion/weak-memoize': 0.3.1
+ hoist-non-react-statics: 3.3.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@emotion/serialize/0.11.16:
+ resolution: {integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==}
+ dependencies:
+ '@emotion/hash': 0.8.0
+ '@emotion/memoize': 0.7.4
+ '@emotion/unitless': 0.7.5
+ '@emotion/utils': 0.11.3
+ csstype: 2.6.21
+ dev: false
+
+ /@emotion/serialize/1.1.4:
+ resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==}
+ dependencies:
+ '@emotion/hash': 0.9.1
+ '@emotion/memoize': 0.8.1
+ '@emotion/unitless': 0.8.1
+ '@emotion/utils': 1.2.1
+ csstype: 3.1.3
+ dev: false
+
+ /@emotion/sheet/0.9.4:
+ resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==}
+ dev: false
+
+ /@emotion/sheet/1.2.2:
+ resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==}
+ dev: false
+
+ /@emotion/styled/11.11.5_@emotion+react@11.11.4:
+ resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==}
+ peerDependencies:
+ '@emotion/react': ^11.0.0-rc.0
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.7
+ '@emotion/babel-plugin': 11.11.0
+ '@emotion/is-prop-valid': 1.2.2
+ '@emotion/react': 11.11.4
+ '@emotion/serialize': 1.1.4
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.1
+ '@emotion/utils': 1.2.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@emotion/stylis/0.8.5:
+ resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
+ dev: false
+
+ /@emotion/unitless/0.7.5:
+ resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
+ dev: false
+
+ /@emotion/unitless/0.8.1:
+ resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==}
+ dev: false
+
+ /@emotion/use-insertion-effect-with-fallbacks/1.0.1:
+ resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==}
+ peerDependencies:
+ react: '>=16.8.0'
+ dev: false
+
+ /@emotion/utils/0.11.3:
+ resolution: {integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==}
+ dev: false
+
+ /@emotion/utils/1.2.1:
+ resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==}
+ dev: false
+
+ /@emotion/weak-memoize/0.2.5:
+ resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==}
+ dev: false
+
+ /@emotion/weak-memoize/0.3.1:
+ resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==}
+ dev: false
+
+ /@fnando/cnpj/1.0.2:
+ resolution: {integrity: sha512-U0r8Mu55rvEDfDIzo1j6szZHHcIZVKg9PKCHvewfHrmYDNDuCt2zjp6TMMI0oIg9hh9fJQqAavzLxMSKHW/W7w==}
+ dev: false
+
+ /@fnando/cpf/1.0.2:
+ resolution: {integrity: sha512-lfSfdONVQ/1aKvsA7PnawQjSoE5PXOyHich3WFIbAuYRMAw6Ax1FmIWxPxCfHP/Rh0R2cG/CxaimUW7NI6rgEQ==}
+ dev: false
+
+ /@hapi/address/2.1.4:
+ resolution: {integrity: sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==}
+ deprecated: Moved to 'npm install @sideway/address'
+ dev: false
+
+ /@hapi/bourne/1.3.2:
+ resolution: {integrity: sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==}
+ deprecated: This version has been deprecated and is no longer supported or maintained
+ dev: false
+
+ /@hapi/hoek/8.5.1:
+ resolution: {integrity: sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==}
+ deprecated: This version has been deprecated and is no longer supported or maintained
+ dev: false
+
+ /@hapi/joi/15.1.1:
+ resolution: {integrity: sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==}
+ deprecated: Switch to 'npm install joi'
+ dependencies:
+ '@hapi/address': 2.1.4
+ '@hapi/bourne': 1.3.2
+ '@hapi/hoek': 8.5.1
+ '@hapi/topo': 3.1.6
+ dev: false
+
+ /@hapi/topo/3.1.6:
+ resolution: {integrity: sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==}
+ deprecated: This version has been deprecated and is no longer supported or maintained
+ dependencies:
+ '@hapi/hoek': 8.5.1
+ dev: false
+
+ /@icons/material/0.2.4:
+ resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==}
+ peerDependencies:
+ react: '*'
+ dev: false
+
+ /@jest/console/24.9.0:
+ resolution: {integrity: sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/source-map': 24.9.0
+ chalk: 2.4.2
+ slash: 2.0.0
+ dev: false
+
+ /@jest/core/24.9.0:
+ resolution: {integrity: sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/reporters': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ ansi-escapes: 3.2.0
+ chalk: 2.4.2
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ jest-changed-files: 24.9.0
+ jest-config: 24.9.0
+ jest-haste-map: 24.9.0
+ jest-message-util: 24.9.0
+ jest-regex-util: 24.9.0
+ jest-resolve: 24.9.0
+ jest-resolve-dependencies: 24.9.0
+ jest-runner: 24.9.0
+ jest-runtime: 24.9.0
+ jest-snapshot: 24.9.0
+ jest-util: 24.9.0
+ jest-validate: 24.9.0
+ jest-watcher: 24.9.0
+ micromatch: 3.1.10
+ p-each-series: 1.0.0
+ realpath-native: 1.1.0
+ rimraf: 2.7.1
+ slash: 2.0.0
+ strip-ansi: 5.2.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@jest/environment/24.9.0:
+ resolution: {integrity: sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/fake-timers': 24.9.0
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ jest-mock: 24.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@jest/fake-timers/24.9.0:
+ resolution: {integrity: sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ jest-message-util: 24.9.0
+ jest-mock: 24.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@jest/reporters/24.9.0:
+ resolution: {integrity: sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/environment': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ exit: 0.1.2
+ glob: 7.2.3
+ istanbul-lib-coverage: 2.0.5
+ istanbul-lib-instrument: 3.3.0
+ istanbul-lib-report: 2.0.8
+ istanbul-lib-source-maps: 3.0.6
+ istanbul-reports: 2.2.7
+ jest-haste-map: 24.9.0
+ jest-resolve: 24.9.0
+ jest-runtime: 24.9.0
+ jest-util: 24.9.0
+ jest-worker: 24.9.0
+ node-notifier: 5.4.5
+ slash: 2.0.0
+ source-map: 0.6.1
+ string-length: 2.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@jest/source-map/24.9.0:
+ resolution: {integrity: sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==}
+ engines: {node: '>= 6'}
+ dependencies:
+ callsites: 3.1.0
+ graceful-fs: 4.2.11
+ source-map: 0.6.1
+ dev: false
+
+ /@jest/test-result/24.9.0:
+ resolution: {integrity: sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/istanbul-lib-coverage': 2.0.6
+ dev: false
+
+ /@jest/test-sequencer/24.9.0:
+ resolution: {integrity: sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/test-result': 24.9.0
+ jest-haste-map: 24.9.0
+ jest-runner: 24.9.0
+ jest-runtime: 24.9.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@jest/transform/24.9.0:
+ resolution: {integrity: sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@babel/core': 7.9.0
+ '@jest/types': 24.9.0
+ babel-plugin-istanbul: 5.2.0
+ chalk: 2.4.2
+ convert-source-map: 1.9.0
+ fast-json-stable-stringify: 2.1.0
+ graceful-fs: 4.2.11
+ jest-haste-map: 24.9.0
+ jest-regex-util: 24.9.0
+ jest-util: 24.9.0
+ micromatch: 3.1.10
+ pirates: 4.0.6
+ realpath-native: 1.1.0
+ slash: 2.0.0
+ source-map: 0.6.1
+ write-file-atomic: 2.4.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@jest/types/24.9.0:
+ resolution: {integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 1.1.2
+ '@types/yargs': 13.0.12
+ dev: false
+
+ /@jridgewell/gen-mapping/0.3.5:
+ resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/set-array': 1.2.1
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.25
+ dev: false
+
+ /@jridgewell/resolve-uri/3.1.2:
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
+ engines: {node: '>=6.0.0'}
+ dev: false
+
+ /@jridgewell/set-array/1.2.1:
+ resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
+ engines: {node: '>=6.0.0'}
+ dev: false
+
+ /@jridgewell/sourcemap-codec/1.4.15:
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+ dev: false
+
+ /@jridgewell/trace-mapping/0.3.25:
+ resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
+ dev: false
+
+ /@mrmlnc/readdir-enhanced/2.2.1:
+ resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==}
+ engines: {node: '>=4'}
+ dependencies:
+ call-me-maybe: 1.0.2
+ glob-to-regexp: 0.3.0
+ dev: false
+
+ /@nodelib/fs.stat/1.1.3:
+ resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /@popperjs/core/2.11.8:
+ resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
+ dev: false
+
+ /@reach/alert/0.13.2:
+ resolution: {integrity: sha512-LDz83AXCrClyq/MWe+0vaZfHp1Ytqn+kgL5VxG7rirUvmluWaj/snxzfNPWn0Ma4K2YENmXXRC/iHt5X95SqIg==}
+ peerDependencies:
+ react: ^16.8.0 || 17.x
+ react-dom: ^16.8.0 || 17.x
+ dependencies:
+ '@reach/utils': 0.13.2
+ '@reach/visually-hidden': 0.13.2
+ prop-types: 15.8.1
+ tslib: 2.6.3
+ dev: false
+
+ /@reach/utils/0.13.2:
+ resolution: {integrity: sha512-3ir6cN60zvUrwjOJu7C6jec/samqAeyAB12ZADK+qjnmQPdzSYldrFWwDVV5H0WkhbYXR3uh+eImu13hCetNPQ==}
+ peerDependencies:
+ react: ^16.8.0 || 17.x
+ react-dom: ^16.8.0 || 17.x
+ dependencies:
+ '@types/warning': 3.0.3
+ tslib: 2.6.3
+ warning: 4.0.3
+ dev: false
+
+ /@reach/visually-hidden/0.13.2:
+ resolution: {integrity: sha512-sPZwNS0/duOuG0mYwE5DmgEAzW9VhgU3aIt1+mrfT/xiT9Cdncqke+kRBQgU708q/Ttm9tWsoHni03nn/SuPTQ==}
+ peerDependencies:
+ react: ^16.8.0 || 17.x
+ react-dom: ^16.8.0 || 17.x
+ dependencies:
+ prop-types: 15.8.1
+ tslib: 2.6.3
+ dev: false
+
+ /@svgr/babel-plugin-add-jsx-attribute/4.2.0:
+ resolution: {integrity: sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /@svgr/babel-plugin-remove-jsx-attribute/4.2.0:
+ resolution: {integrity: sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /@svgr/babel-plugin-remove-jsx-empty-expression/4.2.0:
+ resolution: {integrity: sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /@svgr/babel-plugin-replace-jsx-attribute-value/4.2.0:
+ resolution: {integrity: sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /@svgr/babel-plugin-svg-dynamic-title/4.3.3:
+ resolution: {integrity: sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /@svgr/babel-plugin-svg-em-dimensions/4.2.0:
+ resolution: {integrity: sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /@svgr/babel-plugin-transform-react-native-svg/4.2.0:
+ resolution: {integrity: sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /@svgr/babel-plugin-transform-svg-component/4.2.0:
+ resolution: {integrity: sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /@svgr/babel-preset/4.3.3:
+ resolution: {integrity: sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@svgr/babel-plugin-add-jsx-attribute': 4.2.0
+ '@svgr/babel-plugin-remove-jsx-attribute': 4.2.0
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 4.2.0
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 4.2.0
+ '@svgr/babel-plugin-svg-dynamic-title': 4.3.3
+ '@svgr/babel-plugin-svg-em-dimensions': 4.2.0
+ '@svgr/babel-plugin-transform-react-native-svg': 4.2.0
+ '@svgr/babel-plugin-transform-svg-component': 4.2.0
+ dev: false
+
+ /@svgr/core/4.3.3:
+ resolution: {integrity: sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@svgr/plugin-jsx': 4.3.3
+ camelcase: 5.3.1
+ cosmiconfig: 5.2.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@svgr/hast-util-to-babel-ast/4.3.2:
+ resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@svgr/plugin-jsx/4.3.3:
+ resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/core': 7.9.0
+ '@svgr/babel-preset': 4.3.3
+ '@svgr/hast-util-to-babel-ast': 4.3.2
+ svg-parser: 2.0.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@svgr/plugin-svgo/4.3.1:
+ resolution: {integrity: sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==}
+ engines: {node: '>=8'}
+ dependencies:
+ cosmiconfig: 5.2.1
+ merge-deep: 3.0.3
+ svgo: 1.3.2
+ dev: false
+
+ /@svgr/webpack/4.3.3:
+ resolution: {integrity: sha512-bjnWolZ6KVsHhgyCoYRFmbd26p8XVbulCzSG53BDQqAr+JOAderYK7CuYrB3bDjHJuF6LJ7Wrr42+goLRV9qIg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/plugin-transform-react-constant-elements': 7.24.7_@babel+core@7.9.0
+ '@babel/preset-env': 7.24.7_@babel+core@7.9.0
+ '@babel/preset-react': 7.24.7_@babel+core@7.9.0
+ '@svgr/core': 4.3.3
+ '@svgr/plugin-jsx': 4.3.3
+ '@svgr/plugin-svgo': 4.3.1
+ loader-utils: 1.4.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@tootallnate/once/1.1.2:
+ resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /@types/babel__core/7.20.5:
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+ dependencies:
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+ '@types/babel__generator': 7.6.8
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.20.6
+ dev: false
+
+ /@types/babel__generator/7.6.8:
+ resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
+ dependencies:
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@types/babel__template/7.4.4:
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+ dependencies:
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@types/babel__traverse/7.20.6:
+ resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
+ dependencies:
+ '@babel/types': 7.24.7
+ dev: false
+
+ /@types/d3-array/3.2.1:
+ resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
+ dev: false
+
+ /@types/d3-color/3.1.3:
+ resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
+ dev: false
+
+ /@types/d3-ease/3.0.2:
+ resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
+ dev: false
+
+ /@types/d3-interpolate/3.0.4:
+ resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
+ dependencies:
+ '@types/d3-color': 3.1.3
+ dev: false
+
+ /@types/d3-path/1.0.11:
+ resolution: {integrity: sha512-4pQMp8ldf7UaB/gR8Fvvy69psNHkTpD/pVw3vmEi8iZAB9EPMBruB1JvHO4BIq9QkUUd2lV1F5YXpMNj7JPBpw==}
+ dev: true
+
+ /@types/d3-path/3.1.0:
+ resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==}
+ dev: false
+
+ /@types/d3-scale/4.0.8:
+ resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==}
+ dependencies:
+ '@types/d3-time': 3.0.3
+ dev: false
+
+ /@types/d3-shape/1.3.12:
+ resolution: {integrity: sha512-8oMzcd4+poSLGgV0R1Q1rOlx/xdmozS4Xab7np0eamFFUYq71AU9pOCJEFnkXW2aI/oXdVYJzw6pssbSut7Z9Q==}
+ dependencies:
+ '@types/d3-path': 1.0.11
+ dev: true
+
+ /@types/d3-shape/3.1.6:
+ resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==}
+ dependencies:
+ '@types/d3-path': 3.1.0
+ dev: false
+
+ /@types/d3-time/3.0.3:
+ resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==}
+ dev: false
+
+ /@types/d3-timer/3.0.2:
+ resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
+ dev: false
+
+ /@types/downloadjs/1.4.6:
+ resolution: {integrity: sha512-mp3w70vsaiLRT9ix92fmI9Ob2yJAPZm6tShJtofo2uHbN11G2i6a0ApIEjBl/kv3e9V7Pv7jMjk1bUwYWvMHvA==}
+ dev: false
+
+ /@types/eslint-visitor-keys/1.0.0:
+ resolution: {integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==}
+ dev: false
+
+ /@types/glob/7.2.0:
+ resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
+ dependencies:
+ '@types/minimatch': 5.1.2
+ '@types/node': 20.14.6
+ dev: false
+
+ /@types/graceful-fs/4.1.9:
+ resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
+ dependencies:
+ '@types/node': 20.14.6
+ dev: false
+
+ /@types/istanbul-lib-coverage/2.0.6:
+ resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
+ dev: false
+
+ /@types/istanbul-lib-report/3.0.3:
+ resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.6
+ dev: false
+
+ /@types/istanbul-reports/1.1.2:
+ resolution: {integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==}
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-lib-report': 3.0.3
+ dev: false
+
+ /@types/json-schema/7.0.15:
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
+ dev: false
+
+ /@types/lodash.mergewith/4.6.6:
+ resolution: {integrity: sha512-RY/8IaVENjG19rxTZu9Nukqh0W2UrYgmBj5sdns4hWRZaV8PqR7wIKHFKzvOTjo4zVRV7sVI+yFhAJql12Kfqg==}
+ dependencies:
+ '@types/lodash': 4.17.5
+ dev: false
+
+ /@types/lodash/4.17.5:
+ resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==}
+ dev: false
+
+ /@types/minimatch/5.1.2:
+ resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
+ dev: false
+
+ /@types/node/20.14.6:
+ resolution: {integrity: sha512-JbA0XIJPL1IiNnU7PFxDXyfAwcwVVrOoqyzzyQTyMeVhBzkJVMSkC1LlVsRQ2lpqiY4n6Bb9oCS6lzDKVQxbZw==}
+ dependencies:
+ undici-types: 5.26.5
+ dev: false
+
+ /@types/normalize-package-data/2.4.4:
+ resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
+ dev: false
+
+ /@types/parse-json/4.0.2:
+ resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
+ dev: false
+
+ /@types/prettier/2.7.3:
+ resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==}
+ dev: true
+
+ /@types/prop-types/15.7.12:
+ resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
+
+ /@types/q/1.5.8:
+ resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==}
+ dev: false
+
+ /@types/react-color/3.0.12:
+ resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==}
+ dependencies:
+ '@types/react': 18.3.3
+ '@types/reactcss': 1.2.12
+ dev: false
+
+ /@types/react-table/7.7.20:
+ resolution: {integrity: sha512-ahMp4pmjVlnExxNwxyaDrFgmKxSbPwU23sGQw2gJK4EhCvnvmib2s/O/+y1dfV57dXOwpr2plfyBol+vEHbi2w==}
+ dependencies:
+ '@types/react': 18.3.3
+ dev: false
+
+ /@types/react/18.3.3:
+ resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==}
+ dependencies:
+ '@types/prop-types': 15.7.12
+ csstype: 3.1.3
+
+ /@types/reactcss/1.2.12:
+ resolution: {integrity: sha512-BrXUQ86/wbbFiZv8h/Q1/Q1XOsaHneYmCb/tHe9+M8XBAAUc2EHfdY0DY22ZZjVSaXr5ix7j+zsqO2eGZub8lQ==}
+ dependencies:
+ '@types/react': 18.3.3
+ dev: false
+
+ /@types/recharts/1.8.29:
+ resolution: {integrity: sha512-ulKklaVsnFIIhTQsQw226TnOibrddW1qUQNFVhoQEyY1Z7FRQrNecFCGt7msRuJseudzE9czVawZb17dK/aPXw==}
+ dependencies:
+ '@types/d3-shape': 1.3.12
+ '@types/react': 18.3.3
+ dev: true
+
+ /@types/scheduler/0.16.8:
+ resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==}
+ dev: true
+
+ /@types/stack-utils/1.0.1:
+ resolution: {integrity: sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==}
+ dev: false
+
+ /@types/warning/3.0.3:
+ resolution: {integrity: sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==}
+ dev: false
+
+ /@types/yargs-parser/21.0.3:
+ resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
+ dev: false
+
+ /@types/yargs/13.0.12:
+ resolution: {integrity: sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==}
+ dependencies:
+ '@types/yargs-parser': 21.0.3
+ dev: false
+
+ /@typescript-eslint/eslint-plugin/2.34.0_fmavwhclprfd5wnbs7ocgoy2gu:
+ resolution: {integrity: sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ==}
+ engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
+ peerDependencies:
+ '@typescript-eslint/parser': ^2.0.0
+ eslint: ^5.0.0 || ^6.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/experimental-utils': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
+ '@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
+ eslint: 6.8.0
+ functional-red-black-tree: 1.0.1
+ regexpp: 3.2.0
+ tsutils: 3.21.0_typescript@3.9.10
+ typescript: 3.9.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@typescript-eslint/experimental-utils/2.34.0_z6m2zvrkqxyghb4a2ijhravsdi:
+ resolution: {integrity: sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==}
+ engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
+ peerDependencies:
+ eslint: '*'
+ dependencies:
+ '@types/json-schema': 7.0.15
+ '@typescript-eslint/typescript-estree': 2.34.0_typescript@3.9.10
+ eslint: 6.8.0
+ eslint-scope: 5.1.1
+ eslint-utils: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: false
+
+ /@typescript-eslint/parser/2.34.0_z6m2zvrkqxyghb4a2ijhravsdi:
+ resolution: {integrity: sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==}
+ engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
+ peerDependencies:
+ eslint: ^5.0.0 || ^6.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@types/eslint-visitor-keys': 1.0.0
+ '@typescript-eslint/experimental-utils': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
+ '@typescript-eslint/typescript-estree': 2.34.0_typescript@3.9.10
+ eslint: 6.8.0
+ eslint-visitor-keys: 1.3.0
+ typescript: 3.9.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@typescript-eslint/typescript-estree/2.34.0_typescript@3.9.10:
+ resolution: {integrity: sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==}
+ engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ debug: 4.3.5
+ eslint-visitor-keys: 1.3.0
+ glob: 7.2.3
+ is-glob: 4.0.3
+ lodash: 4.17.21
+ semver: 7.6.2
+ tsutils: 3.21.0_typescript@3.9.10
+ typescript: 3.9.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@webassemblyjs/ast/1.8.5:
+ resolution: {integrity: sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==}
+ dependencies:
+ '@webassemblyjs/helper-module-context': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/wast-parser': 1.8.5
+ dev: false
+
+ /@webassemblyjs/floating-point-hex-parser/1.8.5:
+ resolution: {integrity: sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==}
+ dev: false
+
+ /@webassemblyjs/helper-api-error/1.8.5:
+ resolution: {integrity: sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==}
+ dev: false
+
+ /@webassemblyjs/helper-buffer/1.8.5:
+ resolution: {integrity: sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==}
+ dev: false
+
+ /@webassemblyjs/helper-code-frame/1.8.5:
+ resolution: {integrity: sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==}
+ dependencies:
+ '@webassemblyjs/wast-printer': 1.8.5
+ dev: false
+
+ /@webassemblyjs/helper-fsm/1.8.5:
+ resolution: {integrity: sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==}
+ dev: false
+
+ /@webassemblyjs/helper-module-context/1.8.5:
+ resolution: {integrity: sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==}
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ mamacro: 0.0.3
+ dev: false
+
+ /@webassemblyjs/helper-wasm-bytecode/1.8.5:
+ resolution: {integrity: sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==}
+ dev: false
+
+ /@webassemblyjs/helper-wasm-section/1.8.5:
+ resolution: {integrity: sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==}
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-buffer': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/wasm-gen': 1.8.5
+ dev: false
+
+ /@webassemblyjs/ieee754/1.8.5:
+ resolution: {integrity: sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==}
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+ dev: false
+
+ /@webassemblyjs/leb128/1.8.5:
+ resolution: {integrity: sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==}
+ dependencies:
+ '@xtuc/long': 4.2.2
+ dev: false
+
+ /@webassemblyjs/utf8/1.8.5:
+ resolution: {integrity: sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==}
+ dev: false
+
+ /@webassemblyjs/wasm-edit/1.8.5:
+ resolution: {integrity: sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==}
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-buffer': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/helper-wasm-section': 1.8.5
+ '@webassemblyjs/wasm-gen': 1.8.5
+ '@webassemblyjs/wasm-opt': 1.8.5
+ '@webassemblyjs/wasm-parser': 1.8.5
+ '@webassemblyjs/wast-printer': 1.8.5
+ dev: false
+
+ /@webassemblyjs/wasm-gen/1.8.5:
+ resolution: {integrity: sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==}
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/ieee754': 1.8.5
+ '@webassemblyjs/leb128': 1.8.5
+ '@webassemblyjs/utf8': 1.8.5
+ dev: false
+
+ /@webassemblyjs/wasm-opt/1.8.5:
+ resolution: {integrity: sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==}
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-buffer': 1.8.5
+ '@webassemblyjs/wasm-gen': 1.8.5
+ '@webassemblyjs/wasm-parser': 1.8.5
+ dev: false
+
+ /@webassemblyjs/wasm-parser/1.8.5:
+ resolution: {integrity: sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==}
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-api-error': 1.8.5
+ '@webassemblyjs/helper-wasm-bytecode': 1.8.5
+ '@webassemblyjs/ieee754': 1.8.5
+ '@webassemblyjs/leb128': 1.8.5
+ '@webassemblyjs/utf8': 1.8.5
+ dev: false
+
+ /@webassemblyjs/wast-parser/1.8.5:
+ resolution: {integrity: sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==}
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/floating-point-hex-parser': 1.8.5
+ '@webassemblyjs/helper-api-error': 1.8.5
+ '@webassemblyjs/helper-code-frame': 1.8.5
+ '@webassemblyjs/helper-fsm': 1.8.5
+ '@xtuc/long': 4.2.2
+ dev: false
+
+ /@webassemblyjs/wast-printer/1.8.5:
+ resolution: {integrity: sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==}
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/wast-parser': 1.8.5
+ '@xtuc/long': 4.2.2
+ dev: false
+
+ /@xtuc/ieee754/1.2.0:
+ resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
+ dev: false
+
+ /@xtuc/long/4.2.2:
+ resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
+ dev: false
+
+ /abab/2.0.6:
+ resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
+ deprecated: Use your platform's native atob() and btoa() methods instead
+ dev: false
+
+ /accepts/1.3.8:
+ resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ mime-types: 2.1.35
+ negotiator: 0.6.3
+ dev: false
+
+ /acorn-globals/4.3.4:
+ resolution: {integrity: sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==}
+ dependencies:
+ acorn: 6.4.2
+ acorn-walk: 6.2.0
+ dev: false
+
+ /acorn-globals/6.0.0:
+ resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==}
+ dependencies:
+ acorn: 7.4.1
+ acorn-walk: 7.2.0
+ dev: false
+
+ /acorn-jsx/5.3.2_acorn@7.4.1:
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ acorn: 7.4.1
+ dev: false
+
+ /acorn-walk/6.2.0:
+ resolution: {integrity: sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==}
+ engines: {node: '>=0.4.0'}
+ dev: false
+
+ /acorn-walk/7.2.0:
+ resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
+ engines: {node: '>=0.4.0'}
+ dev: false
+
+ /acorn/5.7.4:
+ resolution: {integrity: sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: false
+
+ /acorn/6.4.2:
+ resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: false
+
+ /acorn/7.4.1:
+ resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: false
+
+ /acorn/8.12.0:
+ resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: false
+
+ /address/1.1.2:
+ resolution: {integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==}
+ engines: {node: '>= 0.12.0'}
+ dev: false
+
+ /adjust-sourcemap-loader/2.0.0:
+ resolution: {integrity: sha512-4hFsTsn58+YjrU9qKzML2JSSDqKvN8mUGQ0nNIrfPi8hmIONT4L3uUaT6MKdMsZ9AjsU6D2xDkZxCkbQPxChrA==}
+ dependencies:
+ assert: 1.4.1
+ camelcase: 5.0.0
+ loader-utils: 1.2.3
+ object-path: 0.11.4
+ regex-parser: 2.2.10
+ dev: false
+
+ /agent-base/6.0.2:
+ resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+ engines: {node: '>= 6.0.0'}
+ dependencies:
+ debug: 4.3.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /aggregate-error/3.1.0:
+ resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
+ engines: {node: '>=8'}
+ dependencies:
+ clean-stack: 2.2.0
+ indent-string: 4.0.0
+ dev: false
+
+ /ajv-errors/1.0.1_ajv@6.12.6:
+ resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==}
+ peerDependencies:
+ ajv: '>=5.0.0'
+ dependencies:
+ ajv: 6.12.6
+ dev: false
+
+ /ajv-keywords/3.5.2_ajv@6.12.6:
+ resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
+ peerDependencies:
+ ajv: ^6.9.1
+ dependencies:
+ ajv: 6.12.6
+ dev: false
+
+ /ajv/6.12.6:
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.4.1
+ dev: false
+
+ /alphanum-sort/1.0.2:
+ resolution: {integrity: sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==}
+ dev: false
+
+ /ansi-colors/3.2.4:
+ resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /ansi-escapes/3.2.0:
+ resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /ansi-escapes/4.3.2:
+ resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ type-fest: 0.21.3
+ dev: false
+
+ /ansi-html/0.0.7:
+ resolution: {integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==}
+ engines: {'0': node >= 0.8.0}
+ hasBin: true
+ dev: false
+
+ /ansi-regex/2.1.1:
+ resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /ansi-regex/3.0.1:
+ resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /ansi-regex/4.1.1:
+ resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /ansi-regex/5.0.1:
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /ansi-styles/2.2.1:
+ resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /ansi-styles/3.2.1:
+ resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
+ engines: {node: '>=4'}
+ dependencies:
+ color-convert: 1.9.3
+
+ /ansi-styles/4.3.0:
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
+ engines: {node: '>=8'}
+ dependencies:
+ color-convert: 2.0.1
+ dev: false
+
+ /anymatch/2.0.0:
+ resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==}
+ dependencies:
+ micromatch: 3.1.10
+ normalize-path: 2.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /anymatch/2.0.0_supports-color@6.1.0:
+ resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==}
+ dependencies:
+ micromatch: 3.1.10_supports-color@6.1.0
+ normalize-path: 2.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /anymatch/3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ engines: {node: '>= 8'}
+ dependencies:
+ normalize-path: 3.0.0
+ picomatch: 2.3.1
+ dev: false
+
+ /aproba/1.2.0:
+ resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==}
+ dev: false
+
+ /argparse/1.0.10:
+ resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
+ dependencies:
+ sprintf-js: 1.0.3
+ dev: false
+
+ /argparse/2.0.1:
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+ dev: true
+
+ /aria-hidden/1.2.4:
+ resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
+ engines: {node: '>=10'}
+ dependencies:
+ tslib: 2.6.3
+ dev: false
+
+ /aria-query/3.0.0:
+ resolution: {integrity: sha512-majUxHgLehQTeSA+hClx+DY09OVUqG3GtezWkF1krgLGNdlDu9l9V8DaqNMWbq4Eddc8wsyDA0hpDUtnYxQEXw==}
+ dependencies:
+ ast-types-flow: 0.0.7
+ commander: 2.20.3
+ dev: false
+
+ /arity-n/1.0.4:
+ resolution: {integrity: sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ==}
+ dev: false
+
+ /arr-diff/4.0.0:
+ resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /arr-flatten/1.1.0:
+ resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /arr-union/3.1.0:
+ resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /array-buffer-byte-length/1.0.1:
+ resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ is-array-buffer: 3.0.4
+ dev: false
+
+ /array-equal/1.0.2:
+ resolution: {integrity: sha512-gUHx76KtnhEgB3HOuFYiCm3FIdEs6ocM2asHvNTkfu/Y09qQVrrVVaOKENmS2KkSaGoxgXNqC+ZVtR/n0MOkSA==}
+ dev: false
+
+ /array-flatten/1.1.1:
+ resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
+ dev: false
+
+ /array-flatten/2.1.2:
+ resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
+ dev: false
+
+ /array-includes/3.1.8:
+ resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.4
+ is-string: 1.0.7
+ dev: false
+
+ /array-union/1.0.2:
+ resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-uniq: 1.0.3
+ dev: false
+
+ /array-uniq/1.0.3:
+ resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /array-unique/0.3.2:
+ resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /array.prototype.flat/1.3.2:
+ resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-shim-unscopables: 1.0.2
+ dev: false
+
+ /array.prototype.reduce/1.0.7:
+ resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-array-method-boxes-properly: 1.0.0
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ is-string: 1.0.7
+ dev: false
+
+ /arraybuffer.prototype.slice/1.0.3:
+ resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ is-array-buffer: 3.0.4
+ is-shared-array-buffer: 1.0.3
+ dev: false
+
+ /arrify/1.0.1:
+ resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /asap/2.0.6:
+ resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
+ dev: false
+
+ /asn1.js/4.10.1:
+ resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==}
+ dependencies:
+ bn.js: 4.12.0
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: false
+
+ /asn1/0.2.6:
+ resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
+ dependencies:
+ safer-buffer: 2.1.2
+ dev: false
+
+ /assert-plus/1.0.0:
+ resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
+ engines: {node: '>=0.8'}
+ dev: false
+
+ /assert/1.4.1:
+ resolution: {integrity: sha512-N+aAxov+CKVS3JuhDIQFr24XvZvwE96Wlhk9dytTg/GmwWoghdOvR8dspx8MVz71O+Y0pA3UPqHF68D6iy8UvQ==}
+ dependencies:
+ util: 0.10.3
+ dev: false
+
+ /assert/1.5.1:
+ resolution: {integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==}
+ dependencies:
+ object.assign: 4.1.5
+ util: 0.10.4
+ dev: false
+
+ /assign-symbols/1.0.0:
+ resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /ast-types-flow/0.0.7:
+ resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
+ dev: false
+
+ /astral-regex/1.0.0:
+ resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /async-each/1.0.6:
+ resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==}
+ dev: false
+
+ /async-limiter/1.0.1:
+ resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
+ dev: false
+
+ /async/2.6.4:
+ resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
+ dependencies:
+ lodash: 4.17.21
+ dev: false
+
+ /asynckit/0.4.0:
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
+ dev: false
+
+ /atob/2.1.2:
+ resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
+ engines: {node: '>= 4.5.0'}
+ hasBin: true
+ dev: false
+
+ /autoprefixer/9.8.8:
+ resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==}
+ hasBin: true
+ dependencies:
+ browserslist: 4.23.1
+ caniuse-lite: 1.0.30001636
+ normalize-range: 0.1.2
+ num2fraction: 1.2.2
+ picocolors: 0.2.1
+ postcss: 7.0.39
+ postcss-value-parser: 4.2.0
+ dev: false
+
+ /available-typed-arrays/1.0.7:
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ possible-typed-array-names: 1.0.0
+ dev: false
+
+ /aws-sdk/2.1646.0:
+ resolution: {integrity: sha512-PAvDiR8ow3zjO0T5HMda04kXIzQ5e1zeWxWGSUodRwu9W569gZPBnqzcPX3PJFNAKBZnZBdbNgsci1g2nXCcBg==}
+ engines: {node: '>= 10.0.0'}
+ requiresBuild: true
+ dependencies:
+ buffer: 4.9.2
+ events: 1.1.1
+ ieee754: 1.1.13
+ jmespath: 0.16.0
+ querystring: 0.2.0
+ sax: 1.2.1
+ url: 0.10.3
+ util: 0.12.5
+ uuid: 8.0.0
+ xml2js: 0.6.2
+ dev: false
+
+ /aws-sign2/0.7.0:
+ resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
+ dev: false
+
+ /aws4/1.13.0:
+ resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==}
+ dev: false
+
+ /axobject-query/2.2.0:
+ resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
+ dev: false
+
+ /babel-code-frame/6.26.0:
+ resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==}
+ dependencies:
+ chalk: 1.1.3
+ esutils: 2.0.3
+ js-tokens: 3.0.2
+ dev: false
+
+ /babel-eslint/10.1.0_eslint@6.8.0:
+ resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==}
+ engines: {node: '>=6'}
+ deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.
+ peerDependencies:
+ eslint: '>= 4.12.1'
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ eslint: 6.8.0
+ eslint-visitor-keys: 1.3.0
+ resolve: 1.15.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-extract-comments/1.0.0:
+ resolution: {integrity: sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ babylon: 6.18.0
+ dev: false
+
+ /babel-jest/24.9.0_@babel+core@7.9.0:
+ resolution: {integrity: sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/babel__core': 7.20.5
+ babel-plugin-istanbul: 5.2.0
+ babel-preset-jest: 24.9.0_@babel+core@7.9.0
+ chalk: 2.4.2
+ slash: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-loader/8.1.0_v5wbdnhwytg3u2hu4ix2bhpzla:
+ resolution: {integrity: sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==}
+ engines: {node: '>= 6.9'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ webpack: '>=2'
+ dependencies:
+ '@babel/core': 7.9.0
+ find-cache-dir: 2.1.0
+ loader-utils: 1.4.2
+ mkdirp: 0.5.6
+ pify: 4.0.1
+ schema-utils: 2.7.1
+ webpack: 4.42.0
+ dev: false
+
+ /babel-plugin-emotion/10.2.2:
+ resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==}
+ dependencies:
+ '@babel/helper-module-imports': 7.24.7
+ '@emotion/hash': 0.8.0
+ '@emotion/memoize': 0.7.4
+ '@emotion/serialize': 0.11.16
+ babel-plugin-macros: 2.8.0
+ babel-plugin-syntax-jsx: 6.18.0
+ convert-source-map: 1.9.0
+ escape-string-regexp: 1.0.5
+ find-root: 1.1.0
+ source-map: 0.5.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-istanbul/5.2.0:
+ resolution: {integrity: sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==}
+ engines: {node: '>=6'}
+ dependencies:
+ '@babel/helper-plugin-utils': 7.24.7
+ find-up: 3.0.0
+ istanbul-lib-instrument: 3.3.0
+ test-exclude: 5.2.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-jest-hoist/24.9.0:
+ resolution: {integrity: sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@types/babel__traverse': 7.20.6
+ dev: false
+
+ /babel-plugin-macros/2.8.0:
+ resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==}
+ dependencies:
+ '@babel/runtime': 7.9.0
+ cosmiconfig: 6.0.0
+ resolve: 1.15.0
+ dev: false
+
+ /babel-plugin-macros/3.1.0:
+ resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
+ engines: {node: '>=10', npm: '>=6'}
+ dependencies:
+ '@babel/runtime': 7.24.7
+ cosmiconfig: 7.1.0
+ resolve: 1.22.8
+ dev: false
+
+ /babel-plugin-named-asset-import/0.3.8_@babel+core@7.9.0:
+ resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==}
+ peerDependencies:
+ '@babel/core': ^7.1.0
+ dependencies:
+ '@babel/core': 7.9.0
+ dev: false
+
+ /babel-plugin-polyfill-corejs2/0.4.11:
+ resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.6.2
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-polyfill-corejs2/0.4.11_@babel+core@7.9.0:
+ resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.9.0
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.9.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-polyfill-corejs3/0.10.4:
+ resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/helper-define-polyfill-provider': 0.6.2
+ core-js-compat: 3.37.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-polyfill-corejs3/0.10.4_@babel+core@7.9.0:
+ resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.9.0
+ core-js-compat: 3.37.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-polyfill-regenerator/0.6.2:
+ resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/helper-define-polyfill-provider': 0.6.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-polyfill-regenerator/0.6.2_@babel+core@7.9.0:
+ resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-styled-components/1.13.3_styled-components@4.4.1:
+ resolution: {integrity: sha512-meGStRGv+VuKA/q0/jXxrPNWEm4LPfYIqxooDTdmh8kFsP/Ph7jJG5rUPwUPX3QHUvggwdbgdGpo88P/rRYsVw==}
+ peerDependencies:
+ styled-components: '>= 2'
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ babel-plugin-syntax-jsx: 6.18.0
+ lodash: 4.17.21
+ styled-components: 4.4.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-styled-components/1.13.3_x56uxbnty5wbws66wahiqabede:
+ resolution: {integrity: sha512-meGStRGv+VuKA/q0/jXxrPNWEm4LPfYIqxooDTdmh8kFsP/Ph7jJG5rUPwUPX3QHUvggwdbgdGpo88P/rRYsVw==}
+ peerDependencies:
+ styled-components: '>= 2'
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7_supports-color@5.5.0
+ babel-plugin-syntax-jsx: 6.18.0
+ lodash: 4.17.21
+ styled-components: 4.4.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-syntax-jsx/6.18.0:
+ resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
+ dev: false
+
+ /babel-plugin-syntax-object-rest-spread/6.13.0:
+ resolution: {integrity: sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w==}
+ dev: false
+
+ /babel-plugin-transform-object-rest-spread/6.26.0:
+ resolution: {integrity: sha512-ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA==}
+ dependencies:
+ babel-plugin-syntax-object-rest-spread: 6.13.0
+ babel-runtime: 6.26.0
+ dev: false
+
+ /babel-plugin-transform-react-remove-prop-types/0.4.24:
+ resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
+ dev: false
+
+ /babel-preset-jest/24.9.0_@babel+core@7.9.0:
+ resolution: {integrity: sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0
+ babel-plugin-jest-hoist: 24.9.0
+ dev: false
+
+ /babel-preset-react-app/9.1.2:
+ resolution: {integrity: sha512-k58RtQOKH21NyKtzptoAvtAODuAJJs3ZhqBMl456/GnXEQ/0La92pNmwgWoMn5pBTrsvk3YYXdY7zpY4e3UIxA==}
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/plugin-proposal-class-properties': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-proposal-decorators': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-proposal-numeric-separator': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-proposal-optional-chaining': 7.9.0_@babel+core@7.9.0
+ '@babel/plugin-transform-flow-strip-types': 7.9.0_@babel+core@7.9.0
+ '@babel/plugin-transform-react-display-name': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-transform-runtime': 7.9.0_@babel+core@7.9.0
+ '@babel/preset-env': 7.9.0_@babel+core@7.9.0
+ '@babel/preset-react': 7.9.1_@babel+core@7.9.0
+ '@babel/preset-typescript': 7.9.0_@babel+core@7.9.0
+ '@babel/runtime': 7.9.0
+ babel-plugin-macros: 2.8.0
+ babel-plugin-transform-react-remove-prop-types: 0.4.24
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-runtime/6.26.0:
+ resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
+ dependencies:
+ core-js: 2.6.12
+ regenerator-runtime: 0.11.1
+ dev: false
+
+ /babylon/6.18.0:
+ resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==}
+ hasBin: true
+ dev: false
+
+ /balanced-match/0.4.2:
+ resolution: {integrity: sha512-STw03mQKnGUYtoNjmowo4F2cRmIIxYEGiMsjjwla/u5P1lxadj/05WkNaFjNiKTgJkj8KiXbgAiRTmcQRwQNtg==}
+ dev: false
+
+ /balanced-match/1.0.2:
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ dev: false
+
+ /base/0.11.2:
+ resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ cache-base: 1.0.1
+ class-utils: 0.3.6
+ component-emitter: 1.3.1
+ define-property: 1.0.0
+ isobject: 3.0.1
+ mixin-deep: 1.3.2
+ pascalcase: 0.1.1
+ dev: false
+
+ /base64-js/1.5.1:
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ dev: false
+
+ /batch/0.6.1:
+ resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
+ dev: false
+
+ /bcrypt-pbkdf/1.0.2:
+ resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
+ dependencies:
+ tweetnacl: 0.14.5
+ dev: false
+
+ /big.js/5.2.2:
+ resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
+ dev: false
+
+ /binary-extensions/1.13.1:
+ resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /binary-extensions/2.3.0:
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /bindings/1.5.0:
+ resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
+ requiresBuild: true
+ dependencies:
+ file-uri-to-path: 1.0.0
+ dev: false
+ optional: true
+
+ /bluebird/3.7.2:
+ resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
+ dev: false
+
+ /blurhash/2.0.5:
+ resolution: {integrity: sha512-cRygWd7kGBQO3VEhPiTgq4Wc43ctsM+o46urrmPOiuAe+07fzlSB9OJVdpgDL0jPqXUVQ9ht7aq7kxOeJHRK+w==}
+ dev: false
+
+ /bn.js/4.12.0:
+ resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==}
+ dev: false
+
+ /bn.js/5.2.1:
+ resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
+ dev: false
+
+ /body-parser/1.20.2_supports-color@6.1.0:
+ resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ dependencies:
+ bytes: 3.1.2
+ content-type: 1.0.5
+ debug: 2.6.9_supports-color@6.1.0
+ depd: 2.0.0
+ destroy: 1.2.0
+ http-errors: 2.0.0
+ iconv-lite: 0.4.24
+ on-finished: 2.4.1
+ qs: 6.11.0
+ raw-body: 2.5.2
+ type-is: 1.6.18
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /bonde-components/0.2.0:
+ resolution: {integrity: sha512-x/xcfEskzTg83dzg0F2+unHvpSfAOeeUzPzIX5vIYQxlX5xKErGn99ey7vho5W5lrVNfwcfW3xydnG1AG9f2pw==}
+ peerDependencies:
+ react: ^16.9 || ^17
+ react-dom: ^16.8 || ^17
+ dependencies:
+ '@chakra-ui/accordion': 1.4.12_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/alert': 1.3.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/anatomy': 1.3.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/avatar': 1.3.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/breadcrumb': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/button': 1.5.10_@chakra-ui+system@1.12.1
+ '@chakra-ui/checkbox': 1.7.1_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/close-button': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/color-mode': 1.4.8
+ '@chakra-ui/control-box': 1.1.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/counter': 1.2.10
+ '@chakra-ui/css-reset': 1.1.3_@emotion+react@11.11.4
+ '@chakra-ui/editable': 1.4.2_@chakra-ui+system@1.12.1
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/icon': 1.2.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/image': 1.1.10_@chakra-ui+system@1.12.1
+ '@chakra-ui/input': 1.4.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/layout': 1.8.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/media-query': 1.2.5_hoipxdaut6bba577cceecxeuuy
+ '@chakra-ui/menu': 1.8.12_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/modal': 1.11.1_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/number-input': 1.4.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/pin-input': 1.7.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/popover': 1.11.9_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/popper': 2.4.3
+ '@chakra-ui/portal': 1.3.10
+ '@chakra-ui/progress': 1.2.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/radio': 1.5.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/react': 1.8.9_bvqj4f5hqz4halcy33kails63e
+ '@chakra-ui/select': 1.2.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/skeleton': 1.2.14_5pds2yrrxb3wz2szfohthxivim
+ '@chakra-ui/slider': 1.5.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/spinner': 1.2.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/stat': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/switch': 1.3.10_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/system': 1.12.1_rfbvewdlpmur7j6viv5dfnygle
+ '@chakra-ui/table': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/tabs': 1.6.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/tag': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/textarea': 1.2.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/toast': 1.5.9_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/tooltip': 1.5.1_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/transition': 1.4.8_framer-motion@4.1.17
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
+ '@emotion/react': 11.11.4
+ '@emotion/styled': 11.11.5_@emotion+react@11.11.4
+ final-form: 4.20.10
+ framer-motion: 4.1.17
+ react-color: 2.19.3
+ react-final-form: 6.5.9_final-form@4.20.10
+ react-google-font-loader: 1.1.0
+ react-s3-uploader: 4.9.3
+ react-select: 3.2.0
+ react-table: 7.8.0
+ react-toastify: 6.2.0
+ transitivePeerDependencies:
+ - '@types/react'
+ - supports-color
+ dev: false
+
+ /bonde-styleguide/0.16.5-alpha.5:
+ resolution: {integrity: sha512-9RhVcjTdLPto+bcOhYaCOCWt9k40pbVertys+4fK5rWY9sjJow2hUCe1BUWmr/DpordxuNkqXcrIIfoR11OD+Q==}
+ dependencies:
+ '@babel/plugin-proposal-class-properties': 7.18.6
+ '@babel/plugin-transform-runtime': 7.24.7
+ babel-plugin-styled-components: 1.13.3_styled-components@4.4.1
+ prop-types: 15.8.1
+ recharts: 1.8.6
+ styled-components: 4.4.1
+ webfontloader: 1.6.28
+ transitivePeerDependencies:
+ - '@babel/core'
+ - react
+ - react-dom
+ - supports-color
+ dev: false
+
+ /bonjour/3.5.0:
+ resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==}
+ dependencies:
+ array-flatten: 2.1.2
+ deep-equal: 1.1.2
+ dns-equal: 1.0.0
+ dns-txt: 2.0.2
+ multicast-dns: 6.2.3
+ multicast-dns-service-types: 1.1.0
+ dev: false
+
+ /boolbase/1.0.0:
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
+ dev: false
+
+ /brace-expansion/1.1.11:
+ resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
+ dependencies:
+ balanced-match: 1.0.2
+ concat-map: 0.0.1
+ dev: false
+
+ /braces/2.3.2:
+ resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-flatten: 1.1.0
+ array-unique: 0.3.2
+ extend-shallow: 2.0.1
+ fill-range: 4.0.0
+ isobject: 3.0.1
+ repeat-element: 1.1.4
+ snapdragon: 0.8.2
+ snapdragon-node: 2.1.1
+ split-string: 3.1.0
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /braces/2.3.2_supports-color@6.1.0:
+ resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-flatten: 1.1.0
+ array-unique: 0.3.2
+ extend-shallow: 2.0.1
+ fill-range: 4.0.0
+ isobject: 3.0.1
+ repeat-element: 1.1.4
+ snapdragon: 0.8.2_supports-color@6.1.0
+ snapdragon-node: 2.1.1
+ split-string: 3.1.0
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /braces/3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+ engines: {node: '>=8'}
+ dependencies:
+ fill-range: 7.1.1
+ dev: false
+
+ /brorand/1.1.0:
+ resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
+ dev: false
+
+ /browser-process-hrtime/1.0.0:
+ resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
+ dev: false
+
+ /browser-resolve/1.11.3:
+ resolution: {integrity: sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==}
+ dependencies:
+ resolve: 1.1.7
+ dev: false
+
+ /browserify-aes/1.2.0:
+ resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==}
+ dependencies:
+ buffer-xor: 1.0.3
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ evp_bytestokey: 1.0.3
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: false
+
+ /browserify-cipher/1.0.1:
+ resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==}
+ dependencies:
+ browserify-aes: 1.2.0
+ browserify-des: 1.0.2
+ evp_bytestokey: 1.0.3
+ dev: false
+
+ /browserify-des/1.0.2:
+ resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==}
+ dependencies:
+ cipher-base: 1.0.4
+ des.js: 1.1.0
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: false
+
+ /browserify-rsa/4.1.0:
+ resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==}
+ dependencies:
+ bn.js: 5.2.1
+ randombytes: 2.1.0
+ dev: false
+
+ /browserify-sign/4.2.3:
+ resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==}
+ engines: {node: '>= 0.12'}
+ dependencies:
+ bn.js: 5.2.1
+ browserify-rsa: 4.1.0
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ elliptic: 6.5.5
+ hash-base: 3.0.4
+ inherits: 2.0.4
+ parse-asn1: 5.1.7
+ readable-stream: 2.3.8
+ safe-buffer: 5.2.1
+ dev: false
+
+ /browserify-zlib/0.2.0:
+ resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
+ dependencies:
+ pako: 1.0.11
+ dev: false
+
+ /browserslist/4.10.0:
+ resolution: {integrity: sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001636
+ electron-to-chromium: 1.4.807
+ node-releases: 1.1.77
+ pkg-up: 3.1.0
+ dev: false
+
+ /browserslist/4.23.1:
+ resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001636
+ electron-to-chromium: 1.4.807
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.16_browserslist@4.23.1
+ dev: false
+
+ /bser/2.1.1:
+ resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
+ dependencies:
+ node-int64: 0.4.0
+ dev: false
+
+ /buffer-from/1.1.2:
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+ dev: false
+
+ /buffer-indexof/1.1.1:
+ resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==}
+ dev: false
+
+ /buffer-xor/1.0.3:
+ resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==}
+ dev: false
+
+ /buffer/4.9.2:
+ resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==}
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.1.13
+ isarray: 1.0.0
+ dev: false
+
+ /builtin-status-codes/3.0.0:
+ resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
+ dev: false
+
+ /bytes/3.0.0:
+ resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /bytes/3.1.2:
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /cacache/12.0.4:
+ resolution: {integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==}
+ dependencies:
+ bluebird: 3.7.2
+ chownr: 1.1.4
+ figgy-pudding: 3.5.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ infer-owner: 1.0.4
+ lru-cache: 5.1.1
+ mississippi: 3.0.0
+ mkdirp: 0.5.6
+ move-concurrently: 1.0.1
+ promise-inflight: 1.0.1_bluebird@3.7.2
+ rimraf: 2.7.1
+ ssri: 6.0.2
+ unique-filename: 1.1.1
+ y18n: 4.0.3
+ dev: false
+
+ /cacache/13.0.1:
+ resolution: {integrity: sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==}
+ engines: {node: '>= 8'}
+ dependencies:
+ chownr: 1.1.4
+ figgy-pudding: 3.5.2
+ fs-minipass: 2.1.0
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ infer-owner: 1.0.4
+ lru-cache: 5.1.1
+ minipass: 3.3.6
+ minipass-collect: 1.0.2
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ mkdirp: 0.5.6
+ move-concurrently: 1.0.1
+ p-map: 3.0.0
+ promise-inflight: 1.0.1
+ rimraf: 2.7.1
+ ssri: 7.1.1
+ unique-filename: 1.1.1
+ transitivePeerDependencies:
+ - bluebird
+ dev: false
+
+ /cache-base/1.0.1:
+ resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ collection-visit: 1.0.0
+ component-emitter: 1.3.1
+ get-value: 2.0.6
+ has-value: 1.0.0
+ isobject: 3.0.1
+ set-value: 2.0.1
+ to-object-path: 0.3.0
+ union-value: 1.0.1
+ unset-value: 1.0.0
+ dev: false
+
+ /call-bind/1.0.7:
+ resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ set-function-length: 1.2.2
+ dev: false
+
+ /call-me-maybe/1.0.2:
+ resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
+ dev: false
+
+ /caller-callsite/2.0.0:
+ resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ callsites: 2.0.0
+ dev: false
+
+ /caller-path/2.0.0:
+ resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==}
+ engines: {node: '>=4'}
+ dependencies:
+ caller-callsite: 2.0.0
+ dev: false
+
+ /callsites/2.0.0:
+ resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /callsites/3.1.0:
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+ engines: {node: '>=6'}
+
+ /camel-case/4.1.2:
+ resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
+ dependencies:
+ pascal-case: 3.1.2
+ tslib: 2.6.3
+ dev: false
+
+ /camelcase/5.0.0:
+ resolution: {integrity: sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /camelcase/5.3.1:
+ resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /camelize/1.0.1:
+ resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
+ dev: false
+
+ /caniuse-api/3.0.0:
+ resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
+ dependencies:
+ browserslist: 4.23.1
+ caniuse-lite: 1.0.30001636
+ lodash.memoize: 4.1.2
+ lodash.uniq: 4.5.0
+ dev: false
+
+ /caniuse-lite/1.0.30001636:
+ resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==}
+ dev: false
+
+ /capture-exit/2.0.0:
+ resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==}
+ engines: {node: 6.* || 8.* || >= 10.*}
+ dependencies:
+ rsvp: 4.8.5
+ dev: false
+
+ /case-sensitive-paths-webpack-plugin/2.3.0:
+ resolution: {integrity: sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /caseless/0.12.0:
+ resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
+ dev: false
+
+ /chalk/1.1.3:
+ resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ ansi-styles: 2.2.1
+ escape-string-regexp: 1.0.5
+ has-ansi: 2.0.0
+ strip-ansi: 3.0.1
+ supports-color: 2.0.0
+ dev: false
+
+ /chalk/2.4.2:
+ resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ ansi-styles: 3.2.1
+ escape-string-regexp: 1.0.5
+ supports-color: 5.5.0
+
+ /chalk/4.1.2:
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
+ engines: {node: '>=10'}
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+ dev: false
+
+ /chardet/0.7.0:
+ resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
+ dev: false
+
+ /chokidar/2.1.8:
+ resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==}
+ deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
+ dependencies:
+ anymatch: 2.0.0
+ async-each: 1.0.6
+ braces: 2.3.2
+ glob-parent: 3.1.0
+ inherits: 2.0.4
+ is-binary-path: 1.0.1
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ path-is-absolute: 1.0.1
+ readdirp: 2.2.1
+ upath: 1.2.0
+ optionalDependencies:
+ fsevents: 1.2.13
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /chokidar/2.1.8_supports-color@6.1.0:
+ resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==}
+ deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
+ dependencies:
+ anymatch: 2.0.0_supports-color@6.1.0
+ async-each: 1.0.6
+ braces: 2.3.2_supports-color@6.1.0
+ glob-parent: 3.1.0
+ inherits: 2.0.4
+ is-binary-path: 1.0.1
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ path-is-absolute: 1.0.1
+ readdirp: 2.2.1_supports-color@6.1.0
+ upath: 1.2.0
+ optionalDependencies:
+ fsevents: 1.2.13
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /chokidar/3.6.0:
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
+ engines: {node: '>= 8.10.0'}
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.3
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.6.0
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: false
+
+ /chownr/1.1.4:
+ resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
+ dev: false
+
+ /chrome-trace-event/1.0.4:
+ resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
+ engines: {node: '>=6.0'}
+ dev: false
+
+ /ci-info/2.0.0:
+ resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
+ dev: false
+
+ /cipher-base/1.0.4:
+ resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: false
+
+ /ckeditor5/41.4.2:
+ resolution: {integrity: sha512-90k7d3R1B7x3muHOKKOGIomFsSQRG1sPuRHdN6J7WmKZH+BrMQgRkUs66xVRhNjrLPmewwJYdQI42Sb1cA1ILQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-alignment': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-autosave': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-build-balloon': 41.4.2
+ '@ckeditor/ckeditor5-build-balloon-block': 41.4.2
+ '@ckeditor/ckeditor5-build-classic': 41.4.2
+ '@ckeditor/ckeditor5-build-decoupled-document': 41.4.2
+ '@ckeditor/ckeditor5-build-inline': 41.4.2
+ '@ckeditor/ckeditor5-build-multi-root': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-clipboard': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-code-block': 41.4.2
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-balloon': 41.4.2
+ '@ckeditor/ckeditor5-editor-classic': 41.4.2
+ '@ckeditor/ckeditor5-editor-decoupled': 41.4.2
+ '@ckeditor/ckeditor5-editor-inline': 41.4.2
+ '@ckeditor/ckeditor5-editor-multi-root': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-enter': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-find-and-replace': 41.4.2
+ '@ckeditor/ckeditor5-font': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-highlight': 41.4.2
+ '@ckeditor/ckeditor5-horizontal-line': 41.4.2
+ '@ckeditor/ckeditor5-html-embed': 41.4.2
+ '@ckeditor/ckeditor5-html-support': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-language': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-markdown-gfm': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-mention': 41.4.2
+ '@ckeditor/ckeditor5-minimap': 41.4.2
+ '@ckeditor/ckeditor5-page-break': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-remove-format': 41.4.2
+ '@ckeditor/ckeditor5-restricted-editing': 41.4.2
+ '@ckeditor/ckeditor5-select-all': 41.4.2
+ '@ckeditor/ckeditor5-show-blocks': 41.4.2
+ '@ckeditor/ckeditor5-source-editing': 41.4.2
+ '@ckeditor/ckeditor5-special-characters': 41.4.2
+ '@ckeditor/ckeditor5-style': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-theme-lark': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ '@ckeditor/ckeditor5-undo': 41.4.2
+ '@ckeditor/ckeditor5-upload': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ '@ckeditor/ckeditor5-watchdog': 41.4.2
+ '@ckeditor/ckeditor5-widget': 41.4.2
+ '@ckeditor/ckeditor5-word-count': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /class-utils/0.3.6:
+ resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-union: 3.1.0
+ define-property: 0.2.5
+ isobject: 3.0.1
+ static-extend: 0.1.2
+ dev: false
+
+ /classnames/2.5.1:
+ resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
+ dev: false
+
+ /clean-css/4.2.4:
+ resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==}
+ engines: {node: '>= 4.0'}
+ dependencies:
+ source-map: 0.6.1
+ dev: false
+
+ /clean-stack/2.2.0:
+ resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /cli-cursor/3.1.0:
+ resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
+ engines: {node: '>=8'}
+ dependencies:
+ restore-cursor: 3.1.0
+ dev: false
+
+ /cli-width/2.2.1:
+ resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==}
+ dev: false
+
+ /cli-width/3.0.0:
+ resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
+ engines: {node: '>= 10'}
+ dev: false
+
+ /clipboard-copy/3.2.0:
+ resolution: {integrity: sha512-vooFaGFL6ulEP1liiaWFBmmfuPm3cY3y7T9eB83ZTnYc/oFeAKsq3NcDrOkBC8XaauEE8zHQwI7k0+JSYiVQSQ==}
+ dev: false
+
+ /cliui/4.1.0:
+ resolution: {integrity: sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==}
+ dependencies:
+ string-width: 2.1.1
+ strip-ansi: 4.0.0
+ wrap-ansi: 2.1.0
+ dev: false
+
+ /cliui/5.0.0:
+ resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==}
+ dependencies:
+ string-width: 3.1.0
+ strip-ansi: 5.2.0
+ wrap-ansi: 5.1.0
+ dev: false
+
+ /clone-deep/0.2.4:
+ resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-own: 0.1.5
+ is-plain-object: 2.0.4
+ kind-of: 3.2.2
+ lazy-cache: 1.0.4
+ shallow-clone: 0.1.2
+ dev: false
+
+ /clone-deep/4.0.1:
+ resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ is-plain-object: 2.0.4
+ kind-of: 6.0.3
+ shallow-clone: 3.0.1
+ dev: false
+
+ /clsx/1.2.1:
+ resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /clsx/2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /co/4.6.0:
+ resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
+ engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
+ dev: false
+
+ /coa/2.0.2:
+ resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==}
+ engines: {node: '>= 4.0'}
+ dependencies:
+ '@types/q': 1.5.8
+ chalk: 2.4.2
+ q: 1.5.1
+ dev: false
+
+ /code-point-at/1.1.0:
+ resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /collection-visit/1.0.0:
+ resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ map-visit: 1.0.0
+ object-visit: 1.0.1
+ dev: false
+
+ /color-convert/1.9.3:
+ resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
+ dependencies:
+ color-name: 1.1.3
+
+ /color-convert/2.0.1:
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
+ engines: {node: '>=7.0.0'}
+ dependencies:
+ color-name: 1.1.4
+ dev: false
+
+ /color-name/1.1.3:
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
+
+ /color-name/1.1.4:
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ dev: false
+
+ /color-parse/1.4.2:
+ resolution: {integrity: sha512-RI7s49/8yqDj3fECFZjUI1Yi0z/Gq1py43oNJivAIIDSyJiOZLfYCRQEgn8HEVAj++PcRe8AnL2XF0fRJ3BTnA==}
+ dependencies:
+ color-name: 1.1.4
+ dev: false
+
+ /color-string/1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+ dev: false
+
+ /color/3.2.1:
+ resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==}
+ dependencies:
+ color-convert: 1.9.3
+ color-string: 1.9.1
+ dev: false
+
+ /combined-stream/1.0.8:
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ delayed-stream: 1.0.0
+ dev: false
+
+ /commander/2.20.3:
+ resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+ dev: false
+
+ /commander/4.1.1:
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /common-tags/1.8.2:
+ resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
+ engines: {node: '>=4.0.0'}
+ dev: false
+
+ /commondir/1.0.1:
+ resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
+ dev: false
+
+ /component-emitter/1.3.1:
+ resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==}
+ dev: false
+
+ /compose-function/3.0.3:
+ resolution: {integrity: sha512-xzhzTJ5eC+gmIzvZq+C3kCJHsp9os6tJkrigDRZclyGtOKINbZtE8n1Tzmeh32jW+BUDPbvZpibwvJHBLGMVwg==}
+ dependencies:
+ arity-n: 1.0.4
+ dev: false
+
+ /compressible/2.0.18:
+ resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ mime-db: 1.52.0
+ dev: false
+
+ /compression/1.7.4_supports-color@6.1.0:
+ resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ accepts: 1.3.8
+ bytes: 3.0.0
+ compressible: 2.0.18
+ debug: 2.6.9_supports-color@6.1.0
+ on-headers: 1.0.2
+ safe-buffer: 5.1.2
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /compute-scroll-into-view/1.0.14:
+ resolution: {integrity: sha512-mKDjINe3tc6hGelUMNDzuhorIUZ7kS7BwyY0r2wQd2HOH2tRuJykiC06iSEX8y1TuhNzvz4GcJnK16mM2J1NMQ==}
+ dev: false
+
+ /concat-map/0.0.1:
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+ dev: false
+
+ /concat-stream/1.6.2:
+ resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==}
+ engines: {'0': node >= 0.8}
+ dependencies:
+ buffer-from: 1.1.2
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ typedarray: 0.0.6
+ dev: false
+
+ /confusing-browser-globals/1.0.11:
+ resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
+ dev: false
+
+ /connect-history-api-fallback/1.6.0:
+ resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
+ engines: {node: '>=0.8'}
+ dev: false
+
+ /console-browserify/1.2.0:
+ resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
+ dev: false
+
+ /constants-browserify/1.0.0:
+ resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
+ dev: false
+
+ /contains-path/0.1.0:
+ resolution: {integrity: sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /content-disposition/0.5.4:
+ resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: false
+
+ /content-type/1.0.5:
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /convert-source-map/0.3.5:
+ resolution: {integrity: sha512-+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg==}
+ dev: false
+
+ /convert-source-map/1.7.0:
+ resolution: {integrity: sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==}
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: false
+
+ /convert-source-map/1.9.0:
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+ dev: false
+
+ /cookie-signature/1.0.6:
+ resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
+ dev: false
+
+ /cookie/0.6.0:
+ resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /copy-concurrently/1.0.5:
+ resolution: {integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==}
+ deprecated: This package is no longer supported.
+ dependencies:
+ aproba: 1.2.0
+ fs-write-stream-atomic: 1.0.10
+ iferr: 0.1.5
+ mkdirp: 0.5.6
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+ dev: false
+
+ /copy-descriptor/0.1.1:
+ resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /copy-to-clipboard/3.3.1:
+ resolution: {integrity: sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==}
+ dependencies:
+ toggle-selection: 1.0.6
+ dev: false
+
+ /core-js-compat/3.37.1:
+ resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
+ dependencies:
+ browserslist: 4.23.1
+ dev: false
+
+ /core-js-pure/3.37.1:
+ resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==}
+ requiresBuild: true
+ dev: false
+
+ /core-js/2.6.12:
+ resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
+ deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
+ requiresBuild: true
+ dev: false
+
+ /core-js/3.37.1:
+ resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==}
+ requiresBuild: true
+ dev: false
+
+ /core-util-is/1.0.2:
+ resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
+ dev: false
+
+ /core-util-is/1.0.3:
+ resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ dev: false
+
+ /cosmiconfig/5.2.1:
+ resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
+ engines: {node: '>=4'}
+ dependencies:
+ import-fresh: 2.0.0
+ is-directory: 0.3.1
+ js-yaml: 3.14.1
+ parse-json: 4.0.0
+ dev: false
+
+ /cosmiconfig/6.0.0:
+ resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@types/parse-json': 4.0.2
+ import-fresh: 3.3.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ yaml: 1.10.2
+ dev: false
+
+ /cosmiconfig/7.1.0:
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
+ engines: {node: '>=10'}
+ dependencies:
+ '@types/parse-json': 4.0.2
+ import-fresh: 3.3.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ yaml: 1.10.2
+ dev: false
+
+ /cosmiconfig/9.0.0_typescript@3.9.10:
+ resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ env-paths: 2.2.1
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ parse-json: 5.2.0
+ typescript: 3.9.10
+ dev: true
+
+ /create-ecdh/4.0.4:
+ resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
+ dependencies:
+ bn.js: 4.12.0
+ elliptic: 6.5.5
+ dev: false
+
+ /create-hash/1.2.0:
+ resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
+ dependencies:
+ cipher-base: 1.0.4
+ inherits: 2.0.4
+ md5.js: 1.3.5
+ ripemd160: 2.0.2
+ sha.js: 2.4.11
+ dev: false
+
+ /create-hmac/1.1.7:
+ resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
+ dependencies:
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ inherits: 2.0.4
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.1
+ sha.js: 2.4.11
+ dev: false
+
+ /create-react-class/15.7.0:
+ resolution: {integrity: sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==}
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ dev: false
+
+ /cross-spawn/6.0.5:
+ resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
+ engines: {node: '>=4.8'}
+ dependencies:
+ nice-try: 1.0.5
+ path-key: 2.0.1
+ semver: 5.7.2
+ shebang-command: 1.2.0
+ which: 1.3.1
+ dev: false
+
+ /cross-spawn/7.0.1:
+ resolution: {integrity: sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==}
+ engines: {node: '>= 8'}
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+ dev: false
+
+ /crypto-browserify/3.12.0:
+ resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==}
+ dependencies:
+ browserify-cipher: 1.0.1
+ browserify-sign: 4.2.3
+ create-ecdh: 4.0.4
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ diffie-hellman: 5.0.3
+ inherits: 2.0.4
+ pbkdf2: 3.1.2
+ public-encrypt: 4.0.3
+ randombytes: 2.1.0
+ randomfill: 1.0.4
+ dev: false
+
+ /css-blank-pseudo/0.1.4:
+ resolution: {integrity: sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /css-box-model/1.2.1:
+ resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==}
+ dependencies:
+ tiny-invariant: 1.3.3
+ dev: false
+
+ /css-color-keywords/1.0.0:
+ resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /css-color-names/0.0.4:
+ resolution: {integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==}
+ dev: false
+
+ /css-declaration-sorter/4.0.1:
+ resolution: {integrity: sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==}
+ engines: {node: '>4'}
+ dependencies:
+ postcss: 7.0.39
+ timsort: 0.3.0
+ dev: false
+
+ /css-has-pseudo/0.10.0:
+ resolution: {integrity: sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: false
+
+ /css-loader/3.4.2_webpack@4.42.0:
+ resolution: {integrity: sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==}
+ engines: {node: '>= 8.9.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ camelcase: 5.3.1
+ cssesc: 3.0.0
+ icss-utils: 4.1.1
+ loader-utils: 1.4.2
+ normalize-path: 3.0.0
+ postcss: 7.0.39
+ postcss-modules-extract-imports: 2.0.0
+ postcss-modules-local-by-default: 3.0.3
+ postcss-modules-scope: 2.2.0
+ postcss-modules-values: 3.0.0
+ postcss-value-parser: 4.2.0
+ schema-utils: 2.7.1
+ webpack: 4.42.0
+ dev: false
+
+ /css-loader/7.1.2:
+ resolution: {integrity: sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ '@rspack/core': 0.x || 1.x
+ webpack: ^5.27.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
+ dependencies:
+ icss-utils: 5.1.0_postcss@8.4.38
+ postcss: 8.4.38
+ postcss-modules-extract-imports: 3.1.0_postcss@8.4.38
+ postcss-modules-local-by-default: 4.0.5_postcss@8.4.38
+ postcss-modules-scope: 3.2.0_postcss@8.4.38
+ postcss-modules-values: 4.0.0_postcss@8.4.38
+ postcss-value-parser: 4.2.0
+ semver: 7.6.2
+ dev: true
+
+ /css-prefers-color-scheme/3.1.1:
+ resolution: {integrity: sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /css-select-base-adapter/0.1.1:
+ resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==}
+ dev: false
+
+ /css-select/2.1.0:
+ resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==}
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 3.4.2
+ domutils: 1.7.0
+ nth-check: 1.0.2
+ dev: false
+
+ /css-select/4.3.0:
+ resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 6.1.0
+ domhandler: 4.3.1
+ domutils: 2.8.0
+ nth-check: 2.1.1
+ dev: false
+
+ /css-to-react-native/2.3.2:
+ resolution: {integrity: sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==}
+ dependencies:
+ camelize: 1.0.1
+ css-color-keywords: 1.0.0
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /css-tree/1.0.0-alpha.37:
+ resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ mdn-data: 2.0.4
+ source-map: 0.6.1
+ dev: false
+
+ /css-tree/1.1.3:
+ resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ mdn-data: 2.0.14
+ source-map: 0.6.1
+ dev: false
+
+ /css-what/3.4.2:
+ resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /css-what/6.1.0:
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /css/2.2.4:
+ resolution: {integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==}
+ dependencies:
+ inherits: 2.0.4
+ source-map: 0.6.1
+ source-map-resolve: 0.5.3
+ urix: 0.1.0
+ dev: false
+
+ /cssdb/4.4.0:
+ resolution: {integrity: sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==}
+ dev: false
+
+ /cssesc/2.0.0:
+ resolution: {integrity: sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: false
+
+ /cssesc/3.0.0:
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ /cssnano-preset-default/4.0.8:
+ resolution: {integrity: sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ css-declaration-sorter: 4.0.1
+ cssnano-util-raw-cache: 4.0.1
+ postcss: 7.0.39
+ postcss-calc: 7.0.5
+ postcss-colormin: 4.0.3
+ postcss-convert-values: 4.0.1
+ postcss-discard-comments: 4.0.2
+ postcss-discard-duplicates: 4.0.2
+ postcss-discard-empty: 4.0.1
+ postcss-discard-overridden: 4.0.1
+ postcss-merge-longhand: 4.0.11
+ postcss-merge-rules: 4.0.3
+ postcss-minify-font-values: 4.0.2
+ postcss-minify-gradients: 4.0.2
+ postcss-minify-params: 4.0.2
+ postcss-minify-selectors: 4.0.2
+ postcss-normalize-charset: 4.0.1
+ postcss-normalize-display-values: 4.0.2
+ postcss-normalize-positions: 4.0.2
+ postcss-normalize-repeat-style: 4.0.2
+ postcss-normalize-string: 4.0.2
+ postcss-normalize-timing-functions: 4.0.2
+ postcss-normalize-unicode: 4.0.1
+ postcss-normalize-url: 4.0.1
+ postcss-normalize-whitespace: 4.0.2
+ postcss-ordered-values: 4.1.2
+ postcss-reduce-initial: 4.0.3
+ postcss-reduce-transforms: 4.0.2
+ postcss-svgo: 4.0.3
+ postcss-unique-selectors: 4.0.1
+ dev: false
+
+ /cssnano-util-get-arguments/4.0.0:
+ resolution: {integrity: sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /cssnano-util-get-match/4.0.0:
+ resolution: {integrity: sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /cssnano-util-raw-cache/4.0.1:
+ resolution: {integrity: sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /cssnano-util-same-parent/4.0.1:
+ resolution: {integrity: sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /cssnano/4.1.11:
+ resolution: {integrity: sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cosmiconfig: 5.2.1
+ cssnano-preset-default: 4.0.8
+ is-resolvable: 1.1.0
+ postcss: 7.0.39
+ dev: false
+
+ /csso/4.2.0:
+ resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ css-tree: 1.1.3
+ dev: false
+
+ /cssom/0.3.8:
+ resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
+ dev: false
+
+ /cssom/0.4.4:
+ resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==}
+ dev: false
+
+ /cssstyle/1.4.0:
+ resolution: {integrity: sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==}
+ dependencies:
+ cssom: 0.3.8
+ dev: false
+
+ /cssstyle/2.3.0:
+ resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
+ engines: {node: '>=8'}
+ dependencies:
+ cssom: 0.3.8
+ dev: false
+
+ /csstype/2.6.21:
+ resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
+ dev: false
+
+ /csstype/3.0.9:
+ resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==}
+ dev: false
+
+ /csstype/3.1.3:
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+
+ /cyclist/1.0.2:
+ resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==}
+ dev: false
+
+ /d/1.0.2:
+ resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
+ engines: {node: '>=0.12'}
+ dependencies:
+ es5-ext: 0.10.64
+ type: 2.7.3
+ dev: false
+
+ /d3-array/1.2.4:
+ resolution: {integrity: sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==}
+ dev: false
+
+ /d3-array/3.2.4:
+ resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
+ engines: {node: '>=12'}
+ dependencies:
+ internmap: 2.0.3
+ dev: false
+
+ /d3-collection/1.0.7:
+ resolution: {integrity: sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==}
+ dev: false
+
+ /d3-color/1.4.1:
+ resolution: {integrity: sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==}
+ dev: false
+
+ /d3-color/3.1.0:
+ resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /d3-ease/3.0.1:
+ resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /d3-format/1.4.5:
+ resolution: {integrity: sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==}
+ dev: false
+
+ /d3-format/3.1.0:
+ resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /d3-interpolate/1.4.0:
+ resolution: {integrity: sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==}
+ dependencies:
+ d3-color: 1.4.1
+ dev: false
+
+ /d3-interpolate/3.0.1:
+ resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
+ engines: {node: '>=12'}
+ dependencies:
+ d3-color: 3.1.0
+ dev: false
+
+ /d3-path/1.0.9:
+ resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==}
+ dev: false
+
+ /d3-path/3.1.0:
+ resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /d3-scale/2.2.2:
+ resolution: {integrity: sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==}
+ dependencies:
+ d3-array: 1.2.4
+ d3-collection: 1.0.7
+ d3-format: 1.4.5
+ d3-interpolate: 1.4.0
+ d3-time: 1.1.0
+ d3-time-format: 2.3.0
+ dev: false
+
+ /d3-scale/4.0.2:
+ resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ d3-array: 3.2.4
+ d3-format: 3.1.0
+ d3-interpolate: 3.0.1
+ d3-time: 3.1.0
+ d3-time-format: 4.1.0
+ dev: false
+
+ /d3-shape/1.3.7:
+ resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==}
+ dependencies:
+ d3-path: 1.0.9
+ dev: false
+
+ /d3-shape/3.2.0:
+ resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
+ engines: {node: '>=12'}
+ dependencies:
+ d3-path: 3.1.0
+ dev: false
+
+ /d3-time-format/2.3.0:
+ resolution: {integrity: sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==}
+ dependencies:
+ d3-time: 1.1.0
+ dev: false
+
+ /d3-time-format/4.1.0:
+ resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
+ engines: {node: '>=12'}
+ dependencies:
+ d3-time: 3.1.0
+ dev: false
+
+ /d3-time/1.1.0:
+ resolution: {integrity: sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==}
+ dev: false
+
+ /d3-time/3.1.0:
+ resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
+ engines: {node: '>=12'}
+ dependencies:
+ d3-array: 3.2.4
+ dev: false
+
+ /d3-timer/3.0.1:
+ resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /damerau-levenshtein/1.0.8:
+ resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
+ dev: false
+
+ /dashdash/1.14.1:
+ resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ assert-plus: 1.0.0
+ dev: false
+
+ /data-urls/1.1.0:
+ resolution: {integrity: sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==}
+ dependencies:
+ abab: 2.0.6
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 7.1.0
+ dev: false
+
+ /data-urls/2.0.0:
+ resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ abab: 2.0.6
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 8.7.0
+ dev: false
+
+ /data-view-buffer/1.0.1:
+ resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+ dev: false
+
+ /data-view-byte-length/1.0.1:
+ resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+ dev: false
+
+ /data-view-byte-offset/1.0.0:
+ resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+ dev: false
+
+ /debug/2.6.9:
+ resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.0.0
+ dev: false
+
+ /debug/2.6.9_supports-color@6.1.0:
+ resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.0.0
+ supports-color: 6.1.0
+ dev: false
+
+ /debug/3.2.7:
+ resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.3
+ dev: false
+
+ /debug/3.2.7_supports-color@6.1.0:
+ resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.3
+ supports-color: 6.1.0
+ dev: false
+
+ /debug/4.3.5:
+ resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.2
+ dev: false
+
+ /debug/4.3.5_supports-color@5.5.0:
+ resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.2
+ supports-color: 5.5.0
+ dev: false
+
+ /debug/4.3.5_supports-color@6.1.0:
+ resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.2
+ supports-color: 6.1.0
+ dev: false
+
+ /decamelize/1.2.0:
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /decimal.js-light/2.5.1:
+ resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
+ dev: false
+
+ /decimal.js/10.4.3:
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
+ dev: false
+
+ /decode-uri-component/0.2.2:
+ resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
+ engines: {node: '>=0.10'}
+ dev: false
+
+ /deep-equal/1.1.2:
+ resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-arguments: 1.1.1
+ is-date-object: 1.0.5
+ is-regex: 1.1.4
+ object-is: 1.1.6
+ object-keys: 1.1.1
+ regexp.prototype.flags: 1.5.2
+ dev: false
+
+ /deep-is/0.1.4:
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+ dev: false
+
+ /default-gateway/4.2.0:
+ resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==}
+ engines: {node: '>=6'}
+ dependencies:
+ execa: 1.0.0
+ ip-regex: 2.1.0
+ dev: false
+
+ /define-data-property/1.1.4:
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ gopd: 1.0.1
+ dev: false
+
+ /define-properties/1.2.1:
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
+ object-keys: 1.1.1
+ dev: false
+
+ /define-property/0.2.5:
+ resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 0.1.7
+ dev: false
+
+ /define-property/1.0.0:
+ resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 1.0.3
+ dev: false
+
+ /define-property/2.0.2:
+ resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 1.0.3
+ isobject: 3.0.1
+ dev: false
+
+ /del/4.1.1:
+ resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ '@types/glob': 7.2.0
+ globby: 6.1.0
+ is-path-cwd: 2.2.0
+ is-path-in-cwd: 2.1.0
+ p-map: 2.1.0
+ pify: 4.0.1
+ rimraf: 2.7.1
+ dev: false
+
+ /delayed-stream/1.0.0:
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
+ engines: {node: '>=0.4.0'}
+ dev: false
+
+ /depd/1.1.2:
+ resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /depd/2.0.0:
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /des.js/1.1.0:
+ resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==}
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: false
+
+ /destroy/1.2.0:
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ dev: false
+
+ /detect-newline/2.1.0:
+ resolution: {integrity: sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /detect-node-es/1.1.0:
+ resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
+ dev: false
+
+ /detect-node/2.1.0:
+ resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
+ dev: false
+
+ /detect-port-alt/1.1.6:
+ resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==}
+ engines: {node: '>= 4.2.1'}
+ hasBin: true
+ dependencies:
+ address: 1.1.2
+ debug: 2.6.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /diff-sequences/24.9.0:
+ resolution: {integrity: sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /diffie-hellman/5.0.3:
+ resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==}
+ dependencies:
+ bn.js: 4.12.0
+ miller-rabin: 4.0.1
+ randombytes: 2.1.0
+ dev: false
+
+ /dir-glob/2.0.0:
+ resolution: {integrity: sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==}
+ engines: {node: '>=4'}
+ dependencies:
+ arrify: 1.0.1
+ path-type: 3.0.0
+ dev: false
+
+ /dns-equal/1.0.0:
+ resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
+ dev: false
+
+ /dns-packet/1.3.4:
+ resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==}
+ dependencies:
+ ip: 1.1.9
+ safe-buffer: 5.2.1
+ dev: false
+
+ /dns-txt/2.0.2:
+ resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==}
+ dependencies:
+ buffer-indexof: 1.1.1
+ dev: false
+
+ /doctrine/1.5.0:
+ resolution: {integrity: sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ esutils: 2.0.3
+ isarray: 1.0.0
+ dev: false
+
+ /doctrine/2.1.0:
+ resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ esutils: 2.0.3
+ dev: false
+
+ /doctrine/3.0.0:
+ resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ esutils: 2.0.3
+ dev: false
+
+ /dom-converter/0.2.0:
+ resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
+ dependencies:
+ utila: 0.4.0
+ dev: false
+
+ /dom-helpers/3.4.0:
+ resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==}
+ dependencies:
+ '@babel/runtime': 7.24.7
+ dev: false
+
+ /dom-helpers/5.2.1:
+ resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
+ dependencies:
+ '@babel/runtime': 7.24.7
+ csstype: 3.1.3
+ dev: false
+
+ /dom-serializer/0.2.2:
+ resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==}
+ dependencies:
+ domelementtype: 2.3.0
+ entities: 2.2.0
+ dev: false
+
+ /dom-serializer/1.4.1:
+ resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ entities: 2.2.0
+ dev: false
+
+ /domain-browser/1.2.0:
+ resolution: {integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==}
+ engines: {node: '>=0.4', npm: '>=1.2'}
+ dev: false
+
+ /domelementtype/1.3.1:
+ resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==}
+ dev: false
+
+ /domelementtype/2.3.0:
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
+ dev: false
+
+ /domexception/1.0.1:
+ resolution: {integrity: sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==}
+ deprecated: Use your platform's native DOMException instead
+ dependencies:
+ webidl-conversions: 4.0.2
+ dev: false
+
+ /domexception/2.0.1:
+ resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==}
+ engines: {node: '>=8'}
+ deprecated: Use your platform's native DOMException instead
+ dependencies:
+ webidl-conversions: 5.0.0
+ dev: false
+
+ /domhandler/4.3.1:
+ resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
+ engines: {node: '>= 4'}
+ dependencies:
+ domelementtype: 2.3.0
+ dev: false
+
+ /domutils/1.7.0:
+ resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
+ dependencies:
+ dom-serializer: 0.2.2
+ domelementtype: 1.3.1
+ dev: false
+
+ /domutils/2.8.0:
+ resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
+ dependencies:
+ dom-serializer: 1.4.1
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ dev: false
+
+ /dot-case/3.0.4:
+ resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
+ dependencies:
+ no-case: 3.0.4
+ tslib: 2.6.3
+ dev: false
+
+ /dot-prop/5.3.0:
+ resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
+ engines: {node: '>=8'}
+ dependencies:
+ is-obj: 2.0.0
+ dev: false
+
+ /dotenv-expand/5.1.0:
+ resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==}
+ dev: false
+
+ /dotenv/8.2.0:
+ resolution: {integrity: sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /downloadjs/1.4.7:
+ resolution: {integrity: sha512-LN1gO7+u9xjU5oEScGFKvXhYf7Y/empUIIEAGBs1LzUq/rg5duiDrkuH5A2lQGd5jfMOb9X9usDa2oVXwJ0U/Q==}
+ dev: false
+
+ /duplexer/0.1.2:
+ resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
+ dev: false
+
+ /duplexify/3.7.1:
+ resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==}
+ dependencies:
+ end-of-stream: 1.4.4
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ stream-shift: 1.0.3
+ dev: false
+
+ /ecc-jsbn/0.1.2:
+ resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
+ dependencies:
+ jsbn: 0.1.1
+ safer-buffer: 2.1.2
+ dev: false
+
+ /ee-first/1.1.1:
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
+ dev: false
+
+ /electron-to-chromium/1.4.807:
+ resolution: {integrity: sha512-kSmJl2ZwhNf/bcIuCH/imtNOKlpkLDn2jqT5FJ+/0CXjhnFaOa9cOe9gHKKy71eM49izwuQjZhKk+lWQ1JxB7A==}
+ dev: false
+
+ /elliptic/6.5.5:
+ resolution: {integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==}
+ dependencies:
+ bn.js: 4.12.0
+ brorand: 1.1.0
+ hash.js: 1.1.7
+ hmac-drbg: 1.0.1
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+ dev: false
+
+ /emoji-regex/7.0.3:
+ resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==}
+ dev: false
+
+ /emoji-regex/8.0.0:
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+ dev: false
+
+ /emojis-list/2.1.0:
+ resolution: {integrity: sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==}
+ engines: {node: '>= 0.10'}
+ dev: false
+
+ /emojis-list/3.0.0:
+ resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
+ engines: {node: '>= 4'}
+ dev: false
+
+ /encodeurl/1.0.2:
+ resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /end-of-stream/1.4.4:
+ resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ dependencies:
+ once: 1.4.0
+ dev: false
+
+ /enhanced-resolve/4.5.0:
+ resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ graceful-fs: 4.2.11
+ memory-fs: 0.5.0
+ tapable: 1.1.3
+ dev: false
+
+ /entities/2.2.0:
+ resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
+ dev: false
+
+ /env-paths/2.2.1:
+ resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /errno/0.1.8:
+ resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
+ hasBin: true
+ dependencies:
+ prr: 1.0.1
+ dev: false
+
+ /error-ex/1.3.2:
+ resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ dependencies:
+ is-arrayish: 0.2.1
+
+ /es-abstract/1.23.3:
+ resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.1
+ arraybuffer.prototype.slice: 1.0.3
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ data-view-buffer: 1.0.1
+ data-view-byte-length: 1.0.1
+ data-view-byte-offset: 1.0.0
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-set-tostringtag: 2.0.3
+ es-to-primitive: 1.2.1
+ function.prototype.name: 1.1.6
+ get-intrinsic: 1.2.4
+ get-symbol-description: 1.0.2
+ globalthis: 1.0.4
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.2
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ hasown: 2.0.2
+ internal-slot: 1.0.7
+ is-array-buffer: 3.0.4
+ is-callable: 1.2.7
+ is-data-view: 1.0.1
+ is-negative-zero: 2.0.3
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.3
+ is-string: 1.0.7
+ is-typed-array: 1.1.13
+ is-weakref: 1.0.2
+ object-inspect: 1.13.1
+ object-keys: 1.1.1
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.2
+ safe-array-concat: 1.1.2
+ safe-regex-test: 1.0.3
+ string.prototype.trim: 1.2.9
+ string.prototype.trimend: 1.0.8
+ string.prototype.trimstart: 1.0.8
+ typed-array-buffer: 1.0.2
+ typed-array-byte-length: 1.0.1
+ typed-array-byte-offset: 1.0.2
+ typed-array-length: 1.0.6
+ unbox-primitive: 1.0.2
+ which-typed-array: 1.1.15
+ dev: false
+
+ /es-array-method-boxes-properly/1.0.0:
+ resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
+ dev: false
+
+ /es-define-property/1.0.0:
+ resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.4
+ dev: false
+
+ /es-errors/1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
+ dev: false
+
+ /es-object-atoms/1.0.0:
+ resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ es-errors: 1.3.0
+ dev: false
+
+ /es-set-tostringtag/2.0.3:
+ resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.4
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
+ dev: false
+
+ /es-shim-unscopables/1.0.2:
+ resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
+ dependencies:
+ hasown: 2.0.2
+ dev: false
+
+ /es-to-primitive/1.2.1:
+ resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-callable: 1.2.7
+ is-date-object: 1.0.5
+ is-symbol: 1.0.4
+ dev: false
+
+ /es5-ext/0.10.64:
+ resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
+ engines: {node: '>=0.10'}
+ requiresBuild: true
+ dependencies:
+ es6-iterator: 2.0.3
+ es6-symbol: 3.1.4
+ esniff: 2.0.1
+ next-tick: 1.1.0
+ dev: false
+
+ /es6-iterator/2.0.3:
+ resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
+ dependencies:
+ d: 1.0.2
+ es5-ext: 0.10.64
+ es6-symbol: 3.1.4
+ dev: false
+
+ /es6-symbol/3.1.4:
+ resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
+ engines: {node: '>=0.12'}
+ dependencies:
+ d: 1.0.2
+ ext: 1.7.0
+ dev: false
+
+ /escalade/3.1.2:
+ resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /escape-html/1.0.3:
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+ dev: false
+
+ /escape-string-regexp/1.0.5:
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
+
+ /escape-string-regexp/2.0.0:
+ resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /escape-string-regexp/4.0.0:
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
+ dev: false
+
+ /escodegen/1.14.3:
+ resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==}
+ engines: {node: '>=4.0'}
+ hasBin: true
+ dependencies:
+ esprima: 4.0.1
+ estraverse: 4.3.0
+ esutils: 2.0.3
+ optionator: 0.8.3
+ optionalDependencies:
+ source-map: 0.6.1
+ dev: false
+
+ /escodegen/2.1.0:
+ resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
+ engines: {node: '>=6.0'}
+ hasBin: true
+ dependencies:
+ esprima: 4.0.1
+ estraverse: 5.3.0
+ esutils: 2.0.3
+ optionalDependencies:
+ source-map: 0.6.1
+ dev: false
+
+ /eslint-config-react-app/5.2.1_4jxkwsnmokozlaag2msb6yppru:
+ resolution: {integrity: sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ==}
+ peerDependencies:
+ '@typescript-eslint/eslint-plugin': 2.x
+ '@typescript-eslint/parser': 2.x
+ babel-eslint: 10.x
+ eslint: 6.x
+ eslint-plugin-flowtype: 3.x || 4.x
+ eslint-plugin-import: 2.x
+ eslint-plugin-jsx-a11y: 6.x
+ eslint-plugin-react: 7.x
+ eslint-plugin-react-hooks: 1.x || 2.x
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 2.34.0_fmavwhclprfd5wnbs7ocgoy2gu
+ '@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
+ babel-eslint: 10.1.0_eslint@6.8.0
+ confusing-browser-globals: 1.0.11
+ eslint: 6.8.0
+ eslint-plugin-flowtype: 4.6.0_eslint@6.8.0
+ eslint-plugin-import: 2.20.1_tbglwmj7t2rhd43mvxmptakoay
+ eslint-plugin-jsx-a11y: 6.2.3_eslint@6.8.0
+ eslint-plugin-react: 7.19.0_eslint@6.8.0
+ eslint-plugin-react-hooks: 1.7.0_eslint@6.8.0
+ typescript: 3.9.10
+ dev: false
+
+ /eslint-import-resolver-node/0.3.9:
+ resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
+ dependencies:
+ debug: 3.2.7
+ is-core-module: 2.13.1
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /eslint-loader/3.0.3_s4p5obgc5rn2wrc7rinrdszb4m:
+ resolution: {integrity: sha512-+YRqB95PnNvxNp1HEjQmvf9KNvCin5HXYYseOXVC2U0KEcw4IkQ2IQEBG46j7+gW39bMzeu0GsUhVbBY3Votpw==}
+ engines: {node: '>= 8.9.0'}
+ deprecated: This loader has been deprecated. Please use eslint-webpack-plugin
+ peerDependencies:
+ eslint: ^5.0.0 || ^6.0.0
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ eslint: 6.8.0
+ fs-extra: 8.1.0
+ loader-fs-cache: 1.0.3
+ loader-utils: 1.4.2
+ object-hash: 2.2.0
+ schema-utils: 2.7.1
+ webpack: 4.42.0
+ dev: false
+
+ /eslint-module-utils/2.8.1_dliihslfikp2yunuxqn7usg75u:
+ resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
+ debug: 3.2.7
+ eslint: 6.8.0
+ eslint-import-resolver-node: 0.3.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /eslint-plugin-flowtype/4.6.0_eslint@6.8.0:
+ resolution: {integrity: sha512-W5hLjpFfZyZsXfo5anlu7HM970JBDqbEshAJUkeczP6BFCIfJXuiIBQXyberLRtOStT0OGPF8efeTbxlHk4LpQ==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ eslint: '>=6.1.0'
+ dependencies:
+ eslint: 6.8.0
+ lodash: 4.17.21
+ dev: false
+
+ /eslint-plugin-import/2.20.1_tbglwmj7t2rhd43mvxmptakoay:
+ resolution: {integrity: sha512-qQHgFOTjguR+LnYRoToeZWT62XM55MBVXObHM6SKFd1VzDcX/vqT1kAz8ssqigh5eMj8qXcRoXXGZpPP6RfdCw==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: 2.x - 6.x
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
+ array-includes: 3.1.8
+ array.prototype.flat: 1.3.2
+ contains-path: 0.1.0
+ debug: 2.6.9
+ doctrine: 1.5.0
+ eslint: 6.8.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.1_dliihslfikp2yunuxqn7usg75u
+ has: 1.0.4
+ minimatch: 3.1.2
+ object.values: 1.2.0
+ read-pkg-up: 2.0.0
+ resolve: 1.15.0
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: false
+
+ /eslint-plugin-jsx-a11y/6.2.3_eslint@6.8.0:
+ resolution: {integrity: sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6
+ dependencies:
+ '@babel/runtime': 7.24.7
+ aria-query: 3.0.0
+ array-includes: 3.1.8
+ ast-types-flow: 0.0.7
+ axobject-query: 2.2.0
+ damerau-levenshtein: 1.0.8
+ emoji-regex: 7.0.3
+ eslint: 6.8.0
+ has: 1.0.4
+ jsx-ast-utils: 2.4.1
+ dev: false
+
+ /eslint-plugin-react-hooks/1.7.0_eslint@6.8.0:
+ resolution: {integrity: sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==}
+ engines: {node: '>=7'}
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ dependencies:
+ eslint: 6.8.0
+ dev: false
+
+ /eslint-plugin-react/7.19.0_eslint@6.8.0:
+ resolution: {integrity: sha512-SPT8j72CGuAP+JFbT0sJHOB80TX/pu44gQ4vXH/cq+hQTiY2PuZ6IHkqXJV6x1b28GDdo1lbInjKUrrdUf0LOQ==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ dependencies:
+ array-includes: 3.1.8
+ doctrine: 2.1.0
+ eslint: 6.8.0
+ has: 1.0.4
+ jsx-ast-utils: 2.4.1
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.values: 1.2.0
+ prop-types: 15.8.1
+ resolve: 1.22.8
+ semver: 6.3.0
+ string.prototype.matchall: 4.0.11
+ xregexp: 4.4.1
+ dev: false
+
+ /eslint-scope/4.0.3:
+ resolution: {integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
+ dev: false
+
+ /eslint-scope/5.1.1:
+ resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
+ dev: false
+
+ /eslint-utils/1.4.3:
+ resolution: {integrity: sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==}
+ engines: {node: '>=6'}
+ dependencies:
+ eslint-visitor-keys: 1.3.0
+ dev: false
+
+ /eslint-utils/2.1.0:
+ resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
+ engines: {node: '>=6'}
+ dependencies:
+ eslint-visitor-keys: 1.3.0
+ dev: false
+
+ /eslint-visitor-keys/1.3.0:
+ resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /eslint/6.8.0:
+ resolution: {integrity: sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==}
+ engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
+ hasBin: true
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ ajv: 6.12.6
+ chalk: 2.4.2
+ cross-spawn: 6.0.5
+ debug: 4.3.5
+ doctrine: 3.0.0
+ eslint-scope: 5.1.1
+ eslint-utils: 1.4.3
+ eslint-visitor-keys: 1.3.0
+ espree: 6.2.1
+ esquery: 1.5.0
+ esutils: 2.0.3
+ file-entry-cache: 5.0.1
+ functional-red-black-tree: 1.0.1
+ glob-parent: 5.1.2
+ globals: 12.4.0
+ ignore: 4.0.6
+ import-fresh: 3.3.0
+ imurmurhash: 0.1.4
+ inquirer: 7.3.3
+ is-glob: 4.0.3
+ js-yaml: 3.14.1
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.3.0
+ lodash: 4.17.21
+ minimatch: 3.1.2
+ mkdirp: 0.5.6
+ natural-compare: 1.4.0
+ optionator: 0.8.3
+ progress: 2.0.3
+ regexpp: 2.0.1
+ semver: 6.3.0
+ strip-ansi: 5.2.0
+ strip-json-comments: 3.1.1
+ table: 5.4.6
+ text-table: 0.2.0
+ v8-compile-cache: 2.4.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /esniff/2.0.1:
+ resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ d: 1.0.2
+ es5-ext: 0.10.64
+ event-emitter: 0.3.5
+ type: 2.7.3
+ dev: false
+
+ /espree/6.2.1:
+ resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ acorn: 7.4.1
+ acorn-jsx: 5.3.2_acorn@7.4.1
+ eslint-visitor-keys: 1.3.0
+ dev: false
+
+ /esprima/4.0.1:
+ resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: false
+
+ /esquery/1.5.0:
+ resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: false
+
+ /esrecurse/4.3.0:
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+ engines: {node: '>=4.0'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: false
+
+ /estraverse/4.3.0:
+ resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
+ engines: {node: '>=4.0'}
+ dev: false
+
+ /estraverse/5.3.0:
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ engines: {node: '>=4.0'}
+ dev: false
+
+ /esutils/2.0.3:
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /etag/1.8.1:
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /event-emitter/0.3.5:
+ resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
+ dependencies:
+ d: 1.0.2
+ es5-ext: 0.10.64
+ dev: false
+
+ /eventemitter3/4.0.7:
+ resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
+ dev: false
+
+ /events/1.1.1:
+ resolution: {integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==}
+ engines: {node: '>=0.4.x'}
+ dev: false
+
+ /events/3.3.0:
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
+ engines: {node: '>=0.8.x'}
+ dev: false
+
+ /eventsource/1.1.2:
+ resolution: {integrity: sha512-xAH3zWhgO2/3KIniEKYPr8plNSzlGINOUqYj0m0u7AB81iRw8b/3E73W6AuU+6klLbaSFmZnaETQ2lXPfAydrA==}
+ engines: {node: '>=0.12.0'}
+ dev: false
+
+ /evp_bytestokey/1.0.3:
+ resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==}
+ dependencies:
+ md5.js: 1.3.5
+ safe-buffer: 5.2.1
+ dev: false
+
+ /exec-sh/0.3.6:
+ resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==}
+ dev: false
+
+ /execa/1.0.0:
+ resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
+ engines: {node: '>=6'}
+ dependencies:
+ cross-spawn: 6.0.5
+ get-stream: 4.1.0
+ is-stream: 1.1.0
+ npm-run-path: 2.0.2
+ p-finally: 1.0.0
+ signal-exit: 3.0.7
+ strip-eof: 1.0.0
+ dev: false
+
+ /exit/0.1.2:
+ resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
+ engines: {node: '>= 0.8.0'}
+ dev: false
+
+ /expand-brackets/2.1.4:
+ resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ posix-character-classes: 0.1.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /expand-brackets/2.1.4_supports-color@6.1.0:
+ resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ debug: 2.6.9_supports-color@6.1.0
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ posix-character-classes: 0.1.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2_supports-color@6.1.0
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /expect/24.9.0:
+ resolution: {integrity: sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ ansi-styles: 3.2.1
+ jest-get-type: 24.9.0
+ jest-matcher-utils: 24.9.0
+ jest-message-util: 24.9.0
+ jest-regex-util: 24.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /express/4.19.2_supports-color@6.1.0:
+ resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
+ engines: {node: '>= 0.10.0'}
+ dependencies:
+ accepts: 1.3.8
+ array-flatten: 1.1.1
+ body-parser: 1.20.2_supports-color@6.1.0
+ content-disposition: 0.5.4
+ content-type: 1.0.5
+ cookie: 0.6.0
+ cookie-signature: 1.0.6
+ debug: 2.6.9_supports-color@6.1.0
+ depd: 2.0.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 1.2.0_supports-color@6.1.0
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ merge-descriptors: 1.0.1
+ methods: 1.1.2
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ path-to-regexp: 0.1.7
+ proxy-addr: 2.0.7
+ qs: 6.11.0
+ range-parser: 1.2.1
+ safe-buffer: 5.2.1
+ send: 0.18.0_supports-color@6.1.0
+ serve-static: 1.15.0_supports-color@6.1.0
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ type-is: 1.6.18
+ utils-merge: 1.0.1
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /ext/1.7.0:
+ resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
+ dependencies:
+ type: 2.7.3
+ dev: false
+
+ /extend-shallow/2.0.1:
+ resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extendable: 0.1.1
+ dev: false
+
+ /extend-shallow/3.0.2:
+ resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ assign-symbols: 1.0.0
+ is-extendable: 1.0.1
+ dev: false
+
+ /extend/3.0.2:
+ resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
+ dev: false
+
+ /external-editor/3.1.0:
+ resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
+ engines: {node: '>=4'}
+ dependencies:
+ chardet: 0.7.0
+ iconv-lite: 0.4.24
+ tmp: 0.0.33
+ dev: false
+
+ /extglob/2.0.4:
+ resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-unique: 0.3.2
+ define-property: 1.0.0
+ expand-brackets: 2.1.4
+ extend-shallow: 2.0.1
+ fragment-cache: 0.2.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /extglob/2.0.4_supports-color@6.1.0:
+ resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-unique: 0.3.2
+ define-property: 1.0.0
+ expand-brackets: 2.1.4_supports-color@6.1.0
+ extend-shallow: 2.0.1
+ fragment-cache: 0.2.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2_supports-color@6.1.0
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /extsprintf/1.3.0:
+ resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
+ engines: {'0': node >=0.6.0}
+ dev: false
+
+ /fast-deep-equal/3.1.3:
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+ dev: false
+
+ /fast-equals/5.0.1:
+ resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==}
+ engines: {node: '>=6.0.0'}
+ dev: false
+
+ /fast-glob/2.2.7:
+ resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ '@mrmlnc/readdir-enhanced': 2.2.1
+ '@nodelib/fs.stat': 1.1.3
+ glob-parent: 3.1.0
+ is-glob: 4.0.3
+ merge2: 1.4.1
+ micromatch: 3.1.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /fast-json-stable-stringify/2.1.0:
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
+ dev: false
+
+ /fast-levenshtein/2.0.6:
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ dev: false
+
+ /faye-websocket/0.10.0:
+ resolution: {integrity: sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==}
+ engines: {node: '>=0.4.0'}
+ dependencies:
+ websocket-driver: 0.7.4
+ dev: false
+
+ /faye-websocket/0.11.4:
+ resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
+ engines: {node: '>=0.8.0'}
+ dependencies:
+ websocket-driver: 0.7.4
+ dev: false
+
+ /fb-watchman/2.0.2:
+ resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
+ dependencies:
+ bser: 2.1.1
+ dev: false
+
+ /figgy-pudding/3.5.2:
+ resolution: {integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==}
+ deprecated: This module is no longer supported.
+ dev: false
+
+ /figures/3.2.0:
+ resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
+ engines: {node: '>=8'}
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: false
+
+ /file-entry-cache/5.0.1:
+ resolution: {integrity: sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==}
+ engines: {node: '>=4'}
+ dependencies:
+ flat-cache: 2.0.1
+ dev: false
+
+ /file-loader/4.3.0_webpack@4.42.0:
+ resolution: {integrity: sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==}
+ engines: {node: '>= 8.9.0'}
+ peerDependencies:
+ webpack: ^4.0.0
+ dependencies:
+ loader-utils: 1.4.2
+ schema-utils: 2.7.1
+ webpack: 4.42.0
+ dev: false
+
+ /file-uri-to-path/1.0.0:
+ resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /filesize/6.0.1:
+ resolution: {integrity: sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg==}
+ engines: {node: '>= 0.4.0'}
+ dev: false
+
+ /fill-range/4.0.0:
+ resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 2.0.1
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ to-regex-range: 2.1.1
+ dev: false
+
+ /fill-range/7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
+ engines: {node: '>=8'}
+ dependencies:
+ to-regex-range: 5.0.1
+ dev: false
+
+ /final-form-arrays/3.1.0:
+ resolution: {integrity: sha512-TWBvun+AopgBLw9zfTFHBllnKMVNEwCEyDawphPuBGGqNsuhGzhT7yewHys64KFFwzIs6KEteGLpKOwvTQEscQ==}
+ peerDependencies:
+ final-form: ^4.20.8
+ dev: false
+
+ /final-form/4.20.10:
+ resolution: {integrity: sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/runtime': 7.24.7
+ dev: false
+
+ /finalhandler/1.2.0_supports-color@6.1.0:
+ resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ debug: 2.6.9_supports-color@6.1.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.1
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /find-cache-dir/0.1.1:
+ resolution: {integrity: sha512-Z9XSBoNE7xQiV6MSgPuCfyMokH2K7JdpRkOYE1+mu3d4BFJtx3GW+f6Bo4q8IX6rlf5MYbLBKW0pjl2cWdkm2A==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ commondir: 1.0.1
+ mkdirp: 0.5.6
+ pkg-dir: 1.0.0
+ dev: false
+
+ /find-cache-dir/2.1.0:
+ resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 2.1.0
+ pkg-dir: 3.0.0
+ dev: false
+
+ /find-cache-dir/3.3.2:
+ resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
+ engines: {node: '>=8'}
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 3.1.0
+ pkg-dir: 4.2.0
+ dev: false
+
+ /find-root/1.1.0:
+ resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
+ dev: false
+
+ /find-up/1.1.2:
+ resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ path-exists: 2.1.0
+ pinkie-promise: 2.0.1
+ dev: false
+
+ /find-up/2.1.0:
+ resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ locate-path: 2.0.0
+ dev: false
+
+ /find-up/3.0.0:
+ resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
+ engines: {node: '>=6'}
+ dependencies:
+ locate-path: 3.0.0
+ dev: false
+
+ /find-up/4.1.0:
+ resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
+ engines: {node: '>=8'}
+ dependencies:
+ locate-path: 5.0.0
+ path-exists: 4.0.0
+ dev: false
+
+ /flat-cache/2.0.1:
+ resolution: {integrity: sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==}
+ engines: {node: '>=4'}
+ dependencies:
+ flatted: 2.0.2
+ rimraf: 2.6.3
+ write: 1.0.3
+ dev: false
+
+ /flatted/2.0.2:
+ resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==}
+ dev: false
+
+ /flatten/1.0.3:
+ resolution: {integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==}
+ deprecated: flatten is deprecated in favor of utility frameworks such as lodash.
+ dev: false
+
+ /flush-write-stream/1.1.1:
+ resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ dev: false
+
+ /focus-lock/0.9.2:
+ resolution: {integrity: sha512-YtHxjX7a0IC0ZACL5wsX8QdncXofWpGPNoVMuI/nZUrPGp6LmNI6+D5j0pPj+v8Kw5EpweA+T5yImK0rnWf7oQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ tslib: 2.6.3
+ dev: false
+
+ /follow-redirects/1.15.6_debug@4.3.5:
+ resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ dependencies:
+ debug: 4.3.5_supports-color@6.1.0
+ dev: false
+
+ /for-each/0.3.3:
+ resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ dependencies:
+ is-callable: 1.2.7
+ dev: false
+
+ /for-in/0.1.8:
+ resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /for-in/1.0.2:
+ resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /for-own/0.1.5:
+ resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-in: 1.0.2
+ dev: false
+
+ /forever-agent/0.6.1:
+ resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
+ dev: false
+
+ /fork-ts-checker-webpack-plugin/3.1.1_crohzwvpukyphkhrd5alcafdre:
+ resolution: {integrity: sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ==}
+ 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: 6.26.0
+ chalk: 2.4.2
+ chokidar: 3.6.0
+ eslint: 6.8.0
+ micromatch: 3.1.10
+ minimatch: 3.1.2
+ semver: 5.7.2
+ tapable: 1.1.3
+ typescript: 3.9.10
+ webpack: 4.42.0
+ worker-rpc: 0.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /form-data/2.3.3:
+ resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
+ engines: {node: '>= 0.12'}
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ mime-types: 2.1.35
+ dev: false
+
+ /form-data/3.0.1:
+ resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
+ engines: {node: '>= 6'}
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ mime-types: 2.1.35
+ dev: false
+
+ /forwarded/0.2.0:
+ resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /fragment-cache/0.2.1:
+ resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ map-cache: 0.2.2
+ dev: false
+
+ /framer-motion/4.1.17:
+ resolution: {integrity: sha512-thx1wvKzblzbs0XaK2X0G1JuwIdARcoNOW7VVwjO8BUltzXPyONGAElLu6CiCScsOQRI7FIk/45YTFtJw5Yozw==}
+ peerDependencies:
+ react: '>=16.8 || ^17.0.0'
+ react-dom: '>=16.8 || ^17.0.0'
+ dependencies:
+ framesync: 5.3.0
+ hey-listen: 1.0.8
+ popmotion: 9.3.6
+ style-value-types: 4.1.4
+ tslib: 2.6.3
+ optionalDependencies:
+ '@emotion/is-prop-valid': 0.8.8
+ dev: false
+
+ /framesync/5.3.0:
+ resolution: {integrity: sha512-oc5m68HDO/tuK2blj7ZcdEBRx3p1PjrgHazL8GYEpvULhrtGIFbQArN6cQS2QhW8mitffaB+VYzMjDqBxxQeoA==}
+ dependencies:
+ tslib: 2.6.3
+ dev: false
+
+ /fresh/0.5.2:
+ resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /from2/2.3.0:
+ resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ dev: false
+
+ /fs-extra/4.0.3:
+ resolution: {integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: false
+
+ /fs-extra/7.0.1:
+ resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
+ engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: false
+
+ /fs-extra/8.1.0:
+ resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
+ engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: false
+
+ /fs-minipass/2.1.0:
+ resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+
+ /fs-write-stream-atomic/1.0.10:
+ resolution: {integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==}
+ deprecated: This package is no longer supported.
+ dependencies:
+ graceful-fs: 4.2.11
+ iferr: 0.1.5
+ imurmurhash: 0.1.4
+ readable-stream: 2.3.8
+ dev: false
+
+ /fs.realpath/1.0.0:
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+ dev: false
+
+ /fsevents/1.2.13:
+ resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==}
+ engines: {node: '>= 4.0'}
+ os: [darwin]
+ deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2
+ requiresBuild: true
+ dependencies:
+ bindings: 1.5.0
+ nan: 2.20.0
+ dev: false
+ optional: true
+
+ /fsevents/2.1.2:
+ resolution: {integrity: sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+ deprecated: '"Please update to latest v2.3 or v2.2"'
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /fsevents/2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /function-bind/1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+ dev: false
+
+ /function.prototype.name/1.1.6:
+ resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ functions-have-names: 1.2.3
+ dev: false
+
+ /functional-red-black-tree/1.0.1:
+ resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
+ dev: false
+
+ /functions-have-names/1.2.3:
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ dev: false
+
+ /gensync/1.0.0-beta.2:
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
+ /get-caller-file/1.0.3:
+ resolution: {integrity: sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==}
+ dev: false
+
+ /get-caller-file/2.0.5:
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
+ engines: {node: 6.* || 8.* || >= 10.*}
+ dev: false
+
+ /get-intrinsic/1.2.4:
+ resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ hasown: 2.0.2
+ dev: false
+
+ /get-nonce/1.0.1:
+ resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /get-own-enumerable-property-symbols/3.0.2:
+ resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
+ dev: false
+
+ /get-stream/4.1.0:
+ resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
+ engines: {node: '>=6'}
+ dependencies:
+ pump: 3.0.0
+ dev: false
+
+ /get-symbol-description/1.0.2:
+ resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ dev: false
+
+ /get-value/2.0.6:
+ resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /getpass/0.1.7:
+ resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
+ dependencies:
+ assert-plus: 1.0.0
+ dev: false
+
+ /glob-parent/3.1.0:
+ resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==}
+ dependencies:
+ is-glob: 3.1.0
+ path-dirname: 1.0.2
+ dev: false
+
+ /glob-parent/5.1.2:
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+ engines: {node: '>= 6'}
+ dependencies:
+ is-glob: 4.0.3
+ dev: false
+
+ /glob-to-regexp/0.3.0:
+ resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==}
+ dev: false
+
+ /glob/7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ deprecated: Glob versions prior to v9 are no longer supported
+ 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
+ dev: false
+
+ /global-modules/2.0.0:
+ resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
+ engines: {node: '>=6'}
+ dependencies:
+ global-prefix: 3.0.0
+ dev: false
+
+ /global-prefix/3.0.0:
+ resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
+ engines: {node: '>=6'}
+ dependencies:
+ ini: 1.3.8
+ kind-of: 6.0.3
+ which: 1.3.1
+ dev: false
+
+ /globals/11.12.0:
+ resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /globals/12.4.0:
+ resolution: {integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==}
+ engines: {node: '>=8'}
+ dependencies:
+ type-fest: 0.8.1
+ dev: false
+
+ /globalthis/1.0.4:
+ resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-properties: 1.2.1
+ gopd: 1.0.1
+ dev: false
+
+ /globby/6.1.0:
+ resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-union: 1.0.2
+ glob: 7.2.3
+ object-assign: 4.1.1
+ pify: 2.3.0
+ pinkie-promise: 2.0.1
+ dev: false
+
+ /globby/8.0.2:
+ resolution: {integrity: sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==}
+ engines: {node: '>=4'}
+ dependencies:
+ array-union: 1.0.2
+ dir-glob: 2.0.0
+ fast-glob: 2.2.7
+ glob: 7.2.3
+ ignore: 3.3.10
+ pify: 3.0.0
+ slash: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /gopd/1.0.1:
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ dependencies:
+ get-intrinsic: 1.2.4
+ dev: false
+
+ /graceful-fs/4.2.11:
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+ dev: false
+
+ /growly/1.3.0:
+ resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==}
+ dev: false
+
+ /gzip-size/5.1.1:
+ resolution: {integrity: sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==}
+ engines: {node: '>=6'}
+ dependencies:
+ duplexer: 0.1.2
+ pify: 4.0.1
+ dev: false
+
+ /handle-thing/2.0.1:
+ resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
+ dev: false
+
+ /har-schema/2.0.0:
+ resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /har-validator/5.1.5:
+ resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==}
+ engines: {node: '>=6'}
+ deprecated: this library is no longer supported
+ dependencies:
+ ajv: 6.12.6
+ har-schema: 2.0.0
+ dev: false
+
+ /harmony-reflect/1.6.2:
+ resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==}
+ dev: false
+
+ /has-ansi/2.0.0:
+ resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ ansi-regex: 2.1.1
+ dev: false
+
+ /has-bigints/1.0.2:
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+ dev: false
+
+ /has-flag/3.0.0:
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+ engines: {node: '>=4'}
+
+ /has-flag/4.0.0:
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /has-property-descriptors/1.0.2:
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
+ dependencies:
+ es-define-property: 1.0.0
+ dev: false
+
+ /has-proto/1.0.3:
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
+ engines: {node: '>= 0.4'}
+ dev: false
+
+ /has-symbols/1.0.3:
+ resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ engines: {node: '>= 0.4'}
+ dev: false
+
+ /has-tostringtag/1.0.2:
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-symbols: 1.0.3
+ dev: false
+
+ /has-value/0.3.1:
+ resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ get-value: 2.0.6
+ has-values: 0.1.4
+ isobject: 2.1.0
+ dev: false
+
+ /has-value/1.0.0:
+ resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ get-value: 2.0.6
+ has-values: 1.0.0
+ isobject: 3.0.1
+ dev: false
+
+ /has-values/0.1.4:
+ resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /has-values/1.0.0:
+ resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-number: 3.0.0
+ kind-of: 4.0.0
+ dev: false
+
+ /has/1.0.4:
+ resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==}
+ engines: {node: '>= 0.4.0'}
+ dev: false
+
+ /hash-base/3.0.4:
+ resolution: {integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==}
+ engines: {node: '>=4'}
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: false
+
+ /hash-base/3.1.0:
+ resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
+ engines: {node: '>=4'}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ safe-buffer: 5.2.1
+ dev: false
+
+ /hash.js/1.1.7:
+ resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==}
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: false
+
+ /hasown/2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ function-bind: 1.1.2
+ dev: false
+
+ /he/1.2.0:
+ resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
+ hasBin: true
+ dev: false
+
+ /hex-color-regex/1.1.0:
+ resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==}
+ dev: false
+
+ /hey-listen/1.0.8:
+ resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
+ dev: false
+
+ /hmac-drbg/1.0.1:
+ resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
+ dependencies:
+ hash.js: 1.1.7
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+ dev: false
+
+ /hoist-non-react-statics/3.3.2:
+ resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
+ dependencies:
+ react-is: 16.13.1
+ dev: false
+
+ /hosted-git-info/2.8.9:
+ resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
+ dev: false
+
+ /hpack.js/2.1.6:
+ resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
+ dependencies:
+ inherits: 2.0.4
+ obuf: 1.1.2
+ readable-stream: 2.3.8
+ wbuf: 1.7.3
+ dev: false
+
+ /hsl-regex/1.0.0:
+ resolution: {integrity: sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==}
+ dev: false
+
+ /hsla-regex/1.0.0:
+ resolution: {integrity: sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==}
+ dev: false
+
+ /html-encoding-sniffer/1.0.2:
+ resolution: {integrity: sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==}
+ dependencies:
+ whatwg-encoding: 1.0.5
+ dev: false
+
+ /html-encoding-sniffer/2.0.1:
+ resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ whatwg-encoding: 1.0.5
+ dev: false
+
+ /html-entities/1.4.0:
+ resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==}
+ dev: false
+
+ /html-escaper/2.0.2:
+ resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
+ dev: false
+
+ /html-minifier-terser/5.1.1:
+ resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dependencies:
+ camel-case: 4.1.2
+ clean-css: 4.2.4
+ commander: 4.1.1
+ he: 1.2.0
+ param-case: 3.0.4
+ relateurl: 0.2.7
+ terser: 4.8.1
+ dev: false
+
+ /html-webpack-plugin/4.0.0-beta.11_webpack@4.42.0:
+ resolution: {integrity: sha512-4Xzepf0qWxf8CGg7/WQM5qBB2Lc/NFI7MhU59eUDTkuQp3skZczH4UA1d6oQyDEIoMDgERVhRyTdtUPZ5s5HBg==}
+ engines: {node: '>=6.9'}
+ deprecated: please switch to a stable version
+ peerDependencies:
+ webpack: ^4.0.0
+ dependencies:
+ html-minifier-terser: 5.1.1
+ loader-utils: 1.4.2
+ lodash: 4.17.21
+ pretty-error: 2.1.2
+ tapable: 1.1.3
+ util.promisify: 1.0.0
+ webpack: 4.42.0
+ dev: false
+
+ /htmlparser2/6.1.0:
+ resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ domutils: 2.8.0
+ entities: 2.2.0
+ dev: false
+
+ /http-deceiver/1.2.7:
+ resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
+ dev: false
+
+ /http-errors/1.6.3:
+ resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ depd: 1.1.2
+ inherits: 2.0.3
+ setprototypeof: 1.1.0
+ statuses: 1.5.0
+ dev: false
+
+ /http-errors/2.0.0:
+ resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ depd: 2.0.0
+ inherits: 2.0.4
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ toidentifier: 1.0.1
+ dev: false
+
+ /http-parser-js/0.5.8:
+ resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
+ dev: false
+
+ /http-proxy-agent/4.0.1:
+ resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@tootallnate/once': 1.1.2
+ agent-base: 6.0.2
+ debug: 4.3.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /http-proxy-middleware/0.19.1_cvgmqmby27wuzeql4gbeflp6nq:
+ resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ http-proxy: 1.18.1_debug@4.3.5
+ is-glob: 4.0.3
+ lodash: 4.17.21
+ micromatch: 3.1.10_supports-color@6.1.0
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ dev: false
+
+ /http-proxy/1.18.1_debug@4.3.5:
+ resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ eventemitter3: 4.0.7
+ follow-redirects: 1.15.6_debug@4.3.5
+ requires-port: 1.0.0
+ transitivePeerDependencies:
+ - debug
+ dev: false
+
+ /http-signature/1.2.0:
+ resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==}
+ engines: {node: '>=0.8', npm: '>=1.3.7'}
+ dependencies:
+ assert-plus: 1.0.0
+ jsprim: 1.4.2
+ sshpk: 1.18.0
+ dev: false
+
+ /https-browserify/1.0.0:
+ resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==}
+ dev: false
+
+ /https-proxy-agent/5.0.1:
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ agent-base: 6.0.2
+ debug: 4.3.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /iconv-lite/0.4.24:
+ resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ safer-buffer: 2.1.2
+ dev: false
+
+ /icss-utils/4.1.1:
+ resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /icss-utils/5.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
+ /identity-obj-proxy/3.0.0:
+ resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==}
+ engines: {node: '>=4'}
+ dependencies:
+ harmony-reflect: 1.6.2
+ dev: false
+
+ /ieee754/1.1.13:
+ resolution: {integrity: sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==}
+ dev: false
+
+ /iferr/0.1.5:
+ resolution: {integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==}
+ dev: false
+
+ /ignore/3.3.10:
+ resolution: {integrity: sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==}
+ dev: false
+
+ /ignore/4.0.6:
+ resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
+ engines: {node: '>= 4'}
+ dev: false
+
+ /immer/1.10.0:
+ resolution: {integrity: sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==}
+ dev: false
+
+ /import-cwd/2.1.0:
+ resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==}
+ engines: {node: '>=4'}
+ dependencies:
+ import-from: 2.1.0
+ dev: false
+
+ /import-fresh/2.0.0:
+ resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
+ engines: {node: '>=4'}
+ dependencies:
+ caller-path: 2.0.0
+ resolve-from: 3.0.0
+ dev: false
+
+ /import-fresh/3.3.0:
+ resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ engines: {node: '>=6'}
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+
+ /import-from/2.1.0:
+ resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==}
+ engines: {node: '>=4'}
+ dependencies:
+ resolve-from: 3.0.0
+ dev: false
+
+ /import-local/2.0.0:
+ resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dependencies:
+ pkg-dir: 3.0.0
+ resolve-cwd: 2.0.0
+ dev: false
+
+ /imurmurhash/0.1.4:
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
+ dev: false
+
+ /indent-string/4.0.0:
+ resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /indexes-of/1.0.1:
+ resolution: {integrity: sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==}
+ dev: false
+
+ /infer-owner/1.0.4:
+ resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
+ dev: false
+
+ /inflight/1.0.6:
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
+ deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
+ dependencies:
+ once: 1.4.0
+ wrappy: 1.0.2
+ dev: false
+
+ /inherits/2.0.1:
+ resolution: {integrity: sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==}
+ dev: false
+
+ /inherits/2.0.3:
+ resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
+ dev: false
+
+ /inherits/2.0.4:
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
+ dev: false
+
+ /ini/1.3.8:
+ resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
+ dev: false
+
+ /inquirer/7.0.4:
+ resolution: {integrity: sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ ansi-escapes: 4.3.2
+ chalk: 2.4.2
+ cli-cursor: 3.1.0
+ cli-width: 2.2.1
+ external-editor: 3.1.0
+ figures: 3.2.0
+ lodash: 4.17.21
+ mute-stream: 0.0.8
+ run-async: 2.4.1
+ rxjs: 6.6.7
+ string-width: 4.2.3
+ strip-ansi: 5.2.0
+ through: 2.3.8
+ dev: false
+
+ /inquirer/7.3.3:
+ resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-width: 3.0.0
+ external-editor: 3.1.0
+ figures: 3.2.0
+ lodash: 4.17.21
+ mute-stream: 0.0.8
+ run-async: 2.4.1
+ rxjs: 6.6.7
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ through: 2.3.8
+ dev: false
+
+ /internal-ip/4.3.0:
+ resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==}
+ engines: {node: '>=6'}
+ dependencies:
+ default-gateway: 4.2.0
+ ipaddr.js: 1.9.1
+ dev: false
+
+ /internal-slot/1.0.7:
+ resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ es-errors: 1.3.0
+ hasown: 2.0.2
+ side-channel: 1.0.6
+ dev: false
+
+ /internmap/2.0.3:
+ resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /invariant/2.2.4:
+ resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
+ dependencies:
+ loose-envify: 1.4.0
+ dev: false
+
+ /invert-kv/2.0.0:
+ resolution: {integrity: sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /ip-regex/2.1.0:
+ resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /ip/1.1.9:
+ resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==}
+ dev: false
+
+ /ipaddr.js/1.9.1:
+ resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
+ engines: {node: '>= 0.10'}
+ dev: false
+
+ /is-absolute-url/2.1.0:
+ resolution: {integrity: sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /is-absolute-url/3.0.3:
+ resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /is-accessor-descriptor/1.0.1:
+ resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ hasown: 2.0.2
+ dev: false
+
+ /is-arguments/1.1.1:
+ resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
+ dev: false
+
+ /is-array-buffer/3.0.4:
+ resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ dev: false
+
+ /is-arrayish/0.2.1:
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+
+ /is-arrayish/0.3.2:
+ resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+ dev: false
+
+ /is-bigint/1.0.4:
+ resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
+ dependencies:
+ has-bigints: 1.0.2
+ dev: false
+
+ /is-binary-path/1.0.1:
+ resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ binary-extensions: 1.13.1
+ dev: false
+
+ /is-binary-path/2.1.0:
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
+ engines: {node: '>=8'}
+ dependencies:
+ binary-extensions: 2.3.0
+ dev: false
+
+ /is-boolean-object/1.1.2:
+ resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
+ dev: false
+
+ /is-buffer/1.1.6:
+ resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
+ dev: false
+
+ /is-callable/1.2.7:
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
+ engines: {node: '>= 0.4'}
+ dev: false
+
+ /is-ci/2.0.0:
+ resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==}
+ hasBin: true
+ dependencies:
+ ci-info: 2.0.0
+ dev: false
+
+ /is-color-stop/1.1.0:
+ resolution: {integrity: sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==}
+ dependencies:
+ css-color-names: 0.0.4
+ hex-color-regex: 1.1.0
+ hsl-regex: 1.0.0
+ hsla-regex: 1.0.0
+ rgb-regex: 1.0.1
+ rgba-regex: 1.0.0
+ dev: false
+
+ /is-core-module/2.13.1:
+ resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
+ dependencies:
+ hasown: 2.0.2
+ dev: false
+
+ /is-data-descriptor/1.0.1:
+ resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ hasown: 2.0.2
+ dev: false
+
+ /is-data-view/1.0.1:
+ resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-typed-array: 1.1.13
+ dev: false
+
+ /is-date-object/1.0.5:
+ resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.2
+ dev: false
+
+ /is-descriptor/0.1.7:
+ resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-accessor-descriptor: 1.0.1
+ is-data-descriptor: 1.0.1
+ dev: false
+
+ /is-descriptor/1.0.3:
+ resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-accessor-descriptor: 1.0.1
+ is-data-descriptor: 1.0.1
+ dev: false
+
+ /is-directory/0.3.1:
+ resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /is-docker/2.2.1:
+ resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
+ engines: {node: '>=8'}
+ hasBin: true
+ dev: false
+
+ /is-extendable/0.1.1:
+ resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /is-extendable/1.0.1:
+ resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-plain-object: 2.0.4
+ dev: false
+
+ /is-extglob/2.1.1:
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /is-fullwidth-code-point/1.0.0:
+ resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ number-is-nan: 1.0.1
+ dev: false
+
+ /is-fullwidth-code-point/2.0.0:
+ resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /is-fullwidth-code-point/3.0.0:
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /is-generator-fn/2.1.0:
+ resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /is-generator-function/1.0.10:
+ resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.2
+ dev: false
+
+ /is-glob/3.1.0:
+ resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extglob: 2.1.1
+ dev: false
+
+ /is-glob/4.0.3:
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extglob: 2.1.1
+ dev: false
+
+ /is-negative-zero/2.0.3:
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
+ engines: {node: '>= 0.4'}
+ dev: false
+
+ /is-number-object/1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.2
+ dev: false
+
+ /is-number/3.0.0:
+ resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+
+ /is-number/7.0.0:
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
+ engines: {node: '>=0.12.0'}
+ dev: false
+
+ /is-obj/1.0.1:
+ resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /is-obj/2.0.0:
+ resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /is-path-cwd/2.2.0:
+ resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /is-path-in-cwd/2.1.0:
+ resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ is-path-inside: 2.1.0
+ dev: false
+
+ /is-path-inside/2.1.0:
+ resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==}
+ engines: {node: '>=6'}
+ dependencies:
+ path-is-inside: 1.0.2
+ dev: false
+
+ /is-plain-obj/1.1.0:
+ resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /is-plain-object/2.0.4:
+ resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: false
+
+ /is-potential-custom-element-name/1.0.1:
+ resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+ dev: false
+
+ /is-regex/1.1.4:
+ resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
+ dev: false
+
+ /is-regexp/1.0.0:
+ resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /is-resolvable/1.1.0:
+ resolution: {integrity: sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==}
+ dev: false
+
+ /is-root/2.1.0:
+ resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /is-shared-array-buffer/1.0.3:
+ resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ dev: false
+
+ /is-stream/1.1.0:
+ resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /is-string/1.0.7:
+ resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.2
+ dev: false
+
+ /is-symbol/1.0.4:
+ resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-symbols: 1.0.3
+ dev: false
+
+ /is-typed-array/1.1.13:
+ resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ which-typed-array: 1.1.15
+ dev: false
+
+ /is-typedarray/1.0.0:
+ resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
+ dev: false
+
+ /is-weakref/1.0.2:
+ resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ dependencies:
+ call-bind: 1.0.7
+ dev: false
+
+ /is-what/3.14.1:
+ resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
+ dev: false
+
+ /is-windows/1.0.2:
+ resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /is-wsl/1.1.0:
+ resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /is-wsl/2.2.0:
+ resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
+ engines: {node: '>=8'}
+ dependencies:
+ is-docker: 2.2.1
+ dev: false
+
+ /isarray/1.0.0:
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
+ dev: false
+
+ /isarray/2.0.5:
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
+ dev: false
+
+ /isexe/2.0.0:
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+ dev: false
+
+ /isobject/2.1.0:
+ resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isarray: 1.0.0
+ dev: false
+
+ /isobject/3.0.1:
+ resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /isstream/0.1.2:
+ resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
+ dev: false
+
+ /istanbul-lib-coverage/2.0.5:
+ resolution: {integrity: sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /istanbul-lib-instrument/3.3.0:
+ resolution: {integrity: sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==}
+ engines: {node: '>=6'}
+ dependencies:
+ '@babel/generator': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ istanbul-lib-coverage: 2.0.5
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /istanbul-lib-report/2.0.8:
+ resolution: {integrity: sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ istanbul-lib-coverage: 2.0.5
+ make-dir: 2.1.0
+ supports-color: 6.1.0
+ dev: false
+
+ /istanbul-lib-source-maps/3.0.6:
+ resolution: {integrity: sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==}
+ engines: {node: '>=6'}
+ dependencies:
+ debug: 4.3.5
+ istanbul-lib-coverage: 2.0.5
+ make-dir: 2.1.0
+ rimraf: 2.7.1
+ source-map: 0.6.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /istanbul-reports/2.2.7:
+ resolution: {integrity: sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==}
+ engines: {node: '>=6'}
+ dependencies:
+ html-escaper: 2.0.2
+ dev: false
+
+ /jest-changed-files/24.9.0:
+ resolution: {integrity: sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ execa: 1.0.0
+ throat: 4.1.0
+ dev: false
+
+ /jest-cli/24.9.0:
+ resolution: {integrity: sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==}
+ engines: {node: '>= 6'}
+ hasBin: true
+ dependencies:
+ '@jest/core': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ exit: 0.1.2
+ import-local: 2.0.0
+ is-ci: 2.0.0
+ jest-config: 24.9.0
+ jest-util: 24.9.0
+ jest-validate: 24.9.0
+ prompts: 2.4.2
+ realpath-native: 1.1.0
+ yargs: 13.3.2
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /jest-config/24.9.0:
+ resolution: {integrity: sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@babel/core': 7.9.0
+ '@jest/test-sequencer': 24.9.0
+ '@jest/types': 24.9.0
+ babel-jest: 24.9.0_@babel+core@7.9.0
+ chalk: 2.4.2
+ glob: 7.2.3
+ jest-environment-jsdom: 24.9.0
+ jest-environment-node: 24.9.0
+ jest-get-type: 24.9.0
+ jest-jasmine2: 24.9.0
+ jest-regex-util: 24.9.0
+ jest-resolve: 24.9.0
+ jest-util: 24.9.0
+ jest-validate: 24.9.0
+ micromatch: 3.1.10
+ pretty-format: 24.9.0
+ realpath-native: 1.1.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /jest-diff/24.9.0:
+ resolution: {integrity: sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ chalk: 2.4.2
+ diff-sequences: 24.9.0
+ jest-get-type: 24.9.0
+ pretty-format: 24.9.0
+ dev: false
+
+ /jest-docblock/24.9.0:
+ resolution: {integrity: sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ detect-newline: 2.1.0
+ dev: false
+
+ /jest-each/24.9.0:
+ resolution: {integrity: sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ jest-get-type: 24.9.0
+ jest-util: 24.9.0
+ pretty-format: 24.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /jest-environment-jsdom-fourteen/1.0.1:
+ resolution: {integrity: sha512-DojMX1sY+at5Ep+O9yME34CdidZnO3/zfPh8UW+918C5fIZET5vCjfkegixmsi7AtdYfkr4bPlIzmWnlvQkP7Q==}
+ dependencies:
+ '@jest/environment': 24.9.0
+ '@jest/fake-timers': 24.9.0
+ '@jest/types': 24.9.0
+ jest-mock: 24.9.0
+ jest-util: 24.9.0
+ jsdom: 14.1.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /jest-environment-jsdom/24.9.0:
+ resolution: {integrity: sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/environment': 24.9.0
+ '@jest/fake-timers': 24.9.0
+ '@jest/types': 24.9.0
+ jest-mock: 24.9.0
+ jest-util: 24.9.0
+ jsdom: 11.12.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /jest-environment-node/24.9.0:
+ resolution: {integrity: sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/environment': 24.9.0
+ '@jest/fake-timers': 24.9.0
+ '@jest/types': 24.9.0
+ jest-mock: 24.9.0
+ jest-util: 24.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /jest-get-type/24.9.0:
+ resolution: {integrity: sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /jest-haste-map/24.9.0:
+ resolution: {integrity: sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ anymatch: 2.0.0
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
+ invariant: 2.2.4
+ jest-serializer: 24.9.0
+ jest-util: 24.9.0
+ jest-worker: 24.9.0
+ micromatch: 3.1.10
+ sane: 4.1.0
+ walker: 1.0.8
+ optionalDependencies:
+ fsevents: 1.2.13
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /jest-jasmine2/24.9.0:
+ resolution: {integrity: sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@jest/environment': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ co: 4.6.0
+ expect: 24.9.0
+ is-generator-fn: 2.1.0
+ jest-each: 24.9.0
+ jest-matcher-utils: 24.9.0
+ jest-message-util: 24.9.0
+ jest-runtime: 24.9.0
+ jest-snapshot: 24.9.0
+ jest-util: 24.9.0
+ pretty-format: 24.9.0
+ throat: 4.1.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /jest-leak-detector/24.9.0:
+ resolution: {integrity: sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ jest-get-type: 24.9.0
+ pretty-format: 24.9.0
+ dev: false
+
+ /jest-matcher-utils/24.9.0:
+ resolution: {integrity: sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ chalk: 2.4.2
+ jest-diff: 24.9.0
+ jest-get-type: 24.9.0
+ pretty-format: 24.9.0
+ dev: false
+
+ /jest-message-util/24.9.0:
+ resolution: {integrity: sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/stack-utils': 1.0.1
+ chalk: 2.4.2
+ micromatch: 3.1.10
+ slash: 2.0.0
+ stack-utils: 1.0.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /jest-mock/24.9.0:
+ resolution: {integrity: sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ dev: false
+
+ /jest-pnp-resolver/1.2.3_jest-resolve@24.9.0:
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
+ engines: {node: '>=6'}
+ peerDependencies:
+ jest-resolve: '*'
+ peerDependenciesMeta:
+ jest-resolve:
+ optional: true
+ dependencies:
+ jest-resolve: 24.9.0
+ dev: false
+
+ /jest-regex-util/24.9.0:
+ resolution: {integrity: sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /jest-resolve-dependencies/24.9.0:
+ resolution: {integrity: sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ jest-regex-util: 24.9.0
+ jest-snapshot: 24.9.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /jest-resolve/24.9.0:
+ resolution: {integrity: sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ browser-resolve: 1.11.3
+ chalk: 2.4.2
+ jest-pnp-resolver: 1.2.3_jest-resolve@24.9.0
+ realpath-native: 1.1.0
+ dev: false
+
+ /jest-runner/24.9.0:
+ resolution: {integrity: sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/environment': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ jest-config: 24.9.0
+ jest-docblock: 24.9.0
+ jest-haste-map: 24.9.0
+ jest-jasmine2: 24.9.0
+ jest-leak-detector: 24.9.0
+ jest-message-util: 24.9.0
+ jest-resolve: 24.9.0
+ jest-runtime: 24.9.0
+ jest-util: 24.9.0
+ jest-worker: 24.9.0
+ source-map-support: 0.5.21
+ throat: 4.1.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /jest-runtime/24.9.0:
+ resolution: {integrity: sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==}
+ engines: {node: '>= 6'}
+ hasBin: true
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/environment': 24.9.0
+ '@jest/source-map': 24.9.0
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/yargs': 13.0.12
+ chalk: 2.4.2
+ exit: 0.1.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ jest-config: 24.9.0
+ jest-haste-map: 24.9.0
+ jest-message-util: 24.9.0
+ jest-mock: 24.9.0
+ jest-regex-util: 24.9.0
+ jest-resolve: 24.9.0
+ jest-snapshot: 24.9.0
+ jest-util: 24.9.0
+ jest-validate: 24.9.0
+ realpath-native: 1.1.0
+ slash: 2.0.0
+ strip-bom: 3.0.0
+ yargs: 13.3.2
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /jest-serializer/24.9.0:
+ resolution: {integrity: sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /jest-snapshot/24.9.0:
+ resolution: {integrity: sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@babel/types': 7.24.7
+ '@jest/types': 24.9.0
+ chalk: 2.4.2
+ expect: 24.9.0
+ jest-diff: 24.9.0
+ jest-get-type: 24.9.0
+ jest-matcher-utils: 24.9.0
+ jest-message-util: 24.9.0
+ jest-resolve: 24.9.0
+ mkdirp: 0.5.6
+ natural-compare: 1.4.0
+ pretty-format: 24.9.0
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /jest-util/24.9.0:
+ resolution: {integrity: sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/fake-timers': 24.9.0
+ '@jest/source-map': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ callsites: 3.1.0
+ chalk: 2.4.2
+ graceful-fs: 4.2.11
+ is-ci: 2.0.0
+ mkdirp: 0.5.6
+ slash: 2.0.0
+ source-map: 0.6.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /jest-validate/24.9.0:
+ resolution: {integrity: sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ camelcase: 5.3.1
+ chalk: 2.4.2
+ jest-get-type: 24.9.0
+ leven: 3.1.0
+ pretty-format: 24.9.0
+ dev: false
+
+ /jest-watch-typeahead/0.4.2:
+ resolution: {integrity: sha512-f7VpLebTdaXs81rg/oj4Vg/ObZy2QtGzAmGLNsqUS5G5KtSN68tFcIsbvNODfNyQxU78g7D8x77o3bgfBTR+2Q==}
+ dependencies:
+ ansi-escapes: 4.3.2
+ chalk: 2.4.2
+ jest-regex-util: 24.9.0
+ jest-watcher: 24.9.0
+ slash: 3.0.0
+ string-length: 3.1.0
+ strip-ansi: 5.2.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /jest-watcher/24.9.0:
+ resolution: {integrity: sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/yargs': 13.0.12
+ ansi-escapes: 3.2.0
+ chalk: 2.4.2
+ jest-util: 24.9.0
+ string-length: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /jest-worker/24.9.0:
+ resolution: {integrity: sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==}
+ engines: {node: '>= 6'}
+ dependencies:
+ merge-stream: 2.0.0
+ supports-color: 6.1.0
+ dev: false
+
+ /jest-worker/25.5.0:
+ resolution: {integrity: sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==}
+ engines: {node: '>= 8.3'}
+ dependencies:
+ merge-stream: 2.0.0
+ supports-color: 7.2.0
+ dev: false
+
+ /jest/24.9.0:
+ resolution: {integrity: sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==}
+ engines: {node: '>= 6'}
+ hasBin: true
+ dependencies:
+ import-local: 2.0.0
+ jest-cli: 24.9.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /jiti/1.21.6:
+ resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
+ hasBin: true
+ dev: true
+
+ /jmespath/0.16.0:
+ resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==}
+ engines: {node: '>= 0.6.0'}
+ dev: false
+
+ /js-tokens/3.0.2:
+ resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==}
+ dev: false
+
+ /js-tokens/4.0.0:
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+
+ /js-yaml/3.14.1:
+ resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
+ hasBin: true
+ dependencies:
+ argparse: 1.0.10
+ esprima: 4.0.1
+ dev: false
+
+ /js-yaml/4.1.0:
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
+ hasBin: true
+ dependencies:
+ argparse: 2.0.1
+ dev: true
+
+ /jsbn/0.1.1:
+ resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
+ dev: false
+
+ /jsdom/11.12.0:
+ resolution: {integrity: sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==}
+ dependencies:
+ abab: 2.0.6
+ acorn: 5.7.4
+ acorn-globals: 4.3.4
+ array-equal: 1.0.2
+ cssom: 0.3.8
+ cssstyle: 1.4.0
+ data-urls: 1.1.0
+ domexception: 1.0.1
+ escodegen: 1.14.3
+ html-encoding-sniffer: 1.0.2
+ left-pad: 1.3.0
+ nwsapi: 2.2.10
+ parse5: 4.0.0
+ pn: 1.1.0
+ request: 2.88.2
+ request-promise-native: 1.0.9_request@2.88.2
+ sax: 1.4.1
+ symbol-tree: 3.2.4
+ tough-cookie: 2.5.0
+ w3c-hr-time: 1.0.2
+ webidl-conversions: 4.0.2
+ whatwg-encoding: 1.0.5
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 6.5.0
+ ws: 5.2.4
+ xml-name-validator: 3.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ dev: false
+
+ /jsdom/14.1.0:
+ resolution: {integrity: sha512-O901mfJSuTdwU2w3Sn+74T+RnDVP+FuV5fH8tcPWyqrseRAb0s5xOtPgCFiPOtLcyK7CLIJwPyD83ZqQWvA5ng==}
+ engines: {node: '>=8'}
+ dependencies:
+ abab: 2.0.6
+ acorn: 6.4.2
+ acorn-globals: 4.3.4
+ array-equal: 1.0.2
+ cssom: 0.3.8
+ cssstyle: 1.4.0
+ data-urls: 1.1.0
+ domexception: 1.0.1
+ escodegen: 1.14.3
+ html-encoding-sniffer: 1.0.2
+ nwsapi: 2.2.10
+ parse5: 5.1.0
+ pn: 1.1.0
+ request: 2.88.2
+ request-promise-native: 1.0.9_request@2.88.2
+ saxes: 3.1.11
+ symbol-tree: 3.2.4
+ tough-cookie: 2.5.0
+ w3c-hr-time: 1.0.2
+ w3c-xmlserializer: 1.1.2
+ webidl-conversions: 4.0.2
+ whatwg-encoding: 1.0.5
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 7.1.0
+ ws: 6.2.3
+ xml-name-validator: 3.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ dev: false
+
+ /jsdom/16.7.0:
+ resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ canvas: ^2.5.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+ dependencies:
+ abab: 2.0.6
+ acorn: 8.12.0
+ acorn-globals: 6.0.0
+ cssom: 0.4.4
+ cssstyle: 2.3.0
+ data-urls: 2.0.0
+ decimal.js: 10.4.3
+ domexception: 2.0.1
+ escodegen: 2.1.0
+ form-data: 3.0.1
+ html-encoding-sniffer: 2.0.1
+ http-proxy-agent: 4.0.1
+ https-proxy-agent: 5.0.1
+ is-potential-custom-element-name: 1.0.1
+ nwsapi: 2.2.10
+ parse5: 6.0.1
+ saxes: 5.0.1
+ symbol-tree: 3.2.4
+ tough-cookie: 4.1.4
+ w3c-hr-time: 1.0.2
+ w3c-xmlserializer: 2.0.0
+ webidl-conversions: 6.1.0
+ whatwg-encoding: 1.0.5
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 8.7.0
+ ws: 7.5.10
+ xml-name-validator: 3.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /jsesc/0.5.0:
+ resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
+ hasBin: true
+ dev: false
+
+ /jsesc/2.5.2:
+ resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: false
+
+ /json-parse-better-errors/1.0.2:
+ resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
+ dev: false
+
+ /json-parse-even-better-errors/2.3.1:
+ resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
+
+ /json-schema-traverse/0.4.1:
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+ dev: false
+
+ /json-schema/0.4.0:
+ resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
+ dev: false
+
+ /json-stable-stringify-without-jsonify/1.0.1:
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+ dev: false
+
+ /json-stable-stringify/1.1.1:
+ resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ isarray: 2.0.5
+ jsonify: 0.0.1
+ object-keys: 1.1.1
+ dev: false
+
+ /json-stringify-safe/5.0.1:
+ resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
+ dev: false
+
+ /json3/3.3.3:
+ resolution: {integrity: sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==}
+ dev: false
+
+ /json5/1.0.2:
+ resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
+ hasBin: true
+ dependencies:
+ minimist: 1.2.8
+ dev: false
+
+ /json5/2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dev: false
+
+ /jsonfile/4.0.0:
+ resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
+ optionalDependencies:
+ graceful-fs: 4.2.11
+ dev: false
+
+ /jsonify/0.0.1:
+ resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==}
+ dev: false
+
+ /jsprim/1.4.2:
+ resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==}
+ engines: {node: '>=0.6.0'}
+ dependencies:
+ assert-plus: 1.0.0
+ extsprintf: 1.3.0
+ json-schema: 0.4.0
+ verror: 1.10.0
+ dev: false
+
+ /jsqr/1.4.0:
+ resolution: {integrity: sha512-dxLob7q65Xg2DvstYkRpkYtmKm2sPJ9oFhrhmudT1dZvNFFTlroai3AWSpLey/w5vMcLBXRgOJsbXpdN9HzU/A==}
+ dev: false
+
+ /jsx-ast-utils/2.4.1:
+ resolution: {integrity: sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==}
+ engines: {node: '>=4.0'}
+ dependencies:
+ array-includes: 3.1.8
+ object.assign: 4.1.5
+ dev: false
+
+ /killable/1.0.1:
+ resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==}
+ dev: false
+
+ /kind-of/2.0.1:
+ resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: false
+
+ /kind-of/3.2.2:
+ resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: false
+
+ /kind-of/4.0.0:
+ resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: false
+
+ /kind-of/6.0.3:
+ resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /kleur/3.0.3:
+ resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /last-call-webpack-plugin/3.0.0:
+ resolution: {integrity: sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==}
+ dependencies:
+ lodash: 4.17.21
+ webpack-sources: 1.4.3
+ dev: false
+
+ /lazy-cache/0.2.7:
+ resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /lazy-cache/1.0.4:
+ resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /lcid/2.0.0:
+ resolution: {integrity: sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==}
+ engines: {node: '>=6'}
+ dependencies:
+ invert-kv: 2.0.0
+ dev: false
+
+ /left-pad/1.3.0:
+ resolution: {integrity: sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==}
+ deprecated: use String.prototype.padStart()
+ dev: false
+
+ /leven/3.1.0:
+ resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /levenary/1.1.1:
+ resolution: {integrity: sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ leven: 3.1.0
+ dev: false
+
+ /levn/0.3.0:
+ resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ prelude-ls: 1.1.2
+ type-check: 0.3.2
+ dev: false
+
+ /lines-and-columns/1.2.4:
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+
+ /load-json-file/2.0.0:
+ resolution: {integrity: sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ graceful-fs: 4.2.11
+ parse-json: 2.2.0
+ pify: 2.3.0
+ strip-bom: 3.0.0
+ dev: false
+
+ /load-json-file/4.0.0:
+ resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
+ engines: {node: '>=4'}
+ dependencies:
+ graceful-fs: 4.2.11
+ parse-json: 4.0.0
+ pify: 3.0.0
+ strip-bom: 3.0.0
+ dev: false
+
+ /loader-fs-cache/1.0.3:
+ resolution: {integrity: sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA==}
+ dependencies:
+ find-cache-dir: 0.1.1
+ mkdirp: 0.5.6
+ dev: false
+
+ /loader-runner/2.4.0:
+ resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==}
+ engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
+ dev: false
+
+ /loader-utils/1.2.3:
+ resolution: {integrity: sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 2.1.0
+ json5: 1.0.2
+ dev: false
+
+ /loader-utils/1.4.2:
+ resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 3.0.0
+ json5: 1.0.2
+ dev: false
+
+ /loader-utils/2.0.4:
+ resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
+ engines: {node: '>=8.9.0'}
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 3.0.0
+ json5: 2.2.3
+ dev: false
+
+ /locate-path/2.0.0:
+ resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
+ engines: {node: '>=4'}
+ dependencies:
+ p-locate: 2.0.0
+ path-exists: 3.0.0
+ dev: false
+
+ /locate-path/3.0.0:
+ resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-locate: 3.0.0
+ path-exists: 3.0.0
+ dev: false
+
+ /locate-path/5.0.0:
+ resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
+ engines: {node: '>=8'}
+ dependencies:
+ p-locate: 4.1.0
+ dev: false
+
+ /lodash-es/4.17.21:
+ resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
+ dev: false
+
+ /lodash._reinterpolate/3.0.0:
+ resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==}
+ dev: false
+
+ /lodash.debounce/4.0.8:
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
+ dev: false
+
+ /lodash.memoize/4.1.2:
+ resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
+ dev: false
+
+ /lodash.mergewith/4.6.2:
+ resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
+ dev: false
+
+ /lodash.sortby/4.7.0:
+ resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
+ dev: false
+
+ /lodash.template/4.5.0:
+ resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==}
+ dependencies:
+ lodash._reinterpolate: 3.0.0
+ lodash.templatesettings: 4.2.0
+ dev: false
+
+ /lodash.templatesettings/4.2.0:
+ resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==}
+ dependencies:
+ lodash._reinterpolate: 3.0.0
+ dev: false
+
+ /lodash.throttle/4.1.1:
+ resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
+ dev: false
+
+ /lodash.uniq/4.5.0:
+ resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
+ dev: false
+
+ /lodash/4.17.21:
+ resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
+ dev: false
+
+ /loglevel/1.9.1:
+ resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==}
+ engines: {node: '>= 0.6.0'}
+ dev: false
+
+ /loose-envify/1.4.0:
+ resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
+ hasBin: true
+ dependencies:
+ js-tokens: 4.0.0
+ dev: false
+
+ /lower-case/2.0.2:
+ resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
+ dependencies:
+ tslib: 2.6.3
+ dev: false
+
+ /lru-cache/5.1.1:
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+ dependencies:
+ yallist: 3.1.1
+ dev: false
+
+ /make-dir/2.1.0:
+ resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
+ engines: {node: '>=6'}
+ dependencies:
+ pify: 4.0.1
+ semver: 5.7.2
+ dev: false
+
+ /make-dir/3.1.0:
+ resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
+ engines: {node: '>=8'}
+ dependencies:
+ semver: 6.3.1
+ dev: false
+
+ /makeerror/1.0.12:
+ resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
+ dependencies:
+ tmpl: 1.0.5
+ dev: false
+
+ /mamacro/0.0.3:
+ resolution: {integrity: sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==}
+ dev: false
+
+ /map-age-cleaner/0.1.3:
+ resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-defer: 1.0.0
+ dev: false
+
+ /map-cache/0.2.2:
+ resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /map-visit/1.0.0:
+ resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ object-visit: 1.0.1
+ dev: false
+
+ /marked/4.0.12:
+ resolution: {integrity: sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==}
+ engines: {node: '>= 12'}
+ hasBin: true
+ dev: false
+
+ /material-colors/1.2.6:
+ resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==}
+ dev: false
+
+ /math-expression-evaluator/1.4.0:
+ resolution: {integrity: sha512-4vRUvPyxdO8cWULGTh9dZWL2tZK6LDBvj+OGHBER7poH9Qdt7kXEoj20wiz4lQUbUXQZFjPbe5mVDo9nutizCw==}
+ dev: false
+
+ /md5.js/1.3.5:
+ resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
+ dependencies:
+ hash-base: 3.1.0
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: false
+
+ /mdn-data/2.0.14:
+ resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
+ dev: false
+
+ /mdn-data/2.0.4:
+ resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==}
+ dev: false
+
+ /media-typer/0.3.0:
+ resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /mem/4.3.0:
+ resolution: {integrity: sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==}
+ engines: {node: '>=6'}
+ dependencies:
+ map-age-cleaner: 0.1.3
+ mimic-fn: 2.1.0
+ p-is-promise: 2.1.0
+ dev: false
+
+ /memoize-one/5.2.1:
+ resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==}
+ dev: false
+
+ /memory-fs/0.4.1:
+ resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==}
+ dependencies:
+ errno: 0.1.8
+ readable-stream: 2.3.8
+ dev: false
+
+ /memory-fs/0.5.0:
+ resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==}
+ engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
+ dependencies:
+ errno: 0.1.8
+ readable-stream: 2.3.8
+ dev: false
+
+ /merge-anything/2.4.4:
+ resolution: {integrity: sha512-l5XlriUDJKQT12bH+rVhAHjwIuXWdAIecGwsYjv2LJo+dA1AeRTmeQS+3QBpO6lEthBMDi2IUMpLC1yyRvGlwQ==}
+ dependencies:
+ is-what: 3.14.1
+ dev: false
+
+ /merge-deep/3.0.3:
+ resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-union: 3.1.0
+ clone-deep: 0.2.4
+ kind-of: 3.2.2
+ dev: false
+
+ /merge-descriptors/1.0.1:
+ resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ dev: false
+
+ /merge-stream/2.0.0:
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+ dev: false
+
+ /merge2/1.4.1:
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
+ dev: false
+
+ /methods/1.1.2:
+ resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /microevent.ts/0.1.1:
+ resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==}
+ dev: false
+
+ /micromatch/3.1.10:
+ resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ braces: 2.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ extglob: 2.0.4
+ fragment-cache: 0.2.1
+ kind-of: 6.0.3
+ nanomatch: 1.2.13
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /micromatch/3.1.10_supports-color@6.1.0:
+ resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ braces: 2.3.2_supports-color@6.1.0
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ extglob: 2.0.4_supports-color@6.1.0
+ fragment-cache: 0.2.1
+ kind-of: 6.0.3
+ nanomatch: 1.2.13_supports-color@6.1.0
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2_supports-color@6.1.0
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /miller-rabin/4.0.1:
+ resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==}
+ hasBin: true
+ dependencies:
+ bn.js: 4.12.0
+ brorand: 1.1.0
+ dev: false
+
+ /mime-db/1.52.0:
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /mime-types/2.1.35:
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ mime-db: 1.52.0
+ dev: false
+
+ /mime/1.6.0:
+ resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: false
+
+ /mime/2.6.0:
+ resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
+ engines: {node: '>=4.0.0'}
+ hasBin: true
+ dev: false
+
+ /mimic-fn/2.1.0:
+ resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /mini-css-extract-plugin/0.9.0_webpack@4.42.0:
+ resolution: {integrity: sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==}
+ engines: {node: '>= 6.9.0'}
+ peerDependencies:
+ webpack: ^4.4.0
+ dependencies:
+ loader-utils: 1.4.2
+ normalize-url: 1.9.1
+ schema-utils: 1.0.0
+ webpack: 4.42.0
+ webpack-sources: 1.4.3
+ dev: false
+
+ /minimalistic-assert/1.0.1:
+ resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
+ dev: false
+
+ /minimalistic-crypto-utils/1.0.1:
+ resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==}
+ dev: false
+
+ /minimatch/3.0.4:
+ resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
+ dependencies:
+ brace-expansion: 1.1.11
+ dev: false
+
+ /minimatch/3.1.2:
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ dependencies:
+ brace-expansion: 1.1.11
+ dev: false
+
+ /minimist/1.2.8:
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+ dev: false
+
+ /minipass-collect/1.0.2:
+ resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+
+ /minipass-flush/1.0.5:
+ resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+
+ /minipass-pipeline/1.2.4:
+ resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
+ engines: {node: '>=8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+
+ /minipass/3.3.6:
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
+ engines: {node: '>=8'}
+ dependencies:
+ yallist: 4.0.0
+ dev: false
+
+ /mississippi/3.0.0:
+ resolution: {integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ concat-stream: 1.6.2
+ duplexify: 3.7.1
+ end-of-stream: 1.4.4
+ flush-write-stream: 1.1.1
+ from2: 2.3.0
+ parallel-transform: 1.2.0
+ pump: 3.0.0
+ pumpify: 1.5.1
+ stream-each: 1.2.3
+ through2: 2.0.5
+ dev: false
+
+ /mixin-deep/1.3.2:
+ resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-in: 1.0.2
+ is-extendable: 1.0.1
+ dev: false
+
+ /mixin-object/2.0.1:
+ resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-in: 0.1.8
+ is-extendable: 0.1.1
+ dev: false
+
+ /mkdirp/0.5.6:
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
+ hasBin: true
+ dependencies:
+ minimist: 1.2.8
+ dev: false
+
+ /moment/2.30.1:
+ resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
+ dev: false
+
+ /move-concurrently/1.0.1:
+ resolution: {integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==}
+ deprecated: This package is no longer supported.
+ dependencies:
+ aproba: 1.2.0
+ copy-concurrently: 1.0.5
+ fs-write-stream-atomic: 1.0.10
+ mkdirp: 0.5.6
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+ dev: false
+
+ /ms/2.0.0:
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
+ dev: false
+
+ /ms/2.1.2:
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
+ dev: false
+
+ /ms/2.1.3:
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+ dev: false
+
+ /multicast-dns-service-types/1.1.0:
+ resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==}
+ dev: false
+
+ /multicast-dns/6.2.3:
+ resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==}
+ hasBin: true
+ dependencies:
+ dns-packet: 1.3.4
+ thunky: 1.1.0
+ dev: false
+
+ /mute-stream/0.0.8:
+ resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
+ dev: false
+
+ /nan/2.20.0:
+ resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /nanoid/3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+ dev: true
+
+ /nanomatch/1.2.13:
+ resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ fragment-cache: 0.2.1
+ is-windows: 1.0.2
+ kind-of: 6.0.3
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /nanomatch/1.2.13_supports-color@6.1.0:
+ resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ fragment-cache: 0.2.1
+ is-windows: 1.0.2
+ kind-of: 6.0.3
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2_supports-color@6.1.0
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /natural-compare/1.4.0:
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ dev: false
+
+ /negotiator/0.6.3:
+ resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /neo-async/2.6.2:
+ resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
+ dev: false
+
+ /next-tick/1.1.0:
+ resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
+ dev: false
+
+ /nice-try/1.0.5:
+ resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
+ dev: false
+
+ /no-case/3.0.4:
+ resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
+ dependencies:
+ lower-case: 2.0.2
+ tslib: 2.6.3
+ dev: false
+
+ /node-forge/0.10.0:
+ resolution: {integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==}
+ engines: {node: '>= 6.0.0'}
+ dev: false
+
+ /node-int64/0.4.0:
+ resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
+ dev: false
+
+ /node-libs-browser/2.2.1:
+ resolution: {integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==}
+ dependencies:
+ assert: 1.5.1
+ browserify-zlib: 0.2.0
+ buffer: 4.9.2
+ console-browserify: 1.2.0
+ constants-browserify: 1.0.0
+ crypto-browserify: 3.12.0
+ domain-browser: 1.2.0
+ events: 3.3.0
+ https-browserify: 1.0.0
+ os-browserify: 0.3.0
+ path-browserify: 0.0.1
+ process: 0.11.10
+ punycode: 1.4.1
+ querystring-es3: 0.2.1
+ readable-stream: 2.3.8
+ stream-browserify: 2.0.2
+ stream-http: 2.8.3
+ string_decoder: 1.3.0
+ timers-browserify: 2.0.12
+ tty-browserify: 0.0.0
+ url: 0.11.3
+ util: 0.11.1
+ vm-browserify: 1.1.2
+ dev: false
+
+ /node-notifier/5.4.5:
+ resolution: {integrity: sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ==}
+ dependencies:
+ growly: 1.3.0
+ is-wsl: 1.1.0
+ semver: 5.7.2
+ shellwords: 0.1.1
+ which: 1.3.1
+ dev: false
+
+ /node-releases/1.1.77:
+ resolution: {integrity: sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==}
+ dev: false
+
+ /node-releases/2.0.14:
+ resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+ dev: false
+
+ /normalize-package-data/2.5.0:
+ resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
+ dependencies:
+ hosted-git-info: 2.8.9
+ resolve: 1.15.0
+ semver: 5.7.2
+ validate-npm-package-license: 3.0.4
+ dev: false
+
+ /normalize-path/2.1.1:
+ resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ remove-trailing-separator: 1.1.0
+ dev: false
+
+ /normalize-path/3.0.0:
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /normalize-range/0.1.2:
+ resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /normalize-url/1.9.1:
+ resolution: {integrity: sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ object-assign: 4.1.1
+ prepend-http: 1.0.4
+ query-string: 4.3.4
+ sort-keys: 1.1.2
+ dev: false
+
+ /normalize-url/3.3.0:
+ resolution: {integrity: sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /npm-run-path/2.0.2:
+ resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
+ engines: {node: '>=4'}
+ dependencies:
+ path-key: 2.0.1
+ dev: false
+
+ /nth-check/1.0.2:
+ resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==}
+ dependencies:
+ boolbase: 1.0.0
+ dev: false
+
+ /nth-check/2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+ dependencies:
+ boolbase: 1.0.0
+ dev: false
+
+ /num2fraction/1.2.2:
+ resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==}
+ dev: false
+
+ /number-is-nan/1.0.1:
+ resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /nwsapi/2.2.10:
+ resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==}
+ dev: false
+
+ /oauth-sign/0.9.0:
+ resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
+ dev: false
+
+ /object-assign/2.1.1:
+ resolution: {integrity: sha512-CdsOUYIh5wIiozhJ3rLQgmUTgcyzFwZZrqhkKhODMoGtPKM+wt0h0CNIoauJWMsS9822EdzPsF/6mb4nLvPN5g==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /object-assign/4.1.1:
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /object-copy/0.1.0:
+ resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ copy-descriptor: 0.1.1
+ define-property: 0.2.5
+ kind-of: 3.2.2
+ dev: false
+
+ /object-hash/2.2.0:
+ resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /object-inspect/1.13.1:
+ resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ dev: false
+
+ /object-is/1.1.6:
+ resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ dev: false
+
+ /object-keys/1.1.1:
+ resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+ engines: {node: '>= 0.4'}
+ dev: false
+
+ /object-path/0.11.4:
+ resolution: {integrity: sha512-ICbQN+aw/eAASDtaC7+SJXSAruz7fvvNjxMFfS3mTdvZaaiuuw81XXYu+9CSJeUVrS3YpRhTr862YGywMQUOWg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /object-visit/1.0.1:
+ resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: false
+
+ /object.assign/4.1.5:
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ has-symbols: 1.0.3
+ object-keys: 1.1.1
+ dev: false
+
+ /object.entries/1.1.8:
+ resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
+ dev: false
+
+ /object.fromentries/2.0.8:
+ resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ dev: false
+
+ /object.getownpropertydescriptors/2.1.8:
+ resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ array.prototype.reduce: 1.0.7
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ gopd: 1.0.1
+ safe-array-concat: 1.1.2
+ dev: false
+
+ /object.pick/1.3.0:
+ resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: false
+
+ /object.values/1.2.0:
+ resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
+ dev: false
+
+ /obuf/1.1.2:
+ resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
+ dev: false
+
+ /on-finished/2.4.1:
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ ee-first: 1.1.1
+ dev: false
+
+ /on-headers/1.0.2:
+ resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /once/1.4.0:
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+ dependencies:
+ wrappy: 1.0.2
+ dev: false
+
+ /onetime/5.1.2:
+ resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
+ engines: {node: '>=6'}
+ dependencies:
+ mimic-fn: 2.1.0
+ dev: false
+
+ /open/7.4.2:
+ resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
+ engines: {node: '>=8'}
+ dependencies:
+ is-docker: 2.2.1
+ is-wsl: 2.2.0
+ dev: false
+
+ /opn/5.5.0:
+ resolution: {integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==}
+ engines: {node: '>=4'}
+ dependencies:
+ is-wsl: 1.1.0
+ dev: false
+
+ /optimize-css-assets-webpack-plugin/5.0.3_webpack@4.42.0:
+ resolution: {integrity: sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA==}
+ peerDependencies:
+ webpack: ^4.0.0
+ dependencies:
+ cssnano: 4.1.11
+ last-call-webpack-plugin: 3.0.0
+ webpack: 4.42.0
+ dev: false
+
+ /optionator/0.8.3:
+ resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ deep-is: 0.1.4
+ fast-levenshtein: 2.0.6
+ levn: 0.3.0
+ prelude-ls: 1.1.2
+ type-check: 0.3.2
+ word-wrap: 1.2.5
+ dev: false
+
+ /os-browserify/0.3.0:
+ resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==}
+ dev: false
+
+ /os-locale/3.1.0:
+ resolution: {integrity: sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==}
+ engines: {node: '>=6'}
+ dependencies:
+ execa: 1.0.0
+ lcid: 2.0.0
+ mem: 4.3.0
+ dev: false
+
+ /os-tmpdir/1.0.2:
+ resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /p-defer/1.0.0:
+ resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /p-each-series/1.0.0:
+ resolution: {integrity: sha512-J/e9xiZZQNrt+958FFzJ+auItsBGq+UrQ7nE89AUP7UOTtjHnkISANXLdayhVzh538UnLMCSlf13lFfRIAKQOA==}
+ engines: {node: '>=4'}
+ dependencies:
+ p-reduce: 1.0.0
+ dev: false
+
+ /p-finally/1.0.0:
+ resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /p-is-promise/2.1.0:
+ resolution: {integrity: sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /p-limit/1.3.0:
+ resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
+ engines: {node: '>=4'}
+ dependencies:
+ p-try: 1.0.0
+ dev: false
+
+ /p-limit/2.3.0:
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-try: 2.2.0
+ dev: false
+
+ /p-locate/2.0.0:
+ resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==}
+ engines: {node: '>=4'}
+ dependencies:
+ p-limit: 1.3.0
+ dev: false
+
+ /p-locate/3.0.0:
+ resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-limit: 2.3.0
+ dev: false
+
+ /p-locate/4.1.0:
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+ engines: {node: '>=8'}
+ dependencies:
+ p-limit: 2.3.0
+ dev: false
+
+ /p-map/2.1.0:
+ resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /p-map/3.0.0:
+ resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ aggregate-error: 3.1.0
+ dev: false
+
+ /p-reduce/1.0.0:
+ resolution: {integrity: sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /p-retry/3.0.1:
+ resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==}
+ engines: {node: '>=6'}
+ dependencies:
+ retry: 0.12.0
+ dev: false
+
+ /p-try/1.0.0:
+ resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /p-try/2.2.0:
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /pako/1.0.11:
+ resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
+ dev: false
+
+ /parallel-transform/1.2.0:
+ resolution: {integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==}
+ dependencies:
+ cyclist: 1.0.2
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ dev: false
+
+ /param-case/3.0.4:
+ resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
+ dependencies:
+ dot-case: 3.0.4
+ tslib: 2.6.3
+ dev: false
+
+ /parent-module/1.0.1:
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+ engines: {node: '>=6'}
+ dependencies:
+ callsites: 3.1.0
+
+ /parse-asn1/5.1.7:
+ resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ asn1.js: 4.10.1
+ browserify-aes: 1.2.0
+ evp_bytestokey: 1.0.3
+ hash-base: 3.0.4
+ pbkdf2: 3.1.2
+ safe-buffer: 5.2.1
+ dev: false
+
+ /parse-json/2.2.0:
+ resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ error-ex: 1.3.2
+ dev: false
+
+ /parse-json/4.0.0:
+ resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
+ engines: {node: '>=4'}
+ dependencies:
+ error-ex: 1.3.2
+ json-parse-better-errors: 1.0.2
+ dev: false
+
+ /parse-json/5.2.0:
+ resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ error-ex: 1.3.2
+ json-parse-even-better-errors: 2.3.1
+ lines-and-columns: 1.2.4
+
+ /parse5/4.0.0:
+ resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==}
+ dev: false
+
+ /parse5/5.1.0:
+ resolution: {integrity: sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==}
+ dev: false
+
+ /parse5/6.0.1:
+ resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
+ dev: false
+
+ /parseurl/1.3.3:
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /pascal-case/3.1.2:
+ resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
+ dependencies:
+ no-case: 3.0.4
+ tslib: 2.6.3
+ dev: false
+
+ /pascalcase/0.1.1:
+ resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /path-browserify/0.0.1:
+ resolution: {integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==}
+ dev: false
+
+ /path-dirname/1.0.2:
+ resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==}
+ dev: false
+
+ /path-exists/2.1.0:
+ resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ pinkie-promise: 2.0.1
+ dev: false
+
+ /path-exists/3.0.0:
+ resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /path-exists/4.0.0:
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /path-is-absolute/1.0.1:
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /path-is-inside/1.0.2:
+ resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
+ dev: false
+
+ /path-key/2.0.1:
+ resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /path-key/3.1.1:
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /path-parse/1.0.7:
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+ dev: false
+
+ /path-to-regexp/0.1.7:
+ resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
+ dev: false
+
+ /path-type/2.0.0:
+ resolution: {integrity: sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ pify: 2.3.0
+ dev: false
+
+ /path-type/3.0.0:
+ resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
+ engines: {node: '>=4'}
+ dependencies:
+ pify: 3.0.0
+ dev: false
+
+ /path-type/4.0.0:
+ resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /pbkdf2/3.1.2:
+ resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
+ engines: {node: '>=0.12'}
+ dependencies:
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.1
+ sha.js: 2.4.11
+ dev: false
+
+ /performance-now/2.1.0:
+ resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
+ dev: false
+
+ /picocolors/0.2.1:
+ resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
+ dev: false
+
+ /picocolors/1.0.1:
+ resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+
+ /picomatch/2.3.1:
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+ engines: {node: '>=8.6'}
+ dev: false
+
+ /pify/2.3.0:
+ resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /pify/3.0.0:
+ resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /pify/4.0.1:
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /pinkie-promise/2.0.1:
+ resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ pinkie: 2.0.4
+ dev: false
+
+ /pinkie/2.0.4:
+ resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /pirates/4.0.6:
+ resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /pkg-dir/1.0.0:
+ resolution: {integrity: sha512-c6pv3OE78mcZ92ckebVDqg0aWSoKhOTbwCV6qbCWMk546mAL9pZln0+QsN/yQ7fkucd4+yJPLrCBXNt8Ruk+Eg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ find-up: 1.1.2
+ dev: false
+
+ /pkg-dir/3.0.0:
+ resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
+ engines: {node: '>=6'}
+ dependencies:
+ find-up: 3.0.0
+ dev: false
+
+ /pkg-dir/4.2.0:
+ resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ find-up: 4.1.0
+ dev: false
+
+ /pkg-up/3.1.0:
+ resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
+ engines: {node: '>=8'}
+ dependencies:
+ find-up: 3.0.0
+ dev: false
+
+ /pn/1.1.0:
+ resolution: {integrity: sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==}
+ dev: false
+
+ /pnp-webpack-plugin/1.6.4_typescript@3.9.10:
+ resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==}
+ engines: {node: '>=6'}
+ dependencies:
+ ts-pnp: 1.1.6_typescript@3.9.10
+ transitivePeerDependencies:
+ - typescript
+ dev: false
+
+ /popmotion/9.3.6:
+ resolution: {integrity: sha512-ZTbXiu6zIggXzIliMi8LGxXBF5ST+wkpXGEjeTUDUOCdSQ356hij/xjeUdv0F8zCQNeqB1+PR5/BB+gC+QLAPw==}
+ dependencies:
+ framesync: 5.3.0
+ hey-listen: 1.0.8
+ style-value-types: 4.1.4
+ tslib: 2.6.3
+ dev: false
+
+ /portfinder/1.0.32_supports-color@6.1.0:
+ resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
+ engines: {node: '>= 0.12.0'}
+ dependencies:
+ async: 2.6.4
+ debug: 3.2.7_supports-color@6.1.0
+ mkdirp: 0.5.6
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /posix-character-classes/0.1.1:
+ resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /possible-typed-array-names/1.0.0:
+ resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
+ engines: {node: '>= 0.4'}
+ dev: false
+
+ /postcss-attribute-case-insensitive/4.0.2:
+ resolution: {integrity: sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 6.1.0
+ dev: false
+
+ /postcss-browser-comments/3.0.0_browserslist@4.23.1:
+ resolution: {integrity: sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==}
+ engines: {node: '>=8.0.0'}
+ peerDependencies:
+ browserslist: ^4
+ dependencies:
+ browserslist: 4.23.1
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-calc/7.0.5:
+ resolution: {integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 6.1.0
+ postcss-value-parser: 4.2.0
+ dev: false
+
+ /postcss-color-functional-notation/2.0.1:
+ resolution: {integrity: sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: false
+
+ /postcss-color-gray/5.0.0:
+ resolution: {integrity: sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: false
+
+ /postcss-color-hex-alpha/5.0.3:
+ resolution: {integrity: sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: false
+
+ /postcss-color-mod-function/3.0.3:
+ resolution: {integrity: sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: false
+
+ /postcss-color-rebeccapurple/4.0.1:
+ resolution: {integrity: sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: false
+
+ /postcss-colormin/4.0.3:
+ resolution: {integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ browserslist: 4.23.1
+ color: 3.2.1
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-convert-values/4.0.1:
+ resolution: {integrity: sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-custom-media/7.0.8:
+ resolution: {integrity: sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-custom-properties/8.0.11:
+ resolution: {integrity: sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: false
+
+ /postcss-custom-selectors/5.1.2:
+ resolution: {integrity: sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: false
+
+ /postcss-dir-pseudo-class/5.0.0:
+ resolution: {integrity: sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: false
+
+ /postcss-discard-comments/4.0.2:
+ resolution: {integrity: sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-discard-duplicates/4.0.2:
+ resolution: {integrity: sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-discard-empty/4.0.1:
+ resolution: {integrity: sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-discard-overridden/4.0.1:
+ resolution: {integrity: sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-double-position-gradients/1.0.0:
+ resolution: {integrity: sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: false
+
+ /postcss-env-function/2.0.2:
+ resolution: {integrity: sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: false
+
+ /postcss-flexbugs-fixes/4.1.0:
+ resolution: {integrity: sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA==}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-focus-visible/4.0.0:
+ resolution: {integrity: sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-focus-within/3.0.0:
+ resolution: {integrity: sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-font-variant/4.0.1:
+ resolution: {integrity: sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-gap-properties/2.0.0:
+ resolution: {integrity: sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-image-set-function/3.0.1:
+ resolution: {integrity: sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: false
+
+ /postcss-initial/3.0.4:
+ resolution: {integrity: sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-lab-function/2.0.1:
+ resolution: {integrity: sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: false
+
+ /postcss-load-config/2.1.2:
+ resolution: {integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==}
+ engines: {node: '>= 4'}
+ dependencies:
+ cosmiconfig: 5.2.1
+ import-cwd: 2.1.0
+ dev: false
+
+ /postcss-loader/3.0.0:
+ resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ loader-utils: 1.4.2
+ postcss: 7.0.39
+ postcss-load-config: 2.1.2
+ schema-utils: 1.0.0
+ dev: false
+
+ /postcss-loader/8.1.1_typescript@3.9.10:
+ resolution: {integrity: sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ '@rspack/core': 0.x || 1.x
+ postcss: ^7.0.0 || ^8.0.1
+ webpack: ^5.0.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
+ dependencies:
+ cosmiconfig: 9.0.0_typescript@3.9.10
+ jiti: 1.21.6
+ semver: 7.6.2
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
+ /postcss-logical/3.0.0:
+ resolution: {integrity: sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-media-minmax/4.0.0:
+ resolution: {integrity: sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-merge-longhand/4.0.11:
+ resolution: {integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ css-color-names: 0.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ stylehacks: 4.0.3
+ dev: false
+
+ /postcss-merge-rules/4.0.3:
+ resolution: {integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ browserslist: 4.23.1
+ caniuse-api: 3.0.0
+ cssnano-util-same-parent: 4.0.1
+ postcss: 7.0.39
+ postcss-selector-parser: 3.1.2
+ vendors: 1.0.4
+ dev: false
+
+ /postcss-minify-font-values/4.0.2:
+ resolution: {integrity: sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-minify-gradients/4.0.2:
+ resolution: {integrity: sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ is-color-stop: 1.1.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-minify-params/4.0.2:
+ resolution: {integrity: sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ alphanum-sort: 1.0.2
+ browserslist: 4.23.1
+ cssnano-util-get-arguments: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ uniqs: 2.0.0
+ dev: false
+
+ /postcss-minify-selectors/4.0.2:
+ resolution: {integrity: sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ alphanum-sort: 1.0.2
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-selector-parser: 3.1.2
+ dev: false
+
+ /postcss-modules-extract-imports/2.0.0:
+ resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-modules-extract-imports/3.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
+ /postcss-modules-local-by-default/3.0.3:
+ resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==}
+ engines: {node: '>= 6'}
+ dependencies:
+ icss-utils: 4.1.1
+ postcss: 7.0.39
+ postcss-selector-parser: 6.1.0
+ postcss-value-parser: 4.2.0
+ dev: false
+
+ /postcss-modules-local-by-default/4.0.5_postcss@8.4.38:
+ resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ icss-utils: 5.1.0_postcss@8.4.38
+ postcss: 8.4.38
+ postcss-selector-parser: 6.1.0
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-modules-scope/2.2.0:
+ resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==}
+ engines: {node: '>= 6'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 6.1.0
+ dev: false
+
+ /postcss-modules-scope/3.2.0_postcss@8.4.38:
+ resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ postcss: 8.4.38
+ postcss-selector-parser: 6.1.0
+ dev: true
+
+ /postcss-modules-values/3.0.0:
+ resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==}
+ dependencies:
+ icss-utils: 4.1.1
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-modules-values/4.0.0_postcss@8.4.38:
+ resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ icss-utils: 5.1.0_postcss@8.4.38
+ postcss: 8.4.38
+ dev: true
+
+ /postcss-nesting/7.0.1:
+ resolution: {integrity: sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-normalize-charset/4.0.1:
+ resolution: {integrity: sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-normalize-display-values/4.0.2:
+ resolution: {integrity: sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-normalize-positions/4.0.2:
+ resolution: {integrity: sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-normalize-repeat-style/4.0.2:
+ resolution: {integrity: sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-normalize-string/4.0.2:
+ resolution: {integrity: sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-normalize-timing-functions/4.0.2:
+ resolution: {integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-normalize-unicode/4.0.1:
+ resolution: {integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ browserslist: 4.23.1
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-normalize-url/4.0.1:
+ resolution: {integrity: sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ is-absolute-url: 2.1.0
+ normalize-url: 3.3.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-normalize-whitespace/4.0.2:
+ resolution: {integrity: sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-normalize/8.0.1:
+ resolution: {integrity: sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ '@csstools/normalize.css': 10.1.0
+ browserslist: 4.23.1
+ postcss: 7.0.39
+ postcss-browser-comments: 3.0.0_browserslist@4.23.1
+ sanitize.css: 10.0.0
+ dev: false
+
+ /postcss-ordered-values/4.1.2:
+ resolution: {integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-overflow-shorthand/2.0.0:
+ resolution: {integrity: sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-page-break/2.0.0:
+ resolution: {integrity: sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-place/4.0.1:
+ resolution: {integrity: sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: false
+
+ /postcss-preset-env/6.7.0:
+ resolution: {integrity: sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ autoprefixer: 9.8.8
+ browserslist: 4.23.1
+ caniuse-lite: 1.0.30001636
+ css-blank-pseudo: 0.1.4
+ css-has-pseudo: 0.10.0
+ css-prefers-color-scheme: 3.1.1
+ cssdb: 4.4.0
+ postcss: 7.0.39
+ postcss-attribute-case-insensitive: 4.0.2
+ postcss-color-functional-notation: 2.0.1
+ postcss-color-gray: 5.0.0
+ postcss-color-hex-alpha: 5.0.3
+ postcss-color-mod-function: 3.0.3
+ postcss-color-rebeccapurple: 4.0.1
+ postcss-custom-media: 7.0.8
+ postcss-custom-properties: 8.0.11
+ postcss-custom-selectors: 5.1.2
+ postcss-dir-pseudo-class: 5.0.0
+ postcss-double-position-gradients: 1.0.0
+ postcss-env-function: 2.0.2
+ postcss-focus-visible: 4.0.0
+ postcss-focus-within: 3.0.0
+ postcss-font-variant: 4.0.1
+ postcss-gap-properties: 2.0.0
+ postcss-image-set-function: 3.0.1
+ postcss-initial: 3.0.4
+ postcss-lab-function: 2.0.1
+ postcss-logical: 3.0.0
+ postcss-media-minmax: 4.0.0
+ postcss-nesting: 7.0.1
+ postcss-overflow-shorthand: 2.0.0
+ postcss-page-break: 2.0.0
+ postcss-place: 4.0.1
+ postcss-pseudo-class-any-link: 6.0.0
+ postcss-replace-overflow-wrap: 3.0.0
+ postcss-selector-matches: 4.0.0
+ postcss-selector-not: 4.0.1
+ dev: false
+
+ /postcss-pseudo-class-any-link/6.0.0:
+ resolution: {integrity: sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: false
+
+ /postcss-reduce-initial/4.0.3:
+ resolution: {integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ browserslist: 4.23.1
+ caniuse-api: 3.0.0
+ has: 1.0.4
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-reduce-transforms/4.0.2:
+ resolution: {integrity: sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: false
+
+ /postcss-replace-overflow-wrap/3.0.0:
+ resolution: {integrity: sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-safe-parser/4.0.1:
+ resolution: {integrity: sha512-xZsFA3uX8MO3yAda03QrG3/Eg1LN3EPfjjf07vke/46HERLZyHrTsQ9E1r1w1W//fWEhtYNndo2hQplN2cVpCQ==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-selector-matches/4.0.0:
+ resolution: {integrity: sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==}
+ dependencies:
+ balanced-match: 1.0.2
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-selector-not/4.0.1:
+ resolution: {integrity: sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==}
+ dependencies:
+ balanced-match: 1.0.2
+ postcss: 7.0.39
+ dev: false
+
+ /postcss-selector-parser/3.1.2:
+ resolution: {integrity: sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==}
+ engines: {node: '>=8'}
+ dependencies:
+ dot-prop: 5.3.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: false
+
+ /postcss-selector-parser/5.0.0:
+ resolution: {integrity: sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ cssesc: 2.0.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: false
+
+ /postcss-selector-parser/6.1.0:
+ resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
+ /postcss-svgo/4.0.3:
+ resolution: {integrity: sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ svgo: 1.3.2
+ dev: false
+
+ /postcss-unique-selectors/4.0.1:
+ resolution: {integrity: sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ alphanum-sort: 1.0.2
+ postcss: 7.0.39
+ uniqs: 2.0.0
+ dev: false
+
+ /postcss-value-parser/3.3.1:
+ resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==}
+ dev: false
+
+ /postcss-value-parser/4.2.0:
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
+
+ /postcss-values-parser/2.0.1:
+ resolution: {integrity: sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==}
+ engines: {node: '>=6.14.4'}
+ dependencies:
+ flatten: 1.0.3
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: false
+
+ /postcss/7.0.21:
+ resolution: {integrity: sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ chalk: 2.4.2
+ source-map: 0.6.1
+ supports-color: 6.1.0
+ dev: false
+
+ /postcss/7.0.39:
+ resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ picocolors: 0.2.1
+ source-map: 0.6.1
+ dev: false
+
+ /postcss/8.4.38:
+ resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.1
+ source-map-js: 1.2.0
+ dev: true
+
+ /prelude-ls/1.1.2:
+ resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
+ engines: {node: '>= 0.8.0'}
+ dev: false
+
+ /prepend-http/1.0.4:
+ resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /pretty-bytes/5.6.0:
+ resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /pretty-error/2.1.2:
+ resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==}
+ dependencies:
+ lodash: 4.17.21
+ renderkid: 2.0.7
+ dev: false
+
+ /pretty-format/24.9.0:
+ resolution: {integrity: sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ ansi-regex: 4.1.1
+ ansi-styles: 3.2.1
+ react-is: 16.13.1
+ dev: false
+
+ /process-nextick-args/2.0.1:
+ resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+ dev: false
+
+ /process/0.11.10:
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
+ dev: false
+
+ /progress/2.0.3:
+ resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
+ engines: {node: '>=0.4.0'}
+ dev: false
+
+ /promise-inflight/1.0.1:
+ resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
+ peerDependencies:
+ bluebird: '*'
+ peerDependenciesMeta:
+ bluebird:
+ optional: true
+ dev: false
+
+ /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
+ dev: false
+
+ /promise/8.3.0:
+ resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
+ dependencies:
+ asap: 2.0.6
+ dev: false
+
+ /prompts/2.4.2:
+ resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
+ engines: {node: '>= 6'}
+ dependencies:
+ kleur: 3.0.3
+ sisteransi: 1.0.5
+ dev: false
+
+ /prop-types/15.8.1:
+ resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ react-is: 16.13.1
+ dev: false
+
+ /proxy-addr/2.0.7:
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ forwarded: 0.2.0
+ ipaddr.js: 1.9.1
+ dev: false
+
+ /prr/1.0.1:
+ resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
+ dev: false
+
+ /psl/1.9.0:
+ resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
+ dev: false
+
+ /public-encrypt/4.0.3:
+ resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==}
+ dependencies:
+ bn.js: 4.12.0
+ browserify-rsa: 4.1.0
+ create-hash: 1.2.0
+ parse-asn1: 5.1.7
+ randombytes: 2.1.0
+ safe-buffer: 5.2.1
+ dev: false
+
+ /pump/2.0.1:
+ resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: false
+
+ /pump/3.0.0:
+ resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: false
+
+ /pumpify/1.5.1:
+ resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
+ dependencies:
+ duplexify: 3.7.1
+ inherits: 2.0.4
+ pump: 2.0.1
+ dev: false
+
+ /punycode/1.3.2:
+ resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==}
+ dev: false
+
+ /punycode/1.4.1:
+ resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
+ dev: false
+
+ /punycode/2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /q/1.5.1:
+ resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
+ engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
+ deprecated: |-
+ You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.
+
+ (For a CapTP with native promises, see @endo/eventual-send and @endo/captp)
+ dev: false
+
+ /qs/6.11.0:
+ resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
+ engines: {node: '>=0.6'}
+ dependencies:
+ side-channel: 1.0.6
+ dev: false
+
+ /qs/6.12.1:
+ resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==}
+ engines: {node: '>=0.6'}
+ dependencies:
+ side-channel: 1.0.6
+ dev: false
+
+ /qs/6.5.3:
+ resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
+ engines: {node: '>=0.6'}
+ dev: false
+
+ /query-string/4.3.4:
+ resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ object-assign: 4.1.1
+ strict-uri-encode: 1.1.0
+ dev: false
+
+ /querystring-es3/0.2.1:
+ resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==}
+ engines: {node: '>=0.4.x'}
+ dev: false
+
+ /querystring/0.2.0:
+ resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==}
+ engines: {node: '>=0.4.x'}
+ deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
+ dev: false
+
+ /querystringify/2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
+ dev: false
+
+ /raf/3.4.1:
+ resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==}
+ dependencies:
+ performance-now: 2.1.0
+ dev: false
+
+ /randombytes/2.1.0:
+ resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: false
+
+ /randomfill/1.0.4:
+ resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==}
+ dependencies:
+ randombytes: 2.1.0
+ safe-buffer: 5.2.1
+ dev: false
+
+ /range-parser/1.2.1:
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /raw-body/2.5.2:
+ resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ bytes: 3.1.2
+ http-errors: 2.0.0
+ iconv-lite: 0.4.24
+ unpipe: 1.0.0
+ dev: false
+
+ /raw-loader/4.0.2:
+ resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ loader-utils: 2.0.4
+ schema-utils: 3.3.0
+ dev: false
+
+ /react-app-polyfill/1.0.6:
+ resolution: {integrity: sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==}
+ engines: {node: '>=6'}
+ dependencies:
+ core-js: 3.37.1
+ object-assign: 4.1.1
+ promise: 8.3.0
+ raf: 3.4.1
+ regenerator-runtime: 0.13.11
+ whatwg-fetch: 3.6.20
+ dev: false
+
+ /react-clientside-effect/1.2.6:
+ resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==}
+ peerDependencies:
+ react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ '@babel/runtime': 7.24.7
+ dev: false
+
+ /react-color/2.19.3:
+ resolution: {integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==}
+ peerDependencies:
+ react: '*'
+ dependencies:
+ '@icons/material': 0.2.4
+ lodash: 4.17.21
+ lodash-es: 4.17.21
+ material-colors: 1.2.6
+ prop-types: 15.8.1
+ reactcss: 1.2.3
+ tinycolor2: 1.6.0
+ dev: false
+
+ /react-dev-utils/10.2.1_crohzwvpukyphkhrd5alcafdre:
+ resolution: {integrity: sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ==}
+ engines: {node: '>=8.10'}
+ peerDependencies:
+ typescript: '>=2.7'
+ webpack: '>=4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@babel/code-frame': 7.8.3
+ address: 1.1.2
+ browserslist: 4.10.0
+ chalk: 2.4.2
+ cross-spawn: 7.0.1
+ detect-port-alt: 1.1.6
+ escape-string-regexp: 2.0.0
+ filesize: 6.0.1
+ find-up: 4.1.0
+ fork-ts-checker-webpack-plugin: 3.1.1_crohzwvpukyphkhrd5alcafdre
+ global-modules: 2.0.0
+ globby: 8.0.2
+ gzip-size: 5.1.1
+ immer: 1.10.0
+ inquirer: 7.0.4
+ is-root: 2.1.0
+ loader-utils: 1.2.3
+ open: 7.4.2
+ pkg-up: 3.1.0
+ react-error-overlay: 6.0.11
+ recursive-readdir: 2.2.2
+ shell-quote: 1.7.2
+ strip-ansi: 6.0.0
+ text-table: 0.2.0
+ typescript: 3.9.10
+ webpack: 4.42.0
+ transitivePeerDependencies:
+ - eslint
+ - supports-color
+ - vue-template-compiler
+ dev: false
+
+ /react-device-detect/2.2.3:
+ resolution: {integrity: sha512-buYY3qrCnQVlIFHrC5UcUoAj7iANs/+srdkwsnNjI7anr3Tt7UY6MqNxtMLlr0tMBied0O49UZVK8XKs3ZIiPw==}
+ peerDependencies:
+ react: '>= 0.14.0'
+ react-dom: '>= 0.14.0'
+ dependencies:
+ ua-parser-js: 1.0.38
+ dev: false
+
+ /react-error-overlay/6.0.11:
+ resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
+ dev: false
+
+ /react-fast-compare/3.2.0:
+ resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==}
+ dev: false
+
+ /react-final-form-arrays/3.1.4_final-form-arrays@3.1.0:
+ resolution: {integrity: sha512-siVFAolUAe29rMR6u8VwepoysUcUdh6MLV2OWnCtKpsPRUdT9VUgECjAPaVMAH2GROZNiVB9On1H9MMrm9gdpg==}
+ peerDependencies:
+ final-form: ^4.15.0
+ final-form-arrays: '>=1.0.4'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-final-form: ^6.2.1
+ dependencies:
+ '@babel/runtime': 7.24.7
+ final-form-arrays: 3.1.0
+ dev: false
+
+ /react-final-form/6.5.9_final-form@4.20.10:
+ resolution: {integrity: sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==}
+ peerDependencies:
+ final-form: ^4.20.4
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ '@babel/runtime': 7.24.7
+ final-form: 4.20.10
+ dev: false
+
+ /react-focus-lock/2.5.2:
+ resolution: {integrity: sha512-WzpdOnEqjf+/A3EH9opMZWauag7gV0BxFl+EY4ElA4qFqYsUsBLnmo2sELbN5OC30S16GAWMy16B9DLPpdJKAQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ dependencies:
+ '@babel/runtime': 7.24.7
+ focus-lock: 0.9.2
+ prop-types: 15.8.1
+ react-clientside-effect: 1.2.6
+ use-callback-ref: 1.3.2
+ use-sidecar: 1.1.2
+ transitivePeerDependencies:
+ - '@types/react'
+ dev: false
+
+ /react-google-font-loader/1.1.0:
+ resolution: {integrity: sha512-mnPYxBdhYEldTtREYPKllbmMvCGkTbpdmNjR6iTM3eTNWcg17OrfXjq9HRDZe+1+mhnUnI/AOcpvG0LIQPcLIw==}
+ peerDependencies:
+ react: ^16.6.3
+ react-dom: ^16.6.3
+ dependencies:
+ prop-types: 15.8.1
+ dev: false
+
+ /react-hotjar/4.0.0:
+ resolution: {integrity: sha512-jRk2aWZkK2MMWRj+DBhpwTG5jfhae5DMLoVGbRGqPjZDmKYTtV/tD1/0kmFIlw4pInHKaukQriJ14CQg8MGvww==}
+ dev: false
+
+ /react-input-autosize/3.0.0:
+ resolution: {integrity: sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==}
+ peerDependencies:
+ react: ^16.3.0 || ^17.0.0
+ dependencies:
+ prop-types: 15.8.1
+ dev: false
+
+ /react-is/16.13.1:
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
+ dev: false
+
+ /react-lifecycles-compat/3.0.4:
+ resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
+ dev: false
+
+ /react-number-format/4.9.4:
+ resolution: {integrity: sha512-Gq20Z3ugqPLFgeaidnx5on9cNpbQZntPN3QgNAL/WJrNNlQnNznY0LCx7g8xtssmRBw0/hw+SCqw6zAcajooiA==}
+ peerDependencies:
+ react: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ prop-types: 15.8.1
+ dev: false
+
+ /react-qr-reader/2.2.1:
+ resolution: {integrity: sha512-EL5JEj53u2yAOgtpAKAVBzD/SiKWn0Bl7AZy6ZrSf1lub7xHwtaXe6XSx36Wbhl1VMGmvmrwYMRwO1aSCT2fwA==}
+ peerDependencies:
+ react: ~16
+ react-dom: ~16
+ dependencies:
+ jsqr: 1.4.0
+ prop-types: 15.8.1
+ webrtc-adapter: 7.7.1
+ dev: false
+
+ /react-remove-scroll-bar/2.3.6:
+ resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ react-style-singleton: 2.2.1
+ tslib: 2.6.3
+ dev: false
+
+ /react-remove-scroll/2.4.1:
+ resolution: {integrity: sha512-K7XZySEzOHMTq7dDwcHsZA6Y7/1uX5RsWhRXVYv8rdh+y9Qz2nMwl9RX/Mwnj/j7JstCGmxyfyC0zbVGXYh3mA==}
+ engines: {node: '>=8.5.0'}
+ peerDependencies:
+ '@types/react': ^16.8.0 || ^17.0.0
+ react: ^16.8.0 || ^17.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ react-remove-scroll-bar: 2.3.6
+ react-style-singleton: 2.2.1
+ tslib: 1.14.1
+ use-callback-ref: 1.3.2
+ use-sidecar: 1.1.2
+ dev: false
+
+ /react-resize-detector/2.3.0:
+ resolution: {integrity: sha512-oCAddEWWeFWYH5FAcHdBYcZjAw9fMzRUK9sWSx6WvSSOPVRxcHd5zTIGy/mOus+AhN/u6T4TMiWxvq79PywnJQ==}
+ peerDependencies:
+ react: ^0.14.7 || ^15.0.0 || ^16.0.0
+ dependencies:
+ lodash.debounce: 4.0.8
+ lodash.throttle: 4.1.1
+ prop-types: 15.8.1
+ resize-observer-polyfill: 1.5.1
+ dev: false
+
+ /react-s3-uploader/4.9.3:
+ resolution: {integrity: sha512-O1zAOzFd29eZSSuGB/sTzWzwNP74q0hIDKn1Y06jPj1QTCylQ5O+JTsE1peYlZN9k9vzslQBJ8YkgsqhYWZ9FA==}
+ dependencies:
+ aws-sdk: 2.1646.0
+ create-react-class: 15.7.0
+ object-assign: 2.1.1
+ prop-types: 15.8.1
+ uuid: 3.4.0
+ dev: false
+
+ /react-scripts/3.4.1_typescript@3.9.10:
+ resolution: {integrity: sha512-JpTdi/0Sfd31mZA6Ukx+lq5j1JoKItX7qqEK4OiACjVQletM1P38g49d9/D0yTxp9FrSF+xpJFStkGgKEIRjlQ==}
+ engines: {node: '>=8.10'}
+ hasBin: true
+ peerDependencies:
+ react: '*'
+ typescript: ^3.2.1
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@babel/core': 7.9.0
+ '@svgr/webpack': 4.3.3
+ '@typescript-eslint/eslint-plugin': 2.34.0_fmavwhclprfd5wnbs7ocgoy2gu
+ '@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
+ babel-eslint: 10.1.0_eslint@6.8.0
+ babel-jest: 24.9.0_@babel+core@7.9.0
+ babel-loader: 8.1.0_v5wbdnhwytg3u2hu4ix2bhpzla
+ babel-plugin-named-asset-import: 0.3.8_@babel+core@7.9.0
+ babel-preset-react-app: 9.1.2
+ camelcase: 5.3.1
+ case-sensitive-paths-webpack-plugin: 2.3.0
+ css-loader: 3.4.2_webpack@4.42.0
+ dotenv: 8.2.0
+ dotenv-expand: 5.1.0
+ eslint: 6.8.0
+ eslint-config-react-app: 5.2.1_4jxkwsnmokozlaag2msb6yppru
+ eslint-loader: 3.0.3_s4p5obgc5rn2wrc7rinrdszb4m
+ eslint-plugin-flowtype: 4.6.0_eslint@6.8.0
+ eslint-plugin-import: 2.20.1_tbglwmj7t2rhd43mvxmptakoay
+ eslint-plugin-jsx-a11y: 6.2.3_eslint@6.8.0
+ eslint-plugin-react: 7.19.0_eslint@6.8.0
+ eslint-plugin-react-hooks: 1.7.0_eslint@6.8.0
+ file-loader: 4.3.0_webpack@4.42.0
+ fs-extra: 8.1.0
+ html-webpack-plugin: 4.0.0-beta.11_webpack@4.42.0
+ identity-obj-proxy: 3.0.0
+ jest: 24.9.0
+ jest-environment-jsdom-fourteen: 1.0.1
+ jest-resolve: 24.9.0
+ jest-watch-typeahead: 0.4.2
+ mini-css-extract-plugin: 0.9.0_webpack@4.42.0
+ optimize-css-assets-webpack-plugin: 5.0.3_webpack@4.42.0
+ pnp-webpack-plugin: 1.6.4_typescript@3.9.10
+ postcss-flexbugs-fixes: 4.1.0
+ postcss-loader: 3.0.0
+ postcss-normalize: 8.0.1
+ postcss-preset-env: 6.7.0
+ postcss-safe-parser: 4.0.1
+ react-app-polyfill: 1.0.6
+ react-dev-utils: 10.2.1_crohzwvpukyphkhrd5alcafdre
+ resolve: 1.15.0
+ resolve-url-loader: 3.1.1
+ sass-loader: 8.0.2_webpack@4.42.0
+ semver: 6.3.0
+ style-loader: 0.23.1
+ terser-webpack-plugin: 2.3.5_webpack@4.42.0
+ ts-pnp: 1.1.6_typescript@3.9.10
+ typescript: 3.9.10
+ url-loader: 2.3.0_k66lquhotssodpycel5qq5nq34
+ webpack: 4.42.0
+ webpack-dev-server: 3.10.3_webpack@4.42.0
+ webpack-manifest-plugin: 2.2.0_webpack@4.42.0
+ workbox-webpack-plugin: 4.3.1_webpack@4.42.0
+ optionalDependencies:
+ fsevents: 2.1.2
+ transitivePeerDependencies:
+ - bluebird
+ - bufferutil
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - fibers
+ - node-sass
+ - sass
+ - supports-color
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+ - webpack-command
+ dev: false
+
+ /react-select/3.2.0:
+ resolution: {integrity: sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ dependencies:
+ '@babel/runtime': 7.24.7
+ '@emotion/cache': 10.0.29
+ '@emotion/core': 10.3.1
+ '@emotion/css': 10.0.27
+ memoize-one: 5.2.1
+ prop-types: 15.8.1
+ react-input-autosize: 3.0.0
+ react-transition-group: 4.4.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /react-smooth/1.0.6:
+ resolution: {integrity: sha512-B2vL4trGpNSMSOzFiAul9kFAsxTukL9Wyy9EXtkQy3GJr6sZqW9e1nShdVOJ3hRYamPZ94O17r3Q0bjSw3UYtg==}
+ peerDependencies:
+ react: ^15.0.0 || ^16.0.0
+ react-dom: ^15.0.0 || ^16.0.0
+ dependencies:
+ lodash: 4.17.21
+ prop-types: 15.8.1
+ raf: 3.4.1
+ react-transition-group: 2.9.0
+ dev: false
+
+ /react-smooth/4.0.1:
+ resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ fast-equals: 5.0.1
+ prop-types: 15.8.1
+ react-transition-group: 4.4.5
+ dev: false
+
+ /react-style-singleton/2.2.1:
+ resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ get-nonce: 1.0.1
+ invariant: 2.2.4
+ tslib: 2.6.3
+ dev: false
+
+ /react-table/7.8.0:
+ resolution: {integrity: sha512-hNaz4ygkZO4bESeFfnfOft73iBUj8K5oKi1EcSHPAibEydfsX2MyU6Z8KCr3mv3C9Kqqh71U+DhZkFvibbnPbA==}
+ peerDependencies:
+ react: ^16.8.3 || ^17.0.0-0 || ^18.0.0
+ dev: false
+
+ /react-toastify/6.0.8:
+ resolution: {integrity: sha512-NSqCNwv+C4IfR+c92PFZiNyeBwOJvigrP2bcRi2f6Hg3WqcHhEHOknbSQOs9QDFuqUjmK3SOrdvScQ3z63ifXg==}
+ peerDependencies:
+ react: '>=16'
+ dependencies:
+ classnames: 2.5.1
+ prop-types: 15.8.1
+ react-transition-group: 4.4.5
+ transitivePeerDependencies:
+ - react-dom
+ dev: false
+
+ /react-toastify/6.2.0:
+ resolution: {integrity: sha512-XpjFrcBhQ0/nBOL4syqgP/TywFnOyxmstYLWgSQWcj39qpp+WU4vPt3C/ayIDx7RFyxRWfzWTdR2qOcDGo7G0w==}
+ peerDependencies:
+ react: '>=16'
+ dependencies:
+ clsx: 1.2.1
+ prop-types: 15.8.1
+ react-transition-group: 4.4.5
+ transitivePeerDependencies:
+ - react-dom
+ dev: false
+
+ /react-transition-group/2.9.0:
+ resolution: {integrity: sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==}
+ peerDependencies:
+ react: '>=15.0.0'
+ react-dom: '>=15.0.0'
+ dependencies:
+ dom-helpers: 3.4.0
+ loose-envify: 1.4.0
+ prop-types: 15.8.1
+ react-lifecycles-compat: 3.0.4
+ dev: false
+
+ /react-transition-group/4.4.5:
+ resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
+ peerDependencies:
+ react: '>=16.6.0'
+ react-dom: '>=16.6.0'
+ dependencies:
+ '@babel/runtime': 7.24.7
+ dom-helpers: 5.2.1
+ loose-envify: 1.4.0
+ prop-types: 15.8.1
+ dev: false
+
+ /reactcss/1.2.3:
+ resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==}
+ peerDependencies:
+ react: '*'
+ dependencies:
+ lodash: 4.17.21
+ dev: false
+
+ /read-pkg-up/2.0.0:
+ resolution: {integrity: sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==}
+ engines: {node: '>=4'}
+ dependencies:
+ find-up: 2.1.0
+ read-pkg: 2.0.0
+ dev: false
+
+ /read-pkg-up/4.0.0:
+ resolution: {integrity: sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==}
+ engines: {node: '>=6'}
+ dependencies:
+ find-up: 3.0.0
+ read-pkg: 3.0.0
+ dev: false
+
+ /read-pkg/2.0.0:
+ resolution: {integrity: sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==}
+ engines: {node: '>=4'}
+ dependencies:
+ load-json-file: 2.0.0
+ normalize-package-data: 2.5.0
+ path-type: 2.0.0
+ dev: false
+
+ /read-pkg/3.0.0:
+ resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==}
+ engines: {node: '>=4'}
+ dependencies:
+ load-json-file: 4.0.0
+ normalize-package-data: 2.5.0
+ path-type: 3.0.0
+ dev: false
+
+ /readable-stream/2.3.8:
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
+ dependencies:
+ core-util-is: 1.0.3
+ inherits: 2.0.4
+ isarray: 1.0.0
+ process-nextick-args: 2.0.1
+ safe-buffer: 5.1.2
+ string_decoder: 1.1.1
+ util-deprecate: 1.0.2
+ dev: false
+
+ /readable-stream/3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ inherits: 2.0.4
+ string_decoder: 1.3.0
+ util-deprecate: 1.0.2
+ dev: false
+
+ /readdirp/2.2.1:
+ resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ graceful-fs: 4.2.11
+ micromatch: 3.1.10
+ readable-stream: 2.3.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /readdirp/2.2.1_supports-color@6.1.0:
+ resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ graceful-fs: 4.2.11
+ micromatch: 3.1.10_supports-color@6.1.0
+ readable-stream: 2.3.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /readdirp/3.6.0:
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
+ engines: {node: '>=8.10.0'}
+ dependencies:
+ picomatch: 2.3.1
+ dev: false
+
+ /realpath-native/1.1.0:
+ resolution: {integrity: sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==}
+ engines: {node: '>=4'}
+ dependencies:
+ util.promisify: 1.1.2
+ dev: false
+
+ /recharts-scale/0.4.5:
+ resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
+ dependencies:
+ decimal.js-light: 2.5.1
+ dev: false
+
+ /recharts/1.8.6:
+ resolution: {integrity: sha512-UlfSEOnZRAxxaH33Fc86yHEcqN+IRauPP31NfVvlGudtwVZEIb2RFI5b1J3npQo7XyoSnkUodg3Ha6EupkV+SQ==}
+ peerDependencies:
+ react: ^15.0.0 || ^16.0.0
+ react-dom: ^15.0.0 || ^16.0.0
+ dependencies:
+ classnames: 2.5.1
+ core-js: 3.37.1
+ d3-interpolate: 1.4.0
+ d3-scale: 2.2.2
+ d3-shape: 1.3.7
+ lodash: 4.17.21
+ prop-types: 15.8.1
+ react-resize-detector: 2.3.0
+ react-smooth: 1.0.6
+ recharts-scale: 0.4.5
+ reduce-css-calc: 1.3.0
+ dev: false
+
+ /recharts/2.12.7:
+ resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ react: ^16.0.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ clsx: 2.1.1
+ eventemitter3: 4.0.7
+ lodash: 4.17.21
+ react-is: 16.13.1
+ react-smooth: 4.0.1
+ recharts-scale: 0.4.5
+ tiny-invariant: 1.3.3
+ victory-vendor: 36.9.2
+ dev: false
+
+ /recursive-readdir/2.2.2:
+ resolution: {integrity: sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ minimatch: 3.0.4
+ dev: false
+
+ /reduce-css-calc/1.3.0:
+ resolution: {integrity: sha512-0dVfwYVOlf/LBA2ec4OwQ6p3X9mYxn/wOl2xTcLwjnPYrkgEfPx3VI4eGCH3rQLlPISG5v9I9bkZosKsNRTRKA==}
+ dependencies:
+ balanced-match: 0.4.2
+ math-expression-evaluator: 1.4.0
+ reduce-function-call: 1.0.3
+ dev: false
+
+ /reduce-function-call/1.0.3:
+ resolution: {integrity: sha512-Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==}
+ dependencies:
+ balanced-match: 1.0.2
+ dev: false
+
+ /regenerate-unicode-properties/10.1.1:
+ resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
+ engines: {node: '>=4'}
+ dependencies:
+ regenerate: 1.4.2
+ dev: false
+
+ /regenerate/1.4.2:
+ resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
+ dev: false
+
+ /regenerator-runtime/0.11.1:
+ resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
+ dev: false
+
+ /regenerator-runtime/0.13.11:
+ resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
+ dev: false
+
+ /regenerator-runtime/0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
+ dev: false
+
+ /regenerator-transform/0.15.2:
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
+ dependencies:
+ '@babel/runtime': 7.9.0
+ dev: false
+
+ /regex-not/1.0.2:
+ resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 3.0.2
+ safe-regex: 1.1.0
+ dev: false
+
+ /regex-parser/2.2.10:
+ resolution: {integrity: sha512-8t6074A68gHfU8Neftl0Le6KTDwfGAj7IyjPIMSfikI2wJUTHDMaIq42bUsfVnj8mhx0R+45rdUXHGpN164avA==}
+ dev: false
+
+ /regexp.prototype.flags/1.5.2:
+ resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-errors: 1.3.0
+ set-function-name: 2.0.2
+ dev: false
+
+ /regexpp/2.0.1:
+ resolution: {integrity: sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==}
+ engines: {node: '>=6.5.0'}
+ dev: false
+
+ /regexpp/3.2.0:
+ resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /regexpu-core/5.3.2:
+ resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ '@babel/regjsgen': 0.8.0
+ regenerate: 1.4.2
+ regenerate-unicode-properties: 10.1.1
+ regjsparser: 0.9.1
+ unicode-match-property-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.1.0
+ dev: false
+
+ /regjsparser/0.9.1:
+ resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
+ hasBin: true
+ dependencies:
+ jsesc: 0.5.0
+ dev: false
+
+ /relateurl/0.2.7:
+ resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
+ engines: {node: '>= 0.10'}
+ dev: false
+
+ /remove-trailing-separator/1.1.0:
+ resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
+ dev: false
+
+ /renderkid/2.0.7:
+ resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==}
+ dependencies:
+ css-select: 4.3.0
+ dom-converter: 0.2.0
+ htmlparser2: 6.1.0
+ lodash: 4.17.21
+ strip-ansi: 3.0.1
+ dev: false
+
+ /repeat-element/1.1.4:
+ resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /repeat-string/1.6.1:
+ resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
+ engines: {node: '>=0.10'}
+ dev: false
+
+ /request-promise-core/1.1.4_request@2.88.2:
+ resolution: {integrity: sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==}
+ engines: {node: '>=0.10.0'}
+ peerDependencies:
+ request: ^2.34
+ dependencies:
+ lodash: 4.17.21
+ request: 2.88.2
+ dev: false
+
+ /request-promise-native/1.0.9_request@2.88.2:
+ resolution: {integrity: sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==}
+ engines: {node: '>=0.12.0'}
+ deprecated: request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142
+ peerDependencies:
+ request: ^2.34
+ dependencies:
+ request: 2.88.2
+ request-promise-core: 1.1.4_request@2.88.2
+ stealthy-require: 1.1.1
+ tough-cookie: 2.5.0
+ dev: false
+
+ /request/2.88.2:
+ resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==}
+ engines: {node: '>= 6'}
+ deprecated: request has been deprecated, see https://github.com/request/request/issues/3142
+ dependencies:
+ aws-sign2: 0.7.0
+ aws4: 1.13.0
+ caseless: 0.12.0
+ combined-stream: 1.0.8
+ extend: 3.0.2
+ forever-agent: 0.6.1
+ form-data: 2.3.3
+ har-validator: 5.1.5
+ http-signature: 1.2.0
+ is-typedarray: 1.0.0
+ isstream: 0.1.2
+ json-stringify-safe: 5.0.1
+ mime-types: 2.1.35
+ oauth-sign: 0.9.0
+ performance-now: 2.1.0
+ qs: 6.5.3
+ safe-buffer: 5.2.1
+ tough-cookie: 2.5.0
+ tunnel-agent: 0.6.0
+ uuid: 3.4.0
+ dev: false
+
+ /require-directory/2.1.1:
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /require-main-filename/1.0.1:
+ resolution: {integrity: sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==}
+ dev: false
+
+ /require-main-filename/2.0.0:
+ resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
+ dev: false
+
+ /requires-port/1.0.0:
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+ dev: false
+
+ /resize-observer-polyfill/1.5.1:
+ resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
+ dev: false
+
+ /resolve-cwd/2.0.0:
+ resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==}
+ engines: {node: '>=4'}
+ dependencies:
+ resolve-from: 3.0.0
+ dev: false
+
+ /resolve-from/3.0.0:
+ resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /resolve-from/4.0.0:
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+ engines: {node: '>=4'}
+
+ /resolve-url-loader/3.1.1:
+ resolution: {integrity: sha512-K1N5xUjj7v0l2j/3Sgs5b8CjrrgtC70SmdCuZiJ8tSyb5J+uk3FoeZ4b7yTnH6j7ngI+Bc5bldHJIa8hYdu2gQ==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ adjust-sourcemap-loader: 2.0.0
+ camelcase: 5.3.1
+ compose-function: 3.0.3
+ convert-source-map: 1.7.0
+ es6-iterator: 2.0.3
+ loader-utils: 1.2.3
+ postcss: 7.0.21
+ rework: 1.0.1
+ rework-visit: 1.0.0
+ source-map: 0.6.1
+ dev: false
+
+ /resolve-url/0.2.1:
+ resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
+ deprecated: https://github.com/lydell/resolve-url#deprecated
+ dev: false
+
+ /resolve/1.1.7:
+ resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==}
+ dev: false
+
+ /resolve/1.15.0:
+ resolution: {integrity: sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw==}
+ dependencies:
+ path-parse: 1.0.7
+ dev: false
+
+ /resolve/1.22.8:
+ resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
+ hasBin: true
+ dependencies:
+ is-core-module: 2.13.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+ dev: false
+
+ /restore-cursor/3.1.0:
+ resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
+ engines: {node: '>=8'}
+ dependencies:
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ dev: false
+
+ /ret/0.1.15:
+ resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
+ engines: {node: '>=0.12'}
+ dev: false
+
+ /retry/0.12.0:
+ resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
+ engines: {node: '>= 4'}
+ dev: false
+
+ /rework-visit/1.0.0:
+ resolution: {integrity: sha512-W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ==}
+ dev: false
+
+ /rework/1.0.1:
+ resolution: {integrity: sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw==}
+ dependencies:
+ convert-source-map: 0.3.5
+ css: 2.2.4
+ dev: false
+
+ /rgb-regex/1.0.1:
+ resolution: {integrity: sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==}
+ dev: false
+
+ /rgba-regex/1.0.0:
+ resolution: {integrity: sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==}
+ dev: false
+
+ /rimraf/2.6.3:
+ resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
+ dev: false
+
+ /rimraf/2.7.1:
+ resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
+ dev: false
+
+ /ripemd160/2.0.2:
+ resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
+ dependencies:
+ hash-base: 3.1.0
+ inherits: 2.0.4
+ dev: false
+
+ /rsvp/4.8.5:
+ resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==}
+ engines: {node: 6.* || >= 7.*}
+ dev: false
+
+ /rtcpeerconnection-shim/1.2.15:
+ resolution: {integrity: sha512-C6DxhXt7bssQ1nHb154lqeL0SXz5Dx4RczXZu2Aa/L1NJFnEVDxFwCBo3fqtuljhHIGceg5JKBV4XJ0gW5JKyw==}
+ engines: {node: '>=6.0.0', npm: '>=3.10.0'}
+ dependencies:
+ sdp: 2.12.0
+ dev: false
+
+ /run-async/2.4.1:
+ resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
+ engines: {node: '>=0.12.0'}
+ dev: false
+
+ /run-queue/1.0.3:
+ resolution: {integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==}
+ dependencies:
+ aproba: 1.2.0
+ dev: false
+
+ /rxjs/6.6.7:
+ resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
+ engines: {npm: '>=2.0.0'}
+ dependencies:
+ tslib: 1.14.1
+ dev: false
+
+ /safe-array-concat/1.1.2:
+ resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
+ engines: {node: '>=0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
+ isarray: 2.0.5
+ dev: false
+
+ /safe-buffer/5.1.2:
+ resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
+ dev: false
+
+ /safe-buffer/5.2.1:
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+ dev: false
+
+ /safe-regex-test/1.0.3:
+ resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-regex: 1.1.4
+ dev: false
+
+ /safe-regex/1.1.0:
+ resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
+ dependencies:
+ ret: 0.1.15
+ dev: false
+
+ /safer-buffer/2.1.2:
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+ dev: false
+
+ /sane/4.1.0:
+ resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==}
+ engines: {node: 6.* || 8.* || >= 10.*}
+ deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added
+ hasBin: true
+ dependencies:
+ '@cnakazawa/watch': 1.0.4
+ anymatch: 2.0.0
+ capture-exit: 2.0.0
+ exec-sh: 0.3.6
+ execa: 1.0.0
+ fb-watchman: 2.0.2
+ micromatch: 3.1.10
+ minimist: 1.2.8
+ walker: 1.0.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /sanitize.css/10.0.0:
+ resolution: {integrity: sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==}
+ dev: false
+
+ /sass-loader/8.0.2_webpack@4.42.0:
+ resolution: {integrity: sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==}
+ engines: {node: '>= 8.9.0'}
+ peerDependencies:
+ fibers: '>= 3.1.0'
+ node-sass: ^4.0.0
+ sass: ^1.3.0
+ webpack: ^4.36.0 || ^5.0.0
+ peerDependenciesMeta:
+ fibers:
+ optional: true
+ node-sass:
+ optional: true
+ sass:
+ optional: true
+ dependencies:
+ clone-deep: 4.0.1
+ loader-utils: 1.4.2
+ neo-async: 2.6.2
+ schema-utils: 2.7.1
+ semver: 6.3.0
+ webpack: 4.42.0
+ dev: false
+
+ /sax/1.2.1:
+ resolution: {integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==}
+ dev: false
+
+ /sax/1.2.4:
+ resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
+ dev: false
+
+ /sax/1.4.1:
+ resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
+ dev: false
+
+ /saxes/3.1.11:
+ resolution: {integrity: sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==}
+ engines: {node: '>=8'}
+ dependencies:
+ xmlchars: 2.2.0
+ dev: false
+
+ /saxes/5.0.1:
+ resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
+ engines: {node: '>=10'}
+ dependencies:
+ xmlchars: 2.2.0
+ dev: false
+
+ /schema-utils/1.0.0:
+ resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==}
+ engines: {node: '>= 4'}
+ dependencies:
+ ajv: 6.12.6
+ ajv-errors: 1.0.1_ajv@6.12.6
+ ajv-keywords: 3.5.2_ajv@6.12.6
+ dev: false
+
+ /schema-utils/2.7.1:
+ resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
+ engines: {node: '>= 8.9.0'}
+ dependencies:
+ '@types/json-schema': 7.0.15
+ ajv: 6.12.6
+ ajv-keywords: 3.5.2_ajv@6.12.6
+ dev: false
+
+ /schema-utils/3.3.0:
+ resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
+ engines: {node: '>= 10.13.0'}
+ dependencies:
+ '@types/json-schema': 7.0.15
+ ajv: 6.12.6
+ ajv-keywords: 3.5.2_ajv@6.12.6
+ dev: false
+
+ /sdp/2.12.0:
+ resolution: {integrity: sha512-jhXqQAQVM+8Xj5EjJGVweuEzgtGWb3tmEEpl3CLP3cStInSbVHSg0QWOGQzNq8pSID4JkpeV2mPqlMDLrm0/Vw==}
+ dev: false
+
+ /select-hose/2.0.0:
+ resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
+ dev: false
+
+ /selfsigned/1.10.14:
+ resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==}
+ dependencies:
+ node-forge: 0.10.0
+ dev: false
+
+ /semver/5.7.2:
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
+ hasBin: true
+ dev: false
+
+ /semver/6.3.0:
+ resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
+ hasBin: true
+ dev: false
+
+ /semver/6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
+ hasBin: true
+ dev: false
+
+ /semver/7.6.2:
+ resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ /send/0.18.0_supports-color@6.1.0:
+ resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ debug: 2.6.9_supports-color@6.1.0
+ depd: 2.0.0
+ destroy: 1.2.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ mime: 1.6.0
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /serialize-javascript/2.1.2:
+ resolution: {integrity: sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==}
+ dev: false
+
+ /serialize-javascript/4.0.0:
+ resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
+ dependencies:
+ randombytes: 2.1.0
+ dev: false
+
+ /serve-index/1.9.1_supports-color@6.1.0:
+ resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ accepts: 1.3.8
+ batch: 0.6.1
+ debug: 2.6.9_supports-color@6.1.0
+ escape-html: 1.0.3
+ http-errors: 1.6.3
+ mime-types: 2.1.35
+ parseurl: 1.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /serve-static/1.15.0_supports-color@6.1.0:
+ resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ parseurl: 1.3.3
+ send: 0.18.0_supports-color@6.1.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /set-blocking/2.0.0:
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+ dev: false
+
+ /set-function-length/1.2.2:
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.2
+ dev: false
+
+ /set-function-name/2.0.2:
+ resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ functions-have-names: 1.2.3
+ has-property-descriptors: 1.0.2
+ dev: false
+
+ /set-value/2.0.1:
+ resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 2.0.1
+ is-extendable: 0.1.1
+ is-plain-object: 2.0.4
+ split-string: 3.1.0
+ dev: false
+
+ /setimmediate/1.0.5:
+ resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
+ dev: false
+
+ /setprototypeof/1.1.0:
+ resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
+ dev: false
+
+ /setprototypeof/1.2.0:
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
+ dev: false
+
+ /sha.js/2.4.11:
+ resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
+ hasBin: true
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: false
+
+ /shallow-clone/0.1.2:
+ resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extendable: 0.1.1
+ kind-of: 2.0.1
+ lazy-cache: 0.2.7
+ mixin-object: 2.0.1
+ dev: false
+
+ /shallow-clone/3.0.1:
+ resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
+ engines: {node: '>=8'}
+ dependencies:
+ kind-of: 6.0.3
+ dev: false
+
+ /shebang-command/1.2.0:
+ resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ shebang-regex: 1.0.0
+ dev: false
+
+ /shebang-command/2.0.0:
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+ engines: {node: '>=8'}
+ dependencies:
+ shebang-regex: 3.0.0
+ dev: false
+
+ /shebang-regex/1.0.0:
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /shebang-regex/3.0.0:
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /shell-quote/1.7.2:
+ resolution: {integrity: sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==}
+ dev: false
+
+ /shellwords/0.1.1:
+ resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==}
+ dev: false
+
+ /side-channel/1.0.6:
+ resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ object-inspect: 1.13.1
+ dev: false
+
+ /signal-exit/3.0.7:
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+ dev: false
+
+ /simple-swizzle/0.2.2:
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+ dependencies:
+ is-arrayish: 0.3.2
+ dev: false
+
+ /sisteransi/1.0.5:
+ resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
+ dev: false
+
+ /slash/1.0.0:
+ resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /slash/2.0.0:
+ resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /slash/3.0.0:
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /slate-plain-serializer/0.7.13:
+ resolution: {integrity: sha512-TtrlaslxQBEMV0LYdf3s7VAbTxRPe1xaW10WNNGAzGA855/0RhkaHjKkQiRjHv5rvbRleVf7Nxr9fH+4uErfxQ==}
+ peerDependencies:
+ immutable: '>=3.8.1'
+ slate: '>=0.46.0 <0.50.0'
+ dev: false
+
+ /slice-ansi/2.1.0:
+ resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ ansi-styles: 3.2.1
+ astral-regex: 1.0.0
+ is-fullwidth-code-point: 2.0.0
+ dev: false
+
+ /slugify/1.6.6:
+ resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==}
+ engines: {node: '>=8.0.0'}
+ dev: false
+
+ /snapdragon-node/2.1.1:
+ resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 1.0.0
+ isobject: 3.0.1
+ snapdragon-util: 3.0.1
+ dev: false
+
+ /snapdragon-util/3.0.1:
+ resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+
+ /snapdragon/0.8.2:
+ resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ base: 0.11.2
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ map-cache: 0.2.2
+ source-map: 0.5.7
+ source-map-resolve: 0.5.3
+ use: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /snapdragon/0.8.2_supports-color@6.1.0:
+ resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ base: 0.11.2
+ debug: 2.6.9_supports-color@6.1.0
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ map-cache: 0.2.2
+ source-map: 0.5.7
+ source-map-resolve: 0.5.3
+ use: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /sockjs-client/1.4.0_supports-color@6.1.0:
+ resolution: {integrity: sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==}
+ dependencies:
+ debug: 3.2.7_supports-color@6.1.0
+ eventsource: 1.1.2
+ faye-websocket: 0.11.4
+ inherits: 2.0.4
+ json3: 3.3.3
+ url-parse: 1.5.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /sockjs/0.3.19:
+ resolution: {integrity: sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw==}
+ dependencies:
+ faye-websocket: 0.10.0
+ uuid: 3.4.0
+ dev: false
+
+ /sort-keys/1.1.2:
+ resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-plain-obj: 1.1.0
+ dev: false
+
+ /source-list-map/2.0.1:
+ resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
+ dev: false
+
+ /source-map-js/1.2.0:
+ resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /source-map-resolve/0.5.3:
+ resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==}
+ deprecated: See https://github.com/lydell/source-map-resolve#deprecated
+ dependencies:
+ atob: 2.1.2
+ decode-uri-component: 0.2.2
+ resolve-url: 0.2.1
+ source-map-url: 0.4.1
+ urix: 0.1.0
+ dev: false
+
+ /source-map-support/0.5.21:
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
+ dependencies:
+ buffer-from: 1.1.2
+ source-map: 0.6.1
+ dev: false
+
+ /source-map-url/0.4.1:
+ resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
+ deprecated: See https://github.com/lydell/source-map-url#deprecated
+ dev: false
+
+ /source-map/0.5.7:
+ resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /source-map/0.6.1:
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /spdx-correct/3.2.0:
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
+ dependencies:
+ spdx-expression-parse: 3.0.1
+ spdx-license-ids: 3.0.18
+ dev: false
+
+ /spdx-exceptions/2.5.0:
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
+ dev: false
+
+ /spdx-expression-parse/3.0.1:
+ resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
+ dependencies:
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.18
+ dev: false
+
+ /spdx-license-ids/3.0.18:
+ resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==}
+ dev: false
+
+ /spdy-transport/3.0.0_supports-color@6.1.0:
+ resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
+ dependencies:
+ debug: 4.3.5_supports-color@6.1.0
+ detect-node: 2.1.0
+ hpack.js: 2.1.6
+ obuf: 1.1.2
+ readable-stream: 3.6.2
+ wbuf: 1.7.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /spdy/4.0.2_supports-color@6.1.0:
+ resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ debug: 4.3.5_supports-color@6.1.0
+ handle-thing: 2.0.1
+ http-deceiver: 1.2.7
+ select-hose: 2.0.0
+ spdy-transport: 3.0.0_supports-color@6.1.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /split-string/3.1.0:
+ resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 3.0.2
+ dev: false
+
+ /sprintf-js/1.0.3:
+ resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+ dev: false
+
+ /sshpk/1.18.0:
+ resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+ dependencies:
+ asn1: 0.2.6
+ assert-plus: 1.0.0
+ bcrypt-pbkdf: 1.0.2
+ dashdash: 1.14.1
+ ecc-jsbn: 0.1.2
+ getpass: 0.1.7
+ jsbn: 0.1.1
+ safer-buffer: 2.1.2
+ tweetnacl: 0.14.5
+ dev: false
+
+ /ssri/6.0.2:
+ resolution: {integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==}
+ dependencies:
+ figgy-pudding: 3.5.2
+ dev: false
+
+ /ssri/7.1.1:
+ resolution: {integrity: sha512-w+daCzXN89PseTL99MkA+fxJEcU3wfaE/ah0i0lnOlpG1CYLJ2ZjzEry68YBKfLs4JfoTShrTEsJkAZuNZ/stw==}
+ engines: {node: '>= 8'}
+ dependencies:
+ figgy-pudding: 3.5.2
+ minipass: 3.3.6
+ dev: false
+
+ /stable/0.1.8:
+ resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
+ deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
+ dev: false
+
+ /stack-utils/1.0.5:
+ resolution: {integrity: sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ escape-string-regexp: 2.0.0
+ dev: false
+
+ /static-extend/0.1.2:
+ resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 0.2.5
+ object-copy: 0.1.0
+ dev: false
+
+ /statuses/1.5.0:
+ resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
+ /statuses/2.0.1:
+ resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /stealthy-require/1.1.1:
+ resolution: {integrity: sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /stream-browserify/2.0.2:
+ resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ dev: false
+
+ /stream-each/1.2.3:
+ resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==}
+ dependencies:
+ end-of-stream: 1.4.4
+ stream-shift: 1.0.3
+ dev: false
+
+ /stream-http/2.8.3:
+ resolution: {integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==}
+ dependencies:
+ builtin-status-codes: 3.0.0
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ to-arraybuffer: 1.0.1
+ xtend: 4.0.2
+ dev: false
+
+ /stream-shift/1.0.3:
+ resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
+ dev: false
+
+ /strict-uri-encode/1.1.0:
+ resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /string-length/2.0.0:
+ resolution: {integrity: sha512-Qka42GGrS8Mm3SZ+7cH8UXiIWI867/b/Z/feQSpQx/rbfB8UGknGEZVaUQMOUVj+soY6NpWAxily63HI1OckVQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ astral-regex: 1.0.0
+ strip-ansi: 4.0.0
+ dev: false
+
+ /string-length/3.1.0:
+ resolution: {integrity: sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==}
+ engines: {node: '>=8'}
+ dependencies:
+ astral-regex: 1.0.0
+ strip-ansi: 5.2.0
+ dev: false
+
+ /string-width/1.0.2:
+ resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ code-point-at: 1.1.0
+ is-fullwidth-code-point: 1.0.0
+ strip-ansi: 3.0.1
+ dev: false
+
+ /string-width/2.1.1:
+ resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==}
+ engines: {node: '>=4'}
+ dependencies:
+ is-fullwidth-code-point: 2.0.0
+ strip-ansi: 4.0.0
+ dev: false
+
+ /string-width/3.1.0:
+ resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==}
+ engines: {node: '>=6'}
+ dependencies:
+ emoji-regex: 7.0.3
+ is-fullwidth-code-point: 2.0.0
+ strip-ansi: 5.2.0
+ dev: false
+
+ /string-width/4.2.3:
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
+ dependencies:
+ emoji-regex: 8.0.0
+ is-fullwidth-code-point: 3.0.0
+ strip-ansi: 6.0.1
+ dev: false
+
+ /string.prototype.matchall/4.0.11:
+ resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
+ has-symbols: 1.0.3
+ internal-slot: 1.0.7
+ regexp.prototype.flags: 1.5.2
+ set-function-name: 2.0.2
+ side-channel: 1.0.6
+ dev: false
+
+ /string.prototype.trim/1.2.9:
+ resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ dev: false
+
+ /string.prototype.trimend/1.0.8:
+ resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
+ dev: false
+
+ /string.prototype.trimstart/1.0.8:
+ resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
+ dev: false
+
+ /string_decoder/1.1.1:
+ resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: false
+
+ /string_decoder/1.3.0:
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: false
+
+ /stringify-object/3.3.0:
+ resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
+ engines: {node: '>=4'}
+ dependencies:
+ get-own-enumerable-property-symbols: 3.0.2
+ is-obj: 1.0.1
+ is-regexp: 1.0.0
+ dev: false
+
+ /strip-ansi/3.0.1:
+ resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ ansi-regex: 2.1.1
+ dev: false
+
+ /strip-ansi/4.0.0:
+ resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==}
+ engines: {node: '>=4'}
+ dependencies:
+ ansi-regex: 3.0.1
+ dev: false
+
+ /strip-ansi/5.2.0:
+ resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
+ engines: {node: '>=6'}
+ dependencies:
+ ansi-regex: 4.1.1
+ dev: false
+
+ /strip-ansi/6.0.0:
+ resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-regex: 5.0.1
+ dev: false
+
+ /strip-ansi/6.0.1:
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-regex: 5.0.1
+ dev: false
+
+ /strip-bom/3.0.0:
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /strip-comments/1.0.2:
+ resolution: {integrity: sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==}
+ engines: {node: '>=4'}
+ dependencies:
+ babel-extract-comments: 1.0.0
+ babel-plugin-transform-object-rest-spread: 6.26.0
+ dev: false
+
+ /strip-eof/1.0.0:
+ resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /strip-json-comments/3.1.1:
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /style-loader/0.23.1:
+ resolution: {integrity: sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==}
+ engines: {node: '>= 0.12.0'}
+ dependencies:
+ loader-utils: 1.4.2
+ schema-utils: 1.0.0
+ dev: false
+
+ /style-loader/4.0.0:
+ resolution: {integrity: sha512-1V4WqhhZZgjVAVJyt7TdDPZoPBPNHbekX4fWnCJL1yQukhCeZhJySUL+gL9y6sNdN95uEOS83Y55SqHcP7MzLA==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ webpack: ^5.27.0
+ dev: true
+
+ /style-value-types/4.1.4:
+ resolution: {integrity: sha512-LCJL6tB+vPSUoxgUBt9juXIlNJHtBMy8jkXzUJSBzeHWdBu6lhzHqCvLVkXFGsFIlNa2ln1sQHya/gzaFmB2Lg==}
+ dependencies:
+ hey-listen: 1.0.8
+ tslib: 2.6.3
+ dev: false
+
+ /styled-components/4.4.1:
+ resolution: {integrity: sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==}
+ requiresBuild: true
+ peerDependencies:
+ react: '>= 16.3.0'
+ react-dom: '>= 16.3.0'
+ dependencies:
+ '@babel/helper-module-imports': 7.24.7_supports-color@5.5.0
+ '@babel/traverse': 7.24.7_supports-color@5.5.0
+ '@emotion/is-prop-valid': 0.8.8
+ '@emotion/unitless': 0.7.5
+ babel-plugin-styled-components: 1.13.3_x56uxbnty5wbws66wahiqabede
+ css-to-react-native: 2.3.2
+ memoize-one: 5.2.1
+ merge-anything: 2.4.4
+ prop-types: 15.8.1
+ react-is: 16.13.1
+ stylis: 3.5.4
+ stylis-rule-sheet: 0.0.10_stylis@3.5.4
+ supports-color: 5.5.0
+ dev: false
+
+ /stylehacks/4.0.3:
+ resolution: {integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ browserslist: 4.23.1
+ postcss: 7.0.39
+ postcss-selector-parser: 3.1.2
+ dev: false
+
+ /stylis-rule-sheet/0.0.10_stylis@3.5.4:
+ resolution: {integrity: sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==}
+ peerDependencies:
+ stylis: ^3.5.0
+ dependencies:
+ stylis: 3.5.4
+ dev: false
+
+ /stylis/3.5.4:
+ resolution: {integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==}
+ dev: false
+
+ /stylis/4.2.0:
+ resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
+ dev: false
+
+ /supports-color/2.0.0:
+ resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
+ engines: {node: '>=0.8.0'}
+ dev: false
+
+ /supports-color/5.5.0:
+ resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
+ engines: {node: '>=4'}
+ dependencies:
+ has-flag: 3.0.0
+
+ /supports-color/6.1.0:
+ resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ has-flag: 3.0.0
+ dev: false
+
+ /supports-color/7.2.0:
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+ engines: {node: '>=8'}
+ dependencies:
+ has-flag: 4.0.0
+ dev: false
+
+ /supports-preserve-symlinks-flag/1.0.0:
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
+ dev: false
+
+ /svg-parser/2.0.4:
+ resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
+ dev: false
+
+ /svgo/1.3.2:
+ resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==}
+ engines: {node: '>=4.0.0'}
+ deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x.
+ hasBin: true
+ dependencies:
+ chalk: 2.4.2
+ coa: 2.0.2
+ css-select: 2.1.0
+ css-select-base-adapter: 0.1.1
+ css-tree: 1.0.0-alpha.37
+ csso: 4.2.0
+ js-yaml: 3.14.1
+ mkdirp: 0.5.6
+ object.values: 1.2.0
+ sax: 1.2.4
+ stable: 0.1.8
+ unquote: 1.1.1
+ util.promisify: 1.0.1
+ dev: false
+
+ /symbol-tree/3.2.4:
+ resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
+ dev: false
+
+ /table/5.4.6:
+ resolution: {integrity: sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ ajv: 6.12.6
+ lodash: 4.17.21
+ slice-ansi: 2.1.0
+ string-width: 3.1.0
+ dev: false
+
+ /tapable/1.1.3:
+ resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /terser-webpack-plugin/1.4.5_webpack@4.42.0:
+ resolution: {integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==}
+ engines: {node: '>= 6.9.0'}
+ peerDependencies:
+ webpack: ^4.0.0
+ dependencies:
+ cacache: 12.0.4
+ find-cache-dir: 2.1.0
+ is-wsl: 1.1.0
+ schema-utils: 1.0.0
+ serialize-javascript: 4.0.0
+ source-map: 0.6.1
+ terser: 4.8.1
+ webpack: 4.42.0
+ webpack-sources: 1.4.3
+ worker-farm: 1.7.0
+ dev: false
+
+ /terser-webpack-plugin/2.3.5_webpack@4.42.0:
+ resolution: {integrity: sha512-WlWksUoq+E4+JlJ+h+U+QUzXpcsMSSNXkDy9lBVkSqDn1w23Gg29L/ary9GeJVYCGiNJJX7LnVc4bwL1N3/g1w==}
+ engines: {node: '>= 8.9.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ cacache: 13.0.1
+ find-cache-dir: 3.3.2
+ jest-worker: 25.5.0
+ p-limit: 2.3.0
+ schema-utils: 2.7.1
+ serialize-javascript: 2.1.2
+ source-map: 0.6.1
+ terser: 4.8.1
+ webpack: 4.42.0
+ webpack-sources: 1.4.3
+ transitivePeerDependencies:
+ - bluebird
+ dev: false
+
+ /terser/4.8.1:
+ resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ acorn: 8.12.0
+ commander: 2.20.3
+ source-map: 0.6.1
+ source-map-support: 0.5.21
+ dev: false
+
+ /test-exclude/5.2.3:
+ resolution: {integrity: sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==}
+ engines: {node: '>=6'}
+ dependencies:
+ glob: 7.2.3
+ minimatch: 3.1.2
+ read-pkg-up: 4.0.0
+ require-main-filename: 2.0.0
+ dev: false
+
+ /text-table/0.2.0:
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
+ dev: false
+
+ /throat/4.1.0:
+ resolution: {integrity: sha512-wCVxLDcFxw7ujDxaeJC6nfl2XfHJNYs8yUYJnvMgtPEFlttP9tHSfRUv2vBe6C4hkVFPWoP1P6ZccbYjmSEkKA==}
+ dev: false
+
+ /through/2.3.8:
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+ dev: false
+
+ /through2/2.0.5:
+ resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
+ dependencies:
+ readable-stream: 2.3.8
+ xtend: 4.0.2
+ dev: false
+
+ /thunky/1.1.0:
+ resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
+ dev: false
+
+ /timers-browserify/2.0.12:
+ resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
+ engines: {node: '>=0.6.0'}
+ dependencies:
+ setimmediate: 1.0.5
+ dev: false
+
+ /timsort/0.3.0:
+ resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==}
+ dev: false
+
+ /tiny-invariant/1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
+ dev: false
+
+ /tinycolor2/1.6.0:
+ resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
+ dev: false
+
+ /tmp/0.0.33:
+ resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
+ engines: {node: '>=0.6.0'}
+ dependencies:
+ os-tmpdir: 1.0.2
+ dev: false
+
+ /tmpl/1.0.5:
+ resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
+ dev: false
+
+ /to-arraybuffer/1.0.1:
+ resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==}
+ dev: false
+
+ /to-fast-properties/2.0.0:
+ resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /to-object-path/0.3.0:
+ resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+
+ /to-regex-range/2.1.1:
+ resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ dev: false
+
+ /to-regex-range/5.0.1:
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+ engines: {node: '>=8.0'}
+ dependencies:
+ is-number: 7.0.0
+ dev: false
+
+ /to-regex/3.0.2:
+ resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ regex-not: 1.0.2
+ safe-regex: 1.1.0
+ dev: false
+
+ /toggle-selection/1.0.6:
+ resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==}
+ dev: false
+
+ /toidentifier/1.0.1:
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
+ engines: {node: '>=0.6'}
+ dev: false
+
+ /tough-cookie/2.5.0:
+ resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
+ engines: {node: '>=0.8'}
+ dependencies:
+ psl: 1.9.0
+ punycode: 2.3.1
+ dev: false
+
+ /tough-cookie/4.1.4:
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
+ engines: {node: '>=6'}
+ dependencies:
+ psl: 1.9.0
+ punycode: 2.3.1
+ universalify: 0.2.0
+ url-parse: 1.5.10
+ dev: false
+
+ /tr46/1.0.1:
+ resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
+ dependencies:
+ punycode: 2.3.1
+ dev: false
+
+ /tr46/2.1.0:
+ resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==}
+ engines: {node: '>=8'}
+ dependencies:
+ punycode: 2.3.1
+ dev: false
+
+ /ts-pnp/1.1.6_typescript@3.9.10:
+ resolution: {integrity: sha512-CrG5GqAAzMT7144Cl+UIFP7mz/iIhiy+xQ6GGcnjTezhALT02uPMRw7tgDSESgB5MsfKt55+GPWw4ir1kVtMIQ==}
+ engines: {node: '>=6'}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ typescript: 3.9.10
+ dev: false
+
+ /tslib/1.14.1:
+ resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+ dev: false
+
+ /tslib/2.6.3:
+ resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
+ dev: false
+
+ /tsutils/3.21.0_typescript@3.9.10:
+ resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ dependencies:
+ tslib: 1.14.1
+ typescript: 3.9.10
+ dev: false
+
+ /tty-browserify/0.0.0:
+ resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==}
+ dev: false
+
+ /tunnel-agent/0.6.0:
+ resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: false
+
+ /turndown-plugin-gfm/1.0.2:
+ resolution: {integrity: sha512-vwz9tfvF7XN/jE0dGoBei3FXWuvll78ohzCZQuOb+ZjWrs3a0XhQVomJEb2Qh4VHTPNRO4GPZh0V7VRbiWwkRg==}
+ dev: false
+
+ /turndown/6.0.0:
+ resolution: {integrity: sha512-UVJBhSyRHCpNKtQ00mNWlYUM/i+tcipkb++F0PrOpt0L7EhNd0AX9mWEpL2dRFBu7LWXMp4HgAMA4OeKKnN7og==}
+ dependencies:
+ jsdom: 16.7.0
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /tweetnacl/0.14.5:
+ resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
+ dev: false
+
+ /type-check/0.3.2:
+ resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ prelude-ls: 1.1.2
+ dev: false
+
+ /type-fest/0.21.3:
+ resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+ engines: {node: '>=10'}
+ dev: false
+
+ /type-fest/0.8.1:
+ resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /type-is/1.6.18:
+ resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ media-typer: 0.3.0
+ mime-types: 2.1.35
+ dev: false
+
+ /type/2.7.3:
+ resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
+ dev: false
+
+ /typed-array-buffer/1.0.2:
+ resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-typed-array: 1.1.13
+ dev: false
+
+ /typed-array-byte-length/1.0.1:
+ resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+ dev: false
+
+ /typed-array-byte-offset/1.0.2:
+ resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+ dev: false
+
+ /typed-array-length/1.0.6:
+ resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+ possible-typed-array-names: 1.0.0
+ dev: false
+
+ /typedarray/0.0.6:
+ resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
+ dev: false
+
+ /typescript/3.9.10:
+ resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
+
+ /ua-parser-js/1.0.38:
+ resolution: {integrity: sha512-Aq5ppTOfvrCMgAPneW1HfWj66Xi7XL+/mIy996R1/CLS/rcyJQm6QZdsKrUeivDFQ+Oc9Wyuwor8Ze8peEoUoQ==}
+ dev: false
+
+ /unbox-primitive/1.0.2:
+ resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+ dependencies:
+ call-bind: 1.0.7
+ has-bigints: 1.0.2
+ has-symbols: 1.0.3
+ which-boxed-primitive: 1.0.2
+ dev: false
+
+ /undici-types/5.26.5:
+ resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ dev: false
+
+ /unicode-canonical-property-names-ecmascript/2.0.0:
+ resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /unicode-match-property-ecmascript/2.0.0:
+ resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
+ engines: {node: '>=4'}
+ dependencies:
+ unicode-canonical-property-names-ecmascript: 2.0.0
+ unicode-property-aliases-ecmascript: 2.1.0
+ dev: false
+
+ /unicode-match-property-value-ecmascript/2.1.0:
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /unicode-property-aliases-ecmascript/2.1.0:
+ resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /union-value/1.0.1:
+ resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-union: 3.1.0
+ get-value: 2.0.6
+ is-extendable: 0.1.1
+ set-value: 2.0.1
+ dev: false
+
+ /uniq/1.0.1:
+ resolution: {integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==}
+ dev: false
+
+ /uniqs/2.0.0:
+ resolution: {integrity: sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==}
+ dev: false
+
+ /unique-filename/1.1.1:
+ resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
+ dependencies:
+ unique-slug: 2.0.2
+ dev: false
+
+ /unique-slug/2.0.2:
+ resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==}
+ dependencies:
+ imurmurhash: 0.1.4
+ dev: false
+
+ /universalify/0.1.2:
+ resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
+ engines: {node: '>= 4.0.0'}
+ dev: false
+
+ /universalify/0.2.0:
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
+ engines: {node: '>= 4.0.0'}
+ dev: false
+
+ /unpipe/1.0.0:
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /unquote/1.1.1:
+ resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==}
+ dev: false
+
+ /unset-value/1.0.0:
+ resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ has-value: 0.3.1
+ isobject: 3.0.1
+ dev: false
+
+ /upath/1.2.0:
+ resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /update-browserslist-db/1.0.16_browserslist@4.23.1:
+ resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.23.1
+ escalade: 3.1.2
+ picocolors: 1.0.1
+ dev: false
+
+ /uri-js/4.4.1:
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+ dependencies:
+ punycode: 2.3.1
+ dev: false
+
+ /urix/0.1.0:
+ resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
+ deprecated: Please see https://github.com/lydell/urix#deprecated
+ dev: false
+
+ /url-loader/2.3.0_k66lquhotssodpycel5qq5nq34:
+ resolution: {integrity: sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==}
+ engines: {node: '>= 8.9.0'}
+ peerDependencies:
+ file-loader: '*'
+ webpack: ^4.0.0
+ peerDependenciesMeta:
+ file-loader:
+ optional: true
+ dependencies:
+ file-loader: 4.3.0_webpack@4.42.0
+ loader-utils: 1.4.2
+ mime: 2.6.0
+ schema-utils: 2.7.1
+ webpack: 4.42.0
+ dev: false
+
+ /url-parse/1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+ dependencies:
+ querystringify: 2.2.0
+ requires-port: 1.0.0
+ dev: false
+
+ /url/0.10.3:
+ resolution: {integrity: sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==}
+ dependencies:
+ punycode: 1.3.2
+ querystring: 0.2.0
+ dev: false
+
+ /url/0.11.3:
+ resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==}
+ dependencies:
+ punycode: 1.4.1
+ qs: 6.12.1
+ dev: false
+
+ /use-callback-ref/1.3.2:
+ resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ tslib: 2.6.3
+ dev: false
+
+ /use-sidecar/1.1.2:
+ resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ detect-node-es: 1.1.0
+ tslib: 2.6.3
+ dev: false
+
+ /use/3.1.1:
+ resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /util-deprecate/1.0.2:
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+
+ /util.promisify/1.0.0:
+ resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==}
+ dependencies:
+ define-properties: 1.2.1
+ object.getownpropertydescriptors: 2.1.8
+ dev: false
+
+ /util.promisify/1.0.1:
+ resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==}
+ dependencies:
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ has-symbols: 1.0.3
+ object.getownpropertydescriptors: 2.1.8
+ dev: false
+
+ /util.promisify/1.1.2:
+ resolution: {integrity: sha512-PBdZ03m1kBnQ5cjjO0ZvJMJS+QsbyIcFwi4hY4U76OQsCO9JrOYjbCFgIF76ccFg9xnJo7ZHPkqyj1GqmdS7MA==}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ for-each: 0.3.3
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ object.getownpropertydescriptors: 2.1.8
+ safe-array-concat: 1.1.2
+ dev: false
+
+ /util/0.10.3:
+ resolution: {integrity: sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==}
+ dependencies:
+ inherits: 2.0.1
+ dev: false
+
+ /util/0.10.4:
+ resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==}
+ dependencies:
+ inherits: 2.0.3
+ dev: false
+
+ /util/0.11.1:
+ resolution: {integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==}
+ dependencies:
+ inherits: 2.0.3
+ dev: false
+
+ /util/0.12.5:
+ resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
+ dependencies:
+ inherits: 2.0.4
+ is-arguments: 1.1.1
+ is-generator-function: 1.0.10
+ is-typed-array: 1.1.13
+ which-typed-array: 1.1.15
+ dev: false
+
+ /utila/0.4.0:
+ resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
+ dev: false
+
+ /utils-merge/1.0.1:
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
+ engines: {node: '>= 0.4.0'}
+ dev: false
+
+ /uuid/3.4.0:
+ resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
+ deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
+ hasBin: true
+ dev: false
+
+ /uuid/8.0.0:
+ resolution: {integrity: sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==}
+ hasBin: true
+ dev: false
+
+ /v8-compile-cache/2.4.0:
+ resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
+ dev: false
+
+ /validate-npm-package-license/3.0.4:
+ resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
+ dependencies:
+ spdx-correct: 3.2.0
+ spdx-expression-parse: 3.0.1
+ dev: false
+
+ /vanilla-colorful/0.7.2:
+ resolution: {integrity: sha512-z2YZusTFC6KnLERx1cgoIRX2CjPRP0W75N+3CC6gbvdX5Ch47rZkEMGO2Xnf+IEmi3RiFLxS18gayMA27iU7Kg==}
+ dev: false
+
+ /vary/1.1.2:
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
+ engines: {node: '>= 0.8'}
+ dev: false
+
+ /vendors/1.0.4:
+ resolution: {integrity: sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==}
+ dev: false
+
+ /verror/1.10.0:
+ resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
+ engines: {'0': node >=0.6.0}
+ dependencies:
+ assert-plus: 1.0.0
+ core-util-is: 1.0.2
+ extsprintf: 1.3.0
+ dev: false
+
+ /victory-vendor/36.9.2:
+ resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
+ dependencies:
+ '@types/d3-array': 3.2.1
+ '@types/d3-ease': 3.0.2
+ '@types/d3-interpolate': 3.0.4
+ '@types/d3-scale': 4.0.8
+ '@types/d3-shape': 3.1.6
+ '@types/d3-time': 3.0.3
+ '@types/d3-timer': 3.0.2
+ d3-array: 3.2.4
+ d3-ease: 3.0.1
+ d3-interpolate: 3.0.1
+ d3-scale: 4.0.2
+ d3-shape: 3.2.0
+ d3-time: 3.1.0
+ d3-timer: 3.0.1
+ dev: false
+
+ /vm-browserify/1.1.2:
+ resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
+ dev: false
+
+ /w3c-hr-time/1.0.2:
+ resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
+ deprecated: Use your platform's native performance.now() and performance.timeOrigin.
+ dependencies:
+ browser-process-hrtime: 1.0.0
+ dev: false
+
+ /w3c-xmlserializer/1.1.2:
+ resolution: {integrity: sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==}
+ dependencies:
+ domexception: 1.0.1
+ webidl-conversions: 4.0.2
+ xml-name-validator: 3.0.0
+ dev: false
+
+ /w3c-xmlserializer/2.0.0:
+ resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==}
+ engines: {node: '>=10'}
+ dependencies:
+ xml-name-validator: 3.0.0
+ dev: false
+
+ /walker/1.0.8:
+ resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
+ dependencies:
+ makeerror: 1.0.12
+ dev: false
+
+ /warning/4.0.3:
+ resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
+ dependencies:
+ loose-envify: 1.4.0
+ dev: false
+
+ /watchpack-chokidar2/2.0.1:
+ resolution: {integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==}
+ requiresBuild: true
+ dependencies:
+ chokidar: 2.1.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /watchpack/1.7.5:
+ resolution: {integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==}
+ dependencies:
+ graceful-fs: 4.2.11
+ neo-async: 2.6.2
+ optionalDependencies:
+ chokidar: 3.6.0
+ watchpack-chokidar2: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /wbuf/1.7.3:
+ resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
+ dependencies:
+ minimalistic-assert: 1.0.1
+ dev: false
+
+ /webfontloader/1.6.28:
+ resolution: {integrity: sha512-Egb0oFEga6f+nSgasH3E0M405Pzn6y3/9tOVanv/DLfa1YBIgcv90L18YyWnvXkRbIM17v5Kv6IT2N6g1x5tvQ==}
+ dev: false
+
+ /webidl-conversions/4.0.2:
+ resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
+ dev: false
+
+ /webidl-conversions/5.0.0:
+ resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /webidl-conversions/6.1.0:
+ resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==}
+ engines: {node: '>=10.4'}
+ dev: false
+
+ /webpack-dev-middleware/3.7.3_webpack@4.42.0:
+ resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ memory-fs: 0.4.1
+ mime: 2.6.0
+ mkdirp: 0.5.6
+ range-parser: 1.2.1
+ webpack: 4.42.0
+ webpack-log: 2.0.0
+ dev: false
+
+ /webpack-dev-server/3.10.3_webpack@4.42.0:
+ resolution: {integrity: sha512-e4nWev8YzEVNdOMcNzNeCN947sWJNd43E5XvsJzbAL08kGc2frm1tQ32hTJslRS+H65LCb/AaUCYU7fjHCpDeQ==}
+ engines: {node: '>= 6.11.5'}
+ hasBin: true
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+ dependencies:
+ ansi-html: 0.0.7
+ bonjour: 3.5.0
+ chokidar: 2.1.8_supports-color@6.1.0
+ compression: 1.7.4_supports-color@6.1.0
+ connect-history-api-fallback: 1.6.0
+ debug: 4.3.5_supports-color@6.1.0
+ del: 4.1.1
+ express: 4.19.2_supports-color@6.1.0
+ html-entities: 1.4.0
+ http-proxy-middleware: 0.19.1_cvgmqmby27wuzeql4gbeflp6nq
+ import-local: 2.0.0
+ internal-ip: 4.3.0
+ ip: 1.1.9
+ is-absolute-url: 3.0.3
+ killable: 1.0.1
+ loglevel: 1.9.1
+ opn: 5.5.0
+ p-retry: 3.0.1
+ portfinder: 1.0.32_supports-color@6.1.0
+ schema-utils: 1.0.0
+ selfsigned: 1.10.14
+ semver: 6.3.0
+ serve-index: 1.9.1_supports-color@6.1.0
+ sockjs: 0.3.19
+ sockjs-client: 1.4.0_supports-color@6.1.0
+ spdy: 4.0.2_supports-color@6.1.0
+ strip-ansi: 3.0.1
+ supports-color: 6.1.0
+ url: 0.11.3
+ webpack: 4.42.0
+ webpack-dev-middleware: 3.7.3_webpack@4.42.0
+ webpack-log: 2.0.0
+ ws: 6.2.3
+ yargs: 12.0.5
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ dev: false
+
+ /webpack-log/2.0.0:
+ resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==}
+ engines: {node: '>= 6'}
+ dependencies:
+ ansi-colors: 3.2.4
+ uuid: 3.4.0
+ dev: false
+
+ /webpack-manifest-plugin/2.2.0_webpack@4.42.0:
+ resolution: {integrity: sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==}
+ engines: {node: '>=6.11.5'}
+ peerDependencies:
+ webpack: 2 || 3 || 4
+ dependencies:
+ fs-extra: 7.0.1
+ lodash: 4.17.21
+ object.entries: 1.1.8
+ tapable: 1.1.3
+ webpack: 4.42.0
+ dev: false
+
+ /webpack-sources/1.4.3:
+ resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
+ dependencies:
+ source-list-map: 2.0.1
+ source-map: 0.6.1
+ dev: false
+
+ /webpack/4.42.0:
+ resolution: {integrity: sha512-EzJRHvwQyBiYrYqhyjW9AqM90dE4+s1/XtCfn7uWg6cS72zH+2VPFAlsnW0+W0cDi0XRjNKUMoJtpSi50+Ph6w==}
+ engines: {node: '>=6.11.5'}
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ webpack-command: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+ webpack-command:
+ optional: true
+ dependencies:
+ '@webassemblyjs/ast': 1.8.5
+ '@webassemblyjs/helper-module-context': 1.8.5
+ '@webassemblyjs/wasm-edit': 1.8.5
+ '@webassemblyjs/wasm-parser': 1.8.5
+ acorn: 6.4.2
+ ajv: 6.12.6
+ ajv-keywords: 3.5.2_ajv@6.12.6
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 4.5.0
+ eslint-scope: 4.0.3
+ json-parse-better-errors: 1.0.2
+ loader-runner: 2.4.0
+ loader-utils: 1.4.2
+ memory-fs: 0.4.1
+ micromatch: 3.1.10
+ mkdirp: 0.5.6
+ neo-async: 2.6.2
+ node-libs-browser: 2.2.1
+ schema-utils: 1.0.0
+ tapable: 1.1.3
+ terser-webpack-plugin: 1.4.5_webpack@4.42.0
+ watchpack: 1.7.5
+ webpack-sources: 1.4.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /webrtc-adapter/7.7.1:
+ resolution: {integrity: sha512-TbrbBmiQBL9n0/5bvDdORc6ZfRY/Z7JnEj+EYOD1ghseZdpJ+nF2yx14k3LgQKc7JZnG7HAcL+zHnY25So9d7A==}
+ engines: {node: '>=6.0.0', npm: '>=3.10.0'}
+ dependencies:
+ rtcpeerconnection-shim: 1.2.15
+ sdp: 2.12.0
+ dev: false
+
+ /websocket-driver/0.7.4:
+ resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
+ engines: {node: '>=0.8.0'}
+ dependencies:
+ http-parser-js: 0.5.8
+ safe-buffer: 5.2.1
+ websocket-extensions: 0.1.4
+ dev: false
+
+ /websocket-extensions/0.1.4:
+ resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
+ engines: {node: '>=0.8.0'}
+ dev: false
+
+ /whatwg-encoding/1.0.5:
+ resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==}
+ dependencies:
+ iconv-lite: 0.4.24
+ dev: false
+
+ /whatwg-fetch/3.6.20:
+ resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
+ dev: false
+
+ /whatwg-mimetype/2.3.0:
+ resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==}
+ dev: false
+
+ /whatwg-url/6.5.0:
+ resolution: {integrity: sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==}
+ dependencies:
+ lodash.sortby: 4.7.0
+ tr46: 1.0.1
+ webidl-conversions: 4.0.2
+ dev: false
+
+ /whatwg-url/7.1.0:
+ resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
+ dependencies:
+ lodash.sortby: 4.7.0
+ tr46: 1.0.1
+ webidl-conversions: 4.0.2
+ dev: false
+
+ /whatwg-url/8.7.0:
+ resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==}
+ engines: {node: '>=10'}
+ dependencies:
+ lodash: 4.17.21
+ tr46: 2.1.0
+ webidl-conversions: 6.1.0
+ dev: false
+
+ /which-boxed-primitive/1.0.2:
+ resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+ dependencies:
+ is-bigint: 1.0.4
+ is-boolean-object: 1.1.2
+ is-number-object: 1.0.7
+ is-string: 1.0.7
+ is-symbol: 1.0.4
+ dev: false
+
+ /which-module/2.0.1:
+ resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
+ dev: false
+
+ /which-typed-array/1.1.15:
+ resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.2
+ dev: false
+
+ /which/1.3.1:
+ resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
+ hasBin: true
+ dependencies:
+ isexe: 2.0.0
+ dev: false
+
+ /which/2.0.2:
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
+ hasBin: true
+ dependencies:
+ isexe: 2.0.0
+ dev: false
+
+ /word-wrap/1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
+ /workbox-background-sync/4.3.1:
+ resolution: {integrity: sha512-1uFkvU8JXi7L7fCHVBEEnc3asPpiAL33kO495UMcD5+arew9IbKW2rV5lpzhoWcm/qhGB89YfO4PmB/0hQwPRg==}
+ dependencies:
+ workbox-core: 4.3.1
+ dev: false
+
+ /workbox-broadcast-update/4.3.1:
+ resolution: {integrity: sha512-MTSfgzIljpKLTBPROo4IpKjESD86pPFlZwlvVG32Kb70hW+aob4Jxpblud8EhNb1/L5m43DUM4q7C+W6eQMMbA==}
+ dependencies:
+ workbox-core: 4.3.1
+ dev: false
+
+ /workbox-build/4.3.1:
+ resolution: {integrity: sha512-UHdwrN3FrDvicM3AqJS/J07X0KXj67R8Cg0waq1MKEOqzo89ap6zh6LmaLnRAjpB+bDIz+7OlPye9iii9KBnxw==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ '@babel/runtime': 7.24.7
+ '@hapi/joi': 15.1.1
+ common-tags: 1.8.2
+ fs-extra: 4.0.3
+ glob: 7.2.3
+ lodash.template: 4.5.0
+ pretty-bytes: 5.6.0
+ stringify-object: 3.3.0
+ strip-comments: 1.0.2
+ workbox-background-sync: 4.3.1
+ workbox-broadcast-update: 4.3.1
+ workbox-cacheable-response: 4.3.1
+ workbox-core: 4.3.1
+ workbox-expiration: 4.3.1
+ workbox-google-analytics: 4.3.1
+ workbox-navigation-preload: 4.3.1
+ workbox-precaching: 4.3.1
+ workbox-range-requests: 4.3.1
+ workbox-routing: 4.3.1
+ workbox-strategies: 4.3.1
+ workbox-streams: 4.3.1
+ workbox-sw: 4.3.1
+ workbox-window: 4.3.1
+ dev: false
+
+ /workbox-cacheable-response/4.3.1:
+ resolution: {integrity: sha512-Rp5qlzm6z8IOvnQNkCdO9qrDgDpoPNguovs0H8C+wswLuPgSzSp9p2afb5maUt9R1uTIwOXrVQMmPfPypv+npw==}
+ dependencies:
+ workbox-core: 4.3.1
+ dev: false
+
+ /workbox-core/4.3.1:
+ resolution: {integrity: sha512-I3C9jlLmMKPxAC1t0ExCq+QoAMd0vAAHULEgRZ7kieCdUd919n53WC0AfvokHNwqRhGn+tIIj7vcb5duCjs2Kg==}
+ dev: false
+
+ /workbox-expiration/4.3.1:
+ resolution: {integrity: sha512-vsJLhgQsQouv9m0rpbXubT5jw0jMQdjpkum0uT+d9tTwhXcEZks7qLfQ9dGSaufTD2eimxbUOJfWLbNQpIDMPw==}
+ dependencies:
+ workbox-core: 4.3.1
+ dev: false
+
+ /workbox-google-analytics/4.3.1:
+ resolution: {integrity: sha512-xzCjAoKuOb55CBSwQrbyWBKqp35yg1vw9ohIlU2wTy06ZrYfJ8rKochb1MSGlnoBfXGWss3UPzxR5QL5guIFdg==}
+ deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained
+ dependencies:
+ workbox-background-sync: 4.3.1
+ workbox-core: 4.3.1
+ workbox-routing: 4.3.1
+ workbox-strategies: 4.3.1
+ dev: false
+
+ /workbox-navigation-preload/4.3.1:
+ resolution: {integrity: sha512-K076n3oFHYp16/C+F8CwrRqD25GitA6Rkd6+qAmLmMv1QHPI2jfDwYqrytOfKfYq42bYtW8Pr21ejZX7GvALOw==}
+ dependencies:
+ workbox-core: 4.3.1
+ dev: false
+
+ /workbox-precaching/4.3.1:
+ resolution: {integrity: sha512-piSg/2csPoIi/vPpp48t1q5JLYjMkmg5gsXBQkh/QYapCdVwwmKlU9mHdmy52KsDGIjVaqEUMFvEzn2LRaigqQ==}
+ dependencies:
+ workbox-core: 4.3.1
+ dev: false
+
+ /workbox-range-requests/4.3.1:
+ resolution: {integrity: sha512-S+HhL9+iTFypJZ/yQSl/x2Bf5pWnbXdd3j57xnb0V60FW1LVn9LRZkPtneODklzYuFZv7qK6riZ5BNyc0R0jZA==}
+ dependencies:
+ workbox-core: 4.3.1
+ dev: false
+
+ /workbox-routing/4.3.1:
+ resolution: {integrity: sha512-FkbtrODA4Imsi0p7TW9u9MXuQ5P4pVs1sWHK4dJMMChVROsbEltuE79fBoIk/BCztvOJ7yUpErMKa4z3uQLX+g==}
+ dependencies:
+ workbox-core: 4.3.1
+ dev: false
+
+ /workbox-strategies/4.3.1:
+ resolution: {integrity: sha512-F/+E57BmVG8dX6dCCopBlkDvvhg/zj6VDs0PigYwSN23L8hseSRwljrceU2WzTvk/+BSYICsWmRq5qHS2UYzhw==}
+ dependencies:
+ workbox-core: 4.3.1
+ dev: false
+
+ /workbox-streams/4.3.1:
+ resolution: {integrity: sha512-4Kisis1f/y0ihf4l3u/+ndMkJkIT4/6UOacU3A4BwZSAC9pQ9vSvJpIi/WFGQRH/uPXvuVjF5c2RfIPQFSS2uA==}
+ dependencies:
+ workbox-core: 4.3.1
+ dev: false
+
+ /workbox-sw/4.3.1:
+ resolution: {integrity: sha512-0jXdusCL2uC5gM3yYFT6QMBzKfBr2XTk0g5TPAV4y8IZDyVNDyj1a8uSXy3/XrvkVTmQvLN4O5k3JawGReXr9w==}
+ dev: false
+
+ /workbox-webpack-plugin/4.3.1_webpack@4.42.0:
+ resolution: {integrity: sha512-gJ9jd8Mb8wHLbRz9ZvGN57IAmknOipD3W4XNE/Lk/4lqs5Htw4WOQgakQy/o/4CoXQlMCYldaqUg+EJ35l9MEQ==}
+ engines: {node: '>=4.0.0'}
+ peerDependencies:
+ webpack: ^2.0.0 || ^3.0.0 || ^4.0.0
+ dependencies:
+ '@babel/runtime': 7.24.7
+ json-stable-stringify: 1.1.1
+ webpack: 4.42.0
+ workbox-build: 4.3.1
+ dev: false
+
+ /workbox-window/4.3.1:
+ resolution: {integrity: sha512-C5gWKh6I58w3GeSc0wp2Ne+rqVw8qwcmZnQGpjiek8A2wpbxSJb1FdCoQVO+jDJs35bFgo/WETgl1fqgsxN0Hg==}
+ dependencies:
+ workbox-core: 4.3.1
+ dev: false
+
+ /worker-farm/1.7.0:
+ resolution: {integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==}
+ dependencies:
+ errno: 0.1.8
+ dev: false
+
+ /worker-rpc/0.1.1:
+ resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==}
+ dependencies:
+ microevent.ts: 0.1.1
+ dev: false
+
+ /wrap-ansi/2.1.0:
+ resolution: {integrity: sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ string-width: 1.0.2
+ strip-ansi: 3.0.1
+ dev: false
+
+ /wrap-ansi/5.1.0:
+ resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==}
+ engines: {node: '>=6'}
+ dependencies:
+ ansi-styles: 3.2.1
+ string-width: 3.1.0
+ strip-ansi: 5.2.0
+ dev: false
+
+ /wrappy/1.0.2:
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+ dev: false
+
+ /write-file-atomic/2.4.1:
+ resolution: {integrity: sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==}
+ dependencies:
+ graceful-fs: 4.2.11
+ imurmurhash: 0.1.4
+ signal-exit: 3.0.7
+ dev: false
+
+ /write/1.0.3:
+ resolution: {integrity: sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==}
+ engines: {node: '>=4'}
+ dependencies:
+ mkdirp: 0.5.6
+ dev: false
+
+ /ws/5.2.4:
+ resolution: {integrity: sha512-fFCejsuC8f9kOSu9FYaOw8CdO68O3h5v0lg4p74o8JqWpwTf9tniOD+nOB78aWoVSS6WptVUmDrp/KPsMVBWFQ==}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ dependencies:
+ async-limiter: 1.0.1
+ dev: false
+
+ /ws/6.2.3:
+ resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ dependencies:
+ async-limiter: 1.0.1
+ dev: false
+
+ /ws/7.5.10:
+ resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==}
+ engines: {node: '>=8.3.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ dev: false
+
+ /xml-name-validator/3.0.0:
+ resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==}
+ dev: false
+
+ /xml2js/0.6.2:
+ resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ sax: 1.2.1
+ xmlbuilder: 11.0.1
+ dev: false
+
+ /xmlbuilder/11.0.1:
+ resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
+ engines: {node: '>=4.0'}
+ dev: false
+
+ /xmlchars/2.2.0:
+ resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
+ dev: false
+
+ /xregexp/4.4.1:
+ resolution: {integrity: sha512-2u9HwfadaJaY9zHtRRnH6BY6CQVNQKkYm3oLtC9gJXXzfsbACg5X5e4EZZGVAH+YIfa+QA9lsFQTTe3HURF3ag==}
+ dependencies:
+ '@babel/runtime-corejs3': 7.24.7
+ dev: false
+
+ /xtend/4.0.2:
+ resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
+ engines: {node: '>=0.4'}
+ dev: false
+
+ /y18n/4.0.3:
+ resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
+ dev: false
+
+ /yallist/3.1.1:
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
+ dev: false
+
+ /yallist/4.0.0:
+ resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+ dev: false
+
+ /yaml/1.10.2:
+ resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
+ engines: {node: '>= 6'}
+ dev: false
+
+ /yargs-parser/11.1.1:
+ resolution: {integrity: sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==}
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: false
+
+ /yargs-parser/13.1.2:
+ resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==}
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: false
+
+ /yargs/12.0.5:
+ resolution: {integrity: sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==}
+ dependencies:
+ cliui: 4.1.0
+ decamelize: 1.2.0
+ find-up: 3.0.0
+ get-caller-file: 1.0.3
+ os-locale: 3.1.0
+ require-directory: 2.1.1
+ require-main-filename: 1.0.1
+ set-blocking: 2.0.0
+ string-width: 2.1.1
+ which-module: 2.0.1
+ y18n: 4.0.3
+ yargs-parser: 11.1.1
+ dev: false
+
+ /yargs/13.3.2:
+ resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==}
+ dependencies:
+ cliui: 5.0.0
+ find-up: 3.0.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 3.1.0
+ which-module: 2.0.1
+ y18n: 4.0.3
+ yargs-parser: 13.1.2
+ dev: false
diff --git a/clients/packages/canary-client/public/locales/en/widgetActions.json b/clients/packages/canary-client/public/locales/en/widgetActions.json
index 7228f30d99..b3ca87449d 100644
--- a/clients/packages/canary-client/public/locales/en/widgetActions.json
+++ b/clients/packages/canary-client/public/locales/en/widgetActions.json
@@ -41,7 +41,7 @@
"defaultForm": {
"error": "Houve um erro ao salvar o formulário",
"success": "EBA! Suas alterações foram salvas.",
- "submit": "Salvar"
+ "submit": "Salvar alterações"
},
"adjusts": {
"title": "Formulário",
diff --git a/clients/packages/canary-client/public/locales/es/widgetActions.json b/clients/packages/canary-client/public/locales/es/widgetActions.json
index 7228f30d99..b3ca87449d 100644
--- a/clients/packages/canary-client/public/locales/es/widgetActions.json
+++ b/clients/packages/canary-client/public/locales/es/widgetActions.json
@@ -41,7 +41,7 @@
"defaultForm": {
"error": "Houve um erro ao salvar o formulário",
"success": "EBA! Suas alterações foram salvas.",
- "submit": "Salvar"
+ "submit": "Salvar alterações"
},
"adjusts": {
"title": "Formulário",
diff --git a/clients/packages/canary-client/public/locales/pt-BR/widgetActions.json b/clients/packages/canary-client/public/locales/pt-BR/widgetActions.json
index dfc7d36a4f..64c86061a6 100644
--- a/clients/packages/canary-client/public/locales/pt-BR/widgetActions.json
+++ b/clients/packages/canary-client/public/locales/pt-BR/widgetActions.json
@@ -35,7 +35,7 @@
"defaultForm": {
"error": "Houve um erro ao salvar o formulário",
"success": "EBA! Suas alterações foram salvas.",
- "submit": "Salvar"
+ "submit": "Salvar alterações"
},
"pressure": {
"targets": {
diff --git a/clients/packages/canary-client/src/scenes/WidgetActions/Settings/Autofire/CKEditor5Field.tsx b/clients/packages/canary-client/src/scenes/WidgetActions/Settings/Autofire/CKEditor5Field.tsx
new file mode 100644
index 0000000000..af8faff0a6
--- /dev/null
+++ b/clients/packages/canary-client/src/scenes/WidgetActions/Settings/Autofire/CKEditor5Field.tsx
@@ -0,0 +1,56 @@
+import React from "react";
+import { FormControl, FormLabel, Flex, Tooltip, Stack } from "bonde-components/chakra";
+import { Hint } from "bonde-components";
+import { InfoIcon } from "bonde-components/icons";
+import { useField } from "bonde-components/form";
+
+import { CKEditor } from "@ckeditor/ckeditor5-react";
+import ClassicEditor from "ckeditor5-custom-build";
+
+
+const CKEditor5Field = ({
+ name,
+ helpText,
+ label,
+ ...config
+}: any) => {
+ const { input, meta } = useField(name, config);
+ const editorConfig: any = {
+ s3Upload: {
+ signingUrl: process.env.REACT_APP_UPLOADS_URL
+ }
+ }
+
+ return (
+
+
+
+ {label}
+ {helpText && (
+
+
+
+ )}
+
+ {(meta.error || meta.submitError) && meta.touched && (
+ {meta.error || meta.submitError}
+ )}
+
+ {
+ const data = editor.getData();
+ console.log("event, editor, data", { event, editor, data });
+ input.onChange(data);
+ }}
+ />
+
+ )
+}
+
+export default CKEditor5Field;
\ No newline at end of file
diff --git a/clients/packages/canary-client/src/scenes/WidgetActions/Settings/Autofire/index.tsx b/clients/packages/canary-client/src/scenes/WidgetActions/Settings/Autofire/index.tsx
index 47dc22e7b1..39746c0793 100644
--- a/clients/packages/canary-client/src/scenes/WidgetActions/Settings/Autofire/index.tsx
+++ b/clients/packages/canary-client/src/scenes/WidgetActions/Settings/Autofire/index.tsx
@@ -1,5 +1,8 @@
import React from "react";
-import { InputField, TextareaField, Validators } from 'bonde-components';
+import { useTranslation } from "react-i18next";
+import styled from 'styled-components';
+
+import { InputField, Validators } from 'bonde-components';
import {
Box,
Button,
@@ -8,12 +11,27 @@ import {
GridItem,
Heading
} from "bonde-components/chakra";
-import { useTranslation } from "react-i18next";
-import { Widget } from "../../FetchWidgets";
+
+
+
import { noSpecialCharacters } from "../../../../services/utils";
+import { Widget } from "../../FetchWidgets";
import SettingsForm from '../SettingsForm';
import EmailMetrics from './EmailMetrics';
+import CKEditor5Field from "./CKEditor5Field";
+
+const Styles = styled.div`
+ .emailBody {
+ padding-bottom: 30px;
+ }
+
+ .emailBody--label {
+ padding-bottom: 4px;
+ }
+`
+
+
type Props = {
widget: Widget;
updateCache: any;
@@ -24,68 +42,71 @@ const { required, composeValidators, isEmail } = Validators;
const AutofireForm = ({ widget, updateCache }: Props): React.ReactElement => {
const { t } = useTranslation("widgetActions");
+ console.log("settings", { settings: widget.settings });
+
return (
- {
- updateCache(result.data.update_widgets.returning[0])
- }}
- initialValues={{
- settings: widget.settings
- }}
- >
- {({ submitting, dirty }: any) => (
-
-
-
- {t("settings.autofire.title")}
-
-
-
-
-
- {t('settings.defaultForm.submit')}
-
-
-
-
-
-
-
- )}
-
+
+ {
+ updateCache(result.data.update_widgets.returning[0])
+ }}
+ initialValues={{
+ settings: widget.settings
+ }}
+ >
+ {({ submitting, dirty }: any) => (
+
+
+
+ {t("settings.autofire.title")}
+
+
+
+
+
+ {t('settings.defaultForm.submit')}
+
+
+
+
+
+
+
+ )}
+
+
);
};
diff --git a/clients/pnpm-lock.yaml b/clients/pnpm-lock.yaml
index 5f95e79377..908d79e64d 100644
--- a/clients/pnpm-lock.yaml
+++ b/clients/pnpm-lock.yaml
@@ -39,6 +39,7 @@ importers:
i18next-browser-languagedetector: ^5.0.1
i18next-http-backend: ^1.0.17
jest: ^27.5.1
+ m: ^1.9.0
react: ^17
react-dom: ^17
react-grid-system: 7.0.3
@@ -51,53 +52,127 @@ importers:
ts-node: ^10.5.0
typescript-plugin-css-modules: ^3.4.0
dependencies:
- '@chakra-ui/react': 1.7.1_hohxhc2bb7dbruzf2bcgilu2se
- '@emotion/react': 11.6.0_oqfjjbydlevwhoma3gspdo4w3y
- '@emotion/styled': 11.6.0_e4kk3rva445j2nofcqvgnixrvq
- babel-plugin-transform-async-to-promises: 0.8.15
+ '@chakra-ui/react': 1.8.9_jdfsfgm3x3dkhqibn6vbldlvwe
+ '@emotion/react': 11.6.0_3r2q4vqikxqiwlpkbpcd6cn6l4
+ '@emotion/styled': 11.11.5_kkhqicprxlu6q33iq5g7sydvnq
+ babel-plugin-transform-async-to-promises: 0.8.18
faker: 5.5.3
framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
i18next: 19.9.2
i18next-browser-languagedetector: 5.0.1
- i18next-http-backend: 1.3.1
+ i18next-http-backend: 1.4.5
+ m: 1.9.0
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-grid-system: 7.0.3_react@17.0.2
- react-i18next: 11.14.2_ftpfmoxqd2lj3y767446p7m2ce
- react-router-dom: 5.3.0_react@17.0.2
- serve: 13.0.2
+ react-i18next: 11.18.6_r4vbf6j3grmryggditgyffazwe
+ react-router-dom: 5.3.4_react@17.0.2
+ serve: 13.0.4
styled-components: 5.0.1_sfoxds7t5ydpegc3knd667wn6m
devDependencies:
- '@babel/helper-environment-visitor': 7.16.7
+ '@babel/helper-environment-visitor': 7.24.7
'@babel/preset-env': 7.13.15
'@babel/preset-react': 7.13.13
'@testing-library/jest-dom': 4.2.4
'@testing-library/react': 11.2.7_sfoxds7t5ydpegc3knd667wn6m
'@testing-library/user-event': 12.8.3
- '@types/enzyme': 3.10.11
- '@types/enzyme-adapter-react-16': 1.0.6
+ '@types/enzyme': 3.10.18
+ '@types/enzyme-adapter-react-16': 1.0.9
'@types/faker': 5.5.9
- '@types/graceful-fs': 4.1.5
- '@types/jest': 27.4.0
- '@types/node': 17.0.18
- '@types/normalize-package-data': 2.4.1
- '@types/prettier': 2.4.2
- '@types/react': 16.14.21
- '@types/react-dom': 16.9.14
- '@types/react-router-dom': 5.3.2
- '@types/scheduler': 0.16.2
- '@types/styled-components': 5.1.15
+ '@types/graceful-fs': 4.1.9
+ '@types/jest': 27.5.2
+ '@types/node': 17.0.45
+ '@types/normalize-package-data': 2.4.4
+ '@types/prettier': 2.7.3
+ '@types/react': 16.14.60
+ '@types/react-dom': 16.9.24
+ '@types/react-router-dom': 5.3.3
+ '@types/scheduler': 0.16.8
+ '@types/styled-components': 5.1.34
'@typescript-eslint/eslint-plugin': 4.33.0_ffi3uiz42rv3jyhs6cr7p7qqry
'@typescript-eslint/parser': 4.33.0_eslint@7.32.0
- '@wojtekmaj/enzyme-adapter-react-17': 0.6.6_7ltvq4e2railvf5uya4ffxpe2a
+ '@wojtekmaj/enzyme-adapter-react-17': 0.6.7_7ltvq4e2railvf5uya4ffxpe2a
babel-jest: 27.5.1
enzyme: 3.11.0
eslint: 7.32.0
- jest: 27.5.1_ts-node@10.5.0
+ jest: 27.5.1_ts-node@10.9.2
react-test-renderer: 16.7.0_react@17.0.2
- ts-jest: 27.1.3_kkev54cduf7c2ijiuki6n7mgqu
- ts-node: 10.5.0_@types+node@17.0.18
- typescript-plugin-css-modules: 3.4.0_ts-node@10.5.0
+ ts-jest: 27.1.5_odqqgqpulgmvbrmxvpi5rnkgua
+ ts-node: 10.9.2_@types+node@17.0.45
+ typescript-plugin-css-modules: 3.4.0_ts-node@10.9.2
+
+ libs/ckeditor5-custom-build:
+ specifiers:
+ '@ckeditor/ckeditor5-alignment': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-dev-translations': ^32.1.2
+ '@ckeditor/ckeditor5-dev-utils': ^32.1.2
+ '@ckeditor/ckeditor5-editor-classic': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-font': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-html-support': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-special-characters': 41.4.2
+ '@ckeditor/ckeditor5-style': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-theme-lark': 41.4.2
+ '@ckeditor/ckeditor5-undo': 41.4.2
+ '@ckeditor/ckeditor5-upload': 41.4.2
+ css-loader: ^5.2.7
+ postcss: ^8.4.38
+ postcss-loader: ^4.3.0
+ raw-loader: ^4.0.2
+ style-loader: ^2.0.0
+ terser-webpack-plugin: ^4.2.3
+ ts-loader: ^9.5.1
+ typescript: 5.0.4
+ webpack: ^5.91.0
+ webpack-cli: ^4.10.0
+ dependencies:
+ '@ckeditor/ckeditor5-alignment': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-editor-classic': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-font': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-html-support': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-special-characters': 41.4.2
+ '@ckeditor/ckeditor5-style': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-undo': 41.4.2
+ '@ckeditor/ckeditor5-upload': 41.4.2
+ devDependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-dev-translations': 32.1.2
+ '@ckeditor/ckeditor5-dev-utils': 32.1.2_noj5fmpgd6g2myobhnpnujoode
+ '@ckeditor/ckeditor5-theme-lark': 41.4.2
+ css-loader: 5.2.7_webpack@5.92.1
+ postcss: 8.4.38
+ postcss-loader: 4.3.0_7yemt7gjo74q3cwnxqf4xneyva
+ raw-loader: 4.0.2_webpack@5.92.1
+ style-loader: 2.0.0_webpack@5.92.1
+ terser-webpack-plugin: 4.2.3_webpack@5.92.1
+ ts-loader: 9.5.1_noj5fmpgd6g2myobhnpnujoode
+ typescript: 5.0.4
+ webpack: 5.92.1_webpack-cli@4.10.0
+ webpack-cli: 4.10.0_webpack@5.92.1
libs/components:
specifiers:
@@ -177,77 +252,77 @@ importers:
tsdx: ^0.12.3
tslib: ^1.11.1
dependencies:
- '@chakra-ui/accordion': 1.4.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/alert': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/anatomy': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/avatar': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/breadcrumb': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/button': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/checkbox': 1.6.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/close-button': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/color-mode': 1.3.1_react@17.0.2
- '@chakra-ui/control-box': 1.1.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/counter': 1.2.1_react@17.0.2
- '@chakra-ui/css-reset': 1.1.1_bhl5vdmfhgrmmnujbwj5uarsuq
- '@chakra-ui/editable': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/form-control': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/icon': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/image': 1.1.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/input': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/layout': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/media-query': 1.2.1_ldgmaszjwy7d6qqvxbzdhyxvbi
- '@chakra-ui/menu': 1.8.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/modal': 1.10.1_7wihkl32ytmneylmnbtekrupgu
- '@chakra-ui/number-input': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/pin-input': 1.7.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/popover': 1.10.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/popper': 2.4.1_react@17.0.2
- '@chakra-ui/portal': 1.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@chakra-ui/progress': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/radio': 1.4.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/react': 1.7.1_qcpoz2wordhfo7j6fnvactvvqi
- '@chakra-ui/select': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/skeleton': 1.2.1_s6mleg3cczlxbe7x73shvo7p54
- '@chakra-ui/slider': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/spinner': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/stat': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/switch': 1.3.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/table': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/tabs': 1.6.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/tag': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/textarea': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/theme': 1.12.1_@chakra-ui+system@1.8.1
- '@chakra-ui/theme-tools': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/toast': 1.4.1_y6pi277ipbrjv6rvm4c7e2uxei
- '@chakra-ui/tooltip': 1.4.1_y6pi277ipbrjv6rvm4c7e2uxei
- '@chakra-ui/transition': 1.4.1_n2argv7ng3tf56dasmod6pcm2a
- '@chakra-ui/visually-hidden': 1.1.1_3adleehe2yjij555ufmwj4o2wa
- '@emotion/react': 11.6.0_63c2cwvf5qxa7xvwanoyxjll5u
- '@emotion/styled': 11.6.0_6kodsbfeouj3i2xi3r6t5ga57i
- final-form: 4.20.4
+ '@chakra-ui/accordion': 1.4.12_lzykphg6aa5qb7fo3rwhgzwawu
+ '@chakra-ui/alert': 1.3.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/anatomy': 1.3.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/avatar': 1.3.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/breadcrumb': 1.3.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/button': 1.5.10_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/checkbox': 1.7.1_lzykphg6aa5qb7fo3rwhgzwawu
+ '@chakra-ui/close-button': 1.2.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/color-mode': 1.4.8_react@17.0.2
+ '@chakra-ui/control-box': 1.1.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/counter': 1.2.10_react@17.0.2
+ '@chakra-ui/css-reset': 1.1.3_bhl5vdmfhgrmmnujbwj5uarsuq
+ '@chakra-ui/editable': 1.4.2_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/icon': 1.2.1_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/image': 1.1.10_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/input': 1.4.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/layout': 1.8.0_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/media-query': 1.2.5_sxr25aaor3bltw4csjjk62xw3q
+ '@chakra-ui/menu': 1.8.12_lzykphg6aa5qb7fo3rwhgzwawu
+ '@chakra-ui/modal': 1.11.1_isnjqzjzhp7xwxqhxwvxgnrzlm
+ '@chakra-ui/number-input': 1.4.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/pin-input': 1.7.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/popover': 1.11.9_lzykphg6aa5qb7fo3rwhgzwawu
+ '@chakra-ui/popper': 2.4.3_react@17.0.2
+ '@chakra-ui/portal': 1.3.10_sfoxds7t5ydpegc3knd667wn6m
+ '@chakra-ui/progress': 1.2.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/radio': 1.5.1_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/react': 1.8.9_jdfsfgm3x3dkhqibn6vbldlvwe
+ '@chakra-ui/select': 1.2.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/skeleton': 1.2.14_62ih5yuqi6emnjq2bcayg54u3a
+ '@chakra-ui/slider': 1.5.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/spinner': 1.2.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/stat': 1.2.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/switch': 1.3.10_lzykphg6aa5qb7fo3rwhgzwawu
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/table': 1.3.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/tabs': 1.6.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/tag': 1.2.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/textarea': 1.2.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/toast': 1.5.9_7zle6kimbr3ksfblqacc64j6vu
+ '@chakra-ui/tooltip': 1.5.1_7zle6kimbr3ksfblqacc64j6vu
+ '@chakra-ui/transition': 1.4.8_n2argv7ng3tf56dasmod6pcm2a
+ '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca
+ '@emotion/react': 11.6.0_4i3xo6dz6apzhebz25wvccraoy
+ '@emotion/styled': 11.11.5_kkhqicprxlu6q33iq5g7sydvnq
+ final-form: 4.20.10
framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
react-color: 2.19.3_react@17.0.2
- react-final-form: 6.5.7_soexlzopzjzlvc3z6yg6dqhpvi
+ react-final-form: 6.5.9_3yxkfq5ui5vew7hpdzcaudhbla
react-google-font-loader: 1.1.0_sfoxds7t5ydpegc3knd667wn6m
react-s3-uploader: 4.9.3
react-select: 3.2.0_sfoxds7t5ydpegc3knd667wn6m
- react-table: 7.7.0_react@17.0.2
+ react-table: 7.8.0_react@17.0.2
react-toastify: 6.2.0_sfoxds7t5ydpegc3knd667wn6m
devDependencies:
- '@babel/core': 7.16.0
- '@storybook/addon-actions': 5.3.21_oh4n666hh2uxbpcfsug7rggmyu
+ '@babel/core': 7.13.15
+ '@storybook/addon-actions': 5.3.21_nf4je3trjzgi35stey6r6fj7ei
'@storybook/addon-links': 5.3.21_sfoxds7t5ydpegc3knd667wn6m
- '@storybook/addons': 5.3.21_react-dom@17.0.2
- '@storybook/react': 5.3.21_sqzbkbjhjav7mcfj63cxu4z4tu
- '@types/react': 17.0.35
- '@types/react-color': 3.0.6
- '@types/react-dom': 17.0.11
+ '@storybook/addons': 5.3.22_react-dom@17.0.2
+ '@storybook/react': 5.3.21_bh4sj4sfymj237s7zcvgwvokc4
+ '@types/react': 16.14.60
+ '@types/react-color': 3.0.12
+ '@types/react-dom': 16.9.24
'@types/react-select': 3.1.2
'@types/react-table': 7.0.22
- '@types/styled-components': 5.1.15
- babel-loader: 8.2.3_@babel+core@7.16.0
+ '@types/styled-components': 5.1.34
+ babel-loader: 8.2.2_@babel+core@7.13.15
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
ts-loader: 6.2.2
@@ -275,20 +350,20 @@ importers:
tsdx: ^0.12.3
tslib: ^1.11.1
dependencies:
- '@apollo/client': 3.4.17_yaujofatqqw66zcfkmual2ppy4
+ '@apollo/client': 3.10.4_exzkn5baivpwhodnhndlbnbnga
axios: 0.21.4
faker: 4.1.0
framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
- graphql: 15.7.2
- js-cookie: 3.0.1
- pino: 6.13.3
+ graphql: 15.8.0
+ js-cookie: 3.0.5
+ pino: 6.14.0
devDependencies:
'@types/faker': 4.1.12
- '@types/js-cookie': 3.0.1
+ '@types/js-cookie': 3.0.6
'@types/pino': 6.3.12
- '@types/react': 17.0.35
- '@types/react-dom': 17.0.11
- '@types/react-router-dom': 5.3.2
+ '@types/react': 16.14.60
+ '@types/react-dom': 16.9.24
+ '@types/react-router-dom': 5.3.3
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
ts-jest: 26.5.6
@@ -345,9 +420,9 @@ importers:
'@slate-editor/toggle-readonly': link:../slate-editor-toggle-readonly
'@slate-editor/underline-plugin': link:../slate-editor-underline-plugin
'@slate-editor/utils': link:../slate-editor-utils
- classnames: 2.3.1
+ classnames: 2.5.1
immutable: 3.8.2
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
slate: 0.41.3_xqes2epxgajwa2ujqadoxgmfjq
@@ -358,7 +433,7 @@ importers:
babel-preset-react: 6.24.1
babel-preset-stage-0: 6.24.1
enzyme: 3.11.0
- enzyme-adapter-react-16: 1.15.6_7ltvq4e2railvf5uya4ffxpe2a
+ enzyme-adapter-react-16: 1.15.8_7ltvq4e2railvf5uya4ffxpe2a
libs/slate-editor-alignment-plugin:
specifiers:
@@ -374,7 +449,7 @@ importers:
react-fontawesome: ^1.6.1
dependencies:
'@slate-editor/components': link:../slate-editor-components
- classnames: 2.3.1
+ classnames: 2.5.1
exenv: 1.2.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -400,7 +475,7 @@ importers:
dependencies:
'@slate-editor/components': link:../slate-editor-components
'@slate-editor/utils': link:../slate-editor-utils
- classnames: 2.3.1
+ classnames: 2.5.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-fontawesome: 1.7.1_react@17.0.2
@@ -427,9 +502,9 @@ importers:
react-fontawesome: ^1.6.1
dependencies:
'@slate-editor/components': link:../slate-editor-components
- classnames: 2.3.1
+ classnames: 2.5.1
exenv: 1.2.2
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
react-color: 2.19.3_react@17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -443,7 +518,7 @@ importers:
libs/slate-editor-components:
specifiers:
- '@slate-editor/utils': ^5.1.2
+ '@slate-editor/utils': workspace:*
babel-cli: ^6.14.0
babel-preset-env: ^1.6.1
babel-preset-react: ^6.11.1
@@ -454,7 +529,7 @@ importers:
react-dom: ^17
dependencies:
'@slate-editor/utils': link:../slate-editor-utils
- classnames: 2.3.1
+ classnames: 2.5.1
exenv: 1.2.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -480,7 +555,7 @@ importers:
dependencies:
'@slate-editor/components': link:../slate-editor-components
'@slate-editor/utils': link:../slate-editor-utils
- classnames: 2.3.1
+ classnames: 2.5.1
exenv: 1.2.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -493,7 +568,7 @@ importers:
libs/slate-editor-font-family-plugin:
specifiers:
- '@slate-editor/utils': ^5.1.2
+ '@slate-editor/utils': workspace:*
babel-cli: ^6.14.0
babel-preset-env: ^1.6.1
babel-preset-react: ^6.11.1
@@ -503,7 +578,7 @@ importers:
react-dom: ^17
dependencies:
'@slate-editor/utils': link:../slate-editor-utils
- classnames: 2.3.1
+ classnames: 2.5.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
devDependencies:
@@ -514,7 +589,7 @@ importers:
libs/slate-editor-font-size-plugin:
specifiers:
- '@slate-editor/utils': ^5.1.2
+ '@slate-editor/utils': workspace:*
babel-cli: ^6.14.0
babel-preset-env: ^1.6.1
babel-preset-react: ^6.11.1
@@ -525,7 +600,7 @@ importers:
react-dom: ^17
dependencies:
'@slate-editor/utils': link:../slate-editor-utils
- classnames: 2.3.1
+ classnames: 2.5.1
exenv: 1.2.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -549,7 +624,7 @@ importers:
react-fontawesome: ^1.6.1
dependencies:
'@slate-editor/components': link:../slate-editor-components
- classnames: 2.3.1
+ classnames: 2.5.1
exenv: 1.2.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -577,7 +652,7 @@ importers:
dependencies:
'@slate-editor/components': link:../slate-editor-components
'@slate-editor/utils': link:../slate-editor-utils
- classnames: 2.3.1
+ classnames: 2.5.1
exenv: 1.2.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -604,7 +679,7 @@ importers:
dependencies:
'@slate-editor/components': link:../slate-editor-components
'@slate-editor/utils': link:../slate-editor-utils
- classnames: 2.3.1
+ classnames: 2.5.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-fontawesome: 1.7.1_react@17.0.2
@@ -630,7 +705,7 @@ importers:
dependencies:
'@slate-editor/components': link:../slate-editor-components
'@slate-editor/utils': link:../slate-editor-utils
- classnames: 2.3.1
+ classnames: 2.5.1
exenv: 1.2.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -655,7 +730,7 @@ importers:
react-fontawesome: ^1.6.1
dependencies:
'@slate-editor/components': link:../slate-editor-components
- classnames: 2.3.1
+ classnames: 2.5.1
exenv: 1.2.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -702,7 +777,7 @@ importers:
react-fontawesome: ^1.6.1
dependencies:
'@slate-editor/components': link:../slate-editor-components
- classnames: 2.3.1
+ classnames: 2.5.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-fontawesome: 1.7.1_react@17.0.2
@@ -748,7 +823,7 @@ importers:
dependencies:
'@slate-editor/components': link:../slate-editor-components
'@slate-editor/utils': link:../slate-editor-utils
- classnames: 2.3.1
+ classnames: 2.5.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-fontawesome: 1.7.1_react@17.0.2
@@ -857,7 +932,7 @@ importers:
'@babel/plugin-proposal-decorators': 7.13.15_@babel+core@7.13.15
'@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.13.15
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.13.15
- '@babel/plugin-syntax-jsx': 7.16.0_@babel+core@7.13.15
+ '@babel/plugin-syntax-jsx': 7.24.7_@babel+core@7.13.15
'@babel/plugin-transform-classes': 7.13.0_@babel+core@7.13.15
'@babel/plugin-transform-destructuring': 7.13.0_@babel+core@7.13.15
'@babel/plugin-transform-flow-strip-types': 7.13.0_@babel+core@7.13.15
@@ -882,51 +957,51 @@ importers:
'@slate-editor/list-plugin': link:../slate-editor-list-plugin
'@slate-editor/strikethrough-plugin': link:../slate-editor-strikethrough-plugin
'@slate-editor/underline-plugin': link:../slate-editor-underline-plugin
- apollo-client: 2.6.10_graphql@15.7.2
+ apollo-client: 2.6.10_graphql@15.8.0
axios: 0.21.4
babel-loader: 8.2.2_@babel+core@7.13.15
babel-plugin-dynamic-import-node: 2.3.3
babel-plugin-macros: 3.0.1
babel-plugin-transform-react-remove-prop-types: 0.4.24
basscss-sass: 4.0.0
- classnames: 2.3.1
+ classnames: 2.5.1
draft-js: 0.11.7_wcqkhtmu7mswc6yz4uyexck3ty
exenv: 1.2.2
format-number: 3.0.0
- graphql: 15.7.2
- immutable: 4.0.0
+ graphql: 15.8.0
+ immutable: 4.3.6
node-sass: 4.14.1
- prop-types: 15.7.2
- react-apollo: 3.1.5_x2iasnk3pmjd3uyfcc43iysb64
+ prop-types: 15.8.1
+ react-apollo: 3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa
react-color: 2.19.3_react@16.14.0
react-countup: 4.4.0_react@16.14.0
react-device-detect: 1.17.0_wcqkhtmu7mswc6yz4uyexck3ty
- react-ga: 3.3.0_uutjjb2r36qagpytglxm7vtgnq
- react-intl: 5.24.3_deefhllol2hu2mngzdkosoyjay
- react-redux: 7.2.6_wcqkhtmu7mswc6yz4uyexck3ty
+ react-ga: 3.3.1_4vyaxm4rsh2mpfdenvlqy7kmya
+ react-intl: 5.25.1_bc2glf7glpp5banumrk2yqrvyu
+ react-redux: 7.2.9_wcqkhtmu7mswc6yz4uyexck3ty
react-s3-uploader: 5.0.0
- redux: 4.1.2
- redux-thunk: 2.4.1_redux@4.1.2
- sinon: 10.0.0
+ redux: 4.2.1
+ redux-thunk: 2.4.2_redux@4.2.1
+ sinon: 10.0.1
slate-editor: link:../slate-editor
- tinycolor2: 1.4.2
+ tinycolor2: 1.6.0
devDependencies:
- '@babel/cli': 7.16.8_@babel+core@7.13.15
- '@babel/register': 7.16.9_@babel+core@7.13.15
+ '@babel/cli': 7.24.7_@babel+core@7.13.15
+ '@babel/register': 7.24.6_@babel+core@7.13.15
ava: 3.15.0
- axios-mock-adapter: 1.20.0_axios@0.21.4
- chai: 4.3.4
+ axios-mock-adapter: 1.22.0_axios@0.21.4
+ chai: 4.4.1
cross-env: 7.0.3
enzyme: 3.11.0
- enzyme-adapter-react-16: 1.15.6_j6bpv5pizkyfppcg2tmva6pmii
+ enzyme-adapter-react-16: 1.15.8_j6bpv5pizkyfppcg2tmva6pmii
jsdom: 16.7.0
mocha: 8.4.0
nyc: 15.1.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- react-scripts: 4.0.3_ysovnjf3qjiv2axpnv2jxeumzu
+ react-scripts: 4.0.3_ksswt7spaxpnjxhhvh5arnzeya
redux-mock-store: 1.5.4
- typescript: 4.6.2
+ typescript: 4.9.5
packages/accounts-client:
specifiers:
@@ -937,27 +1012,27 @@ importers:
'@types/normalize-package-data': ^2.4.0
'@types/prettier': ^2.2.3
'@types/scheduler': ^0.16.1
- bonde-components: workspace:*
+ bonde-components: ^0.2.0
bonde-core-tools: workspace:*
framer-motion: ^4
jest-environment-jsdom-sixteen: ^1.0.3
react-scripts: ^4
typescript: ^4.5
dependencies:
- '@chakra-ui/react': 1.7.1_nwmiptbhd5tysta5sueyqdamte
+ '@chakra-ui/react': 1.8.9_dnoalyp3hhsiu7ozfgwknin7ia
'@emotion/react': 11.6.0
- '@emotion/styled': 11.6.0_@emotion+react@11.6.0
- '@types/graceful-fs': 4.1.5
- '@types/normalize-package-data': 2.4.1
+ '@emotion/styled': 11.11.5_@emotion+react@11.6.0
+ '@types/graceful-fs': 4.1.9
+ '@types/normalize-package-data': 2.4.4
bonde-components: link:../../libs/components
bonde-core-tools: link:../../libs/core-tools
framer-motion: 4.1.17
jest-environment-jsdom-sixteen: 1.0.3
- react-scripts: 4.0.3_typescript@4.6.2
- typescript: 4.6.2
+ react-scripts: 4.0.3_typescript@4.9.5
+ typescript: 4.9.5
devDependencies:
- '@types/prettier': 2.4.2
- '@types/scheduler': 0.16.2
+ '@types/prettier': 2.7.3
+ '@types/scheduler': 0.16.8
packages/admin-client:
specifiers:
@@ -1054,16 +1129,16 @@ importers:
'@slate-editor/list-plugin': link:../../libs/slate-editor-list-plugin
'@slate-editor/strikethrough-plugin': link:../../libs/slate-editor-strikethrough-plugin
'@slate-editor/underline-plugin': link:../../libs/slate-editor-underline-plugin
- '@types/react': 16.14.21
- '@types/uuid': 3.4.10
+ '@types/react': 16.14.60
+ '@types/uuid': 3.4.13
axios: 0.18.1
- axios-mock-adapter: 1.20.0_axios@0.18.1
+ axios-mock-adapter: 1.22.0_axios@0.18.1
basscss-sass: 4.0.0
bonde-components: link:../../libs/components
bonde-core-tools: link:../../libs/core-tools
bonde-webpage: link:../../libs/webpage
- chai: 4.3.4
- classnames: 2.3.1
+ chai: 4.4.1
+ classnames: 2.5.1
cpf_cnpj: 0.2.0
cross-storage: 1.0.0
downloadjs: 1.4.7
@@ -1073,22 +1148,22 @@ importers:
exports-loader: 0.7.0
font-awesome: 4.7.0
format-number: 3.0.0
- graphql-request: 4.1.0
- immutable: 4.0.0
- js-cookie: 3.0.1
+ graphql-request: 4.3.0
+ immutable: 4.3.6
+ js-cookie: 3.0.5
keycode: 2.2.1
node-sass: 4.14.1
- prop-types: 15.7.2
+ prop-types: 15.8.1
query-string: 6.14.1
- rangy: 1.3.0
+ rangy: 1.3.1
raven-js: 3.27.2
react-app-polyfill: 0.2.2
react-color: 2.14.1
react-cookie: 1.0.5
react-countup: 2.4.0
- react-ga: 2.5.6_prop-types@15.7.2
+ react-ga: 2.5.6_prop-types@15.8.1
react-helmet: 5.2.1
- react-intl: 2.7.2_prop-types@15.7.2
+ react-intl: 2.7.2_prop-types@15.8.1
react-lifecycles-compat: 3.0.4
react-redux: 5.0.7_redux@3.7.2
react-router: 4.3.1
@@ -1100,7 +1175,7 @@ importers:
react-select-plus: 1.2.0
react-test-renderer: 16.7.0
react-toastify: 5.5.0
- react-transition-group: 4.4.2
+ react-transition-group: 4.4.5
redial: 0.5.0
redux: 3.7.2
redux-form: 5.4.0_aukffawdejaluejligucvz23r4
@@ -1110,12 +1185,12 @@ importers:
redux-thunk: 2.3.0_redux@3.7.2
serve: 11.3.2
sinon: 4.5.0
- slate: 0.41.3_immutable@4.0.0
+ slate: 0.41.3_immutable@4.3.6
slate-editor: link:../../libs/slate-editor
- slate-plain-serializer: 0.6.39_yrgvprs7zhm3jadril2fboc6g4
- slate-react: 0.18.0_yrgvprs7zhm3jadril2fboc6g4
+ slate-plain-serializer: 0.6.39_fsp4ikl4z4pfto7qi6l6afmvbi
+ slate-react: 0.18.0_fsp4ikl4z4pfto7qi6l6afmvbi
string: 3.3.3
- tinycolor2: 1.4.2
+ tinycolor2: 1.6.0
typescript: 3.9.10
url-join: 4.0.1
uuid: 3.4.0
@@ -1124,6 +1199,9 @@ importers:
packages/canary-client:
specifiers:
'@chakra-ui/react': ^1.6.6
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-react': ^7.0.0
+ '@ckeditor/ckeditor5-upload': 41.4.2
'@emotion/react': ^11
'@emotion/styled': ^11
'@fnando/cnpj': ^1.0.2
@@ -1152,15 +1230,19 @@ importers:
'@types/react-table': ^7.0.22
'@types/recharts': ^1.8.23
'@types/scheduler': ^0.16.1
- bonde-components: workspace:*
+ bonde-components: 0.2.0
bonde-core-tools: workspace:*
bonde-styleguide: ^0.16.5-alpha.5
+ ckeditor5-custom-build: workspace:*
clipboard-copy: ^3.1.0
+ css-loader: ^7.1.2
downloadjs: ^1.4.7
final-form-arrays: ^3.0.2
framer-motion: ^4
lodash: ^4.17.21
moment: ^2.27.0
+ postcss-loader: ^8.1.1
+ raw-loader: ^4.0.2
react-color: ^2.19.3
react-device-detect: ^2.1.2
react-final-form-arrays: ^3.1.3
@@ -1176,11 +1258,15 @@ importers:
slate-editor: workspace:*
slate-plain-serializer: ^0.7.13
slugify: ^1.4.6
+ style-loader: ^4.0.0
typescript: ^3
dependencies:
- '@chakra-ui/react': 1.7.1_nwmiptbhd5tysta5sueyqdamte
+ '@chakra-ui/react': 1.8.9_dnoalyp3hhsiu7ozfgwknin7ia
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-react': 7.0.0_5anerf2hje5ndmftpqr7pxnefy
+ '@ckeditor/ckeditor5-upload': 41.4.2
'@emotion/react': 11.6.0
- '@emotion/styled': 11.6.0_@emotion+react@11.6.0
+ '@emotion/styled': 11.11.5_@emotion+react@11.6.0
'@fnando/cnpj': 1.0.2
'@fnando/cpf': 1.0.2
'@slate-editor/alignment-plugin': link:../../libs/slate-editor-alignment-plugin
@@ -1198,41 +1284,46 @@ importers:
'@slate-editor/strikethrough-plugin': link:../../libs/slate-editor-strikethrough-plugin
'@slate-editor/toggle-readonly': link:../../libs/slate-editor-toggle-readonly
'@slate-editor/underline-plugin': link:../../libs/slate-editor-underline-plugin
- '@types/downloadjs': 1.4.2
- '@types/graceful-fs': 4.1.5
- '@types/lodash': 4.14.177
- '@types/normalize-package-data': 2.4.1
- '@types/react-color': 3.0.6
- '@types/react-table': 7.7.8
+ '@types/downloadjs': 1.4.6
+ '@types/graceful-fs': 4.1.9
+ '@types/lodash': 4.17.5
+ '@types/normalize-package-data': 2.4.4
+ '@types/react-color': 3.0.12
+ '@types/react-table': 7.0.22
bonde-components: link:../../libs/components
bonde-core-tools: link:../../libs/core-tools
bonde-styleguide: 0.16.5-alpha.5
+ ckeditor5-custom-build: link:../../libs/ckeditor5-custom-build
clipboard-copy: 3.2.0
downloadjs: 1.4.7
- final-form-arrays: 3.0.2
+ final-form-arrays: 3.1.0
framer-motion: 4.1.17
lodash: 4.17.21
- moment: 2.29.1
+ moment: 2.30.1
+ raw-loader: 4.0.2
react-color: 2.19.3
- react-device-detect: 2.1.2
- react-final-form-arrays: 3.1.3_final-form-arrays@3.0.2
+ react-device-detect: 2.2.3
+ react-final-form-arrays: 3.1.4_final-form-arrays@3.1.0
react-hotjar: 4.0.0
- react-number-format: 4.8.0
+ react-number-format: 4.9.4
react-qr-reader: 2.2.1
react-s3-uploader: 4.9.3
react-scripts: 3.4.1_typescript@3.9.10
react-select: 3.2.0
- react-table: 7.7.0
+ react-table: 7.8.0
react-toastify: 6.0.8
- recharts: 2.1.6
+ recharts: 2.12.7
slate-editor: link:../../libs/slate-editor
slate-plain-serializer: 0.7.13
- slugify: 1.6.2
+ slugify: 1.6.6
typescript: 3.9.10
devDependencies:
- '@types/prettier': 2.4.2
- '@types/recharts': 1.8.23
- '@types/scheduler': 0.16.2
+ '@types/prettier': 2.7.3
+ '@types/recharts': 1.8.29
+ '@types/scheduler': 0.16.8
+ css-loader: 7.1.2
+ postcss-loader: 8.1.1_typescript@3.9.10
+ style-loader: 4.0.0
packages/redes-client:
specifiers:
@@ -1256,26 +1347,26 @@ importers:
react-table: ^7.6.0
typescript: ^4.5
dependencies:
- '@chakra-ui/react': 1.7.1_nwmiptbhd5tysta5sueyqdamte
+ '@chakra-ui/react': 1.8.9_dnoalyp3hhsiu7ozfgwknin7ia
'@emotion/react': 11.6.0
- '@emotion/styled': 11.6.0_@emotion+react@11.6.0
+ '@emotion/styled': 11.11.5_@emotion+react@11.6.0
'@testing-library/jest-dom': 4.2.4
'@turf/distance': 6.5.0
'@turf/turf': 5.1.6
- '@types/graceful-fs': 4.1.5
- '@types/normalize-package-data': 2.4.1
- '@types/react-table': 7.7.8
- '@types/styled-components': 5.1.15
+ '@types/graceful-fs': 4.1.9
+ '@types/normalize-package-data': 2.4.4
+ '@types/react-table': 7.0.22
+ '@types/styled-components': 5.1.34
bonde-components: link:../../libs/components
bonde-core-tools: link:../../libs/core-tools
- deep-object-diff: 1.1.0
+ deep-object-diff: 1.1.9
framer-motion: 4.1.17
- react-scripts: 4.0.3_typescript@4.6.2
- react-table: 7.7.0
- typescript: 4.6.2
+ react-scripts: 4.0.3_typescript@4.9.5
+ react-table: 7.8.0
+ typescript: 4.9.5
devDependencies:
- '@types/prettier': 2.4.2
- '@types/scheduler': 0.16.2
+ '@types/prettier': 2.7.3
+ '@types/scheduler': 0.16.8
packages/slate-editor-client:
specifiers:
@@ -1429,12 +1520,12 @@ importers:
styled-jsx-plugin-postcss: ^4.0.1
subscriptions-transport-ws: ^0.9.16
dependencies:
- '@apollo/client': 3.4.17_btgrfoupknu2ss44wi6d6vaxpq
- '@elastic/apm-rum': 5.10.2
+ '@apollo/client': 3.10.4_knfbna4g3ovsuxho4qdh2fuq5i
+ '@elastic/apm-rum': 5.16.0
'@emotion/core': 11.0.0
- '@emotion/css': 11.7.1
- '@emotion/react': 11.6.0_qewexek3mggvbeokd2goivthmy
- '@emotion/styled': 11.6.0_bxx66gdombxxitmllj5fuezuvy
+ '@emotion/css': 11.11.2
+ '@emotion/react': 11.6.0_hqp5somsn7eiiofz7xtfzylpfm
+ '@emotion/styled': 11.11.5_g6sjbj4tvaunld2zatbdfzmhze
'@slate-editor/alignment-plugin': link:../../libs/slate-editor-alignment-plugin
'@slate-editor/bold-plugin': link:../../libs/slate-editor-bold-plugin
'@slate-editor/color-plugin': link:../../libs/slate-editor-color-plugin
@@ -1451,157 +1542,180 @@ importers:
'@slate-editor/underline-plugin': link:../../libs/slate-editor-underline-plugin
axios: 0.24.0
bonde-components: link:../../libs/components
- classnames: 2.3.1
+ classnames: 2.5.1
clipboard-copy: 3.2.0
colors: 1.4.0
- cross-fetch: 3.1.5
- dotenv: 16.0.0
+ cross-fetch: 3.1.8
+ dotenv: 16.4.5
draft-js: 0.11.7_sfoxds7t5ydpegc3knd667wn6m
- elliptic: 6.5.4
+ elliptic: 6.5.5
emotion: 11.0.0
exenv: 1.2.2
file-saver: 2.0.5
- final-form: 4.20.4
- graphql: 15.7.2
- graphql-tag: 2.12.6_graphql@15.7.2
+ final-form: 4.20.10
+ graphql: 15.8.0
+ graphql-tag: 2.12.6_graphql@15.8.0
i18next: 20.6.1
- i18next-icu: 2.0.3
- immutable: 4.0.0
+ i18next-icu: 2.3.0
+ immutable: 4.3.6
jsonwebtoken: 8.5.1
- next: 12.0.10_t3qp7jjdvogg6q4bidjnygdwy4
- next-i18next: 8.0.0_next@12.0.10+react@17.0.2
- next-redux-wrapper: 7.0.5_xdsjuvluuumeglvuaoaxbs23rm
- next-seo: 4.29.0_me4qx2mswy2knchxyjkvkr5vlm
- next-transpile-modules: 9.0.0
+ next: 12.3.4_ano66n2hx2pallif55qdujhkvi
+ next-i18next: 8.0.0_dwjfwrt6uv2f53xn6wotzcxyoa
+ next-redux-wrapper: 7.0.5_2jlx3afzhh5rbjairyvkcrvqky
+ next-seo: 4.29.0_dwjfwrt6uv2f53xn6wotzcxyoa
+ next-transpile-modules: 9.1.0
node-fetch: 2.6.1
react: 17.0.2
react-app-polyfill: 1.0.6
react-color: 2.19.3_react@17.0.2
react-countup: 4.4.0_react@17.0.2
- react-device-detect: 2.1.2_sfoxds7t5ydpegc3knd667wn6m
+ react-device-detect: 2.2.3_sfoxds7t5ydpegc3knd667wn6m
react-dom: 17.0.2_react@17.0.2
- react-draggable: 4.4.4_sfoxds7t5ydpegc3knd667wn6m
- react-final-form: 6.5.7_soexlzopzjzlvc3z6yg6dqhpvi
+ react-draggable: 4.4.6_sfoxds7t5ydpegc3knd667wn6m
+ react-final-form: 6.5.9_3yxkfq5ui5vew7hpdzcaudhbla
react-fontawesome: 1.7.1_react@17.0.2
react-ga: 2.7.0_react@17.0.2
- react-i18next: 11.14.2_fx4b3zen7tdcdwbld3lkpcycbu
+ react-i18next: 11.18.6_vuqjwpwape4qikc5ioig4ztvbm
react-input-mask: 2.0.4_sfoxds7t5ydpegc3knd667wn6m
react-intl: 2.7.2_react@17.0.2
- react-redux: 7.2.6_sfoxds7t5ydpegc3knd667wn6m
- react-router-dom: 5.3.0_react@17.0.2
+ react-redux: 7.2.9_sfoxds7t5ydpegc3knd667wn6m
+ react-router-dom: 5.3.4_react@17.0.2
react-s3-uploader: 5.0.0
- redux: 4.1.2
+ redux: 4.2.1
redux-promise: 0.6.0
- redux-thunk: 2.4.1_redux@4.1.2
- sass: 1.49.7
- slate: 0.41.3_nri5ixjb2e3bg6wmozyotoe52y
+ redux-thunk: 2.4.2_redux@4.2.1
+ sass: 1.77.4
+ slate: 0.41.3_5ytup4ucxr2wnochrhmfa65b4i
slate-editor: link:../../libs/slate-editor
- slate-react: 0.18.11_hixnpnc4k2emuat7tur23ak6gi
- styled-jsx-plugin-postcss: 4.0.1_postcss@8.4.5
- subscriptions-transport-ws: 0.9.19_graphql@15.7.2
+ slate-react: 0.18.11_e5lsqgoe4lsklgncetj35xqqrm
+ styled-jsx-plugin-postcss: 4.0.1_postcss@8.4.38
+ subscriptions-transport-ws: 0.9.19_graphql@15.8.0
devDependencies:
- '@next/bundle-analyzer': 12.0.10
- '@next/eslint-plugin-next': 12.0.10
+ '@next/bundle-analyzer': 12.3.4
+ '@next/eslint-plugin-next': 12.3.4
'@testing-library/jest-dom': 4.2.4
- '@testing-library/react': 12.1.2_sfoxds7t5ydpegc3knd667wn6m
- '@types/draft-js': 0.11.9
- '@types/jsonwebtoken': 8.5.8
- '@types/node': 17.0.18
- '@types/react': 17.0.35
- '@types/react-color': 3.0.6
+ '@testing-library/react': 12.1.5_sfoxds7t5ydpegc3knd667wn6m
+ '@types/draft-js': 0.11.18
+ '@types/jsonwebtoken': 8.5.9
+ '@types/node': 17.0.45
+ '@types/react': 17.0.80
+ '@types/react-color': 3.0.12
'@types/react-intl': 3.0.0_react@17.0.2
- '@types/redux-promise': 0.5.29
+ '@types/redux-promise': 0.5.32
'@typescript-eslint/eslint-plugin': 4.33.0_ffi3uiz42rv3jyhs6cr7p7qqry
'@typescript-eslint/parser': 4.33.0_eslint@7.32.0
- autoprefixer: 10.4.2_postcss@8.4.5
+ autoprefixer: 10.4.19_postcss@8.4.38
cypress: 9.7.0
enzyme: 3.11.0
- enzyme-adapter-react-16: 1.15.6_7ltvq4e2railvf5uya4ffxpe2a
+ enzyme-adapter-react-16: 1.15.8_7ltvq4e2railvf5uya4ffxpe2a
eslint: 7.32.0
- eslint-config-airbnb-base: 14.2.1_vaqnzbumzdgwnwbjppthpg4qgu
- eslint-config-airbnb-typescript: 14.0.2_2cxnn5euwmjfrhh7mb2kjgkaoe
- eslint-config-next: 12.0.10_eslint@7.32.0+next@12.0.10
- eslint-config-prettier: 8.3.0_eslint@7.32.0
- eslint-plugin-import: 2.25.3_ffi3uiz42rv3jyhs6cr7p7qqry
- eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0
- eslint-plugin-prettier: 4.0.0_nzvclje2srg3b6ryiggdxjf4qy
- eslint-plugin-react: 7.27.0_eslint@7.32.0
- eslint-plugin-react-hooks: 4.3.0_eslint@7.32.0
+ eslint-config-airbnb-base: 14.2.1_ryxylqcqjrgqrcq5e2gwnwvmem
+ eslint-config-airbnb-typescript: 14.0.2_z3qksmckfr5ii25m33necivc2a
+ eslint-config-next: 12.3.4_eslint@7.32.0
+ eslint-config-prettier: 8.10.0_eslint@7.32.0
+ eslint-plugin-import: 2.29.1_ffi3uiz42rv3jyhs6cr7p7qqry
+ eslint-plugin-jsx-a11y: 6.8.0_eslint@7.32.0
+ eslint-plugin-prettier: 4.2.1_bbatpuwfbpnx32jr4tzjhnui3m
+ eslint-plugin-react: 7.34.2_eslint@7.32.0
+ eslint-plugin-react-hooks: 4.6.2_eslint@7.32.0
eslint-plugin-unused-imports: 1.1.5_2o2mfvfmkh2covki2xlznlxf2u
identity-obj-proxy: 3.0.0
jest: 27.5.1
npm-run-all: 4.1.5
- postcss: 8.4.5
- prettier: 2.5.1
+ postcss: 8.4.38
+ prettier: 2.8.8
rimraf: 3.0.2
- start-server-and-test: 1.14.0
+ start-server-and-test: 1.15.5
packages:
- /@ampproject/remapping/2.1.2:
- resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==}
+ /@ampproject/remapping/2.3.0:
+ resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/trace-mapping': 0.3.4
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
- /@apollo/client/3.4.17_btgrfoupknu2ss44wi6d6vaxpq:
- resolution: {integrity: sha512-MDt2rwMX1GqodiVEKJqmDmAz8xr0qJmq5PdWeIt0yDaT4GOkKYWZiWkyfhfv3raTk8PyJvbsNG9q2CqmUrlGfg==}
+ /@apollo/client/3.10.4_exzkn5baivpwhodnhndlbnbnga:
+ resolution: {integrity: sha512-51gk0xOwN6Ls1EbTG5svFva1kdm2APHYTzmFhaAdvUQoJFDxfc0UwQgDxGptzH84vkPlo1qunY1FuboyF9LI3Q==}
peerDependencies:
- graphql: ^14.0.0 || ^15.0.0
- react: ^16.8.0 || ^17.0.0
+ graphql: ^15.0.0 || ^16.0.0
+ graphql-ws: ^5.5.5
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
subscriptions-transport-ws: ^0.9.0 || ^0.11.0
peerDependenciesMeta:
+ graphql-ws:
+ optional: true
react:
optional: true
+ react-dom:
+ optional: true
subscriptions-transport-ws:
optional: true
dependencies:
- '@graphql-typed-document-node/core': 3.1.1_graphql@15.7.2
- '@wry/context': 0.6.1
- '@wry/equality': 0.5.2
- '@wry/trie': 0.3.1
- graphql: 15.7.2
- graphql-tag: 2.12.6_graphql@15.7.2
+ '@graphql-typed-document-node/core': 3.2.0_graphql@15.8.0
+ '@wry/caches': 1.0.1
+ '@wry/equality': 0.5.7
+ '@wry/trie': 0.5.0
+ graphql: 15.8.0
+ graphql-tag: 2.12.6_graphql@15.8.0
hoist-non-react-statics: 3.3.2
- optimism: 0.16.1
- prop-types: 15.7.2
+ optimism: 0.18.0
+ prop-types: 15.8.1
react: 17.0.2
- subscriptions-transport-ws: 0.9.19_graphql@15.7.2
+ react-dom: 17.0.2_react@17.0.2
+ rehackt: 0.1.0_3r2q4vqikxqiwlpkbpcd6cn6l4
+ response-iterator: 0.2.6
symbol-observable: 4.0.0
- ts-invariant: 0.9.3
- tslib: 2.3.1
- zen-observable-ts: 1.1.0
+ ts-invariant: 0.10.3
+ tslib: 2.6.3
+ zen-observable-ts: 1.2.5
+ transitivePeerDependencies:
+ - '@types/react'
dev: false
- /@apollo/client/3.4.17_yaujofatqqw66zcfkmual2ppy4:
- resolution: {integrity: sha512-MDt2rwMX1GqodiVEKJqmDmAz8xr0qJmq5PdWeIt0yDaT4GOkKYWZiWkyfhfv3raTk8PyJvbsNG9q2CqmUrlGfg==}
+ /@apollo/client/3.10.4_knfbna4g3ovsuxho4qdh2fuq5i:
+ resolution: {integrity: sha512-51gk0xOwN6Ls1EbTG5svFva1kdm2APHYTzmFhaAdvUQoJFDxfc0UwQgDxGptzH84vkPlo1qunY1FuboyF9LI3Q==}
peerDependencies:
- graphql: ^14.0.0 || ^15.0.0
- react: ^16.8.0 || ^17.0.0
+ graphql: ^15.0.0 || ^16.0.0
+ graphql-ws: ^5.5.5
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
subscriptions-transport-ws: ^0.9.0 || ^0.11.0
peerDependenciesMeta:
+ graphql-ws:
+ optional: true
react:
optional: true
+ react-dom:
+ optional: true
subscriptions-transport-ws:
optional: true
dependencies:
- '@graphql-typed-document-node/core': 3.1.1_graphql@15.7.2
- '@wry/context': 0.6.1
- '@wry/equality': 0.5.2
- '@wry/trie': 0.3.1
- graphql: 15.7.2
- graphql-tag: 2.12.6_graphql@15.7.2
+ '@graphql-typed-document-node/core': 3.2.0_graphql@15.8.0
+ '@wry/caches': 1.0.1
+ '@wry/equality': 0.5.7
+ '@wry/trie': 0.5.0
+ graphql: 15.8.0
+ graphql-tag: 2.12.6_graphql@15.8.0
hoist-non-react-statics: 3.3.2
- optimism: 0.16.1
- prop-types: 15.7.2
+ optimism: 0.18.0
+ prop-types: 15.8.1
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ rehackt: 0.1.0_hqp5somsn7eiiofz7xtfzylpfm
+ response-iterator: 0.2.6
+ subscriptions-transport-ws: 0.9.19_graphql@15.8.0
symbol-observable: 4.0.0
- ts-invariant: 0.9.3
- tslib: 2.3.1
- zen-observable-ts: 1.1.0
+ ts-invariant: 0.10.3
+ tslib: 2.6.3
+ zen-observable-ts: 1.2.5
+ transitivePeerDependencies:
+ - '@types/react'
dev: false
- /@apollo/react-common/3.1.4_lqwbfzxcvg4hjliqxaocdoh5sy:
+ /@apollo/react-common/3.1.4_ozbojwhab272yq4lsqhm33tngq:
resolution: {integrity: sha512-X5Kyro73bthWSCBJUC5XYQqMnG0dLWuDZmVkzog9dynovhfiVCV4kPSdgSIkqnb++cwCzOVuQ4rDKVwo2XRzQA==}
peerDependencies:
'@types/react': ^16.8.0
@@ -1610,14 +1724,14 @@ packages:
graphql: ^14.3.1
react: ^16.8.0
dependencies:
- apollo-client: 2.6.10_graphql@15.7.2
- graphql: 15.7.2
+ apollo-client: 2.6.10_graphql@15.8.0
+ graphql: 15.8.0
react: 16.14.0
ts-invariant: 0.4.4
tslib: 1.14.1
dev: false
- /@apollo/react-components/3.1.5_x2iasnk3pmjd3uyfcc43iysb64:
+ /@apollo/react-components/3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa:
resolution: {integrity: sha512-c82VyUuE9VBnJB7bnX+3dmwpIPMhyjMwyoSLyQWPHxz8jK4ak30XszJtqFf4eC4hwvvLYa+Ou6X73Q8V8e2/jg==}
peerDependencies:
'@types/react': ^16.8.0
@@ -1629,18 +1743,18 @@ packages:
react: ^16.8.0
react-dom: ^16.8.0
dependencies:
- '@apollo/react-common': 3.1.4_lqwbfzxcvg4hjliqxaocdoh5sy
- '@apollo/react-hooks': 3.1.5_x2iasnk3pmjd3uyfcc43iysb64
- apollo-client: 2.6.10_graphql@15.7.2
- graphql: 15.7.2
- prop-types: 15.7.2
+ '@apollo/react-common': 3.1.4_ozbojwhab272yq4lsqhm33tngq
+ '@apollo/react-hooks': 3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa
+ apollo-client: 2.6.10_graphql@15.8.0
+ graphql: 15.8.0
+ prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
ts-invariant: 0.4.4
tslib: 1.14.1
dev: false
- /@apollo/react-hoc/3.1.5_x2iasnk3pmjd3uyfcc43iysb64:
+ /@apollo/react-hoc/3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa:
resolution: {integrity: sha512-jlZ2pvEnRevLa54H563BU0/xrYSgWQ72GksarxUzCHQW85nmn9wQln0kLBX7Ua7SBt9WgiuYQXQVechaaCulfQ==}
peerDependencies:
'@types/react': ^16.8.0
@@ -1649,10 +1763,10 @@ packages:
react: ^16.8.0
react-dom: ^16.8.0
dependencies:
- '@apollo/react-common': 3.1.4_lqwbfzxcvg4hjliqxaocdoh5sy
- '@apollo/react-components': 3.1.5_x2iasnk3pmjd3uyfcc43iysb64
- apollo-client: 2.6.10_graphql@15.7.2
- graphql: 15.7.2
+ '@apollo/react-common': 3.1.4_ozbojwhab272yq4lsqhm33tngq
+ '@apollo/react-components': 3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa
+ apollo-client: 2.6.10_graphql@15.8.0
+ graphql: 15.8.0
hoist-non-react-statics: 3.3.2
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
@@ -1664,7 +1778,7 @@ packages:
- apollo-utilities
dev: false
- /@apollo/react-hooks/3.1.5_x2iasnk3pmjd3uyfcc43iysb64:
+ /@apollo/react-hooks/3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa:
resolution: {integrity: sha512-y0CJ393DLxIIkksRup4nt+vSjxalbZBXnnXxYbviq/woj+zKa431zy0yT4LqyRKpFy9ahMIwxBnBwfwIoupqLQ==}
peerDependencies:
'@types/react': ^16.8.0
@@ -1673,10 +1787,10 @@ packages:
react: ^16.8.0
react-dom: ^16.8.0
dependencies:
- '@apollo/react-common': 3.1.4_lqwbfzxcvg4hjliqxaocdoh5sy
+ '@apollo/react-common': 3.1.4_ozbojwhab272yq4lsqhm33tngq
'@wry/equality': 0.1.11
- apollo-client: 2.6.10_graphql@15.7.2
- graphql: 15.7.2
+ apollo-client: 2.6.10_graphql@15.8.0
+ graphql: 15.8.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
ts-invariant: 0.4.4
@@ -1685,14 +1799,14 @@ packages:
- apollo-utilities
dev: false
- /@apollo/react-ssr/3.1.5_x2iasnk3pmjd3uyfcc43iysb64:
+ /@apollo/react-ssr/3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa:
resolution: {integrity: sha512-wuLPkKlctNn3u8EU8rlECyktpOUCeekFfb0KhIKknpGY6Lza2Qu0bThx7D9MIbVEzhKadNNrzLcpk0Y8/5UuWg==}
peerDependencies:
react: ^16.8.0
react-dom: ^16.8.0
dependencies:
- '@apollo/react-common': 3.1.4_lqwbfzxcvg4hjliqxaocdoh5sy
- '@apollo/react-hooks': 3.1.5_x2iasnk3pmjd3uyfcc43iysb64
+ '@apollo/react-common': 3.1.4_ozbojwhab272yq4lsqhm33tngq
+ '@apollo/react-hooks': 3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
tslib: 1.14.1
@@ -1703,83 +1817,78 @@ packages:
- graphql
dev: false
- /@babel/cli/7.16.8_@babel+core@7.13.15:
- resolution: {integrity: sha512-FTKBbxyk5TclXOGmwYyqelqP5IF6hMxaeJskd85jbR5jBfYlwqgwAbJwnixi1ZBbTqKfFuAA95mdmUFeSRwyJA==}
+ /@babel/cli/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-8dfPprJgV4O14WTx+AQyEA+opgUKPrsIXX/MdL50J1n06EQJ6m1T+CdsJe0qEC0B/Xl85i+Un5KVAxd/PACX9A==}
engines: {node: '>=6.9.0'}
hasBin: true
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- commander: 4.1.1
- convert-source-map: 1.8.0
+ '@jridgewell/trace-mapping': 0.3.25
+ commander: 6.2.1
+ convert-source-map: 2.0.0
fs-readdir-recursive: 1.1.0
- glob: 7.2.0
+ glob: 7.2.3
make-dir: 2.1.0
slash: 2.0.0
- source-map: 0.5.7
optionalDependencies:
'@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3
- chokidar: 3.5.3
+ chokidar: 3.6.0
dev: true
/@babel/code-frame/7.10.4:
resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
dependencies:
- '@babel/highlight': 7.16.7
+ '@babel/highlight': 7.24.7
/@babel/code-frame/7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
dependencies:
- '@babel/highlight': 7.16.7
+ '@babel/highlight': 7.24.7
- /@babel/code-frame/7.16.0:
- resolution: {integrity: sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==}
+ /@babel/code-frame/7.24.7:
+ resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.16.0
-
- /@babel/code-frame/7.16.7:
- resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/highlight': 7.16.7
+ '@babel/highlight': 7.24.7
+ picocolors: 1.0.1
/@babel/code-frame/7.5.5:
resolution: {integrity: sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==}
dependencies:
- '@babel/highlight': 7.16.7
+ '@babel/highlight': 7.24.7
dev: true
/@babel/code-frame/7.8.3:
resolution: {integrity: sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==}
dependencies:
- '@babel/highlight': 7.16.7
+ '@babel/highlight': 7.24.7
dev: false
- /@babel/compat-data/7.16.4:
- resolution: {integrity: sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==}
+ /@babel/compat-data/7.24.7:
+ resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==}
engines: {node: '>=6.9.0'}
/@babel/core/7.12.3:
resolution: {integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.3
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helpers': 7.17.2
- '@babel/parser': 7.17.3
- '@babel/template': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
- convert-source-map: 1.8.0
- debug: 4.3.2
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.12.3
+ '@babel/helpers': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ convert-source-map: 1.9.0
+ debug: 4.3.5
gensync: 1.0.0-beta.2
- json5: 2.2.0
+ json5: 2.2.3
lodash: 4.17.21
- resolve: 1.20.0
- semver: 5.7.1
+ resolve: 1.18.1
+ semver: 5.7.2
source-map: 0.5.7
transitivePeerDependencies:
- supports-color
@@ -1788,65 +1897,43 @@ packages:
resolution: {integrity: sha512-6GXmNYeNjS2Uz+uls5jalOemgIhnTMeaXo+yBUA72kC2uX/8VW6XyhVIo2L8/q0goKQA3EVKx0KOQpVKSeWadQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.16.0
- '@babel/generator': 7.16.0
- '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.13.15
- '@babel/helper-module-transforms': 7.16.0
- '@babel/helpers': 7.16.3
- '@babel/parser': 7.16.4
- '@babel/template': 7.16.0
- '@babel/traverse': 7.16.3
- '@babel/types': 7.16.0
- convert-source-map: 1.8.0
- debug: 4.3.2
- gensync: 1.0.0-beta.2
- json5: 2.2.0
- semver: 6.3.0
- source-map: 0.5.7
- transitivePeerDependencies:
- - supports-color
-
- /@babel/core/7.16.0:
- resolution: {integrity: sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.16.8
- '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0
- '@babel/helper-module-transforms': 7.16.0
- '@babel/helpers': 7.16.3
- '@babel/parser': 7.16.8
- '@babel/template': 7.16.7
- '@babel/traverse': 7.16.8
- '@babel/types': 7.16.8
- convert-source-map: 1.8.0
- debug: 4.3.2
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.13.15
+ '@babel/helpers': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ convert-source-map: 1.9.0
+ debug: 4.3.5
gensync: 1.0.0-beta.2
- json5: 2.2.0
- semver: 6.3.0
+ json5: 2.2.3
+ semver: 6.3.1
source-map: 0.5.7
transitivePeerDependencies:
- supports-color
- /@babel/core/7.17.5:
- resolution: {integrity: sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA==}
+ /@babel/core/7.24.7:
+ resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@ampproject/remapping': 2.1.2
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.3
- '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.5
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helpers': 7.17.2
- '@babel/parser': 7.17.3
- '@babel/template': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
- convert-source-map: 1.8.0
- debug: 4.3.2
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.24.7
+ '@babel/helpers': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ convert-source-map: 2.0.0
+ debug: 4.3.5
gensync: 1.0.0-beta.2
- json5: 2.2.0
- semver: 6.3.0
+ json5: 2.2.3
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -1854,945 +1941,769 @@ packages:
resolution: {integrity: sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.16.8
- '@babel/helper-module-transforms': 7.16.0
- '@babel/helpers': 7.16.3
- '@babel/parser': 7.16.8
- '@babel/template': 7.16.7
- '@babel/traverse': 7.16.8
- '@babel/types': 7.16.8
- convert-source-map: 1.8.0
- debug: 4.3.2
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.9.0
+ '@babel/helpers': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ convert-source-map: 1.9.0
+ debug: 4.3.5
gensync: 1.0.0-beta.2
- json5: 2.2.0
+ json5: 2.2.3
lodash: 4.17.21
- resolve: 1.20.0
- semver: 5.7.1
+ resolve: 1.15.0
+ semver: 5.7.2
source-map: 0.5.7
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/generator/7.16.0:
- resolution: {integrity: sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.16.8
- jsesc: 2.5.2
- source-map: 0.5.7
-
- /@babel/generator/7.16.8:
- resolution: {integrity: sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.16.8
- jsesc: 2.5.2
- source-map: 0.5.7
-
- /@babel/generator/7.17.3:
- resolution: {integrity: sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==}
+ /@babel/generator/7.24.7:
+ resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.24.7
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- source-map: 0.5.7
- /@babel/helper-annotate-as-pure/7.16.0:
- resolution: {integrity: sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==}
+ /@babel/helper-annotate-as-pure/7.24.7:
+ resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
- dev: false
+ '@babel/types': 7.24.7
- /@babel/helper-annotate-as-pure/7.16.7:
- resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
+ /@babel/helper-builder-binary-assignment-operator-visitor/7.24.7:
+ resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-builder-binary-assignment-operator-visitor/7.16.0:
- resolution: {integrity: sha512-9KuleLT0e77wFUku6TUkqZzCEymBdtuQQ27MhEKzf9UOOJu3cYj98kyaDAzxpC7lV6DGiZFuC8XqDsq8/Kl6aQ==}
+ /@babel/helper-compilation-targets/7.24.7:
+ resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-explode-assignable-expression': 7.16.0
- '@babel/types': 7.17.0
+ '@babel/compat-data': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ browserslist: 4.23.1
+ lru-cache: 5.1.1
+ semver: 6.3.1
- /@babel/helper-compilation-targets/7.16.3:
- resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==}
+ /@babel/helper-create-class-features-plugin/7.24.7:
+ resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.19.1
- semver: 6.3.0
- dev: true
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-compilation-targets/7.16.3_@babel+core@7.13.15:
- resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==}
+ /@babel/helper-create-class-features-plugin/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.16.4
'@babel/core': 7.13.15
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.19.1
- semver: 6.3.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0:
- resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==}
+ /@babel/helper-create-class-features-plugin/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/core': 7.16.0
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.19.1
- semver: 6.3.0
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-compilation-targets/7.16.3_@babel+core@7.9.0:
- resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==}
+ /@babel/helper-create-class-features-plugin/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.16.4
'@babel/core': 7.9.0
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.19.1
- semver: 6.3.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/helper-compilation-targets/7.16.7:
- resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==}
+ /@babel/helper-create-regexp-features-plugin/7.24.7:
+ resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.20.0
- semver: 6.3.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+ dev: true
- /@babel/helper-compilation-targets/7.16.7_@babel+core@7.13.15:
- resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==}
+ /@babel/helper-create-regexp-features-plugin/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.16.4
'@babel/core': 7.13.15
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.20.0
- semver: 6.3.0
- dev: false
+ '@babel/helper-annotate-as-pure': 7.24.7
+ regexpu-core: 5.3.2
+ semver: 6.3.1
- /@babel/helper-compilation-targets/7.16.7_@babel+core@7.16.0:
- resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==}
+ /@babel/helper-create-regexp-features-plugin/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/core': 7.16.0
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.20.0
- semver: 6.3.0
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ regexpu-core: 5.3.2
+ semver: 6.3.1
- /@babel/helper-compilation-targets/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==}
+ /@babel/helper-create-regexp-features-plugin/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/core': 7.17.5
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.20.0
- semver: 6.3.0
+ '@babel/core': 7.9.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+ dev: false
- /@babel/helper-compilation-targets/7.16.7_@babel+core@7.9.0:
- resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==}
- engines: {node: '>=6.9.0'}
+ /@babel/helper-define-polyfill-provider/0.2.4:
+ resolution: {integrity: sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.4.0-0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/core': 7.9.0
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.20.0
- semver: 6.3.0
- dev: false
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/traverse': 7.24.7
+ debug: 4.3.5
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==}
- engines: {node: '>=6.9.0'}
+ /@babel/helper-define-polyfill-provider/0.2.4_@babel+core@7.13.15:
+ resolution: {integrity: sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-annotate-as-pure': 7.16.0
- '@babel/helper-function-name': 7.16.0
- '@babel/helper-member-expression-to-functions': 7.16.0
- '@babel/helper-optimise-call-expression': 7.16.0
- '@babel/helper-replace-supers': 7.16.0
- '@babel/helper-split-export-declaration': 7.16.0
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/traverse': 7.24.7
+ debug: 4.3.5
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/helper-define-polyfill-provider/0.2.4_@babel+core@7.24.7:
+ resolution: {integrity: sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0-0
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/traverse': 7.24.7
+ debug: 4.3.5
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helper-define-polyfill-provider/0.6.2_@babel+core@7.24.7:
+ resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ debug: 4.3.5
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/helper-environment-visitor/7.24.7:
+ resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.7
+
+ /@babel/helper-function-name/7.24.7:
+ resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.24.7
+ '@babel/types': 7.24.7
+
+ /@babel/helper-hoist-variables/7.24.7:
+ resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.7
+
+ /@babel/helper-member-expression-to-functions/7.24.7:
+ resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/helper-module-imports/7.24.7:
+ resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/helper-module-imports/7.24.7_supports-color@5.5.0:
+ resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/traverse': 7.24.7_supports-color@5.5.0
+ '@babel/types': 7.24.7
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helper-create-class-features-plugin/7.16.7:
- resolution: {integrity: sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==}
+ /@babel/helper-module-transforms/7.24.7:
+ resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-member-expression-to-functions': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/helper-create-class-features-plugin/7.16.7_@babel+core@7.13.15:
- resolution: {integrity: sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==}
+ /@babel/helper-module-transforms/7.24.7_@babel+core@7.12.3:
+ resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-member-expression-to-functions': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/core': 7.12.3
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/helper-create-class-features-plugin/7.16.7_@babel+core@7.16.0:
- resolution: {integrity: sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==}
+ /@babel/helper-module-transforms/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-member-expression-to-functions': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/core': 7.13.15
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/helper-create-class-features-plugin/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==}
+ /@babel/helper-module-transforms/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-member-expression-to-functions': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/helper-create-class-features-plugin/7.16.7_@babel+core@7.9.0:
- resolution: {integrity: sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==}
+ /@babel/helper-module-transforms/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-member-expression-to-functions': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helper-create-regexp-features-plugin/7.16.0:
- resolution: {integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==}
+ /@babel/helper-optimise-call-expression/7.24.7:
+ resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
dependencies:
- '@babel/helper-annotate-as-pure': 7.16.7
- regexpu-core: 4.8.0
- dev: true
+ '@babel/types': 7.24.7
+
+ /@babel/helper-plugin-utils/7.24.7:
+ resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==}
+ engines: {node: '>=6.9.0'}
- /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==}
+ /@babel/helper-remap-async-to-generator/7.24.7:
+ resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-annotate-as-pure': 7.16.7
- regexpu-core: 4.8.0
- dev: false
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-wrap-function': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==}
+ /@babel/helper-remap-async-to-generator/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-annotate-as-pure': 7.16.7
- regexpu-core: 4.8.0
+ '@babel/core': 7.13.15
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-wrap-function': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==}
+ /@babel/helper-remap-async-to-generator/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-annotate-as-pure': 7.16.7
- regexpu-core: 4.8.0
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-wrap-function': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==}
+ /@babel/helper-remap-async-to-generator/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-annotate-as-pure': 7.16.7
- regexpu-core: 4.8.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-wrap-function': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/helper-define-polyfill-provider/0.2.4:
- resolution: {integrity: sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==}
+ /@babel/helper-replace-supers/7.24.7:
+ resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.4.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/helper-compilation-targets': 7.16.3
- '@babel/helper-module-imports': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/traverse': 7.16.8
- debug: 4.3.2
- lodash.debounce: 4.0.8
- resolve: 1.20.0
- semver: 6.3.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/helper-define-polyfill-provider/0.2.4_@babel+core@7.13.15:
- resolution: {integrity: sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==}
+ /@babel/helper-replace-supers/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.4.0-0
+ '@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.13.15
- '@babel/helper-module-imports': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/traverse': 7.16.8
- debug: 4.3.2
- lodash.debounce: 4.0.8
- resolve: 1.20.0
- semver: 6.3.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/helper-define-polyfill-provider/0.3.0:
- resolution: {integrity: sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==}
+ /@babel/helper-replace-supers/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.4.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/helper-compilation-targets': 7.16.7
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/traverse': 7.17.3
- debug: 4.3.2
- lodash.debounce: 4.0.8
- resolve: 1.20.0
- semver: 6.3.0
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/helper-define-polyfill-provider/0.3.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==}
+ /@babel/helper-replace-supers/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.4.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.16.0
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/traverse': 7.17.3
- debug: 4.3.2
- lodash.debounce: 4.0.8
- resolve: 1.20.0
- semver: 6.3.0
+ '@babel/core': 7.9.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
transitivePeerDependencies:
- supports-color
+ dev: false
- /@babel/helper-define-polyfill-provider/0.3.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
+ /@babel/helper-simple-access/7.24.7:
+ resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
+ engines: {node: '>=6.9.0'}
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.5
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/traverse': 7.17.3
- debug: 4.3.2
- lodash.debounce: 4.0.8
- resolve: 1.20.0
- semver: 6.3.0
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/helper-environment-visitor/7.16.7:
- resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz}
+ /@babel/helper-skip-transparent-expression-wrappers/7.24.7:
+ resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-explode-assignable-expression/7.16.0:
- resolution: {integrity: sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ==}
+ /@babel/helper-split-export-declaration/7.24.7:
+ resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.24.7
- /@babel/helper-function-name/7.16.0:
- resolution: {integrity: sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==}
+ /@babel/helper-string-parser/7.24.7:
+ resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-get-function-arity': 7.16.0
- '@babel/template': 7.16.0
- '@babel/types': 7.17.0
- dev: false
- /@babel/helper-function-name/7.16.7:
- resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==}
+ /@babel/helper-validator-identifier/7.24.7:
+ resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-get-function-arity': 7.16.7
- '@babel/template': 7.16.7
- '@babel/types': 7.17.0
- /@babel/helper-get-function-arity/7.16.0:
- resolution: {integrity: sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==}
+ /@babel/helper-validator-option/7.24.7:
+ resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.0
- dev: false
- /@babel/helper-get-function-arity/7.16.7:
- resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==}
+ /@babel/helper-wrap-function/7.24.7:
+ resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/helper-function-name': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-hoist-variables/7.16.7:
- resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==}
+ /@babel/helpers/7.24.7:
+ resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/template': 7.24.7
+ '@babel/types': 7.24.7
- /@babel/helper-member-expression-to-functions/7.16.0:
- resolution: {integrity: sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==}
+ /@babel/highlight/7.24.7:
+ resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.17.0
- dev: false
+ '@babel/helper-validator-identifier': 7.24.7
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ picocolors: 1.0.1
- /@babel/helper-member-expression-to-functions/7.16.7:
- resolution: {integrity: sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/parser/7.24.7:
+ resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.24.7
- /@babel/helper-module-imports/7.16.0:
- resolution: {integrity: sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==}
+ /@babel/plugin-bugfix-firefox-class-in-computed-class-key/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/types': 7.17.0
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/helper-module-imports/7.16.7:
- resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/types': 7.17.0
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/helper-module-transforms/7.16.0:
- resolution: {integrity: sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.24.7:
+ resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
dependencies:
- '@babel/helper-module-imports': 7.16.0
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-simple-access': 7.16.0
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/helper-validator-identifier': 7.16.7
- '@babel/template': 7.16.7
- '@babel/traverse': 7.16.8
- '@babel/types': 7.16.8
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.7
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/helper-module-transforms/7.17.6:
- resolution: {integrity: sha512-2ULmRdqoOMpdvkbT8jONrZML/XALfzxlb052bldftkicAUy8AxSCkD5trDPQcwHNmolcl7wP6ehNqMlyUw6AaA==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
dependencies:
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-simple-access': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/helper-validator-identifier': 7.16.7
- '@babel/template': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/core': 7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.7_@babel+core@7.13.15
transitivePeerDependencies:
- supports-color
- /@babel/helper-optimise-call-expression/7.16.0:
- resolution: {integrity: sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
dependencies:
- '@babel/types': 7.17.0
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.7_@babel+core@7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/helper-optimise-call-expression/7.16.7:
- resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==}
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/types': 7.17.0
-
- /@babel/helper-plugin-utils/7.14.5:
- resolution: {integrity: sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-plugin-utils/7.16.7:
- resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==}
- engines: {node: '>=6.9.0'}
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/helper-remap-async-to-generator/7.16.4:
- resolution: {integrity: sha512-vGERmmhR+s7eH5Y/cp8PCVzj4XEjerq8jooMfxFdA5xVtAk9Sh4AQsrWgiErUEBjtGrBtOFKDUcWQFW4/dFwMA==}
+ /@babel/plugin-proposal-async-generator-functions/7.20.7:
+ resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-wrap-function': 7.16.0
- '@babel/types': 7.17.0
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7
+ '@babel/plugin-syntax-async-generators': 7.8.4
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/helper-replace-supers/7.16.0:
- resolution: {integrity: sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==}
+ /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-member-expression-to-functions': 7.16.0
- '@babel/helper-optimise-call-expression': 7.16.0
- '@babel/traverse': 7.16.3
- '@babel/types': 7.17.0
+ '@babel/core': 7.13.15
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.13.15
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/helper-replace-supers/7.16.7:
- resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==}
+ /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-member-expression-to-functions': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.24.7
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/helper-simple-access/7.16.0:
- resolution: {integrity: sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.0
-
- /@babel/helper-simple-access/7.16.7:
- resolution: {integrity: sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==}
+ /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.0
-
- /@babel/helper-skip-transparent-expression-wrappers/7.16.0:
- resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.0
-
- /@babel/helper-split-export-declaration/7.16.0:
- resolution: {integrity: sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.0
- dev: false
-
- /@babel/helper-split-export-declaration/7.16.7:
- resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.17.0
-
- /@babel/helper-validator-identifier/7.15.7:
- resolution: {integrity: sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-validator-identifier/7.16.7:
- resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-validator-option/7.14.5:
- resolution: {integrity: sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-validator-option/7.16.7:
- resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-wrap-function/7.16.0:
- resolution: {integrity: sha512-VVMGzYY3vkWgCJML+qVLvGIam902mJW0FvT7Avj1zEe0Gn7D93aWdLblYARTxEw+6DhZmtzhBM2zv0ekE5zg1g==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-function-name': 7.16.7
- '@babel/template': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/helpers/7.16.3:
- resolution: {integrity: sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.16.7
- '@babel/traverse': 7.16.8
- '@babel/types': 7.16.8
- transitivePeerDependencies:
- - supports-color
-
- /@babel/helpers/7.17.2:
- resolution: {integrity: sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/highlight/7.16.0:
- resolution: {integrity: sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.15.7
- chalk: 2.4.2
- js-tokens: 4.0.0
-
- /@babel/highlight/7.16.7:
- resolution: {integrity: sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.16.7
- chalk: 2.4.2
- js-tokens: 4.0.0
-
- /@babel/parser/7.16.4:
- resolution: {integrity: sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.17.0
-
- /@babel/parser/7.16.8:
- resolution: {integrity: sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.17.0
-
- /@babel/parser/7.17.3:
- resolution: {integrity: sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.17.0
-
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2_@babel+core@7.16.0:
- resolution: {integrity: sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
-
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2_@babel+core@7.17.5:
- resolution: {integrity: sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
-
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0:
- resolution: {integrity: sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.16.0
- dev: true
-
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0
-
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.17.5
-
- /@babel/plugin-proposal-async-generator-functions/7.16.4:
- resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-remap-async-to-generator': 7.16.4
- '@babel/plugin-syntax-async-generators': 7.8.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-async-generator-functions/7.16.4_@babel+core@7.13.15:
- resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-remap-async-to-generator': 7.16.4
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.13.15
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-proposal-async-generator-functions/7.16.4_@babel+core@7.16.0:
- resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-remap-async-to-generator': 7.16.4
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/plugin-proposal-async-generator-functions/7.16.4_@babel+core@7.17.5:
- resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-remap-async-to-generator': 7.16.4
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5
- transitivePeerDependencies:
- - supports-color
-
- /@babel/plugin-proposal-async-generator-functions/7.16.4_@babel+core@7.9.0:
- resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-remap-async-to-generator': 7.16.4
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7_@babel+core@7.9.0
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-class-properties/7.13.0_@babel+core@7.13.15:
+ /@babel/plugin-proposal-class-properties/7.13.0:
resolution: {integrity: sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-proposal-class-properties/7.16.0:
- resolution: {integrity: sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-create-class-features-plugin': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-class-features-plugin': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-class-properties/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-class-properties/7.13.0_@babel+core@7.13.15:
+ resolution: {integrity: sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.13.15
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/plugin-proposal-class-properties/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-class-properties/7.13.0_@babel+core@7.24.7:
+ resolution: {integrity: sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/plugin-proposal-class-properties/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==}
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.24.7:
+ resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-class-properties/7.8.3_@babel+core@7.9.0:
resolution: {integrity: sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-class-static-block/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-mAy3sdcY9sKAkf3lQbDiv3olOfiLqI51c9DR9b19uMoR2Z6r5pmGl7dfNFqEvqOyqbf1ta4lknK4gc5PJn3mfA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/plugin-proposal-class-static-block/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-mAy3sdcY9sKAkf3lQbDiv3olOfiLqI51c9DR9b19uMoR2Z6r5pmGl7dfNFqEvqOyqbf1ta4lknK4gc5PJn3mfA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.5
- transitivePeerDependencies:
- - supports-color
-
/@babel/plugin-proposal-decorators/7.13.15_@babel+core@7.13.15:
resolution: {integrity: sha512-ibAMAqUm97yzi+LPgdr5Nqb9CMkeieGHvwPg1ywSGjZrZHQEGqE01HmOio8kxRpA/+VtOHouIVy2FMpBbtltjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-decorators': 7.16.0_@babel+core@7.13.15
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-decorators': 7.24.7_@babel+core@7.13.15
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-decorators/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-DoEpnuXK14XV9btI1k8tzNGCutMclpj4yru8aXKoHlVmbO1s+2A+g2+h4JhcjrxkFJqzbymnLG6j/niOf3iFXQ==}
+ /@babel/plugin-proposal-decorators/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-decorators': 7.16.7_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-decorators': 7.24.7_@babel+core@7.24.7
transitivePeerDependencies:
- supports-color
@@ -2802,649 +2713,520 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-decorators': 7.16.7_@babel+core@7.9.0
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-decorators': 7.24.7_@babel+core@7.9.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-dynamic-import/7.16.0:
- resolution: {integrity: sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==}
+ /@babel/plugin-proposal-dynamic-import/7.18.6:
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-dynamic-import': 7.8.3
dev: true
- /@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==}
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.13.15:
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0
- /@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==}
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.24.7:
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.24.7
+ dev: true
- /@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==}
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.9.0:
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0
dev: false
- /@babel/plugin-proposal-export-namespace-from/7.16.0:
- resolution: {integrity: sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==}
+ /@babel/plugin-proposal-export-namespace-from/7.18.9:
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==}
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.13.15:
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.0
- /@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==}
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.24.7:
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.24.7
+ dev: true
- /@babel/plugin-proposal-json-strings/7.16.0:
- resolution: {integrity: sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==}
+ /@babel/plugin-proposal-json-strings/7.18.6:
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-json-strings': 7.8.3
dev: true
- /@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==}
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.13.15:
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0
- /@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==}
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.24.7:
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.24.7
+ dev: true
- /@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==}
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.9.0:
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0
dev: false
- /@babel/plugin-proposal-logical-assignment-operators/7.16.0:
- resolution: {integrity: sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==}
+ /@babel/plugin-proposal-logical-assignment-operators/7.20.7:
+ resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==}
+ /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-proposal-logical-assignment-operators/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0
- /@babel/plugin-proposal-logical-assignment-operators/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==}
+ /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.24.7
+ dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.16.0:
- resolution: {integrity: sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==}
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6:
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==}
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.13.15:
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0
-
- /@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5
- /@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==}
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.24.7:
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.24.7
/@babel/plugin-proposal-nullish-coalescing-operator/7.8.3_@babel+core@7.9.0:
resolution: {integrity: sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
dev: false
- /@babel/plugin-proposal-numeric-separator/7.16.0:
- resolution: {integrity: sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==}
+ /@babel/plugin-proposal-numeric-separator/7.18.6:
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-numeric-separator': 7.10.4
dev: true
- /@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==}
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.13.15:
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0
-
- /@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5
- /@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==}
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.24.7:
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.9.0
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.24.7
/@babel/plugin-proposal-numeric-separator/7.8.3_@babel+core@7.9.0:
resolution: {integrity: sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.9.0
dev: false
- /@babel/plugin-proposal-object-rest-spread/7.13.8_@babel+core@7.13.15:
+ /@babel/plugin-proposal-object-rest-spread/7.13.8:
resolution: {integrity: sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/core': 7.13.15
- '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.13.15
- '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-proposal-object-rest-spread/7.16.0:
- resolution: {integrity: sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/helper-compilation-targets': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/compat-data': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3
- '@babel/plugin-transform-parameters': 7.16.3
+ '@babel/plugin-transform-parameters': 7.24.7
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-object-rest-spread/7.13.8_@babel+core@7.13.15:
+ resolution: {integrity: sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.16.4
+ '@babel/compat-data': 7.24.7
'@babel/core': 7.13.15
- '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.13.15
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.13.15
- '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-proposal-object-rest-spread/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/core': 7.16.0
- '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0
- '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.16.0
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.13.15
- /@babel/plugin-proposal-object-rest-spread/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-object-rest-spread/7.13.8_@babel+core@7.24.7:
+ resolution: {integrity: sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.17.5
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.24.7
+ dev: true
- /@babel/plugin-proposal-object-rest-spread/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-object-rest-spread/7.13.8_@babel+core@7.9.0:
+ resolution: {integrity: sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.16.4
+ '@babel/compat-data': 7.24.7
'@babel/core': 7.9.0
- '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0
- '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.9.0
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.9.0
dev: false
- /@babel/plugin-proposal-optional-catch-binding/7.16.0:
- resolution: {integrity: sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==}
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6:
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==}
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.13.15:
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0
- /@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==}
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.24.7:
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.24.7
+ dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==}
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0
dev: false
- /@babel/plugin-proposal-optional-chaining/7.16.0:
- resolution: {integrity: sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==}
+ /@babel/plugin-proposal-optional-chaining/7.21.0:
+ resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-optional-chaining': 7.8.3
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==}
+ /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.13.15:
+ resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.13.15
- dev: false
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==}
+ /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.24.7:
+ resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-optional-chaining/7.9.0_@babel+core@7.9.0:
+ resolution: {integrity: sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0
+ dev: false
- /@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==}
+ /@babel/plugin-proposal-private-methods/7.18.6:
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0
- dev: false
-
- /@babel/plugin-proposal-optional-chaining/7.9.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0
- dev: false
-
- /@babel/plugin-proposal-private-methods/7.16.0:
- resolution: {integrity: sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-create-class-features-plugin': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-class-features-plugin': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-methods/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==}
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.13.15:
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-proposal-private-methods/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-private-methods/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==}
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.24.7:
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-private-property-in-object/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==}
+ /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.24.7:
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.7
- /@babel/plugin-proposal-private-property-in-object/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==}
+ /@babel/plugin-proposal-private-property-in-object/7.21.11_@babel+core@7.24.7:
+ resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-unicode-property-regex/7.16.0:
- resolution: {integrity: sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==}
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6:
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-create-regexp-features-plugin': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==}
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.13.15:
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==}
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.24.7:
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==}
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.9.0:
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
/@babel/plugin-syntax-async-generators/7.8.4:
@@ -3452,7 +3234,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.3:
@@ -3461,7 +3243,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.13.15:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
@@ -3469,24 +3251,15 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.0:
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.5:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.24.7:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.9.0:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
@@ -3494,7 +3267,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
/@babel/plugin-syntax-bigint/7.8.3:
@@ -3502,7 +3275,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.12.3:
@@ -3511,22 +3284,22 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.13.15:
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-class-properties/7.12.13:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.12.3:
@@ -3535,7 +3308,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.13.15:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
@@ -3543,70 +3316,52 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.0:
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.5:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.24.7:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
-
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.0:
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.5:
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.24.7:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-decorators/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-nxnnngZClvlY13nHJAIDow0S7Qzhq64fQ/NlqS+VER3kjW/4F0jLhXjeL8jcwSwz6Ca3rotT5NJD2T9I7lcv7g==}
+ /@babel/plugin-syntax-decorators/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.14.5
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-syntax-decorators/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-vQ+PxL+srA7g6Rx6I1e15m55gftknl2X8GCUW1JTlkTaXZLJOS0UcaY0eK9jYT7IYf4awn6qwyghVHLDz1WyMw==}
+ /@babel/plugin-syntax-decorators/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-decorators/7.16.7_@babel+core@7.9.0:
- resolution: {integrity: sha512-vQ+PxL+srA7g6Rx6I1e15m55gftknl2X8GCUW1JTlkTaXZLJOS0UcaY0eK9jYT7IYf4awn6qwyghVHLDz1WyMw==}
+ /@babel/plugin-syntax-decorators/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
/@babel/plugin-syntax-dynamic-import/7.8.3:
@@ -3614,7 +3369,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.14.5
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.13.15:
@@ -3623,24 +3378,15 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- dev: false
-
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.0:
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.14.5
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.24.7:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.14.5
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.9.0:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
@@ -3648,7 +3394,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.14.5
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
/@babel/plugin-syntax-export-namespace-from/7.8.3:
@@ -3656,7 +3402,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.13.15:
@@ -3665,70 +3411,68 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.0:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.24.7:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.5:
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ /@babel/plugin-syntax-flow/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-flow/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-dH91yCo0RyqfzWgoM5Ji9ir8fQ+uFbt9KHM3d2x4jZOuHS6wNA+CRmRUP/BWCsHG2bjc7A2Way6AvH1eQk0wig==}
+ /@babel/plugin-syntax-flow/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-flow/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-dH91yCo0RyqfzWgoM5Ji9ir8fQ+uFbt9KHM3d2x4jZOuHS6wNA+CRmRUP/BWCsHG2bjc7A2Way6AvH1eQk0wig==}
+ /@babel/plugin-syntax-flow/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
- /@babel/plugin-syntax-flow/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-dH91yCo0RyqfzWgoM5Ji9ir8fQ+uFbt9KHM3d2x4jZOuHS6wNA+CRmRUP/BWCsHG2bjc7A2Way6AvH1eQk0wig==}
+ /@babel/plugin-syntax-import-assertions/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-flow/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-dH91yCo0RyqfzWgoM5Ji9ir8fQ+uFbt9KHM3d2x4jZOuHS6wNA+CRmRUP/BWCsHG2bjc7A2Way6AvH1eQk0wig==}
+ /@babel/plugin-syntax-import-attributes/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-import-meta/7.10.4:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.3:
@@ -3737,22 +3481,30 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.13.15:
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.5:
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.24.7:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-json-strings/7.8.3:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.3:
@@ -3761,7 +3513,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.13.15:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
@@ -3769,24 +3521,15 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.0:
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.24.7:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.9.0:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
@@ -3794,53 +3537,43 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-syntax-jsx/7.16.0:
- resolution: {integrity: sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==}
+ /@babel/plugin-syntax-jsx/7.24.7:
+ resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.14.5
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==}
+ /@babel/plugin-syntax-jsx/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- dev: false
-
- /@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.14.5
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==}
+ /@babel/plugin-syntax-jsx/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.14.5
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==}
+ /@babel/plugin-syntax-jsx/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.14.5
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
/@babel/plugin-syntax-logical-assignment-operators/7.10.4:
@@ -3848,7 +3581,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.3:
@@ -3857,7 +3590,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.13.15:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
@@ -3865,31 +3598,22 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.0:
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.5:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.24.7:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.3:
@@ -3898,7 +3622,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.13.15:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
@@ -3906,24 +3630,15 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.0:
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.24.7:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.9.0:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
@@ -3931,7 +3646,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
/@babel/plugin-syntax-numeric-separator/7.10.4:
@@ -3939,7 +3654,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.3:
@@ -3948,7 +3663,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.13.15:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
@@ -3956,24 +3671,15 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.0:
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.5:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.24.7:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.9.0:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
@@ -3981,7 +3687,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
/@babel/plugin-syntax-object-rest-spread/7.8.3:
@@ -3989,7 +3695,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.3:
@@ -3998,7 +3704,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.13.15:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
@@ -4006,24 +3712,15 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.0:
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.24.7:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.9.0:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
@@ -4031,7 +3728,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
/@babel/plugin-syntax-optional-catch-binding/7.8.3:
@@ -4039,7 +3736,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.3:
@@ -4048,7 +3745,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.13.15:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
@@ -4056,24 +3753,15 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.0:
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.24.7:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.9.0:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
@@ -4081,7 +3769,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
/@babel/plugin-syntax-optional-chaining/7.8.3:
@@ -4089,7 +3777,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.3:
@@ -4098,7 +3786,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.13.15:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
@@ -4106,24 +3794,15 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.0:
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.5:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.24.7:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.9.0:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
@@ -4131,26 +3810,17 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.0:
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
-
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.17.5:
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.24.7:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-top-level-await/7.14.5:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
@@ -4158,7 +3828,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.12.3:
@@ -4168,7 +3838,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.13.15:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
@@ -4177,26 +3847,16 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.16.0:
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.5:
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.24.7:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.9.0:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
@@ -4205,603 +3865,564 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-syntax-typescript/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ==}
+ /@babel/plugin-syntax-typescript/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==}
+ /@babel/plugin-syntax-typescript/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.9.0:
- resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==}
+ /@babel/plugin-syntax-typescript/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-arrow-functions/7.16.0:
- resolution: {integrity: sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==}
+ /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.24.7:
+ resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==}
+ /@babel/plugin-transform-arrow-functions/7.24.7:
+ resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: true
- /@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==}
+ /@babel/plugin-transform-arrow-functions/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==}
+ /@babel/plugin-transform-arrow-functions/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==}
+ /@babel/plugin-transform-arrow-functions/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-async-to-generator/7.16.0:
- resolution: {integrity: sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==}
+ /@babel/plugin-transform-async-generator-functions/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-remap-async-to-generator': 7.16.4
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.24.7
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==}
+ /@babel/plugin-transform-async-to-generator/7.24.7:
+ resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-remap-async-to-generator': 7.16.4
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7
transitivePeerDependencies:
- supports-color
- dev: false
+ dev: true
- /@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==}
+ /@babel/plugin-transform-async-to-generator/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-remap-async-to-generator': 7.16.4
+ '@babel/core': 7.13.15
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7_@babel+core@7.13.15
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==}
+ /@babel/plugin-transform-async-to-generator/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-remap-async-to-generator': 7.16.4
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7_@babel+core@7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==}
+ /@babel/plugin-transform-async-to-generator/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-remap-async-to-generator': 7.16.4
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7_@babel+core@7.9.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-block-scoped-functions/7.16.0:
- resolution: {integrity: sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==}
+ /@babel/plugin-transform-block-scoped-functions/7.24.7:
+ resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==}
+ /@babel/plugin-transform-block-scoped-functions/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==}
+ /@babel/plugin-transform-block-scoped-functions/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==}
+ /@babel/plugin-transform-block-scoped-functions/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-block-scoping/7.16.0:
- resolution: {integrity: sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==}
+ /@babel/plugin-transform-block-scoping/7.24.7:
+ resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==}
+ /@babel/plugin-transform-block-scoping/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==}
+ /@babel/plugin-transform-block-scoping/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==}
+ /@babel/plugin-transform-block-scoping/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
- /@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==}
+ /@babel/plugin-transform-class-properties/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-classes/7.13.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==}
+ /@babel/plugin-transform-class-static-block/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-annotate-as-pure': 7.16.0
- '@babel/helper-function-name': 7.16.0
- '@babel/helper-optimise-call-expression': 7.16.0
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-replace-supers': 7.16.0
- '@babel/helper-split-export-declaration': 7.16.0
- globals: 11.12.0
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.24.7
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/plugin-transform-classes/7.16.0:
- resolution: {integrity: sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-classes/7.13.0:
+ resolution: {integrity: sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-classes/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-classes/7.13.0_@babel+core@7.13.15:
+ resolution: {integrity: sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/plugin-transform-classes/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-classes/7.13.0_@babel+core@7.24.7:
+ resolution: {integrity: sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/plugin-transform-classes/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-classes/7.13.0_@babel+core@7.9.0:
+ resolution: {integrity: sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/core': 7.9.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
+ dev: false
- /@babel/plugin-transform-classes/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==}
+ /@babel/plugin-transform-classes/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/plugin-transform-computed-properties/7.16.0:
- resolution: {integrity: sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==}
+ /@babel/plugin-transform-computed-properties/7.24.7:
+ resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/template': 7.24.7
dev: true
- /@babel/plugin-transform-computed-properties/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==}
+ /@babel/plugin-transform-computed-properties/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-computed-properties/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/template': 7.24.7
- /@babel/plugin-transform-computed-properties/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==}
+ /@babel/plugin-transform-computed-properties/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/template': 7.24.7
- /@babel/plugin-transform-computed-properties/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==}
+ /@babel/plugin-transform-computed-properties/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/template': 7.24.7
dev: false
- /@babel/plugin-transform-destructuring/7.13.0_@babel+core@7.13.15:
+ /@babel/plugin-transform-destructuring/7.13.0:
resolution: {integrity: sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- dev: false
-
- /@babel/plugin-transform-destructuring/7.16.0:
- resolution: {integrity: sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-destructuring/7.13.0_@babel+core@7.13.15:
+ resolution: {integrity: sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-destructuring/7.13.0_@babel+core@7.24.7:
+ resolution: {integrity: sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: true
- /@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-destructuring/7.13.0_@babel+core@7.9.0:
+ resolution: {integrity: sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-dotall-regex/7.16.0:
- resolution: {integrity: sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==}
+ /@babel/plugin-transform-destructuring/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-create-regexp-features-plugin': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==}
+ /@babel/plugin-transform-dotall-regex/7.24.7:
+ resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-create-regexp-features-plugin': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: true
- /@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==}
+ /@babel/plugin-transform-dotall-regex/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.13.15
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==}
+ /@babel/plugin-transform-dotall-regex/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==}
+ /@babel/plugin-transform-dotall-regex/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-duplicate-keys/7.16.0:
- resolution: {integrity: sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==}
+ /@babel/plugin-transform-duplicate-keys/7.24.7:
+ resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==}
+ /@babel/plugin-transform-duplicate-keys/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==}
+ /@babel/plugin-transform-duplicate-keys/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==}
+ /@babel/plugin-transform-duplicate-keys/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
- /@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==}
+ /@babel/plugin-transform-dynamic-import/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.24.7
- /@babel/plugin-transform-exponentiation-operator/7.16.0:
- resolution: {integrity: sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==}
+ /@babel/plugin-transform-exponentiation-operator/7.24.7:
+ resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==}
+ /@babel/plugin-transform-exponentiation-operator/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==}
+ /@babel/plugin-transform-exponentiation-operator/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==}
+ /@babel/plugin-transform-exponentiation-operator/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.9.0
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
- /@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==}
+ /@babel/plugin-transform-export-namespace-from/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.24.7
/@babel/plugin-transform-flow-strip-types/7.13.0_@babel+core@7.13.15:
resolution: {integrity: sha512-EXAGFMJgSX8gxWD7PZtW/P6M+z74jpx3wm/+9pn+c2dOawPpBkUX7BrfyPvo6ZpXbgRIEuwgwDb/MGlKvu2pOg==}
@@ -4809,30 +4430,30 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-flow': 7.16.0_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-flow': 7.24.7_@babel+core@7.13.15
dev: false
- /@babel/plugin-transform-flow-strip-types/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-vs/F5roOaO/+WxKfp9PkvLsAyj0G+Q0zbFimHm9X2KDgabN2XmNFoAafmeGEYspUlIF9+MvVmyek9UyHiqeG/w==}
+ /@babel/plugin-transform-flow-strip-types/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-flow': 7.16.0_@babel+core@7.16.0
+ '@babel/core': 7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-flow': 7.24.7_@babel+core@7.13.15
dev: true
- /@babel/plugin-transform-flow-strip-types/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-vs/F5roOaO/+WxKfp9PkvLsAyj0G+Q0zbFimHm9X2KDgabN2XmNFoAafmeGEYspUlIF9+MvVmyek9UyHiqeG/w==}
+ /@babel/plugin-transform-flow-strip-types/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-flow': 7.16.0_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-flow': 7.24.7_@babel+core@7.24.7
/@babel/plugin-transform-flow-strip-types/7.9.0_@babel+core@7.9.0:
resolution: {integrity: sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg==}
@@ -4840,813 +4461,755 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-flow': 7.16.0_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-flow': 7.24.7_@babel+core@7.9.0
dev: false
- /@babel/plugin-transform-for-of/7.16.0:
- resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==}
+ /@babel/plugin-transform-for-of/7.24.7:
+ resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-transform-for-of/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==}
+ /@babel/plugin-transform-for-of/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-for-of/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-for-of/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==}
+ /@babel/plugin-transform-for-of/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-for-of/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==}
+ /@babel/plugin-transform-for-of/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/plugin-transform-function-name/7.16.0:
- resolution: {integrity: sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==}
+ /@babel/plugin-transform-function-name/7.24.7:
+ resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-function-name/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==}
+ /@babel/plugin-transform-function-name/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-function-name/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==}
+ /@babel/plugin-transform-function-name/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-function-name/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==}
+ /@babel/plugin-transform-function-name/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.9.0
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
- /@babel/plugin-transform-function-name/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==}
+ /@babel/plugin-transform-json-strings/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.24.7
- /@babel/plugin-transform-literals/7.16.0:
- resolution: {integrity: sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==}
+ /@babel/plugin-transform-literals/7.24.7:
+ resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-literals/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==}
+ /@babel/plugin-transform-literals/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-literals/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-literals/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==}
+ /@babel/plugin-transform-literals/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-literals/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==}
+ /@babel/plugin-transform-literals/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-member-expression-literals/7.16.0:
- resolution: {integrity: sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==}
+ /@babel/plugin-transform-logical-assignment-operators/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.24.7
- /@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==}
+ /@babel/plugin-transform-member-expression-literals/7.24.7:
+ resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: true
- /@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==}
+ /@babel/plugin-transform-member-expression-literals/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==}
+ /@babel/plugin-transform-member-expression-literals/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==}
+ /@babel/plugin-transform-member-expression-literals/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-modules-amd/7.16.0:
- resolution: {integrity: sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==}
+ /@babel/plugin-transform-modules-amd/7.24.7:
+ resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/helper-module-transforms': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==}
+ /@babel/plugin-transform-modules-amd/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==}
+ /@babel/plugin-transform-modules-amd/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==}
+ /@babel/plugin-transform-modules-amd/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-modules-commonjs/7.16.0:
- resolution: {integrity: sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==}
+ /@babel/plugin-transform-modules-commonjs/7.24.7:
+ resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-simple-access': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/helper-module-transforms': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==}
+ /@babel/plugin-transform-modules-commonjs/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-simple-access': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-simple-access': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==}
+ /@babel/plugin-transform-modules-commonjs/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-simple-access': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==}
+ /@babel/plugin-transform-modules-commonjs/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-simple-access': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-modules-systemjs/7.16.0:
- resolution: {integrity: sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==}
+ /@babel/plugin-transform-modules-systemjs/7.24.7:
+ resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-identifier': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==}
+ /@babel/plugin-transform-modules-systemjs/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-identifier': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-systemjs/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-identifier': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-systemjs/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==}
+ /@babel/plugin-transform-modules-systemjs/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-identifier': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/core': 7.24.7
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-systemjs/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==}
+ /@babel/plugin-transform-modules-systemjs/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-identifier': 7.16.7
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-modules-umd/7.16.0:
- resolution: {integrity: sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==}
+ /@babel/plugin-transform-modules-umd/7.24.7:
+ resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-module-transforms': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==}
+ /@babel/plugin-transform-modules-umd/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-modules-umd/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-umd/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==}
+ /@babel/plugin-transform-modules-umd/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-umd/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==}
+ /@babel/plugin-transform-modules-umd/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-module-transforms': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.0:
- resolution: {integrity: sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==}
+ /@babel/plugin-transform-named-capturing-groups-regex/7.24.7:
+ resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/helper-create-regexp-features-plugin': 7.16.0
+ '@babel/helper-create-regexp-features-plugin': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==}
+ /@babel/plugin-transform-named-capturing-groups-regex/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==}
+ /@babel/plugin-transform-named-capturing-groups-regex/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==}
+ /@babel/plugin-transform-named-capturing-groups-regex/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.9.0
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-new-target/7.16.0:
- resolution: {integrity: sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==}
+ /@babel/plugin-transform-new-target/7.24.7:
+ resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-new-target/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==}
+ /@babel/plugin-transform-new-target/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+
+ /@babel/plugin-transform-new-target/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+
+ /@babel/plugin-transform-new-target/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-new-target/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==}
+ /@babel/plugin-transform-nullish-coalescing-operator/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.24.7
- /@babel/plugin-transform-new-target/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==}
+ /@babel/plugin-transform-numeric-separator/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.24.7
- /@babel/plugin-transform-new-target/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==}
+ /@babel/plugin-transform-object-rest-spread/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.24.7
- /@babel/plugin-transform-object-super/7.16.0:
- resolution: {integrity: sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==}
+ /@babel/plugin-transform-object-super/7.24.7:
+ resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-object-super/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==}
+ /@babel/plugin-transform-object-super/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.13.15
transitivePeerDependencies:
- supports-color
- dev: false
- /@babel/plugin-transform-object-super/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==}
+ /@babel/plugin-transform-object-super/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-object-super/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==}
+ /@babel/plugin-transform-object-super/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7_@babel+core@7.9.0
transitivePeerDependencies:
- supports-color
+ dev: false
- /@babel/plugin-transform-object-super/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==}
+ /@babel/plugin-transform-optional-catch-binding/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-replace-supers': 7.16.7
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.24.7
- /@babel/plugin-transform-parameters/7.16.3:
- resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==}
+ /@babel/plugin-transform-optional-chaining/7.24.7:
+ resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-transform-parameters/7.16.3_@babel+core@7.13.15:
- resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==}
+ /@babel/plugin-transform-optional-chaining/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.13.15
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-parameters/7.16.3_@babel+core@7.16.0:
- resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==}
+ /@babel/plugin-transform-optional-chaining/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-parameters/7.16.3_@babel+core@7.17.5:
- resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==}
+ /@babel/plugin-transform-parameters/7.24.7:
+ resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: true
- /@babel/plugin-transform-parameters/7.16.3_@babel+core@7.9.0:
- resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==}
+ /@babel/plugin-transform-parameters/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-property-literals/7.16.0:
- resolution: {integrity: sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==}
+ /@babel/plugin-transform-parameters/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==}
+ /@babel/plugin-transform-parameters/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==}
+ /@babel/plugin-transform-private-methods/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==}
+ /@babel/plugin-transform-private-property-in-object/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==}
+ /@babel/plugin-transform-property-literals/7.24.7:
+ resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: true
- /@babel/plugin-transform-react-constant-elements/7.13.13_@babel+core@7.13.15:
- resolution: {integrity: sha512-SNJU53VM/SjQL0bZhyU+f4kJQz7bQQajnrZRSaU21hruG/NWY41AEM9AWXeXX90pYr/C2yAmTgI6yW3LlLrAUQ==}
+ /@babel/plugin-transform-property-literals/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-react-constant-elements/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-OgtklS+p9t1X37eWA4XdvvbZG/3gqzX569gqmo3q4/Ui6qjfTQmOs5UTSrfdD9nVByHhX6Gbm/Pyc4KbwUXGWA==}
+ /@babel/plugin-transform-property-literals/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-react-constant-elements/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-OgtklS+p9t1X37eWA4XdvvbZG/3gqzX569gqmo3q4/Ui6qjfTQmOs5UTSrfdD9nVByHhX6Gbm/Pyc4KbwUXGWA==}
+ /@babel/plugin-transform-property-literals/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
- /@babel/plugin-transform-react-display-name/7.12.13_@babel+core@7.13.15:
- resolution: {integrity: sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==}
+ /@babel/plugin-transform-react-constant-elements/7.13.13_@babel+core@7.13.15:
+ resolution: {integrity: sha512-SNJU53VM/SjQL0bZhyU+f4kJQz7bQQajnrZRSaU21hruG/NWY41AEM9AWXeXX90pYr/C2yAmTgI6yW3LlLrAUQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-react-display-name/7.16.0:
- resolution: {integrity: sha512-FJFdJAqaCpndL+pIf0aeD/qlQwT7QXOvR6Cc8JPvNhKJBi2zc/DPc4g05Y3fbD/0iWAMQFGij4+Xw+4L/BMpTg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-react-display-name/7.12.13:
+ resolution: {integrity: sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-react-display-name/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-FJFdJAqaCpndL+pIf0aeD/qlQwT7QXOvR6Cc8JPvNhKJBi2zc/DPc4g05Y3fbD/0iWAMQFGij4+Xw+4L/BMpTg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-react-display-name/7.12.13_@babel+core@7.13.15:
+ resolution: {integrity: sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-react-display-name/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-FJFdJAqaCpndL+pIf0aeD/qlQwT7QXOvR6Cc8JPvNhKJBi2zc/DPc4g05Y3fbD/0iWAMQFGij4+Xw+4L/BMpTg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-react-display-name/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-FJFdJAqaCpndL+pIf0aeD/qlQwT7QXOvR6Cc8JPvNhKJBi2zc/DPc4g05Y3fbD/0iWAMQFGij4+Xw+4L/BMpTg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-react-display-name/7.12.13_@babel+core@7.9.0:
+ resolution: {integrity: sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
- /@babel/plugin-transform-react-display-name/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-FJFdJAqaCpndL+pIf0aeD/qlQwT7QXOvR6Cc8JPvNhKJBi2zc/DPc4g05Y3fbD/0iWAMQFGij4+Xw+4L/BMpTg==}
+ /@babel/plugin-transform-react-display-name/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/plugin-transform-react-display-name/7.8.3_@babel+core@7.9.0:
resolution: {integrity: sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==}
@@ -5654,276 +5217,256 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-react-jsx-development/7.16.0:
- resolution: {integrity: sha512-qq65iSqBRq0Hr3wq57YG2AmW0H6wgTnIzpffTphrUWUgLCOK+zf1f7G0vuOiXrp7dU1qq+fQBoqZ3wCDAkhFzw==}
+ /@babel/plugin-transform-react-jsx-development/7.24.7:
+ resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/plugin-transform-react-jsx': 7.16.0
+ '@babel/plugin-transform-react-jsx': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-transform-react-jsx-development/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-qq65iSqBRq0Hr3wq57YG2AmW0H6wgTnIzpffTphrUWUgLCOK+zf1f7G0vuOiXrp7dU1qq+fQBoqZ3wCDAkhFzw==}
+ /@babel/plugin-transform-react-jsx-development/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/plugin-transform-react-jsx': 7.16.0_@babel+core@7.13.15
- dev: false
-
- /@babel/plugin-transform-react-jsx-development/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-qq65iSqBRq0Hr3wq57YG2AmW0H6wgTnIzpffTphrUWUgLCOK+zf1f7G0vuOiXrp7dU1qq+fQBoqZ3wCDAkhFzw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/plugin-transform-react-jsx': 7.16.0_@babel+core@7.16.0
+ '@babel/plugin-transform-react-jsx': 7.24.7_@babel+core@7.13.15
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-react-jsx-development/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-qq65iSqBRq0Hr3wq57YG2AmW0H6wgTnIzpffTphrUWUgLCOK+zf1f7G0vuOiXrp7dU1qq+fQBoqZ3wCDAkhFzw==}
+ /@babel/plugin-transform-react-jsx-development/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/plugin-transform-react-jsx': 7.16.0_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/plugin-transform-react-jsx': 7.24.7_@babel+core@7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-react-jsx-development/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-qq65iSqBRq0Hr3wq57YG2AmW0H6wgTnIzpffTphrUWUgLCOK+zf1f7G0vuOiXrp7dU1qq+fQBoqZ3wCDAkhFzw==}
+ /@babel/plugin-transform-react-jsx-development/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/plugin-transform-react-jsx': 7.16.0_@babel+core@7.9.0
+ '@babel/plugin-transform-react-jsx': 7.24.7_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/plugin-transform-react-jsx-self/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-97yCFY+2GvniqOThOSjPor8xUoDiQ0STVWAQMl3pjhJoFVe5DuXDLZCRSZxu9clx+oRCbTiXGgKEG/Yoyo6Y+w==}
+ /@babel/plugin-transform-react-jsx-self/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-react-jsx-source/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-8yvbGGrHOeb/oyPc9tzNoe9/lmIjz3HLa9Nc5dMGDyNpGjfFrk8D2KdEq9NRkftZzeoQEW6yPQ29TMZtrLiUUA==}
+ /@babel/plugin-transform-react-jsx-source/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-react-jsx/7.16.0:
- resolution: {integrity: sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==}
+ /@babel/plugin-transform-react-jsx/7.24.7:
+ resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-jsx': 7.16.0
- '@babel/types': 7.17.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-jsx': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-transform-react-jsx/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==}
+ /@babel/plugin-transform-react-jsx/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-jsx': 7.16.0_@babel+core@7.13.15
- '@babel/types': 7.17.0
- dev: false
-
- /@babel/plugin-transform-react-jsx/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-jsx': 7.16.0_@babel+core@7.16.0
- '@babel/types': 7.17.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-jsx': 7.24.7_@babel+core@7.13.15
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-react-jsx/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==}
+ /@babel/plugin-transform-react-jsx/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-jsx': 7.16.0_@babel+core@7.17.5
- '@babel/types': 7.17.0
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-jsx': 7.24.7_@babel+core@7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-react-jsx/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==}
+ /@babel/plugin-transform-react-jsx/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-jsx': 7.16.0_@babel+core@7.9.0
- '@babel/types': 7.17.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-jsx': 7.24.7_@babel+core@7.9.0
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/plugin-transform-react-pure-annotations/7.16.0:
- resolution: {integrity: sha512-NC/Bj2MG+t8Ef5Pdpo34Ay74X4Rt804h5y81PwOpfPtmAK3i6CizmQqwyBQzIepz1Yt8wNr2Z2L7Lu3qBMfZMA==}
+ /@babel/plugin-transform-react-pure-annotations/7.24.7:
+ resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-react-pure-annotations/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-NC/Bj2MG+t8Ef5Pdpo34Ay74X4Rt804h5y81PwOpfPtmAK3i6CizmQqwyBQzIepz1Yt8wNr2Z2L7Lu3qBMfZMA==}
+ /@babel/plugin-transform-react-pure-annotations/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-react-pure-annotations/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-NC/Bj2MG+t8Ef5Pdpo34Ay74X4Rt804h5y81PwOpfPtmAK3i6CizmQqwyBQzIepz1Yt8wNr2Z2L7Lu3qBMfZMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-react-pure-annotations/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-NC/Bj2MG+t8Ef5Pdpo34Ay74X4Rt804h5y81PwOpfPtmAK3i6CizmQqwyBQzIepz1Yt8wNr2Z2L7Lu3qBMfZMA==}
+ /@babel/plugin-transform-react-pure-annotations/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-regenerator/7.16.0:
- resolution: {integrity: sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==}
+ /@babel/plugin-transform-regenerator/7.24.7:
+ resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- regenerator-transform: 0.14.5
+ '@babel/helper-plugin-utils': 7.24.7
+ regenerator-transform: 0.15.2
dev: true
- /@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==}
+ /@babel/plugin-transform-regenerator/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- regenerator-transform: 0.14.5
- dev: false
-
- /@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- regenerator-transform: 0.14.5
+ '@babel/helper-plugin-utils': 7.24.7
+ regenerator-transform: 0.15.2
- /@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==}
+ /@babel/plugin-transform-regenerator/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- regenerator-transform: 0.14.5
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ regenerator-transform: 0.15.2
- /@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==}
+ /@babel/plugin-transform-regenerator/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- regenerator-transform: 0.14.5
+ '@babel/helper-plugin-utils': 7.24.7
+ regenerator-transform: 0.15.2
dev: false
- /@babel/plugin-transform-reserved-words/7.16.0:
- resolution: {integrity: sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==}
+ /@babel/plugin-transform-reserved-words/7.24.7:
+ resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==}
+ /@babel/plugin-transform-reserved-words/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==}
+ /@babel/plugin-transform-reserved-words/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==}
+ /@babel/plugin-transform-reserved-words/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
- /@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-runtime/7.13.15:
+ resolution: {integrity: sha512-d+ezl76gx6Jal08XngJUkXM4lFXK/5Ikl9Mh4HKDxSfGJXmZ9xG64XT2oivBzfxb/eQ62VfvoMkaCZUKJMVrBA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ babel-plugin-polyfill-corejs2: 0.2.3
+ babel-plugin-polyfill-corejs3: 0.2.5
+ babel-plugin-polyfill-regenerator: 0.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
dev: false
/@babel/plugin-transform-runtime/7.13.15_@babel+core@7.13.15:
@@ -5932,62 +5475,29 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-module-imports': 7.16.0
- '@babel/helper-plugin-utils': 7.14.5
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
babel-plugin-polyfill-corejs2: 0.2.3_@babel+core@7.13.15
babel-plugin-polyfill-corejs3: 0.2.5_@babel+core@7.13.15
babel-plugin-polyfill-regenerator: 0.2.3_@babel+core@7.13.15
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-runtime/7.16.4:
- resolution: {integrity: sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- babel-plugin-polyfill-corejs2: 0.3.0
- babel-plugin-polyfill-corejs3: 0.4.0
- babel-plugin-polyfill-regenerator: 0.3.0
- semver: 6.3.0
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-runtime/7.16.4_@babel+core@7.16.0:
- resolution: {integrity: sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.16.0
- babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.16.0
- babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.16.0
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-runtime/7.16.4_@babel+core@7.17.5:
- resolution: {integrity: sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==}
+ /@babel/plugin-transform-runtime/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.17.5
- babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.17.5
- babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.17.5
- semver: 6.3.0
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ babel-plugin-polyfill-corejs2: 0.4.11_@babel+core@7.24.7
+ babel-plugin-polyfill-corejs3: 0.10.4_@babel+core@7.24.7
+ babel-plugin-polyfill-regenerator: 0.6.2_@babel+core@7.24.7
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -5997,388 +5507,349 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-module-imports': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- resolve: 1.20.0
- semver: 5.7.1
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ resolve: 1.22.8
+ semver: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/plugin-transform-shorthand-properties/7.16.0:
- resolution: {integrity: sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==}
+ /@babel/plugin-transform-shorthand-properties/7.24.7:
+ resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-shorthand-properties/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==}
+ /@babel/plugin-transform-shorthand-properties/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-shorthand-properties/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-shorthand-properties/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==}
+ /@babel/plugin-transform-shorthand-properties/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-shorthand-properties/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==}
+ /@babel/plugin-transform-shorthand-properties/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-spread/7.16.0:
- resolution: {integrity: sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==}
+ /@babel/plugin-transform-spread/7.24.7:
+ resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-transform-spread/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==}
+ /@babel/plugin-transform-spread/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- dev: false
-
- /@babel/plugin-transform-spread/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-spread/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==}
+ /@babel/plugin-transform-spread/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-spread/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==}
+ /@babel/plugin-transform-spread/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.16.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@babel/plugin-transform-sticky-regex/7.16.0:
- resolution: {integrity: sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==}
+ /@babel/plugin-transform-sticky-regex/7.24.7:
+ resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==}
+ /@babel/plugin-transform-sticky-regex/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==}
+ /@babel/plugin-transform-sticky-regex/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==}
+ /@babel/plugin-transform-sticky-regex/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-template-literals/7.16.0:
- resolution: {integrity: sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==}
+ /@babel/plugin-transform-template-literals/7.24.7:
+ resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==}
+ /@babel/plugin-transform-template-literals/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==}
+ /@babel/plugin-transform-template-literals/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==}
+ /@babel/plugin-transform-template-literals/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-typeof-symbol/7.16.0:
- resolution: {integrity: sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==}
+ /@babel/plugin-transform-typeof-symbol/7.24.7:
+ resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==}
+ /@babel/plugin-transform-typeof-symbol/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
-
- /@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==}
+ /@babel/plugin-transform-typeof-symbol/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==}
+ /@babel/plugin-transform-typeof-symbol/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: false
- /@babel/plugin-transform-typescript/7.16.1_@babel+core@7.13.15:
- resolution: {integrity: sha512-NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg==}
+ /@babel/plugin-transform-typescript/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-typescript': 7.16.0_@babel+core@7.13.15
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.24.7_@babel+core@7.13.15
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==}
+ /@babel/plugin-transform-typescript/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.24.7_@babel+core@7.24.7
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.9.0:
- resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==}
+ /@babel/plugin-transform-typescript/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-create-class-features-plugin': 7.16.7_@babel+core@7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.9.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.24.7_@babel+core@7.9.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-unicode-escapes/7.16.0:
- resolution: {integrity: sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==}
+ /@babel/plugin-transform-unicode-escapes/7.24.7:
+ resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-unicode-escapes/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==}
+ /@babel/plugin-transform-unicode-escapes/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-unicode-escapes/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==}
+ /@babel/plugin-transform-unicode-escapes/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-unicode-escapes/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==}
+ /@babel/plugin-transform-unicode-property-regex/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-unicode-regex/7.16.0:
- resolution: {integrity: sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==}
+ /@babel/plugin-transform-unicode-regex/7.24.7:
+ resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-create-regexp-features-plugin': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
dev: true
- /@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.13.15:
- resolution: {integrity: sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==}
+ /@babel/plugin-transform-unicode-regex/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==}
+ /@babel/plugin-transform-unicode-regex/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- /@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==}
+ /@babel/plugin-transform-unicode-regex/7.24.7_@babel+core@7.9.0:
+ resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.9.0
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ dev: false
- /@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.9.0:
- resolution: {integrity: sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==}
+ /@babel/plugin-transform-unicode-sets-regex/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.9.0
- '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- dev: false
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7_@babel+core@7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
/@babel/polyfill/7.12.1:
resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==}
deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.
dependencies:
core-js: 2.6.12
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: true
/@babel/preset-env/7.13.15:
@@ -6386,25 +5857,25 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/helper-compilation-targets': 7.16.3
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0
- '@babel/plugin-proposal-async-generator-functions': 7.16.4
- '@babel/plugin-proposal-class-properties': 7.16.0
- '@babel/plugin-proposal-dynamic-import': 7.16.0
- '@babel/plugin-proposal-export-namespace-from': 7.16.0
- '@babel/plugin-proposal-json-strings': 7.16.0
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.0
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0
- '@babel/plugin-proposal-numeric-separator': 7.16.0
- '@babel/plugin-proposal-object-rest-spread': 7.16.0
- '@babel/plugin-proposal-optional-catch-binding': 7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.16.0
- '@babel/plugin-proposal-private-methods': 7.16.0
- '@babel/plugin-proposal-unicode-property-regex': 7.16.0
- '@babel/plugin-syntax-async-generators': 7.8.4
+ '@babel/compat-data': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7
+ '@babel/plugin-proposal-class-properties': 7.13.0
+ '@babel/plugin-proposal-dynamic-import': 7.18.6
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9
+ '@babel/plugin-proposal-json-strings': 7.18.6
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6
+ '@babel/plugin-proposal-numeric-separator': 7.18.6
+ '@babel/plugin-proposal-object-rest-spread': 7.13.8
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6
+ '@babel/plugin-proposal-optional-chaining': 7.21.0
+ '@babel/plugin-proposal-private-methods': 7.18.6
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6
+ '@babel/plugin-syntax-async-generators': 7.8.4
'@babel/plugin-syntax-class-properties': 7.12.13
'@babel/plugin-syntax-dynamic-import': 7.8.3
'@babel/plugin-syntax-export-namespace-from': 7.8.3
@@ -6416,45 +5887,45 @@ packages:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3
'@babel/plugin-syntax-optional-chaining': 7.8.3
'@babel/plugin-syntax-top-level-await': 7.14.5
- '@babel/plugin-transform-arrow-functions': 7.16.0
- '@babel/plugin-transform-async-to-generator': 7.16.0
- '@babel/plugin-transform-block-scoped-functions': 7.16.0
- '@babel/plugin-transform-block-scoping': 7.16.0
- '@babel/plugin-transform-classes': 7.16.0
- '@babel/plugin-transform-computed-properties': 7.16.0
- '@babel/plugin-transform-destructuring': 7.16.0
- '@babel/plugin-transform-dotall-regex': 7.16.0
- '@babel/plugin-transform-duplicate-keys': 7.16.0
- '@babel/plugin-transform-exponentiation-operator': 7.16.0
- '@babel/plugin-transform-for-of': 7.16.0
- '@babel/plugin-transform-function-name': 7.16.0
- '@babel/plugin-transform-literals': 7.16.0
- '@babel/plugin-transform-member-expression-literals': 7.16.0
- '@babel/plugin-transform-modules-amd': 7.16.0
- '@babel/plugin-transform-modules-commonjs': 7.16.0
- '@babel/plugin-transform-modules-systemjs': 7.16.0
- '@babel/plugin-transform-modules-umd': 7.16.0
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0
- '@babel/plugin-transform-new-target': 7.16.0
- '@babel/plugin-transform-object-super': 7.16.0
- '@babel/plugin-transform-parameters': 7.16.3
- '@babel/plugin-transform-property-literals': 7.16.0
- '@babel/plugin-transform-regenerator': 7.16.0
- '@babel/plugin-transform-reserved-words': 7.16.0
- '@babel/plugin-transform-shorthand-properties': 7.16.0
- '@babel/plugin-transform-spread': 7.16.0
- '@babel/plugin-transform-sticky-regex': 7.16.0
- '@babel/plugin-transform-template-literals': 7.16.0
- '@babel/plugin-transform-typeof-symbol': 7.16.0
- '@babel/plugin-transform-unicode-escapes': 7.16.0
- '@babel/plugin-transform-unicode-regex': 7.16.0
- '@babel/preset-modules': 0.1.5
- '@babel/types': 7.16.8
+ '@babel/plugin-transform-arrow-functions': 7.24.7
+ '@babel/plugin-transform-async-to-generator': 7.24.7
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7
+ '@babel/plugin-transform-block-scoping': 7.24.7
+ '@babel/plugin-transform-classes': 7.13.0
+ '@babel/plugin-transform-computed-properties': 7.24.7
+ '@babel/plugin-transform-destructuring': 7.13.0
+ '@babel/plugin-transform-dotall-regex': 7.24.7
+ '@babel/plugin-transform-duplicate-keys': 7.24.7
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7
+ '@babel/plugin-transform-for-of': 7.24.7
+ '@babel/plugin-transform-function-name': 7.24.7
+ '@babel/plugin-transform-literals': 7.24.7
+ '@babel/plugin-transform-member-expression-literals': 7.24.7
+ '@babel/plugin-transform-modules-amd': 7.24.7
+ '@babel/plugin-transform-modules-commonjs': 7.24.7
+ '@babel/plugin-transform-modules-systemjs': 7.24.7
+ '@babel/plugin-transform-modules-umd': 7.24.7
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7
+ '@babel/plugin-transform-new-target': 7.24.7
+ '@babel/plugin-transform-object-super': 7.24.7
+ '@babel/plugin-transform-parameters': 7.24.7
+ '@babel/plugin-transform-property-literals': 7.24.7
+ '@babel/plugin-transform-regenerator': 7.24.7
+ '@babel/plugin-transform-reserved-words': 7.24.7
+ '@babel/plugin-transform-shorthand-properties': 7.24.7
+ '@babel/plugin-transform-spread': 7.24.7
+ '@babel/plugin-transform-sticky-regex': 7.24.7
+ '@babel/plugin-transform-template-literals': 7.24.7
+ '@babel/plugin-transform-typeof-symbol': 7.24.7
+ '@babel/plugin-transform-unicode-escapes': 7.24.7
+ '@babel/plugin-transform-unicode-regex': 7.24.7
+ '@babel/preset-modules': 0.1.6
+ '@babel/types': 7.24.7
babel-plugin-polyfill-corejs2: 0.2.3
babel-plugin-polyfill-corejs3: 0.2.5
babel-plugin-polyfill-regenerator: 0.2.3
- core-js-compat: 3.19.1
- semver: 6.3.0
+ core-js-compat: 3.37.1
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -6464,25 +5935,25 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.16.4
+ '@babel/compat-data': 7.24.7
'@babel/core': 7.13.15
- '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-async-generator-functions': 7.16.4_@babel+core@7.13.15
- '@babel/plugin-proposal-class-properties': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-dynamic-import': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-export-namespace-from': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-json-strings': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-numeric-separator': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-optional-catch-binding': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-private-methods': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.13.15
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.13.15
+ '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.13.15
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.13.15
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.13.15
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.13.15
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.13.15
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.13.15
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.13.15
+ '@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.13.15
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.13.15
+ '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.13.15
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.13.15
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.13.15
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.13.15
'@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.13.15
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.13.15
@@ -6495,214 +5966,215 @@ packages:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.13.15
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.13.15
'@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.13.15
- '@babel/plugin-transform-arrow-functions': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-async-to-generator': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-block-scoped-functions': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-block-scoping': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-classes': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-computed-properties': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-destructuring': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-duplicate-keys': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-exponentiation-operator': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-for-of': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-function-name': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-literals': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-member-expression-literals': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-modules-amd': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-modules-commonjs': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-modules-systemjs': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-modules-umd': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-new-target': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-object-super': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.13.15
- '@babel/plugin-transform-property-literals': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-regenerator': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-reserved-words': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-shorthand-properties': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-spread': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-sticky-regex': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-typeof-symbol': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-unicode-escapes': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-unicode-regex': 7.16.0_@babel+core@7.13.15
- '@babel/preset-modules': 0.1.5_@babel+core@7.13.15
- '@babel/types': 7.16.8
+ '@babel/plugin-transform-arrow-functions': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-async-to-generator': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-block-scoping': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-classes': 7.13.0_@babel+core@7.13.15
+ '@babel/plugin-transform-computed-properties': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-destructuring': 7.13.0_@babel+core@7.13.15
+ '@babel/plugin-transform-dotall-regex': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-duplicate-keys': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-for-of': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-function-name': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-literals': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-member-expression-literals': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-modules-amd': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-modules-commonjs': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-modules-systemjs': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-modules-umd': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-new-target': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-object-super': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-property-literals': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-regenerator': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-reserved-words': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-shorthand-properties': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-spread': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-sticky-regex': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-template-literals': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-typeof-symbol': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-unicode-escapes': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-unicode-regex': 7.24.7_@babel+core@7.13.15
+ '@babel/preset-modules': 0.1.6_@babel+core@7.13.15
+ '@babel/types': 7.24.7
babel-plugin-polyfill-corejs2: 0.2.3_@babel+core@7.13.15
babel-plugin-polyfill-corejs3: 0.2.5_@babel+core@7.13.15
babel-plugin-polyfill-regenerator: 0.2.3_@babel+core@7.13.15
- core-js-compat: 3.19.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/preset-env/7.16.4_@babel+core@7.16.0:
- resolution: {integrity: sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/core': 7.16.0
- '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.2_@babel+core@7.16.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-async-generator-functions': 7.16.4_@babel+core@7.16.0
- '@babel/plugin-proposal-class-properties': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-class-static-block': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-dynamic-import': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-export-namespace-from': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-json-strings': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-numeric-separator': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-optional-catch-binding': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-private-methods': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-private-property-in-object': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.0
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.0
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.0
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.0
- '@babel/plugin-transform-arrow-functions': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-async-to-generator': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-block-scoped-functions': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-block-scoping': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-classes': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-computed-properties': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-destructuring': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-duplicate-keys': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-exponentiation-operator': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-for-of': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-function-name': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-literals': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-member-expression-literals': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-modules-amd': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-modules-commonjs': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-modules-systemjs': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-modules-umd': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-new-target': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-object-super': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.16.0
- '@babel/plugin-transform-property-literals': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-regenerator': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-reserved-words': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-shorthand-properties': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-spread': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-sticky-regex': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-typeof-symbol': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-unicode-escapes': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-unicode-regex': 7.16.0_@babel+core@7.16.0
- '@babel/preset-modules': 0.1.5_@babel+core@7.16.0
- '@babel/types': 7.17.0
- babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.16.0
- babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.16.0
- babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.16.0
- core-js-compat: 3.19.1
- semver: 6.3.0
+ core-js-compat: 3.37.1
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /@babel/preset-env/7.16.4_@babel+core@7.17.5:
- resolution: {integrity: sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/core': 7.17.5
- '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.2_@babel+core@7.17.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-async-generator-functions': 7.16.4_@babel+core@7.17.5
- '@babel/plugin-proposal-class-properties': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-class-static-block': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-dynamic-import': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-export-namespace-from': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-json-strings': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-numeric-separator': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-catch-binding': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-private-methods': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-private-property-in-object': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.5
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.5
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.5
- '@babel/plugin-transform-arrow-functions': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-async-to-generator': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoped-functions': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-block-scoping': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-classes': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-computed-properties': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-destructuring': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-duplicate-keys': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-exponentiation-operator': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-for-of': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-function-name': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-literals': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-member-expression-literals': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-modules-amd': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-modules-commonjs': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-modules-systemjs': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-modules-umd': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-new-target': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-object-super': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.17.5
- '@babel/plugin-transform-property-literals': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-regenerator': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-reserved-words': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-shorthand-properties': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-spread': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-sticky-regex': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-typeof-symbol': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-unicode-escapes': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-unicode-regex': 7.16.0_@babel+core@7.17.5
- '@babel/preset-modules': 0.1.5_@babel+core@7.17.5
- '@babel/types': 7.17.0
- babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.17.5
- babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.17.5
- babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.17.5
- core-js-compat: 3.19.1
- semver: 6.3.0
+ /@babel/preset-env/7.13.15_@babel+core@7.24.7:
+ resolution: {integrity: sha512-D4JAPMXcxk69PKe81jRJ21/fP/uYdcTZ3hJDF5QX2HSI9bBxxYw/dumdR6dGumhjxlprHPE4XWoPaqzZUVy2MA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.24.7
+ '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.24.7
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.24.7
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.24.7
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.24.7
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.24.7
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.24.7
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.24.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.24.7
+ '@babel/plugin-transform-arrow-functions': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-async-to-generator': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-block-scoping': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-classes': 7.13.0_@babel+core@7.24.7
+ '@babel/plugin-transform-computed-properties': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-destructuring': 7.13.0_@babel+core@7.24.7
+ '@babel/plugin-transform-dotall-regex': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-duplicate-keys': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-for-of': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-function-name': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-literals': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-member-expression-literals': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-modules-amd': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-modules-commonjs': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-modules-systemjs': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-modules-umd': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-new-target': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-object-super': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-property-literals': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-regenerator': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-reserved-words': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-shorthand-properties': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-spread': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-sticky-regex': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-template-literals': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-typeof-symbol': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-unicode-escapes': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-unicode-regex': 7.24.7_@babel+core@7.24.7
+ '@babel/preset-modules': 0.1.6_@babel+core@7.24.7
+ '@babel/types': 7.24.7
+ babel-plugin-polyfill-corejs2: 0.2.3_@babel+core@7.24.7
+ babel-plugin-polyfill-corejs3: 0.2.5_@babel+core@7.24.7
+ babel-plugin-polyfill-regenerator: 0.2.3_@babel+core@7.24.7
+ core-js-compat: 3.37.1
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/preset-env/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.24.7
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.24.7
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.24.7
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.24.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-import-assertions': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-syntax-import-attributes': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.24.7
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.24.7
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.24.7
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-transform-arrow-functions': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-async-generator-functions': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-async-to-generator': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-block-scoping': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-class-properties': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-class-static-block': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-classes': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-computed-properties': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-destructuring': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-dotall-regex': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-duplicate-keys': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-dynamic-import': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-export-namespace-from': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-for-of': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-function-name': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-json-strings': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-literals': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-member-expression-literals': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-modules-amd': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-modules-commonjs': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-modules-systemjs': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-modules-umd': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-new-target': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-numeric-separator': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-object-rest-spread': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-object-super': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-private-methods': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-private-property-in-object': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-property-literals': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-regenerator': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-reserved-words': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-shorthand-properties': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-spread': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-sticky-regex': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-template-literals': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-typeof-symbol': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-unicode-escapes': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-unicode-regex': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.7_@babel+core@7.24.7
+ '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.24.7
+ babel-plugin-polyfill-corejs2: 0.4.11_@babel+core@7.24.7
+ babel-plugin-polyfill-corejs3: 0.10.4_@babel+core@7.24.7
+ babel-plugin-polyfill-regenerator: 0.6.2_@babel+core@7.24.7
+ core-js-compat: 3.37.1
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -6711,20 +6183,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.16.4
+ '@babel/compat-data': 7.24.7
'@babel/core': 7.9.0
- '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.9.0
- '@babel/helper-module-imports': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-proposal-async-generator-functions': 7.16.4_@babel+core@7.9.0
- '@babel/plugin-proposal-dynamic-import': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-proposal-json-strings': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-proposal-numeric-separator': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-proposal-optional-catch-binding': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.9.0
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.9.0
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.9.0
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.9.0
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-proposal-numeric-separator': 7.8.3_@babel+core@7.9.0
+ '@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.9.0
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.9.0
+ '@babel/plugin-proposal-optional-chaining': 7.9.0_@babel+core@7.9.0
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.9.0
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0
@@ -6734,119 +6206,117 @@ packages:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0
'@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.9.0
- '@babel/plugin-transform-arrow-functions': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-async-to-generator': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-block-scoped-functions': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-block-scoping': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-classes': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-computed-properties': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-destructuring': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-duplicate-keys': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-exponentiation-operator': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-for-of': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-function-name': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-literals': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-member-expression-literals': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-modules-amd': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-modules-commonjs': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-modules-systemjs': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-modules-umd': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-new-target': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-object-super': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.9.0
- '@babel/plugin-transform-property-literals': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-regenerator': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-reserved-words': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-shorthand-properties': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-spread': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-sticky-regex': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-typeof-symbol': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-unicode-regex': 7.16.0_@babel+core@7.9.0
- '@babel/preset-modules': 0.1.5_@babel+core@7.9.0
- '@babel/types': 7.16.8
- browserslist: 4.19.1
- core-js-compat: 3.19.1
+ '@babel/plugin-transform-arrow-functions': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-async-to-generator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-block-scoping': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-classes': 7.13.0_@babel+core@7.9.0
+ '@babel/plugin-transform-computed-properties': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-destructuring': 7.13.0_@babel+core@7.9.0
+ '@babel/plugin-transform-dotall-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-duplicate-keys': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-for-of': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-function-name': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-member-expression-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-amd': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-commonjs': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-systemjs': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-modules-umd': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-new-target': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-object-super': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-parameters': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-property-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-regenerator': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-reserved-words': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-shorthand-properties': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-spread': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-sticky-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-template-literals': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-typeof-symbol': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-unicode-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/preset-modules': 0.1.6_@babel+core@7.9.0
+ '@babel/types': 7.24.7
+ browserslist: 4.23.1
+ core-js-compat: 3.37.1
invariant: 2.2.4
levenary: 1.1.1
- semver: 5.7.1
+ semver: 5.7.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/preset-flow/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-e5NE1EoPMpoHFkyFkMSj2h9tu7OolARcUHki8mnBv4NiFK9so+UrhbvT9mV99tMJOUEx8BOj67T6dXvGcTeYeQ==}
+ /@babel/preset-flow/7.24.7_@babel+core@7.13.15:
+ resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-validator-option': 7.14.5
- '@babel/plugin-transform-flow-strip-types': 7.16.0_@babel+core@7.16.0
+ '@babel/core': 7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-transform-flow-strip-types': 7.24.7_@babel+core@7.13.15
dev: true
- /@babel/preset-modules/0.1.5:
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ /@babel/preset-modules/0.1.6:
+ resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-proposal-unicode-property-regex': 7.16.0
- '@babel/plugin-transform-dotall-regex': 7.16.0
- '@babel/types': 7.17.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6
+ '@babel/plugin-transform-dotall-regex': 7.24.7
+ '@babel/types': 7.24.7
esutils: 2.0.3
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.13.15:
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.24.7:
+ resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.13.15
- '@babel/types': 7.17.0
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/types': 7.24.7
esutils: 2.0.3
- dev: false
- /@babel/preset-modules/0.1.5_@babel+core@7.16.0:
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ /@babel/preset-modules/0.1.6_@babel+core@7.13.15:
+ resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.0
- '@babel/types': 7.17.0
+ '@babel/core': 7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.13.15
+ '@babel/plugin-transform-dotall-regex': 7.24.7_@babel+core@7.13.15
+ '@babel/types': 7.24.7
esutils: 2.0.3
- /@babel/preset-modules/0.1.5_@babel+core@7.17.5:
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ /@babel/preset-modules/0.1.6_@babel+core@7.24.7:
+ resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.17.5
- '@babel/types': 7.17.0
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-transform-dotall-regex': 7.24.7_@babel+core@7.24.7
+ '@babel/types': 7.24.7
esutils: 2.0.3
+ dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.9.0:
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ /@babel/preset-modules/0.1.6_@babel+core@7.9.0:
+ resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.9.0
- '@babel/types': 7.17.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.9.0
+ '@babel/plugin-transform-dotall-regex': 7.24.7_@babel+core@7.9.0
+ '@babel/types': 7.24.7
esutils: 2.0.3
dev: false
@@ -6855,12 +6325,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-react-display-name': 7.16.0
- '@babel/plugin-transform-react-jsx': 7.16.0
- '@babel/plugin-transform-react-jsx-development': 7.16.0
- '@babel/plugin-transform-react-pure-annotations': 7.16.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-transform-react-display-name': 7.12.13
+ '@babel/plugin-transform-react-jsx': 7.24.7
+ '@babel/plugin-transform-react-jsx-development': 7.24.7
+ '@babel/plugin-transform-react-pure-annotations': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@babel/preset-react/7.13.13_@babel+core@7.13.15:
@@ -6869,41 +6341,30 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-react-display-name': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-react-jsx': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-react-jsx-development': 7.16.0_@babel+core@7.13.15
- '@babel/plugin-transform-react-pure-annotations': 7.16.0_@babel+core@7.13.15
- dev: false
-
- /@babel/preset-react/7.16.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-d31IFW2bLRB28uL1WoElyro8RH5l6531XfxMtCeCmp6RVAF1uTfxxUA0LH1tXl+psZdwfmIbwoG4U5VwgbhtLw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-react-display-name': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-react-jsx': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-react-jsx-development': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-react-pure-annotations': 7.16.0_@babel+core@7.16.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-transform-react-display-name': 7.12.13_@babel+core@7.13.15
+ '@babel/plugin-transform-react-jsx': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-react-jsx-development': 7.24.7_@babel+core@7.13.15
+ '@babel/plugin-transform-react-pure-annotations': 7.24.7_@babel+core@7.13.15
+ transitivePeerDependencies:
+ - supports-color
- /@babel/preset-react/7.16.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-d31IFW2bLRB28uL1WoElyro8RH5l6531XfxMtCeCmp6RVAF1uTfxxUA0LH1tXl+psZdwfmIbwoG4U5VwgbhtLw==}
+ /@babel/preset-react/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-react-display-name': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-react-jsx-development': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-react-pure-annotations': 7.16.0_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-transform-react-display-name': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-react-jsx': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-react-jsx-development': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-react-pure-annotations': 7.24.7_@babel+core@7.24.7
+ transitivePeerDependencies:
+ - supports-color
/@babel/preset-react/7.9.1_@babel+core@7.9.0:
resolution: {integrity: sha512-aJBYF23MPj0RNdp/4bHnAP0NVqqZRr9kl0NAOP4nJCex6OYVio59+dnQzsAWFuogdLyeaKA1hmfUIVZkY5J+TQ==}
@@ -6911,12 +6372,14 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-react-display-name': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-react-jsx': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-react-jsx-development': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-react-jsx-self': 7.16.0_@babel+core@7.9.0
- '@babel/plugin-transform-react-jsx-source': 7.16.0_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-transform-react-display-name': 7.12.13_@babel+core@7.9.0
+ '@babel/plugin-transform-react-jsx': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-react-jsx-development': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-react-jsx-self': 7.24.7_@babel+core@7.9.0
+ '@babel/plugin-transform-react-jsx-source': 7.24.7_@babel+core@7.9.0
+ transitivePeerDependencies:
+ - supports-color
dev: false
/@babel/preset-typescript/7.13.0_@babel+core@7.13.15:
@@ -6925,23 +6388,25 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.13.15
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-validator-option': 7.14.5
- '@babel/plugin-transform-typescript': 7.16.1_@babel+core@7.13.15
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-transform-typescript': 7.24.7_@babel+core@7.13.15
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/preset-typescript/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==}
+ /@babel/preset-typescript/7.24.7_@babel+core@7.24.7:
+ resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-syntax-jsx': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-modules-commonjs': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-typescript': 7.24.7_@babel+core@7.24.7
transitivePeerDependencies:
- supports-color
@@ -6951,14 +6416,14 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.9.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-transform-typescript': 7.24.7_@babel+core@7.9.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/register/7.16.9_@babel+core@7.13.15:
- resolution: {integrity: sha512-jJ72wcghdRIlENfvALcyODhNoGE5j75cYHdC+aQMh6cU/P86tiiXTp9XYZct1UxUMo/4+BgQRyNZEGx0KWGS+g==}
+ /@babel/register/7.24.6_@babel+core@7.13.15:
+ resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -6967,445 +6432,373 @@ packages:
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
- pirates: 4.0.1
- source-map-support: 0.5.20
+ pirates: 4.0.6
+ source-map-support: 0.5.21
dev: true
- /@babel/runtime-corejs3/7.16.3:
- resolution: {integrity: sha512-IAdDC7T0+wEB4y2gbIL0uOXEYpiZEeuFUTVbdGq+UwCcF35T/tS8KrmMomEwEc5wBbyfH3PJVpTSUqrhPDXFcQ==}
+ /@babel/regjsgen/0.8.0:
+ resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
+
+ /@babel/runtime-corejs3/7.24.7:
+ resolution: {integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.19.1
- regenerator-runtime: 0.13.9
+ core-js-pure: 3.37.1
+ regenerator-runtime: 0.14.1
/@babel/runtime/7.13.10:
resolution: {integrity: sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==}
dependencies:
- regenerator-runtime: 0.13.9
- dev: false
-
- /@babel/runtime/7.16.3:
- resolution: {integrity: sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
- /@babel/runtime/7.17.2:
- resolution: {integrity: sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==}
+ /@babel/runtime/7.24.7:
+ resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==}
engines: {node: '>=6.9.0'}
dependencies:
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.14.1
/@babel/runtime/7.9.0:
resolution: {integrity: sha512-cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==}
dependencies:
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: false
- /@babel/template/7.16.0:
- resolution: {integrity: sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/parser': 7.16.8
- '@babel/types': 7.17.0
-
- /@babel/template/7.16.7:
- resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/parser': 7.17.3
- '@babel/types': 7.17.0
-
- /@babel/traverse/7.16.3:
- resolution: {integrity: sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.16.8
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.16.8
- '@babel/types': 7.17.0
- debug: 4.3.2
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/traverse/7.16.3_supports-color@5.5.0:
- resolution: {integrity: sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==}
+ /@babel/template/7.24.7:
+ resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.16.8
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.16.8
- '@babel/types': 7.17.0
- debug: 4.3.2_supports-color@5.5.0
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/code-frame': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
- /@babel/traverse/7.16.8:
- resolution: {integrity: sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==}
+ /@babel/traverse/7.24.7:
+ resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.16.8
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.16.8
- '@babel/types': 7.16.8
- debug: 4.3.2
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+ debug: 4.3.5
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/traverse/7.16.8_supports-color@5.5.0:
- resolution: {integrity: sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==}
+ /@babel/traverse/7.24.7_supports-color@5.5.0:
+ resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.16.8
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.16.8
- '@babel/types': 7.16.8
- debug: 4.3.2_supports-color@5.5.0
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+ debug: 4.3.5_supports-color@5.5.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/traverse/7.17.3:
- resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.3
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.16.7
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.17.3
- '@babel/types': 7.17.0
- debug: 4.3.2
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/types/7.16.0:
- resolution: {integrity: sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.16.7
- to-fast-properties: 2.0.0
-
- /@babel/types/7.16.8:
- resolution: {integrity: sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/types/-/types-7.16.8.tgz}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.16.7
- to-fast-properties: 2.0.0
-
- /@babel/types/7.17.0:
- resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==}
+ /@babel/types/7.24.7:
+ resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.16.7
+ '@babel/helper-string-parser': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
/@bcoe/v8-coverage/0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- /@chakra-ui/accordion/1.4.1_jpyodndpmzyywuezyt6g3oekie:
- resolution: {integrity: sha512-/E0FW5YHNVD6WwMGiuQuXpA70P2CKAV+MzcMITnSGPWsh9XD0mcXvMkIALVojfFk9tcCFdIGnxX/HWr41LzgIg==}
+ /@chakra-ui/accordion/1.4.12_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-Hq5Ie1SI4mmtgBmeuir+f7QKgopZEyQOojgufo/A20keMSy5Yk9WZjkXNQgvoIRl1AsoziIPUlubQOtkBZjjbA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
dependencies:
- '@chakra-ui/descendant': 2.1.1
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/icon': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/transition': 1.4.1_framer-motion@4.1.17
- '@chakra-ui/utils': 1.9.1
- transitivePeerDependencies:
- - framer-motion
+ '@chakra-ui/descendant': 2.1.4
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/transition': 1.4.8_framer-motion@4.1.17
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17
dev: false
- /@chakra-ui/accordion/1.4.1_mrndrblmvuikk2xtkdil3sl5by:
- resolution: {integrity: sha512-/E0FW5YHNVD6WwMGiuQuXpA70P2CKAV+MzcMITnSGPWsh9XD0mcXvMkIALVojfFk9tcCFdIGnxX/HWr41LzgIg==}
+ /@chakra-ui/accordion/1.4.12_lzykphg6aa5qb7fo3rwhgzwawu:
+ resolution: {integrity: sha512-Hq5Ie1SI4mmtgBmeuir+f7QKgopZEyQOojgufo/A20keMSy5Yk9WZjkXNQgvoIRl1AsoziIPUlubQOtkBZjjbA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
dependencies:
- '@chakra-ui/descendant': 2.1.1_react@17.0.2
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/icon': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/transition': 1.4.1_n2argv7ng3tf56dasmod6pcm2a
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/descendant': 2.1.4_react@17.0.2
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/transition': 1.4.8_n2argv7ng3tf56dasmod6pcm2a
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
react: 17.0.2
- transitivePeerDependencies:
- - framer-motion
dev: false
- /@chakra-ui/alert/1.3.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-BeR6l/1CLZarA3uAe+5Q3hioYf7SixYfy9rOte/29ck1lx9PLjjuPYYmuDPtZNbGibhUCh48z4U/uK2x8mbpKQ==}
+ /@chakra-ui/alert/1.3.7_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-fFpJYBpHOIK/BX4BVl/xafYiDBUW+Bq/gUYDOo4iAiO4vHgxo74oa+yOwSRNlNjAgIX7pi2ridsYQALKyWyxxQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/icon': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/alert/1.3.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-BeR6l/1CLZarA3uAe+5Q3hioYf7SixYfy9rOte/29ck1lx9PLjjuPYYmuDPtZNbGibhUCh48z4U/uK2x8mbpKQ==}
+ /@chakra-ui/alert/1.3.7_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-fFpJYBpHOIK/BX4BVl/xafYiDBUW+Bq/gUYDOo4iAiO4vHgxo74oa+yOwSRNlNjAgIX7pi2ridsYQALKyWyxxQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/icon': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/anatomy/1.2.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-kNS+FiEDTSnwpQUW4dEjZ5745xhkvB0XtmqjY1wpclUSpFfptLZM9QIHPTnBt2bzM9R+idmRRP+WkTt6kyTrLw==}
+ /@chakra-ui/anatomy/1.3.0_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-vj/lcHkCuq/dtbl69DkNsftZTnrGEegB90ODs1B6rxw8iVMdDSYkthPPFAkqzNs4ppv1y2IBjELuVzpeta1OHA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
dependencies:
- '@chakra-ui/theme-tools': 1.3.1_@chakra-ui+system@1.8.1
- transitivePeerDependencies:
- - '@chakra-ui/system'
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1
dev: false
- /@chakra-ui/avatar/1.3.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-WI0/kcpTJViOH093V0bz8EB+e/rc+gjF+T5DkOuh1YWFxRRG5v+4Yd3PdEJtQgzWtBVhlbGWmE7WvBizyKwFCA==}
+ /@chakra-ui/avatar/1.3.11_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-/eRRK48Er92/QWAfWhxsJIN0gZBBvk+ew4Hglo+pxt3/NDnfTF2yPE7ZN29Dl6daPNbyTOpoksMwaU2mZIqLgA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/image': 1.1.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/image': 1.1.10_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/avatar/1.3.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-WI0/kcpTJViOH093V0bz8EB+e/rc+gjF+T5DkOuh1YWFxRRG5v+4Yd3PdEJtQgzWtBVhlbGWmE7WvBizyKwFCA==}
+ /@chakra-ui/avatar/1.3.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-/eRRK48Er92/QWAfWhxsJIN0gZBBvk+ew4Hglo+pxt3/NDnfTF2yPE7ZN29Dl6daPNbyTOpoksMwaU2mZIqLgA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/image': 1.1.1_@chakra-ui+system@1.8.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/image': 1.1.10_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/breadcrumb/1.3.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-b1IoBmtr5FcP2fn5NRbdOdQo2c866OQ/WhcTcZ6UKae1jjik+36/qWE+X+RKzxC6FLfqo5qayV5zSgsnZym7Pg==}
+ /@chakra-ui/breadcrumb/1.3.6_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-iXxienBO6RUnJEcDvyDWyRt+mzPyl7/b6N8i0vrjGKGLpgtayJFvIdo33tFcvx6TCy7V9hiE3HTtZnNomWdR6A==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/breadcrumb/1.3.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-b1IoBmtr5FcP2fn5NRbdOdQo2c866OQ/WhcTcZ6UKae1jjik+36/qWE+X+RKzxC6FLfqo5qayV5zSgsnZym7Pg==}
+ /@chakra-ui/breadcrumb/1.3.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-iXxienBO6RUnJEcDvyDWyRt+mzPyl7/b6N8i0vrjGKGLpgtayJFvIdo33tFcvx6TCy7V9hiE3HTtZnNomWdR6A==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/button/1.5.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-BvP29quEhP6OTgDiRsugD6adgkeOTEQpoDsZUVEmHnNVrbFfdsICEKKQTtDJ2iPf+hmpFrtnpN50vCLdAANKcw==}
+ /@chakra-ui/button/1.5.10_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-IVEOrleI378CckAa3b3CTUHMPZRfpy6LPwn1Mx3sMpHEkDTKu8zJcjgEvCE8HYzNC1KbwBsa1PfTgk40ui6EtA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/spinner': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/spinner': 1.2.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/button/1.5.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-BvP29quEhP6OTgDiRsugD6adgkeOTEQpoDsZUVEmHnNVrbFfdsICEKKQTtDJ2iPf+hmpFrtnpN50vCLdAANKcw==}
+ /@chakra-ui/button/1.5.10_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-IVEOrleI378CckAa3b3CTUHMPZRfpy6LPwn1Mx3sMpHEkDTKu8zJcjgEvCE8HYzNC1KbwBsa1PfTgk40ui6EtA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/spinner': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/spinner': 1.2.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/checkbox/1.6.1_jpyodndpmzyywuezyt6g3oekie:
- resolution: {integrity: sha512-Z5ZMeUYIRjRbi/knhYhSQshZH7OnROA7ezl9a9oVSKRF7iLMNMibQSlQLXmqUWaTKSgrS37cpKAzfgEuemyiUQ==}
+ /@chakra-ui/checkbox/1.7.1_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-9Io97yn8OrdaIynCj+3Z/neJV7lTT1MtcdYh3BKMd7WnoJDkRY/GlBM8zsdgC5Wvm+ZQ1M83t0YvRPKLLzusyA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_@chakra-ui+system@1.8.1
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
framer-motion: 4.1.17
dev: false
- /@chakra-ui/checkbox/1.6.1_mrndrblmvuikk2xtkdil3sl5by:
- resolution: {integrity: sha512-Z5ZMeUYIRjRbi/knhYhSQshZH7OnROA7ezl9a9oVSKRF7iLMNMibQSlQLXmqUWaTKSgrS37cpKAzfgEuemyiUQ==}
+ /@chakra-ui/checkbox/1.7.1_lzykphg6aa5qb7fo3rwhgzwawu:
+ resolution: {integrity: sha512-9Io97yn8OrdaIynCj+3Z/neJV7lTT1MtcdYh3BKMd7WnoJDkRY/GlBM8zsdgC5Wvm+ZQ1M83t0YvRPKLLzusyA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_3adleehe2yjij555ufmwj4o2wa
+ '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca
framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
react: 17.0.2
dev: false
- /@chakra-ui/clickable/1.2.1:
- resolution: {integrity: sha512-B0CIbKzDMwzG1APeTpW9H2Jl8dkarI1Qstb3hDOy23O+N5TU6lpDdVnXQ7fpFJS6mu5JjFqtkwzGAVZnkkv1rw==}
+ /@chakra-ui/clickable/1.2.6:
+ resolution: {integrity: sha512-89SsrQwwwAadcl/bN8nZqqaaVhVNFdBXqQnxVy1t07DL5ezubmNb5SgFh9LDznkm9YYPQhaGr3W6HFro7iAHMg==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/clickable/1.2.1_react@17.0.2:
- resolution: {integrity: sha512-B0CIbKzDMwzG1APeTpW9H2Jl8dkarI1Qstb3hDOy23O+N5TU6lpDdVnXQ7fpFJS6mu5JjFqtkwzGAVZnkkv1rw==}
+ /@chakra-ui/clickable/1.2.6_react@17.0.2:
+ resolution: {integrity: sha512-89SsrQwwwAadcl/bN8nZqqaaVhVNFdBXqQnxVy1t07DL5ezubmNb5SgFh9LDznkm9YYPQhaGr3W6HFro7iAHMg==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/close-button/1.2.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-A/cuFtJPF8rp5p6tCIGlQdHB89gLCSOzxWssoTXAGJnmlwY2YunFHxgkYZXwPbDqFrM8ndya7Ys+AuL1JZsa3g==}
+ /@chakra-ui/close-button/1.2.7_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-cYTxfgrIlPU4IZm1sehZXxx/TNQBk9c3LBPvTpywEM8GVRGINh4YLq8WiMaPtO+TDNBnKoWS/jS4IHnR+abADw==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/icon': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/close-button/1.2.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-A/cuFtJPF8rp5p6tCIGlQdHB89gLCSOzxWssoTXAGJnmlwY2YunFHxgkYZXwPbDqFrM8ndya7Ys+AuL1JZsa3g==}
+ /@chakra-ui/close-button/1.2.7_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-cYTxfgrIlPU4IZm1sehZXxx/TNQBk9c3LBPvTpywEM8GVRGINh4YLq8WiMaPtO+TDNBnKoWS/jS4IHnR+abADw==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/icon': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/color-mode/1.3.1:
- resolution: {integrity: sha512-UuuYMfYxaBE5fPtIR6dwIJn3snT0tVX67RN2RHv4/LQgUeiddq4VziXT3bd+tyIe9+zcsqrZhV7J7YP0h/Id/Q==}
+ /@chakra-ui/color-mode/1.4.8:
+ resolution: {integrity: sha512-iD4126DVQi06c6ARr3uf3R2rtEu8aBVjW8rhZ+lOsV26Z15iCJA7OAut13Xu06fcZvgjSB/ChDy6Sx9sV9UjHA==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/react-env': 1.1.1
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-env': 1.1.6
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/color-mode/1.3.1_react@17.0.2:
- resolution: {integrity: sha512-UuuYMfYxaBE5fPtIR6dwIJn3snT0tVX67RN2RHv4/LQgUeiddq4VziXT3bd+tyIe9+zcsqrZhV7J7YP0h/Id/Q==}
+ /@chakra-ui/color-mode/1.4.8_react@17.0.2:
+ resolution: {integrity: sha512-iD4126DVQi06c6ARr3uf3R2rtEu8aBVjW8rhZ+lOsV26Z15iCJA7OAut13Xu06fcZvgjSB/ChDy6Sx9sV9UjHA==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/react-env': 1.1.1_react@17.0.2
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/react-env': 1.1.6_react@17.0.2
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/control-box/1.1.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-ZFbh85pzzZoiSjGnvLUzMB5BoA8Xm6TBMWvMtzLY5xiFGb9/mBeRDH2KFjr1GJzoqleWKkQwvFD6JM0kXcekpg==}
+ /@chakra-ui/control-box/1.1.6_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-EUcq5f854puG6ZA6wAWl4107OPl8+bj4MMHJCa48BB0qec0U8HCEtxQGnFwJmaYLalIAjMfHuY3OwO2A3Hi9hA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/control-box/1.1.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-ZFbh85pzzZoiSjGnvLUzMB5BoA8Xm6TBMWvMtzLY5xiFGb9/mBeRDH2KFjr1GJzoqleWKkQwvFD6JM0kXcekpg==}
+ /@chakra-ui/control-box/1.1.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-EUcq5f854puG6ZA6wAWl4107OPl8+bj4MMHJCa48BB0qec0U8HCEtxQGnFwJmaYLalIAjMfHuY3OwO2A3Hi9hA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/counter/1.2.1:
- resolution: {integrity: sha512-Gm4njMzEsDyAzdQtExn40TvmupzkPBrT5DiCu0DlxYqpLqCfqV49HgJHEG5oW3WV+WaC9mzg7VV+idKYh/d+Gg==}
+ /@chakra-ui/counter/1.2.10:
+ resolution: {integrity: sha512-HQd09IuJ4z8M8vWajH+99jBWWSHDesQZmnN95jUg3HKOuNleLaipf2JFdrqbO1uWQyHobn2PM6u+B+JCAh2nig==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/counter/1.2.1_react@17.0.2:
- resolution: {integrity: sha512-Gm4njMzEsDyAzdQtExn40TvmupzkPBrT5DiCu0DlxYqpLqCfqV49HgJHEG5oW3WV+WaC9mzg7VV+idKYh/d+Gg==}
+ /@chakra-ui/counter/1.2.10_react@17.0.2:
+ resolution: {integrity: sha512-HQd09IuJ4z8M8vWajH+99jBWWSHDesQZmnN95jUg3HKOuNleLaipf2JFdrqbO1uWQyHobn2PM6u+B+JCAh2nig==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/css-reset/1.1.1_@emotion+react@11.6.0:
- resolution: {integrity: sha512-+KNNHL4OWqeKia5SL858K3Qbd8WxMij9mWIilBzLD4j2KFrl/+aWFw8syMKth3NmgIibrjsljo+PU3fy2o50dg==}
+ /@chakra-ui/css-reset/1.1.3_@emotion+react@11.6.0:
+ resolution: {integrity: sha512-AgfrE7bRTJvNi/4zIfacI/kBHmHmHEIeQtHwCvk/0qM9V2gK1VM3ctYlnibf7BTh17F/UszweOGRb1lHSPfWjw==}
peerDependencies:
'@emotion/react': '>=10.0.35'
react: '>=16.8.6'
@@ -7413,835 +6806,767 @@ packages:
'@emotion/react': 11.6.0
dev: false
- /@chakra-ui/css-reset/1.1.1_bhl5vdmfhgrmmnujbwj5uarsuq:
- resolution: {integrity: sha512-+KNNHL4OWqeKia5SL858K3Qbd8WxMij9mWIilBzLD4j2KFrl/+aWFw8syMKth3NmgIibrjsljo+PU3fy2o50dg==}
+ /@chakra-ui/css-reset/1.1.3_bhl5vdmfhgrmmnujbwj5uarsuq:
+ resolution: {integrity: sha512-AgfrE7bRTJvNi/4zIfacI/kBHmHmHEIeQtHwCvk/0qM9V2gK1VM3ctYlnibf7BTh17F/UszweOGRb1lHSPfWjw==}
peerDependencies:
'@emotion/react': '>=10.0.35'
react: '>=16.8.6'
dependencies:
- '@emotion/react': 11.6.0_63c2cwvf5qxa7xvwanoyxjll5u
+ '@emotion/react': 11.6.0_3r2q4vqikxqiwlpkbpcd6cn6l4
react: 17.0.2
dev: false
- /@chakra-ui/descendant/2.1.1:
- resolution: {integrity: sha512-JasdVaN4MjL7QFo1vMnADy6EtFAlPKT1kTJ1LwMtl9AaF9VFLBsfGxm0L+WQK+3NJMuCSDBXWJB8mV4AQ11Edg==}
+ /@chakra-ui/descendant/2.1.4:
+ resolution: {integrity: sha512-k1olHM6c0fcI5fQxO9rqg9rxripcfHMEm2LkORgH0CAzFn/U75CxCw5ec0IMedNWCdiv740enVfnfhBAoSg7gw==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-utils': 1.2.1
+ '@chakra-ui/react-utils': 1.2.3
dev: false
- /@chakra-ui/descendant/2.1.1_react@17.0.2:
- resolution: {integrity: sha512-JasdVaN4MjL7QFo1vMnADy6EtFAlPKT1kTJ1LwMtl9AaF9VFLBsfGxm0L+WQK+3NJMuCSDBXWJB8mV4AQ11Edg==}
+ /@chakra-ui/descendant/2.1.4_react@17.0.2:
+ resolution: {integrity: sha512-k1olHM6c0fcI5fQxO9rqg9rxripcfHMEm2LkORgH0CAzFn/U75CxCw5ec0IMedNWCdiv740enVfnfhBAoSg7gw==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
react: 17.0.2
dev: false
- /@chakra-ui/editable/1.3.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-MwyTtsnHNqmKmHv9SH3KIHWa06D4gBwcuTawTiSnYBUJL6My8ry/Wdca1to9So2tD6hcjz3TPTzOJOlyv0eiZg==}
+ /@chakra-ui/editable/1.4.2_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-a5zKghA/IvG7yNkmFl7Z9c2KSsf0FgyijsNPTg/4S5jxyz13QJtoTg40tdpyaxHHCT25y25iUcV4FYCj6Jd01w==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/editable/1.3.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-MwyTtsnHNqmKmHv9SH3KIHWa06D4gBwcuTawTiSnYBUJL6My8ry/Wdca1to9So2tD6hcjz3TPTzOJOlyv0eiZg==}
+ /@chakra-ui/editable/1.4.2_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-a5zKghA/IvG7yNkmFl7Z9c2KSsf0FgyijsNPTg/4S5jxyz13QJtoTg40tdpyaxHHCT25y25iUcV4FYCj6Jd01w==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/focus-lock/1.2.1:
- resolution: {integrity: sha512-HYu39nvfaXUrBx+dIDJkFgebNCGEi9oZTfLUKzIJC+zPkmReTDSXV0dzSb/8vCAOq5fph1gFKsdbGy2U98P8GQ==}
+ /@chakra-ui/focus-lock/1.2.6:
+ resolution: {integrity: sha512-ZJNE1oNdUM1aGWuCJ+bxFa/d3EwxzfMWzTKzSvKDK50GWoUQQ10xFTT9nY/yFpkcwhBvx1KavxKf44mIhIbSog==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/utils': 1.10.4
react-focus-lock: 2.5.2
transitivePeerDependencies:
- '@types/react'
dev: false
- /@chakra-ui/focus-lock/1.2.1_oqfjjbydlevwhoma3gspdo4w3y:
- resolution: {integrity: sha512-HYu39nvfaXUrBx+dIDJkFgebNCGEi9oZTfLUKzIJC+zPkmReTDSXV0dzSb/8vCAOq5fph1gFKsdbGy2U98P8GQ==}
+ /@chakra-ui/focus-lock/1.2.6_3r2q4vqikxqiwlpkbpcd6cn6l4:
+ resolution: {integrity: sha512-ZJNE1oNdUM1aGWuCJ+bxFa/d3EwxzfMWzTKzSvKDK50GWoUQQ10xFTT9nY/yFpkcwhBvx1KavxKf44mIhIbSog==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
- react-focus-lock: 2.5.2_oqfjjbydlevwhoma3gspdo4w3y
+ react-focus-lock: 2.5.2_3r2q4vqikxqiwlpkbpcd6cn6l4
transitivePeerDependencies:
- '@types/react'
dev: false
- /@chakra-ui/focus-lock/1.2.1_qewexek3mggvbeokd2goivthmy:
- resolution: {integrity: sha512-HYu39nvfaXUrBx+dIDJkFgebNCGEi9oZTfLUKzIJC+zPkmReTDSXV0dzSb/8vCAOq5fph1gFKsdbGy2U98P8GQ==}
+ /@chakra-ui/form-control/1.6.0_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-MtUE98aocP2QTgvyyJ/ABuG33mhT3Ox56phKreG3HzbUKByMwrbQSm1QcAgyYdqSZ9eKB2tXx+qgGNh+avAfDA==}
peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
- react-focus-lock: 2.5.2_qewexek3mggvbeokd2goivthmy
- transitivePeerDependencies:
- - '@types/react'
dev: false
- /@chakra-ui/form-control/1.5.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-ASZYQFOs5mAoaNXAN/ZaesMy3XV07F0/Eba5PQ7Dejdn91aep6lqF889hmr8yqcR646xCOY7ISyYsskfh9QHrQ==}
+ /@chakra-ui/form-control/1.6.0_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-MtUE98aocP2QTgvyyJ/ABuG33mhT3Ox56phKreG3HzbUKByMwrbQSm1QcAgyYdqSZ9eKB2tXx+qgGNh+avAfDA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/icon': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- react: 17.0.2
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/form-control/1.5.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-ASZYQFOs5mAoaNXAN/ZaesMy3XV07F0/Eba5PQ7Dejdn91aep6lqF889hmr8yqcR646xCOY7ISyYsskfh9QHrQ==}
+ /@chakra-ui/hooks/1.9.1:
+ resolution: {integrity: sha512-SEeh1alDKzrP9gMLWMnXOUDBQDKF/URL6iTmkumTn6vhawWNla6sPrcMyoCzWdMzwUhZp3QNtCKbUm7dxBXvPw==}
peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/icon': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/utils': 1.10.4
+ compute-scroll-into-view: 1.0.14
+ copy-to-clipboard: 3.3.1
dev: false
- /@chakra-ui/hooks/1.7.1:
- resolution: {integrity: sha512-hgN19X6GUKQYAHczmFY+GAT8vl9h+X+nGWrIAnmvZ6BgUXxDajnTNhZeWhj0ZkR+7A7dCE6Y/3X44GafUgChMw==}
+ /@chakra-ui/hooks/1.9.1_react@17.0.2:
+ resolution: {integrity: sha512-SEeh1alDKzrP9gMLWMnXOUDBQDKF/URL6iTmkumTn6vhawWNla6sPrcMyoCzWdMzwUhZp3QNtCKbUm7dxBXvPw==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/utils': 1.10.4
compute-scroll-into-view: 1.0.14
copy-to-clipboard: 3.3.1
+ react: 17.0.2
dev: false
- /@chakra-ui/hooks/1.7.1_react@17.0.2:
- resolution: {integrity: sha512-hgN19X6GUKQYAHczmFY+GAT8vl9h+X+nGWrIAnmvZ6BgUXxDajnTNhZeWhj0ZkR+7A7dCE6Y/3X44GafUgChMw==}
+ /@chakra-ui/icon/1.2.1_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-uZxFsiY4Tld+LvGIX7cky0H6oMRac8udPMQRzIk/UQeNZcsWisGetatbQsew3y1lWV/iH/8+TlDuW13GWGyGGQ==}
peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
'@chakra-ui/utils': 1.9.1
- compute-scroll-into-view: 1.0.14
- copy-to-clipboard: 3.3.1
react: 17.0.2
dev: false
- /@chakra-ui/icon/1.2.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-uZxFsiY4Tld+LvGIX7cky0H6oMRac8udPMQRzIk/UQeNZcsWisGetatbQsew3y1lWV/iH/8+TlDuW13GWGyGGQ==}
+ /@chakra-ui/icon/2.0.5_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-ZrqRvCCIxGr4qFd/r1pmtd9tobRmv8KAxV7ygFoc/t4vOSKTcVIjhE12gsI3FzgvXM15ZFVwsxa1zodwgo5neQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/icon/1.2.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-uZxFsiY4Tld+LvGIX7cky0H6oMRac8udPMQRzIk/UQeNZcsWisGetatbQsew3y1lWV/iH/8+TlDuW13GWGyGGQ==}
+ /@chakra-ui/icon/2.0.5_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-ZrqRvCCIxGr4qFd/r1pmtd9tobRmv8KAxV7ygFoc/t4vOSKTcVIjhE12gsI3FzgvXM15ZFVwsxa1zodwgo5neQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/image/1.1.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-bz1pn08XlXcO3r1KnpdjQgN3R2soiTx10sG2d5Pw9BdGdySf7Y73wiLh+Tan1xJHp6p2KH1hz4f7uKXXDn7Qmw==}
+ /@chakra-ui/image/1.1.10_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-PJZmhQ/R1PgdMyCRjALfoyq1FNh/WzMAw70sliHLtLcb9hBXniwQZuckYfUshCkUoFBj/ow9d4byn9Culdpk7Q==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/image/1.1.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-bz1pn08XlXcO3r1KnpdjQgN3R2soiTx10sG2d5Pw9BdGdySf7Y73wiLh+Tan1xJHp6p2KH1hz4f7uKXXDn7Qmw==}
+ /@chakra-ui/image/1.1.10_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-PJZmhQ/R1PgdMyCRjALfoyq1FNh/WzMAw70sliHLtLcb9hBXniwQZuckYfUshCkUoFBj/ow9d4byn9Culdpk7Q==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/input/1.3.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-Z+LqkwVPMeUBuvB9dLDPKkBnWV52Q1PVl3KW9ouDIFg7SoemeYkBt3p4ttEKE+eIPsPlrcH1u2A/RGcCTZOe1g==}
+ /@chakra-ui/input/1.4.6_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-Ljy/NbOhh9cNQxKTWQRsT4aQiXs2vVya+Cj5NpMAz08NFFjPZovsTawhI7m6ejT5Vsh76QYjh2rOLLI3fWqQQw==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/form-control': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/input/1.3.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-Z+LqkwVPMeUBuvB9dLDPKkBnWV52Q1PVl3KW9ouDIFg7SoemeYkBt3p4ttEKE+eIPsPlrcH1u2A/RGcCTZOe1g==}
+ /@chakra-ui/input/1.4.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-Ljy/NbOhh9cNQxKTWQRsT4aQiXs2vVya+Cj5NpMAz08NFFjPZovsTawhI7m6ejT5Vsh76QYjh2rOLLI3fWqQQw==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/form-control': 1.5.1_@chakra-ui+system@1.8.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/layout/1.5.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-nKiyZ5adjNTbBV3oFIUGIPijwutO1NGdev1jHtnZc3xo2urCIkBvKU8+mVjlX04IwZ7oLKoP3EiDDv0g7+o41Q==}
+ /@chakra-ui/layout/1.8.0_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-GJtEKez5AZu0XQTxI6a6jwA/hMDD36pP0HBxBOGuHP1hWCebDzMjraiMfWiP9w7hKERFE4j19kocHxIXyocfJA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/icon': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/layout/1.5.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-nKiyZ5adjNTbBV3oFIUGIPijwutO1NGdev1jHtnZc3xo2urCIkBvKU8+mVjlX04IwZ7oLKoP3EiDDv0g7+o41Q==}
+ /@chakra-ui/layout/1.8.0_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-GJtEKez5AZu0XQTxI6a6jwA/hMDD36pP0HBxBOGuHP1hWCebDzMjraiMfWiP9w7hKERFE4j19kocHxIXyocfJA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/icon': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/live-region/1.1.1:
- resolution: {integrity: sha512-BSdI5gLIffNRETEp6W18kBNg9tL0ZLLzfWGRnuO9tEbox7NrcgqIeLF8mNKwhDOZz88NKHtUOPVzjAUKW1SryQ==}
+ /@chakra-ui/live-region/1.1.6:
+ resolution: {integrity: sha512-9gPQHXf7oW0jXyT5R/JzyDMfJ3hF70TqhN8bRH4fMyfNr2Se+SjztMBqCrv5FS5rPjcCeua+e0eArpoB3ROuWQ==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/live-region/1.1.1_react@17.0.2:
- resolution: {integrity: sha512-BSdI5gLIffNRETEp6W18kBNg9tL0ZLLzfWGRnuO9tEbox7NrcgqIeLF8mNKwhDOZz88NKHtUOPVzjAUKW1SryQ==}
+ /@chakra-ui/live-region/1.1.6_react@17.0.2:
+ resolution: {integrity: sha512-9gPQHXf7oW0jXyT5R/JzyDMfJ3hF70TqhN8bRH4fMyfNr2Se+SjztMBqCrv5FS5rPjcCeua+e0eArpoB3ROuWQ==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/media-query/1.2.1_jwmsro2os5tniipv3gb2dorir4:
- resolution: {integrity: sha512-Ho/qiPGTjNukFTE9WBdYV9FIXU7KFTJPqdRQPWANkz+j275n6sqSE1j5LRJllP+ett21KeuWLN4zL33pP0Ox+g==}
+ /@chakra-ui/media-query/1.2.5_sxr25aaor3bltw4csjjk62xw3q:
+ resolution: {integrity: sha512-Lxa2D9wlTOW4CsFyzbOfmoDrezmdi22ZNOeAH9Sk66rn5z20ynmXCqksHbZH2MIe0woHlhTMGihPhgJSq9MXcQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
'@chakra-ui/theme': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-env': 1.1.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/theme': 1.12.1_@chakra-ui+system@1.8.1
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/react-env': 1.1.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.1
+ react: 17.0.2
dev: false
- /@chakra-ui/media-query/1.2.1_ldgmaszjwy7d6qqvxbzdhyxvbi:
- resolution: {integrity: sha512-Ho/qiPGTjNukFTE9WBdYV9FIXU7KFTJPqdRQPWANkz+j275n6sqSE1j5LRJllP+ett21KeuWLN4zL33pP0Ox+g==}
+ /@chakra-ui/media-query/2.0.4_hoipxdaut6bba577cceecxeuuy:
+ resolution: {integrity: sha512-kn6g/L0IFFUHz2v4yiCsBnhg9jUeA7525Z+AWl+BPtvryi7i9J+AJ27y/QAge7vUGy4dwDeFyxOZTs2oZ9/BsA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
'@chakra-ui/theme': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-env': 1.1.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/theme': 1.12.1_@chakra-ui+system@1.8.1
- '@chakra-ui/utils': 1.9.1
- react: 17.0.2
+ '@chakra-ui/react-env': 1.1.6
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/menu/1.8.1_jpyodndpmzyywuezyt6g3oekie:
- resolution: {integrity: sha512-fgzzFukBj4sQzTRf4q/+nHiVTKhrMtJdofnluqce/SCRJ1G+bbovUySblTzfI8iFlTSZt/eWc/Nju4JB1S+3Yg==}
+ /@chakra-ui/media-query/2.0.4_sxr25aaor3bltw4csjjk62xw3q:
+ resolution: {integrity: sha512-kn6g/L0IFFUHz2v4yiCsBnhg9jUeA7525Z+AWl+BPtvryi7i9J+AJ27y/QAge7vUGy4dwDeFyxOZTs2oZ9/BsA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
+ '@chakra-ui/theme': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/clickable': 1.2.1
- '@chakra-ui/descendant': 2.1.1
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/popper': 2.4.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/transition': 1.4.1_framer-motion@4.1.17
- '@chakra-ui/utils': 1.9.1
- framer-motion: 4.1.17
+ '@chakra-ui/react-env': 1.1.6_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.4
+ react: 17.0.2
dev: false
- /@chakra-ui/menu/1.8.1_mrndrblmvuikk2xtkdil3sl5by:
- resolution: {integrity: sha512-fgzzFukBj4sQzTRf4q/+nHiVTKhrMtJdofnluqce/SCRJ1G+bbovUySblTzfI8iFlTSZt/eWc/Nju4JB1S+3Yg==}
+ /@chakra-ui/menu/1.8.12_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-X/s74VpOReQW4fCRCa21f/VOe++cXhPz2Sh7pDjtaT3zmKjrJwgk1Kw75cXfNX1eke6hf/wZ0FGweu/m7+C3OA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
dependencies:
- '@chakra-ui/clickable': 1.2.1_react@17.0.2
- '@chakra-ui/descendant': 2.1.1_react@17.0.2
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/popper': 2.4.1_react@17.0.2
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/transition': 1.4.1_n2argv7ng3tf56dasmod6pcm2a
- '@chakra-ui/utils': 1.9.1
- framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
- react: 17.0.2
+ '@chakra-ui/clickable': 1.2.6
+ '@chakra-ui/descendant': 2.1.4
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/popper': 2.4.3
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/transition': 1.4.8_framer-motion@4.1.17
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17
dev: false
- /@chakra-ui/modal/1.10.1_7wihkl32ytmneylmnbtekrupgu:
- resolution: {integrity: sha512-cboC2ITm+5FjhrBc6yJ5cW4VXnfwlLhFa1EkPqF1k4kvYGyUHArvPN1q8AiPYOIrupHYu2Iu6YmQPg7TJwNImg==}
+ /@chakra-ui/menu/1.8.12_lzykphg6aa5qb7fo3rwhgzwawu:
+ resolution: {integrity: sha512-X/s74VpOReQW4fCRCa21f/VOe++cXhPz2Sh7pDjtaT3zmKjrJwgk1Kw75cXfNX1eke6hf/wZ0FGweu/m7+C3OA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
- react-dom: '>=16.8.6'
dependencies:
- '@chakra-ui/close-button': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/focus-lock': 1.2.1_qewexek3mggvbeokd2goivthmy
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/portal': 1.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/transition': 1.4.1_n2argv7ng3tf56dasmod6pcm2a
- '@chakra-ui/utils': 1.9.1
- aria-hidden: 1.1.3
+ '@chakra-ui/clickable': 1.2.6_react@17.0.2
+ '@chakra-ui/descendant': 2.1.4_react@17.0.2
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/popper': 2.4.3_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/transition': 1.4.8_n2argv7ng3tf56dasmod6pcm2a
+ '@chakra-ui/utils': 1.10.4
framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-remove-scroll: 2.4.1_qewexek3mggvbeokd2goivthmy
- transitivePeerDependencies:
- - '@types/react'
dev: false
- /@chakra-ui/modal/1.10.1_jpyodndpmzyywuezyt6g3oekie:
- resolution: {integrity: sha512-cboC2ITm+5FjhrBc6yJ5cW4VXnfwlLhFa1EkPqF1k4kvYGyUHArvPN1q8AiPYOIrupHYu2Iu6YmQPg7TJwNImg==}
+ /@chakra-ui/modal/1.11.1_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-B2BBDonHb04vbPLAWgko1JYBwgW8ZNSLyhTJK+rbrCsRSgazuLTcwq4hdyJqrYNWtaQEfSwpAXqJ7joMZdv59A==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
react-dom: '>=16.8.6'
dependencies:
- '@chakra-ui/close-button': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/focus-lock': 1.2.1
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/portal': 1.3.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/transition': 1.4.1_framer-motion@4.1.17
- '@chakra-ui/utils': 1.9.1
- aria-hidden: 1.1.3
+ '@chakra-ui/close-button': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/focus-lock': 1.2.6
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/portal': 1.3.10
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/transition': 1.4.8_framer-motion@4.1.17
+ '@chakra-ui/utils': 1.10.4
+ aria-hidden: 1.2.4
framer-motion: 4.1.17
react-remove-scroll: 2.4.1
transitivePeerDependencies:
- '@types/react'
dev: false
- /@chakra-ui/modal/1.10.1_sljzxchadurndcttj5otpecw64:
- resolution: {integrity: sha512-cboC2ITm+5FjhrBc6yJ5cW4VXnfwlLhFa1EkPqF1k4kvYGyUHArvPN1q8AiPYOIrupHYu2Iu6YmQPg7TJwNImg==}
+ /@chakra-ui/modal/1.11.1_isnjqzjzhp7xwxqhxwvxgnrzlm:
+ resolution: {integrity: sha512-B2BBDonHb04vbPLAWgko1JYBwgW8ZNSLyhTJK+rbrCsRSgazuLTcwq4hdyJqrYNWtaQEfSwpAXqJ7joMZdv59A==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
react-dom: '>=16.8.6'
dependencies:
- '@chakra-ui/close-button': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/focus-lock': 1.2.1_oqfjjbydlevwhoma3gspdo4w3y
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/portal': 1.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/transition': 1.4.1_n2argv7ng3tf56dasmod6pcm2a
- '@chakra-ui/utils': 1.9.1
- aria-hidden: 1.1.3
+ '@chakra-ui/close-button': 1.2.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/focus-lock': 1.2.6_3r2q4vqikxqiwlpkbpcd6cn6l4
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/portal': 1.3.10_sfoxds7t5ydpegc3knd667wn6m
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/transition': 1.4.8_n2argv7ng3tf56dasmod6pcm2a
+ '@chakra-ui/utils': 1.10.4
+ aria-hidden: 1.2.4
framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- react-remove-scroll: 2.4.1_oqfjjbydlevwhoma3gspdo4w3y
+ react-remove-scroll: 2.4.1_3r2q4vqikxqiwlpkbpcd6cn6l4
transitivePeerDependencies:
- '@types/react'
dev: false
- /@chakra-ui/number-input/1.3.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-4vBRSShT5pedElgP9YGVC+9RHzQGmUVZqu3p0gZW0fLGVVQ9C1EGrO7djL+k3tgklyu8RvSwkRDJqEPvbQKDgQ==}
+ /@chakra-ui/number-input/1.4.7_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-LorGRZFMipom8vCUEbLi2s7bTHF2Fgiu766W0jTbzMje+8Z1ZoRQunH9OZWQnxnWQTUfUM2KBW8KwToYh1ojfQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/counter': 1.2.1_react@17.0.2
- '@chakra-ui/form-control': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/icon': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/counter': 1.2.10_react@17.0.2
+ '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/number-input/1.3.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-4vBRSShT5pedElgP9YGVC+9RHzQGmUVZqu3p0gZW0fLGVVQ9C1EGrO7djL+k3tgklyu8RvSwkRDJqEPvbQKDgQ==}
+ /@chakra-ui/number-input/1.4.7_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-LorGRZFMipom8vCUEbLi2s7bTHF2Fgiu766W0jTbzMje+8Z1ZoRQunH9OZWQnxnWQTUfUM2KBW8KwToYh1ojfQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/counter': 1.2.1
- '@chakra-ui/form-control': 1.5.1_@chakra-ui+system@1.8.1
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/icon': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/counter': 1.2.10
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/pin-input/1.7.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-eFFc5sofiyion+NxELWfCzD23XHIBDrJcfKKbNxt8jdXg9Ek4mFpmvnxBVrK0DIz6cVYgKY8c364OmxNUf4IyA==}
+ /@chakra-ui/pin-input/1.7.11_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-KEVUHHmf22tI4F7gzT9+pHi4E5cCyte6M8rPEwRyuc0kUBo48D8OW0BJwGdESWOKMkQXazDF6Zg4o32t45tbpg==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/descendant': 2.1.1_react@17.0.2
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/descendant': 2.1.4_react@17.0.2
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/pin-input/1.7.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-eFFc5sofiyion+NxELWfCzD23XHIBDrJcfKKbNxt8jdXg9Ek4mFpmvnxBVrK0DIz6cVYgKY8c364OmxNUf4IyA==}
+ /@chakra-ui/pin-input/1.7.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-KEVUHHmf22tI4F7gzT9+pHi4E5cCyte6M8rPEwRyuc0kUBo48D8OW0BJwGdESWOKMkQXazDF6Zg4o32t45tbpg==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/descendant': 2.1.1
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/descendant': 2.1.4
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/popover/1.10.1_jpyodndpmzyywuezyt6g3oekie:
- resolution: {integrity: sha512-/dMUQfd+h9j3GBtkA/nYaQ5xeu4vk0psUClFvLOAJRwXGN3aMrzn/mhrvHWQ/cJuwQrO1WzxH2+g6pwsFOm9ng==}
+ /@chakra-ui/popover/1.11.9_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-hJ1/Lwukox3ryTN7W1wnj+nE44utfLwQYvfUSdatt5dznnh8k0P6Wx7Hmjm1cYffRavBhqzwua/QZDWjJN9N0g==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
dependencies:
- '@chakra-ui/close-button': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/popper': 2.4.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/close-button': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/popper': 2.4.3
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
framer-motion: 4.1.17
dev: false
- /@chakra-ui/popover/1.10.1_mrndrblmvuikk2xtkdil3sl5by:
- resolution: {integrity: sha512-/dMUQfd+h9j3GBtkA/nYaQ5xeu4vk0psUClFvLOAJRwXGN3aMrzn/mhrvHWQ/cJuwQrO1WzxH2+g6pwsFOm9ng==}
+ /@chakra-ui/popover/1.11.9_lzykphg6aa5qb7fo3rwhgzwawu:
+ resolution: {integrity: sha512-hJ1/Lwukox3ryTN7W1wnj+nE44utfLwQYvfUSdatt5dznnh8k0P6Wx7Hmjm1cYffRavBhqzwua/QZDWjJN9N0g==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
dependencies:
- '@chakra-ui/close-button': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/popper': 2.4.1_react@17.0.2
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/close-button': 1.2.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/popper': 2.4.3_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
react: 17.0.2
dev: false
- /@chakra-ui/popper/2.4.1:
- resolution: {integrity: sha512-cuwnwXx6RUXZGGynVOGG8fEIiMNBXUCy3UqWQD1eEd8200eWQobgNk4Z0YwzKuSzJwp0Auy+j5iKefi5FSkyog==}
+ /@chakra-ui/popper/2.4.3:
+ resolution: {integrity: sha512-TGzFnYt3mtIVkIejtYIAu4Ka9DaYLzMR4NgcqI6EtaTvgK7Xep+6RTiY/Nq+ZT3l/eaNUwqHRFoNrDUg1XYasA==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-utils': 1.2.1
- '@popperjs/core': 2.10.2
+ '@chakra-ui/react-utils': 1.2.3
+ '@popperjs/core': 2.11.8
dev: false
- /@chakra-ui/popper/2.4.1_react@17.0.2:
- resolution: {integrity: sha512-cuwnwXx6RUXZGGynVOGG8fEIiMNBXUCy3UqWQD1eEd8200eWQobgNk4Z0YwzKuSzJwp0Auy+j5iKefi5FSkyog==}
+ /@chakra-ui/popper/2.4.3_react@17.0.2:
+ resolution: {integrity: sha512-TGzFnYt3mtIVkIejtYIAu4Ka9DaYLzMR4NgcqI6EtaTvgK7Xep+6RTiY/Nq+ZT3l/eaNUwqHRFoNrDUg1XYasA==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@popperjs/core': 2.10.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@popperjs/core': 2.11.8
react: 17.0.2
dev: false
- /@chakra-ui/portal/1.3.1:
- resolution: {integrity: sha512-6UOGZCfujgdijcPs/JTEY5IB5WtKvUbfrSQYsG5CDa+guIwvnoP5qZ+rH6BR6DSSM8Wr/1n+WrtanhfFZShHKA==}
+ /@chakra-ui/portal/1.3.10:
+ resolution: {integrity: sha512-t2KQ6MXbyf1qFYxWw/bs//CnwD+Clq7mbsP1Y7g+THCz2FvlLlMj45BWocLB30NoNyA8WCS2zyMBszW2/qvDiA==}
peerDependencies:
react: '>=16.8.6'
react-dom: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/portal/1.3.1_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-6UOGZCfujgdijcPs/JTEY5IB5WtKvUbfrSQYsG5CDa+guIwvnoP5qZ+rH6BR6DSSM8Wr/1n+WrtanhfFZShHKA==}
+ /@chakra-ui/portal/1.3.10_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-t2KQ6MXbyf1qFYxWw/bs//CnwD+Clq7mbsP1Y7g+THCz2FvlLlMj45BWocLB30NoNyA8WCS2zyMBszW2/qvDiA==}
peerDependencies:
react: '>=16.8.6'
react-dom: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
dev: false
- /@chakra-ui/progress/1.2.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-213nN8nbODvD/A23vAtg+r3bRKKatWQHafgmLzeznUcxa/+ac0eVurIS8XSYLRkY4EXQ505re3ZkLhDd98a7QA==}
+ /@chakra-ui/progress/1.2.6_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-thaHRIYTVktgV78vJMNwzfCX+ickhSpn2bun6FtGVUphFx4tjV+ggz+IGohm6AH2hapskoR1mQU2iNZb6BK0hQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/theme-tools': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/progress/1.2.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-213nN8nbODvD/A23vAtg+r3bRKKatWQHafgmLzeznUcxa/+ac0eVurIS8XSYLRkY4EXQ505re3ZkLhDd98a7QA==}
+ /@chakra-ui/progress/1.2.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-thaHRIYTVktgV78vJMNwzfCX+ickhSpn2bun6FtGVUphFx4tjV+ggz+IGohm6AH2hapskoR1mQU2iNZb6BK0hQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/theme-tools': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/provider/1.7.1_o6aopcb4s7zquyefflza7t7wpq:
- resolution: {integrity: sha512-E2z56BAYytg+sA7arxUtg54AzhYPpR5QUcR4L679aahgiod+5y6H5TSZcTnxTFRLXVLZbBbP/eH63seIcRqCRQ==}
+ /@chakra-ui/provider/1.7.14_avixossmnjiwfyl2d7atvpqnmy:
+ resolution: {integrity: sha512-FCA33CZy/jFzExglKMioeri8sr9NtDTcNVPnx95ZJiA7WpfFo0xuZ6/fMC4DwIQPkJKbSIZBXYLZ3U10Ntylrw==}
peerDependencies:
'@emotion/react': ^11.0.0
'@emotion/styled': ^11.0.0
react: '>=16.8.6'
react-dom: '>=16.8.6'
dependencies:
- '@chakra-ui/css-reset': 1.1.1_bhl5vdmfhgrmmnujbwj5uarsuq
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/portal': 1.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@chakra-ui/react-env': 1.1.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- '@emotion/react': 11.6.0_63c2cwvf5qxa7xvwanoyxjll5u
- '@emotion/styled': 11.6.0_6kodsbfeouj3i2xi3r6t5ga57i
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ '@chakra-ui/css-reset': 1.1.3_@emotion+react@11.6.0
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/portal': 1.3.10
+ '@chakra-ui/react-env': 1.1.6
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ '@emotion/react': 11.6.0
+ '@emotion/styled': 11.11.5_@emotion+react@11.6.0
dev: false
- /@chakra-ui/provider/1.7.1_pb5parzmf5cwc4z6wyaql6nbwu:
- resolution: {integrity: sha512-E2z56BAYytg+sA7arxUtg54AzhYPpR5QUcR4L679aahgiod+5y6H5TSZcTnxTFRLXVLZbBbP/eH63seIcRqCRQ==}
+ /@chakra-ui/provider/1.7.14_sfd6h5o7ufvtgq6l46f6pjvdnu:
+ resolution: {integrity: sha512-FCA33CZy/jFzExglKMioeri8sr9NtDTcNVPnx95ZJiA7WpfFo0xuZ6/fMC4DwIQPkJKbSIZBXYLZ3U10Ntylrw==}
peerDependencies:
'@emotion/react': ^11.0.0
'@emotion/styled': ^11.0.0
react: '>=16.8.6'
react-dom: '>=16.8.6'
dependencies:
- '@chakra-ui/css-reset': 1.1.1_@emotion+react@11.6.0
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/portal': 1.3.1
- '@chakra-ui/react-env': 1.1.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
- '@emotion/react': 11.6.0
- '@emotion/styled': 11.6.0_@emotion+react@11.6.0
+ '@chakra-ui/css-reset': 1.1.3_bhl5vdmfhgrmmnujbwj5uarsuq
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/portal': 1.3.10_sfoxds7t5ydpegc3knd667wn6m
+ '@chakra-ui/react-env': 1.1.6_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ '@emotion/react': 11.6.0_3r2q4vqikxqiwlpkbpcd6cn6l4
+ '@emotion/styled': 11.11.5_kkhqicprxlu6q33iq5g7sydvnq
+ react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
dev: false
- /@chakra-ui/radio/1.4.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-Rq7goauffMNqwGVuPh4zh0kX0AuvTll66PhOwPu+GYHzsYO5+L9X875Q9QBnJEFtDjNF/MVIrH9WrKWjdWLqWw==}
+ /@chakra-ui/radio/1.5.1_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-zO5eShz+j68A7935jJ2q5u3brX/bjPEGh9Pj2+bnKbmC9Vva6jEzBSJsAx9n4WbkAzR3xDMGWsbpivFp8X1tJw==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/form-control': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_3adleehe2yjij555ufmwj4o2wa
+ '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca
react: 17.0.2
dev: false
- /@chakra-ui/radio/1.4.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-Rq7goauffMNqwGVuPh4zh0kX0AuvTll66PhOwPu+GYHzsYO5+L9X875Q9QBnJEFtDjNF/MVIrH9WrKWjdWLqWw==}
+ /@chakra-ui/radio/1.5.1_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-zO5eShz+j68A7935jJ2q5u3brX/bjPEGh9Pj2+bnKbmC9Vva6jEzBSJsAx9n4WbkAzR3xDMGWsbpivFp8X1tJw==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/form-control': 1.5.1_@chakra-ui+system@1.8.1
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_@chakra-ui+system@1.8.1
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
dev: false
- /@chakra-ui/react-env/1.1.1:
- resolution: {integrity: sha512-Lgmb0y4kv0ffsGMelAOaYOd4tYZAv4FYWgV86ckGMjmYQWA8drv4v/lHTNltixxWMmBEpjcHALpJuS6yAZYHug==}
+ /@chakra-ui/react-env/1.1.3_react@17.0.2:
+ resolution: {integrity: sha512-gyQaZFvr1g5j5r11nCcOAn57qHTBGrlAK1hvkj1j8828NRywqd3mJXVD7BKpy100ZZrq31bP3N/435Lb7yG1Fg==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/utils': 1.10.1
+ react: 17.0.2
dev: false
- /@chakra-ui/react-env/1.1.1_react@17.0.2:
- resolution: {integrity: sha512-Lgmb0y4kv0ffsGMelAOaYOd4tYZAv4FYWgV86ckGMjmYQWA8drv4v/lHTNltixxWMmBEpjcHALpJuS6yAZYHug==}
+ /@chakra-ui/react-env/1.1.6:
+ resolution: {integrity: sha512-L90LNvCfe04FTkN9OPok/o2e60zLJNBH8Im/5dUHvqy7dXLXok8ZDad5vEL46XmGbhe7O8fbxhG6FmAYdcCHrQ==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/utils': 1.9.1
- react: 17.0.2
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/react-utils/1.2.1:
- resolution: {integrity: sha512-bV8FRaXiOgGxOg03iTNin/B02I+tHH9PQtqUTl3U7cJaoI+5AUYhrqXvl1Ya2/R7zxSFrb/gBVDTgbZiVkJ+Dg==}
+ /@chakra-ui/react-env/1.1.6_react@17.0.2:
+ resolution: {integrity: sha512-L90LNvCfe04FTkN9OPok/o2e60zLJNBH8Im/5dUHvqy7dXLXok8ZDad5vEL46XmGbhe7O8fbxhG6FmAYdcCHrQ==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/utils': 1.10.4
+ react: 17.0.2
dev: false
- /@chakra-ui/react-utils/1.2.1_react@17.0.2:
- resolution: {integrity: sha512-bV8FRaXiOgGxOg03iTNin/B02I+tHH9PQtqUTl3U7cJaoI+5AUYhrqXvl1Ya2/R7zxSFrb/gBVDTgbZiVkJ+Dg==}
+ /@chakra-ui/react-utils/1.2.3:
+ resolution: {integrity: sha512-r8pUwCVVB7UPhb0AiRa9ZzSp4xkMz64yIeJ4O4aGy4WMw7TRH4j4QkbkE1YC9tQitrXrliOlvx4WWJR4VyiGpw==}
peerDependencies:
react: '>=16.8.6'
dependencies:
- '@chakra-ui/utils': 1.9.1
- react: 17.0.2
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/react/1.7.1_hohxhc2bb7dbruzf2bcgilu2se:
- resolution: {integrity: sha512-mbU6M/lxD9BCuXXSEcscPpWqR4mWxXyTk0vkWcgLG59lMFAZ4/Ll+rG1xRHaCuRsAndWNws8h4+NcxY0eECfLQ==}
+ /@chakra-ui/react-utils/1.2.3_react@17.0.2:
+ resolution: {integrity: sha512-r8pUwCVVB7UPhb0AiRa9ZzSp4xkMz64yIeJ4O4aGy4WMw7TRH4j4QkbkE1YC9tQitrXrliOlvx4WWJR4VyiGpw==}
peerDependencies:
- '@emotion/react': ^11.0.0
- '@emotion/styled': ^11.0.0
- framer-motion: 3.x || 4.x || 5.x
react: '>=16.8.6'
- react-dom: '>=16.8.6'
dependencies:
- '@chakra-ui/accordion': 1.4.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/alert': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/avatar': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/breadcrumb': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/button': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/checkbox': 1.6.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/close-button': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/control-box': 1.1.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/counter': 1.2.1_react@17.0.2
- '@chakra-ui/css-reset': 1.1.1_bhl5vdmfhgrmmnujbwj5uarsuq
- '@chakra-ui/editable': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/form-control': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/icon': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/image': 1.1.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/input': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/layout': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/live-region': 1.1.1_react@17.0.2
- '@chakra-ui/media-query': 1.2.1_ldgmaszjwy7d6qqvxbzdhyxvbi
- '@chakra-ui/menu': 1.8.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/modal': 1.10.1_sljzxchadurndcttj5otpecw64
- '@chakra-ui/number-input': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/pin-input': 1.7.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/popover': 1.10.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/popper': 2.4.1_react@17.0.2
- '@chakra-ui/portal': 1.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@chakra-ui/progress': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/provider': 1.7.1_o6aopcb4s7zquyefflza7t7wpq
- '@chakra-ui/radio': 1.4.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/react-env': 1.1.1_react@17.0.2
- '@chakra-ui/select': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/skeleton': 1.2.1_s6mleg3cczlxbe7x73shvo7p54
- '@chakra-ui/slider': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/spinner': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/stat': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/switch': 1.3.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/table': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/tabs': 1.6.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/tag': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/textarea': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/theme': 1.12.1_@chakra-ui+system@1.8.1
- '@chakra-ui/toast': 1.4.1_y6pi277ipbrjv6rvm4c7e2uxei
- '@chakra-ui/tooltip': 1.4.1_y6pi277ipbrjv6rvm4c7e2uxei
- '@chakra-ui/transition': 1.4.1_n2argv7ng3tf56dasmod6pcm2a
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_3adleehe2yjij555ufmwj4o2wa
- '@emotion/react': 11.6.0_oqfjjbydlevwhoma3gspdo4w3y
- '@emotion/styled': 11.6.0_e4kk3rva445j2nofcqvgnixrvq
- framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- transitivePeerDependencies:
- - '@types/react'
dev: false
- /@chakra-ui/react/1.7.1_nwmiptbhd5tysta5sueyqdamte:
- resolution: {integrity: sha512-mbU6M/lxD9BCuXXSEcscPpWqR4mWxXyTk0vkWcgLG59lMFAZ4/Ll+rG1xRHaCuRsAndWNws8h4+NcxY0eECfLQ==}
+ /@chakra-ui/react/1.8.9_dnoalyp3hhsiu7ozfgwknin7ia:
+ resolution: {integrity: sha512-NfR5XKVqEWhchFLiWaTWkWeYZJK1SNF2O6sQxFVrX6M+nAgJ3Q9tfMk6/I3II+xc4hXJUcYmUvmw37vT92yMaQ==}
peerDependencies:
'@emotion/react': ^11.0.0
'@emotion/styled': ^11.0.0
- framer-motion: 3.x || 4.x || 5.x
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
react-dom: '>=16.8.6'
dependencies:
- '@chakra-ui/accordion': 1.4.1_jpyodndpmzyywuezyt6g3oekie
- '@chakra-ui/alert': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/avatar': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/breadcrumb': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/button': 1.5.1_@chakra-ui+system@1.8.1
- '@chakra-ui/checkbox': 1.6.1_jpyodndpmzyywuezyt6g3oekie
- '@chakra-ui/close-button': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/control-box': 1.1.1_@chakra-ui+system@1.8.1
- '@chakra-ui/counter': 1.2.1
- '@chakra-ui/css-reset': 1.1.1_@emotion+react@11.6.0
- '@chakra-ui/editable': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/form-control': 1.5.1_@chakra-ui+system@1.8.1
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/icon': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/image': 1.1.1_@chakra-ui+system@1.8.1
- '@chakra-ui/input': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/layout': 1.5.1_@chakra-ui+system@1.8.1
- '@chakra-ui/live-region': 1.1.1
- '@chakra-ui/media-query': 1.2.1_jwmsro2os5tniipv3gb2dorir4
- '@chakra-ui/menu': 1.8.1_jpyodndpmzyywuezyt6g3oekie
- '@chakra-ui/modal': 1.10.1_jpyodndpmzyywuezyt6g3oekie
- '@chakra-ui/number-input': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/pin-input': 1.7.1_@chakra-ui+system@1.8.1
- '@chakra-ui/popover': 1.10.1_jpyodndpmzyywuezyt6g3oekie
- '@chakra-ui/popper': 2.4.1
- '@chakra-ui/portal': 1.3.1
- '@chakra-ui/progress': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/provider': 1.7.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/radio': 1.4.1_@chakra-ui+system@1.8.1
- '@chakra-ui/react-env': 1.1.1
- '@chakra-ui/select': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/skeleton': 1.2.1_gdi6k22t7ag3t32ol4ne23sph4
- '@chakra-ui/slider': 1.5.1_@chakra-ui+system@1.8.1
- '@chakra-ui/spinner': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/stat': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/switch': 1.3.1_jpyodndpmzyywuezyt6g3oekie
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/table': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/tabs': 1.6.1_@chakra-ui+system@1.8.1
- '@chakra-ui/tag': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/textarea': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/theme': 1.12.1_@chakra-ui+system@1.8.1
- '@chakra-ui/toast': 1.4.1_jpyodndpmzyywuezyt6g3oekie
- '@chakra-ui/tooltip': 1.4.1_jpyodndpmzyywuezyt6g3oekie
- '@chakra-ui/transition': 1.4.1_framer-motion@4.1.17
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_@chakra-ui+system@1.8.1
+ '@chakra-ui/accordion': 1.4.12_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/alert': 1.3.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/avatar': 1.3.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/breadcrumb': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/button': 1.5.10_@chakra-ui+system@1.12.1
+ '@chakra-ui/checkbox': 1.7.1_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/close-button': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/control-box': 1.1.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/counter': 1.2.10
+ '@chakra-ui/css-reset': 1.1.3_@emotion+react@11.6.0
+ '@chakra-ui/editable': 1.4.2_@chakra-ui+system@1.12.1
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/image': 1.1.10_@chakra-ui+system@1.12.1
+ '@chakra-ui/input': 1.4.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/layout': 1.8.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/live-region': 1.1.6
+ '@chakra-ui/media-query': 2.0.4_hoipxdaut6bba577cceecxeuuy
+ '@chakra-ui/menu': 1.8.12_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/modal': 1.11.1_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/number-input': 1.4.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/pin-input': 1.7.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/popover': 1.11.9_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/popper': 2.4.3
+ '@chakra-ui/portal': 1.3.10
+ '@chakra-ui/progress': 1.2.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/provider': 1.7.14_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/radio': 1.5.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/react-env': 1.1.6
+ '@chakra-ui/select': 1.2.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/skeleton': 1.2.14_7v33mz6zayb6jw5nrutawhuxzq
+ '@chakra-ui/slider': 1.5.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/spinner': 1.2.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/stat': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/switch': 1.3.10_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/table': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/tabs': 1.6.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/tag': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/textarea': 1.2.11_@chakra-ui+system@1.12.1
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/toast': 1.5.9_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/tooltip': 1.5.1_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/transition': 1.4.8_framer-motion@4.1.17
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
'@emotion/react': 11.6.0
- '@emotion/styled': 11.6.0_@emotion+react@11.6.0
+ '@emotion/styled': 11.11.5_@emotion+react@11.6.0
framer-motion: 4.1.17
transitivePeerDependencies:
- '@types/react'
dev: false
- /@chakra-ui/react/1.7.1_qcpoz2wordhfo7j6fnvactvvqi:
- resolution: {integrity: sha512-mbU6M/lxD9BCuXXSEcscPpWqR4mWxXyTk0vkWcgLG59lMFAZ4/Ll+rG1xRHaCuRsAndWNws8h4+NcxY0eECfLQ==}
+ /@chakra-ui/react/1.8.9_jdfsfgm3x3dkhqibn6vbldlvwe:
+ resolution: {integrity: sha512-NfR5XKVqEWhchFLiWaTWkWeYZJK1SNF2O6sQxFVrX6M+nAgJ3Q9tfMk6/I3II+xc4hXJUcYmUvmw37vT92yMaQ==}
peerDependencies:
'@emotion/react': ^11.0.0
'@emotion/styled': ^11.0.0
- framer-motion: 3.x || 4.x || 5.x
+ framer-motion: 3.x || 4.x || 5.x || 6.x
react: '>=16.8.6'
react-dom: '>=16.8.6'
dependencies:
- '@chakra-ui/accordion': 1.4.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/alert': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/avatar': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/breadcrumb': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/button': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/checkbox': 1.6.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/close-button': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/control-box': 1.1.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/counter': 1.2.1_react@17.0.2
- '@chakra-ui/css-reset': 1.1.1_bhl5vdmfhgrmmnujbwj5uarsuq
- '@chakra-ui/editable': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/form-control': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/icon': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/image': 1.1.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/input': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/layout': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/live-region': 1.1.1_react@17.0.2
- '@chakra-ui/media-query': 1.2.1_ldgmaszjwy7d6qqvxbzdhyxvbi
- '@chakra-ui/menu': 1.8.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/modal': 1.10.1_7wihkl32ytmneylmnbtekrupgu
- '@chakra-ui/number-input': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/pin-input': 1.7.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/popover': 1.10.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/popper': 2.4.1_react@17.0.2
- '@chakra-ui/portal': 1.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@chakra-ui/progress': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/provider': 1.7.1_o6aopcb4s7zquyefflza7t7wpq
- '@chakra-ui/radio': 1.4.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/react-env': 1.1.1_react@17.0.2
- '@chakra-ui/select': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/skeleton': 1.2.1_s6mleg3cczlxbe7x73shvo7p54
- '@chakra-ui/slider': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/spinner': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/stat': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/switch': 1.3.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/table': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/tabs': 1.6.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/tag': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/textarea': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/theme': 1.12.1_@chakra-ui+system@1.8.1
- '@chakra-ui/toast': 1.4.1_y6pi277ipbrjv6rvm4c7e2uxei
- '@chakra-ui/tooltip': 1.4.1_y6pi277ipbrjv6rvm4c7e2uxei
- '@chakra-ui/transition': 1.4.1_n2argv7ng3tf56dasmod6pcm2a
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_3adleehe2yjij555ufmwj4o2wa
- '@emotion/react': 11.6.0_63c2cwvf5qxa7xvwanoyxjll5u
- '@emotion/styled': 11.6.0_6kodsbfeouj3i2xi3r6t5ga57i
+ '@chakra-ui/accordion': 1.4.12_lzykphg6aa5qb7fo3rwhgzwawu
+ '@chakra-ui/alert': 1.3.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/avatar': 1.3.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/breadcrumb': 1.3.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/button': 1.5.10_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/checkbox': 1.7.1_lzykphg6aa5qb7fo3rwhgzwawu
+ '@chakra-ui/close-button': 1.2.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/control-box': 1.1.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/counter': 1.2.10_react@17.0.2
+ '@chakra-ui/css-reset': 1.1.3_bhl5vdmfhgrmmnujbwj5uarsuq
+ '@chakra-ui/editable': 1.4.2_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/image': 1.1.10_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/input': 1.4.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/layout': 1.8.0_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/live-region': 1.1.6_react@17.0.2
+ '@chakra-ui/media-query': 2.0.4_sxr25aaor3bltw4csjjk62xw3q
+ '@chakra-ui/menu': 1.8.12_lzykphg6aa5qb7fo3rwhgzwawu
+ '@chakra-ui/modal': 1.11.1_isnjqzjzhp7xwxqhxwvxgnrzlm
+ '@chakra-ui/number-input': 1.4.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/pin-input': 1.7.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/popover': 1.11.9_lzykphg6aa5qb7fo3rwhgzwawu
+ '@chakra-ui/popper': 2.4.3_react@17.0.2
+ '@chakra-ui/portal': 1.3.10_sfoxds7t5ydpegc3knd667wn6m
+ '@chakra-ui/progress': 1.2.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/provider': 1.7.14_sfd6h5o7ufvtgq6l46f6pjvdnu
+ '@chakra-ui/radio': 1.5.1_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/react-env': 1.1.6_react@17.0.2
+ '@chakra-ui/select': 1.2.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/skeleton': 1.2.14_62ih5yuqi6emnjq2bcayg54u3a
+ '@chakra-ui/slider': 1.5.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/spinner': 1.2.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/stat': 1.2.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/switch': 1.3.10_lzykphg6aa5qb7fo3rwhgzwawu
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/table': 1.3.6_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/tabs': 1.6.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/tag': 1.2.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/textarea': 1.2.11_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/toast': 1.5.9_7zle6kimbr3ksfblqacc64j6vu
+ '@chakra-ui/tooltip': 1.5.1_7zle6kimbr3ksfblqacc64j6vu
+ '@chakra-ui/transition': 1.4.8_n2argv7ng3tf56dasmod6pcm2a
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca
+ '@emotion/react': 11.6.0_3r2q4vqikxqiwlpkbpcd6cn6l4
+ '@emotion/styled': 11.11.5_kkhqicprxlu6q33iq5g7sydvnq
framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
@@ -8249,444 +7574,1286 @@ packages:
- '@types/react'
dev: false
- /@chakra-ui/select/1.2.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-GqRmYGjVnw/Z/2RQiW7Ywuu9O5E0spmMUBjeE/v0rqjixBqrmdApjg5pmJ4YmUMvUI/WkGtR3FR5W9Y5PpvfKw==}
+ /@chakra-ui/select/1.2.11_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-6Tis1+ZrRjQeWhQfziQn3ZdPphV5ccafpZOhiPdTcM2J1XcXOlII+9rHxvaW+jx7zQ5ly5o8kd7iXzalDgl5wA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/form-control': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/select/1.2.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-GqRmYGjVnw/Z/2RQiW7Ywuu9O5E0spmMUBjeE/v0rqjixBqrmdApjg5pmJ4YmUMvUI/WkGtR3FR5W9Y5PpvfKw==}
+ /@chakra-ui/select/1.2.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-6Tis1+ZrRjQeWhQfziQn3ZdPphV5ccafpZOhiPdTcM2J1XcXOlII+9rHxvaW+jx7zQ5ly5o8kd7iXzalDgl5wA==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/form-control': 1.5.1_@chakra-ui+system@1.8.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/skeleton/1.2.1_gdi6k22t7ag3t32ol4ne23sph4:
- resolution: {integrity: sha512-08yOmINorbxtv1xgZpHiTE7YCYdicZ5dCkc7nCVxvYQihH5efkEiLbP3EefZzFCTqa2KFN8BvgD5eA76TqleXA==}
+ /@chakra-ui/skeleton/1.2.14_62ih5yuqi6emnjq2bcayg54u3a:
+ resolution: {integrity: sha512-R0v4DfQ2yjXCJf9SzhTmDb2PLx5//LxsRbjjgRa8qJCR4MZaGswPrekp4dP8YjY8aEYzuZbvHU12T3vqZBk2GA==}
peerDependencies:
+ '@chakra-ui/theme': '>=1.0.0'
+ '@emotion/react': ^11.0.0
+ '@emotion/styled': ^11.0.0
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/media-query': 1.2.1_jwmsro2os5tniipv3gb2dorir4
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
- transitivePeerDependencies:
- - '@chakra-ui/theme'
- - '@emotion/react'
- - '@emotion/styled'
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/media-query': 2.0.4_sxr25aaor3bltw4csjjk62xw3q
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.4
+ '@emotion/react': 11.6.0_3r2q4vqikxqiwlpkbpcd6cn6l4
+ '@emotion/styled': 11.11.5_kkhqicprxlu6q33iq5g7sydvnq
+ react: 17.0.2
dev: false
- /@chakra-ui/skeleton/1.2.1_s6mleg3cczlxbe7x73shvo7p54:
- resolution: {integrity: sha512-08yOmINorbxtv1xgZpHiTE7YCYdicZ5dCkc7nCVxvYQihH5efkEiLbP3EefZzFCTqa2KFN8BvgD5eA76TqleXA==}
+ /@chakra-ui/skeleton/1.2.14_7v33mz6zayb6jw5nrutawhuxzq:
+ resolution: {integrity: sha512-R0v4DfQ2yjXCJf9SzhTmDb2PLx5//LxsRbjjgRa8qJCR4MZaGswPrekp4dP8YjY8aEYzuZbvHU12T3vqZBk2GA==}
peerDependencies:
+ '@chakra-ui/theme': '>=1.0.0'
+ '@emotion/react': ^11.0.0
+ '@emotion/styled': ^11.0.0
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/media-query': 1.2.1_ldgmaszjwy7d6qqvxbzdhyxvbi
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- react: 17.0.2
- transitivePeerDependencies:
- - '@chakra-ui/theme'
- - '@emotion/react'
- - '@emotion/styled'
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/media-query': 2.0.4_hoipxdaut6bba577cceecxeuuy
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.4
+ '@emotion/react': 11.6.0
+ '@emotion/styled': 11.11.5_@emotion+react@11.6.0
dev: false
- /@chakra-ui/slider/1.5.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-3C0DnUapVdVq9hU1VWAsk0qc6ws1TesjQl/KTkxlP4yBJxKAja1HtyeN9c1x4jizl1a1Q7BJrYICupy70Ju76A==}
+ /@chakra-ui/slider/1.5.11_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-THkGU2BsA6XMosXcEVQkWVRftqUIAKCb+y4iEpR3C2ztqL7Fl/CbIGwyr5majhPhKc275rb8dfxwp8R0L0ZIiQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
react: 17.0.2
dev: false
- /@chakra-ui/slider/1.5.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-3C0DnUapVdVq9hU1VWAsk0qc6ws1TesjQl/KTkxlP4yBJxKAja1HtyeN9c1x4jizl1a1Q7BJrYICupy70Ju76A==}
+ /@chakra-ui/slider/1.5.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-THkGU2BsA6XMosXcEVQkWVRftqUIAKCb+y4iEpR3C2ztqL7Fl/CbIGwyr5majhPhKc275rb8dfxwp8R0L0ZIiQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
dev: false
- /@chakra-ui/spinner/1.2.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-CQsUJNJWWSot1ku5Se41Nz1dXIDhk+/7FIhTbfRHSjtYZnAab3CPMHBkTGqwbJxQ9oHYgk9Rso3cfG+/ra6aTQ==}
+ /@chakra-ui/spinner/1.2.6_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-GoUCccN120fGRVgUtfuwcEjeoaxffB+XsgpxX7jhWloXf8b6lkqm68bsxX4Ybb2vGN1fANI98/45JmrnddZO/A==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_3adleehe2yjij555ufmwj4o2wa
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca
react: 17.0.2
dev: false
- /@chakra-ui/spinner/1.2.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-CQsUJNJWWSot1ku5Se41Nz1dXIDhk+/7FIhTbfRHSjtYZnAab3CPMHBkTGqwbJxQ9oHYgk9Rso3cfG+/ra6aTQ==}
+ /@chakra-ui/spinner/1.2.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-GoUCccN120fGRVgUtfuwcEjeoaxffB+XsgpxX7jhWloXf8b6lkqm68bsxX4Ybb2vGN1fANI98/45JmrnddZO/A==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_@chakra-ui+system@1.8.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
dev: false
- /@chakra-ui/stat/1.2.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-BTZFeh/8VdgUX080taCQj1g/rS4wGc+y3GQnklqlZ9N/bEv0gyLqQga7TFC/NkVl3cvjRiMnCCPj6vRih9x+Og==}
+ /@chakra-ui/stat/1.2.7_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-m76jumFW1N+mCG4ytrUz9Mh09nZtS4OQcADEvOslfdI5StwwuzasTA1tueaelPzdhBioMwFUWL05Fr1fXbPJ/Q==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/icon': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_3adleehe2yjij555ufmwj4o2wa
+ '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca
react: 17.0.2
dev: false
- /@chakra-ui/stat/1.2.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-BTZFeh/8VdgUX080taCQj1g/rS4wGc+y3GQnklqlZ9N/bEv0gyLqQga7TFC/NkVl3cvjRiMnCCPj6vRih9x+Og==}
+ /@chakra-ui/stat/1.2.7_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-m76jumFW1N+mCG4ytrUz9Mh09nZtS4OQcADEvOslfdI5StwwuzasTA1tueaelPzdhBioMwFUWL05Fr1fXbPJ/Q==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
react: '>=16.8.6'
dependencies:
- '@chakra-ui/icon': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_@chakra-ui+system@1.8.1
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
dev: false
- /@chakra-ui/styled-system/1.14.1:
- resolution: {integrity: sha512-dgXFYZdJicsddUnPV1X7lQksgMD0z5EvwGaIh2JHJERqNRIvth/CBAnVLQQvy/xSJK5YaSEmeuVVU0veUOQcXg==}
+ /@chakra-ui/styled-system/1.19.0:
+ resolution: {integrity: sha512-z+bMfWs6jQGkpgarge1kmk78DuDhJIXRUMyRqZ3+CiIkze88bIIsww6mV2i8tEfUfTAvALeMnlYZ1DYsHsTTJw==}
dependencies:
- '@chakra-ui/utils': 1.9.1
- csstype: 3.0.10
+ '@chakra-ui/utils': 1.10.4
+ csstype: 3.0.9
+ dev: false
+
+ /@chakra-ui/switch/1.3.10_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-V6qDLY6oECCbPyu7alWWOAhSBI4+SAuT6XW/zEQbelkwuUOiGO1ax67rTXOmZ59A2AaV1gqQFxDh8AcbvwO5XQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/checkbox': 1.7.1_ieuzaw2hbiynf3bo5ksjnj4h3u
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17
dev: false
- /@chakra-ui/switch/1.3.1_jpyodndpmzyywuezyt6g3oekie:
- resolution: {integrity: sha512-92hXJ2/ozj7B3cJNT259mFNoad7Ck892uHTuEQ/GIdXb25doE6F1wCp0TreOnGiEgU5YSaxpdrcZjA0QODP//w==}
+ /@chakra-ui/switch/1.3.10_lzykphg6aa5qb7fo3rwhgzwawu:
+ resolution: {integrity: sha512-V6qDLY6oECCbPyu7alWWOAhSBI4+SAuT6XW/zEQbelkwuUOiGO1ax67rTXOmZ59A2AaV1gqQFxDh8AcbvwO5XQ==}
peerDependencies:
'@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/checkbox': 1.7.1_lzykphg6aa5qb7fo3rwhgzwawu
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
+ react: 17.0.2
+ dev: false
+
+ /@chakra-ui/system/1.12.1_2c4bchdcbjuysgfianrru6iy3q:
+ resolution: {integrity: sha512-Rp09/rMuPA3hF38OJxeQciGO9N0Ie1GxwHRAw1AFA/TY3fVyK9pNI5oN+J/1cAxq7v9yKdIr1YfnruJTI9xfEg==}
+ peerDependencies:
+ '@emotion/react': ^11.0.0
+ '@emotion/styled': ^11.0.0
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/color-mode': 1.4.8_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/styled-system': 1.19.0
+ '@chakra-ui/utils': 1.10.4
+ '@emotion/react': 11.6.0_3r2q4vqikxqiwlpkbpcd6cn6l4
+ '@emotion/styled': 11.11.5_kkhqicprxlu6q33iq5g7sydvnq
+ react: 17.0.2
+ react-fast-compare: 3.2.0
+ dev: false
+
+ /@chakra-ui/system/1.12.1_avixossmnjiwfyl2d7atvpqnmy:
+ resolution: {integrity: sha512-Rp09/rMuPA3hF38OJxeQciGO9N0Ie1GxwHRAw1AFA/TY3fVyK9pNI5oN+J/1cAxq7v9yKdIr1YfnruJTI9xfEg==}
+ peerDependencies:
+ '@emotion/react': ^11.0.0
+ '@emotion/styled': ^11.0.0
react: '>=16.8.6'
dependencies:
- '@chakra-ui/checkbox': 1.6.1_jpyodndpmzyywuezyt6g3oekie
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@chakra-ui/color-mode': 1.4.8
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/styled-system': 1.19.0
+ '@chakra-ui/utils': 1.10.4
+ '@emotion/react': 11.6.0
+ '@emotion/styled': 11.11.5_@emotion+react@11.6.0
+ react-fast-compare: 3.2.0
+ dev: false
+
+ /@chakra-ui/table/1.3.6_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-7agZAgAeDFKviqStvixqnLAH54+setzhx67EztioZTr5Xu+6hQ4rotfJbu8L4i587pcbNg98kCEXEkidjw0XRQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ react: 17.0.2
+ dev: false
+
+ /@chakra-ui/table/1.3.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-7agZAgAeDFKviqStvixqnLAH54+setzhx67EztioZTr5Xu+6hQ4rotfJbu8L4i587pcbNg98kCEXEkidjw0XRQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/tabs/1.6.11_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-hGs2REEVVWyfgs+qEkPiUsNnqwv3QwXfKYyXaMnGS7CCkGgUiEvIO7n9968/KGnGbM4GuEHX+BxG2suIUf24yg==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/clickable': 1.2.6_react@17.0.2
+ '@chakra-ui/descendant': 2.1.4_react@17.0.2
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ react: 17.0.2
+ dev: false
+
+ /@chakra-ui/tabs/1.6.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-hGs2REEVVWyfgs+qEkPiUsNnqwv3QwXfKYyXaMnGS7CCkGgUiEvIO7n9968/KGnGbM4GuEHX+BxG2suIUf24yg==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/clickable': 1.2.6
+ '@chakra-ui/descendant': 2.1.4
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/tag/1.2.7_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-RKrKOol4i/CnpFfo3T9LMm1abaqM+5Bs0soQLbo1iJBbBACY09sWXrQYvveQ2GYzU/OrAUloHqqmKjyVGOlNtg==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/icon': 2.0.5_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ react: 17.0.2
+ dev: false
+
+ /@chakra-ui/tag/1.2.7_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-RKrKOol4i/CnpFfo3T9LMm1abaqM+5Bs0soQLbo1iJBbBACY09sWXrQYvveQ2GYzU/OrAUloHqqmKjyVGOlNtg==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/icon': 2.0.5_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/textarea/1.2.11_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-RDWbMyC87/AFRX98EnVum5eig/7hhcvS1BrqW5lvmTgrpr7KVr80Dfa8hUj58Iq37Z7AqZijDPkBn/zg7bPdIg==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/form-control': 1.6.0_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ react: 17.0.2
+ dev: false
+
+ /@chakra-ui/textarea/1.2.11_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-RDWbMyC87/AFRX98EnVum5eig/7hhcvS1BrqW5lvmTgrpr7KVr80Dfa8hUj58Iq37Z7AqZijDPkBn/zg7bPdIg==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/form-control': 1.6.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/theme-tools/1.3.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-Wxz3XSJhPCU6OwCHEyH44EegEDQHwvlsx+KDkUDGevOjUU88YuNqOVkKtgTpgMLNQcsrYZ93oPWZUJqqCVNRew==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ '@ctrl/tinycolor': 3.6.1
+ dev: false
+
+ /@chakra-ui/theme/1.14.1_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-VeNZi+zD3yDwzvZm234Cy3vnalCzQ+dhAgpHdIYzGO1CYO8DPa+ROcQ70rUueL7dSvUz15KOiGTw6DAl7LXlGA==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ dependencies:
+ '@chakra-ui/anatomy': 1.3.0_@chakra-ui+system@1.12.1
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@chakra-ui/toast/1.5.9_7zle6kimbr3ksfblqacc64j6vu:
+ resolution: {integrity: sha512-rns04bGdMcG7Ijg45L+PfuEW4rCd0Ycraix4EJQhcl9RXI18G9sphmlp9feidhZAkI6Ukafq1YvyvkBfkKnIzQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ react-dom: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/alert': 1.3.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/close-button': 1.2.7_5qblqjf622vzzkdskgddihcrca
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/transition': 1.4.8_n2argv7ng3tf56dasmod6pcm2a
+ '@chakra-ui/utils': 1.10.4
+ '@reach/alert': 0.13.2_sfoxds7t5ydpegc3knd667wn6m
+ framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
+ react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ dev: false
+
+ /@chakra-ui/toast/1.5.9_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-rns04bGdMcG7Ijg45L+PfuEW4rCd0Ycraix4EJQhcl9RXI18G9sphmlp9feidhZAkI6Ukafq1YvyvkBfkKnIzQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ react-dom: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/alert': 1.3.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/close-button': 1.2.7_@chakra-ui+system@1.12.1
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1
+ '@chakra-ui/transition': 1.4.8_framer-motion@4.1.17
+ '@chakra-ui/utils': 1.10.4
+ '@reach/alert': 0.13.2
+ framer-motion: 4.1.17
+ dev: false
+
+ /@chakra-ui/tooltip/1.5.1_7zle6kimbr3ksfblqacc64j6vu:
+ resolution: {integrity: sha512-EUAlDdlCBt63VpEVtj/RkFjHQVN/xA9gEAumngQdi1Sp+OXPYCBM9GwSY0NwrM1RfKBnhPSH9wz7FwredJWeaw==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ react-dom: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1_react@17.0.2
+ '@chakra-ui/popper': 2.4.3_react@17.0.2
+ '@chakra-ui/portal': 1.3.10_sfoxds7t5ydpegc3knd667wn6m
+ '@chakra-ui/react-utils': 1.2.3_react@17.0.2
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_5qblqjf622vzzkdskgddihcrca
+ framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
+ react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ dev: false
+
+ /@chakra-ui/tooltip/1.5.1_ieuzaw2hbiynf3bo5ksjnj4h3u:
+ resolution: {integrity: sha512-EUAlDdlCBt63VpEVtj/RkFjHQVN/xA9gEAumngQdi1Sp+OXPYCBM9GwSY0NwrM1RfKBnhPSH9wz7FwredJWeaw==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ react-dom: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/hooks': 1.9.1
+ '@chakra-ui/popper': 2.4.3
+ '@chakra-ui/portal': 1.3.10
+ '@chakra-ui/react-utils': 1.2.3
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ '@chakra-ui/visually-hidden': 1.1.6_@chakra-ui+system@1.12.1
+ framer-motion: 4.1.17
+ dev: false
+
+ /@chakra-ui/transition/1.4.8_framer-motion@4.1.17:
+ resolution: {integrity: sha512-5uc8LEuCH7+0h++wqAav/EktTHOjbLDSTXQlU9fzPIlNNgyf2eXrHVN2AGMGKiMR9Z4gS7umQjZ54r0w/mZ/Fw==}
+ peerDependencies:
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17
+ dev: false
+
+ /@chakra-ui/transition/1.4.8_n2argv7ng3tf56dasmod6pcm2a:
+ resolution: {integrity: sha512-5uc8LEuCH7+0h++wqAav/EktTHOjbLDSTXQlU9fzPIlNNgyf2eXrHVN2AGMGKiMR9Z4gS7umQjZ54r0w/mZ/Fw==}
+ peerDependencies:
+ framer-motion: 3.x || 4.x || 5.x || 6.x
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/utils': 1.10.4
+ framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
+ react: 17.0.2
+ dev: false
+
+ /@chakra-ui/utils/1.10.1:
+ resolution: {integrity: sha512-tK1mCvdJnb4F9IKDINIJ/bbKVBDgO1nN1KTiJDHmNRiqeupOs2uOgtW4JbOEEJIcMHeIpyOKV+2NlP2vrYUZGw==}
+ dependencies:
+ '@types/lodash.mergewith': 4.6.6
+ css-box-model: 1.2.1
+ framesync: 5.3.0
+ lodash.mergewith: 4.6.2
+ dev: false
+
+ /@chakra-ui/utils/1.10.4:
+ resolution: {integrity: sha512-AM91VQQxw8F4F1WDA28mqKY6NFIOuzc2Ekkna88imy2OiqqmYH0xkq8J16L2qj4cLiLozpYqba3C79pWioy6FA==}
+ dependencies:
+ '@types/lodash.mergewith': 4.6.6
+ css-box-model: 1.2.1
+ framesync: 5.3.0
+ lodash.mergewith: 4.6.2
+ dev: false
+
+ /@chakra-ui/utils/1.9.1:
+ resolution: {integrity: sha512-Tue8JfpzOqeHd8vSqAnX1l/Y3Gg456+BXFP/TH6mCIeqMAMbrvv25vDskds0wlXRjMYdmpqHxCEzkalFrscGHA==}
+ dependencies:
+ '@types/lodash.mergewith': 4.6.6
+ css-box-model: 1.2.1
+ framesync: 5.3.0
+ lodash.mergewith: 4.6.2
+ dev: false
+
+ /@chakra-ui/visually-hidden/1.1.6_5qblqjf622vzzkdskgddihcrca:
+ resolution: {integrity: sha512-Xzy5bA0UA+IyMgwJizQYSEdgz8cC/tHdmFB3CniXzmpKTSK8mJddeEBl+cGbXHBzxEUhH7xF1eaS41O+0ezWEQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_2c4bchdcbjuysgfianrru6iy3q
+ '@chakra-ui/utils': 1.10.4
+ react: 17.0.2
+ dev: false
+
+ /@chakra-ui/visually-hidden/1.1.6_@chakra-ui+system@1.12.1:
+ resolution: {integrity: sha512-Xzy5bA0UA+IyMgwJizQYSEdgz8cC/tHdmFB3CniXzmpKTSK8mJddeEBl+cGbXHBzxEUhH7xF1eaS41O+0ezWEQ==}
+ peerDependencies:
+ '@chakra-ui/system': '>=1.0.0'
+ react: '>=16.8.6'
+ dependencies:
+ '@chakra-ui/system': 1.12.1_avixossmnjiwfyl2d7atvpqnmy
+ '@chakra-ui/utils': 1.10.4
+ dev: false
+
+ /@ckeditor/ckeditor5-adapter-ckfinder/41.4.2:
+ resolution: {integrity: sha512-yXVVEy+lEmyvYwTxn76Ff53fK/qJphf9stoBF4kFKKK/Tfi59EMog2Ctk3iIkLLyt74KmxzvuCXZwE00wDqfLA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-alignment/41.4.2:
+ resolution: {integrity: sha512-kFiEIZfUNt2TCrwJgM4mot6LLqzbH4vbfYcjbrsUz28kLv8guzcwKXPRe0ZrHo+WS7Cny8j5aCEuUAs3sxEmAg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-autoformat/41.4.2:
+ resolution: {integrity: sha512-Ukit63jHiAuLyfESdLSc6ya12xKJxDP83krZFiMY5bfXssg0z39CGuHOZlwaI9r7bBjWWMGJJeaC/9i/6L9y7g==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-autosave/41.4.2:
+ resolution: {integrity: sha512-TgaUhpFfG9csm4seL7LQSS6Rn+Gcm/wteGyD+Yl50BG1mfMIL259KEFkVTXDRwJadQm2KiiHZDLqpcd/lAqc0A==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-basic-styles/41.4.2:
+ resolution: {integrity: sha512-+Y+M9/JRX3xSHX/E5zFwzuKPzEeeuL61wcig1DuEz7GvK5sRLJcbdVQmiJnfDh3iOcf/ob1nahNgHAEoCno0Dw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-block-quote/41.4.2:
+ resolution: {integrity: sha512-tkEKd3pmDO8QWm243FRDRUv5COayXYZJpMFUL6blw3m6IXb4ujcXKn61A+UwUO+kM0NGTuepHZJkFSuV1/90sw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-balloon-block/41.4.2:
+ resolution: {integrity: sha512-p2pXJcS0hNuDZXyMi0frSwLZBm1hGGEEajJtAvKdg+pKZvvrIabQzvjtrkUf5P6Lbhl/z1/v2h0pBa76025Q5Q==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-balloon': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-balloon/41.4.2:
+ resolution: {integrity: sha512-4FLvd2OV4UgPva0/+xHT4ZuEzKLxB9M6D04/G0YFFwvbPiy71zH0iEMj132Wd0fdEJ0fwjF1HfDzhNgI9BPhPA==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-balloon': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-classic/41.4.2:
+ resolution: {integrity: sha512-fdsxmEPdNdo/usXyYMS2cN/E9KcQIrtmImUYDI+jEs6yzmSgI8By01n+enkKgVxu+2t+g+ctjQwrCpiyWIHTAQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-classic': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-decoupled-document/41.4.2:
+ resolution: {integrity: sha512-YIjcJc9flghFsA5gZaL5oIf6TxLJxUZpXgWYa9l5C68enm36bsDycgJWGGbexHK2HOR9AnBr6ThUBQJkn3StTg==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-alignment': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-decoupled': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-font': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-inline/41.4.2:
+ resolution: {integrity: sha512-h57jjFm0cSOFGSTA2MbvhSXMFxUbPZqwIeA9S0bfUNcGrnm84YaerX8ev8ZP2iMLOckPOcjBiC/70Sp0SvGwxg==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-inline': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-build-multi-root/41.4.2:
+ resolution: {integrity: sha512-Hou3cHuzx2YR6cfbTYYgk2cSBkudCfPru471KxsXUtzw+B7KuHLm3LtnLJNpScF2WoGaOoaFzB9D2PkzlhF5hA==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-multi-root': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-ckbox/41.4.2:
+ resolution: {integrity: sha512-u6HVTW7O+YSeeCZ+plg78aW74B2G+E7uKy5YQxvB99uCXGWmYy57D2maaEkPI87ZwZD3VlRnvAalaAdngc4M1g==}
+ dependencies:
+ blurhash: 2.0.5
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-ckfinder/41.4.2:
+ resolution: {integrity: sha512-QB3igdZOBI+I8q6eTA5+q27VQrj3Nu7PctNKRehwMC/Z6URboTnntqtkZ3inAZEbWcoLTN2tpDthlufUbQ+cfA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-clipboard/41.4.2:
+ resolution: {integrity: sha512-cMoGXClFxp5uR5Wr1cZnop5IdmqTZXTcrUuEoyhF+1hk+QDhp2ibQ2dTKu6hw+TTzw3Xd6g8Kj0Oj+mXoIur+w==}
+ dependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ '@ckeditor/ckeditor5-widget': 41.4.2
+ lodash-es: 4.17.21
+ dev: false
+
+ /@ckeditor/ckeditor5-cloud-services/41.4.2:
+ resolution: {integrity: sha512-rgDrpEonA2AchfvgYaeb/olMk/HYxUK4B8XPqs+nJxLmBraTv2lANsgsMbwsqAIiRjT9MknmJdX+CEbqljgL/w==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-code-block/41.4.2:
+ resolution: {integrity: sha512-NyPvffk+yA2rWsiF3Q/dDyO1ZtUvlX5hEVEWCG9C4wz9NVtBmoK0v1HmcsBDYQ//TwLY3N8HA0LX00UGTHVGFw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-core/41.4.2:
+ resolution: {integrity: sha512-kCIJjviiMNIMBMx7XFXFp1IeTELQKv7xyPJiVFDyUftIfthf9uWty72ipZ3BBNBGBkaoTiSzDZ507EsX6czuIQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ lodash-es: 4.17.21
+
+ /@ckeditor/ckeditor5-dev-translations/32.1.2:
+ resolution: {integrity: sha512-TudMnRaiYMTNuDMWExeBh0Mk96GySWzgnh4fkXfoqiABQzd9Pp/Fcl40q0LJl4jtyS3qhQGFz88GxzkxAXXU9Q==}
+ engines: {node: '>=14.0.0', npm: '>=5.7.1'}
+ dependencies:
+ '@babel/parser': 7.24.7
+ '@babel/traverse': 7.24.7
+ chalk: 4.1.2
+ pofile: 1.1.4
+ rimraf: 3.0.2
+ webpack-sources: 2.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@ckeditor/ckeditor5-dev-utils/32.1.2_noj5fmpgd6g2myobhnpnujoode:
+ resolution: {integrity: sha512-C9c6EnWhOElN5c56xhJ7mYA9AsgZbaME6d8hTGJ43J5ZG6wg7MFwVlRpv0u2unu8whLO6vsjrW7yeqBrFvo65Q==}
+ engines: {node: '>=14.0.0', npm: '>=5.7.1'}
+ peerDependencies:
+ webpack: ^4.43.0 || ^5.24.0
+ dependencies:
+ '@ckeditor/ckeditor5-dev-translations': 32.1.2
+ chalk: 3.0.0
+ cli-cursor: 3.1.0
+ cli-spinners: 2.9.2
+ cssnano: 5.1.15_postcss@8.4.38
+ del: 5.1.0
+ fs-extra: 8.1.0
+ is-interactive: 1.0.0
+ javascript-stringify: 1.6.0
+ postcss: 8.4.38
+ postcss-import: 14.1.0_postcss@8.4.38
+ postcss-loader: 4.3.0_7yemt7gjo74q3cwnxqf4xneyva
+ postcss-mixins: 9.0.4_postcss@8.4.38
+ postcss-nesting: 10.2.0_postcss@8.4.38
+ raw-loader: 4.0.2_webpack@5.92.1
+ shelljs: 0.8.5
+ style-loader: 2.0.0_webpack@5.92.1
+ terser-webpack-plugin: 4.2.3_webpack@5.92.1
+ through2: 3.0.2
+ ts-loader: 9.5.1_noj5fmpgd6g2myobhnpnujoode
+ webpack: 5.92.1_webpack-cli@4.10.0
+ transitivePeerDependencies:
+ - bluebird
+ - supports-color
+ - typescript
+ dev: true
+
+ /@ckeditor/ckeditor5-easy-image/41.4.2:
+ resolution: {integrity: sha512-HJJ3Z4R4mCazV2cz+s8bI00ci3/KyIa+fXodBN1+kg3PldX471zSj+DtyFsZyKnUcpUTVygjPEaHKBDpxtUhjQ==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-editor-balloon/41.4.2:
+ resolution: {integrity: sha512-5KI9spGZY1W2GpRLc0aJiqm1/33sGX9vxXAvIRabSF1uhK4b2WP6zdjGy0IcwBpIRnAkEGoPoetFmx1esJOVDw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-editor-classic/41.4.2:
+ resolution: {integrity: sha512-BVf4ipZz36eCTDFiQ8hqN+oBmuvZPzCmNDDjCYuHNGCKGLaIo1Yzi09fHPUWDw1U+en6Cgnwc2HSWgwf7zC7aA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-editor-decoupled/41.4.2:
+ resolution: {integrity: sha512-kzy+Az4Dn+5dCR0FMk1qzlGaqbgNSi0a7qLr17ghfVnqbLYmhhELjgLOKU9cjjIm5L2KMEH2qRq5QHlacO90kA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-editor-inline/41.4.2:
+ resolution: {integrity: sha512-NlDYZzVVpZblkeVLNrguC437PMqYEXNRGB+KF2uzV5/vPAjz3SjleVcGlbTAWVbMQAUMoOtrmrJjeTR4S93UMA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-editor-multi-root/41.4.2:
+ resolution: {integrity: sha512-sqmSEHzX0C3L5H+Svj1dSOyetxOnVb5vL2eS/EdzRpnhThwaPsTVWI83bGHPRTh4h89yEli3nMbNsdTTnsR7Rw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-engine/41.4.2:
+ resolution: {integrity: sha512-25JqIzNYvCqQ6f02YY+a8A8xtjClzI0YCio0JGoRG3JHJXzYsQbTPsiokuE1BCwMCu3gYoFz8eKJYt2selLsCw==}
+ dependencies:
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ lodash-es: 4.17.21
+
+ /@ckeditor/ckeditor5-enter/41.4.2:
+ resolution: {integrity: sha512-pvNNcFGn7TFFuJ1QbT0Jggd5xflORxa5i32nZuSzDLVflXGDKq53xSXxapCzd7XsiVXQlufbXt2SlGj7lhyP1w==}
+ dependencies:
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ dev: false
+
+ /@ckeditor/ckeditor5-essentials/41.4.2:
+ resolution: {integrity: sha512-1UCvk76v2+NDfHfTo3Qg0EJYpddgSC/i66jY3NnQUFt1zt68rAzm/kFOVYjTD/QDn6pyiMAIUeMlKFkswF+upg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-find-and-replace/41.4.2:
+ resolution: {integrity: sha512-y3JZF9UMgf6Zwt3HzaPI9B8Gbwc1s+IoK78LFuhkP9B/rgQDBFWi3fXo6ywHsHKZ/EK5JZQuHMdI9czyBuG29Q==}
+ dependencies:
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-font/41.4.2:
+ resolution: {integrity: sha512-++7oIK+MXtHGUQkqmXgZqGDBCEsHCuGkss43goGZ97PcRwLegnDRInowj3K/r3nwQcts1VAWnnLCnCSSYbcGIQ==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-heading/41.4.2:
+ resolution: {integrity: sha512-8AyMumy90nY49reQlHuCgSJFSaym4emCVF6vAAqd71FHtmgtfS9w3xMqXAk6QbgMjfy46cwind0JITZfBfKqLg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-highlight/41.4.2:
+ resolution: {integrity: sha512-xAb3Kox0KfoenZaRWgWaZPQwYLauK46WdQ4zYJ16ozQN5mssnS8sU27EFx0OG5EOv9EBurmOcHnP3Rih1szROQ==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-horizontal-line/41.4.2:
+ resolution: {integrity: sha512-le+6melLc8lQTPBWppnWXWaX16KXcvXz8ZOO4uuD7+w5JrtRheEG1N35nTblpeT+QcyBjL9mSu519xReL2qjBA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-html-embed/41.4.2:
+ resolution: {integrity: sha512-rpQMp6ckpYPWnBg8vL23SdKfJ0F80C1iIIO7EA9ZyimPc+hWH7kVF7f8D2Q2ckG1LrlXAXn9cg4tahMFGeiSzw==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-html-support/41.4.2:
+ resolution: {integrity: sha512-QHqFgzQucCRvEOPdxcXOMervxhlK6DiR6JqUvgeJyyiWWQT0HGiG7Vy7QKhL6S0w5BUYFoS5B8rj5LjOEm+xsg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-image/41.4.2:
+ resolution: {integrity: sha512-4AgXdvYr6tGzEqwAHVRl+LA8nPRER7vQthVBuT4g1FEkRB6w9kgRsPM2JfsGekoGd8GU0WnMaz8kAcL4C2urYg==}
+ dependencies:
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-indent/41.4.2:
+ resolution: {integrity: sha512-pghHa+DKya6788nTiU1ZItKmAgjf+up4Rqe5GOkxKB7vJc189KSBJYc5foov65nM831rXcWgTk4jybK+JGHmjQ==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-language/41.4.2:
+ resolution: {integrity: sha512-YrjwPRxtHDf99fnsbYxos/OuJcdEYYk4sx8oyVgwG/se0yk4IObx7MZGVebGiqd5cZQRxAxP8VGNgRqjHzpcsg==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-link/41.4.2:
+ resolution: {integrity: sha512-woMv9/BxkDjG5xsS/OyaxW9tWTuiG6wZWWcYxVJq8FOW2NL68CKQLmyoQ1rdv/2Gw4UPUXTtB+1uGVmQDMXDsQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-list/41.4.2:
+ resolution: {integrity: sha512-nGb36jNJO6YAU35piKabey9B13xw6TnmL5VySS2dEqSt/DTy7RdY5z2K7CU/NGuIGe/bPBZgU1J0dQkRr2F3hA==}
+ dependencies:
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-markdown-gfm/41.4.2:
+ resolution: {integrity: sha512-4izHzZ2AO9QMo+WirGVPYu3qqf+YuYe0CtF37rhdRNFLwDMYV7lGBpEj24US/3lV7CuEKM1V5N2Ojl6b4ew10w==}
+ dependencies:
+ ckeditor5: 41.4.2
+ marked: 4.0.12
+ turndown: 6.0.0
+ turndown-plugin-gfm: 1.0.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-media-embed/41.4.2:
+ resolution: {integrity: sha512-+4JqfbnMrB9Si2gAKKCRZTY1hixlk11mY8+PA+32UezyCq/myoAlVGT8ytCr3rywe58nbkGGAv2QbVo6fy8zoQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /@ckeditor/ckeditor5-mention/41.4.2:
+ resolution: {integrity: sha512-jO8eZE/4NIRJ5Tm/mIdgnLqkBnYj7l3jU4HZLkYvU5tEV5Xk6Rf8bsqMkkBvquf3LVhQbwAiLNjtlrHf68vU7Q==}
+ dependencies:
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
transitivePeerDependencies:
- - framer-motion
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
dev: false
- /@chakra-ui/switch/1.3.1_mrndrblmvuikk2xtkdil3sl5by:
- resolution: {integrity: sha512-92hXJ2/ozj7B3cJNT259mFNoad7Ck892uHTuEQ/GIdXb25doE6F1wCp0TreOnGiEgU5YSaxpdrcZjA0QODP//w==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-minimap/41.4.2:
+ resolution: {integrity: sha512-SJUHeD6l6UVFlY/Uh2vZIr7qHbz5A4Ud285zxAZpiiiv0NP4wQDw6bo28tD/QkCMm1hRcLCkKWd1aNDkFe+42w==}
dependencies:
- '@chakra-ui/checkbox': 1.6.1_mrndrblmvuikk2xtkdil3sl5by
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- react: 17.0.2
+ ckeditor5: 41.4.2
transitivePeerDependencies:
- - framer-motion
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
dev: false
- /@chakra-ui/system/1.8.1_hsu7jhncr42zbs7etkvvdkscdu:
- resolution: {integrity: sha512-CFHdAjXuEDIAvNBatTBo1Tfu/HJ1LfbmjGWI4uTRfA4sDIt+cCRc/VKSfl0IKQwy70yJOMoTehZBjS8g3RTymQ==}
- peerDependencies:
- '@emotion/react': ^11.0.0
- '@emotion/styled': ^11.0.0
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-page-break/41.4.2:
+ resolution: {integrity: sha512-J9sIBgBKhAeZn+KpZADUj6z7VjrbUtHHFL88Ivx2h9jePZPT/LIfDwnnrJEnMjf2KF1bkHvIdP23cZz2BzXwKg==}
dependencies:
- '@chakra-ui/color-mode': 1.3.1_react@17.0.2
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/styled-system': 1.14.1
- '@chakra-ui/utils': 1.9.1
- '@emotion/react': 11.6.0_63c2cwvf5qxa7xvwanoyxjll5u
- '@emotion/styled': 11.6.0_6kodsbfeouj3i2xi3r6t5ga57i
- react: 17.0.2
- react-fast-compare: 3.2.0
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
dev: false
- /@chakra-ui/system/1.8.1_pb5parzmf5cwc4z6wyaql6nbwu:
- resolution: {integrity: sha512-CFHdAjXuEDIAvNBatTBo1Tfu/HJ1LfbmjGWI4uTRfA4sDIt+cCRc/VKSfl0IKQwy70yJOMoTehZBjS8g3RTymQ==}
- peerDependencies:
- '@emotion/react': ^11.0.0
- '@emotion/styled': ^11.0.0
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-paragraph/41.4.2:
+ resolution: {integrity: sha512-tOsD40Fcqli5zkH/68WhcqYU8BL4qb8J5xGuk1xmBokz3W0LzebWW0GXmFk5PmWv+fg0dOXfSo8uMzb5ni+CuQ==}
dependencies:
- '@chakra-ui/color-mode': 1.3.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/styled-system': 1.14.1
- '@chakra-ui/utils': 1.9.1
- '@emotion/react': 11.6.0
- '@emotion/styled': 11.6.0_@emotion+react@11.6.0
- react-fast-compare: 3.2.0
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
dev: false
- /@chakra-ui/table/1.3.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-+ia/7zs7AGj01lon301EEx+mK4918yGc0K6e68Kxomex8tnxkwbskFWs6hX+6Kzbj56ZBm99eLlKpo2iGYX0HA==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-paste-from-office/41.4.2:
+ resolution: {integrity: sha512-jby5YQ2QowGdDCshPq5Ej11wTFcBZP2dYhQTu6fRZRc+mdihKCILxh0rwBgBOCCf+buflx8RYp/WKd76Kcuq5g==}
dependencies:
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- react: 17.0.2
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
dev: false
- /@chakra-ui/table/1.3.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-+ia/7zs7AGj01lon301EEx+mK4918yGc0K6e68Kxomex8tnxkwbskFWs6hX+6Kzbj56ZBm99eLlKpo2iGYX0HA==}
+ /@ckeditor/ckeditor5-react/7.0.0_5anerf2hje5ndmftpqr7pxnefy:
+ resolution: {integrity: sha512-9JWs5145ltuiioAuvF3xdoV660DCx1FPtTC6b1e1yXxcUgBAMSM8cmNKhzt+9vUS4RCdXVQsUFSS17cgjBX23A==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- react: '>=16.8.6'
+ '@ckeditor/ckeditor5-core': '>=41.3.1'
+ '@ckeditor/ckeditor5-editor-multi-root': '>=41.3.1'
+ '@ckeditor/ckeditor5-engine': '>=41.3.1'
+ '@ckeditor/ckeditor5-utils': '>=41.3.1'
+ '@ckeditor/ckeditor5-watchdog': '>=41.3.1'
+ react: ^16.13.1 || ^17.0.0 || ^18.0.0
dependencies:
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@ckeditor/ckeditor5-core': 41.4.2
+ prop-types: 15.8.1
dev: false
- /@chakra-ui/tabs/1.6.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-p7HdHcleJWNwteWYVPt2KF52YbS5pIIfs/IpgtnYZRsJbqvRVxSwgg5Wsn+vuxFXBKW0cA2rDGbyzsZ+ChtEXQ==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-remove-format/41.4.2:
+ resolution: {integrity: sha512-XlCIvIETcWn6/6jfPhVzSqkXZ6fnU0iqqNlyKF67dStfc6vVc6Ut31P+f84SwAJA8ay553OUNyY14YZcoP2tLg==}
dependencies:
- '@chakra-ui/clickable': 1.2.1_react@17.0.2
- '@chakra-ui/descendant': 2.1.1_react@17.0.2
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- react: 17.0.2
+ ckeditor5: 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
dev: false
- /@chakra-ui/tabs/1.6.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-p7HdHcleJWNwteWYVPt2KF52YbS5pIIfs/IpgtnYZRsJbqvRVxSwgg5Wsn+vuxFXBKW0cA2rDGbyzsZ+ChtEXQ==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-restricted-editing/41.4.2:
+ resolution: {integrity: sha512-t34VNBZbxO07nEazAKECXcRgH5VrPbrTJW0iZO0/w/yPHUAPZ8ejcdEuohr7cLS3TCHE09biFc1lNPLas/xK5w==}
dependencies:
- '@chakra-ui/clickable': 1.2.1
- '@chakra-ui/descendant': 2.1.1
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ ckeditor5: 41.4.2
dev: false
- /@chakra-ui/tag/1.2.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-O068n+qBc+CSyvpRBJ6Lwep6SydQ9UysRqw1ETF+4fJSp9dMrBp8vOcl2SVacKaCu13qdv8UdRMBxUiTz3lh7A==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-select-all/41.4.2:
+ resolution: {integrity: sha512-zC0wS0IggFDvk1wDB/SregfejLJk62In+i7P0otOaySg5tFfkJqT3OycplbPqIn3D1UCpIIz4KJzRl66PEVI7g==}
dependencies:
- '@chakra-ui/icon': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- react: 17.0.2
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
dev: false
- /@chakra-ui/tag/1.2.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-O068n+qBc+CSyvpRBJ6Lwep6SydQ9UysRqw1ETF+4fJSp9dMrBp8vOcl2SVacKaCu13qdv8UdRMBxUiTz3lh7A==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-show-blocks/41.4.2:
+ resolution: {integrity: sha512-0mKErojbxNr8Xbx5OjDLdciU3Onwn33h5IMU2j6imcwqORLzyXgU9ENhwwfw6Roeu8Guvi6hEVKBW6GE1UIYIQ==}
dependencies:
- '@chakra-ui/icon': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
dev: false
- /@chakra-ui/textarea/1.2.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-3xDsL1qQ+eY5r4GcRL4bg90vtV/xxVlw0Z3PFehFP5JW7VwXNZIRjauR/+HlOA8eYq0cF6ch2boR1GPso6rQtw==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-source-editing/41.4.2:
+ resolution: {integrity: sha512-TnBJLLEU5dckalm8KZP/xC0kLMeNDVTrWUp8iCLcmLoe9xlt/wIO8VzLVPW+WjgzSZ7Yq+vrzHaCyJRVxuDsBQ==}
dependencies:
- '@chakra-ui/form-control': 1.5.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- react: 17.0.2
+ '@ckeditor/ckeditor5-theme-lark': 41.4.2
+ ckeditor5: 41.4.2
dev: false
- /@chakra-ui/textarea/1.2.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-3xDsL1qQ+eY5r4GcRL4bg90vtV/xxVlw0Z3PFehFP5JW7VwXNZIRjauR/+HlOA8eYq0cF6ch2boR1GPso6rQtw==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-special-characters/41.4.2:
+ resolution: {integrity: sha512-OicpKzkYqyTjPRGZf6xMYQnuUCAZ4QS2H1MAEH5xTiwYv+eqR/enC/m9FxCEs2Z3DlO9DIjVnoBxe2qUCSxRBQ==}
dependencies:
- '@chakra-ui/form-control': 1.5.1_@chakra-ui+system@1.8.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ ckeditor5: 41.4.2
dev: false
- /@chakra-ui/theme-tools/1.3.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-D8arJ5uFGuYZrrFGpXqgov8FhsJYWRyar5oBZY5TJR9gsVYBlJ8Ai91pwM/NflCFqzerTOgyt7bNSGQMdZ8ghA==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
+ /@ckeditor/ckeditor5-style/41.4.2:
+ resolution: {integrity: sha512-q39mtg1kBrmJ8XA7XbOy4HhVzrICvt0KS484d5c3NaX7JetwapAM/QfWDGfMToMukzFcntaGt0be5Bwja0LJSw==}
dependencies:
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- '@ctrl/tinycolor': 3.4.0
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
dev: false
- /@chakra-ui/theme/1.12.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-8yDril3rSzv42eKR0x7KdnrpN1ubY0m6q37CVUADgtboJqoJwWWX2/hqkv8CX6WJf8ZwPwFL5QIwS2FPSGgi+g==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
+ /@ckeditor/ckeditor5-table/41.4.2:
+ resolution: {integrity: sha512-wDn1UUaKHcrscmTYj2PwCFbj9FOXFfhk4JbCepyGFQt31YyaOKBzAyZaJQ7E38wJq7a4afac3MwUDk+j1X5FDw==}
dependencies:
- '@chakra-ui/anatomy': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/theme-tools': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/utils': 1.9.1
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
dev: false
- /@chakra-ui/toast/1.4.1_jpyodndpmzyywuezyt6g3oekie:
- resolution: {integrity: sha512-vzQkYwnGq2nx0bOKIQ6XpJaGzUwnWKmUjcVrz9NzGwVI4g93PS7+13515R0m1NrDp30132OeDXQ+tmQwCRRe6w==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
- react: '>=16.8.6'
- react-dom: '>=16.8.6'
+ /@ckeditor/ckeditor5-theme-lark/41.4.2:
+ resolution: {integrity: sha512-rzFSAhdPMD2QylJDwgGniiBoCuHWQAQIEKDtMbQ4FH+/7JiCfKgUsnZxqhDPJwQyV1MWVz4wmXK/1RKqHohOvg==}
dependencies:
- '@chakra-ui/alert': 1.3.1_@chakra-ui+system@1.8.1
- '@chakra-ui/close-button': 1.2.1_@chakra-ui+system@1.8.1
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/theme': 1.12.1_@chakra-ui+system@1.8.1
- '@chakra-ui/transition': 1.4.1_framer-motion@4.1.17
- '@chakra-ui/utils': 1.9.1
- '@reach/alert': 0.13.2
- framer-motion: 4.1.17
- dev: false
+ '@ckeditor/ckeditor5-ui': 41.4.2
- /@chakra-ui/toast/1.4.1_y6pi277ipbrjv6rvm4c7e2uxei:
- resolution: {integrity: sha512-vzQkYwnGq2nx0bOKIQ6XpJaGzUwnWKmUjcVrz9NzGwVI4g93PS7+13515R0m1NrDp30132OeDXQ+tmQwCRRe6w==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
- react: '>=16.8.6'
- react-dom: '>=16.8.6'
+ /@ckeditor/ckeditor5-typing/41.4.2:
+ resolution: {integrity: sha512-dXP+uNl+jkfrSIqMNai2yakR/3JqJ9g0M9WwwnV5vzbEOKD4YKP5+ixvqKb39dwLCLZ4mGpJaX+rjNXBExjSIw==}
dependencies:
- '@chakra-ui/alert': 1.3.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/close-button': 1.2.1_3adleehe2yjij555ufmwj4o2wa
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/theme': 1.12.1_@chakra-ui+system@1.8.1
- '@chakra-ui/transition': 1.4.1_n2argv7ng3tf56dasmod6pcm2a
- '@chakra-ui/utils': 1.9.1
- '@reach/alert': 0.13.2_sfoxds7t5ydpegc3knd667wn6m
- framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ lodash-es: 4.17.21
dev: false
- /@chakra-ui/tooltip/1.4.1_jpyodndpmzyywuezyt6g3oekie:
- resolution: {integrity: sha512-KvTuqSqIpIgE+YNUwN7ONDRkSGR6SK9+dgSx2PfKy0Sel7UgDPVtxByuZ6tfJ9O1VTRYEdF9k+s6Gf8eRFQbNA==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
- react: '>=16.8.6'
- react-dom: '>=16.8.6'
+ /@ckeditor/ckeditor5-ui/41.4.2:
+ resolution: {integrity: sha512-wvRbDXJN8PmaWyB0H487DjvdH2ayMyN52+WLkZlVbhX9ICb1sf5XnLz4v/wXeQ4W8JbWdsg2FZIDDQDeXjvyJw==}
dependencies:
- '@chakra-ui/hooks': 1.7.1
- '@chakra-ui/popper': 2.4.1
- '@chakra-ui/portal': 1.3.1
- '@chakra-ui/react-utils': 1.2.1
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_@chakra-ui+system@1.8.1
- framer-motion: 4.1.17
- dev: false
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ color-convert: 2.0.1
+ color-parse: 1.4.2
+ lodash-es: 4.17.21
+ vanilla-colorful: 0.7.2
- /@chakra-ui/tooltip/1.4.1_y6pi277ipbrjv6rvm4c7e2uxei:
- resolution: {integrity: sha512-KvTuqSqIpIgE+YNUwN7ONDRkSGR6SK9+dgSx2PfKy0Sel7UgDPVtxByuZ6tfJ9O1VTRYEdF9k+s6Gf8eRFQbNA==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- framer-motion: 3.x || 4.x || 5.x
- react: '>=16.8.6'
- react-dom: '>=16.8.6'
+ /@ckeditor/ckeditor5-undo/41.4.2:
+ resolution: {integrity: sha512-mJMoALRWAaFg9Jgu+ufSGR/cUGCawMcz7Iwr5TBdrICmIckxx0DxPwWCPoTgI1laBZtRy/QctO2gQ4H+FYbfUw==}
dependencies:
- '@chakra-ui/hooks': 1.7.1_react@17.0.2
- '@chakra-ui/popper': 2.4.1_react@17.0.2
- '@chakra-ui/portal': 1.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@chakra-ui/react-utils': 1.2.1_react@17.0.2
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- '@chakra-ui/visually-hidden': 1.1.1_3adleehe2yjij555ufmwj4o2wa
- framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
dev: false
- /@chakra-ui/transition/1.4.1_framer-motion@4.1.17:
- resolution: {integrity: sha512-s/VFucc6grNdP1bxw0oQLzy167gjAgyl/GiGH9nt54nioDEiSsvn70qKg7sjajNTvpoot+urQUdr4Qh+fIUFZQ==}
- peerDependencies:
- framer-motion: 3.x || 4.x || 5.x
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-upload/41.4.2:
+ resolution: {integrity: sha512-dCNQhZw9QcgGUKlYD8STpgNanNp7ILPMRNoDFW9NWHRKsUpjGMYIU3dsE4f08hkA/bckJ9yBaZc7a0LavOrncw==}
dependencies:
- '@chakra-ui/utils': 1.9.1
- framer-motion: 4.1.17
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
dev: false
- /@chakra-ui/transition/1.4.1_n2argv7ng3tf56dasmod6pcm2a:
- resolution: {integrity: sha512-s/VFucc6grNdP1bxw0oQLzy167gjAgyl/GiGH9nt54nioDEiSsvn70qKg7sjajNTvpoot+urQUdr4Qh+fIUFZQ==}
- peerDependencies:
- framer-motion: 3.x || 4.x || 5.x
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-utils/41.4.2:
+ resolution: {integrity: sha512-VgLr2eLVggyhDqa7H8JUxpnOLTZ0R/YuDZ6ENVUumd9q4VrpNs94ZK0Y/Shp7UmuHQ/sTth+PWTsi+t5KwYqeQ==}
dependencies:
- '@chakra-ui/utils': 1.9.1
- framer-motion: 4.1.17_sfoxds7t5ydpegc3knd667wn6m
- react: 17.0.2
- dev: false
+ lodash-es: 4.17.21
- /@chakra-ui/utils/1.9.1:
- resolution: {integrity: sha512-Tue8JfpzOqeHd8vSqAnX1l/Y3Gg456+BXFP/TH6mCIeqMAMbrvv25vDskds0wlXRjMYdmpqHxCEzkalFrscGHA==}
+ /@ckeditor/ckeditor5-watchdog/41.4.2:
+ resolution: {integrity: sha512-u17Y8XHhyDHaShQei7WuZ0th8DgKo56YfJqRdZautHKnPJ32r+O97uTcGfBpsobhZbJ6Ss3tUwebve3Obv2K/w==}
dependencies:
- '@types/lodash.mergewith': 4.6.6
- css-box-model: 1.2.1
- framesync: 5.3.0
- lodash.mergewith: 4.6.2
+ lodash-es: 4.17.21
dev: false
- /@chakra-ui/visually-hidden/1.1.1_3adleehe2yjij555ufmwj4o2wa:
- resolution: {integrity: sha512-AGK9YBQS2FW/1e5tfivS8VVXn8y2uTyJ9ACOnGiLm9FNdth9pR0fGil9axlcmhZpEYcSRlnCuma3nkqaCjJnAA==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-widget/41.4.2:
+ resolution: {integrity: sha512-hpM9Ti2iFvBBIPAESJp3bOY4SR6fzF3V5t46CpVDStLJdqwnQOuZ8Nv1dqzZZWCuK+EByAbY14pgfYM92nNHrQ==}
dependencies:
- '@chakra-ui/system': 1.8.1_hsu7jhncr42zbs7etkvvdkscdu
- '@chakra-ui/utils': 1.9.1
- react: 17.0.2
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-enter': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ lodash-es: 4.17.21
dev: false
- /@chakra-ui/visually-hidden/1.1.1_@chakra-ui+system@1.8.1:
- resolution: {integrity: sha512-AGK9YBQS2FW/1e5tfivS8VVXn8y2uTyJ9ACOnGiLm9FNdth9pR0fGil9axlcmhZpEYcSRlnCuma3nkqaCjJnAA==}
- peerDependencies:
- '@chakra-ui/system': '>=1.0.0'
- react: '>=16.8.6'
+ /@ckeditor/ckeditor5-word-count/41.4.2:
+ resolution: {integrity: sha512-XuCLL97FotJ9QfuCZOhW7V2XHfVXkplIDpwgnH4HnLjtMLGFVZbyb0k9pEJk3Kp+F8qQbfWDIPFzaNKRDKqtRA==}
dependencies:
- '@chakra-ui/system': 1.8.1_pb5parzmf5cwc4z6wyaql6nbwu
- '@chakra-ui/utils': 1.9.1
+ ckeditor5: 41.4.2
+ lodash-es: 4.17.21
dev: false
/@cnakazawa/watch/1.0.4:
@@ -8695,7 +8862,7 @@ packages:
hasBin: true
dependencies:
exec-sh: 0.3.6
- minimist: 1.2.5
+ minimist: 1.2.8
/@colors/colors/1.5.0:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
@@ -8711,16 +8878,11 @@ packages:
arrify: 1.0.1
dev: true
- /@cspotcode/source-map-consumer/0.8.0:
- resolution: {integrity: sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz}
- engines: {node: '>= 12'}
- dev: true
-
- /@cspotcode/source-map-support/0.7.0:
- resolution: {integrity: sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz}
+ /@cspotcode/source-map-support/0.8.1:
+ resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
dependencies:
- '@cspotcode/source-map-consumer': 0.8.0
+ '@jridgewell/trace-mapping': 0.3.9
dev: true
/@csstools/convert-colors/1.4.0:
@@ -8730,17 +8892,26 @@ packages:
/@csstools/normalize.css/10.1.0:
resolution: {integrity: sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==}
- /@ctrl/tinycolor/3.4.0:
- resolution: {integrity: sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ==}
+ /@csstools/selector-specificity/2.2.0_jbx4mus4njtel3ypyfykqgp6rq:
+ resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==}
+ engines: {node: ^14 || ^16 || >=18}
+ peerDependencies:
+ postcss-selector-parser: ^6.0.10
+ dependencies:
+ postcss-selector-parser: 6.1.0
+ dev: true
+
+ /@ctrl/tinycolor/3.6.1:
+ resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
engines: {node: '>=10'}
dev: false
- /@cypress/request/2.88.10:
- resolution: {integrity: sha512-Zp7F+R93N0yZyG34GutyTNr+okam7s/Fzc1+i3kcqOP8vk6OuajuE9qZJ6Rs+10/1JFtXFYMdyarnU1rZuJesg==}
+ /@cypress/request/2.88.12:
+ resolution: {integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==}
engines: {node: '>= 6'}
dependencies:
aws-sign2: 0.7.0
- aws4: 1.11.0
+ aws4: 1.13.0
caseless: 0.12.0
combined-stream: 1.0.8
extend: 3.0.2
@@ -8750,11 +8921,11 @@ packages:
is-typedarray: 1.0.0
isstream: 0.1.2
json-stringify-safe: 5.0.1
- mime-types: 2.1.34
+ mime-types: 2.1.35
performance-now: 2.1.0
- qs: 6.5.2
+ qs: 6.10.4
safe-buffer: 5.2.1
- tough-cookie: 2.5.0
+ tough-cookie: 4.1.4
tunnel-agent: 0.6.0
uuid: 8.3.2
dev: true
@@ -8768,78 +8939,43 @@ packages:
- supports-color
dev: true
- /@elastic/apm-rum-core/5.14.1:
- resolution: {integrity: sha512-RFgTpXUIEIoy44TPnEN7cVcf2YIBOwaNdALrYVc4lOTMH3u0v4gaS0n9/Aee5nTGqWBLKWXXvMk/dAkjQW6qEg==}
+ /@discoveryjs/json-ext/0.5.7:
+ resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
+ engines: {node: '>=10.0.0'}
+ dev: true
+
+ /@elastic/apm-rum-core/5.21.0:
+ resolution: {integrity: sha512-O2Sq1CPq2baG3z2RGtgyG+Hybli3rwq4oMOCMvUSiTiMKBPY1dRCfuebs6KpZsk3euoqykN+oTp0DPKeOI+XIg==}
engines: {node: '>=8.0.0'}
dependencies:
error-stack-parser: 1.3.6
opentracing: 0.14.7
- promise-polyfill: 8.2.1
+ promise-polyfill: 8.3.0
dev: false
- /@elastic/apm-rum/5.10.2:
- resolution: {integrity: sha512-NrBQcgautAGwJOrJ20WUUXV1Ynux4dEEU/fgeqfdG7G3JGqMbuIlF8s/nqLgQ9oXz72Z5MirOf68P7m5Zh/5HA==}
+ /@elastic/apm-rum/5.16.0:
+ resolution: {integrity: sha512-vNwRWDIccdu6iPDpCyrC3myRnpBzRH6wlAoOZjgSFJilQJMsymb8NzR1rkQmNEBca+frRuDCZabd+ylEZ47YBA==}
engines: {node: '>=8.0.0'}
dependencies:
- '@elastic/apm-rum-core': 5.14.1
- dev: false
-
- /@emotion/babel-plugin/11.3.0:
- resolution: {integrity: sha512-UZKwBV2rADuhRp+ZOGgNWg2eYgbzKzQXfQPtJbu/PLy8onurxlNCLvxMQEvlr1/GudguPI5IU9qIY1+2z1M5bA==}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/helper-module-imports': 7.16.0
- '@babel/plugin-syntax-jsx': 7.16.0
- '@babel/runtime': 7.17.2
- '@emotion/hash': 0.8.0
- '@emotion/memoize': 0.7.5
- '@emotion/serialize': 1.0.2
- babel-plugin-macros: 2.8.0
- convert-source-map: 1.8.0
- escape-string-regexp: 4.0.0
- find-root: 1.1.0
- source-map: 0.5.7
- stylis: 4.0.10
- dev: false
-
- /@emotion/babel-plugin/11.3.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-UZKwBV2rADuhRp+ZOGgNWg2eYgbzKzQXfQPtJbu/PLy8onurxlNCLvxMQEvlr1/GudguPI5IU9qIY1+2z1M5bA==}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-module-imports': 7.16.0
- '@babel/plugin-syntax-jsx': 7.16.0_@babel+core@7.16.0
- '@babel/runtime': 7.17.2
- '@emotion/hash': 0.8.0
- '@emotion/memoize': 0.7.5
- '@emotion/serialize': 1.0.2
- babel-plugin-macros: 2.8.0
- convert-source-map: 1.8.0
- escape-string-regexp: 4.0.0
- find-root: 1.1.0
- source-map: 0.5.7
- stylis: 4.0.10
+ '@elastic/apm-rum-core': 5.21.0
dev: false
- /@emotion/babel-plugin/11.7.2:
- resolution: {integrity: sha512-6mGSCWi9UzXut/ZAN6lGFu33wGR3SJisNl3c0tvlmb8XChH1b2SUvxvnOh7hvLpqyRdHHU9AiazV3Cwbk5SXKQ==}
- peerDependencies:
- '@babel/core': ^7.0.0
+ /@emotion/babel-plugin/11.11.0:
+ resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==}
dependencies:
- '@babel/helper-module-imports': 7.16.0
- '@babel/plugin-syntax-jsx': 7.16.0
- '@babel/runtime': 7.16.3
- '@emotion/hash': 0.8.0
- '@emotion/memoize': 0.7.5
- '@emotion/serialize': 1.0.2
- babel-plugin-macros: 2.8.0
- convert-source-map: 1.8.0
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/runtime': 7.24.7
+ '@emotion/hash': 0.9.1
+ '@emotion/memoize': 0.8.1
+ '@emotion/serialize': 1.1.4
+ babel-plugin-macros: 3.1.0
+ convert-source-map: 1.9.0
escape-string-regexp: 4.0.0
find-root: 1.1.0
source-map: 0.5.7
- stylis: 4.0.13
+ stylis: 4.2.0
+ transitivePeerDependencies:
+ - supports-color
dev: false
/@emotion/cache/10.0.29:
@@ -8850,65 +8986,61 @@ packages:
'@emotion/utils': 0.11.3
'@emotion/weak-memoize': 0.2.5
- /@emotion/cache/11.6.0:
- resolution: {integrity: sha512-ElbsWY1KMwEowkv42vGo0UPuLgtPYfIs9BxxVrmvsaJVvktknsHYYlx5NQ5g6zLDcOTyamlDc7FkRg2TAcQDKQ==}
- dependencies:
- '@emotion/memoize': 0.7.5
- '@emotion/sheet': 1.1.0
- '@emotion/utils': 1.0.0
- '@emotion/weak-memoize': 0.2.5
- stylis: 4.0.10
- dev: false
-
- /@emotion/cache/11.7.1:
- resolution: {integrity: sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==}
+ /@emotion/cache/11.11.0:
+ resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==}
dependencies:
- '@emotion/memoize': 0.7.5
- '@emotion/sheet': 1.1.0
- '@emotion/utils': 1.0.0
- '@emotion/weak-memoize': 0.2.5
- stylis: 4.0.13
+ '@emotion/memoize': 0.8.1
+ '@emotion/sheet': 1.2.2
+ '@emotion/utils': 1.2.1
+ '@emotion/weak-memoize': 0.3.1
+ stylis: 4.2.0
dev: false
- /@emotion/core/10.1.1:
- resolution: {integrity: sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==}
+ /@emotion/core/10.3.1:
+ resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==}
peerDependencies:
react: '>=16.3.0'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
'@emotion/cache': 10.0.29
'@emotion/css': 10.0.27
'@emotion/serialize': 0.11.16
'@emotion/sheet': 0.9.4
'@emotion/utils': 0.11.3
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@emotion/core/10.1.1_react@16.14.0:
- resolution: {integrity: sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==}
+ /@emotion/core/10.3.1_react@16.14.0:
+ resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==}
peerDependencies:
react: '>=16.3.0'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
'@emotion/cache': 10.0.29
'@emotion/css': 10.0.27
'@emotion/serialize': 0.11.16
'@emotion/sheet': 0.9.4
'@emotion/utils': 0.11.3
react: 16.14.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@emotion/core/10.1.1_react@17.0.2:
- resolution: {integrity: sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==}
+ /@emotion/core/10.3.1_react@17.0.2:
+ resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==}
peerDependencies:
react: '>=16.3.0'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
'@emotion/cache': 10.0.29
'@emotion/css': 10.0.27
'@emotion/serialize': 0.11.16
'@emotion/sheet': 0.9.4
'@emotion/utils': 0.11.3
react: 17.0.2
+ transitivePeerDependencies:
+ - supports-color
/@emotion/core/11.0.0:
resolution: {integrity: sha512-w4sE3AmHmyG6RDKf6mIbtHpgJUSJ2uGvPQb8VXFL7hFjMPibE8IiehG8cMX3Ztm4svfCQV6KqusQbeIOkurBcA==}
@@ -8920,42 +9052,44 @@ packages:
'@emotion/serialize': 0.11.16
'@emotion/utils': 0.11.3
babel-plugin-emotion: 10.2.2
+ transitivePeerDependencies:
+ - supports-color
- /@emotion/css/11.7.1:
- resolution: {integrity: sha512-RUUgPlMZunlc7SE5A6Hg+VWRzb2cU6O9xlV78KCFgcnl25s7Qz/20oQg71iKudpLqk7xj0vhbJlwcJJMT0BOZg==}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
+ /@emotion/css/11.11.2:
+ resolution: {integrity: sha512-VJxe1ucoMYMS7DkiMdC2T7PWNbrEI0a39YRiyDvK2qq4lXwjRbVP/z4lpG+odCsRzadlR+1ywwrTzhdm5HNdew==}
dependencies:
- '@emotion/babel-plugin': 11.7.2
- '@emotion/cache': 11.7.1
- '@emotion/serialize': 1.0.2
- '@emotion/sheet': 1.1.0
- '@emotion/utils': 1.0.0
+ '@emotion/babel-plugin': 11.11.0
+ '@emotion/cache': 11.11.0
+ '@emotion/serialize': 1.1.4
+ '@emotion/sheet': 1.2.2
+ '@emotion/utils': 1.2.1
+ transitivePeerDependencies:
+ - supports-color
dev: false
/@emotion/hash/0.8.0:
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
+ /@emotion/hash/0.9.1:
+ resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==}
+ dev: false
+
/@emotion/is-prop-valid/0.8.8:
resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
- requiresBuild: true
dependencies:
'@emotion/memoize': 0.7.4
- /@emotion/is-prop-valid/1.1.1:
- resolution: {integrity: sha512-bW1Tos67CZkOURLc0OalnfxtSXQJMrAMV0jZTVGJUPSOd4qgjF3+tTD5CwJM13PHA8cltGW1WGbbvV9NpvUZPw==}
+ /@emotion/is-prop-valid/1.2.2:
+ resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==}
dependencies:
- '@emotion/memoize': 0.7.5
+ '@emotion/memoize': 0.8.1
dev: false
/@emotion/memoize/0.7.4:
resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
- /@emotion/memoize/0.7.5:
- resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==}
+ /@emotion/memoize/0.8.1:
+ resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
dev: false
/@emotion/react/11.6.0:
@@ -8970,16 +9104,16 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.16.3
- '@emotion/cache': 11.6.0
- '@emotion/serialize': 1.0.2
- '@emotion/sheet': 1.1.0
- '@emotion/utils': 1.0.0
+ '@babel/runtime': 7.13.10
+ '@emotion/cache': 11.11.0
+ '@emotion/serialize': 1.1.4
+ '@emotion/sheet': 1.2.2
+ '@emotion/utils': 1.2.1
'@emotion/weak-memoize': 0.2.5
hoist-non-react-statics: 3.3.2
dev: false
- /@emotion/react/11.6.0_63c2cwvf5qxa7xvwanoyxjll5u:
+ /@emotion/react/11.6.0_3r2q4vqikxqiwlpkbpcd6cn6l4:
resolution: {integrity: sha512-23MnRZFBN9+D1lHXC5pD6z4X9yhPxxtHr6f+iTGz6Fv6Rda0GdefPrsHL7otsEf+//7uqCdT5QtHeRxHCERzuw==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -8991,19 +9125,18 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/core': 7.16.0
- '@babel/runtime': 7.16.3
- '@emotion/cache': 11.6.0
- '@emotion/serialize': 1.0.2
- '@emotion/sheet': 1.1.0
- '@emotion/utils': 1.0.0
+ '@babel/runtime': 7.13.10
+ '@emotion/cache': 11.11.0
+ '@emotion/serialize': 1.1.4
+ '@emotion/sheet': 1.2.2
+ '@emotion/utils': 1.2.1
'@emotion/weak-memoize': 0.2.5
- '@types/react': 17.0.35
+ '@types/react': 16.14.60
hoist-non-react-statics: 3.3.2
react: 17.0.2
dev: false
- /@emotion/react/11.6.0_oqfjjbydlevwhoma3gspdo4w3y:
+ /@emotion/react/11.6.0_4i3xo6dz6apzhebz25wvccraoy:
resolution: {integrity: sha512-23MnRZFBN9+D1lHXC5pD6z4X9yhPxxtHr6f+iTGz6Fv6Rda0GdefPrsHL7otsEf+//7uqCdT5QtHeRxHCERzuw==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -9015,18 +9148,19 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.16.3
- '@emotion/cache': 11.6.0
- '@emotion/serialize': 1.0.2
- '@emotion/sheet': 1.1.0
- '@emotion/utils': 1.0.0
+ '@babel/core': 7.13.15
+ '@babel/runtime': 7.13.10
+ '@emotion/cache': 11.11.0
+ '@emotion/serialize': 1.1.4
+ '@emotion/sheet': 1.2.2
+ '@emotion/utils': 1.2.1
'@emotion/weak-memoize': 0.2.5
- '@types/react': 16.14.21
+ '@types/react': 16.14.60
hoist-non-react-statics: 3.3.2
react: 17.0.2
dev: false
- /@emotion/react/11.6.0_qewexek3mggvbeokd2goivthmy:
+ /@emotion/react/11.6.0_hqp5somsn7eiiofz7xtfzylpfm:
resolution: {integrity: sha512-23MnRZFBN9+D1lHXC5pD6z4X9yhPxxtHr6f+iTGz6Fv6Rda0GdefPrsHL7otsEf+//7uqCdT5QtHeRxHCERzuw==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -9038,13 +9172,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.16.3
- '@emotion/cache': 11.6.0
- '@emotion/serialize': 1.0.2
- '@emotion/sheet': 1.1.0
- '@emotion/utils': 1.0.0
+ '@babel/runtime': 7.13.10
+ '@emotion/cache': 11.11.0
+ '@emotion/serialize': 1.1.4
+ '@emotion/sheet': 1.2.2
+ '@emotion/utils': 1.2.1
'@emotion/weak-memoize': 0.2.5
- '@types/react': 17.0.35
+ '@types/react': 17.0.80
hoist-non-react-statics: 3.3.2
react: 17.0.2
dev: false
@@ -9056,166 +9190,146 @@ packages:
'@emotion/memoize': 0.7.4
'@emotion/unitless': 0.7.5
'@emotion/utils': 0.11.3
- csstype: 2.6.18
+ csstype: 2.6.21
- /@emotion/serialize/1.0.2:
- resolution: {integrity: sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==}
+ /@emotion/serialize/1.1.4:
+ resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==}
dependencies:
- '@emotion/hash': 0.8.0
- '@emotion/memoize': 0.7.5
- '@emotion/unitless': 0.7.5
- '@emotion/utils': 1.0.0
- csstype: 3.0.10
+ '@emotion/hash': 0.9.1
+ '@emotion/memoize': 0.8.1
+ '@emotion/unitless': 0.8.1
+ '@emotion/utils': 1.2.1
+ csstype: 3.1.3
dev: false
/@emotion/sheet/0.9.4:
resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==}
- /@emotion/sheet/1.1.0:
- resolution: {integrity: sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==}
+ /@emotion/sheet/1.2.2:
+ resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==}
dev: false
- /@emotion/styled-base/10.0.31_go5tdyoyk4iceqw7gzblglw2da:
- resolution: {integrity: sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==}
+ /@emotion/styled-base/10.3.0_gfrer23gq2rp2t523t6qbxrx6m:
+ resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==}
peerDependencies:
'@emotion/core': ^10.0.28
react: '>=16.3.0'
dependencies:
- '@babel/runtime': 7.17.2
- '@emotion/core': 10.1.1_react@17.0.2
+ '@babel/runtime': 7.24.7
+ '@emotion/core': 10.3.1_react@17.0.2
'@emotion/is-prop-valid': 0.8.8
'@emotion/serialize': 0.11.16
'@emotion/utils': 0.11.3
react: 17.0.2
dev: true
- /@emotion/styled-base/10.0.31_l4qwngn4rqpsicelhp3xw7f334:
- resolution: {integrity: sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==}
+ /@emotion/styled-base/10.3.0_qzeatvug73zaio2r3dlvejynye:
+ resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==}
peerDependencies:
'@emotion/core': ^10.0.28
react: '>=16.3.0'
dependencies:
- '@babel/runtime': 7.17.2
- '@emotion/core': 10.1.1_react@16.14.0
+ '@babel/runtime': 7.24.7
+ '@emotion/core': 10.3.1_react@16.14.0
'@emotion/is-prop-valid': 0.8.8
'@emotion/serialize': 0.11.16
'@emotion/utils': 0.11.3
react: 16.14.0
dev: true
- /@emotion/styled/10.0.27_go5tdyoyk4iceqw7gzblglw2da:
- resolution: {integrity: sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==}
+ /@emotion/styled/10.3.0_gfrer23gq2rp2t523t6qbxrx6m:
+ resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==}
peerDependencies:
'@emotion/core': ^10.0.27
react: '>=16.3.0'
dependencies:
- '@emotion/core': 10.1.1_react@17.0.2
- '@emotion/styled-base': 10.0.31_go5tdyoyk4iceqw7gzblglw2da
+ '@emotion/core': 10.3.1_react@17.0.2
+ '@emotion/styled-base': 10.3.0_gfrer23gq2rp2t523t6qbxrx6m
babel-plugin-emotion: 10.2.2
react: 17.0.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@emotion/styled/10.0.27_l4qwngn4rqpsicelhp3xw7f334:
- resolution: {integrity: sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==}
+ /@emotion/styled/10.3.0_qzeatvug73zaio2r3dlvejynye:
+ resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==}
peerDependencies:
'@emotion/core': ^10.0.27
react: '>=16.3.0'
dependencies:
- '@emotion/core': 10.1.1_react@16.14.0
- '@emotion/styled-base': 10.0.31_l4qwngn4rqpsicelhp3xw7f334
+ '@emotion/core': 10.3.1_react@16.14.0
+ '@emotion/styled-base': 10.3.0_qzeatvug73zaio2r3dlvejynye
babel-plugin-emotion: 10.2.2
react: 16.14.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@emotion/styled/11.6.0_6kodsbfeouj3i2xi3r6t5ga57i:
- resolution: {integrity: sha512-mxVtVyIOTmCAkFbwIp+nCjTXJNgcz4VWkOYQro87jE2QBTydnkiYusMrRGFtzuruiGK4dDaNORk4gH049iiQuw==}
- peerDependencies:
- '@babel/core': ^7.0.0
- '@emotion/react': ^11.0.0-rc.0
- '@types/react': '*'
- react: '>=16.8.0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- '@types/react':
- optional: true
- dependencies:
- '@babel/core': 7.16.0
- '@babel/runtime': 7.16.3
- '@emotion/babel-plugin': 11.3.0_@babel+core@7.16.0
- '@emotion/is-prop-valid': 1.1.1
- '@emotion/react': 11.6.0_63c2cwvf5qxa7xvwanoyxjll5u
- '@emotion/serialize': 1.0.2
- '@emotion/utils': 1.0.0
- '@types/react': 17.0.35
- react: 17.0.2
- dev: false
-
- /@emotion/styled/11.6.0_@emotion+react@11.6.0:
- resolution: {integrity: sha512-mxVtVyIOTmCAkFbwIp+nCjTXJNgcz4VWkOYQro87jE2QBTydnkiYusMrRGFtzuruiGK4dDaNORk4gH049iiQuw==}
+ /@emotion/styled/11.11.5_@emotion+react@11.6.0:
+ resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==}
peerDependencies:
- '@babel/core': ^7.0.0
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
- '@babel/core':
- optional: true
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.16.3
- '@emotion/babel-plugin': 11.3.0
- '@emotion/is-prop-valid': 1.1.1
+ '@babel/runtime': 7.24.7
+ '@emotion/babel-plugin': 11.11.0
+ '@emotion/is-prop-valid': 1.2.2
'@emotion/react': 11.6.0
- '@emotion/serialize': 1.0.2
- '@emotion/utils': 1.0.0
+ '@emotion/serialize': 1.1.4
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.1
+ '@emotion/utils': 1.2.1
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@emotion/styled/11.6.0_bxx66gdombxxitmllj5fuezuvy:
- resolution: {integrity: sha512-mxVtVyIOTmCAkFbwIp+nCjTXJNgcz4VWkOYQro87jE2QBTydnkiYusMrRGFtzuruiGK4dDaNORk4gH049iiQuw==}
+ /@emotion/styled/11.11.5_g6sjbj4tvaunld2zatbdfzmhze:
+ resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==}
peerDependencies:
- '@babel/core': ^7.0.0
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
- '@babel/core':
- optional: true
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.16.3
- '@emotion/babel-plugin': 11.3.0
- '@emotion/is-prop-valid': 1.1.1
- '@emotion/react': 11.6.0_qewexek3mggvbeokd2goivthmy
- '@emotion/serialize': 1.0.2
- '@emotion/utils': 1.0.0
- '@types/react': 17.0.35
+ '@babel/runtime': 7.24.7
+ '@emotion/babel-plugin': 11.11.0
+ '@emotion/is-prop-valid': 1.2.2
+ '@emotion/react': 11.6.0_hqp5somsn7eiiofz7xtfzylpfm
+ '@emotion/serialize': 1.1.4
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.1_react@17.0.2
+ '@emotion/utils': 1.2.1
+ '@types/react': 17.0.80
react: 17.0.2
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@emotion/styled/11.6.0_e4kk3rva445j2nofcqvgnixrvq:
- resolution: {integrity: sha512-mxVtVyIOTmCAkFbwIp+nCjTXJNgcz4VWkOYQro87jE2QBTydnkiYusMrRGFtzuruiGK4dDaNORk4gH049iiQuw==}
+ /@emotion/styled/11.11.5_kkhqicprxlu6q33iq5g7sydvnq:
+ resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==}
peerDependencies:
- '@babel/core': ^7.0.0
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
react: '>=16.8.0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
+ peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.16.3
- '@emotion/babel-plugin': 11.3.0
- '@emotion/is-prop-valid': 1.1.1
- '@emotion/react': 11.6.0_oqfjjbydlevwhoma3gspdo4w3y
- '@emotion/serialize': 1.0.2
- '@emotion/utils': 1.0.0
- '@types/react': 16.14.21
+ '@babel/runtime': 7.24.7
+ '@emotion/babel-plugin': 11.11.0
+ '@emotion/is-prop-valid': 1.2.2
+ '@emotion/react': 11.6.0_3r2q4vqikxqiwlpkbpcd6cn6l4
+ '@emotion/serialize': 1.1.4
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.1_react@17.0.2
+ '@emotion/utils': 1.2.1
+ '@types/react': 16.14.60
react: 17.0.2
+ transitivePeerDependencies:
+ - supports-color
dev: false
/@emotion/stylis/0.8.5:
@@ -9224,28 +9338,50 @@ packages:
/@emotion/unitless/0.7.5:
resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
+ /@emotion/unitless/0.8.1:
+ resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==}
+ dev: false
+
+ /@emotion/use-insertion-effect-with-fallbacks/1.0.1:
+ resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==}
+ peerDependencies:
+ react: '>=16.8.0'
+ dev: false
+
+ /@emotion/use-insertion-effect-with-fallbacks/1.0.1_react@17.0.2:
+ resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==}
+ peerDependencies:
+ react: '>=16.8.0'
+ dependencies:
+ react: 17.0.2
+ dev: false
+
/@emotion/utils/0.11.3:
resolution: {integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==}
- /@emotion/utils/1.0.0:
- resolution: {integrity: sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA==}
+ /@emotion/utils/1.2.1:
+ resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==}
dev: false
/@emotion/weak-memoize/0.2.5:
resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==}
+ /@emotion/weak-memoize/0.3.1:
+ resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==}
+ dev: false
+
/@eslint/eslintrc/0.4.3:
resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
ajv: 6.12.6
- debug: 4.3.4
+ debug: 4.3.5
espree: 7.3.1
- globals: 13.12.0
+ globals: 13.24.0
ignore: 4.0.6
import-fresh: 3.3.0
js-yaml: 3.14.1
- minimatch: 3.0.4
+ minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
@@ -9258,93 +9394,93 @@ packages:
resolution: {integrity: sha512-lfSfdONVQ/1aKvsA7PnawQjSoE5PXOyHich3WFIbAuYRMAw6Ax1FmIWxPxCfHP/Rh0R2cG/CxaimUW7NI6rgEQ==}
dev: false
- /@formatjs/ecma402-abstract/1.11.1:
- resolution: {integrity: sha512-tgtNODZUGuUI6PAcnvaLZpGrZLVkXnnAvgzOiueYMzFdOdcOw4iH1WKhCe3+r6VR8rHKToJ2HksUGNCB+zt/bg==}
+ /@formatjs/ecma402-abstract/1.11.4:
+ resolution: {integrity: sha512-EBikYFp2JCdIfGEb5G9dyCkTGDmC57KSHhRQOC3aYxoPWVZvfWCDjZwkGYHN7Lis/fmuWl906bnNTJifDQ3sXw==}
dependencies:
- '@formatjs/intl-localematcher': 0.2.22
- tslib: 2.3.1
+ '@formatjs/intl-localematcher': 0.2.25
+ tslib: 2.6.3
/@formatjs/fast-memoize/1.2.1:
resolution: {integrity: sha512-Rg0e76nomkz3vF9IPlKeV+Qynok0r7YZjL6syLz4/urSg0IbjPZCB/iYUMNsYA643gh4mgrX3T7KEIFIxJBQeg==}
dependencies:
- tslib: 2.3.1
+ tslib: 2.6.3
- /@formatjs/icu-messageformat-parser/2.0.16:
- resolution: {integrity: sha512-sYg0ImXsAqBbjU/LotoCD9yKC5nUpWVy3s4DwWerHXD4sm62FcjMF8mekwudRk3eZLHqSO+M21MpFUUjDQ+Q5Q==}
+ /@formatjs/icu-messageformat-parser/2.1.0:
+ resolution: {integrity: sha512-Qxv/lmCN6hKpBSss2uQ8IROVnta2r9jd3ymUEIjm2UyIkUCHVcbUVRGL/KS/wv7876edvsPe+hjHVJ4z8YuVaw==}
dependencies:
- '@formatjs/ecma402-abstract': 1.11.1
- '@formatjs/icu-skeleton-parser': 1.3.3
- tslib: 2.3.1
+ '@formatjs/ecma402-abstract': 1.11.4
+ '@formatjs/icu-skeleton-parser': 1.3.6
+ tslib: 2.6.3
- /@formatjs/icu-skeleton-parser/1.3.3:
- resolution: {integrity: sha512-ifWnzjmHPHUF89UpCvClTP66sXYFc8W/qg7Qt+qtTUB9BqRWlFeUsevAzaMYDJsRiOy4S2WJFrJoZgRKUFfPGQ==}
+ /@formatjs/icu-skeleton-parser/1.3.6:
+ resolution: {integrity: sha512-I96mOxvml/YLrwU2Txnd4klA7V8fRhb6JG/4hm3VMNmeJo1F03IpV2L3wWt7EweqNLES59SZ4d6hVOPCSf80Bg==}
dependencies:
- '@formatjs/ecma402-abstract': 1.11.1
- tslib: 2.3.1
+ '@formatjs/ecma402-abstract': 1.11.4
+ tslib: 2.6.3
- /@formatjs/intl-displaynames/5.4.0:
- resolution: {integrity: sha512-zWmTkq9eGOeJCmw22KPXW6rlnx3Z3CIV+rc/jh9ytEfm1Ps/OgOITe4h6ZTDrQC+nXVACvLO1Kpes4jMWcjWuQ==}
+ /@formatjs/intl-displaynames/5.4.3:
+ resolution: {integrity: sha512-4r12A3mS5dp5hnSaQCWBuBNfi9Amgx2dzhU4lTFfhSxgb5DOAiAbMpg6+7gpWZgl4ahsj3l2r/iHIjdmdXOE2Q==}
dependencies:
- '@formatjs/ecma402-abstract': 1.11.1
- '@formatjs/intl-localematcher': 0.2.22
- tslib: 2.3.1
+ '@formatjs/ecma402-abstract': 1.11.4
+ '@formatjs/intl-localematcher': 0.2.25
+ tslib: 2.6.3
- /@formatjs/intl-listformat/6.5.0:
- resolution: {integrity: sha512-gVyAV5QWWtq84MK4cAyJITW+Wb74c2+FT+wa8jhSPxXUky9B5z/k/Ff7or4Vb3KV0YYZuVBQ/vMIoD8Gr182ww==}
+ /@formatjs/intl-listformat/6.5.3:
+ resolution: {integrity: sha512-ozpz515F/+3CU+HnLi5DYPsLa6JoCfBggBSSg/8nOB5LYSFW9+ZgNQJxJ8tdhKYeODT+4qVHX27EeJLoxLGLNg==}
dependencies:
- '@formatjs/ecma402-abstract': 1.11.1
- '@formatjs/intl-localematcher': 0.2.22
- tslib: 2.3.1
+ '@formatjs/ecma402-abstract': 1.11.4
+ '@formatjs/intl-localematcher': 0.2.25
+ tslib: 2.6.3
- /@formatjs/intl-localematcher/0.2.22:
- resolution: {integrity: sha512-z+TvbHW8Q/g2l7/PnfUl0mV9gWxV4d0HT6GQyzkO5QI6QjCvCZGiztnmLX7zoyS16uSMvZ2PoMDfSK9xvZkRRA==}
+ /@formatjs/intl-localematcher/0.2.25:
+ resolution: {integrity: sha512-YmLcX70BxoSopLFdLr1Ds99NdlTI2oWoLbaUW2M406lxOIPzE1KQhRz2fPUkq34xVZQaihCoU29h0KK7An3bhA==}
dependencies:
- tslib: 2.3.1
+ tslib: 2.6.3
- /@formatjs/intl/1.18.3:
- resolution: {integrity: sha512-eMdU2FBAvC2vMeQRjvBhJeRNsftZ2VXdB4jW1KKbP72O4JWB9lv2KqEdS2jo6DfhDvm0EAMZXMNEEK8ybTxfyA==}
+ /@formatjs/intl/2.2.1:
+ resolution: {integrity: sha512-vgvyUOOrzqVaOFYzTf2d3+ToSkH2JpR7x/4U1RyoHQLmvEaTQvXJ7A2qm1Iy3brGNXC/+/7bUlc3lpH+h/LOJA==}
peerDependencies:
typescript: ^4.5
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@formatjs/ecma402-abstract': 1.11.1
+ '@formatjs/ecma402-abstract': 1.11.4
'@formatjs/fast-memoize': 1.2.1
- '@formatjs/icu-messageformat-parser': 2.0.16
- '@formatjs/intl-displaynames': 5.4.0
- '@formatjs/intl-listformat': 6.5.0
- intl-messageformat: 9.11.2
- tslib: 2.3.1
+ '@formatjs/icu-messageformat-parser': 2.1.0
+ '@formatjs/intl-displaynames': 5.4.3
+ '@formatjs/intl-listformat': 6.5.3
+ intl-messageformat: 9.13.0
+ tslib: 2.6.3
dev: true
- /@formatjs/intl/1.18.3_typescript@4.6.2:
- resolution: {integrity: sha512-eMdU2FBAvC2vMeQRjvBhJeRNsftZ2VXdB4jW1KKbP72O4JWB9lv2KqEdS2jo6DfhDvm0EAMZXMNEEK8ybTxfyA==}
+ /@formatjs/intl/2.2.1_typescript@4.9.5:
+ resolution: {integrity: sha512-vgvyUOOrzqVaOFYzTf2d3+ToSkH2JpR7x/4U1RyoHQLmvEaTQvXJ7A2qm1Iy3brGNXC/+/7bUlc3lpH+h/LOJA==}
peerDependencies:
typescript: ^4.5
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@formatjs/ecma402-abstract': 1.11.1
+ '@formatjs/ecma402-abstract': 1.11.4
'@formatjs/fast-memoize': 1.2.1
- '@formatjs/icu-messageformat-parser': 2.0.16
- '@formatjs/intl-displaynames': 5.4.0
- '@formatjs/intl-listformat': 6.5.0
- intl-messageformat: 9.11.2
- tslib: 2.3.1
- typescript: 4.6.2
+ '@formatjs/icu-messageformat-parser': 2.1.0
+ '@formatjs/intl-displaynames': 5.4.3
+ '@formatjs/intl-listformat': 6.5.3
+ intl-messageformat: 9.13.0
+ tslib: 2.6.3
+ typescript: 4.9.5
dev: false
- /@gar/promisify/1.1.2:
- resolution: {integrity: sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==}
+ /@gar/promisify/1.1.3:
+ resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
- /@graphql-typed-document-node/core/3.1.1_graphql@15.7.2:
- resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==}
+ /@graphql-typed-document-node/core/3.2.0_graphql@15.8.0:
+ resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
peerDependencies:
- graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
+ graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- graphql: 15.7.2
+ graphql: 15.8.0
dev: false
/@hapi/address/2.1.4:
@@ -9387,24 +9523,26 @@ packages:
/@humanwhocodes/config-array/0.5.0:
resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==}
engines: {node: '>=10.10.0'}
+ deprecated: Use @eslint/config-array instead
dependencies:
'@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4
- minimatch: 3.0.4
+ debug: 4.3.5
+ minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
/@humanwhocodes/object-schema/1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
+ deprecated: Use @eslint/object-schema instead
- /@hypnosphi/create-react-context/0.3.1_uutjjb2r36qagpytglxm7vtgnq:
+ /@hypnosphi/create-react-context/0.3.1_4vyaxm4rsh2mpfdenvlqy7kmya:
resolution: {integrity: sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==}
peerDependencies:
prop-types: ^15.0.0
react: '>=0.14.0'
dependencies:
gud: 1.0.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
warning: 4.0.3
dev: true
@@ -9458,7 +9596,7 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/types': 26.6.2
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
chalk: 4.1.2
jest-message-util: 26.6.2
jest-util: 26.6.2
@@ -9469,7 +9607,7 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
chalk: 4.1.2
jest-message-util: 27.5.1
jest-util: 27.5.1
@@ -9488,7 +9626,7 @@ packages:
ansi-escapes: 3.2.0
chalk: 2.4.2
exit: 0.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-changed-files: 24.9.0
jest-config: 24.9.0
jest-haste-map: 24.9.0
@@ -9522,11 +9660,11 @@ packages:
'@jest/test-result': 26.6.2
'@jest/transform': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
ansi-escapes: 4.3.2
chalk: 4.1.2
exit: 0.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-changed-files: 26.6.2
jest-config: 26.6.3
jest-haste-map: 26.6.2
@@ -9540,7 +9678,7 @@ packages:
jest-util: 26.6.2
jest-validate: 26.6.2
jest-watcher: 26.6.2
- micromatch: 4.0.4
+ micromatch: 4.0.7
p-each-series: 2.2.0
rimraf: 3.0.2
slash: 3.0.0
@@ -9566,12 +9704,12 @@ packages:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.8.1
exit: 0.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-changed-files: 27.5.1
jest-config: 27.5.1
jest-haste-map: 27.5.1
@@ -9585,7 +9723,7 @@ packages:
jest-util: 27.5.1
jest-validate: 27.5.1
jest-watcher: 27.5.1
- micromatch: 4.0.4
+ micromatch: 4.0.7
rimraf: 3.0.2
slash: 3.0.0
strip-ansi: 6.0.1
@@ -9597,7 +9735,7 @@ packages:
- utf-8-validate
dev: true
- /@jest/core/27.5.1_ts-node@10.5.0:
+ /@jest/core/27.5.1_ts-node@10.9.2:
resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
@@ -9611,14 +9749,14 @@ packages:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.8.1
exit: 0.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-changed-files: 27.5.1
- jest-config: 27.5.1_ts-node@10.5.0
+ jest-config: 27.5.1_ts-node@10.9.2
jest-haste-map: 27.5.1
jest-message-util: 27.5.1
jest-regex-util: 27.5.1
@@ -9630,7 +9768,7 @@ packages:
jest-util: 27.5.1
jest-validate: 27.5.1
jest-watcher: 27.5.1
- micromatch: 4.0.4
+ micromatch: 4.0.7
rimraf: 3.0.2
slash: 3.0.0
strip-ansi: 6.0.1
@@ -9659,7 +9797,7 @@ packages:
dependencies:
'@jest/fake-timers': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
jest-mock: 26.6.2
/@jest/environment/27.5.1:
@@ -9668,7 +9806,7 @@ packages:
dependencies:
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
jest-mock: 27.5.1
dev: true
@@ -9699,7 +9837,7 @@ packages:
dependencies:
'@jest/types': 26.6.2
'@sinonjs/fake-timers': 6.0.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
jest-message-util: 26.6.2
jest-mock: 26.6.2
jest-util: 26.6.2
@@ -9710,7 +9848,7 @@ packages:
dependencies:
'@jest/types': 27.5.1
'@sinonjs/fake-timers': 8.1.0
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
jest-message-util: 27.5.1
jest-mock: 27.5.1
jest-util: 27.5.1
@@ -9743,7 +9881,7 @@ packages:
'@jest/types': 24.9.0
chalk: 2.4.2
exit: 0.1.2
- glob: 7.2.0
+ glob: 7.2.3
istanbul-lib-coverage: 2.0.5
istanbul-lib-instrument: 3.3.0
istanbul-lib-report: 2.0.8
@@ -9773,15 +9911,15 @@ packages:
'@jest/transform': 26.6.2
'@jest/types': 26.6.2
chalk: 4.1.2
- collect-v8-coverage: 1.0.1
+ collect-v8-coverage: 1.0.2
exit: 0.1.2
- glob: 7.2.0
- graceful-fs: 4.2.9
- istanbul-lib-coverage: 3.2.0
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ istanbul-lib-coverage: 3.2.2
istanbul-lib-instrument: 4.0.3
- istanbul-lib-report: 3.0.0
+ istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.4
+ istanbul-reports: 3.1.7
jest-haste-map: 26.6.2
jest-resolve: 26.6.2
jest-util: 26.6.2
@@ -9810,17 +9948,17 @@ packages:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
chalk: 4.1.2
- collect-v8-coverage: 1.0.1
+ collect-v8-coverage: 1.0.2
exit: 0.1.2
- glob: 7.2.0
- graceful-fs: 4.2.9
- istanbul-lib-coverage: 3.2.0
- istanbul-lib-instrument: 5.1.0
- istanbul-lib-report: 3.0.0
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-instrument: 5.2.1
+ istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.4
+ istanbul-reports: 3.1.7
jest-haste-map: 27.5.1
jest-resolve: 27.5.1
jest-util: 27.5.1
@@ -9829,7 +9967,7 @@ packages:
source-map: 0.6.1
string-length: 4.0.2
terminal-link: 2.1.1
- v8-to-istanbul: 8.1.0
+ v8-to-istanbul: 8.1.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -9839,7 +9977,7 @@ packages:
engines: {node: '>= 6'}
dependencies:
callsites: 3.1.0
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
source-map: 0.6.1
/@jest/source-map/26.6.2:
@@ -9847,7 +9985,7 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
callsites: 3.1.0
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
source-map: 0.6.1
/@jest/source-map/27.5.1:
@@ -9855,7 +9993,7 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
callsites: 3.1.0
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
source-map: 0.6.1
dev: true
@@ -9865,7 +10003,7 @@ packages:
dependencies:
'@jest/console': 24.9.0
'@jest/types': 24.9.0
- '@types/istanbul-lib-coverage': 2.0.3
+ '@types/istanbul-lib-coverage': 2.0.6
/@jest/test-result/26.6.2:
resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==}
@@ -9873,8 +10011,8 @@ packages:
dependencies:
'@jest/console': 26.6.2
'@jest/types': 26.6.2
- '@types/istanbul-lib-coverage': 2.0.3
- collect-v8-coverage: 1.0.1
+ '@types/istanbul-lib-coverage': 2.0.6
+ collect-v8-coverage: 1.0.2
/@jest/test-result/27.5.1:
resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==}
@@ -9882,8 +10020,8 @@ packages:
dependencies:
'@jest/console': 27.5.1
'@jest/types': 27.5.1
- '@types/istanbul-lib-coverage': 2.0.3
- collect-v8-coverage: 1.0.1
+ '@types/istanbul-lib-coverage': 2.0.6
+ collect-v8-coverage: 1.0.2
dev: true
/@jest/test-sequencer/24.9.0:
@@ -9904,7 +10042,7 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/test-result': 26.6.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-haste-map: 26.6.2
jest-runner: 26.6.3
jest-runtime: 26.6.3
@@ -9920,7 +10058,7 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/test-result': 27.5.1
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-haste-map: 27.5.1
jest-runtime: 27.5.1
transitivePeerDependencies:
@@ -9931,18 +10069,18 @@ packages:
resolution: {integrity: sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==}
engines: {node: '>= 6'}
dependencies:
- '@babel/core': 7.16.0
+ '@babel/core': 7.24.7
'@jest/types': 24.9.0
babel-plugin-istanbul: 5.2.0
chalk: 2.4.2
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
fast-json-stable-stringify: 2.1.0
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-haste-map: 24.9.0
jest-regex-util: 24.9.0
jest-util: 24.9.0
micromatch: 3.1.10
- pirates: 4.0.5
+ pirates: 4.0.6
realpath-native: 1.1.0
slash: 2.0.0
source-map: 0.6.1
@@ -9954,18 +10092,18 @@ packages:
resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.13.15
'@jest/types': 26.6.2
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
fast-json-stable-stringify: 2.1.0
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-haste-map: 26.6.2
jest-regex-util: 26.0.0
jest-util: 26.6.2
- micromatch: 4.0.4
- pirates: 4.0.5
+ micromatch: 4.0.7
+ pirates: 4.0.6
slash: 3.0.0
source-map: 0.6.1
write-file-atomic: 3.0.3
@@ -9976,18 +10114,18 @@ packages:
resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.13.15
'@jest/types': 27.5.1
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
fast-json-stable-stringify: 2.1.0
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-haste-map: 27.5.1
jest-regex-util: 27.5.1
jest-util: 27.5.1
- micromatch: 4.0.4
- pirates: 4.0.5
+ micromatch: 4.0.7
+ pirates: 4.0.6
slash: 3.0.0
source-map: 0.6.1
write-file-atomic: 3.0.3
@@ -9999,7 +10137,7 @@ packages:
resolution: {integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==}
engines: {node: '>= 6'}
dependencies:
- '@types/istanbul-lib-coverage': 2.0.3
+ '@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 1.1.2
'@types/yargs': 13.0.12
@@ -10007,9 +10145,9 @@ packages:
resolution: {integrity: sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==}
engines: {node: '>= 8.3'}
dependencies:
- '@types/istanbul-lib-coverage': 2.0.3
+ '@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 1.1.2
- '@types/yargs': 15.0.14
+ '@types/yargs': 15.0.19
chalk: 3.0.0
dev: false
@@ -10017,45 +10155,70 @@ packages:
resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@types/istanbul-lib-coverage': 2.0.3
- '@types/istanbul-reports': 3.0.1
- '@types/node': 17.0.18
- '@types/yargs': 15.0.14
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 17.0.45
+ '@types/yargs': 15.0.19
chalk: 4.1.2
/@jest/types/27.5.1:
resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@types/istanbul-lib-coverage': 2.0.3
- '@types/istanbul-reports': 3.0.1
- '@types/node': 17.0.18
- '@types/yargs': 16.0.4
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 17.0.45
+ '@types/yargs': 16.0.9
chalk: 4.1.2
dev: true
- /@jridgewell/resolve-uri/3.0.5:
- resolution: {integrity: sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==}
+ /@jridgewell/gen-mapping/0.3.5:
+ resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/set-array': 1.2.1
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.25
+
+ /@jridgewell/resolve-uri/3.1.2:
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
+ engines: {node: '>=6.0.0'}
+
+ /@jridgewell/set-array/1.2.1:
+ resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
+ engines: {node: '>=6.0.0'}
+
+ /@jridgewell/source-map/0.3.6:
+ resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+
+ /@jridgewell/sourcemap-codec/1.4.15:
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
- /@jridgewell/sourcemap-codec/1.4.11:
- resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==}
+ /@jridgewell/trace-mapping/0.3.25:
+ resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
- /@jridgewell/trace-mapping/0.3.4:
- resolution: {integrity: sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==}
+ /@jridgewell/trace-mapping/0.3.9:
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
dependencies:
- '@jridgewell/resolve-uri': 3.0.5
- '@jridgewell/sourcemap-codec': 1.4.11
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
+ dev: true
/@mrmlnc/readdir-enhanced/2.2.1:
resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==}
engines: {node: '>=4'}
dependencies:
- call-me-maybe: 1.0.1
+ call-me-maybe: 1.0.2
glob-to-regexp: 0.3.0
- /@next/bundle-analyzer/12.0.10:
- resolution: {integrity: sha512-POUNU5BAyJUvuMnALBFaxQvS6Rpdk2D7snHV/3Wdv2UkVX5PUPBYZc3KLdMirMQ6jPNbnvB0/lG5/LM15fHtqw==}
+ /@next/bundle-analyzer/12.3.4:
+ resolution: {integrity: sha512-eKjgRICzbLTmod0UnJcArFVs5uEAiuZwB6NCf84m+btW7jdylUVoOYf1wi5tA14xk5L9Lho7Prm6/XJ8gxYzfQ==}
dependencies:
webpack-bundle-analyzer: 4.3.0
transitivePeerDependencies:
@@ -10063,101 +10226,131 @@ packages:
- utf-8-validate
dev: true
- /@next/env/12.0.10:
- resolution: {integrity: sha512-mQVj0K6wQ5WEk/sL9SZ+mJXJUaG7el8CpZ6io1uFe9GgNTSC7EgUyNGqM6IQovIFc5ukF4O/hqsdh3S/DCgT2g==}
+ /@next/env/12.3.4:
+ resolution: {integrity: sha512-H/69Lc5Q02dq3o+dxxy5O/oNxFsZpdL6WREtOOtOM1B/weonIwDXkekr1KV5DPVPr12IHFPrMrcJQ6bgPMfn7A==}
+ dev: false
- /@next/eslint-plugin-next/12.0.10:
- resolution: {integrity: sha512-PbGRnV5HGSfRGLjf8uTh1MaWgLwnjKjWiGVjK752ifITJbZ28/5AmLAFT2shDYeux8BHgpgVll5QXu7GN3YLFw==}
+ /@next/eslint-plugin-next/12.3.4:
+ resolution: {integrity: sha512-BFwj8ykJY+zc1/jWANsDprDIu2MgwPOIKxNVnrKvPs+f5TPegrVnem8uScND+1veT4B7F6VeqgaNLFW1Hzl9Og==}
dependencies:
glob: 7.1.7
dev: true
- /@next/swc-android-arm64/12.0.10:
- resolution: {integrity: sha512-xYwXGkNhzZZsM5MD7KRwF5ZNiC8OLPtVMUiagpPnwENg8Hb0GSQo/NbYWXM8YrawEwp9LaZ7OXiuRKPh2JyBdA==}
+ /@next/swc-android-arm-eabi/12.3.4:
+ resolution: {integrity: sha512-cM42Cw6V4Bz/2+j/xIzO8nK/Q3Ly+VSlZJTa1vHzsocJRYz8KT6MrreXaci2++SIZCF1rVRCDgAg5PpqRibdIA==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@next/swc-android-arm64/12.3.4:
+ resolution: {integrity: sha512-5jf0dTBjL+rabWjGj3eghpLUxCukRhBcEJgwLedewEA/LJk2HyqCvGIwj5rH+iwmq1llCWbOky2dO3pVljrapg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
requiresBuild: true
+ dev: false
optional: true
- /@next/swc-darwin-arm64/12.0.10:
- resolution: {integrity: sha512-f2zngulkpIJKWHckhRi7X8GZ+J/tNgFF7lYIh7Qx15JH0OTBsjkqxORlkzy+VZyHJ5sWTCaI6HYYd3ow6qkEEg==}
+ /@next/swc-darwin-arm64/12.3.4:
+ resolution: {integrity: sha512-DqsSTd3FRjQUR6ao0E1e2OlOcrF5br+uegcEGPVonKYJpcr0MJrtYmPxd4v5T6UCJZ+XzydF7eQo5wdGvSZAyA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
+ dev: false
optional: true
- /@next/swc-darwin-x64/12.0.10:
- resolution: {integrity: sha512-Qykcu/gVC5oTvOQoRBhyuS5GYm5SbcgrFTsaLFkGBmEkg9eMQRiaCswk4IafpDXVzITkVFurzSM28q3tLW2qUw==}
+ /@next/swc-darwin-x64/12.3.4:
+ resolution: {integrity: sha512-PPF7tbWD4k0dJ2EcUSnOsaOJ5rhT3rlEt/3LhZUGiYNL8KvoqczFrETlUx0cUYaXe11dRA3F80Hpt727QIwByQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
requiresBuild: true
+ dev: false
+ optional: true
+
+ /@next/swc-freebsd-x64/12.3.4:
+ resolution: {integrity: sha512-KM9JXRXi/U2PUM928z7l4tnfQ9u8bTco/jb939pdFUHqc28V43Ohd31MmZD1QzEK4aFlMRaIBQOWQZh4D/E5lQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: false
optional: true
- /@next/swc-linux-arm-gnueabihf/12.0.10:
- resolution: {integrity: sha512-EhqrTFsIXAXN9B/fiiW/QKUK/lSLCXRsLalkUp58KDfMqVLLlj1ORbESAcswiNQOChLuHQSldGEEtOBPQZcd9A==}
+ /@next/swc-linux-arm-gnueabihf/12.3.4:
+ resolution: {integrity: sha512-3zqD3pO+z5CZyxtKDTnOJ2XgFFRUBciOox6EWkoZvJfc9zcidNAQxuwonUeNts6Xbm8Wtm5YGIRC0x+12YH7kw==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
- /@next/swc-linux-arm64-gnu/12.0.10:
- resolution: {integrity: sha512-kqGtC72g3+JYXZbY2ca6digXR5U6AQ6Dzv4eAxYluMePLHjI/Xye1mf9dwVsgmeXfrD/IRDp5K/3A6UNvBm4oQ==}
+ /@next/swc-linux-arm64-gnu/12.3.4:
+ resolution: {integrity: sha512-kiX0vgJGMZVv+oo1QuObaYulXNvdH/IINmvdZnVzMO/jic/B8EEIGlZ8Bgvw8LCjH3zNVPO3mGrdMvnEEPEhKA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
- /@next/swc-linux-arm64-musl/12.0.10:
- resolution: {integrity: sha512-bG9zTSNwnSgc1Un/7oz1ZVN4UeXsTWrsQhAGWU78lLLCn4Zj9HQoUCRCGLt0OVs2DBZ+WC8CzzFliQ1SKipVbg==}
+ /@next/swc-linux-arm64-musl/12.3.4:
+ resolution: {integrity: sha512-EETZPa1juczrKLWk5okoW2hv7D7WvonU+Cf2CgsSoxgsYbUCZ1voOpL4JZTOb6IbKMDo6ja+SbY0vzXZBUMvkQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
- /@next/swc-linux-x64-gnu/12.0.10:
- resolution: {integrity: sha512-c79PcfWtyThiYRa1+3KVfDq0zXaI8o1d6dQWNVqDrtLz5HKM/rbjLdvoNuxDwUeZhxI/d9CtyH6GbuKPw5l/5A==}
+ /@next/swc-linux-x64-gnu/12.3.4:
+ resolution: {integrity: sha512-4csPbRbfZbuWOk3ATyWcvVFdD9/Rsdq5YHKvRuEni68OCLkfy4f+4I9OBpyK1SKJ00Cih16NJbHE+k+ljPPpag==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
- /@next/swc-linux-x64-musl/12.0.10:
- resolution: {integrity: sha512-g/scgn+21/MLfizOCZOZt+MxNj2/8Tdlwjvy+QZcSUPZRUI2Y5o3HwBvI1f/bSci+NGRU+bUAO0NFtRJ9MzH5w==}
+ /@next/swc-linux-x64-musl/12.3.4:
+ resolution: {integrity: sha512-YeBmI+63Ro75SUiL/QXEVXQ19T++58aI/IINOyhpsRL1LKdyfK/35iilraZEFz9bLQrwy1LYAR5lK200A9Gjbg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
- /@next/swc-win32-arm64-msvc/12.0.10:
- resolution: {integrity: sha512-gl6B/ravwMeY5Nv4Il2/ARYJQ6u+KPRwGMjS1ZrNudIKlNn4YBeXh5A4cIVm+dHaff6/O/lGOa5/SUYDMZpkww==}
+ /@next/swc-win32-arm64-msvc/12.3.4:
+ resolution: {integrity: sha512-Sd0qFUJv8Tj0PukAYbCCDbmXcMkbIuhnTeHm9m4ZGjCf6kt7E/RMs55Pd3R5ePjOkN7dJEuxYBehawTR/aPDSQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
requiresBuild: true
+ dev: false
optional: true
- /@next/swc-win32-ia32-msvc/12.0.10:
- resolution: {integrity: sha512-7RVpZ3tSThC6j+iZB0CUYmFiA3kXmN+pE7QcfyAxFaflKlaZoWNMKHIEZDuxSJc6YmQ6kyxsjqxVay2F5+/YCg==}
+ /@next/swc-win32-ia32-msvc/12.3.4:
+ resolution: {integrity: sha512-rt/vv/vg/ZGGkrkKcuJ0LyliRdbskQU+91bje+PgoYmxTZf/tYs6IfbmgudBJk6gH3QnjHWbkphDdRQrseRefQ==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
requiresBuild: true
+ dev: false
optional: true
- /@next/swc-win32-x64-msvc/12.0.10:
- resolution: {integrity: sha512-oUIWRKd24jFLRWUYO1CZmML5+32BcpVfqhimGaaZIXcOkfQW+iqiAzdqsv688zaGtyKGeB9ZtiK3NDf+Q0v+Vw==}
+ /@next/swc-win32-x64-msvc/12.3.4:
+ resolution: {integrity: sha512-DQ20JEfTBZAgF8QCjYfJhv2/279M6onxFjdG/+5B0Cyj00/EdBxiWb2eGGFgQhrBbNv/lsvzFbbi0Ptf8Vw/bg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
requiresBuild: true
+ dev: false
optional: true
/@nicolo-ribaudo/chokidar-2/2.1.8-no-fsevents.3:
@@ -10186,19 +10379,18 @@ packages:
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.13.0
+ fastq: 1.17.1
- /@npmcli/fs/1.1.0:
- resolution: {integrity: sha512-VhP1qZLXcrXRIaPoqb4YA55JQxLNF3jNR4T55IdOJa3+IFJKNYHtPvtXx8slmeMavj37vCzCfrqQM1vWLsYKLA==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16}
- deprecated: this version had an improper engines field added, update to 1.1.1
+ /@npmcli/fs/1.1.1:
+ resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==}
dependencies:
- '@gar/promisify': 1.1.2
- semver: 7.3.5
+ '@gar/promisify': 1.1.3
+ semver: 7.6.2
/@npmcli/move-file/1.1.2:
resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==}
engines: {node: '>=10'}
+ deprecated: This functionality has been moved to @npmcli/fs
dependencies:
mkdirp: 1.0.4
rimraf: 3.0.2
@@ -10230,21 +10422,21 @@ packages:
optional: true
dependencies:
ansi-html: 0.0.7
- error-stack-parser: 2.0.6
+ error-stack-parser: 2.1.4
html-entities: 1.4.0
native-url: 0.2.6
react-refresh: 0.8.3
schema-utils: 2.7.1
- source-map: 0.7.3
+ source-map: 0.7.4
webpack: 4.44.2
webpack-dev-server: 3.11.1_webpack@4.44.2
- /@polka/url/1.0.0-next.21:
- resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
+ /@polka/url/1.0.0-next.25:
+ resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
dev: true
- /@popperjs/core/2.10.2:
- resolution: {integrity: sha512-IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ==}
+ /@popperjs/core/2.11.8:
+ resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
dev: false
/@reach/alert/0.13.2:
@@ -10255,8 +10447,8 @@ packages:
dependencies:
'@reach/utils': 0.13.2
'@reach/visually-hidden': 0.13.2
- prop-types: 15.7.2
- tslib: 2.3.1
+ prop-types: 15.8.1
+ tslib: 2.6.3
dev: false
/@reach/alert/0.13.2_sfoxds7t5ydpegc3knd667wn6m:
@@ -10267,10 +10459,10 @@ packages:
dependencies:
'@reach/utils': 0.13.2_sfoxds7t5ydpegc3knd667wn6m
'@reach/visually-hidden': 0.13.2_sfoxds7t5ydpegc3knd667wn6m
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- tslib: 2.3.1
+ tslib: 2.6.3
dev: false
/@reach/router/1.3.4_sfoxds7t5ydpegc3knd667wn6m:
@@ -10279,9 +10471,9 @@ packages:
react: 15.x || 16.x || 16.4.0-alpha.0911da3
react-dom: 15.x || 16.x || 16.4.0-alpha.0911da3
dependencies:
- create-react-context: 0.3.0_mv67koxdvxhyejehvpcoenu3ai
+ create-react-context: 0.3.0_at7mkepldmzoo6silmqc5bca74
invariant: 2.2.4
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-lifecycles-compat: 3.0.4
@@ -10293,9 +10485,9 @@ packages:
react: 15.x || 16.x || 16.4.0-alpha.0911da3
react-dom: 15.x || 16.x || 16.4.0-alpha.0911da3
dependencies:
- create-react-context: 0.3.0_uutjjb2r36qagpytglxm7vtgnq
+ create-react-context: 0.3.0_4vyaxm4rsh2mpfdenvlqy7kmya
invariant: 2.2.4
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
react-lifecycles-compat: 3.0.4
@@ -10307,9 +10499,9 @@ packages:
react: 15.x || 16.x || 16.4.0-alpha.0911da3
react-dom: 15.x || 16.x || 16.4.0-alpha.0911da3
dependencies:
- create-react-context: 0.3.0_uutjjb2r36qagpytglxm7vtgnq
+ create-react-context: 0.3.0_4vyaxm4rsh2mpfdenvlqy7kmya
invariant: 2.2.4
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
react-dom: 17.0.2_react@17.0.2
react-lifecycles-compat: 3.0.4
@@ -10321,8 +10513,8 @@ packages:
react: ^16.8.0 || 17.x
react-dom: ^16.8.0 || 17.x
dependencies:
- '@types/warning': 3.0.0
- tslib: 2.3.1
+ '@types/warning': 3.0.3
+ tslib: 2.6.3
warning: 4.0.3
dev: false
@@ -10332,10 +10524,10 @@ packages:
react: ^16.8.0 || 17.x
react-dom: ^16.8.0 || 17.x
dependencies:
- '@types/warning': 3.0.0
+ '@types/warning': 3.0.3
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- tslib: 2.3.1
+ tslib: 2.6.3
warning: 4.0.3
dev: false
@@ -10345,8 +10537,8 @@ packages:
react: ^16.8.0 || 17.x
react-dom: ^16.8.0 || 17.x
dependencies:
- prop-types: 15.7.2
- tslib: 2.3.1
+ prop-types: 15.8.1
+ tslib: 2.6.3
dev: false
/@reach/visually-hidden/0.13.2_sfoxds7t5ydpegc3knd667wn6m:
@@ -10355,10 +10547,10 @@ packages:
react: ^16.8.0 || 17.x
react-dom: ^16.8.0 || 17.x
dependencies:
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- tslib: 2.3.1
+ tslib: 2.6.3
dev: false
/@rollup/plugin-commonjs/11.1.0_rollup@1.32.1:
@@ -10370,10 +10562,10 @@ packages:
'@rollup/pluginutils': 3.1.0_rollup@1.32.1
commondir: 1.0.1
estree-walker: 1.0.1
- glob: 7.2.0
+ glob: 7.2.3
is-reference: 1.2.1
- magic-string: 0.25.7
- resolve: 1.20.0
+ magic-string: 0.25.9
+ resolve: 1.22.8
rollup: 1.32.1
dev: true
@@ -10394,9 +10586,9 @@ packages:
dependencies:
'@rollup/pluginutils': 3.1.0_rollup@1.32.1
'@types/resolve': 0.0.8
- builtin-modules: 3.2.0
+ builtin-modules: 3.3.0
is-module: 1.0.0
- resolve: 1.20.0
+ resolve: 1.22.8
rollup: 1.32.1
dev: true
@@ -10408,9 +10600,9 @@ packages:
dependencies:
'@rollup/pluginutils': 3.1.0_rollup@1.32.1
'@types/resolve': 0.0.8
- builtin-modules: 3.2.0
+ builtin-modules: 3.3.0
is-module: 1.0.0
- resolve: 1.20.0
+ resolve: 1.22.8
rollup: 1.32.1
/@rollup/plugin-replace/2.4.2_rollup@1.32.1:
@@ -10419,7 +10611,7 @@ packages:
rollup: ^1.20.0 || ^2.0.0
dependencies:
'@rollup/pluginutils': 3.1.0_rollup@1.32.1
- magic-string: 0.25.7
+ magic-string: 0.25.9
rollup: 1.32.1
/@rollup/pluginutils/3.1.0_rollup@1.32.1:
@@ -10430,21 +10622,21 @@ packages:
dependencies:
'@types/estree': 0.0.39
estree-walker: 1.0.1
- picomatch: 2.3.0
+ picomatch: 2.3.1
rollup: 1.32.1
- /@rushstack/eslint-patch/1.1.0:
- resolution: {integrity: sha512-JLo+Y592QzIE+q7Dl2pMUtt4q8SKYI5jDrZxrozEQxnGVOyYE+GWK9eLkwTaeN9DDctlaRAQ3TBmzZ1qdLE30A==}
+ /@rushstack/eslint-patch/1.10.3:
+ resolution: {integrity: sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg==}
dev: true
- /@sideway/address/4.1.4:
- resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
+ /@sideway/address/4.1.5:
+ resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
dependencies:
'@hapi/hoek': 9.3.0
dev: true
- /@sideway/formula/3.0.0:
- resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==}
+ /@sideway/formula/3.0.1:
+ resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
dev: true
/@sideway/pinpoint/2.0.0:
@@ -10456,20 +10648,38 @@ packages:
engines: {node: '>=6'}
dev: true
- /@sinonjs/commons/1.8.3:
- resolution: {integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==}
+ /@sinonjs/commons/1.8.6:
+ resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==}
+ dependencies:
+ type-detect: 4.0.8
+
+ /@sinonjs/commons/3.0.1:
+ resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
dependencies:
type-detect: 4.0.8
+ dev: false
+
+ /@sinonjs/fake-timers/11.2.2:
+ resolution: {integrity: sha512-G2piCSxQ7oWOxwGSAyFHfPIsyeJGXYtc6mFbnFA+kRXkiEnTl8c/8jul2S329iFBnDI9HGoeWWAZvuvOkZccgw==}
+ dependencies:
+ '@sinonjs/commons': 3.0.1
+ dev: false
/@sinonjs/fake-timers/6.0.1:
resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.6
+
+ /@sinonjs/fake-timers/7.1.2:
+ resolution: {integrity: sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg==}
+ dependencies:
+ '@sinonjs/commons': 1.8.6
+ dev: false
/@sinonjs/fake-timers/8.1.0:
resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.6
dev: true
/@sinonjs/formatio/2.0.0:
@@ -10481,44 +10691,44 @@ packages:
/@sinonjs/formatio/3.2.2:
resolution: {integrity: sha512-B8SEsgd8gArBLMD6zpRw3juQ2FVSsmdd7qlevyDqzS9WTCtvF55/gAL+h6gue8ZvPYcdiPdvueM/qm//9XzyTQ==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.6
'@sinonjs/samsam': 3.3.3
dev: false
/@sinonjs/samsam/3.3.3:
resolution: {integrity: sha512-bKCMKZvWIjYD0BLGnNrxVuw4dkWCYsLqFOUWw8VgKF/+5Y+mE7LfHWPIYoDXowH+3a9LsWDMo0uAP8YDosPvHQ==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.6
array-from: 2.1.1
lodash: 4.17.21
dev: false
- /@sinonjs/samsam/5.3.1:
- resolution: {integrity: sha512-1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg==}
+ /@sinonjs/samsam/6.1.3:
+ resolution: {integrity: sha512-nhOb2dWPeb1sd3IQXL/dVPnKHDOAFfvichtBf4xV00/rU1QbPCQqKMbvIheIjqwVjh7qIgf2AHTHi391yMOMpQ==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.6
lodash.get: 4.4.2
type-detect: 4.0.8
dev: false
- /@sinonjs/text-encoding/0.7.1:
- resolution: {integrity: sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==}
+ /@sinonjs/text-encoding/0.7.2:
+ resolution: {integrity: sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==}
dev: false
- /@storybook/addon-actions/5.3.21_oh4n666hh2uxbpcfsug7rggmyu:
+ /@storybook/addon-actions/5.3.21_nf4je3trjzgi35stey6r6fj7ei:
resolution: {integrity: sha512-6SAF/j8UBZaAbRz/rYUlcCXda+c4LQvvNlbVJc9GHjNNNMJQQVc3/EU+M7PyFz6uDUxudAW1+AFchGk04ACJ2g==}
dependencies:
'@storybook/addons': 5.3.21_react-dom@17.0.2
'@storybook/api': 5.3.21_react-dom@17.0.2
'@storybook/client-api': 5.3.21_react-dom@17.0.2
- '@storybook/components': 5.3.21_@types+react@17.0.35
+ '@storybook/components': 5.3.21_p3tsemegdondav4hoi64cndgey
'@storybook/core-events': 5.3.21
'@storybook/theming': 5.3.21_zkbncb2mrwigeq3keybbaytzya
- core-js: 3.19.1
+ core-js: 3.37.1
fast-deep-equal: 2.0.1
global: 4.4.0
polished: 3.7.2
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
react-inspector: 4.0.1_react@16.14.0
uuid: 3.4.0
@@ -10526,6 +10736,7 @@ packages:
- '@types/react'
- react-dom
- regenerator-runtime
+ - supports-color
dev: true
/@storybook/addon-links/5.3.21_sfoxds7t5ydpegc3knd667wn6m:
@@ -10538,63 +10749,83 @@ packages:
'@storybook/core-events': 5.3.21
'@storybook/csf': 0.0.1
'@storybook/router': 5.3.21_sfoxds7t5ydpegc3knd667wn6m
- core-js: 3.19.1
+ core-js: 3.37.1
global: 4.4.0
- prop-types: 15.7.2
- qs: 6.10.1
+ prop-types: 15.8.1
+ qs: 6.12.1
react: 17.0.2
ts-dedent: 1.2.0
transitivePeerDependencies:
- react-dom
- regenerator-runtime
+ - supports-color
dev: true
- /@storybook/addons/5.3.21_react-dom@17.0.2:
+ /@storybook/addons/5.3.21_gyvc7xfhwic4jpc4icj44bd6hq:
resolution: {integrity: sha512-Ji/21WADTLVbTbiKcZ64BcL0Es+h1Afxx3kNmGJqPSTUYroCwIFCT9mUzCqU6G+YyWaISAmTii5UJkTwMkChwA==}
dependencies:
- '@storybook/api': 5.3.21_react-dom@17.0.2
+ '@storybook/api': 5.3.21_gyvc7xfhwic4jpc4icj44bd6hq
'@storybook/channels': 5.3.21
'@storybook/client-logger': 5.3.21
'@storybook/core-events': 5.3.21
- core-js: 3.19.1
+ core-js: 3.37.1
global: 4.4.0
util-deprecate: 1.0.2
transitivePeerDependencies:
- react-dom
- regenerator-runtime
+ - supports-color
dev: true
- /@storybook/addons/5.3.21_tywxhxqgoy4ic6dja7arbokhba:
+ /@storybook/addons/5.3.21_h5gajyuiuuyogiozw5uhcaf3gm:
resolution: {integrity: sha512-Ji/21WADTLVbTbiKcZ64BcL0Es+h1Afxx3kNmGJqPSTUYroCwIFCT9mUzCqU6G+YyWaISAmTii5UJkTwMkChwA==}
dependencies:
- '@storybook/api': 5.3.21_tywxhxqgoy4ic6dja7arbokhba
+ '@storybook/api': 5.3.21_h5gajyuiuuyogiozw5uhcaf3gm
'@storybook/channels': 5.3.21
'@storybook/client-logger': 5.3.21
'@storybook/core-events': 5.3.21
- core-js: 3.19.1
+ core-js: 3.37.1
global: 4.4.0
util-deprecate: 1.0.2
transitivePeerDependencies:
- react-dom
- regenerator-runtime
+ - supports-color
dev: true
- /@storybook/addons/5.3.21_uzyzkshs32agvq3l4v3l75pmia:
+ /@storybook/addons/5.3.21_react-dom@17.0.2:
resolution: {integrity: sha512-Ji/21WADTLVbTbiKcZ64BcL0Es+h1Afxx3kNmGJqPSTUYroCwIFCT9mUzCqU6G+YyWaISAmTii5UJkTwMkChwA==}
dependencies:
- '@storybook/api': 5.3.21_uzyzkshs32agvq3l4v3l75pmia
+ '@storybook/api': 5.3.21_react-dom@17.0.2
'@storybook/channels': 5.3.21
'@storybook/client-logger': 5.3.21
'@storybook/core-events': 5.3.21
- core-js: 3.19.1
+ core-js: 3.37.1
global: 4.4.0
util-deprecate: 1.0.2
transitivePeerDependencies:
- react-dom
- regenerator-runtime
+ - supports-color
dev: true
- /@storybook/api/5.3.21_react-dom@17.0.2:
+ /@storybook/addons/5.3.22_react-dom@17.0.2:
+ resolution: {integrity: sha512-GiQD1r4UQxzjrDMdVwBCxgJ5DdmtD0PAwX1ZIxqJYLLh+NnMIIh2gGSsXJDxMrN0FfLGYhRfgXjRChn1Cuaf8A==}
+ dependencies:
+ '@storybook/api': 5.3.22_react-dom@17.0.2
+ '@storybook/channels': 5.3.22
+ '@storybook/client-logger': 5.3.22
+ '@storybook/core-events': 5.3.22
+ core-js: 3.37.1
+ global: 4.4.0
+ util-deprecate: 1.0.2
+ transitivePeerDependencies:
+ - react-dom
+ - regenerator-runtime
+ - supports-color
+ dev: true
+
+ /@storybook/api/5.3.21_gyvc7xfhwic4jpc4icj44bd6hq:
resolution: {integrity: sha512-K1o4an/Rx8daKRDooks6qzN6ZGyqizeacZZbair3F8CsSfTgrr2zCcf9pgKojLQa9koEmMHlcdb2KnS+GwPEgA==}
peerDependencies:
regenerator-runtime: '*'
@@ -10606,81 +10837,114 @@ packages:
'@storybook/csf': 0.0.1
'@storybook/router': 5.3.21_zkbncb2mrwigeq3keybbaytzya
'@storybook/theming': 5.3.21_zkbncb2mrwigeq3keybbaytzya
- '@types/reach__router': 1.3.9
- core-js: 3.19.1
+ '@types/reach__router': 1.3.15
+ core-js: 3.37.1
fast-deep-equal: 2.0.1
global: 4.4.0
lodash: 4.17.21
memoizerific: 1.11.3
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
- semver: 6.3.0
+ regenerator-runtime: 0.13.11
+ semver: 6.3.1
shallow-equal: 1.2.1
- store2: 2.12.0
+ store2: 2.14.3
telejson: 3.3.0
util-deprecate: 1.0.2
transitivePeerDependencies:
- react-dom
+ - supports-color
dev: true
- /@storybook/api/5.3.21_tywxhxqgoy4ic6dja7arbokhba:
+ /@storybook/api/5.3.21_h5gajyuiuuyogiozw5uhcaf3gm:
resolution: {integrity: sha512-K1o4an/Rx8daKRDooks6qzN6ZGyqizeacZZbair3F8CsSfTgrr2zCcf9pgKojLQa9koEmMHlcdb2KnS+GwPEgA==}
peerDependencies:
regenerator-runtime: '*'
dependencies:
- '@reach/router': 1.3.4_zkbncb2mrwigeq3keybbaytzya
+ '@reach/router': 1.3.4_wcqkhtmu7mswc6yz4uyexck3ty
'@storybook/channels': 5.3.21
'@storybook/client-logger': 5.3.21
'@storybook/core-events': 5.3.21
'@storybook/csf': 0.0.1
- '@storybook/router': 5.3.21_zkbncb2mrwigeq3keybbaytzya
- '@storybook/theming': 5.3.21_zkbncb2mrwigeq3keybbaytzya
- '@types/reach__router': 1.3.9
- core-js: 3.19.1
+ '@storybook/router': 5.3.21_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/theming': 5.3.21_wcqkhtmu7mswc6yz4uyexck3ty
+ '@types/reach__router': 1.3.15
+ core-js: 3.37.1
fast-deep-equal: 2.0.1
global: 4.4.0
lodash: 4.17.21
memoizerific: 1.11.3
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
- regenerator-runtime: 0.13.9
- semver: 6.3.0
+ regenerator-runtime: 0.13.11
+ semver: 6.3.1
shallow-equal: 1.2.1
- store2: 2.12.0
+ store2: 2.14.3
telejson: 3.3.0
util-deprecate: 1.0.2
transitivePeerDependencies:
- react-dom
+ - supports-color
dev: true
- /@storybook/api/5.3.21_uzyzkshs32agvq3l4v3l75pmia:
+ /@storybook/api/5.3.21_react-dom@17.0.2:
resolution: {integrity: sha512-K1o4an/Rx8daKRDooks6qzN6ZGyqizeacZZbair3F8CsSfTgrr2zCcf9pgKojLQa9koEmMHlcdb2KnS+GwPEgA==}
peerDependencies:
regenerator-runtime: '*'
dependencies:
- '@reach/router': 1.3.4_wcqkhtmu7mswc6yz4uyexck3ty
+ '@reach/router': 1.3.4_zkbncb2mrwigeq3keybbaytzya
'@storybook/channels': 5.3.21
'@storybook/client-logger': 5.3.21
'@storybook/core-events': 5.3.21
'@storybook/csf': 0.0.1
- '@storybook/router': 5.3.21_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/theming': 5.3.21_wcqkhtmu7mswc6yz4uyexck3ty
- '@types/reach__router': 1.3.9
- core-js: 3.19.1
+ '@storybook/router': 5.3.21_zkbncb2mrwigeq3keybbaytzya
+ '@storybook/theming': 5.3.21_zkbncb2mrwigeq3keybbaytzya
+ '@types/reach__router': 1.3.15
+ core-js: 3.37.1
fast-deep-equal: 2.0.1
global: 4.4.0
lodash: 4.17.21
memoizerific: 1.11.3
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
- regenerator-runtime: 0.13.9
- semver: 6.3.0
+ semver: 6.3.1
+ shallow-equal: 1.2.1
+ store2: 2.14.3
+ telejson: 3.3.0
+ util-deprecate: 1.0.2
+ transitivePeerDependencies:
+ - react-dom
+ - supports-color
+ dev: true
+
+ /@storybook/api/5.3.22_react-dom@17.0.2:
+ resolution: {integrity: sha512-yNs4nZ63V1q9Gr1YMQ2i1UrIt+4U3LwsN0IBOYxZ7otfxYRIEBGUqlrlDXdYlgf5VmL8HkwB9n13EEdPu2Y1LA==}
+ peerDependencies:
+ regenerator-runtime: '*'
+ dependencies:
+ '@reach/router': 1.3.4_zkbncb2mrwigeq3keybbaytzya
+ '@storybook/channels': 5.3.22
+ '@storybook/client-logger': 5.3.22
+ '@storybook/core-events': 5.3.22
+ '@storybook/csf': 0.0.1
+ '@storybook/router': 5.3.22_zkbncb2mrwigeq3keybbaytzya
+ '@storybook/theming': 5.3.22_zkbncb2mrwigeq3keybbaytzya
+ '@types/reach__router': 1.3.15
+ core-js: 3.37.1
+ fast-deep-equal: 2.0.1
+ global: 4.4.0
+ lodash: 4.17.21
+ memoizerific: 1.11.3
+ prop-types: 15.8.1
+ react: 16.14.0
+ semver: 6.3.1
shallow-equal: 1.2.1
- store2: 2.12.0
+ store2: 2.14.3
telejson: 3.3.0
util-deprecate: 1.0.2
transitivePeerDependencies:
- react-dom
+ - supports-color
dev: true
/@storybook/channel-postmessage/5.3.21:
@@ -10688,7 +10952,7 @@ packages:
dependencies:
'@storybook/channels': 5.3.21
'@storybook/client-logger': 5.3.21
- core-js: 3.19.1
+ core-js: 3.37.1
global: 4.4.0
telejson: 3.3.0
dev: true
@@ -10696,84 +10960,133 @@ packages:
/@storybook/channels/5.3.21:
resolution: {integrity: sha512-OXoFs9XtBVg/cCk6lYMrxkzaNlJRf54ABdorp7YAAj7S9tRL1JxOZHxmjNQwEoiRvssmem2rAWtEAxfuEANsAA==}
dependencies:
- core-js: 3.19.1
+ core-js: 3.37.1
dev: true
- /@storybook/client-api/5.3.21_react-dom@17.0.2:
+ /@storybook/channels/5.3.22:
+ resolution: {integrity: sha512-g09qHs5nzn0dK8n65mISwYKC5fZ9OC+ZUIweSX2BHleiuRbYx5xXqptgp+CBLei1Nqu/7GlOM6UFfWQGIsa3GQ==}
+ dependencies:
+ core-js: 3.37.1
+ dev: true
+
+ /@storybook/client-api/5.3.21_gyvc7xfhwic4jpc4icj44bd6hq:
resolution: {integrity: sha512-vS4DfA2Avvl7JNQymO4e3RUNoTWIGVfZJ70Irnd6PTAZNojbCXTYuigDavrmyf83F3g5rQpwmSAPjuoi/X/FRA==}
dependencies:
- '@storybook/addons': 5.3.21_react-dom@17.0.2
+ '@storybook/addons': 5.3.21_gyvc7xfhwic4jpc4icj44bd6hq
'@storybook/channel-postmessage': 5.3.21
'@storybook/channels': 5.3.21
'@storybook/client-logger': 5.3.21
'@storybook/core-events': 5.3.21
'@storybook/csf': 0.0.1
- '@types/webpack-env': 1.16.3
- core-js: 3.19.1
+ '@types/webpack-env': 1.18.5
+ core-js: 3.37.1
eventemitter3: 4.0.7
global: 4.4.0
is-plain-object: 3.0.1
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.10.1
+ qs: 6.12.1
stable: 0.1.8
ts-dedent: 1.2.0
util-deprecate: 1.0.2
transitivePeerDependencies:
- react-dom
- regenerator-runtime
+ - supports-color
dev: true
- /@storybook/client-api/5.3.21_tywxhxqgoy4ic6dja7arbokhba:
+ /@storybook/client-api/5.3.21_react-dom@17.0.2:
resolution: {integrity: sha512-vS4DfA2Avvl7JNQymO4e3RUNoTWIGVfZJ70Irnd6PTAZNojbCXTYuigDavrmyf83F3g5rQpwmSAPjuoi/X/FRA==}
dependencies:
- '@storybook/addons': 5.3.21_tywxhxqgoy4ic6dja7arbokhba
+ '@storybook/addons': 5.3.21_react-dom@17.0.2
'@storybook/channel-postmessage': 5.3.21
'@storybook/channels': 5.3.21
'@storybook/client-logger': 5.3.21
'@storybook/core-events': 5.3.21
'@storybook/csf': 0.0.1
- '@types/webpack-env': 1.16.3
- core-js: 3.19.1
+ '@types/webpack-env': 1.18.5
+ core-js: 3.37.1
eventemitter3: 4.0.7
global: 4.4.0
is-plain-object: 3.0.1
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.10.1
+ qs: 6.12.1
stable: 0.1.8
ts-dedent: 1.2.0
util-deprecate: 1.0.2
transitivePeerDependencies:
- react-dom
- regenerator-runtime
+ - supports-color
dev: true
/@storybook/client-logger/5.3.21:
resolution: {integrity: sha512-OzQkwpZ5SK9cXD9Mv6lxPGPot+hSZvnkEW12kpt1AHfJz4ET26YTDOI3oetPsjfRJo6qYLeQX8+wF7rklfXbzA==}
dependencies:
- core-js: 3.19.1
+ core-js: 3.37.1
+ dev: true
+
+ /@storybook/client-logger/5.3.22:
+ resolution: {integrity: sha512-kcAm56izhmN3ulOJf0YRPNSmG9OUUqSfFx5K3hrBUaSImpBU6XTweFLsPhcXK77RTVpdf+aumkw4prEyicJzww==}
+ dependencies:
+ core-js: 3.37.1
+ dev: true
+
+ /@storybook/components/5.3.21_p3tsemegdondav4hoi64cndgey:
+ resolution: {integrity: sha512-42QQk6qZl6wrtajP8yNCfmNS2t8Iod5QY+4V/l6iNnnT9O+j6cWOlnO+ZyvjNv0Xm0zIOt+VyVjdkKh8FUjQmA==}
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ dependencies:
+ '@storybook/client-logger': 5.3.21
+ '@storybook/theming': 5.3.21_zkbncb2mrwigeq3keybbaytzya
+ '@types/react-syntax-highlighter': 11.0.4
+ '@types/react-textarea-autosize': 4.3.6
+ core-js: 3.37.1
+ global: 4.4.0
+ lodash: 4.17.21
+ markdown-to-jsx: 6.11.4_react@16.14.0
+ memoizerific: 1.11.3
+ polished: 3.7.2
+ popper.js: 1.16.1
+ prop-types: 15.8.1
+ react: 16.14.0
+ react-dom: 17.0.2_react@17.0.2
+ react-focus-lock: 2.12.1_nhfnajythmqulrdwzj5xx6c5qy
+ react-helmet-async: 1.3.0_zkbncb2mrwigeq3keybbaytzya
+ react-popper-tooltip: 2.11.1_zkbncb2mrwigeq3keybbaytzya
+ react-syntax-highlighter: 11.0.3_react@16.14.0
+ react-textarea-autosize: 7.1.2_react@16.14.0
+ simplebar-react: 1.2.3_zkbncb2mrwigeq3keybbaytzya
+ ts-dedent: 1.2.0
+ transitivePeerDependencies:
+ - '@types/react'
+ - supports-color
dev: true
- /@storybook/components/5.3.21_@types+react@17.0.35:
+ /@storybook/components/5.3.21_qdqosj7atzew5acax3ne2jqdk4:
resolution: {integrity: sha512-42QQk6qZl6wrtajP8yNCfmNS2t8Iod5QY+4V/l6iNnnT9O+j6cWOlnO+ZyvjNv0Xm0zIOt+VyVjdkKh8FUjQmA==}
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
dependencies:
'@storybook/client-logger': 5.3.21
'@storybook/theming': 5.3.21_wcqkhtmu7mswc6yz4uyexck3ty
'@types/react-syntax-highlighter': 11.0.4
'@types/react-textarea-autosize': 4.3.6
- core-js: 3.19.1
+ core-js: 3.37.1
global: 4.4.0
lodash: 4.17.21
markdown-to-jsx: 6.11.4_react@16.14.0
memoizerific: 1.11.3
polished: 3.7.2
popper.js: 1.16.1
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- react-focus-lock: 2.6.0_3f5okroqb6j7hwu5ne6ch3trz4
- react-helmet-async: 1.1.2_wcqkhtmu7mswc6yz4uyexck3ty
+ react-focus-lock: 2.12.1_nhfnajythmqulrdwzj5xx6c5qy
+ react-helmet-async: 1.3.0_wcqkhtmu7mswc6yz4uyexck3ty
react-popper-tooltip: 2.11.1_wcqkhtmu7mswc6yz4uyexck3ty
react-syntax-highlighter: 11.0.3_react@16.14.0
react-textarea-autosize: 7.1.2_react@16.14.0
@@ -10781,15 +11094,22 @@ packages:
ts-dedent: 1.2.0
transitivePeerDependencies:
- '@types/react'
+ - supports-color
dev: true
/@storybook/core-events/5.3.21:
resolution: {integrity: sha512-/Zsm1sKAh6pzQv8jQUmuhM7nuM01ZljIRKy8p2HjPNlMjDB5yaRkBfyeAUXUg+qXNI6aHVWa4jGdPEdwwY4oLA==}
dependencies:
- core-js: 3.19.1
+ core-js: 3.37.1
+ dev: true
+
+ /@storybook/core-events/5.3.22:
+ resolution: {integrity: sha512-dGRIMwbX47dTBe5Bc9jI9+iABwSFgQPvZXb56uvPsNBUd7/fDfryqSVrc/YfiQzhs0YS1IN6NCKEbOGbNRbpvg==}
+ dependencies:
+ core-js: 3.37.1
dev: true
- /@storybook/core/5.3.21_sqzbkbjhjav7mcfj63cxu4z4tu:
+ /@storybook/core/5.3.21_bh4sj4sfymj237s7zcvgwvokc4:
resolution: {integrity: sha512-plD47WIsn/JoyRJDOpmH7N7mEMo/jiA8ZlOitLW55zYvzUn8UrVpRFpMYo91OJxiCT6JFoaEh3XtNdhbgUwnPA==}
peerDependencies:
'@babel/core': '*'
@@ -10797,82 +11117,82 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@babel/core': 7.16.0
- '@babel/plugin-proposal-class-properties': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0
- '@babel/plugin-transform-react-constant-elements': 7.16.0_@babel+core@7.16.0
- '@babel/preset-env': 7.16.4_@babel+core@7.16.0
- '@storybook/addons': 5.3.21_tywxhxqgoy4ic6dja7arbokhba
+ '@babel/core': 7.13.15
+ '@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.13.15
+ '@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.13.15
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.13.15
+ '@babel/plugin-transform-react-constant-elements': 7.13.13_@babel+core@7.13.15
+ '@babel/preset-env': 7.13.15_@babel+core@7.13.15
+ '@storybook/addons': 5.3.21_gyvc7xfhwic4jpc4icj44bd6hq
'@storybook/channel-postmessage': 5.3.21
- '@storybook/client-api': 5.3.21_tywxhxqgoy4ic6dja7arbokhba
+ '@storybook/client-api': 5.3.21_gyvc7xfhwic4jpc4icj44bd6hq
'@storybook/client-logger': 5.3.21
'@storybook/core-events': 5.3.21
'@storybook/csf': 0.0.1
'@storybook/node-logger': 5.3.21
'@storybook/router': 5.3.21_sfoxds7t5ydpegc3knd667wn6m
'@storybook/theming': 5.3.21_sfoxds7t5ydpegc3knd667wn6m
- '@storybook/ui': 5.3.21_@types+react@17.0.35
+ '@storybook/ui': 5.3.21_@types+react@16.14.60
airbnb-js-shims: 2.2.1
ansi-to-html: 0.6.15
autoprefixer: 9.8.8
- babel-loader: 8.2.3_@babel+core@7.16.0
+ babel-loader: 8.2.2_@babel+core@7.13.15
babel-plugin-add-react-displayname: 0.0.5
babel-plugin-emotion: 10.2.2
babel-plugin-macros: 2.8.0
- babel-preset-minify: 0.5.1
+ babel-preset-minify: 0.5.2
boxen: 4.2.0
case-sensitive-paths-webpack-plugin: 2.4.0
chalk: 3.0.0
cli-table3: 0.5.1
commander: 4.1.1
- core-js: 3.19.1
+ core-js: 3.37.1
corejs-upgrade-webpack-plugin: 2.2.0
- css-loader: 3.6.0_webpack@4.46.0
- detect-port: 1.3.0
- dotenv-webpack: 1.8.0_webpack@4.46.0
+ css-loader: 3.6.0_webpack@4.42.0
+ detect-port: 1.6.1
+ dotenv-webpack: 1.8.0_webpack@4.42.0
ejs: 2.7.4
- express: 4.17.1
- file-loader: 4.3.0_webpack@4.46.0
- file-system-cache: 1.0.5
+ express: 4.19.2
+ file-loader: 4.3.0_webpack@4.42.0
+ file-system-cache: 1.1.0
find-cache-dir: 3.3.2
find-up: 4.1.0
fs-extra: 8.1.0
glob-base: 0.3.0
global: 4.4.0
- html-webpack-plugin: 4.5.2_webpack@4.46.0
+ html-webpack-plugin: 4.5.2_webpack@4.42.0
inquirer: 7.3.3
interpret: 2.2.0
- ip: 1.1.5
- json5: 2.2.0
+ ip: 1.1.9
+ json5: 2.2.3
lazy-universal-dotenv: 3.0.1
- micromatch: 4.0.4
- node-fetch: 2.6.6
+ micromatch: 4.0.7
+ node-fetch: 2.6.1
open: 7.4.2
pnp-webpack-plugin: 1.5.0
postcss-flexbugs-fixes: 4.2.1
postcss-loader: 3.0.0
pretty-hrtime: 1.0.3
- qs: 6.10.1
- raw-loader: 3.1.0_webpack@4.46.0
+ qs: 6.12.1
+ raw-loader: 3.1.0_webpack@4.42.0
react: 17.0.2
- react-dev-utils: 9.1.0_webpack@4.46.0
+ react-dev-utils: 9.1.0_webpack@4.42.0
react-dom: 17.0.2_react@17.0.2
- regenerator-runtime: 0.13.9
- resolve: 1.20.0
+ regenerator-runtime: 0.13.11
+ resolve: 1.22.8
resolve-from: 5.0.0
- semver: 6.3.0
+ semver: 6.3.1
serve-favicon: 2.5.0
- shelljs: 0.8.4
- style-loader: 1.3.0_webpack@4.46.0
- terser-webpack-plugin: 2.3.8_webpack@4.46.0
+ shelljs: 0.8.5
+ style-loader: 1.3.0_webpack@4.42.0
+ terser-webpack-plugin: 2.3.8_webpack@4.42.0
ts-dedent: 1.2.0
unfetch: 4.2.0
- url-loader: 2.3.0_ke5umg2s3o4akbat3qvdol7cby
+ url-loader: 2.3.0_k66lquhotssodpycel5qq5nq34
util-deprecate: 1.0.2
- webpack: 4.46.0
- webpack-dev-middleware: 3.7.3_webpack@4.46.0
- webpack-hot-middleware: 2.25.1
+ webpack: 4.42.0
+ webpack-dev-middleware: 3.7.3_webpack@4.42.0
+ webpack-hot-middleware: 2.26.1
webpack-virtual-modules: 0.2.2
transitivePeerDependencies:
- '@types/react'
@@ -10894,15 +11214,15 @@ packages:
/@storybook/node-logger/5.3.21:
resolution: {integrity: sha512-8xibncy873JXePCK5MC0qem1MKtWI1Lc4hv6rwURSwYpZtkO7yElay3XAFGUSfz8qFJkoDBmMTxBR3fp4Dln7g==}
dependencies:
- '@types/npmlog': 4.1.3
+ '@types/npmlog': 4.1.6
chalk: 3.0.0
- core-js: 3.19.1
+ core-js: 3.37.1
npmlog: 4.1.2
pretty-hrtime: 1.0.3
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: true
- /@storybook/react/5.3.21_sqzbkbjhjav7mcfj63cxu4z4tu:
+ /@storybook/react/5.3.21_bh4sj4sfymj237s7zcvgwvokc4:
resolution: {integrity: sha512-A50F8dDZxyLGa/dE3q0Zxt7T5r9UbomoSclqw7oJTO9GI76QOu7GfsoWrEL2gTEDAmqXreLVQqGuTLQhBz0rlA==}
engines: {node: '>=8.0.0'}
hasBin: true
@@ -10912,31 +11232,31 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@babel/core': 7.16.0
- '@babel/plugin-transform-react-constant-elements': 7.16.0_@babel+core@7.16.0
- '@babel/preset-flow': 7.16.0_@babel+core@7.16.0
- '@babel/preset-react': 7.16.0_@babel+core@7.16.0
- '@storybook/addons': 5.3.21_tywxhxqgoy4ic6dja7arbokhba
- '@storybook/core': 5.3.21_sqzbkbjhjav7mcfj63cxu4z4tu
+ '@babel/core': 7.13.15
+ '@babel/plugin-transform-react-constant-elements': 7.13.13_@babel+core@7.13.15
+ '@babel/preset-flow': 7.24.7_@babel+core@7.13.15
+ '@babel/preset-react': 7.13.13_@babel+core@7.13.15
+ '@storybook/addons': 5.3.21_gyvc7xfhwic4jpc4icj44bd6hq
+ '@storybook/core': 5.3.21_bh4sj4sfymj237s7zcvgwvokc4
'@storybook/node-logger': 5.3.21
'@svgr/webpack': 4.3.3
- '@types/webpack-env': 1.16.3
- babel-loader: 8.2.3_@babel+core@7.16.0
+ '@types/webpack-env': 1.18.5
+ babel-loader: 8.2.2_@babel+core@7.13.15
babel-plugin-add-react-displayname: 0.0.5
- babel-plugin-named-asset-import: 0.3.7_@babel+core@7.16.0
+ babel-plugin-named-asset-import: 0.3.8_@babel+core@7.13.15
babel-plugin-react-docgen: 4.2.1
- core-js: 3.19.1
+ core-js: 3.37.1
global: 4.4.0
lodash: 4.17.21
- mini-css-extract-plugin: 0.7.0_webpack@4.46.0
- prop-types: 15.7.2
+ mini-css-extract-plugin: 0.7.0_webpack@4.42.0
+ prop-types: 15.8.1
react: 17.0.2
- react-dev-utils: 9.1.0_webpack@4.46.0
+ react-dev-utils: 9.1.0_webpack@4.42.0
react-dom: 17.0.2_react@17.0.2
- regenerator-runtime: 0.13.9
- semver: 6.3.0
+ regenerator-runtime: 0.13.11
+ semver: 6.3.1
ts-dedent: 1.2.0
- webpack: 4.46.0
+ webpack: 4.42.0
transitivePeerDependencies:
- '@types/react'
- bluebird
@@ -10956,12 +11276,12 @@ packages:
dependencies:
'@reach/router': 1.3.4_sfoxds7t5ydpegc3knd667wn6m
'@storybook/csf': 0.0.1
- '@types/reach__router': 1.3.9
- core-js: 3.19.1
+ '@types/reach__router': 1.3.15
+ core-js: 3.37.1
global: 4.4.0
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.10.1
+ qs: 6.12.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
util-deprecate: 1.0.2
@@ -10975,12 +11295,12 @@ packages:
dependencies:
'@reach/router': 1.3.4_wcqkhtmu7mswc6yz4uyexck3ty
'@storybook/csf': 0.0.1
- '@types/reach__router': 1.3.9
- core-js: 3.19.1
+ '@types/reach__router': 1.3.15
+ core-js: 3.37.1
global: 4.4.0
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.10.1
+ qs: 6.12.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
util-deprecate: 1.0.2
@@ -10994,12 +11314,31 @@ packages:
dependencies:
'@reach/router': 1.3.4_zkbncb2mrwigeq3keybbaytzya
'@storybook/csf': 0.0.1
- '@types/reach__router': 1.3.9
- core-js: 3.19.1
+ '@types/reach__router': 1.3.15
+ core-js: 3.37.1
+ global: 4.4.0
+ lodash: 4.17.21
+ memoizerific: 1.11.3
+ qs: 6.12.1
+ react: 16.14.0
+ react-dom: 17.0.2_react@17.0.2
+ util-deprecate: 1.0.2
+ dev: true
+
+ /@storybook/router/5.3.22_zkbncb2mrwigeq3keybbaytzya:
+ resolution: {integrity: sha512-Z79Gd7hdTzpuMMkv2Mantd0DqX/dFaAKAzzPiXWsqWRtzlDkW7+SR0+yC36bUWnM4hcTT1SOZsLSqBoY/kw0WQ==}
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ dependencies:
+ '@reach/router': 1.3.4_zkbncb2mrwigeq3keybbaytzya
+ '@storybook/csf': 0.0.1
+ '@types/reach__router': 1.3.15
+ core-js: 3.37.1
global: 4.4.0
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.10.1
+ qs: 6.12.1
react: 16.14.0
react-dom: 17.0.2_react@17.0.2
util-deprecate: 1.0.2
@@ -11011,20 +11350,22 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@emotion/core': 10.1.1_react@17.0.2
- '@emotion/styled': 10.0.27_go5tdyoyk4iceqw7gzblglw2da
+ '@emotion/core': 10.3.1_react@17.0.2
+ '@emotion/styled': 10.3.0_gfrer23gq2rp2t523t6qbxrx6m
'@storybook/client-logger': 5.3.21
- core-js: 3.19.1
- deep-object-diff: 1.1.0
- emotion-theming: 10.0.27_go5tdyoyk4iceqw7gzblglw2da
+ core-js: 3.37.1
+ deep-object-diff: 1.1.9
+ emotion-theming: 10.3.0_gfrer23gq2rp2t523t6qbxrx6m
global: 4.4.0
memoizerific: 1.11.3
polished: 3.7.2
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
resolve-from: 5.0.0
ts-dedent: 1.2.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@storybook/theming/5.3.21_wcqkhtmu7mswc6yz4uyexck3ty:
@@ -11033,20 +11374,22 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@emotion/core': 10.1.1_react@16.14.0
- '@emotion/styled': 10.0.27_l4qwngn4rqpsicelhp3xw7f334
+ '@emotion/core': 10.3.1_react@16.14.0
+ '@emotion/styled': 10.3.0_qzeatvug73zaio2r3dlvejynye
'@storybook/client-logger': 5.3.21
- core-js: 3.19.1
- deep-object-diff: 1.1.0
- emotion-theming: 10.0.27_l4qwngn4rqpsicelhp3xw7f334
+ core-js: 3.37.1
+ deep-object-diff: 1.1.9
+ emotion-theming: 10.3.0_qzeatvug73zaio2r3dlvejynye
global: 4.4.0
memoizerific: 1.11.3
polished: 3.7.2
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
resolve-from: 5.0.0
ts-dedent: 1.2.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@storybook/theming/5.3.21_zkbncb2mrwigeq3keybbaytzya:
@@ -11055,38 +11398,64 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@emotion/core': 10.1.1_react@16.14.0
- '@emotion/styled': 10.0.27_l4qwngn4rqpsicelhp3xw7f334
+ '@emotion/core': 10.3.1_react@16.14.0
+ '@emotion/styled': 10.3.0_qzeatvug73zaio2r3dlvejynye
'@storybook/client-logger': 5.3.21
- core-js: 3.19.1
- deep-object-diff: 1.1.0
- emotion-theming: 10.0.27_l4qwngn4rqpsicelhp3xw7f334
+ core-js: 3.37.1
+ deep-object-diff: 1.1.9
+ emotion-theming: 10.3.0_qzeatvug73zaio2r3dlvejynye
global: 4.4.0
memoizerific: 1.11.3
polished: 3.7.2
- prop-types: 15.7.2
+ prop-types: 15.8.1
+ react: 16.14.0
+ react-dom: 17.0.2_react@17.0.2
+ resolve-from: 5.0.0
+ ts-dedent: 1.2.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@storybook/theming/5.3.22_zkbncb2mrwigeq3keybbaytzya:
+ resolution: {integrity: sha512-YwS7tTeKW5gQvC+lYhghHi5ranEtWCAxfqM5WbnAnEkvtSAFBvofmtZQxATTmhy/eVvkQAJiSpe/hFsbnpsZLg==}
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ dependencies:
+ '@emotion/core': 10.3.1_react@16.14.0
+ '@emotion/styled': 10.3.0_qzeatvug73zaio2r3dlvejynye
+ '@storybook/client-logger': 5.3.22
+ core-js: 3.37.1
+ deep-object-diff: 1.1.9
+ emotion-theming: 10.3.0_qzeatvug73zaio2r3dlvejynye
+ global: 4.4.0
+ memoizerific: 1.11.3
+ polished: 3.7.2
+ prop-types: 15.8.1
react: 16.14.0
react-dom: 17.0.2_react@17.0.2
resolve-from: 5.0.0
ts-dedent: 1.2.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@storybook/ui/5.3.21_@types+react@17.0.35:
+ /@storybook/ui/5.3.21_@types+react@16.14.60:
resolution: {integrity: sha512-OUf8JYY9LN+XfzLSZE6KtboITGDL6C8Z0W9QOXM5LJwFLv4PkANK/f9qsB5vVHFm7vhoO96butFzs6SjTKhxkw==}
dependencies:
- '@emotion/core': 10.1.1_react@16.14.0
- '@storybook/addons': 5.3.21_uzyzkshs32agvq3l4v3l75pmia
- '@storybook/api': 5.3.21_uzyzkshs32agvq3l4v3l75pmia
+ '@emotion/core': 10.3.1_react@16.14.0
+ '@storybook/addons': 5.3.21_h5gajyuiuuyogiozw5uhcaf3gm
+ '@storybook/api': 5.3.21_h5gajyuiuuyogiozw5uhcaf3gm
'@storybook/channels': 5.3.21
'@storybook/client-logger': 5.3.21
- '@storybook/components': 5.3.21_@types+react@17.0.35
+ '@storybook/components': 5.3.21_qdqosj7atzew5acax3ne2jqdk4
'@storybook/core-events': 5.3.21
'@storybook/router': 5.3.21_wcqkhtmu7mswc6yz4uyexck3ty
'@storybook/theming': 5.3.21_wcqkhtmu7mswc6yz4uyexck3ty
- copy-to-clipboard: 3.3.1
- core-js: 3.19.1
- core-js-pure: 3.19.1
- emotion-theming: 10.0.27_l4qwngn4rqpsicelhp3xw7f334
+ copy-to-clipboard: 3.3.3
+ core-js: 3.37.1
+ core-js-pure: 3.37.1
+ emotion-theming: 10.3.0_qzeatvug73zaio2r3dlvejynye
fast-deep-equal: 2.0.1
fuse.js: 3.6.1
global: 4.4.0
@@ -11094,29 +11463,30 @@ packages:
markdown-to-jsx: 6.11.4_react@16.14.0
memoizerific: 1.11.3
polished: 3.7.2
- prop-types: 15.7.2
- qs: 6.10.1
+ prop-types: 15.8.1
+ qs: 6.12.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- react-draggable: 4.4.4_wcqkhtmu7mswc6yz4uyexck3ty
- react-helmet-async: 1.1.2_wcqkhtmu7mswc6yz4uyexck3ty
+ react-draggable: 4.4.6_wcqkhtmu7mswc6yz4uyexck3ty
+ react-helmet-async: 1.3.0_wcqkhtmu7mswc6yz4uyexck3ty
react-hotkeys: 2.0.0_react@16.14.0
react-sizeme: 2.6.12_wcqkhtmu7mswc6yz4uyexck3ty
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
resolve-from: 5.0.0
- semver: 6.3.0
- store2: 2.12.0
+ semver: 6.3.1
+ store2: 2.14.3
telejson: 3.3.0
util-deprecate: 1.0.2
transitivePeerDependencies:
- '@types/react'
+ - supports-color
dev: true
/@surma/rollup-plugin-off-main-thread/1.4.2:
resolution: {integrity: sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==}
dependencies:
ejs: 2.7.4
- magic-string: 0.25.7
+ magic-string: 0.25.9
/@svgr/babel-plugin-add-jsx-attribute/4.2.0:
resolution: {integrity: sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==}
@@ -11224,7 +11594,7 @@ packages:
dependencies:
'@svgr/plugin-jsx': 5.5.0
camelcase: 6.3.0
- cosmiconfig: 7.0.1
+ cosmiconfig: 7.1.0
transitivePeerDependencies:
- supports-color
@@ -11232,19 +11602,19 @@ packages:
resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==}
engines: {node: '>=8'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.24.7
/@svgr/hast-util-to-babel-ast/5.5.0:
resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.24.7
/@svgr/plugin-jsx/4.3.3:
resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.16.0
+ '@babel/core': 7.24.7
'@svgr/babel-preset': 4.3.3
'@svgr/hast-util-to-babel-ast': 4.3.2
svg-parser: 2.0.4
@@ -11255,7 +11625,7 @@ packages:
resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.13.15
'@svgr/babel-preset': 5.5.0
'@svgr/hast-util-to-babel-ast': 5.5.0
svg-parser: 2.0.4
@@ -11274,22 +11644,22 @@ packages:
resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==}
engines: {node: '>=10'}
dependencies:
- cosmiconfig: 7.0.1
- deepmerge: 4.2.2
+ cosmiconfig: 7.1.0
+ deepmerge: 4.3.1
svgo: 1.3.2
/@svgr/webpack/4.3.3:
resolution: {integrity: sha512-bjnWolZ6KVsHhgyCoYRFmbd26p8XVbulCzSG53BDQqAr+JOAderYK7CuYrB3bDjHJuF6LJ7Wrr42+goLRV9qIg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.16.0
- '@babel/plugin-transform-react-constant-elements': 7.16.0_@babel+core@7.16.0
- '@babel/preset-env': 7.16.4_@babel+core@7.16.0
- '@babel/preset-react': 7.16.0_@babel+core@7.16.0
+ '@babel/core': 7.13.15
+ '@babel/plugin-transform-react-constant-elements': 7.13.13_@babel+core@7.13.15
+ '@babel/preset-env': 7.13.15_@babel+core@7.13.15
+ '@babel/preset-react': 7.13.13_@babel+core@7.13.15
'@svgr/core': 4.3.3
'@svgr/plugin-jsx': 4.3.3
'@svgr/plugin-svgo': 4.3.1
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
transitivePeerDependencies:
- supports-color
@@ -11297,17 +11667,23 @@ packages:
resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.17.5
- '@babel/plugin-transform-react-constant-elements': 7.16.0_@babel+core@7.17.5
- '@babel/preset-env': 7.16.4_@babel+core@7.17.5
- '@babel/preset-react': 7.16.0_@babel+core@7.17.5
+ '@babel/core': 7.13.15
+ '@babel/plugin-transform-react-constant-elements': 7.13.13_@babel+core@7.13.15
+ '@babel/preset-env': 7.13.15_@babel+core@7.13.15
+ '@babel/preset-react': 7.13.13_@babel+core@7.13.15
'@svgr/core': 5.5.0
'@svgr/plugin-jsx': 5.5.0
'@svgr/plugin-svgo': 5.5.0
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
transitivePeerDependencies:
- supports-color
+ /@swc/helpers/0.4.11:
+ resolution: {integrity: sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==}
+ dependencies:
+ tslib: 2.6.3
+ dev: false
+
/@szmarczak/http-timer/1.1.2:
resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
engines: {node: '>=6'}
@@ -11319,27 +11695,27 @@ packages:
resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/runtime': 7.16.3
+ '@babel/code-frame': 7.24.7
+ '@babel/runtime': 7.13.10
'@types/aria-query': 4.2.2
aria-query: 4.2.2
chalk: 4.1.2
- dom-accessibility-api: 0.5.10
- lz-string: 1.4.4
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
pretty-format: 26.6.2
dev: true
- /@testing-library/dom/8.11.3:
- resolution: {integrity: sha512-9LId28I+lx70wUiZjLvi1DB/WT2zGOxUh46glrSNMaWVx849kKAluezVzZrXJfTKKoQTmEOutLes/bHg4Bj3aA==}
+ /@testing-library/dom/8.20.1:
+ resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==}
engines: {node: '>=12'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/runtime': 7.17.2
- '@types/aria-query': 4.2.2
- aria-query: 5.0.0
+ '@babel/code-frame': 7.24.7
+ '@babel/runtime': 7.13.10
+ '@types/aria-query': 5.0.4
+ aria-query: 5.1.3
chalk: 4.1.2
- dom-accessibility-api: 0.5.10
- lz-string: 1.4.4
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
pretty-format: 27.5.1
dev: true
@@ -11347,7 +11723,7 @@ packages:
resolution: {integrity: sha512-j31Bn0rQo12fhCWOUWy9fl7wtqkp7In/YP2p5ZFyRuiiB9Qs3g+hS4gAmDWONbAHcRmVooNJ5eOHQDCOmUFXHg==}
engines: {node: '>=8', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
chalk: 2.4.2
css: 2.2.4
css.escape: 1.5.1
@@ -11364,21 +11740,22 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
'@testing-library/dom': 7.31.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
dev: true
- /@testing-library/react/12.1.2_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-ihQiEOklNyHIpo2Y8FREkyD1QAea054U0MVbwH1m8N9TxeFz+KoJ9LkqoKqJlzx2JDm56DVwaJ1r36JYxZM05g==}
+ /@testing-library/react/12.1.5_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg==}
engines: {node: '>=12'}
peerDependencies:
- react: '*'
- react-dom: '*'
+ react: <18.0.0
+ react-dom: <18.0.0
dependencies:
- '@babel/runtime': 7.16.3
- '@testing-library/dom': 8.11.3
+ '@babel/runtime': 7.13.10
+ '@testing-library/dom': 8.20.1
+ '@types/react-dom': 16.9.24
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
dev: true
@@ -11389,31 +11766,36 @@ packages:
peerDependencies:
'@testing-library/dom': '>=7.21.4'
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
dev: true
/@tootallnate/once/1.1.2:
resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
engines: {node: '>= 6'}
- /@tsconfig/node10/1.0.8:
- resolution: {integrity: sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.8.tgz}
+ /@trysound/sax/0.2.0:
+ resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
+ engines: {node: '>=10.13.0'}
+ dev: true
+
+ /@tsconfig/node10/1.0.11:
+ resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
dev: true
- /@tsconfig/node12/1.0.9:
- resolution: {integrity: sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.9.tgz}
+ /@tsconfig/node12/1.0.11:
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
dev: true
- /@tsconfig/node14/1.0.1:
- resolution: {integrity: sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.1.tgz}
+ /@tsconfig/node14/1.0.3:
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
dev: true
- /@tsconfig/node16/1.0.2:
- resolution: {integrity: sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.2.tgz}
+ /@tsconfig/node16/1.0.4:
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
dev: true
/@turf/along/5.1.5:
- resolution: {integrity: sha1-YdbmplhKzdq1asVYTge/jL5fi+s=}
+ resolution: {integrity: sha512-N7BN1xvj6VWMe3UpjQDdVI0j0oY/EZ0bWgOgBXc4DlJ411uEsKCh6iBv0b2MSxQ3YUXEez3oc5FcgO9eVSs7iQ==}
dependencies:
'@turf/bearing': 5.1.5
'@turf/destination': 5.1.5
@@ -11422,14 +11804,14 @@ packages:
dev: false
/@turf/area/5.1.5:
- resolution: {integrity: sha1-79iZv9Jgzb0VQbKjwVX4pdLu+h0=}
+ resolution: {integrity: sha512-lz16gqtvoz+j1jD9y3zj0Z5JnGNd3YfS0h+DQY1EcZymvi75Frm9i5YbEyth0RfxYZeOVufY7YIS3LXbJlI57g==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/meta': 5.1.6
dev: false
/@turf/bbox-clip/5.1.5:
- resolution: {integrity: sha1-M2S1Mo3/nzz0HZ4C7a/zdNFQzIQ=}
+ resolution: {integrity: sha512-KP64aoTvjcXxWHeM/Hs25vOQUBJgyJi7DlRVEoZofFJiR1kPnmDQrK7Xj+60lAk5cxuqzFnaPPxUk9Q+3v4p1Q==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -11437,20 +11819,20 @@ packages:
dev: false
/@turf/bbox-polygon/5.1.5:
- resolution: {integrity: sha1-auuk7VHYXSluD3w4uIwznwHu4CQ=}
+ resolution: {integrity: sha512-PKVPF5LABFWZJud8KzzfesLGm5ihiwLbVa54HJjYySe6yqU/cr5q/qcN9TWptynOFhNktG1dr0KXVG0I2FZmfw==}
dependencies:
'@turf/helpers': 5.1.5
dev: false
/@turf/bbox/5.1.5:
- resolution: {integrity: sha1-MFHfUUrUxQ9KT5uKLRX9i2hA7aM=}
+ resolution: {integrity: sha512-sYQU4fqsOYYJoD8UndC1n2hy8hV/lGIAmMLKWuzwmPUWqWOuSKWUcoRWDi9mGB0GvQQe/ow2IxZr8UaVaGz3sQ==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/meta': 5.1.6
dev: false
/@turf/bearing/5.1.5:
- resolution: {integrity: sha1-egt5ATbE70eX8CRjBdRcvi0ns/c=}
+ resolution: {integrity: sha512-PrvZuJjnXGseB8hUatIjsrK3tgD3wttyRnVYXTbSfXYJZzaOfHDMplgO4lxXQp7diraZhGhCdSlbMvRRXItbUQ==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -11464,21 +11846,21 @@ packages:
dev: false
/@turf/bezier-spline/5.1.5:
- resolution: {integrity: sha1-WaJ7ul17l+8Vqz/VpA+9I4cEm8o=}
+ resolution: {integrity: sha512-Y9NoComaGgFFFe9TWWE/cEMg2+EnBfU1R3112ec2wlx21ygDmFGXs4boOS71WM4ySwm/dbS3wxnbVxs4j68sKw==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
dev: false
/@turf/boolean-clockwise/5.1.5:
- resolution: {integrity: sha1-MwK32sYsXikaB4nimvcoM4f6nes=}
+ resolution: {integrity: sha512-FqbmEEOJ4rU4/2t7FKx0HUWmjFEVqR+NJrFP7ymGSjja2SQ7Q91nnBihGuT+yuHHl6ElMjQ3ttsB/eTmyCycxA==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
dev: false
/@turf/boolean-contains/5.1.5:
- resolution: {integrity: sha1-WW1jruY2961T7pn5/yTJaZSg7xQ=}
+ resolution: {integrity: sha512-x2HeEieeE9vBQrTdCuj4swnAXlpKbj9ChxMdDTV479c0m2gVmfea83ocmkj3w+9cvAaS63L8WqFyNVSmkwqljQ==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/boolean-point-in-polygon': 5.1.5
@@ -11488,7 +11870,7 @@ packages:
dev: false
/@turf/boolean-crosses/5.1.5:
- resolution: {integrity: sha1-Ab+uollvFk3kpNMlCU3HwlXHFdY=}
+ resolution: {integrity: sha512-odljvS7INr9k/8yXeyXQVry7GqEaChOmXawP0+SoTfGO3hgptiik59TLU/Yjn/SLFjE2Ul54Ga1jKFSL7vvH0Q==}
dependencies:
'@turf/boolean-point-in-polygon': 5.1.5
'@turf/helpers': 5.1.5
@@ -11508,7 +11890,7 @@ packages:
dev: false
/@turf/boolean-equal/5.1.5:
- resolution: {integrity: sha1-Kfj21gu4RQff12WzIlTbjnLJOKQ=}
+ resolution: {integrity: sha512-QEMbhDPV+J8PlRkMlVg6m5oSLaYUpOx2VUhDDekQ73FlpnhFBKRIlidhvHtS6CYnEw8d+/zA3h8Z18B4W4mq9Q==}
dependencies:
'@turf/clean-coords': 5.1.5
'@turf/helpers': 5.1.5
@@ -11517,7 +11899,7 @@ packages:
dev: false
/@turf/boolean-overlap/5.1.5:
- resolution: {integrity: sha1-DU5kxSx3CijpPZ7834qLg3OsznU=}
+ resolution: {integrity: sha512-lizojgU559KME0G705YAgWVa0B3/tsWNobMzOEWDx/1rABWTojCY4uxw2rFxpOsP++s8JJHrGWXRLh1PbdAvRQ==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -11528,7 +11910,7 @@ packages:
dev: false
/@turf/boolean-parallel/5.1.5:
- resolution: {integrity: sha1-c5NYR16ltlx+GCejw+DopofTqF0=}
+ resolution: {integrity: sha512-eeuGgDhnas3nJ22A/DD8aiH0kg9dSzbQChIMAqYRPGg3pWNK41aGAbeh5z0GO5N/EVFX1+ga5a0vsPmiRgQB5g==}
dependencies:
'@turf/clean-coords': 5.1.5
'@turf/helpers': 5.1.5
@@ -11537,21 +11919,21 @@ packages:
dev: false
/@turf/boolean-point-in-polygon/5.1.5:
- resolution: {integrity: sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=}
+ resolution: {integrity: sha512-y+gbAhLmsAZH9uYhv+C68pu06mxsGIm3o7l0hzVkc/PXYdbkr+vKe7n7PfSN3xpVA3qoDLKLpCGOqeW8/ThaJA==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
dev: false
/@turf/boolean-point-on-line/5.1.5:
- resolution: {integrity: sha1-9jPF/4Aq0ku48Vja269v9KAj3Xs=}
+ resolution: {integrity: sha512-Zf4d28mckV2tYfLWf2iqxQ8eeLZqi2HGimM26mptf1OCEIwc1wfkKgLRRJXMu94Crvd/pJxjRAjoYGcGliP6Vg==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
dev: false
/@turf/boolean-within/5.1.5:
- resolution: {integrity: sha1-RxBdVtB1Kp0Pv81Dw2pfkUnchpc=}
+ resolution: {integrity: sha512-CNAtrvm4HiUwV/vhpGhvJzfhV9CN7VhPC5y4tTfQicK82fYY6ifPz0iaNpUOmshU6+TAot/fsVQVgDJ4t7HXcA==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/boolean-point-in-polygon': 5.1.5
@@ -11561,7 +11943,7 @@ packages:
dev: false
/@turf/buffer/5.1.5:
- resolution: {integrity: sha1-hByWJ8+5dLEirE4alW8EZrwCMcQ=}
+ resolution: {integrity: sha512-U3LU0HF/JNFUNabpB5ArpNG6yPla7yR5XPrZvzZRH48vvbr/N0rkSRI0tJFRWTz7ntugVm9X0OD9Y382NTJRhA==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/center': 5.1.5
@@ -11573,7 +11955,7 @@ packages:
dev: false
/@turf/center-mean/5.1.5:
- resolution: {integrity: sha1-jI6YdTkeXwnw5uePXWYbiLIQigo=}
+ resolution: {integrity: sha512-XdkBXzFUuyCqu5EPlBwgkv8FLA8pIGBnt7xy5cxxhxKOYLMrKqwMPPHPA84TjeQpNti0gH0CVuOk2r1f/Pp8iQ==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/helpers': 5.1.5
@@ -11581,7 +11963,7 @@ packages:
dev: false
/@turf/center-median/5.1.5:
- resolution: {integrity: sha1-u0Yb/noqSGAdikcnaFcYcjoUqHI=}
+ resolution: {integrity: sha512-M+O6bSNsIDKZ4utk/YzSOIg6W0isjLVWud+TCLWyrDCWTSERlSJlhOaVE1y7cObhG8nYBHvmszqZyoAY6nufQw==}
dependencies:
'@turf/center-mean': 5.1.5
'@turf/centroid': 5.1.5
@@ -11591,7 +11973,7 @@ packages:
dev: false
/@turf/center-of-mass/5.1.5:
- resolution: {integrity: sha1-TTvXnYhJjbq4Mk1PafAyL2Uguco=}
+ resolution: {integrity: sha512-UvI7q6GgW3afCVIDOyTRuLT54v9Xwv65Xudxh4FIT6w7HNU4KUBtTGnx0NuhODZcgvZgWVWVakhmIcHQTMjYYA==}
dependencies:
'@turf/centroid': 5.1.5
'@turf/convex': 5.1.5
@@ -11601,35 +11983,35 @@ packages:
dev: false
/@turf/center/5.1.5:
- resolution: {integrity: sha1-RKss2VT2PA03dX9xWKmcPvURS4A=}
+ resolution: {integrity: sha512-Dy1TvAv2oHKFddZcWqlVsanxurfcZV1Mmb1E+7H7GRKI+fXZTfRjwCdbiZCbO/tPwxt8jWQHWdLHn8E9lecc3A==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/helpers': 5.1.5
dev: false
/@turf/centroid/5.1.5:
- resolution: {integrity: sha1-d4radCFjNQIa2P0OemWoNJ1Tx2k=}
+ resolution: {integrity: sha512-0m9ZAZJB4YXLDxF2fWGqlE/g9Y68cebeWaRNOMN+e6Bti1fz0JKQuaEqJV+J8xOmODPHSMbZZ1SqSDVRgVHP2Q==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/meta': 5.1.6
dev: false
/@turf/circle/5.1.5:
- resolution: {integrity: sha1-mxV3g1UIq1L7HBCypQZcuiuHtqU=}
+ resolution: {integrity: sha512-CNaEtvp38Q+TSFJHdzdl5iYNjBFZRluRTFikIuEcennSeMJD60nP0dMubP58TR/QQn541eNDUyED90V4KuOjyQ==}
dependencies:
'@turf/destination': 5.1.5
'@turf/helpers': 5.1.5
dev: false
/@turf/clean-coords/5.1.5:
- resolution: {integrity: sha1-EoAKmKeMmkUqcuxChJPEOs8q2h8=}
+ resolution: {integrity: sha512-xd/iSM0McVUxbu81KCKDqirCsYkKk3EAwpDjYI8vIQ+eKf/MLSdteRcm3PB7wo2y6JcYp4dMGv2cr9IP7V+dXQ==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
dev: false
/@turf/clone/5.1.5:
- resolution: {integrity: sha1-JT6NNUdxgZduM636tQoPAqfw42c=}
+ resolution: {integrity: sha512-//pITsQ8xUdcQ9pVb4JqXiSqG4dos5Q9N4sYFoWghX21tfOV2dhc5TGqYOhnHrQS7RiKQL1vQ48kIK34gQ5oRg==}
dependencies:
'@turf/helpers': 5.1.5
dev: false
@@ -11641,7 +12023,7 @@ packages:
dev: false
/@turf/clusters-dbscan/5.1.5:
- resolution: {integrity: sha1-V4H7TmVsdHoLjpk333MYHAMJ4m8=}
+ resolution: {integrity: sha512-X3qLLHJkwMuv+xdWQ08NtOc6BgeqCKKSAltyyAZ7iImE65f0C+sW024DfHSbTMsZVXBFst2Q6RQY8RVUf3QBeQ==}
dependencies:
'@turf/clone': 5.1.5
'@turf/distance': 5.1.5
@@ -11652,7 +12034,7 @@ packages:
dev: false
/@turf/clusters-kmeans/5.1.5:
- resolution: {integrity: sha1-/W3+qLEzuovcI3CsPKzuFYejAvE=}
+ resolution: {integrity: sha512-W6raiv9+fRgmJxCvKrpSacbLXzh7beZUk0A1pjF82Fv3CFTrXAJbgAyIbdlmgXezYSXhOT5NMUugnbkUy2oBZw==}
dependencies:
'@turf/clone': 5.1.5
'@turf/helpers': 5.1.5
@@ -11662,14 +12044,14 @@ packages:
dev: false
/@turf/clusters/5.1.5:
- resolution: {integrity: sha1-ZzpeXxsZycq6vFfJCO6t1oIiTdQ=}
+ resolution: {integrity: sha512-+rQe+g66xfbIXz58tveXQCDdE9hzqRJtDVSw5xth92TvCcL4J60ZKN8mHNUSn1ZZvpUHtVPe4dYcbtk5bW8fXQ==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/meta': 5.1.6
dev: false
/@turf/collect/5.1.5:
- resolution: {integrity: sha1-/pjJqMIY7PJP/DPXApUXt8GbKj4=}
+ resolution: {integrity: sha512-voFWu6EGPcNuIbAp43yvGf2Ip4/q8TTeWhOSJ2yDEHgOfbAwrNUwUJCclEjcUVsnc7ypKNrFn3/8bmR9tI0NQg==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/boolean-point-in-polygon': 5.1.5
@@ -11678,14 +12060,14 @@ packages:
dev: false
/@turf/combine/5.1.5:
- resolution: {integrity: sha1-uxS976VVBDVxlfwaEkzX1TqMiQU=}
+ resolution: {integrity: sha512-/RqmfCvduHquINVyNmzKOcZtZjfaEHMhghgmj8MYnzepN3ro+E2QXoaQGGrQ7nChAvGgWPAvN8EveVSc1MvzPg==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/meta': 5.1.6
dev: false
/@turf/concave/5.1.5:
- resolution: {integrity: sha1-I7uqw4fQNLlldKG9cNBZI3qdIRA=}
+ resolution: {integrity: sha512-NvR5vmAunmgjEPjNzmvjLRvPcj7C6WuqCf+vu/aqyc4h2c1B/x399bDsSM64iFT+PYesFuoS1ZhJHWivXG8Y5g==}
dependencies:
'@turf/clone': 5.1.5
'@turf/distance': 5.1.5
@@ -11698,7 +12080,7 @@ packages:
dev: false
/@turf/convex/5.1.5:
- resolution: {integrity: sha1-Dfk3fdACIWzpghsH9wXgN9rj4B0=}
+ resolution: {integrity: sha512-ZEk4kIAoYR/mjO3C8rMe2StgmwhdwmbxVvNxg3udeahe2m0ZzbfkRC4HiJAaBgfR4TLJUAEewynESReTPwASBQ==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/meta': 5.1.6
@@ -11706,14 +12088,14 @@ packages:
dev: false
/@turf/destination/5.1.5:
- resolution: {integrity: sha1-7TU4G9zoO73cvQei4rzivd/7zCY=}
+ resolution: {integrity: sha512-EWwZnd4wxUO9d8UWzJt88jQlFf6W/6SE1930MMzzIR9o+RfqhrS/BL1eUDrg5I5drsymf6PZsK0j/V0q6jqkFQ==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
dev: false
/@turf/difference/5.1.5:
- resolution: {integrity: sha1-ok1pCnvKgD8QkKnuO52Qb8Q3H0I=}
+ resolution: {integrity: sha512-hIjiUHS8WiDfnmADQrhh6QcXWc3zNtjIpPQ5g/2NZ3k1mjnOdmGBVObkSJG4WEUNqyj3PKlsZ8W9xnSu+lLF1Q==}
dependencies:
'@turf/area': 5.1.5
'@turf/helpers': 5.1.5
@@ -11723,7 +12105,7 @@ packages:
dev: false
/@turf/dissolve/5.1.5:
- resolution: {integrity: sha1-LPEzqQIdIWODHD16lY1lB/nYGTg=}
+ resolution: {integrity: sha512-YcQgyp7pvhyZHCmbqqItVH6vHs43R9N0jzP/LnAG03oMiY4wves/BO1du6VDDbnJSXeRKf1afmY9tRGKYrm9ag==}
dependencies:
'@turf/boolean-overlap': 5.1.5
'@turf/clone': 5.1.5
@@ -11737,7 +12119,7 @@ packages:
dev: false
/@turf/distance/5.1.5:
- resolution: {integrity: sha1-Oc8YIEu/h1h9cH5gmmARiQkVZAk=}
+ resolution: {integrity: sha512-sYCAgYZ2MjNKMtx17EijHlK9qHwpA0MuuQWbR4P30LTCl52UlG/reBfV899wKyF3HuDL9ux78IbILwOfeQ4zgA==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -11751,7 +12133,7 @@ packages:
dev: false
/@turf/ellipse/5.1.5:
- resolution: {integrity: sha1-1XyrhTmFkgzeYCKKeNgEWAJcVL4=}
+ resolution: {integrity: sha512-oVTzEyDOi3d9isgB7Ah+YiOoUKB1eHMtMDXVl1oT+vC/T+6KR2aq+HjjbF11A0cjuh3VhjSWUZaS+2TYY0pu0w==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -11760,7 +12142,7 @@ packages:
dev: false
/@turf/envelope/5.1.5:
- resolution: {integrity: sha1-UBMwnFP91D369LWIplw/7X28EIo=}
+ resolution: {integrity: sha512-Mxl5A2euAxq3RZVN65/MVyaO91kzGU8MJXfegPdep6SN4bONDadEp0olwW5qSRf2U3cJ8Jppl089X6AeifD3IA==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/bbox-polygon': 5.1.5
@@ -11768,21 +12150,21 @@ packages:
dev: false
/@turf/explode/5.1.5:
- resolution: {integrity: sha1-sSsvd0AEobSPYrqVsgocZVo94Rg=}
+ resolution: {integrity: sha512-v/hC9DB9RKRW9/ZjnKoQelIp08JNa5wew0889465s//tfgY8+JEGkSGMag2L2NnVARWmzI/vlLgMK36qwkyDIA==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/meta': 5.1.6
dev: false
/@turf/flatten/5.1.5:
- resolution: {integrity: sha1-2iknBnEz7WFpsLnWB7khVoiqE1g=}
+ resolution: {integrity: sha512-aagHz5tjHmOtb8eMb5fd10+HJwdlhkhsPql1vRXQNnpv0Q9xL/4SsbvXZ6lPqkRAjiZuy087mvaz+ERml76/jg==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/meta': 5.1.6
dev: false
/@turf/flip/5.1.5:
- resolution: {integrity: sha1-Q29kOnIvDKU7n85jjkaT2zYIpoo=}
+ resolution: {integrity: sha512-7+IYM3QQAkV4co3wjEmM726/OkXqUCCHWWyIqrI9hiK+LR628qkoqP1hk6rQ4vZJrAYuvSlK+FZnr24OtgY0cw==}
dependencies:
'@turf/clone': 5.1.5
'@turf/helpers': 5.1.5
@@ -11790,14 +12172,14 @@ packages:
dev: false
/@turf/great-circle/5.1.5:
- resolution: {integrity: sha1-3r+2cc5HVQnLY3MBwV/PzPo1mpM=}
+ resolution: {integrity: sha512-k6FWwlt+YCQoD5VS1NybQjriNL7apYHO+tm2HbIFQ85blPUX4IyLppHIFevfD/k+K2bJqhFCze8JNVMBwdrzVw==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
dev: false
/@turf/helpers/5.1.5:
- resolution: {integrity: sha1-FTQFInq5M9AEpbuWQantmZ/L4M8=}
+ resolution: {integrity: sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==}
dev: false
/@turf/helpers/6.5.0:
@@ -11805,7 +12187,7 @@ packages:
dev: false
/@turf/hex-grid/5.1.5:
- resolution: {integrity: sha1-m3ul/s9QUfHoWJL3E/zlxVBQKmo=}
+ resolution: {integrity: sha512-rwDL+DlUyxDNL1aVHIKKCmrt1131ZULF3irExYIO/um6/SwRzsBw+522/RcxD/mg/Shtrpozb6bz8aJJ/3RXHA==}
dependencies:
'@turf/distance': 5.1.5
'@turf/helpers': 5.1.5
@@ -11814,7 +12196,7 @@ packages:
dev: false
/@turf/interpolate/5.1.5:
- resolution: {integrity: sha1-DxLwq3VtbdEK+ykMpuh3ve8BPqo=}
+ resolution: {integrity: sha512-LfmvtIUWc3NVkqPkX6j3CAIjF7y1LAZqfDd+2Ii+0fN7XOOGMWcb1uiTTAb8zDQjhTsygcUYgaz6mMYDCWYKPg==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/centroid': 5.1.5
@@ -11840,7 +12222,7 @@ packages:
dev: false
/@turf/invariant/5.1.5:
- resolution: {integrity: sha1-9Z9P76CSJLFdzhZR+QPIaNV6JOE=}
+ resolution: {integrity: sha512-4elbC8GVQ8XxrnWLWpFFXTK3qnzIYzIVtSkJrY9eefA8WNZzwcwT3WGFY3xte4BB48o5oEjihjoJharWRis78w==}
dependencies:
'@turf/helpers': 5.1.5
dev: false
@@ -11852,7 +12234,7 @@ packages:
dev: false
/@turf/isobands/5.1.5:
- resolution: {integrity: sha1-a0TO9YTVUaMTBBh68jtKFYLj8I0=}
+ resolution: {integrity: sha512-0n3NPfDYQyqjOch00I4hVCCqjKn9Sm+a8qlWOKbkuhmGa9dCDzsu2bZL0ahT+LjwlS4c8/owQXqe6KE2GWqT1Q==}
dependencies:
'@turf/area': 5.1.5
'@turf/bbox': 5.1.5
@@ -11864,7 +12246,7 @@ packages:
dev: false
/@turf/isolines/5.1.5:
- resolution: {integrity: sha1-irTn9Cuz38VGFOW/FVln9+VdLeE=}
+ resolution: {integrity: sha512-Ehn5pJmiq4hAn2+2jPB2rLt3iF8DDp8zciw9z2pAt5IGVRU/K+x3z4aYG5ra5vbFB/E4G3aHr/X4QPIb9LCJtA==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/helpers': 5.1.5
@@ -11873,13 +12255,13 @@ packages:
dev: false
/@turf/kinks/5.1.5:
- resolution: {integrity: sha1-irtpYdm7AQchO63fLCwmQNAlaYA=}
+ resolution: {integrity: sha512-G38sC8/+MYqQpVocT3XahhV42cqEAVJAZwUND9YOfKJZfjUn7FKmWhPURs5py95me48UuI0C0jLLAMzBkUc2nQ==}
dependencies:
'@turf/helpers': 5.1.5
dev: false
/@turf/length/5.1.5:
- resolution: {integrity: sha1-86X4ZMK5lqi7RxeUU1ofrxLuvvs=}
+ resolution: {integrity: sha512-0ryx68h512wCoNfwyksLdabxEfwkGNTPg61/QiY+QfGFUOUNhHbP+QimViFpwF5hyX7qmroaSHVclLUqyLGRbg==}
dependencies:
'@turf/distance': 5.1.5
'@turf/helpers': 5.1.5
@@ -11887,7 +12269,7 @@ packages:
dev: false
/@turf/line-arc/5.1.5:
- resolution: {integrity: sha1-AHinRHg1oSrkFKIR+aZNEYYVDhU=}
+ resolution: {integrity: sha512-Kz5RX/qRIHVrGNqF3BRlD3ACuuCr0G5lpaVyPjNvN+vA7Q4bEDyWIYeqm3DdTn7X2MXitpTNgr2uvX4WoUy4yA==}
dependencies:
'@turf/circle': 5.1.5
'@turf/destination': 5.1.5
@@ -11895,7 +12277,7 @@ packages:
dev: false
/@turf/line-chunk/5.1.5:
- resolution: {integrity: sha1-kQqFwFwG2dD5w4l3oF4IGNUIXEI=}
+ resolution: {integrity: sha512-mKvTUMahnb3EsYUMI8tQmygsliQkgQ1FZAY915zoTrm+WV246loa+84+h7i5d8W2O8gGJWuY7jQTpM7toTeL5w==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/length': 5.1.5
@@ -11904,7 +12286,7 @@ packages:
dev: false
/@turf/line-intersect/5.1.5:
- resolution: {integrity: sha1-DikHGuQDKV5JFyO8SfXPrI0R3fM=}
+ resolution: {integrity: sha512-9DajJbHhJauLI2qVMnqZ7SeFsinFroVICOSUheODk7j5teuwNABuZ2Z6WmKATzEsPkEJ1iVykqB+F9vGMVKB6g==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -11914,7 +12296,7 @@ packages:
dev: false
/@turf/line-offset/5.1.5:
- resolution: {integrity: sha1-KrWy8In4yRPiMdmUN4553KkLWh4=}
+ resolution: {integrity: sha512-VccGDgFfBSiCTqrHdQgxD7Rs9lnJmDOJ5gqQRculKPsCNUyRFMYIZud7l2dTs83g66evfOwkZCrTxtSoBY3Jxg==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -11922,7 +12304,7 @@ packages:
dev: false
/@turf/line-overlap/5.1.5:
- resolution: {integrity: sha1-lDxvh6A4bcQ9+sEdKz/5wRLNP2A=}
+ resolution: {integrity: sha512-hMz3XARXEbfGwLF9WXyErqQjzhZYMKvGQwlPGOoth+2o9Uga9mfWfevduJvozJAE1MKxtFttMjIXMzcShW3O8A==}
dependencies:
'@turf/boolean-point-on-line': 5.1.5
'@turf/helpers': 5.1.5
@@ -11934,7 +12316,7 @@ packages:
dev: false
/@turf/line-segment/5.1.5:
- resolution: {integrity: sha1-Mgeq7lRqskw9jcPMY/kcdwuAE+U=}
+ resolution: {integrity: sha512-wIrRtWuLuLXhnSkqdVG1SDayTU0/CmZf+a+BBhEf0vFIsAedJnrY3a2cbCEvtfuk6ZsAbhOi7/kYiaR/F+rEzg==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -11942,7 +12324,7 @@ packages:
dev: false
/@turf/line-slice-along/5.1.5:
- resolution: {integrity: sha1-7drQoh70efKWihG9LdcomiEy6aU=}
+ resolution: {integrity: sha512-yKvSDtULztLtlPIMowm9l8pS6XLAEpCPmrARZA0sIWFX8XrcSzISBaXZbiMMzg3nxQJMXfGIgWDk10B7+J8Tqw==}
dependencies:
'@turf/bearing': 5.1.5
'@turf/destination': 5.1.5
@@ -11951,7 +12333,7 @@ packages:
dev: false
/@turf/line-slice/5.1.5:
- resolution: {integrity: sha1-Hs/OFGKjeFeXVM7fRGTN4mgp8rU=}
+ resolution: {integrity: sha512-Fo+CuD+fj6T702BofHO+rgiXUgzCk0iO2JqMPtttMtgzfKkVTUOQoauMNS1LNNaG/7n/TfKGh5gRCEDRNaNwYA==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -11959,7 +12341,7 @@ packages:
dev: false
/@turf/line-split/5.1.5:
- resolution: {integrity: sha1-Wy30w3YZty73JbUWPPmSbVVArLc=}
+ resolution: {integrity: sha512-gtUUBwZL3hcSu5MpqHTl68hgAJBNHcr1APDj8E5o6iX5xFX+wvl4ohQXyMs5HOATCI8Iy83wLuggcY6maNw7LQ==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/helpers': 5.1.5
@@ -11974,7 +12356,7 @@ packages:
dev: false
/@turf/line-to-polygon/5.1.5:
- resolution: {integrity: sha1-ITz0Gmj4Ikd4ujnTGH3sPouBhlo=}
+ resolution: {integrity: sha512-hGiDAPd6j986kZZLDgEAkVD7O6DmIqHQliBedspoKperPJOUJJzdzSnF6OAWSsxY+j8fWtQnIo5TTqdO/KfamA==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/helpers': 5.1.5
@@ -11982,7 +12364,7 @@ packages:
dev: false
/@turf/mask/5.1.5:
- resolution: {integrity: sha1-mrD+8aJyyY/j70kvn/thggayQtU=}
+ resolution: {integrity: sha512-2eOuxA3ammZAGsjlsy/H7IpeJxjl3hrgkcKM6kTKRJGft4QyKwCxqQP7RN5j0zIYvAurgs9JOLe/dpd5sE5HXQ==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/helpers': 5.1.5
@@ -11992,7 +12374,7 @@ packages:
dev: false
/@turf/meta/5.1.6:
- resolution: {integrity: sha1-wgqGPt7Qhp+yhUje6Ik0G8y0akY=}
+ resolution: {integrity: sha512-lv+6LCgoc3LVitQZ4TScN/8a/fcctq8bIoxBTMJVq4aU8xoHeY1851Dq8MCU37EzbH33utkx8/jENaQP+aeElg==}
dependencies:
'@turf/helpers': 5.1.5
dev: false
@@ -12004,7 +12386,7 @@ packages:
dev: false
/@turf/midpoint/5.1.5:
- resolution: {integrity: sha1-4mH2srDqgSTM7/VSomLdRlydBfA=}
+ resolution: {integrity: sha512-0pDQAKHyK/zxlvUx3XNxwvqftf4sV32QxnHfqSs4AXaODUGUbPhzAD7aXgDScBeUOVLwpAzFRQfitUvUMTGC6A==}
dependencies:
'@turf/bearing': 5.1.5
'@turf/destination': 5.1.5
@@ -12013,7 +12395,7 @@ packages:
dev: false
/@turf/nearest-point-on-line/5.1.5:
- resolution: {integrity: sha1-VgauKX8VlHUkvqUaKp71HsG/nDY=}
+ resolution: {integrity: sha512-qT7BLTwToo8cq0oNoz921oLlRPJamyRg/rZgll+kNBadyDPmJI4W66riHcpM9RQcAJ6TPvDveIIBeGJH7iG88w==}
dependencies:
'@turf/bearing': 5.1.5
'@turf/destination': 5.1.5
@@ -12035,7 +12417,7 @@ packages:
dev: false
/@turf/nearest-point/5.1.5:
- resolution: {integrity: sha1-EgUN5Bw5hEMiTHl43g9iE5ANNPs=}
+ resolution: {integrity: sha512-tZQXI7OE7keNKK4OvYOJ5gervCEuu2pJ6psu59QW9yhe2Di3Gl+HAdLvVa6RZ8s5Fndr3u0JWKsmxve3fCxc9g==}
dependencies:
'@turf/clone': 5.1.5
'@turf/distance': 5.1.5
@@ -12044,14 +12426,14 @@ packages:
dev: false
/@turf/planepoint/5.1.5:
- resolution: {integrity: sha1-GLvfAG91ne9eQsagBsn53oGyt/8=}
+ resolution: {integrity: sha512-+Tp+SQ0Db2tqwLbxfXJPysT9IxcOHSMIin2dJb/j3Qn5+g0LRus6rczZl6dWNAIjqBPMawj/V/dZhMu6Q9O9wA==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
dev: false
/@turf/point-grid/5.1.5:
- resolution: {integrity: sha1-MFFBJI9Quv42zn5mukuX56sjaIc=}
+ resolution: {integrity: sha512-4ibozguP9YJ297Q7i9e8/ypGSycvt1re2jrPXTxeuZ4/L/NE5B1nOBLG+tw121nMjD+S+v2RWOtqD+FZ3Ga+ew==}
dependencies:
'@turf/boolean-within': 5.1.5
'@turf/distance': 5.1.5
@@ -12060,7 +12442,7 @@ packages:
dev: false
/@turf/point-on-feature/5.1.5:
- resolution: {integrity: sha1-MMfwMkMCd8ZBjZbSieRba/shP+c=}
+ resolution: {integrity: sha512-NTcpe5xZjybRh0aTL+7td1cm0s49GGbAt5u8Cdec4W9ix2PsehRcLUbmQIQsODN2kiVyUSpnhECIpsyN5MjX7A==}
dependencies:
'@turf/boolean-point-in-polygon': 5.1.5
'@turf/center': 5.1.5
@@ -12083,7 +12465,7 @@ packages:
dev: false
/@turf/points-within-polygon/5.1.5:
- resolution: {integrity: sha1-K4VaXfOq2lfC7oIKB1SrlJKKIzc=}
+ resolution: {integrity: sha512-nexe2AHVOY8wEBvs+CYSOp10NyOCkyZ1gkhIfsx0mzU8LPYBxD9ctjlKveheKh4AAldLcFupd/gSCBTKF1JS7A==}
dependencies:
'@turf/boolean-point-in-polygon': 5.1.5
'@turf/helpers': 5.1.5
@@ -12091,21 +12473,21 @@ packages:
dev: false
/@turf/polygon-tangents/5.1.5:
- resolution: {integrity: sha1-K/AJkUcwJbF44lDcfLmuVAm71lI=}
+ resolution: {integrity: sha512-uoZfKvFhl6rf0+CDWucru9fZ4mJB5Nsg37TS/7emrzjoVxXyOdxc/s1HFCjcKflMue7MjU/gT6AitJyrvdztDg==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
dev: false
/@turf/polygon-to-line/5.1.5:
- resolution: {integrity: sha1-I7tEjYTcTGUZmaxhGjbZHFklA2o=}
+ resolution: {integrity: sha512-kVo0owPqyccy5+qZGvaxGvMsYkgueKE2OOgX2UV/HyrXF3uI3TomK1txjApqeFsLvwuSANxesvVbYLrYiIwvGw==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
dev: false
/@turf/polygonize/5.1.5:
- resolution: {integrity: sha1-BJP6EYefOdELmtAs5qI+lC0IqjI=}
+ resolution: {integrity: sha512-qzhtuzoOhldqZHm+ZPsWAs9nDpnkcDfsr+I0twmBF+wjAmo0HKiy9++sRQ4kEePpdwbMpF07D/NdZqYdmOJkGQ==}
dependencies:
'@turf/boolean-point-in-polygon': 5.1.5
'@turf/envelope': 5.1.5
@@ -12115,7 +12497,7 @@ packages:
dev: false
/@turf/projection/5.1.5:
- resolution: {integrity: sha1-JFF+7rLzaBa6n3EueubWo2jt91c=}
+ resolution: {integrity: sha512-TWKJDFeEKQhI4Ce1+2PuOSDggn4cnMibqyUoCpIW+4KxUC1R88SE3/SYomqzwxMn00O09glHSycPkGD5JzHd8A==}
dependencies:
'@turf/clone': 5.1.5
'@turf/helpers': 5.1.5
@@ -12131,13 +12513,13 @@ packages:
dev: false
/@turf/random/5.1.5:
- resolution: {integrity: sha1-sy78k0Vgroulfo67UfJBw5+6Lns=}
+ resolution: {integrity: sha512-oitpBwEb6YXqoUkIAOVMK+vrTPxUi2rqITmtTa/FBHr6J8TDwMWq6bufE3Gmgjxsss50O2ITJunOksxrouWGDQ==}
dependencies:
'@turf/helpers': 5.1.5
dev: false
/@turf/rewind/5.1.5:
- resolution: {integrity: sha1-nqPbSmi3PB/R3RH1djGxQ8/vock=}
+ resolution: {integrity: sha512-Gdem7JXNu+G4hMllQHXRFRihJl3+pNl7qY+l4qhQFxq+hiU1cQoVFnyoleIqWKIrdK/i2YubaSwc3SCM7N5mMw==}
dependencies:
'@turf/boolean-clockwise': 5.1.5
'@turf/clone': 5.1.5
@@ -12147,7 +12529,7 @@ packages:
dev: false
/@turf/rhumb-bearing/5.1.5:
- resolution: {integrity: sha1-rPalAkJ+uMSeGM2mrg7/qwxd3NI=}
+ resolution: {integrity: sha512-zXTl2khjwf7mx2D1uPo5vgpGgP4sM2VrKDbJNKyulPu4TO4ELt8x7FsKyCBlRTzzQf284t/xnNcZOfUbkkd70g==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -12161,14 +12543,14 @@ packages:
dev: false
/@turf/rhumb-destination/5.1.5:
- resolution: {integrity: sha1-sbKuuSFUfyrAwamUtqEw+SRjx0I=}
+ resolution: {integrity: sha512-FdDUCSRfRAfsRmUaWjc76Wk32QYFJ6ckmSt6Ls6nEczO6eg/RgH1atF8CIYwR5ifl0Sk1rQzKiOSbpCyvVwQtw==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
dev: false
/@turf/rhumb-distance/5.1.5:
- resolution: {integrity: sha1-GAaFdiX0IlOE2tQT5p85U4/192U=}
+ resolution: {integrity: sha512-AGA/ky5/BJJZtzQqafy2GvJfcUXSzCCrPFp8sDRPSKBoUN4gMBHN15ijDWYYLFoWFFj0urcauVx7chQlHZ/Qfw==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -12182,13 +12564,13 @@ packages:
dev: false
/@turf/sample/5.1.5:
- resolution: {integrity: sha1-6ctEikeJzFbuPeLdZ4HiNDQ1tBE=}
+ resolution: {integrity: sha512-EJE8yx+5x7rXejTzwBdOKpvT4tOCS0jwYJfycyTVDuLUSh2rETeYdjy7EeJbofnxm9CRPXqWQMPWIBKWxNTjow==}
dependencies:
'@turf/helpers': 5.1.5
dev: false
/@turf/sector/5.1.5:
- resolution: {integrity: sha1-rCu5TBPt1gNPb9wrZwCBNdIPXgc=}
+ resolution: {integrity: sha512-dnWVifL3xWTqPPs8mfbbV9muDimNJtxRk4ogrkOLEDQ9ZZ1ALQMtQdYrg7kI3iC+L+LscV37tl+E8bayWyX8YA==}
dependencies:
'@turf/circle': 5.1.5
'@turf/helpers': 5.1.5
@@ -12198,7 +12580,7 @@ packages:
dev: false
/@turf/shortest-path/5.1.5:
- resolution: {integrity: sha1-hUroCW9rw+EwD6ynfz6PZ9j5Nas=}
+ resolution: {integrity: sha512-ZGC8kSBj02GKWiI56Z5FNdrZ+fS0xyeOUNrPJWzudAlrv9wKGaRuWoIVRLGBu0j0OuO1HCwggic2c6WV/AhP0A==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/bbox-polygon': 5.1.5
@@ -12212,7 +12594,7 @@ packages:
dev: false
/@turf/simplify/5.1.5:
- resolution: {integrity: sha1-Csjyei60IYGD7dmZjDJ1q+QIuSY=}
+ resolution: {integrity: sha512-IuBXEYdGSxbDOK3v949ajaPvs6NhjhTCTbKA6mSGuVbwGS7gzAuRiPSG4K/MvCVuQy3PKpkPcUGD+Uvt2Ov2PQ==}
dependencies:
'@turf/clean-coords': 5.1.5
'@turf/clone': 5.1.5
@@ -12221,7 +12603,7 @@ packages:
dev: false
/@turf/square-grid/5.1.5:
- resolution: {integrity: sha1-G9X3uesU8LYLwjH+/nNR0aMvGlE=}
+ resolution: {integrity: sha512-/pusEL4FmOwNWLcZfIXUyqUe0fOdkfaLO4wLhDlg/ZL1jWr/wZjhVlMU0tQ27kVN6dJTvlzNc9e0JWNw6yt2eQ==}
dependencies:
'@turf/boolean-contains': 5.1.5
'@turf/boolean-overlap': 5.1.5
@@ -12232,14 +12614,14 @@ packages:
dev: false
/@turf/square/5.1.5:
- resolution: {integrity: sha1-qnsh5gM8ySUsOlvW89iNq9b+0YA=}
+ resolution: {integrity: sha512-GgP2le9ksoW6vsVef5wFkjmWQiLPTJvcjGXqmoGWT4oMwDpvTJVQ91RBLs8qQbI4KACCQevz94N69klk3ah30Q==}
dependencies:
'@turf/distance': 5.1.5
'@turf/helpers': 5.1.5
dev: false
/@turf/standard-deviational-ellipse/5.1.5:
- resolution: {integrity: sha1-hc0oO14ayljyG9ZkEuQUtW2FIyQ=}
+ resolution: {integrity: sha512-GOaxGKeeJAXV1H3Zz2fjQ5XeSbMKz1OkFRlTDBUipiAawe/9qTCF55L87I2ZPnO80B5BaaIT+AN2n0lMcAklzA==}
dependencies:
'@turf/center-mean': 5.1.5
'@turf/ellipse': 5.1.5
@@ -12250,7 +12632,7 @@ packages:
dev: false
/@turf/tag/5.1.5:
- resolution: {integrity: sha1-0e4aUIjs/UoUEQGcmCOczypJfSA=}
+ resolution: {integrity: sha512-XI3QFpva6tEsRnzFe1tJGdAAWlzjnXZPfJ9EKShTxEW8ZgPzm92b2odjiSAt2KuQusK82ltNfdw5Frlna5xGYQ==}
dependencies:
'@turf/boolean-point-in-polygon': 5.1.5
'@turf/clone': 5.1.5
@@ -12259,20 +12641,20 @@ packages:
dev: false
/@turf/tesselate/5.1.5:
- resolution: {integrity: sha1-MqWU6cIaAEIKn5DSxD3z4RZgYc0=}
+ resolution: {integrity: sha512-Rs/jAij26bcU4OzvFXkWDase1G3kSwyuuKZPFU0t7OmJu7eQJOR12WOZLGcVxd5oBlklo4xPE4EBQUqpQUsQgg==}
dependencies:
'@turf/helpers': 5.1.5
- earcut: 2.2.3
+ earcut: 2.2.4
dev: false
/@turf/tin/5.1.5:
- resolution: {integrity: sha1-KCI+r8X76a6azKgc3P6l0UJMkX0=}
+ resolution: {integrity: sha512-lDyCTYKoThBIKmkBxBMupqEpFbvTDAYuZIs8qrWnmux2vntSb8OFGi7ZbGPC6apS2hdVwZZae3YB88Tp+Fg+xw==}
dependencies:
'@turf/helpers': 5.1.5
dev: false
/@turf/transform-rotate/5.1.5:
- resolution: {integrity: sha1-0Jbt2eMA/jFQadVNjkWMQJIh7fs=}
+ resolution: {integrity: sha512-3QKckeHKPXu5O5vEuT+nkszGDI6aknDD06ePb00+6H2oA7MZj7nj+fVQIJLs41MRb76IyKr4n5NvuKZU6idESA==}
dependencies:
'@turf/centroid': 5.1.5
'@turf/clone': 5.1.5
@@ -12285,7 +12667,7 @@ packages:
dev: false
/@turf/transform-scale/5.1.5:
- resolution: {integrity: sha1-cP064BhWz3uunxWtVhzf6PiQAbk=}
+ resolution: {integrity: sha512-t1fCZX29ONA7DJiqCKA4YZy0+hCzhppWNOZhglBUv9vKHsWCFYZDUKfFInciaypUInsZyvm8eKxxixBVPdPGsw==}
dependencies:
'@turf/bbox': 5.1.5
'@turf/center': 5.1.5
@@ -12300,7 +12682,7 @@ packages:
dev: false
/@turf/transform-translate/5.1.5:
- resolution: {integrity: sha1-Uwolf7Hccmja3Ks05nkB6yo97GM=}
+ resolution: {integrity: sha512-GdLFp7I7198oRQt311B8EjiqHupndeMSQ3Zclzki5L/niUrb1ptOIpo+mxSidSy03m+1Q5ylWlENroI1WBcQ3Q==}
dependencies:
'@turf/clone': 5.1.5
'@turf/helpers': 5.1.5
@@ -12310,7 +12692,7 @@ packages:
dev: false
/@turf/triangle-grid/5.1.5:
- resolution: {integrity: sha1-ezZ2IQhVTBTyjK/zxIsc/ILI3IE=}
+ resolution: {integrity: sha512-jmCRcynI80xsVqd+0rv0YxP6mvZn4BAaJv8dwthg2T3WfHB9OD+rNUMohMuUY8HmI0zRT3s/Ypdy2Cdri9u/tw==}
dependencies:
'@turf/distance': 5.1.5
'@turf/helpers': 5.1.5
@@ -12319,14 +12701,14 @@ packages:
dev: false
/@turf/truncate/5.1.5:
- resolution: {integrity: sha1-nu37Oxi6gfLJjT6tCUMcyhiErYk=}
+ resolution: {integrity: sha512-WjWGsRE6o1vUqULGb/O7O1eK6B4Eu6R/RBZWnF0rH0Os6WVel6tHktkeJdlKwz9WElIEO12wDIu6uKd54t7DDQ==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/meta': 5.1.6
dev: false
/@turf/turf/5.1.6:
- resolution: {integrity: sha1-wxIlkoh+0jS3VGi4qMRb+Ib7+PY=}
+ resolution: {integrity: sha512-NIjkt5jAbOrom+56ELw9ERZF6qsdf1xAIHyC9/PkDMIOQAxe7FVe2HaqbQ+x88F0q5FaSX4dtpIEf08md6h5/A==}
dependencies:
'@turf/along': 5.1.5
'@turf/area': 5.1.5
@@ -12431,14 +12813,14 @@ packages:
dev: false
/@turf/union/5.1.5:
- resolution: {integrity: sha1-UyhbYJQEf8WNlqrA6pCGXsNNRUs=}
+ resolution: {integrity: sha512-wBy1ixxC68PpsTeEDebk/EfnbI1Za5dCyY7xFY9NMzrtVEOy0l0lQ5syOsaqY4Ire+dbsDM66p2GGxmefoyIEA==}
dependencies:
'@turf/helpers': 5.1.5
turf-jsts: 1.2.3
dev: false
/@turf/unkink-polygon/5.1.5:
- resolution: {integrity: sha1-ewGEfFD7V0riV54Z5Ey6hSbSE8M=}
+ resolution: {integrity: sha512-lzSrgsfSuyxIc4pkE2qyM2dsHxR992e6oItoZAT8G58A2Ef4qc5gRocmXPWZakGx41fQobegSo7wlo4I49wyHg==}
dependencies:
'@turf/area': 5.1.5
'@turf/boolean-point-in-polygon': 5.1.5
@@ -12448,7 +12830,7 @@ packages:
dev: false
/@turf/voronoi/5.1.5:
- resolution: {integrity: sha1-6FbpQG3MLyXWbdyJhYTifC6/ymY=}
+ resolution: {integrity: sha512-Ad0HZAyYjOpMIZfDGV+Q+30M9PQHIirTyn32kWyTjEI1O6uhL5NOYjzSha4Sr77xOls3hGzKOj+JET7eDtOvsg==}
dependencies:
'@turf/helpers': 5.1.5
'@turf/invariant': 5.1.5
@@ -12459,99 +12841,122 @@ packages:
resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==}
dev: true
- /@types/babel__core/7.1.16:
- resolution: {integrity: sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==}
+ /@types/aria-query/5.0.4:
+ resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
+ dev: true
+
+ /@types/babel__core/7.20.5:
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
dependencies:
- '@babel/parser': 7.17.3
- '@babel/types': 7.17.0
- '@types/babel__generator': 7.6.3
- '@types/babel__template': 7.4.1
- '@types/babel__traverse': 7.14.2
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+ '@types/babel__generator': 7.6.8
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.20.6
- /@types/babel__generator/7.6.3:
- resolution: {integrity: sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==}
+ /@types/babel__generator/7.6.8:
+ resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.24.7
- /@types/babel__template/7.4.1:
- resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
+ /@types/babel__template/7.4.4:
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
dependencies:
- '@babel/parser': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
- /@types/babel__traverse/7.14.2:
- resolution: {integrity: sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==}
+ /@types/babel__traverse/7.20.6:
+ resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.24.7
- /@types/cheerio/0.22.31:
- resolution: {integrity: sha512-Kt7Cdjjdi2XWSfrZ53v4Of0wG3ZcmaegFXjMmz9tfNrZSkzzo36G0AL1YqSdcIA78Etjt6E609pt5h1xnQkPUw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.31.tgz}
+ /@types/cheerio/0.22.35:
+ resolution: {integrity: sha512-yD57BchKRvTV+JD53UZ6PD8KWY5g5rvvMLRnZR3EQBCZXiDT/HR+pKpMzFGlWNhFrXlo7VPZXtKvIEwZkAWOIA==}
dependencies:
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
dev: true
- /@types/d3-color/2.0.3:
- resolution: {integrity: sha512-+0EtEjBfKEDtH9Rk3u3kLOUXM5F+iZK+WvASPb0MhIZl8J8NUvGeZRwKCXl+P3HkYx5TdU4YtcibpqHkSR9n7w==}
+ /@types/d3-array/3.2.1:
+ resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
+ dev: false
+
+ /@types/d3-color/3.1.3:
+ resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
+ dev: false
+
+ /@types/d3-ease/3.0.2:
+ resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
dev: false
- /@types/d3-interpolate/2.0.2:
- resolution: {integrity: sha512-lElyqlUfIPyWG/cD475vl6msPL4aMU7eJvx1//Q177L8mdXoVPFl1djIESF2FKnc0NyaHvQlJpWwKJYwAhUoCw==}
+ /@types/d3-interpolate/3.0.4:
+ resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
dependencies:
- '@types/d3-color': 2.0.3
+ '@types/d3-color': 3.1.3
dev: false
- /@types/d3-path/1.0.9:
- resolution: {integrity: sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==}
+ /@types/d3-path/1.0.11:
+ resolution: {integrity: sha512-4pQMp8ldf7UaB/gR8Fvvy69psNHkTpD/pVw3vmEi8iZAB9EPMBruB1JvHO4BIq9QkUUd2lV1F5YXpMNj7JPBpw==}
dev: true
- /@types/d3-path/2.0.1:
- resolution: {integrity: sha512-6K8LaFlztlhZO7mwsZg7ClRsdLg3FJRzIIi6SZXDWmmSJc2x8dd2VkESbLXdk3p8cuvz71f36S0y8Zv2AxqvQw==}
+ /@types/d3-path/3.1.0:
+ resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==}
dev: false
- /@types/d3-scale/3.3.2:
- resolution: {integrity: sha512-gGqr7x1ost9px3FvIfUMi5XA/F/yAf4UkUDtdQhpH92XCT0Oa7zkkRzY61gPVJq+DxpHn/btouw5ohWkbBsCzQ==}
+ /@types/d3-scale/4.0.8:
+ resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==}
dependencies:
- '@types/d3-time': 2.1.1
+ '@types/d3-time': 3.0.3
dev: false
- /@types/d3-shape/1.3.8:
- resolution: {integrity: sha512-gqfnMz6Fd5H6GOLYixOZP/xlrMtJms9BaS+6oWxTKHNqPGZ93BkWWupQSCYm6YHqx6h9wjRupuJb90bun6ZaYg==}
+ /@types/d3-shape/1.3.12:
+ resolution: {integrity: sha512-8oMzcd4+poSLGgV0R1Q1rOlx/xdmozS4Xab7np0eamFFUYq71AU9pOCJEFnkXW2aI/oXdVYJzw6pssbSut7Z9Q==}
dependencies:
- '@types/d3-path': 1.0.9
+ '@types/d3-path': 1.0.11
dev: true
- /@types/d3-shape/2.1.3:
- resolution: {integrity: sha512-HAhCel3wP93kh4/rq+7atLdybcESZ5bRHDEZUojClyZWsRuEMo3A52NGYJSh48SxfxEU6RZIVbZL2YFZ2OAlzQ==}
+ /@types/d3-shape/3.1.6:
+ resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==}
dependencies:
- '@types/d3-path': 2.0.1
+ '@types/d3-path': 3.1.0
+ dev: false
+
+ /@types/d3-time/3.0.3:
+ resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==}
dev: false
- /@types/d3-time/2.1.1:
- resolution: {integrity: sha512-9MVYlmIgmRR31C5b4FVSWtuMmBHh2mOWQYfl7XAYOa8dsnb7iEmUmRSWSFgXFtkjxO65d7hTUHQC+RhR/9IWFg==}
+ /@types/d3-timer/3.0.2:
+ resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
dev: false
- /@types/downloadjs/1.4.2:
- resolution: {integrity: sha512-9UWO+nrRhwyKcFe45SFc98sWI8RGwpVwtZiZzi0W/dWdrp1SiUWFNANLlAXZb5QCMFDbeRiAQEhRn5btLd4a4w==}
+ /@types/downloadjs/1.4.6:
+ resolution: {integrity: sha512-mp3w70vsaiLRT9ix92fmI9Ob2yJAPZm6tShJtofo2uHbN11G2i6a0ApIEjBl/kv3e9V7Pv7jMjk1bUwYWvMHvA==}
dev: false
- /@types/draft-js/0.11.9:
- resolution: {integrity: sha512-cQJBZjjIlGaPA1tOY+wGz2KhlPtAAZOIXpUvGPxPRw5uzZ2tcj8m6Yu1QDV9YgP36+cqE3cUvgkARBzgUiuI/Q==}
+ /@types/draft-js/0.11.18:
+ resolution: {integrity: sha512-lP6yJ+EKv5tcG1dflWgDKeezdwBa8wJ7KkiNrrHqXuXhl/VGes1SKjEfKHDZqOz19KQbrAhFvNhDPWwnQXYZGQ==}
dependencies:
- '@types/react': 17.0.35
+ '@types/react': 16.14.60
immutable: 3.7.6
dev: true
- /@types/enzyme-adapter-react-16/1.0.6:
- resolution: {integrity: sha512-VonDkZ15jzqDWL8mPFIQnnLtjwebuL9YnDkqeCDYnB4IVgwUm0mwKkqhrxLL6mb05xm7qqa3IE95m8CZE9imCg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@types/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.0.6.tgz}
+ /@types/enzyme-adapter-react-16/1.0.9:
+ resolution: {integrity: sha512-z24MMxGtUL8HhXdye3tWzjp+19QTsABqLaX2oOZpxMPHRJgLfahQmOeTTrEBQd9ogW20+UmPBXD9j+XOasFHvw==}
+ dependencies:
+ '@types/enzyme': 3.10.18
+ dev: true
+
+ /@types/enzyme/3.10.18:
+ resolution: {integrity: sha512-RaO/TyyHZvXkpzinbMTZmd/S5biU4zxkvDsn22ujC29t9FMSzq8tnn8f2MxQ2P8GVhFRG5jTAL05DXKyTtpEQQ==}
dependencies:
- '@types/enzyme': 3.10.11
+ '@types/cheerio': 0.22.35
+ '@types/react': 16.14.60
dev: true
- /@types/enzyme/3.10.11:
- resolution: {integrity: sha512-LEtC7zXsQlbGXWGcnnmOI7rTyP+i1QzQv4Va91RKXDEukLDaNyxu0rXlfMiGEhJwfgTPCTb0R+Pnlj//oM9e/w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.11.tgz}
+ /@types/eslint-scope/3.7.7:
+ resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
dependencies:
- '@types/cheerio': 0.22.31
- '@types/react': 17.0.35
+ '@types/eslint': 7.29.0
+ '@types/estree': 1.0.5
dev: true
/@types/eslint-visitor-keys/1.0.0:
@@ -12560,14 +12965,14 @@ packages:
/@types/eslint/7.29.0:
resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==}
dependencies:
- '@types/estree': 0.0.50
- '@types/json-schema': 7.0.9
+ '@types/estree': 1.0.5
+ '@types/json-schema': 7.0.15
/@types/estree/0.0.39:
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
- /@types/estree/0.0.50:
- resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==}
+ /@types/estree/1.0.5:
+ resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
/@types/faker/4.1.12:
resolution: {integrity: sha512-0MEyzJrLLs1WaOCx9ULK6FzdCSj2EuxdSP9kvuxxdBEGujZYUOZ4vkPXdgu3dhyg/pOdn7VCatelYX7k0YShlA==}
@@ -12580,401 +12985,383 @@ packages:
/@types/glob/7.2.0:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
- '@types/minimatch': 3.0.5
- '@types/node': 17.0.18
+ '@types/minimatch': 5.1.2
+ '@types/node': 17.0.45
+
+ /@types/glob/8.1.0:
+ resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==}
+ dependencies:
+ '@types/minimatch': 5.1.2
+ '@types/node': 17.0.45
+ dev: true
- /@types/graceful-fs/4.1.5:
- resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==}
+ /@types/graceful-fs/4.1.9:
+ resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
dependencies:
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
- /@types/history/4.7.9:
- resolution: {integrity: sha512-MUc6zSmU3tEVnkQ78q0peeEjKWPUADMlC/t++2bI8WnAG2tvYRPIgHG8lWkXwqc8MsUF6Z2MOf+Mh5sazOmhiQ==}
+ /@types/history/4.7.11:
+ resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==}
dev: true
- /@types/hoist-non-react-statics/3.3.1:
- resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==}
+ /@types/hoist-non-react-statics/3.3.5:
+ resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==}
dependencies:
- '@types/react': 17.0.35
+ '@types/react': 16.14.60
hoist-non-react-statics: 3.3.2
/@types/html-minifier-terser/5.1.2:
resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==}
- /@types/is-function/1.0.1:
- resolution: {integrity: sha512-A79HEEiwXTFtfY+Bcbo58M2GRYzCr9itHWzbzHVFNEYCcoU/MMGwYYf721gBrnhpj1s6RGVVha/IgNFnR0Iw/Q==}
+ /@types/is-function/1.0.3:
+ resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==}
dev: true
- /@types/istanbul-lib-coverage/2.0.3:
- resolution: {integrity: sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==}
+ /@types/istanbul-lib-coverage/2.0.6:
+ resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
- /@types/istanbul-lib-report/3.0.0:
- resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
+ /@types/istanbul-lib-report/3.0.3:
+ resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
dependencies:
- '@types/istanbul-lib-coverage': 2.0.3
+ '@types/istanbul-lib-coverage': 2.0.6
/@types/istanbul-reports/1.1.2:
resolution: {integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==}
dependencies:
- '@types/istanbul-lib-coverage': 2.0.3
- '@types/istanbul-lib-report': 3.0.0
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-lib-report': 3.0.3
- /@types/istanbul-reports/3.0.1:
- resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
+ /@types/istanbul-reports/3.0.4:
+ resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
dependencies:
- '@types/istanbul-lib-report': 3.0.0
+ '@types/istanbul-lib-report': 3.0.3
- /@types/jest/27.4.0:
- resolution: {integrity: sha512-gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@types/jest/-/jest-27.4.0.tgz}
+ /@types/jest/27.5.2:
+ resolution: {integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==}
dependencies:
- jest-diff: 27.5.1
+ jest-matcher-utils: 27.5.1
pretty-format: 27.5.1
dev: true
- /@types/js-cookie/3.0.1:
- resolution: {integrity: sha512-7wg/8gfHltklehP+oyJnZrz9XBuX5ZPP4zB6UsI84utdlkRYLnOm2HfpLXazTwZA+fpGn0ir8tGNgVnMEleBGQ==}
+ /@types/js-cookie/3.0.6:
+ resolution: {integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==}
dev: true
- /@types/json-schema/7.0.9:
- resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==}
+ /@types/json-schema/7.0.15:
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
/@types/json5/0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- /@types/jsonwebtoken/8.5.8:
- resolution: {integrity: sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==}
+ /@types/jsonwebtoken/8.5.9:
+ resolution: {integrity: sha512-272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==}
dependencies:
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
dev: true
/@types/keyv/3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
dev: true
/@types/lodash.mergewith/4.6.6:
resolution: {integrity: sha512-RY/8IaVENjG19rxTZu9Nukqh0W2UrYgmBj5sdns4hWRZaV8PqR7wIKHFKzvOTjo4zVRV7sVI+yFhAJql12Kfqg==}
dependencies:
- '@types/lodash': 4.14.177
+ '@types/lodash': 4.17.5
dev: false
- /@types/lodash/4.14.177:
- resolution: {integrity: sha512-0fDwydE2clKe9MNfvXHBHF9WEahRuj+msTuQqOmAApNORFvhMYZKNGGJdCzuhheVjMps/ti0Ak/iJPACMaevvw==}
+ /@types/lodash/4.17.5:
+ resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==}
dev: false
- /@types/minimatch/3.0.5:
- resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
+ /@types/minimatch/5.1.2:
+ resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
- /@types/node/14.18.18:
- resolution: {integrity: sha512-B9EoJFjhqcQ9OmQrNorItO+OwEOORNn3S31WuiHvZY/dm9ajkB7AKD/8toessEtHHNL+58jofbq7hMMY9v4yig==}
+ /@types/node/14.18.63:
+ resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
dev: true
- /@types/node/16.11.7:
- resolution: {integrity: sha512-QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw==}
- dev: true
-
- /@types/node/17.0.18:
- resolution: {integrity: sha512-eKj4f/BsN/qcculZiRSujogjvp5O/k4lOW5m35NopjZM/QwLOR075a8pJW5hD+Rtdm2DaCVPENS6KtSQnUD6BA==}
+ /@types/node/17.0.45:
+ resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
- /@types/normalize-package-data/2.4.1:
- resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
+ /@types/normalize-package-data/2.4.4:
+ resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
- /@types/npmlog/4.1.3:
- resolution: {integrity: sha512-1TcL7YDYCtnHmLhTWbum+IIwLlvpaHoEKS2KNIngEwLzwgDeHaebaEHHbQp8IqzNQ9IYiboLKUjAf7MZqG63+w==}
+ /@types/npmlog/4.1.6:
+ resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==}
+ dependencies:
+ '@types/node': 17.0.45
dev: true
- /@types/parse-json/4.0.0:
- resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
+ /@types/parse-json/4.0.2:
+ resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
- /@types/pino-pretty/4.7.2:
- resolution: {integrity: sha512-a4/hqUb8AYNJYtWkR4cVpT9m2bcO6DUO+MLAtaLNCgYhbrleHJiUBgTSZfcFbaZwi1naAIQVKJbHVrj9YRfujQ==}
+ /@types/pino-pretty/5.0.0:
+ resolution: {integrity: sha512-N1uzqSzioqz8R3AkDbSJwcfDWeI3YMPNapSQQhnB2ISU4NYgUIcAh+hYT5ygqBM+klX4htpEhXMmoJv3J7GrdA==}
+ deprecated: This is a stub types definition. pino-pretty provides its own type definitions, so you do not need this installed.
dependencies:
- '@types/pino': 6.3.12
+ pino-pretty: 11.2.0
dev: true
- /@types/pino-std-serializers/2.4.1:
- resolution: {integrity: sha512-17XcksO47M24IVTVKPeAByWUd3Oez7EbIjXpSbzMPhXVzgjGtrOa49gKBwxH9hb8dKv58OelsWQ+A1G1l9S3wQ==}
+ /@types/pino-std-serializers/4.0.0:
+ resolution: {integrity: sha512-gXfUZx2xIBbFYozGms53fT0nvkacx/+62c8iTxrEqH5PkIGAQvDbXg2774VWOycMPbqn5YJBQ3BMsg4Li3dWbg==}
+ deprecated: This is a stub types definition. pino-std-serializers provides its own type definitions, so you do not need this installed.
dependencies:
- '@types/node': 16.11.7
+ pino-std-serializers: 7.0.0
dev: true
/@types/pino/6.3.12:
resolution: {integrity: sha512-dsLRTq8/4UtVSpJgl9aeqHvbh6pzdmjYD3C092SYgLD2TyoCqHpTJk6vp8DvCTGGc7iowZ2MoiYiVUUCcu7muw==}
dependencies:
- '@types/node': 16.11.7
- '@types/pino-pretty': 4.7.2
- '@types/pino-std-serializers': 2.4.1
- sonic-boom: 2.3.1
+ '@types/node': 17.0.45
+ '@types/pino-pretty': 5.0.0
+ '@types/pino-std-serializers': 4.0.0
+ sonic-boom: 2.8.0
dev: true
- /@types/prettier/2.4.2:
- resolution: {integrity: sha512-ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA==}
+ /@types/prettier/2.7.3:
+ resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==}
- /@types/prop-types/15.7.4:
- resolution: {integrity: sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==}
+ /@types/prop-types/15.7.12:
+ resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
- /@types/q/1.5.5:
- resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==}
+ /@types/q/1.5.8:
+ resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==}
- /@types/reach__router/1.3.9:
- resolution: {integrity: sha512-N6rqQqTTAV/zKLfK3iq9Ww3wqCEhTZvsilhl0zI09zETdVq1QGmJH6+/xnj8AFUWIrle2Cqo+PGM/Ltr1vBb9w==}
+ /@types/reach__router/1.3.15:
+ resolution: {integrity: sha512-5WEHKGglRjq/Ae3F8UQxg+GYUIhTUEiyBT9GKPoOLU/vPTn8iZrRbdzxqvarOaGludIejJykHLMdOCdhgWqaxA==}
dependencies:
- '@types/react': 17.0.39
+ '@types/react': 16.14.60
dev: true
- /@types/react-color/3.0.6:
- resolution: {integrity: sha512-OzPIO5AyRmLA7PlOyISlgabpYUa3En74LP8mTMa0veCA719SvYQov4WLMsHvCgXP+L+KI9yGhYnqZafVGG0P4w==}
+ /@types/react-color/3.0.12:
+ resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==}
dependencies:
- '@types/react': 17.0.35
- '@types/reactcss': 1.2.6
+ '@types/react': 16.14.60
+ '@types/reactcss': 1.2.12
- /@types/react-dom/16.9.14:
- resolution: {integrity: sha512-FIX2AVmPTGP30OUJ+0vadeIFJJ07Mh1m+U0rxfgyW34p3rTlXI+nlenvAxNn4BP36YyI9IJ/+UJ7Wu22N1pI7A==}
+ /@types/react-dom/16.9.24:
+ resolution: {integrity: sha512-Gcmq2JTDheyWn/1eteqyzzWKSqDjYU6KYsIvH7thb7CR5OYInAWOX+7WnKf6PaU/cbdOc4szJItcDEJO7UGmfA==}
dependencies:
- '@types/react': 16.14.21
- dev: true
-
- /@types/react-dom/17.0.11:
- resolution: {integrity: sha512-f96K3k+24RaLGVu/Y2Ng3e1EbZ8/cVJvypZWd7cy0ofCBaf2lcM46xNhycMZ2xGwbBjRql7hOlZ+e2WlJ5MH3Q==}
- dependencies:
- '@types/react': 17.0.35
+ '@types/react': 16.14.60
dev: true
/@types/react-intl/3.0.0_react@17.0.2:
resolution: {integrity: sha512-k8F3d05XQGEqSWIfK97bBjZe4z9RruXU9Wa7OZ2iUC5pdeIpzuQDZe/9C2J3Xir5//ZtAkhcv08Wfx3n5TBTQg==}
deprecated: This is a stub types definition. react-intl provides its own type definitions, so you do not need this installed.
dependencies:
- react-intl: 5.24.3_react@17.0.2
+ react-intl: 5.25.1_react@17.0.2
transitivePeerDependencies:
- react
- typescript
dev: true
- /@types/react-redux/7.1.22:
- resolution: {integrity: sha512-GxIA1kM7ClU73I6wg9IRTVwSO9GS+SAKZKe0Enj+82HMU6aoESFU2HNAdNi3+J53IaOHPiUfT3kSG4L828joDQ==}
+ /@types/react-redux/7.1.33:
+ resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==}
dependencies:
- '@types/hoist-non-react-statics': 3.3.1
- '@types/react': 17.0.35
+ '@types/hoist-non-react-statics': 3.3.5
+ '@types/react': 16.14.60
hoist-non-react-statics: 3.3.2
- redux: 4.1.2
+ redux: 4.2.1
dev: false
- /@types/react-router-dom/5.3.2:
- resolution: {integrity: sha512-ELEYRUie2czuJzaZ5+ziIp9Hhw+juEw8b7C11YNA4QdLCVbQ3qLi2l4aq8XnlqM7V31LZX8dxUuFUCrzHm6sqQ==}
+ /@types/react-router-dom/5.3.3:
+ resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
dependencies:
- '@types/history': 4.7.9
- '@types/react': 17.0.35
- '@types/react-router': 5.1.17
+ '@types/history': 4.7.11
+ '@types/react': 16.14.60
+ '@types/react-router': 5.1.20
dev: true
- /@types/react-router/5.1.17:
- resolution: {integrity: sha512-RNSXOyb3VyRs/EOGmjBhhGKTbnN6fHWvy5FNLzWfOWOGjgVUKqJZXfpKzLmgoU8h6Hj8mpALj/mbXQASOb92wQ==}
+ /@types/react-router/5.1.20:
+ resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
dependencies:
- '@types/history': 4.7.9
- '@types/react': 17.0.35
+ '@types/history': 4.7.11
+ '@types/react': 16.14.60
dev: true
/@types/react-select/3.1.2:
resolution: {integrity: sha512-ygvR/2FL87R2OLObEWFootYzkvm67LRA+URYEAcBuvKk7IXmdsnIwSGm60cVXGaqkJQHozb2Cy1t94tCYb6rJA==}
dependencies:
- '@types/react': 17.0.35
- '@types/react-dom': 17.0.11
- '@types/react-transition-group': 4.4.4
+ '@types/react': 16.14.60
+ '@types/react-dom': 16.9.24
+ '@types/react-transition-group': 4.4.10
dev: true
/@types/react-syntax-highlighter/11.0.4:
resolution: {integrity: sha512-9GfTo3a0PHwQeTVoqs0g5bS28KkSY48pp5659wA+Dp4MqceDEa8EHBqrllJvvtyusszyJhViUEap0FDvlk/9Zg==}
dependencies:
- '@types/react': 17.0.39
+ '@types/react': 16.14.60
dev: true
/@types/react-table/7.0.22:
resolution: {integrity: sha512-RAzjB7Udv23QPuIuNNRn8VBldmcFobqpNqLWXh0FXVVyIye76muzfn01WZdcTIEfmQjHts7bjJSQQVabLQgTcA==}
dependencies:
- '@types/react': 17.0.35
- dev: true
-
- /@types/react-table/7.7.8:
- resolution: {integrity: sha512-OMhbPlf+uUGte3M1WdArEKeBkyQ1XJxKvFYs+o1dGGGyaSVIqxPPQmBZ6Skkw0V9y0F/kOY7rnTD8r9GbfpBOg==}
- dependencies:
- '@types/react': 17.0.35
- dev: false
+ '@types/react': 16.14.60
/@types/react-textarea-autosize/4.3.6:
resolution: {integrity: sha512-cTf8tCem0c8A7CERYbTuF+bRFaqYu7N7HLCa6ZhUhDx8XnUsTpGx5udMWljt87JpciUKuUkImKPEsy6kcKhrcQ==}
dependencies:
- '@types/react': 17.0.39
+ '@types/react': 16.14.60
dev: true
- /@types/react-transition-group/4.4.4:
- resolution: {integrity: sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==}
+ /@types/react-transition-group/4.4.10:
+ resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==}
dependencies:
- '@types/react': 17.0.35
+ '@types/react': 16.14.60
dev: true
- /@types/react/16.14.21:
- resolution: {integrity: sha512-rY4DzPKK/4aohyWiDRHS2fotN5rhBSK6/rz1X37KzNna9HJyqtaGAbq9fVttrEPWF5ywpfIP1ITL8Xi2QZn6Eg==}
- dependencies:
- '@types/prop-types': 15.7.4
- '@types/scheduler': 0.16.2
- csstype: 3.0.10
-
- /@types/react/17.0.35:
- resolution: {integrity: sha512-r3C8/TJuri/SLZiiwwxQoLAoavaczARfT9up9b4Jr65+ErAUX3MIkU0oMOQnrpfgHme8zIqZLX7O5nnjm5Wayw==}
+ /@types/react/16.14.60:
+ resolution: {integrity: sha512-wIFmnczGsTcgwCBeIYOuy2mdXEiKZ5znU/jNOnMZPQyCcIxauMGWlX0TNG4lZ7NxRKj7YUIZRneJQSSdB2jKgg==}
dependencies:
- '@types/prop-types': 15.7.4
- '@types/scheduler': 0.16.2
- csstype: 3.0.10
+ '@types/prop-types': 15.7.12
+ '@types/scheduler': 0.16.8
+ csstype: 3.1.3
- /@types/react/17.0.39:
- resolution: {integrity: sha512-UVavlfAxDd/AgAacMa60Azl7ygyQNRwC/DsHZmKgNvPmRR5p70AJ5Q9EAmL2NWOJmeV+vVUI4IAP7GZrN8h8Ug==}
+ /@types/react/17.0.80:
+ resolution: {integrity: sha512-LrgHIu2lEtIo8M7d1FcI3BdwXWoRQwMoXOZ7+dPTW0lYREjmlHl3P0U1VD0i/9tppOuv8/sam7sOjx34TxSFbA==}
dependencies:
- '@types/prop-types': 15.7.4
- '@types/scheduler': 0.16.2
- csstype: 3.0.10
- dev: true
+ '@types/prop-types': 15.7.12
+ '@types/scheduler': 0.16.8
+ csstype: 3.1.3
- /@types/reactcss/1.2.6:
- resolution: {integrity: sha512-qaIzpCuXNWomGR1Xq8SCFTtF4v8V27Y6f+b9+bzHiv087MylI/nTCqqdChNeWS7tslgROmYB7yeiruWX7WnqNg==}
+ /@types/reactcss/1.2.12:
+ resolution: {integrity: sha512-BrXUQ86/wbbFiZv8h/Q1/Q1XOsaHneYmCb/tHe9+M8XBAAUc2EHfdY0DY22ZZjVSaXr5ix7j+zsqO2eGZub8lQ==}
dependencies:
- '@types/react': 17.0.35
+ '@types/react': 16.14.60
- /@types/recharts/1.8.23:
- resolution: {integrity: sha512-O/mIPm9f6dwRWfenOI3GQwsGta3x1YWjwqXOCZqC0MATQ6C+A+Jc8VxFnSUr4N3uYv64zkq90RwXFaMNbhJKvg==}
+ /@types/recharts/1.8.29:
+ resolution: {integrity: sha512-ulKklaVsnFIIhTQsQw226TnOibrddW1qUQNFVhoQEyY1Z7FRQrNecFCGt7msRuJseudzE9czVawZb17dK/aPXw==}
dependencies:
- '@types/d3-shape': 1.3.8
- '@types/react': 17.0.35
+ '@types/d3-shape': 1.3.12
+ '@types/react': 16.14.60
dev: true
- /@types/redux-promise/0.5.29:
- resolution: {integrity: sha512-lCBCTiJCweYtW5YgOIAG400dAi2Cr2IW6mfh1eZ8WqgxTRqPZjLAFQzxQ6oRZaB9g8mdzr28vOc3CAo8y/Na2w==}
+ /@types/redux-promise/0.5.32:
+ resolution: {integrity: sha512-ks2zqxOVumCPCPjxMNmOM8I5J1Gzs0oYhmlpjbIySuDKxgjSlOUANIy8cZq/sxl6dnShoGoIWLXcHVkUbVuKkg==}
dependencies:
redux: 3.7.2
dev: true
- /@types/resize-observer-browser/0.1.6:
- resolution: {integrity: sha512-61IfTac0s9jvNtBCpyo86QeaN8qqpMGHdK0uGKCCIy2dt5/Yk84VduHIdWAcmkC5QvdkPL0p5eWYgUZtHKKUVg==}
- dev: false
-
/@types/resolve/0.0.8:
resolution: {integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==}
dependencies:
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
- /@types/responselike/1.0.0:
- resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
+ /@types/responselike/1.0.3:
+ resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
dependencies:
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
dev: true
/@types/rimraf/2.0.5:
resolution: {integrity: sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==}
dependencies:
- '@types/glob': 7.2.0
- '@types/node': 16.11.7
+ '@types/glob': 8.1.0
+ '@types/node': 17.0.45
dev: true
- /@types/scheduler/0.16.2:
- resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
+ /@types/scheduler/0.16.8:
+ resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==}
- /@types/shelljs/0.8.9:
- resolution: {integrity: sha512-flVe1dvlrCyQJN/SGrnBxqHG+RzXrVKsmjD8WS/qYHpq5UPjfq7UWFBENP0ZuOl0g6OpAlL6iBoLSvKYUUmyQw==}
+ /@types/shelljs/0.8.15:
+ resolution: {integrity: sha512-vzmnCHl6hViPu9GNLQJ+DZFd6BQI2DBTUeOvYHqkWQLMfKAAQYMb/xAmZkTogZI/vqXHCWkqDRymDI5p0QTi5Q==}
dependencies:
'@types/glob': 7.2.0
- '@types/node': 16.11.7
+ '@types/node': 17.0.45
dev: true
/@types/sinonjs__fake-timers/8.1.1:
resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==}
dev: true
- /@types/sizzle/2.3.3:
- resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==}
+ /@types/sizzle/2.3.8:
+ resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==}
dev: true
- /@types/source-list-map/0.1.2:
- resolution: {integrity: sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==}
+ /@types/source-list-map/0.1.6:
+ resolution: {integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==}
/@types/stack-utils/1.0.1:
resolution: {integrity: sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==}
- /@types/stack-utils/2.0.1:
- resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
+ /@types/stack-utils/2.0.3:
+ resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
- /@types/styled-components/5.1.15:
- resolution: {integrity: sha512-4evch8BRI3AKgb0GAZ/sn+mSeB+Dq7meYtMi7J/0Mg98Dt1+r8fySOek7Sjw1W+Wskyjc93565o5xWAT/FdY0Q==}
+ /@types/styled-components/5.1.34:
+ resolution: {integrity: sha512-mmiVvwpYklFIv9E8qfxuPyIt/OuyIrn6gMOAMOFUO3WJfSrSE+sGUoa4PiZj77Ut7bKZpaa6o1fBKS/4TOEvnA==}
dependencies:
- '@types/hoist-non-react-statics': 3.3.1
- '@types/react': 17.0.35
- csstype: 3.0.10
+ '@types/hoist-non-react-statics': 3.3.5
+ '@types/react': 16.14.60
+ csstype: 3.1.3
- /@types/tapable/1.0.8:
- resolution: {integrity: sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==}
+ /@types/tapable/1.0.12:
+ resolution: {integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==}
- /@types/uglify-js/3.13.1:
- resolution: {integrity: sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==}
+ /@types/uglify-js/3.17.5:
+ resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==}
dependencies:
source-map: 0.6.1
- /@types/uuid/3.4.10:
- resolution: {integrity: sha512-BgeaZuElf7DEYZhWYDTc/XcLZXdVgFkVSTa13BqKvbnmUrxr3TJFKofUxCtDO9UQOdhnV+HPOESdHiHKZOJV1A==}
+ /@types/uuid/3.4.13:
+ resolution: {integrity: sha512-pAeZeUbLE4Z9Vi9wsWV2bYPTweEHeJJy0G4pEjOA/FSvy1Ad5U5Km8iDV6TKre1mjBiVNfAdVHKruP8bAh4Q5A==}
dev: false
- /@types/warning/3.0.0:
- resolution: {integrity: sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI=}
+ /@types/warning/3.0.3:
+ resolution: {integrity: sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==}
dev: false
- /@types/webpack-env/1.16.3:
- resolution: {integrity: sha512-9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw==}
+ /@types/webpack-env/1.18.5:
+ resolution: {integrity: sha512-wz7kjjRRj8/Lty4B+Kr0LN6Ypc/3SymeCCGSbaXp2leH0ZVg/PriNiOwNj4bD4uphI7A8NXS4b6Gl373sfO5mA==}
dev: true
- /@types/webpack-sources/3.2.0:
- resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==}
+ /@types/webpack-sources/3.2.3:
+ resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==}
dependencies:
- '@types/node': 17.0.18
- '@types/source-list-map': 0.1.2
- source-map: 0.7.3
+ '@types/node': 17.0.45
+ '@types/source-list-map': 0.1.6
+ source-map: 0.7.4
- /@types/webpack/4.41.32:
- resolution: {integrity: sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==}
+ /@types/webpack/4.41.38:
+ resolution: {integrity: sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==}
dependencies:
- '@types/node': 17.0.18
- '@types/tapable': 1.0.8
- '@types/uglify-js': 3.13.1
- '@types/webpack-sources': 3.2.0
- anymatch: 3.1.2
+ '@types/node': 17.0.45
+ '@types/tapable': 1.0.12
+ '@types/uglify-js': 3.17.5
+ '@types/webpack-sources': 3.2.3
+ anymatch: 3.1.3
source-map: 0.6.1
- /@types/yargs-parser/20.2.1:
- resolution: {integrity: sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==}
+ /@types/yargs-parser/21.0.3:
+ resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
/@types/yargs/13.0.12:
resolution: {integrity: sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==}
dependencies:
- '@types/yargs-parser': 20.2.1
+ '@types/yargs-parser': 21.0.3
- /@types/yargs/15.0.14:
- resolution: {integrity: sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==}
+ /@types/yargs/15.0.19:
+ resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==}
dependencies:
- '@types/yargs-parser': 20.2.1
+ '@types/yargs-parser': 21.0.3
- /@types/yargs/16.0.4:
- resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==}
+ /@types/yargs/16.0.9:
+ resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==}
dependencies:
- '@types/yargs-parser': 20.2.1
+ '@types/yargs-parser': 21.0.3
dev: true
- /@types/yauzl/2.10.0:
- resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==}
+ /@types/yauzl/2.10.3:
+ resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
requiresBuild: true
dependencies:
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
dev: true
optional: true
- /@types/zen-observable/0.8.3:
- resolution: {integrity: sha512-fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw==}
+ /@types/zen-observable/0.8.7:
+ resolution: {integrity: sha512-LKzNTjj+2j09wAo/vvVjzgw5qckJJzhdGgWHW7j69QIGdq/KnZrMAMIHQiWGl3Ccflh5/CudBAntTPYdprPltA==}
dev: false
/@typescript-eslint/eslint-plugin/2.34.0_fmavwhclprfd5wnbs7ocgoy2gu:
@@ -13012,18 +13399,18 @@ packages:
'@typescript-eslint/experimental-utils': 4.33.0_eslint@7.32.0
'@typescript-eslint/parser': 4.33.0_eslint@7.32.0
'@typescript-eslint/scope-manager': 4.33.0
- debug: 4.3.2
+ debug: 4.3.5
eslint: 7.32.0
functional-red-black-tree: 1.0.1
- ignore: 5.2.0
+ ignore: 5.3.1
regexpp: 3.2.0
- semver: 7.3.5
+ semver: 7.6.2
tsutils: 3.21.0
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/eslint-plugin/4.33.0_mxui2jzt6nwtmjfua3szbtylhm:
+ /@typescript-eslint/eslint-plugin/4.33.0_s2qqtxhzmb7vugvfoyripfgp7i:
resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -13034,17 +13421,17 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/experimental-utils': 4.33.0_e6rt7vlgxfprtuallp2t3cvyi4
- '@typescript-eslint/parser': 4.33.0_e6rt7vlgxfprtuallp2t3cvyi4
+ '@typescript-eslint/experimental-utils': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe
+ '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe
'@typescript-eslint/scope-manager': 4.33.0
- debug: 4.3.2
+ debug: 4.3.5
eslint: 7.32.0
functional-red-black-tree: 1.0.1
- ignore: 5.2.0
+ ignore: 5.3.1
regexpp: 3.2.0
- semver: 7.3.5
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
+ semver: 7.6.2
+ tsutils: 3.21.0_typescript@4.9.5
+ typescript: 4.9.5
transitivePeerDependencies:
- supports-color
@@ -13054,7 +13441,7 @@ packages:
peerDependencies:
eslint: '*'
dependencies:
- '@types/json-schema': 7.0.9
+ '@types/json-schema': 7.0.15
'@typescript-eslint/typescript-estree': 2.34.0_typescript@3.9.10
eslint: 6.8.0
eslint-scope: 5.1.1
@@ -13063,15 +13450,15 @@ packages:
- supports-color
- typescript
- /@typescript-eslint/experimental-utils/3.10.1_e6rt7vlgxfprtuallp2t3cvyi4:
+ /@typescript-eslint/experimental-utils/3.10.1_jofidmxrjzhj7l6vknpw5ecvfe:
resolution: {integrity: sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
eslint: '*'
dependencies:
- '@types/json-schema': 7.0.9
+ '@types/json-schema': 7.0.15
'@typescript-eslint/types': 3.10.1
- '@typescript-eslint/typescript-estree': 3.10.1_typescript@4.6.2
+ '@typescript-eslint/typescript-estree': 3.10.1_typescript@4.9.5
eslint: 7.32.0
eslint-scope: 5.1.1
eslint-utils: 2.1.0
@@ -13079,40 +13466,40 @@ packages:
- supports-color
- typescript
- /@typescript-eslint/experimental-utils/4.33.0_e6rt7vlgxfprtuallp2t3cvyi4:
+ /@typescript-eslint/experimental-utils/4.33.0_eslint@7.32.0:
resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
eslint: '*'
dependencies:
- '@types/json-schema': 7.0.9
+ '@types/json-schema': 7.0.15
'@typescript-eslint/scope-manager': 4.33.0
'@typescript-eslint/types': 4.33.0
- '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.6.2
+ '@typescript-eslint/typescript-estree': 4.33.0
eslint: 7.32.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@7.32.0
transitivePeerDependencies:
- supports-color
- typescript
+ dev: true
- /@typescript-eslint/experimental-utils/4.33.0_eslint@7.32.0:
+ /@typescript-eslint/experimental-utils/4.33.0_jofidmxrjzhj7l6vknpw5ecvfe:
resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
eslint: '*'
dependencies:
- '@types/json-schema': 7.0.9
+ '@types/json-schema': 7.0.15
'@typescript-eslint/scope-manager': 4.33.0
'@typescript-eslint/types': 4.33.0
- '@typescript-eslint/typescript-estree': 4.33.0
+ '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.9.5
eslint: 7.32.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@7.32.0
transitivePeerDependencies:
- supports-color
- typescript
- dev: true
/@typescript-eslint/parser/2.34.0_z6m2zvrkqxyghb4a2ijhravsdi:
resolution: {integrity: sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==}
@@ -13133,7 +13520,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/parser/4.33.0_e6rt7vlgxfprtuallp2t3cvyi4:
+ /@typescript-eslint/parser/4.33.0_eslint@7.32.0:
resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -13145,14 +13532,13 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 4.33.0
'@typescript-eslint/types': 4.33.0
- '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.6.2
- debug: 4.3.2
+ '@typescript-eslint/typescript-estree': 4.33.0
+ debug: 4.3.5
eslint: 7.32.0
- typescript: 4.6.2
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/parser/4.33.0_eslint@7.32.0:
+ /@typescript-eslint/parser/4.33.0_jofidmxrjzhj7l6vknpw5ecvfe:
resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -13164,14 +13550,15 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 4.33.0
'@typescript-eslint/types': 4.33.0
- '@typescript-eslint/typescript-estree': 4.33.0
- debug: 4.3.2
+ '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.9.5
+ debug: 4.3.5
eslint: 7.32.0
+ typescript: 4.9.5
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/parser/5.12.0_eslint@7.32.0:
- resolution: {integrity: sha512-MfSwg9JMBojMUoGjUmX+D2stoQj1CBYTCP0qnnVtu9A+YQXVKNtLjasYh+jozOcrb/wau8TCfWOkQTiOAruBog==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.12.0.tgz}
+ /@typescript-eslint/parser/5.62.0_eslint@7.32.0:
+ resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -13180,10 +13567,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.12.0
- '@typescript-eslint/types': 5.12.0
- '@typescript-eslint/typescript-estree': 5.12.0
- debug: 4.3.4
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0
+ debug: 4.3.5
eslint: 7.32.0
transitivePeerDependencies:
- supports-color
@@ -13196,12 +13583,12 @@ packages:
'@typescript-eslint/types': 4.33.0
'@typescript-eslint/visitor-keys': 4.33.0
- /@typescript-eslint/scope-manager/5.12.0:
- resolution: {integrity: sha512-GAMobtIJI8FGf1sLlUWNUm2IOkIjvn7laFWyRx7CLrv6nLBI7su+B7lbStqVlK5NdLvHRFiJo2HhiDF7Ki01WQ==}
+ /@typescript-eslint/scope-manager/5.62.0:
+ resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.12.0
- '@typescript-eslint/visitor-keys': 5.12.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
dev: true
/@typescript-eslint/types/3.10.1:
@@ -13212,8 +13599,8 @@ packages:
resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==}
engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
- /@typescript-eslint/types/5.12.0:
- resolution: {integrity: sha512-JowqbwPf93nvf8fZn5XrPGFBdIK8+yx5UEGs2QFAYFI8IWYfrzz+6zqlurGr2ctShMaJxqwsqmra3WXWjH1nRQ==}
+ /@typescript-eslint/types/5.62.0:
+ resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
@@ -13226,18 +13613,18 @@ packages:
typescript:
optional: true
dependencies:
- debug: 4.3.2
+ debug: 4.3.5
eslint-visitor-keys: 1.3.0
- glob: 7.2.0
+ glob: 7.2.3
is-glob: 4.0.3
lodash: 4.17.21
- semver: 7.3.5
+ semver: 7.6.2
tsutils: 3.21.0_typescript@3.9.10
typescript: 3.9.10
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/typescript-estree/3.10.1_typescript@4.6.2:
+ /@typescript-eslint/typescript-estree/3.10.1_typescript@4.9.5:
resolution: {integrity: sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -13248,13 +13635,13 @@ packages:
dependencies:
'@typescript-eslint/types': 3.10.1
'@typescript-eslint/visitor-keys': 3.10.1
- debug: 4.3.2
- glob: 7.2.0
+ debug: 4.3.5
+ glob: 7.2.3
is-glob: 4.0.3
lodash: 4.17.21
- semver: 7.3.5
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
+ semver: 7.6.2
+ tsutils: 3.21.0_typescript@4.9.5
+ typescript: 4.9.5
transitivePeerDependencies:
- supports-color
@@ -13269,15 +13656,15 @@ packages:
dependencies:
'@typescript-eslint/types': 4.33.0
'@typescript-eslint/visitor-keys': 4.33.0
- debug: 4.3.4
+ debug: 4.3.5
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.3.5
+ semver: 7.6.2
tsutils: 3.21.0
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/typescript-estree/4.33.0_typescript@4.6.2:
+ /@typescript-eslint/typescript-estree/4.33.0_typescript@4.9.5:
resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -13288,17 +13675,17 @@ packages:
dependencies:
'@typescript-eslint/types': 4.33.0
'@typescript-eslint/visitor-keys': 4.33.0
- debug: 4.3.4
+ debug: 4.3.5
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.3.5
- tsutils: 3.21.0_typescript@4.6.2
- typescript: 4.6.2
+ semver: 7.6.2
+ tsutils: 3.21.0_typescript@4.9.5
+ typescript: 4.9.5
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/typescript-estree/5.12.0:
- resolution: {integrity: sha512-Dd9gVeOqt38QHR0BEA8oRaT65WYqPYbIc5tRFQPkfLquVEFPD1HAtbZT98TLBkEcCkvwDYOAvuSvAD9DnQhMfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.12.0.tgz}
+ /@typescript-eslint/typescript-estree/5.62.0:
+ resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -13306,12 +13693,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.12.0
- '@typescript-eslint/visitor-keys': 5.12.0
- debug: 4.3.4
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
+ debug: 4.3.5
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.3.5
+ semver: 7.6.2
tsutils: 3.21.0
transitivePeerDependencies:
- supports-color
@@ -13330,25 +13717,31 @@ packages:
'@typescript-eslint/types': 4.33.0
eslint-visitor-keys: 2.1.0
- /@typescript-eslint/visitor-keys/5.12.0:
- resolution: {integrity: sha512-cFwTlgnMV6TgezQynx2c/4/tx9Tufbuo9LPzmWqyRC3QC4qTGkAG1C6pBr0/4I10PAI/FlYunI3vJjIcu+ZHMg==}
+ /@typescript-eslint/visitor-keys/5.62.0:
+ resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.12.0
- eslint-visitor-keys: 3.3.0
+ '@typescript-eslint/types': 5.62.0
+ eslint-visitor-keys: 3.4.3
dev: true
/@ungap/promise-all-settled/1.1.2:
resolution: {integrity: sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==}
dev: true
+ /@webassemblyjs/ast/1.12.1:
+ resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
+ dependencies:
+ '@webassemblyjs/helper-numbers': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ dev: true
+
/@webassemblyjs/ast/1.8.5:
resolution: {integrity: sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==}
dependencies:
'@webassemblyjs/helper-module-context': 1.8.5
'@webassemblyjs/helper-wasm-bytecode': 1.8.5
'@webassemblyjs/wast-parser': 1.8.5
- dev: false
/@webassemblyjs/ast/1.9.0:
resolution: {integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==}
@@ -13357,23 +13750,32 @@ packages:
'@webassemblyjs/helper-wasm-bytecode': 1.9.0
'@webassemblyjs/wast-parser': 1.9.0
+ /@webassemblyjs/floating-point-hex-parser/1.11.6:
+ resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
+ dev: true
+
/@webassemblyjs/floating-point-hex-parser/1.8.5:
resolution: {integrity: sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==}
- dev: false
/@webassemblyjs/floating-point-hex-parser/1.9.0:
resolution: {integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==}
+ /@webassemblyjs/helper-api-error/1.11.6:
+ resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
+ dev: true
+
/@webassemblyjs/helper-api-error/1.8.5:
resolution: {integrity: sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==}
- dev: false
/@webassemblyjs/helper-api-error/1.9.0:
resolution: {integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==}
+ /@webassemblyjs/helper-buffer/1.12.1:
+ resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
+ dev: true
+
/@webassemblyjs/helper-buffer/1.8.5:
resolution: {integrity: sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==}
- dev: false
/@webassemblyjs/helper-buffer/1.9.0:
resolution: {integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==}
@@ -13382,7 +13784,6 @@ packages:
resolution: {integrity: sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==}
dependencies:
'@webassemblyjs/wast-printer': 1.8.5
- dev: false
/@webassemblyjs/helper-code-frame/1.9.0:
resolution: {integrity: sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==}
@@ -13391,7 +13792,6 @@ packages:
/@webassemblyjs/helper-fsm/1.8.5:
resolution: {integrity: sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==}
- dev: false
/@webassemblyjs/helper-fsm/1.9.0:
resolution: {integrity: sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==}
@@ -13401,20 +13801,39 @@ packages:
dependencies:
'@webassemblyjs/ast': 1.8.5
mamacro: 0.0.3
- dev: false
/@webassemblyjs/helper-module-context/1.9.0:
resolution: {integrity: sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==}
dependencies:
'@webassemblyjs/ast': 1.9.0
+ /@webassemblyjs/helper-numbers/1.11.6:
+ resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
+ dependencies:
+ '@webassemblyjs/floating-point-hex-parser': 1.11.6
+ '@webassemblyjs/helper-api-error': 1.11.6
+ '@xtuc/long': 4.2.2
+ dev: true
+
+ /@webassemblyjs/helper-wasm-bytecode/1.11.6:
+ resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
+ dev: true
+
/@webassemblyjs/helper-wasm-bytecode/1.8.5:
resolution: {integrity: sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==}
- dev: false
/@webassemblyjs/helper-wasm-bytecode/1.9.0:
resolution: {integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==}
+ /@webassemblyjs/helper-wasm-section/1.12.1:
+ resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/wasm-gen': 1.12.1
+ dev: true
+
/@webassemblyjs/helper-wasm-section/1.8.5:
resolution: {integrity: sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==}
dependencies:
@@ -13422,7 +13841,6 @@ packages:
'@webassemblyjs/helper-buffer': 1.8.5
'@webassemblyjs/helper-wasm-bytecode': 1.8.5
'@webassemblyjs/wasm-gen': 1.8.5
- dev: false
/@webassemblyjs/helper-wasm-section/1.9.0:
resolution: {integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==}
@@ -13432,35 +13850,61 @@ packages:
'@webassemblyjs/helper-wasm-bytecode': 1.9.0
'@webassemblyjs/wasm-gen': 1.9.0
+ /@webassemblyjs/ieee754/1.11.6:
+ resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+ dev: true
+
/@webassemblyjs/ieee754/1.8.5:
resolution: {integrity: sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==}
dependencies:
'@xtuc/ieee754': 1.2.0
- dev: false
/@webassemblyjs/ieee754/1.9.0:
resolution: {integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==}
dependencies:
'@xtuc/ieee754': 1.2.0
+ /@webassemblyjs/leb128/1.11.6:
+ resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
+ dependencies:
+ '@xtuc/long': 4.2.2
+ dev: true
+
/@webassemblyjs/leb128/1.8.5:
resolution: {integrity: sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==}
dependencies:
'@xtuc/long': 4.2.2
- dev: false
/@webassemblyjs/leb128/1.9.0:
resolution: {integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==}
dependencies:
'@xtuc/long': 4.2.2
+ /@webassemblyjs/utf8/1.11.6:
+ resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
+ dev: true
+
/@webassemblyjs/utf8/1.8.5:
resolution: {integrity: sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==}
- dev: false
/@webassemblyjs/utf8/1.9.0:
resolution: {integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==}
+ /@webassemblyjs/wasm-edit/1.12.1:
+ resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/helper-wasm-section': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-opt': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/wast-printer': 1.12.1
+ dev: true
+
/@webassemblyjs/wasm-edit/1.8.5:
resolution: {integrity: sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==}
dependencies:
@@ -13472,7 +13916,6 @@ packages:
'@webassemblyjs/wasm-opt': 1.8.5
'@webassemblyjs/wasm-parser': 1.8.5
'@webassemblyjs/wast-printer': 1.8.5
- dev: false
/@webassemblyjs/wasm-edit/1.9.0:
resolution: {integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==}
@@ -13486,6 +13929,16 @@ packages:
'@webassemblyjs/wasm-parser': 1.9.0
'@webassemblyjs/wast-printer': 1.9.0
+ /@webassemblyjs/wasm-gen/1.12.1:
+ resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
+ dev: true
+
/@webassemblyjs/wasm-gen/1.8.5:
resolution: {integrity: sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==}
dependencies:
@@ -13494,7 +13947,6 @@ packages:
'@webassemblyjs/ieee754': 1.8.5
'@webassemblyjs/leb128': 1.8.5
'@webassemblyjs/utf8': 1.8.5
- dev: false
/@webassemblyjs/wasm-gen/1.9.0:
resolution: {integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==}
@@ -13505,6 +13957,15 @@ packages:
'@webassemblyjs/leb128': 1.9.0
'@webassemblyjs/utf8': 1.9.0
+ /@webassemblyjs/wasm-opt/1.12.1:
+ resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ dev: true
+
/@webassemblyjs/wasm-opt/1.8.5:
resolution: {integrity: sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==}
dependencies:
@@ -13512,7 +13973,6 @@ packages:
'@webassemblyjs/helper-buffer': 1.8.5
'@webassemblyjs/wasm-gen': 1.8.5
'@webassemblyjs/wasm-parser': 1.8.5
- dev: false
/@webassemblyjs/wasm-opt/1.9.0:
resolution: {integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==}
@@ -13522,6 +13982,17 @@ packages:
'@webassemblyjs/wasm-gen': 1.9.0
'@webassemblyjs/wasm-parser': 1.9.0
+ /@webassemblyjs/wasm-parser/1.12.1:
+ resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-api-error': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
+ dev: true
+
/@webassemblyjs/wasm-parser/1.8.5:
resolution: {integrity: sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==}
dependencies:
@@ -13531,7 +14002,6 @@ packages:
'@webassemblyjs/ieee754': 1.8.5
'@webassemblyjs/leb128': 1.8.5
'@webassemblyjs/utf8': 1.8.5
- dev: false
/@webassemblyjs/wasm-parser/1.9.0:
resolution: {integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==}
@@ -13552,7 +14022,6 @@ packages:
'@webassemblyjs/helper-code-frame': 1.8.5
'@webassemblyjs/helper-fsm': 1.8.5
'@xtuc/long': 4.2.2
- dev: false
/@webassemblyjs/wast-parser/1.9.0:
resolution: {integrity: sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==}
@@ -13564,13 +14033,19 @@ packages:
'@webassemblyjs/helper-fsm': 1.9.0
'@xtuc/long': 4.2.2
+ /@webassemblyjs/wast-printer/1.12.1:
+ resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@xtuc/long': 4.2.2
+ dev: true
+
/@webassemblyjs/wast-printer/1.8.5:
resolution: {integrity: sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==}
dependencies:
'@webassemblyjs/ast': 1.8.5
'@webassemblyjs/wast-parser': 1.8.5
'@xtuc/long': 4.2.2
- dev: false
/@webassemblyjs/wast-printer/1.9.0:
resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==}
@@ -13579,8 +14054,39 @@ packages:
'@webassemblyjs/wast-parser': 1.9.0
'@xtuc/long': 4.2.2
- /@wojtekmaj/enzyme-adapter-react-17/0.6.6_7ltvq4e2railvf5uya4ffxpe2a:
- resolution: {integrity: sha512-gSfhg8CiL0Vwc2UgUblGVZIy7M0KyXaZsd8+QwzV8TSVRLkGyzdLtYEcs9wRWyQTsdmOd+oRGqbVgUX7AVJxug==}
+ /@webpack-cli/configtest/1.2.0_pxtyhad64fzsb5lrmxwhxp4lga:
+ resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==}
+ peerDependencies:
+ webpack: 4.x.x || 5.x.x
+ webpack-cli: 4.x.x
+ dependencies:
+ webpack: 5.92.1_webpack-cli@4.10.0
+ webpack-cli: 4.10.0_webpack@5.92.1
+ dev: true
+
+ /@webpack-cli/info/1.5.0_webpack-cli@4.10.0:
+ resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==}
+ peerDependencies:
+ webpack-cli: 4.x.x
+ dependencies:
+ envinfo: 7.13.0
+ webpack-cli: 4.10.0_webpack@5.92.1
+ dev: true
+
+ /@webpack-cli/serve/1.7.0_webpack-cli@4.10.0:
+ resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==}
+ peerDependencies:
+ webpack-cli: 4.x.x
+ webpack-dev-server: '*'
+ peerDependenciesMeta:
+ webpack-dev-server:
+ optional: true
+ dependencies:
+ webpack-cli: 4.10.0_webpack@5.92.1
+ dev: true
+
+ /@wojtekmaj/enzyme-adapter-react-17/0.6.7_7ltvq4e2railvf5uya4ffxpe2a:
+ resolution: {integrity: sha512-B+byiwi/T1bx5hcj9wc0fUL5Hlb5giSXJzcnEfJVl2j6dGV2NJfcxDBYX0WWwIxlzNiFz8kAvlkFWI2y/nscZQ==}
peerDependencies:
enzyme: ^3.0.0
react: ^17.0.0-0
@@ -13588,9 +14094,9 @@ packages:
dependencies:
'@wojtekmaj/enzyme-adapter-utils': 0.1.4_react@17.0.2
enzyme: 3.11.0
- enzyme-shallow-equal: 1.0.4
- has: 1.0.3
- prop-types: 15.7.2
+ enzyme-shallow-equal: 1.0.7
+ has: 1.0.4
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-is: 17.0.2
@@ -13602,18 +14108,25 @@ packages:
peerDependencies:
react: ^17.0.0-0
dependencies:
- function.prototype.name: 1.1.5
- has: 1.0.3
- object.fromentries: 2.0.5
- prop-types: 15.7.2
+ function.prototype.name: 1.1.6
+ has: 1.0.4
+ object.fromentries: 2.0.8
+ prop-types: 15.8.1
react: 17.0.2
dev: true
- /@wry/context/0.6.1:
- resolution: {integrity: sha512-LOmVnY1iTU2D8tv4Xf6MVMZZ+juIJ87Kt/plMijjN20NMAXGmH4u8bS1t0uT74cZ5gwpocYueV58YwyI8y+GKw==}
+ /@wry/caches/1.0.1:
+ resolution: {integrity: sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==}
+ engines: {node: '>=8'}
+ dependencies:
+ tslib: 2.6.3
+ dev: false
+
+ /@wry/context/0.7.4:
+ resolution: {integrity: sha512-jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ==}
engines: {node: '>=8'}
dependencies:
- tslib: 2.3.1
+ tslib: 2.6.3
dev: false
/@wry/equality/0.1.11:
@@ -13622,18 +14135,25 @@ packages:
tslib: 1.14.1
dev: false
- /@wry/equality/0.5.2:
- resolution: {integrity: sha512-oVMxbUXL48EV/C0/M7gLVsoK6qRHPS85x8zECofEZOVvxGmIPLA9o5Z27cc2PoAyZz1S2VoM2A7FLAnpfGlneA==}
+ /@wry/equality/0.5.7:
+ resolution: {integrity: sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==}
+ engines: {node: '>=8'}
+ dependencies:
+ tslib: 2.6.3
+ dev: false
+
+ /@wry/trie/0.4.3:
+ resolution: {integrity: sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w==}
engines: {node: '>=8'}
dependencies:
- tslib: 2.3.1
+ tslib: 2.6.3
dev: false
- /@wry/trie/0.3.1:
- resolution: {integrity: sha512-WwB53ikYudh9pIorgxrkHKrQZcCqNM/Q/bDzZBffEaGUKGuHrRb3zZUT9Sh2qw9yogC7SsdRmQ1ER0pqvd3bfw==}
+ /@wry/trie/0.5.0:
+ resolution: {integrity: sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==}
engines: {node: '>=8'}
dependencies:
- tslib: 2.3.1
+ tslib: 2.6.3
dev: false
/@xtuc/ieee754/1.2.0:
@@ -13646,18 +14166,26 @@ packages:
resolution: {integrity: sha512-uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg==}
dev: false
- /abab/2.0.5:
- resolution: {integrity: sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==}
+ /abab/2.0.6:
+ resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
+ deprecated: Use your platform's native atob() and btoa() methods instead
/abbrev/1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
- /accepts/1.3.7:
- resolution: {integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==}
+ /abort-controller/3.0.0:
+ resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+ engines: {node: '>=6.5'}
+ dependencies:
+ event-target-shim: 5.0.1
+ dev: true
+
+ /accepts/1.3.8:
+ resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
dependencies:
- mime-types: 2.1.34
- negotiator: 0.6.2
+ mime-types: 2.1.35
+ negotiator: 0.6.3
/acorn-globals/4.3.4:
resolution: {integrity: sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==}
@@ -13671,6 +14199,14 @@ packages:
acorn: 7.4.1
acorn-walk: 7.2.0
+ /acorn-import-attributes/1.9.5_acorn@8.11.3:
+ resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
+ peerDependencies:
+ acorn: ^8
+ dependencies:
+ acorn: 8.11.3
+ dev: true
+
/acorn-jsx/5.3.2_acorn@7.4.1:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@@ -13686,8 +14222,8 @@ packages:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
- /acorn-walk/8.2.0:
- resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
+ /acorn-walk/8.3.2:
+ resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
dev: true
@@ -13706,8 +14242,8 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- /acorn/8.5.0:
- resolution: {integrity: sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==}
+ /acorn/8.11.3:
+ resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -13715,6 +14251,11 @@ packages:
resolution: {integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==}
engines: {node: '>= 0.12.0'}
+ /address/1.2.2:
+ resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
+ engines: {node: '>= 10.0.0'}
+ dev: true
+
/adjust-sourcemap-loader/2.0.0:
resolution: {integrity: sha512-4hFsTsn58+YjrU9qKzML2JSSDqKvN8mUGQ0nNIrfPi8hmIONT4L3uUaT6MKdMsZ9AjsU6D2xDkZxCkbQPxChrA==}
dependencies:
@@ -13729,14 +14270,14 @@ packages:
resolution: {integrity: sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==}
engines: {node: '>=8.9'}
dependencies:
- loader-utils: 2.0.2
- regex-parser: 2.2.11
+ loader-utils: 2.0.4
+ regex-parser: 2.3.0
/agent-base/6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
dependencies:
- debug: 4.3.2
+ debug: 4.3.5
transitivePeerDependencies:
- supports-color
@@ -13750,55 +14291,57 @@ packages:
/airbnb-js-shims/2.2.1:
resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==}
dependencies:
- array-includes: 3.1.4
- array.prototype.flat: 1.2.5
- array.prototype.flatmap: 1.2.5
- es5-shim: 4.6.2
- es6-shim: 0.35.6
- function.prototype.name: 1.1.5
- globalthis: 1.0.2
- object.entries: 1.1.5
- object.fromentries: 2.0.5
- object.getownpropertydescriptors: 2.1.3
- object.values: 1.1.5
- promise.allsettled: 1.0.5
- promise.prototype.finally: 3.1.3
- string.prototype.matchall: 4.0.6
- string.prototype.padend: 3.1.3
- string.prototype.padstart: 3.1.3
- symbol.prototype.description: 1.0.5
+ array-includes: 3.1.8
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ es5-shim: 4.6.7
+ es6-shim: 0.35.8
+ function.prototype.name: 1.1.6
+ globalthis: 1.0.4
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.getownpropertydescriptors: 2.1.8
+ object.values: 1.2.0
+ promise.allsettled: 1.0.7
+ promise.prototype.finally: 3.1.8
+ string.prototype.matchall: 4.0.11
+ string.prototype.padend: 3.1.6
+ string.prototype.padstart: 3.1.6
+ symbol.prototype.description: 1.0.6
dev: true
/airbnb-prop-types/2.16.0_react@16.14.0:
resolution: {integrity: sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==}
+ deprecated: This package has been renamed to 'prop-types-tools'
peerDependencies:
react: ^0.14 || ^15.0.0 || ^16.0.0-alpha
dependencies:
- array.prototype.find: 2.1.2
- function.prototype.name: 1.1.5
+ array.prototype.find: 2.2.3
+ function.prototype.name: 1.1.6
is-regex: 1.1.4
- object-is: 1.1.5
- object.assign: 4.1.2
- object.entries: 1.1.5
- prop-types: 15.7.2
- prop-types-exact: 1.2.0
+ object-is: 1.1.6
+ object.assign: 4.1.5
+ object.entries: 1.1.8
+ prop-types: 15.8.1
+ prop-types-exact: 1.2.4
react: 16.14.0
react-is: 16.13.1
dev: true
/airbnb-prop-types/2.16.0_react@17.0.2:
resolution: {integrity: sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==}
+ deprecated: This package has been renamed to 'prop-types-tools'
peerDependencies:
react: ^0.14 || ^15.0.0 || ^16.0.0-alpha
dependencies:
- array.prototype.find: 2.1.2
- function.prototype.name: 1.1.5
+ array.prototype.find: 2.2.3
+ function.prototype.name: 1.1.6
is-regex: 1.1.4
- object-is: 1.1.5
- object.assign: 4.1.2
- object.entries: 1.1.5
- prop-types: 15.7.2
- prop-types-exact: 1.2.0
+ object-is: 1.1.6
+ object.assign: 4.1.5
+ object.entries: 1.1.8
+ prop-types: 15.8.1
+ prop-types-exact: 1.2.4
react: 17.0.2
react-is: 16.13.1
dev: true
@@ -13834,8 +14377,8 @@ packages:
uri-js: 4.4.1
dev: false
- /ajv/8.9.0:
- resolution: {integrity: sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==}
+ /ajv/8.16.0:
+ resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==}
dependencies:
fast-deep-equal: 3.1.3
json-schema-traverse: 1.0.0
@@ -13846,11 +14389,11 @@ packages:
resolution: {integrity: sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==}
/amdefine/1.0.1:
- resolution: {integrity: sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=}
+ resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==}
engines: {node: '>=0.4.2'}
/ansi-align/2.0.0:
- resolution: {integrity: sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=}
+ resolution: {integrity: sha512-TdlOggdA/zURfMYa7ABC66j+oqfMew58KpJMbUlH3bcZP1b+cBHIHDDn5uH9INsxrHBPjsqM0tDB4jPTF/vgJA==}
dependencies:
string-width: 2.1.1
dev: false
@@ -13867,6 +14410,11 @@ packages:
/ansi-colors/4.1.1:
resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==}
engines: {node: '>=6'}
+ dev: true
+
+ /ansi-colors/4.1.3:
+ resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
+ engines: {node: '>=6'}
/ansi-escapes/3.2.0:
resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==}
@@ -13893,12 +14441,12 @@ packages:
resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
engines: {node: '>=0.10.0'}
- /ansi-regex/3.0.0:
- resolution: {integrity: sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=}
+ /ansi-regex/3.0.1:
+ resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
engines: {node: '>=4'}
- /ansi-regex/4.1.0:
- resolution: {integrity: sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==}
+ /ansi-regex/4.1.1:
+ resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
engines: {node: '>=6'}
/ansi-regex/5.0.1:
@@ -13906,7 +14454,7 @@ packages:
engines: {node: '>=8'}
/ansi-styles/2.2.1:
- resolution: {integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=}
+ resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
engines: {node: '>=0.10.0'}
/ansi-styles/3.2.1:
@@ -13958,72 +14506,72 @@ packages:
transitivePeerDependencies:
- supports-color
- /anymatch/3.1.2:
- resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==}
+ /anymatch/3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
dependencies:
normalize-path: 3.0.0
- picomatch: 2.3.0
+ picomatch: 2.3.1
- /apollo-cache/1.3.5_graphql@15.7.2:
+ /apollo-cache/1.3.5_graphql@15.8.0:
resolution: {integrity: sha512-1XoDy8kJnyWY/i/+gLTEbYLnoiVtS8y7ikBr/IfmML4Qb+CM7dEEbIUOjnY716WqmZ/UpXIxTfJsY7rMcqiCXA==}
peerDependencies:
graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0
dependencies:
- apollo-utilities: 1.3.4_graphql@15.7.2
- graphql: 15.7.2
+ apollo-utilities: 1.3.4_graphql@15.8.0
+ graphql: 15.8.0
tslib: 1.14.1
dev: false
- /apollo-client/2.6.10_graphql@15.7.2:
+ /apollo-client/2.6.10_graphql@15.8.0:
resolution: {integrity: sha512-jiPlMTN6/5CjZpJOkGeUV0mb4zxx33uXWdj/xQCfAMkuNAC3HN7CvYDyMHHEzmcQ5GV12LszWoQ/VlxET24CtA==}
peerDependencies:
graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0
dependencies:
- '@types/zen-observable': 0.8.3
- apollo-cache: 1.3.5_graphql@15.7.2
- apollo-link: 1.2.14_graphql@15.7.2
- apollo-utilities: 1.3.4_graphql@15.7.2
- graphql: 15.7.2
+ '@types/zen-observable': 0.8.7
+ apollo-cache: 1.3.5_graphql@15.8.0
+ apollo-link: 1.2.14_graphql@15.8.0
+ apollo-utilities: 1.3.4_graphql@15.8.0
+ graphql: 15.8.0
symbol-observable: 1.2.0
ts-invariant: 0.4.4
tslib: 1.14.1
zen-observable: 0.8.15
dev: false
- /apollo-link/1.2.14_graphql@15.7.2:
+ /apollo-link/1.2.14_graphql@15.8.0:
resolution: {integrity: sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==}
peerDependencies:
graphql: ^0.11.3 || ^0.12.3 || ^0.13.0 || ^14.0.0 || ^15.0.0
dependencies:
- apollo-utilities: 1.3.4_graphql@15.7.2
- graphql: 15.7.2
+ apollo-utilities: 1.3.4_graphql@15.8.0
+ graphql: 15.8.0
ts-invariant: 0.4.4
tslib: 1.14.1
zen-observable-ts: 0.8.21
dev: false
- /apollo-utilities/1.3.4_graphql@15.7.2:
+ /apollo-utilities/1.3.4_graphql@15.8.0:
resolution: {integrity: sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==}
peerDependencies:
graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0
dependencies:
'@wry/equality': 0.1.11
fast-json-stable-stringify: 2.1.0
- graphql: 15.7.2
+ graphql: 15.8.0
ts-invariant: 0.4.4
tslib: 1.14.1
dev: false
/app-root-dir/1.0.2:
- resolution: {integrity: sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=}
+ resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==}
dev: true
/append-transform/2.0.0:
resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==}
engines: {node: '>=8'}
dependencies:
- default-require-extensions: 3.0.0
+ default-require-extensions: 3.0.1
dev: true
/aproba/1.2.0:
@@ -14033,21 +14581,26 @@ packages:
resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
/archy/1.0.0:
- resolution: {integrity: sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=}
+ resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==}
dev: true
/are-we-there-yet/1.1.7:
resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==}
+ deprecated: This package is no longer supported.
dependencies:
delegates: 1.0.0
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
/arg/2.0.0:
resolution: {integrity: sha512-XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w==}
dev: false
/arg/4.1.3:
- resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz}
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
+ dev: true
+
+ /arg/5.0.2:
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
dev: true
/argparse/1.0.10:
@@ -14059,15 +14612,15 @@ packages:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: true
- /aria-hidden/1.1.3:
- resolution: {integrity: sha512-RhVWFtKH5BiGMycI72q2RAFMLQi8JP9bLuQXgR5a8Znp7P5KOIADSJeyfI8PCVxLEp067B2HbP5JIiI/PXIZeA==}
- engines: {node: '>=8.5.0'}
+ /aria-hidden/1.2.4:
+ resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
+ engines: {node: '>=10'}
dependencies:
- tslib: 1.14.1
+ tslib: 2.6.3
dev: false
/aria-query/3.0.0:
- resolution: {integrity: sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=}
+ resolution: {integrity: sha512-majUxHgLehQTeSA+hClx+DY09OVUqG3GtezWkF1krgLGNdlDu9l9V8DaqNMWbq4Eddc8wsyDA0hpDUtnYxQEXw==}
dependencies:
ast-types-flow: 0.0.7
commander: 2.20.3
@@ -14077,19 +14630,26 @@ packages:
resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
engines: {node: '>=6.0'}
dependencies:
- '@babel/runtime': 7.17.2
- '@babel/runtime-corejs3': 7.16.3
+ '@babel/runtime': 7.13.10
+ '@babel/runtime-corejs3': 7.24.7
+ dev: true
- /aria-query/5.0.0:
- resolution: {integrity: sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==}
- engines: {node: '>=6.0'}
+ /aria-query/5.1.3:
+ resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
+ dependencies:
+ deep-equal: 2.2.3
dev: true
+ /aria-query/5.3.0:
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+ dependencies:
+ dequal: 2.0.3
+
/arity-n/1.0.4:
resolution: {integrity: sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ==}
/arr-diff/2.0.0:
- resolution: {integrity: sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=}
+ resolution: {integrity: sha512-dtXTVMkh6VkEEA7OhXnN1Ecb8aAGFdZ1LFxtOCoqj4qkyOJMt7+qs6Ahdy6p/NQCPYsRSXXivhSB/J5E9jmYKA==}
engines: {node: '>=0.10.0'}
dependencies:
arr-flatten: 1.1.0
@@ -14108,11 +14668,18 @@ packages:
resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
engines: {node: '>=0.10.0'}
- /array-equal/1.0.0:
- resolution: {integrity: sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=}
+ /array-buffer-byte-length/1.0.1:
+ resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ is-array-buffer: 3.0.4
+
+ /array-equal/1.0.2:
+ resolution: {integrity: sha512-gUHx76KtnhEgB3HOuFYiCm3FIdEs6ocM2asHvNTkfu/Y09qQVrrVVaOKENmS2KkSaGoxgXNqC+ZVtR/n0MOkSA==}
/array-find-index/1.0.2:
- resolution: {integrity: sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=}
+ resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==}
engines: {node: '>=0.10.0'}
/array-flatten/1.1.1:
@@ -14122,17 +14689,18 @@ packages:
resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
/array-from/2.1.1:
- resolution: {integrity: sha1-z+nYwmYoudxa7MYqn12PHzUsEZU=}
+ resolution: {integrity: sha512-GQTc6Uupx1FCavi5mPzBvVT7nEOeWMmUA9P95wpfpW1XwMSKs+KaymD5C2Up7KAUKg/mYwbsUYzdZWcoajlNZg==}
dev: false
- /array-includes/3.1.4:
- resolution: {integrity: sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==}
+ /array-includes/3.1.8:
+ resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
- get-intrinsic: 1.1.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.4
is-string: 1.0.7
/array-union/1.0.2:
@@ -14150,7 +14718,7 @@ packages:
engines: {node: '>=0.10.0'}
/array-unique/0.2.1:
- resolution: {integrity: sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=}
+ resolution: {integrity: sha512-G2n5bG5fSUCpnsXz4+8FUkYsGPkNfLn9YvS66U5qbTIXI2Ynnlo4Bi42bWv+omKUCqz+ejzfClwne0alJWJPhg==}
engines: {node: '>=0.10.0'}
dev: true
optional: true
@@ -14159,59 +14727,131 @@ packages:
resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
engines: {node: '>=0.10.0'}
- /array.prototype.filter/1.0.1:
- resolution: {integrity: sha512-Dk3Ty7N42Odk7PjU/Ci3zT4pLj20YvuVnneG/58ICM6bt4Ij5kZaJTVQ9TSaWaIECX2sFyz4KItkVZqHNnciqw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.1.tgz}
+ /array.prototype.filter/1.0.4:
+ resolution: {integrity: sha512-r+mCJ7zXgXElgR4IRC+fkvNCeoaavWBs6EdCso5Tbcf+iEMKzBU/His60lt34WEZ9vlb8wDkZvQGcVI5GwkfoQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
es-array-method-boxes-properly: 1.0.0
+ es-object-atoms: 1.0.0
is-string: 1.0.7
dev: true
- /array.prototype.find/2.1.2:
- resolution: {integrity: sha512-00S1O4ewO95OmmJW7EesWfQlrCrLEL8kZ40w3+GkLX2yTt0m2ggcePPa2uHPJ9KUmJvwRq+lCV9bD8Yim23x/Q==}
+ /array.prototype.find/2.2.3:
+ resolution: {integrity: sha512-fO/ORdOELvjbbeIfZfzrXFMhYHGofRGqd+am9zm3tZ4GlJINj/pA2eITyfd65Vg6+ZbHd/Cys7stpoRSWtQFdA==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ es-shim-unscopables: 1.0.2
dev: true
- /array.prototype.flat/1.2.5:
- resolution: {integrity: sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==}
+ /array.prototype.findlast/1.2.5:
+ resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-shim-unscopables: 1.0.2
+
+ /array.prototype.findlastindex/1.2.5:
+ resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-shim-unscopables: 1.0.2
+
+ /array.prototype.flat/1.3.2:
+ resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-shim-unscopables: 1.0.2
- /array.prototype.flatmap/1.2.5:
- resolution: {integrity: sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==}
+ /array.prototype.flatmap/1.3.2:
+ resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-shim-unscopables: 1.0.2
- /array.prototype.map/1.0.4:
- resolution: {integrity: sha512-Qds9QnX7A0qISY7JT5WuJO0NJPE9CMlC6JzHQfhpqAAQQzufVRoeH7EzUY5GcPTx72voG8LV/5eo+b8Qi8hmhA==}
+ /array.prototype.map/1.0.7:
+ resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
es-array-method-boxes-properly: 1.0.0
+ es-object-atoms: 1.0.0
is-string: 1.0.7
dev: true
+ /array.prototype.reduce/1.0.7:
+ resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-array-method-boxes-properly: 1.0.0
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ is-string: 1.0.7
+
+ /array.prototype.toreversed/1.1.2:
+ resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-shim-unscopables: 1.0.2
+
+ /array.prototype.tosorted/1.1.4:
+ resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-shim-unscopables: 1.0.2
+
+ /arraybuffer.prototype.slice/1.0.3:
+ resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ is-array-buffer: 3.0.4
+ is-shared-array-buffer: 1.0.3
+
/arrgv/1.0.2:
resolution: {integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==}
engines: {node: '>=8.0.0'}
dev: true
/arrify/1.0.1:
- resolution: {integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=}
+ resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
engines: {node: '>=0.10.0'}
/arrify/2.0.1:
@@ -14221,13 +14861,12 @@ packages:
/asap/2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- /asn1.js/5.4.1:
- resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==}
+ /asn1.js/4.10.1:
+ resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==}
dependencies:
bn.js: 4.12.0
inherits: 2.0.4
minimalistic-assert: 1.0.1
- safer-buffer: 2.1.2
/asn1/0.2.6:
resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
@@ -14239,16 +14878,16 @@ packages:
engines: {node: '>=0.8'}
/assert/1.4.1:
- resolution: {integrity: sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=}
+ resolution: {integrity: sha512-N+aAxov+CKVS3JuhDIQFr24XvZvwE96Wlhk9dytTg/GmwWoghdOvR8dspx8MVz71O+Y0pA3UPqHF68D6iy8UvQ==}
dependencies:
util: 0.10.3
dev: false
- /assert/1.5.0:
- resolution: {integrity: sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==}
+ /assert/1.5.1:
+ resolution: {integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==}
dependencies:
- object-assign: 4.1.1
- util: 0.10.3
+ object.assign: 4.1.5
+ util: 0.10.4
/assertion-error/1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
@@ -14259,12 +14898,16 @@ packages:
/ast-types-flow/0.0.7:
resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
+ dev: false
+
+ /ast-types-flow/0.0.8:
+ resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
/ast-types/0.14.2:
resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==}
engines: {node: '>=4'}
dependencies:
- tslib: 2.3.1
+ tslib: 2.6.3
dev: true
/astral-regex/1.0.0:
@@ -14275,22 +14918,22 @@ packages:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
- /async-each/1.0.3:
- resolution: {integrity: sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==}
+ /async-each/1.0.6:
+ resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==}
/async-foreach/0.1.3:
- resolution: {integrity: sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=}
+ resolution: {integrity: sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA==}
/async-limiter/1.0.1:
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
- /async/2.6.3:
- resolution: {integrity: sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==}
+ /async/2.6.4:
+ resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
dependencies:
lodash: 4.17.21
- /async/3.2.3:
- resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==}
+ /async/3.2.5:
+ resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
dev: true
/asynckit/0.4.0:
@@ -14313,19 +14956,19 @@ packages:
resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==}
engines: {node: '>=8.0.0'}
- /autoprefixer/10.4.2_postcss@8.4.5:
- resolution: {integrity: sha512-9fOPpHKuDW1w/0EKfRmVnxTDt8166MAnLI3mgZ1JCnhNtYWxcJ6Ud5CO/AVOZi/AvFa8DY9RTy3h3+tFBlrrdQ==}
+ /autoprefixer/10.4.19_postcss@8.4.38:
+ resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.20.0
- caniuse-lite: 1.0.30001312
- fraction.js: 4.1.3
+ browserslist: 4.23.1
+ caniuse-lite: 1.0.30001632
+ fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.0.0
- postcss: 8.4.5
+ picocolors: 1.0.1
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
@@ -14333,8 +14976,8 @@ packages:
resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==}
hasBin: true
dependencies:
- browserslist: 4.20.0
- caniuse-lite: 1.0.30001314
+ browserslist: 4.23.1
+ caniuse-lite: 1.0.30001632
normalize-range: 0.1.2
num2fraction: 1.2.2
picocolors: 0.2.1
@@ -14347,14 +14990,14 @@ packages:
hasBin: true
dependencies:
'@concordance/react': 2.0.0
- acorn: 8.5.0
- acorn-walk: 8.2.0
+ acorn: 8.11.3
+ acorn-walk: 8.3.2
ansi-styles: 5.2.0
arrgv: 1.0.2
arrify: 2.0.1
callsites: 3.1.0
chalk: 4.1.2
- chokidar: 3.5.2
+ chokidar: 3.6.0
chunkd: 2.0.1
ci-info: 2.0.0
ci-parallel-vars: 1.0.1
@@ -14364,15 +15007,15 @@ packages:
code-excerpt: 3.0.0
common-path-prefix: 3.0.0
concordance: 5.0.4
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
currently-unhandled: 0.4.1
- debug: 4.3.2
- del: 6.0.0
+ debug: 4.3.5
+ del: 6.1.1
emittery: 0.8.1
equal-length: 1.0.1
figures: 3.2.0
globby: 11.1.0
- ignore-by-default: 2.0.0
+ ignore-by-default: 2.1.0
import-local: 3.1.0
indent-string: 4.0.0
is-error: 2.2.2
@@ -14386,15 +15029,15 @@ packages:
ora: 5.4.1
p-event: 4.2.0
p-map: 4.0.0
- picomatch: 2.3.0
+ picomatch: 2.3.1
pkg-conf: 3.1.0
plur: 4.0.0
pretty-ms: 7.0.1
read-pkg: 5.2.0
resolve-cwd: 3.0.0
slash: 3.0.0
- source-map-support: 0.5.20
- stack-utils: 2.0.5
+ source-map-support: 0.5.21
+ stack-utils: 2.0.6
strip-ansi: 6.0.1
supertap: 2.0.0
temp-dir: 2.0.0
@@ -14406,51 +15049,74 @@ packages:
- supports-color
dev: true
- /aws-sdk/2.1030.0:
- resolution: {integrity: sha512-to0STOb8DsSGuSsUb/WCbg/UFnMGfIYavnJH5ZlRCHzvCFjTyR+vfE8ku+qIZvfFM4+5MNTQC/Oxfun2X/TuyA==}
+ /available-typed-arrays/1.0.7:
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ possible-typed-array-names: 1.0.0
+
+ /aws-sdk/2.1639.0:
+ resolution: {integrity: sha512-3vi9ONXhROfXTjsulFurKtJ/vBjiXirhwrRY6C7QRJyI/+m9lphtBivSYynnu7q2saAqC9ArlkEWQLRFUPy+Zg==}
+ engines: {node: '>= 10.0.0'}
+ requiresBuild: true
+ dependencies:
+ buffer: 4.9.2
+ events: 1.1.1
+ ieee754: 1.1.13
+ jmespath: 0.16.0
+ querystring: 0.2.0
+ sax: 1.2.1
+ url: 0.10.3
+ util: 0.12.5
+ uuid: 8.0.0
+ xml2js: 0.6.2
+ dev: false
+
+ /aws-sdk/2.1649.0:
+ resolution: {integrity: sha512-iKwUomvBwzlrcX83PU60SW8KgLP+zNSQtl+lVnJkxRdbehS/p/wTdofby88TgMGDBHrWppreiaYC1fToB8Wznw==}
engines: {node: '>= 10.0.0'}
requiresBuild: true
dependencies:
buffer: 4.9.2
events: 1.1.1
ieee754: 1.1.13
- jmespath: 0.15.0
+ jmespath: 0.16.0
querystring: 0.2.0
sax: 1.2.1
url: 0.10.3
- uuid: 3.3.2
- xml2js: 0.4.19
+ util: 0.12.5
+ uuid: 8.0.0
+ xml2js: 0.6.2
dev: false
+ optional: true
/aws-sign2/0.7.0:
resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
- /aws4/1.11.0:
- resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==}
+ /aws4/1.13.0:
+ resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==}
- /axe-core/4.3.5:
- resolution: {integrity: sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA==}
+ /axe-core/4.7.0:
+ resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
engines: {node: '>=4'}
- /axios-mock-adapter/1.20.0_axios@0.18.1:
- resolution: {integrity: sha512-shZRhTjLP0WWdcvHKf3rH3iW9deb3UdKbdnKUoHmmsnBhVXN3sjPJM6ZvQ2r/ywgvBVQrMnjrSyQab60G1sr2w==}
+ /axios-mock-adapter/1.22.0_axios@0.18.1:
+ resolution: {integrity: sha512-dmI0KbkyAhntUR05YY96qg2H6gg0XMl2+qTW0xmYg6Up+BFBAJYRLROMXRdDEL06/Wqwa0TJThAYvFtSFdRCZw==}
peerDependencies:
- axios: '>= 0.9.0'
+ axios: '>= 0.17.0'
dependencies:
axios: 0.18.1
fast-deep-equal: 3.1.3
- is-blob: 2.1.0
is-buffer: 2.0.5
dev: false
- /axios-mock-adapter/1.20.0_axios@0.21.4:
- resolution: {integrity: sha512-shZRhTjLP0WWdcvHKf3rH3iW9deb3UdKbdnKUoHmmsnBhVXN3sjPJM6ZvQ2r/ywgvBVQrMnjrSyQab60G1sr2w==}
+ /axios-mock-adapter/1.22.0_axios@0.21.4:
+ resolution: {integrity: sha512-dmI0KbkyAhntUR05YY96qg2H6gg0XMl2+qTW0xmYg6Up+BFBAJYRLROMXRdDEL06/Wqwa0TJThAYvFtSFdRCZw==}
peerDependencies:
- axios: '>= 0.9.0'
+ axios: '>= 0.17.0'
dependencies:
axios: 0.21.4
fast-deep-equal: 3.1.3
- is-blob: 2.1.0
is-buffer: 2.0.5
dev: true
@@ -14467,31 +15133,38 @@ packages:
/axios/0.21.4:
resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
dependencies:
- follow-redirects: 1.14.5
+ follow-redirects: 1.15.6
transitivePeerDependencies:
- debug
- /axios/0.21.4_debug@4.3.2:
- resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
+ /axios/0.24.0:
+ resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==}
dependencies:
- follow-redirects: 1.14.5_debug@4.3.2
+ follow-redirects: 1.15.6
transitivePeerDependencies:
- debug
- dev: true
+ dev: false
- /axios/0.24.0:
- resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==}
+ /axios/0.27.2_debug@4.3.4:
+ resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
dependencies:
- follow-redirects: 1.14.5
+ follow-redirects: 1.15.6_debug@4.3.4
+ form-data: 4.0.0
transitivePeerDependencies:
- debug
- dev: false
+ dev: true
/axobject-query/2.2.0:
resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
+ dev: false
+
+ /axobject-query/3.2.1:
+ resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
+ dependencies:
+ dequal: 2.0.3
/babel-cli/6.26.0:
- resolution: {integrity: sha1-UCq1SHTX24itALiHoGODzgPQAvE=}
+ resolution: {integrity: sha512-wau+BDtQfuSBGQ9PzzFL3REvR9Sxnd4LKwtcHAiPjhugA7K/80vpHXafj+O5bAqJOuSefjOx5ZJnNSR2J1Qw6Q==}
hasBin: true
dependencies:
babel-core: 6.26.3
@@ -14499,9 +15172,9 @@ packages:
babel-register: 6.26.0
babel-runtime: 6.26.0
commander: 2.20.3
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
fs-readdir-recursive: 1.1.0
- glob: 7.2.0
+ glob: 7.2.3
lodash: 4.17.21
output-file-sync: 1.1.2
path-is-absolute: 1.0.1
@@ -14515,7 +15188,7 @@ packages:
dev: true
/babel-code-frame/6.26.0:
- resolution: {integrity: sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=}
+ resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==}
dependencies:
chalk: 1.1.3
esutils: 2.0.3
@@ -14534,11 +15207,11 @@ packages:
babel-traverse: 6.26.0
babel-types: 6.26.0
babylon: 6.18.0
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
debug: 2.6.9
json5: 0.5.1
lodash: 4.17.21
- minimatch: 3.0.4
+ minimatch: 3.1.2
path-is-absolute: 1.0.1
private: 0.1.8
slash: 1.0.0
@@ -14554,13 +15227,13 @@ packages:
peerDependencies:
eslint: '>= 4.12.1'
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/parser': 7.17.3
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/code-frame': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
eslint: 6.8.0
eslint-visitor-keys: 1.3.0
- resolve: 1.20.0
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
@@ -14571,13 +15244,13 @@ packages:
peerDependencies:
eslint: '>= 4.12.1'
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/parser': 7.17.3
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/code-frame': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
eslint: 7.32.0
eslint-visitor-keys: 1.3.0
- resolve: 1.20.0
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
@@ -14601,7 +15274,7 @@ packages:
dev: true
/babel-helper-bindify-decorators/6.24.1:
- resolution: {integrity: sha1-FMGeXxQte0fxmlJDHlKxzLxAozA=}
+ resolution: {integrity: sha512-TYX2QQATKA6Wssp6j7jqlw4QLmABDN1olRdEHndYvBXdaXM5dcx6j5rN0+nd+aVL+Th40fAEYvvw/Xxd/LETuQ==}
dependencies:
babel-runtime: 6.26.0
babel-traverse: 6.26.0
@@ -14611,7 +15284,7 @@ packages:
dev: true
/babel-helper-builder-binary-assignment-operator-visitor/6.24.1:
- resolution: {integrity: sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=}
+ resolution: {integrity: sha512-gCtfYORSG1fUMX4kKraymq607FWgMWg+j42IFPc18kFQEsmtaibP4UrqsXt8FlEJle25HUd4tsoDR7H2wDhe9Q==}
dependencies:
babel-helper-explode-assignable-expression: 6.24.1
babel-runtime: 6.26.0
@@ -14621,7 +15294,7 @@ packages:
dev: true
/babel-helper-builder-react-jsx/6.26.0:
- resolution: {integrity: sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=}
+ resolution: {integrity: sha512-02I9jDjnVEuGy2BR3LRm9nPRb/+Ja0pvZVLr1eI5TYAA/dB0Xoc+WBo50+aDfhGDLhlBY1+QURjn9uvcFd8gzg==}
dependencies:
babel-runtime: 6.26.0
babel-types: 6.26.0
@@ -14629,7 +15302,7 @@ packages:
dev: true
/babel-helper-call-delegate/6.24.1:
- resolution: {integrity: sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=}
+ resolution: {integrity: sha512-RL8n2NiEj+kKztlrVJM9JT1cXzzAdvWFh76xh/H1I4nKwunzE4INBXn8ieCZ+wh4zWszZk7NBS1s/8HR5jDkzQ==}
dependencies:
babel-helper-hoist-variables: 6.24.1
babel-runtime: 6.26.0
@@ -14640,7 +15313,7 @@ packages:
dev: true
/babel-helper-define-map/6.26.0:
- resolution: {integrity: sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=}
+ resolution: {integrity: sha512-bHkmjcC9lM1kmZcVpA5t2om2nzT/xiZpo6TJq7UlZ3wqKfzia4veeXbIhKvJXAMzhhEBd3cR1IElL5AenWEUpA==}
dependencies:
babel-helper-function-name: 6.24.1
babel-runtime: 6.26.0
@@ -14655,7 +15328,7 @@ packages:
dev: true
/babel-helper-explode-assignable-expression/6.24.1:
- resolution: {integrity: sha1-8luCz33BBDPFX3BZLVdGQArCLKo=}
+ resolution: {integrity: sha512-qe5csbhbvq6ccry9G7tkXbzNtcDiH4r51rrPUbwwoTzZ18AqxWYRZT6AOmxrpxKnQBW0pYlBI/8vh73Z//78nQ==}
dependencies:
babel-runtime: 6.26.0
babel-traverse: 6.26.0
@@ -14665,7 +15338,7 @@ packages:
dev: true
/babel-helper-explode-class/6.24.1:
- resolution: {integrity: sha1-fcKjkQ3uAHBW4eMdZAztPVTqqes=}
+ resolution: {integrity: sha512-SFbWewr0/0U4AiRzsHqwsbOQeLXVa9T1ELdqEa2efcQB5KopTnunAqoj07TuHlN2lfTQNPGO/rJR4FMln5fVcA==}
dependencies:
babel-helper-bindify-decorators: 6.24.1
babel-runtime: 6.26.0
@@ -14676,11 +15349,11 @@ packages:
dev: true
/babel-helper-flip-expressions/0.4.3:
- resolution: {integrity: sha1-NpZzahKKwYvCUlS19AoizrPB0/0=}
+ resolution: {integrity: sha512-rSrkRW4YQ2ETCWww9gbsWk4N0x1BOtln349Tk0dlCS90oT68WMLyGR7WvaMp3eAnsVrCqdUtC19lo1avyGPejA==}
dev: true
/babel-helper-function-name/6.24.1:
- resolution: {integrity: sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=}
+ resolution: {integrity: sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q==}
dependencies:
babel-helper-get-function-arity: 6.24.1
babel-runtime: 6.26.0
@@ -14692,40 +15365,40 @@ packages:
dev: true
/babel-helper-get-function-arity/6.24.1:
- resolution: {integrity: sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=}
+ resolution: {integrity: sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng==}
dependencies:
babel-runtime: 6.26.0
babel-types: 6.26.0
dev: true
/babel-helper-hoist-variables/6.24.1:
- resolution: {integrity: sha1-HssnaJydJVE+rbyZFKc/VAi+enY=}
+ resolution: {integrity: sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw==}
dependencies:
babel-runtime: 6.26.0
babel-types: 6.26.0
dev: true
/babel-helper-is-nodes-equiv/0.0.1:
- resolution: {integrity: sha1-NOmzALFHnd2Y7HfqC76TQt/jloQ=}
+ resolution: {integrity: sha512-ri/nsMFVRqXn7IyT5qW4/hIAGQxuYUFHa3qsxmPtbk6spZQcYlyDogfVpNm2XYOslH/ULS4VEJGUqQX5u7ACQw==}
dev: true
/babel-helper-is-void-0/0.4.3:
- resolution: {integrity: sha1-fZwBtFYee5Xb2g9u7kj1tg5nMT4=}
+ resolution: {integrity: sha512-07rBV0xPRM3TM5NVJEOQEkECX3qnHDjaIbFvWYPv+T1ajpUiVLiqTfC+MmiZxY5KOL/Ec08vJdJD9kZiP9UkUg==}
dev: true
/babel-helper-mark-eval-scopes/0.4.3:
- resolution: {integrity: sha1-0kSjvvmESHJgP/tG4izorN9VFWI=}
+ resolution: {integrity: sha512-+d/mXPP33bhgHkdVOiPkmYoeXJ+rXRWi7OdhwpyseIqOS8CmzHQXHUp/+/Qr8baXsT0kjGpMHHofHs6C3cskdA==}
dev: true
/babel-helper-optimise-call-expression/6.24.1:
- resolution: {integrity: sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=}
+ resolution: {integrity: sha512-Op9IhEaxhbRT8MDXx2iNuMgciu2V8lDvYCNQbDGjdBNCjaMvyLf4wl4A3b8IgndCyQF8TwfgsQ8T3VD8aX1/pA==}
dependencies:
babel-runtime: 6.26.0
babel-types: 6.26.0
dev: true
/babel-helper-regex/6.26.0:
- resolution: {integrity: sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=}
+ resolution: {integrity: sha512-VlPiWmqmGJp0x0oK27Out1D+71nVVCTSdlbhIVoaBAj2lUgrNjBCRR9+llO4lTSb2O4r7PJg+RobRkhBrf6ofg==}
dependencies:
babel-runtime: 6.26.0
babel-types: 6.26.0
@@ -14733,7 +15406,7 @@ packages:
dev: true
/babel-helper-remap-async-to-generator/6.24.1:
- resolution: {integrity: sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=}
+ resolution: {integrity: sha512-RYqaPD0mQyQIFRu7Ho5wE2yvA/5jxqCIj/Lv4BXNq23mHYu/vxikOy2JueLiBxQknwapwrJeNCesvY0ZcfnlHg==}
dependencies:
babel-helper-function-name: 6.24.1
babel-runtime: 6.26.0
@@ -14745,11 +15418,11 @@ packages:
dev: true
/babel-helper-remove-or-void/0.4.3:
- resolution: {integrity: sha1-pPA7QAd6D/6I5F0HAQ3uJB/1rmA=}
+ resolution: {integrity: sha512-eYNceYtcGKpifHDir62gHJadVXdg9fAhuZEXiRQnJJ4Yi4oUTpqpNY//1pM4nVyjjDMPYaC2xSf0I+9IqVzwdA==}
dev: true
/babel-helper-replace-supers/6.24.1:
- resolution: {integrity: sha1-v22/5Dk40XNpohPKiov3S2qQqxo=}
+ resolution: {integrity: sha512-sLI+u7sXJh6+ToqDr57Bv973kCepItDhMou0xCP2YPVmR1jkHSCY+p1no8xErbV1Siz5QE8qKT1WIwybSWlqjw==}
dependencies:
babel-helper-optimise-call-expression: 6.24.1
babel-messages: 6.23.0
@@ -14766,7 +15439,7 @@ packages:
dev: true
/babel-helpers/6.24.1:
- resolution: {integrity: sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=}
+ resolution: {integrity: sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ==}
dependencies:
babel-runtime: 6.26.0
babel-template: 6.26.0
@@ -14774,18 +15447,18 @@ packages:
- supports-color
dev: true
- /babel-jest/24.9.0_@babel+core@7.16.0:
+ /babel-jest/24.9.0_@babel+core@7.24.7:
resolution: {integrity: sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==}
engines: {node: '>= 6'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.16.0
+ '@babel/core': 7.24.7
'@jest/transform': 24.9.0
'@jest/types': 24.9.0
- '@types/babel__core': 7.1.16
+ '@types/babel__core': 7.20.5
babel-plugin-istanbul: 5.2.0
- babel-preset-jest: 24.9.0_@babel+core@7.16.0
+ babel-preset-jest: 24.9.0_@babel+core@7.24.7
chalk: 2.4.2
slash: 2.0.0
transitivePeerDependencies:
@@ -14800,7 +15473,7 @@ packages:
'@babel/core': 7.9.0
'@jest/transform': 24.9.0
'@jest/types': 24.9.0
- '@types/babel__core': 7.1.16
+ '@types/babel__core': 7.20.5
babel-plugin-istanbul: 5.2.0
babel-preset-jest: 24.9.0_@babel+core@7.9.0
chalk: 2.4.2
@@ -14818,29 +15491,29 @@ packages:
'@babel/core': 7.12.3
'@jest/transform': 26.6.2
'@jest/types': 26.6.2
- '@types/babel__core': 7.1.16
+ '@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
babel-preset-jest: 26.6.2_@babel+core@7.12.3
chalk: 4.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- /babel-jest/26.6.3_@babel+core@7.17.5:
+ /babel-jest/26.6.3_@babel+core@7.13.15:
resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==}
engines: {node: '>= 10.14.2'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.13.15
'@jest/transform': 26.6.2
'@jest/types': 26.6.2
- '@types/babel__core': 7.1.16
+ '@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 26.6.2_@babel+core@7.17.5
+ babel-preset-jest: 26.6.2_@babel+core@7.13.15
chalk: 4.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
@@ -14853,30 +15526,30 @@ packages:
dependencies:
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/babel__core': 7.1.16
+ '@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
babel-preset-jest: 27.5.1
chalk: 4.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-jest/27.5.1_@babel+core@7.17.5:
+ /babel-jest/27.5.1_@babel+core@7.13.15:
resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.13.15
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/babel__core': 7.1.16
+ '@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 27.5.1_@babel+core@7.17.5
+ babel-preset-jest: 27.5.1_@babel+core@7.13.15
chalk: 4.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
@@ -14891,8 +15564,8 @@ packages:
dependencies:
'@babel/core': 7.12.3
find-cache-dir: 2.1.0
- loader-utils: 1.4.0
- mkdirp: 0.5.5
+ loader-utils: 1.4.2
+ mkdirp: 0.5.6
pify: 4.0.1
schema-utils: 2.7.1
webpack: 4.44.2
@@ -14906,8 +15579,8 @@ packages:
dependencies:
'@babel/core': 7.9.0
find-cache-dir: 2.1.0
- loader-utils: 1.4.0
- mkdirp: 0.5.5
+ loader-utils: 1.4.2
+ mkdirp: 0.5.6
pify: 4.0.1
schema-utils: 2.7.1
webpack: 4.42.0
@@ -14922,81 +15595,69 @@ packages:
dependencies:
'@babel/core': 7.13.15
find-cache-dir: 3.3.2
- loader-utils: 1.4.0
- make-dir: 3.1.0
- schema-utils: 2.7.1
- dev: false
-
- /babel-loader/8.2.3_@babel+core@7.16.0:
- resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==}
- engines: {node: '>= 8.9'}
- peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
- dependencies:
- '@babel/core': 7.16.0
- find-cache-dir: 3.3.2
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
make-dir: 3.1.0
schema-utils: 2.7.1
- dev: true
/babel-messages/6.23.0:
- resolution: {integrity: sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=}
+ resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==}
dependencies:
babel-runtime: 6.26.0
dev: true
/babel-plugin-add-react-displayname/0.0.5:
- resolution: {integrity: sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=}
+ resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==}
dev: true
- /babel-plugin-annotate-pure-calls/0.4.0_@babel+core@7.16.0:
+ /babel-plugin-annotate-pure-calls/0.4.0_@babel+core@7.24.7:
resolution: {integrity: sha512-oi4M/PWUJOU9ZyRGoPTfPMqdyMp06jbJAomd3RcyYuzUtBOddv98BqLm96Lucpi2QFoQHkdGQt0ACvw7VzVEQA==}
peerDependencies:
'@babel/core': ^6.0.0-0 || 7.x
dependencies:
- '@babel/core': 7.16.0
+ '@babel/core': 7.24.7
dev: true
/babel-plugin-check-es2015-constants/6.22.0:
- resolution: {integrity: sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=}
+ resolution: {integrity: sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA==}
dependencies:
babel-runtime: 6.26.0
dev: true
- /babel-plugin-dev-expression/0.2.3_@babel+core@7.16.0:
+ /babel-plugin-dev-expression/0.2.3_@babel+core@7.24.7:
resolution: {integrity: sha512-rP5LK9QQTzCW61nVVzw88En1oK8t8gTsIeC6E61oelxNsU842yMjF0G1MxhvUpCkxCEIj7sE8/e5ieTheT//uw==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.16.0
+ '@babel/core': 7.24.7
dev: true
/babel-plugin-dynamic-import-node/2.3.3:
resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
dependencies:
- object.assign: 4.1.2
+ object.assign: 4.1.5
+ dev: false
/babel-plugin-emotion/10.2.2:
resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==}
dependencies:
- '@babel/helper-module-imports': 7.16.7
+ '@babel/helper-module-imports': 7.24.7
'@emotion/hash': 0.8.0
'@emotion/memoize': 0.7.4
'@emotion/serialize': 0.11.16
babel-plugin-macros: 2.8.0
babel-plugin-syntax-jsx: 6.18.0
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
escape-string-regexp: 1.0.5
find-root: 1.1.0
source-map: 0.5.7
+ transitivePeerDependencies:
+ - supports-color
/babel-plugin-istanbul/5.2.0:
resolution: {integrity: sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==}
engines: {node: '>=6'}
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
find-up: 3.0.0
istanbul-lib-instrument: 3.3.0
test-exclude: 5.2.3
@@ -15007,10 +15668,10 @@ packages:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
dependencies:
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.24.7
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
- istanbul-lib-instrument: 5.1.0
+ istanbul-lib-instrument: 5.2.1
test-exclude: 6.0.0
transitivePeerDependencies:
- supports-color
@@ -15019,50 +15680,50 @@ packages:
resolution: {integrity: sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==}
engines: {node: '>= 6'}
dependencies:
- '@types/babel__traverse': 7.14.2
+ '@types/babel__traverse': 7.20.6
/babel-plugin-jest-hoist/26.6.2:
resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/template': 7.16.7
- '@babel/types': 7.17.0
- '@types/babel__core': 7.1.16
- '@types/babel__traverse': 7.14.2
+ '@babel/template': 7.24.7
+ '@babel/types': 7.24.7
+ '@types/babel__core': 7.20.5
+ '@types/babel__traverse': 7.20.6
/babel-plugin-jest-hoist/27.5.1:
resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@babel/template': 7.16.7
- '@babel/types': 7.16.8
- '@types/babel__core': 7.1.16
- '@types/babel__traverse': 7.14.2
+ '@babel/template': 7.24.7
+ '@babel/types': 7.24.7
+ '@types/babel__core': 7.20.5
+ '@types/babel__traverse': 7.20.6
dev: true
/babel-plugin-macros/2.8.0:
resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.24.7
cosmiconfig: 6.0.0
- resolve: 1.20.0
+ resolve: 1.22.8
/babel-plugin-macros/3.0.1:
resolution: {integrity: sha512-CKt4+Oy9k2wiN+hT1uZzOw7d8zb1anbQpf7KLwaaXRCi/4pzKdFKHf7v5mvoPmjkmxshh7eKZQuRop06r5WP4w==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.16.3
- cosmiconfig: 7.0.1
- resolve: 1.20.0
+ '@babel/runtime': 7.13.10
+ cosmiconfig: 7.1.0
+ resolve: 1.22.8
dev: false
/babel-plugin-macros/3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.17.2
- cosmiconfig: 7.0.1
- resolve: 1.20.0
+ '@babel/runtime': 7.13.10
+ cosmiconfig: 7.1.0
+ resolve: 1.22.8
/babel-plugin-minify-builtins/0.5.0:
resolution: {integrity: sha512-wpqbN7Ov5hsNwGdzuzvFcjgRlzbIeVv1gMIlICbPj0xkexnfoIDe7q+AZHMkQmAE/F9R5jkrB6TLfTegImlXag==}
@@ -15074,8 +15735,8 @@ packages:
babel-helper-evaluate-path: 0.5.0
dev: true
- /babel-plugin-minify-dead-code-elimination/0.5.1:
- resolution: {integrity: sha512-x8OJOZIrRmQBcSqxBcLbMIK8uPmTvNWPXH2bh5MDCW1latEqYiRMuUkPImKcfpo59pTUB2FT7HfcgtG8ZlR5Qg==}
+ /babel-plugin-minify-dead-code-elimination/0.5.2:
+ resolution: {integrity: sha512-krq9Lwi0QIzyAlcNBXTL4usqUvevB4BzktdEsb8srcXC1AaYqRJiAQw6vdKdJSaXbz6snBvziGr6ch/aoRCfpA==}
dependencies:
babel-helper-evaluate-path: 0.5.0
babel-helper-mark-eval-scopes: 0.4.3
@@ -15084,7 +15745,7 @@ packages:
dev: true
/babel-plugin-minify-flip-comparisons/0.4.3:
- resolution: {integrity: sha1-AMqHDLjxO0XAOLPB68DyJyk8llo=}
+ resolution: {integrity: sha512-8hNwgLVeJzpeLVOVArag2DfTkbKodzOHU7+gAZ8mGBFGPQHK6uXVpg3jh5I/F6gfi5Q5usWU2OKcstn1YbAV7A==}
dependencies:
babel-helper-is-void-0: 0.4.3
dev: true
@@ -15097,17 +15758,17 @@ packages:
dev: true
/babel-plugin-minify-infinity/0.4.3:
- resolution: {integrity: sha1-37h2obCKBldjhO8/kuZTumB7Oco=}
+ resolution: {integrity: sha512-X0ictxCk8y+NvIf+bZ1HJPbVZKMlPku3lgYxPmIp62Dp8wdtbMLSekczty3MzvUOlrk5xzWYpBpQprXUjDRyMA==}
dev: true
- /babel-plugin-minify-mangle-names/0.5.0:
- resolution: {integrity: sha512-3jdNv6hCAw6fsX1p2wBGPfWuK69sfOjfd3zjUXkbq8McbohWy23tpXfy5RnToYWggvqzuMOwlId1PhyHOfgnGw==}
+ /babel-plugin-minify-mangle-names/0.5.1:
+ resolution: {integrity: sha512-8KMichAOae2FHlipjNDTo2wz97MdEb2Q0jrn4NIRXzHH7SJ3c5TaNNBkeTHbk9WUsMnqpNUx949ugM9NFWewzw==}
dependencies:
babel-helper-mark-eval-scopes: 0.4.3
dev: true
/babel-plugin-minify-numeric-literals/0.4.3:
- resolution: {integrity: sha1-jk/VYcefeAEob/YOjF/Z3u6TwLw=}
+ resolution: {integrity: sha512-5D54hvs9YVuCknfWywq0eaYDt7qYxlNwCqW9Ipm/kYeS9gYhJd0Rr/Pm2WhHKJ8DC6aIlDdqSBODSthabLSX3A==}
dev: true
/babel-plugin-minify-replace/0.5.0:
@@ -15124,28 +15785,28 @@ packages:
dev: true
/babel-plugin-minify-type-constructors/0.4.3:
- resolution: {integrity: sha1-G8bxW4f3qxCF1CszC3F2V6IVZQA=}
+ resolution: {integrity: sha512-4ADB0irJ/6BeXWHubjCJmrPbzhxDgjphBMjIjxCc25n4NGJ00NsYqwYt+F/OvE9RXx8KaSW7cJvp+iZX436tnQ==}
dependencies:
babel-helper-is-void-0: 0.4.3
dev: true
- /babel-plugin-named-asset-import/0.3.7_@babel+core@7.12.3:
- resolution: {integrity: sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==}
+ /babel-plugin-named-asset-import/0.3.8_@babel+core@7.12.3:
+ resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==}
peerDependencies:
'@babel/core': ^7.1.0
dependencies:
'@babel/core': 7.12.3
- /babel-plugin-named-asset-import/0.3.7_@babel+core@7.16.0:
- resolution: {integrity: sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==}
+ /babel-plugin-named-asset-import/0.3.8_@babel+core@7.13.15:
+ resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==}
peerDependencies:
'@babel/core': ^7.1.0
dependencies:
- '@babel/core': 7.16.0
+ '@babel/core': 7.13.15
dev: true
- /babel-plugin-named-asset-import/0.3.7_@babel+core@7.9.0:
- resolution: {integrity: sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==}
+ /babel-plugin-named-asset-import/0.3.8_@babel+core@7.9.0:
+ resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==}
peerDependencies:
'@babel/core': ^7.1.0
dependencies:
@@ -15157,59 +15818,57 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.16.4
+ '@babel/compat-data': 7.24.7
'@babel/helper-define-polyfill-provider': 0.2.4
- semver: 6.3.0
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: true
/babel-plugin-polyfill-corejs2/0.2.3_@babel+core@7.13.15:
resolution: {integrity: sha512-NDZ0auNRzmAfE1oDDPW2JhzIMXUk+FFe2ICejmt5T4ocKgiQx3e0VCRx9NCAidcMtL2RUZaWtXnmjTCkx0tcbA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.16.4
+ '@babel/compat-data': 7.24.7
'@babel/core': 7.13.15
'@babel/helper-define-polyfill-provider': 0.2.4_@babel+core@7.13.15
- semver: 6.3.0
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: false
- /babel-plugin-polyfill-corejs2/0.3.0:
- resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==}
+ /babel-plugin-polyfill-corejs2/0.2.3_@babel+core@7.24.7:
+ resolution: {integrity: sha512-NDZ0auNRzmAfE1oDDPW2JhzIMXUk+FFe2ICejmt5T4ocKgiQx3e0VCRx9NCAidcMtL2RUZaWtXnmjTCkx0tcbA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/helper-define-polyfill-provider': 0.3.0
- semver: 6.3.0
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.2.4_@babel+core@7.24.7
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: false
+ dev: true
- /babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==}
+ /babel-plugin-polyfill-corejs2/0.4.11_@babel+core@7.24.7:
+ resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/core': 7.16.0
- '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0
- semver: 6.3.0
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.24.7
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==}
+ /babel-plugin-polyfill-corejs3/0.10.4_@babel+core@7.24.7:
+ resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.16.4
- '@babel/core': 7.17.5
- '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.17.5
- semver: 6.3.0
+ '@babel/core': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.24.7
+ core-js-compat: 3.37.1
transitivePeerDependencies:
- supports-color
@@ -15219,10 +15878,9 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/helper-define-polyfill-provider': 0.2.4
- core-js-compat: 3.19.1
+ core-js-compat: 3.37.1
transitivePeerDependencies:
- supports-color
- dev: true
/babel-plugin-polyfill-corejs3/0.2.5_@babel+core@7.13.15:
resolution: {integrity: sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==}
@@ -15231,43 +15889,21 @@ packages:
dependencies:
'@babel/core': 7.13.15
'@babel/helper-define-polyfill-provider': 0.2.4_@babel+core@7.13.15
- core-js-compat: 3.19.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /babel-plugin-polyfill-corejs3/0.4.0:
- resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-define-polyfill-provider': 0.3.0
- core-js-compat: 3.19.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0
- core-js-compat: 3.19.1
+ core-js-compat: 3.37.1
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==}
+ /babel-plugin-polyfill-corejs3/0.2.5_@babel+core@7.24.7:
+ resolution: {integrity: sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.17.5
- core-js-compat: 3.19.1
+ '@babel/core': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.2.4_@babel+core@7.24.7
+ core-js-compat: 3.37.1
transitivePeerDependencies:
- supports-color
+ dev: true
/babel-plugin-polyfill-regenerator/0.2.3:
resolution: {integrity: sha512-JVE78oRZPKFIeUqFGrSORNzQnrDwZR16oiWeGM8ZyjBn2XAT5OjP+wXx5ESuo33nUsFUEJYjtklnsKbxW5L+7g==}
@@ -15277,7 +15913,6 @@ packages:
'@babel/helper-define-polyfill-provider': 0.2.4
transitivePeerDependencies:
- supports-color
- dev: true
/babel-plugin-polyfill-regenerator/0.2.3_@babel+core@7.13.15:
resolution: {integrity: sha512-JVE78oRZPKFIeUqFGrSORNzQnrDwZR16oiWeGM8ZyjBn2XAT5OjP+wXx5ESuo33nUsFUEJYjtklnsKbxW5L+7g==}
@@ -15288,35 +15923,25 @@ packages:
'@babel/helper-define-polyfill-provider': 0.2.4_@babel+core@7.13.15
transitivePeerDependencies:
- supports-color
- dev: false
-
- /babel-plugin-polyfill-regenerator/0.3.0:
- resolution: {integrity: sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-define-polyfill-provider': 0.3.0
- transitivePeerDependencies:
- - supports-color
- dev: false
- /babel-plugin-polyfill-regenerator/0.3.0_@babel+core@7.16.0:
- resolution: {integrity: sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==}
+ /babel-plugin-polyfill-regenerator/0.2.3_@babel+core@7.24.7:
+ resolution: {integrity: sha512-JVE78oRZPKFIeUqFGrSORNzQnrDwZR16oiWeGM8ZyjBn2XAT5OjP+wXx5ESuo33nUsFUEJYjtklnsKbxW5L+7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0
+ '@babel/core': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.2.4_@babel+core@7.24.7
transitivePeerDependencies:
- supports-color
+ dev: true
- /babel-plugin-polyfill-regenerator/0.3.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==}
+ /babel-plugin-polyfill-regenerator/0.6.2_@babel+core@7.24.7:
+ resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.17.5
+ '@babel/core': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.6.2_@babel+core@7.24.7
transitivePeerDependencies:
- supports-color
@@ -15325,7 +15950,7 @@ packages:
dependencies:
ast-types: 0.14.2
lodash: 4.17.21
- react-docgen: 5.4.0
+ react-docgen: 5.4.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -15335,67 +15960,87 @@ packages:
peerDependencies:
styled-components: '>= 2'
dependencies:
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-module-imports': 7.16.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
babel-plugin-syntax-jsx: 6.18.0
lodash: 4.17.21
styled-components: 4.4.1
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /babel-plugin-styled-components/1.13.3_styled-components@5.0.1:
+ /babel-plugin-styled-components/1.13.3_x56uxbnty5wbws66wahiqabede:
resolution: {integrity: sha512-meGStRGv+VuKA/q0/jXxrPNWEm4LPfYIqxooDTdmh8kFsP/Ph7jJG5rUPwUPX3QHUvggwdbgdGpo88P/rRYsVw==}
peerDependencies:
styled-components: '>= 2'
dependencies:
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-module-imports': 7.16.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7_supports-color@5.5.0
babel-plugin-syntax-jsx: 6.18.0
lodash: 4.17.21
+ styled-components: 4.4.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-styled-components/2.1.4_bjmfadd4hoclqnjgyriqjgqwzq:
+ resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==}
+ peerDependencies:
+ styled-components: '>= 2'
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7_supports-color@5.5.0
+ '@babel/plugin-syntax-jsx': 7.24.7
+ lodash: 4.17.21
+ picomatch: 2.3.1
styled-components: 5.0.1_sfoxds7t5ydpegc3knd667wn6m
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
dev: false
/babel-plugin-syntax-async-functions/6.13.0:
- resolution: {integrity: sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=}
+ resolution: {integrity: sha512-4Zp4unmHgw30A1eWI5EpACji2qMocisdXhAftfhXoSV9j0Tvj6nRFE3tOmRY912E0FMRm/L5xWE7MGVT2FoLnw==}
dev: true
/babel-plugin-syntax-async-generators/6.13.0:
- resolution: {integrity: sha1-a8lj67FuzLrmuStZbrfzXDQqi5o=}
+ resolution: {integrity: sha512-EbciFN5Jb9iqU9bqaLmmFLx2G8pAUsvpWJ6OzOWBNrSY9qTohXj+7YfZx6Ug1Qqh7tCb1EA7Jvn9bMC1HBiucg==}
dev: true
/babel-plugin-syntax-class-constructor-call/6.18.0:
- resolution: {integrity: sha1-nLnTn+Q8hgC+yBRkVt3L1OGnZBY=}
+ resolution: {integrity: sha512-EEuBcXz/wZ81Jaac0LnMHtD4Mfz9XWn2oH2Xj+CHwz2SZWUqqdtR2BgWPSdTGMmxN/5KLSh4PImt9+9ZedDarA==}
dev: true
/babel-plugin-syntax-class-properties/6.13.0:
- resolution: {integrity: sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=}
+ resolution: {integrity: sha512-chI3Rt9T1AbrQD1s+vxw3KcwC9yHtF621/MacuItITfZX344uhQoANjpoSJZleAmW2tjlolqB/f+h7jIqXa7pA==}
dev: true
/babel-plugin-syntax-decorators/6.13.0:
- resolution: {integrity: sha1-MSVjtNvePMgGzuPkFszurd0RrAs=}
+ resolution: {integrity: sha512-AWj19x2aDm8qFQ5O2JcD6pwJDW1YdcnO+1b81t7gxrGjz5VHiUqeYWAR4h7zueWMalRelrQDXprv2FrY1dbpbw==}
dev: true
/babel-plugin-syntax-do-expressions/6.13.0:
- resolution: {integrity: sha1-V0d1YTmqJtOQ0JQQsDdEugfkeW0=}
+ resolution: {integrity: sha512-HD/5qJB9oSXzl0caxM+aRD7ENICXqcc3Up/8toDQk7zNIDE7TzsqtxC5f4t9Rwhu2Ya8l9l4j6b3vOsy+a6qxg==}
dev: true
/babel-plugin-syntax-dynamic-import/6.18.0:
- resolution: {integrity: sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo=}
+ resolution: {integrity: sha512-MioUE+LfjCEz65Wf7Z/Rm4XCP5k2c+TbMd2Z2JKc7U9uwjBhAfNPE48KC4GTGKhppMeYVepwDBNO/nGY6NYHBA==}
dev: true
/babel-plugin-syntax-exponentiation-operator/6.13.0:
- resolution: {integrity: sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=}
+ resolution: {integrity: sha512-Z/flU+T9ta0aIEKl1tGEmN/pZiI1uXmCiGFRegKacQfEJzp7iNsKloZmyJlQr+75FCJtiFfGIK03SiCvCt9cPQ==}
dev: true
/babel-plugin-syntax-export-extensions/6.13.0:
- resolution: {integrity: sha1-cKFITw+QiaToStRLrDU8lbmxJyE=}
+ resolution: {integrity: sha512-Eo0rcRaIDMld/W6mVhePiudIuLW+Cr/8eveW3mBREfZORScZgx4rh6BAPyvzdEc/JZvQ+LkC80t0VGFs6FX+lg==}
dev: true
/babel-plugin-syntax-flow/6.18.0:
- resolution: {integrity: sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=}
+ resolution: {integrity: sha512-HbTDIoG1A1op7Tl/wIFQPULIBA61tsJ8Ntq2FAhLwuijrzosM/92kAfgU1Q3Kc7DH/cprJg5vDfuTY4QUL4rDA==}
dev: true
/babel-plugin-syntax-function-bind/6.13.0:
- resolution: {integrity: sha1-SMSV8Xe98xqYHnMvVa3AvdJgH0Y=}
+ resolution: {integrity: sha512-m8yMoh9LIiNyeLdQs5I9G+3YXo4nqVsKQkk7YplrG4qAFbNi9hkZlow8HDHxhH9QOVFPHmy8+03NzRCdyChIKw==}
dev: true
/babel-plugin-syntax-jsx/6.18.0:
@@ -15405,11 +16050,11 @@ packages:
resolution: {integrity: sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w==}
/babel-plugin-syntax-trailing-function-commas/6.22.0:
- resolution: {integrity: sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=}
+ resolution: {integrity: sha512-Gx9CH3Q/3GKbhs07Bszw5fPTlU+ygrOGfAhEt7W2JICwufpC4SuO0mG0+4NykPBSYPMJhqvVlDBU17qB1D+hMQ==}
dev: true
/babel-plugin-transform-async-generator-functions/6.24.1:
- resolution: {integrity: sha1-8FiQAUX9PpkHpt3yjaWfIVJYpds=}
+ resolution: {integrity: sha512-uT7eovUxtXe8Q2ufcjRuJIOL0hg6VAUJhiWJBLxH/evYAw+aqoJLcYTR8hqx13iOx/FfbCMHgBmXWZjukbkyPg==}
dependencies:
babel-helper-remap-async-to-generator: 6.24.1
babel-plugin-syntax-async-generators: 6.13.0
@@ -15419,7 +16064,7 @@ packages:
dev: true
/babel-plugin-transform-async-to-generator/6.24.1:
- resolution: {integrity: sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=}
+ resolution: {integrity: sha512-7BgYJujNCg0Ti3x0c/DL3tStvnKS6ktIYOmo9wginv/dfZOrbSZ+qG4IRRHMBOzZ5Awb1skTiAsQXg/+IWkZYw==}
dependencies:
babel-helper-remap-async-to-generator: 6.24.1
babel-plugin-syntax-async-functions: 6.13.0
@@ -15428,11 +16073,11 @@ packages:
- supports-color
dev: true
- /babel-plugin-transform-async-to-promises/0.8.15:
- resolution: {integrity: sha512-fDXP68ZqcinZO2WCiimCL9zhGjGXOnn3D33zvbh+yheZ/qOrNVVDDIBtAaM3Faz8TRvQzHiRKsu3hfrBAhEncQ==}
+ /babel-plugin-transform-async-to-promises/0.8.18:
+ resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==}
/babel-plugin-transform-class-constructor-call/6.24.1:
- resolution: {integrity: sha1-gNwoVQWsBn3LjWxl4vbxGrd2Xvk=}
+ resolution: {integrity: sha512-RvYukT1Nh7njz8P8326ztpQUGCKwmjgu6aRIx1lkvylWITYcskg29vy1Kp8WXIq7FvhXsz0Crf2kS94bjB690A==}
dependencies:
babel-plugin-syntax-class-constructor-call: 6.18.0
babel-runtime: 6.26.0
@@ -15442,7 +16087,7 @@ packages:
dev: true
/babel-plugin-transform-class-properties/6.24.1:
- resolution: {integrity: sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=}
+ resolution: {integrity: sha512-n4jtBA3OYBdvG5PRMKsMXJXHfLYw/ZOmtxCLOOwz6Ro5XlrColkStLnz1AS1L2yfPA9BKJ1ZNlmVCLjAL9DSIg==}
dependencies:
babel-helper-function-name: 6.24.1
babel-plugin-syntax-class-properties: 6.13.0
@@ -15453,7 +16098,7 @@ packages:
dev: true
/babel-plugin-transform-decorators/6.24.1:
- resolution: {integrity: sha1-eIAT2PjGtSIr33s0Q5Df13Vp4k0=}
+ resolution: {integrity: sha512-skQ2CImwDkCHu0mkWvCOlBCpBIHW4/49IZWVwV4A/EnWjL9bB6UBvLyMNe3Td5XDStSZNhe69j4bfEW8dvUbew==}
dependencies:
babel-helper-explode-class: 6.24.1
babel-plugin-syntax-decorators: 6.13.0
@@ -15465,26 +16110,26 @@ packages:
dev: true
/babel-plugin-transform-do-expressions/6.22.0:
- resolution: {integrity: sha1-KMyvkoEtlJws0SgfaQyP3EaK6bs=}
+ resolution: {integrity: sha512-yQwYqYg+Tnj1InA8W1rsItsZVhkv1Euc4KVua9ledtPz5PDWYz7LVyy6rDBpVYUWFZj5k6GUm3YZpCbIm8Tqew==}
dependencies:
babel-plugin-syntax-do-expressions: 6.13.0
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-es2015-arrow-functions/6.22.0:
- resolution: {integrity: sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=}
+ resolution: {integrity: sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg==}
dependencies:
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-es2015-block-scoped-functions/6.22.0:
- resolution: {integrity: sha1-u8UbSflk1wy42OC5ToICRs46YUE=}
+ resolution: {integrity: sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A==}
dependencies:
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-es2015-block-scoping/6.26.0:
- resolution: {integrity: sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=}
+ resolution: {integrity: sha512-YiN6sFAQ5lML8JjCmr7uerS5Yc/EMbgg9G8ZNmk2E3nYX4ckHR01wrkeeMijEf5WHNK5TW0Sl0Uu3pv3EdOJWw==}
dependencies:
babel-runtime: 6.26.0
babel-template: 6.26.0
@@ -15496,7 +16141,7 @@ packages:
dev: true
/babel-plugin-transform-es2015-classes/6.24.1:
- resolution: {integrity: sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=}
+ resolution: {integrity: sha512-5Dy7ZbRinGrNtmWpquZKZ3EGY8sDgIVB4CU8Om8q8tnMLrD/m94cKglVcHps0BCTdZ0TJeeAWOq2TK9MIY6cag==}
dependencies:
babel-helper-define-map: 6.26.0
babel-helper-function-name: 6.24.1
@@ -15512,7 +16157,7 @@ packages:
dev: true
/babel-plugin-transform-es2015-computed-properties/6.24.1:
- resolution: {integrity: sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=}
+ resolution: {integrity: sha512-C/uAv4ktFP/Hmh01gMTvYvICrKze0XVX9f2PdIXuriCSvUmV9j+u+BB9f5fJK3+878yMK6dkdcq+Ymr9mrcLzw==}
dependencies:
babel-runtime: 6.26.0
babel-template: 6.26.0
@@ -15521,26 +16166,26 @@ packages:
dev: true
/babel-plugin-transform-es2015-destructuring/6.23.0:
- resolution: {integrity: sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=}
+ resolution: {integrity: sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA==}
dependencies:
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-es2015-duplicate-keys/6.24.1:
- resolution: {integrity: sha1-c+s9MQypaePvnskcU3QabxV2Qj4=}
+ resolution: {integrity: sha512-ossocTuPOssfxO2h+Z3/Ea1Vo1wWx31Uqy9vIiJusOP4TbF7tPs9U0sJ9pX9OJPf4lXRGj5+6Gkl/HHKiAP5ug==}
dependencies:
babel-runtime: 6.26.0
babel-types: 6.26.0
dev: true
/babel-plugin-transform-es2015-for-of/6.23.0:
- resolution: {integrity: sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=}
+ resolution: {integrity: sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw==}
dependencies:
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-es2015-function-name/6.24.1:
- resolution: {integrity: sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=}
+ resolution: {integrity: sha512-iFp5KIcorf11iBqu/y/a7DK3MN5di3pNCzto61FqCNnUX4qeBwcV1SLqe10oXNnCaxBUImX3SckX2/o1nsrTcg==}
dependencies:
babel-helper-function-name: 6.24.1
babel-runtime: 6.26.0
@@ -15550,13 +16195,13 @@ packages:
dev: true
/babel-plugin-transform-es2015-literals/6.22.0:
- resolution: {integrity: sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=}
+ resolution: {integrity: sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ==}
dependencies:
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-es2015-modules-amd/6.24.1:
- resolution: {integrity: sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=}
+ resolution: {integrity: sha512-LnIIdGWIKdw7zwckqx+eGjcS8/cl8D74A3BpJbGjKTFFNJSMrjN4bIh22HY1AlkUbeLG6X6OZj56BDvWD+OeFA==}
dependencies:
babel-plugin-transform-es2015-modules-commonjs: 6.26.2
babel-runtime: 6.26.0
@@ -15577,7 +16222,7 @@ packages:
dev: true
/babel-plugin-transform-es2015-modules-systemjs/6.24.1:
- resolution: {integrity: sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=}
+ resolution: {integrity: sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg==}
dependencies:
babel-helper-hoist-variables: 6.24.1
babel-runtime: 6.26.0
@@ -15587,7 +16232,7 @@ packages:
dev: true
/babel-plugin-transform-es2015-modules-umd/6.24.1:
- resolution: {integrity: sha1-rJl+YoXNGO1hdq22B9YCNErThGg=}
+ resolution: {integrity: sha512-LpVbiT9CLsuAIp3IG0tfbVo81QIhn6pE8xBJ7XSeCtFlMltuar5VuBV6y6Q45tpui9QWcy5i0vLQfCfrnF7Kiw==}
dependencies:
babel-plugin-transform-es2015-modules-amd: 6.24.1
babel-runtime: 6.26.0
@@ -15597,7 +16242,7 @@ packages:
dev: true
/babel-plugin-transform-es2015-object-super/6.24.1:
- resolution: {integrity: sha1-JM72muIcuDp/hgPa0CH1cusnj40=}
+ resolution: {integrity: sha512-8G5hpZMecb53vpD3mjs64NhI1au24TAmokQ4B+TBFBjN9cVoGoOvotdrMMRmHvVZUEvqGUPWL514woru1ChZMA==}
dependencies:
babel-helper-replace-supers: 6.24.1
babel-runtime: 6.26.0
@@ -15606,7 +16251,7 @@ packages:
dev: true
/babel-plugin-transform-es2015-parameters/6.24.1:
- resolution: {integrity: sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=}
+ resolution: {integrity: sha512-8HxlW+BB5HqniD+nLkQ4xSAVq3bR/pcYW9IigY+2y0dI+Y7INFeTbfAQr+63T3E4UDsZGjyb+l9txUnABWxlOQ==}
dependencies:
babel-helper-call-delegate: 6.24.1
babel-helper-get-function-arity: 6.24.1
@@ -15619,20 +16264,20 @@ packages:
dev: true
/babel-plugin-transform-es2015-shorthand-properties/6.24.1:
- resolution: {integrity: sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=}
+ resolution: {integrity: sha512-mDdocSfUVm1/7Jw/FIRNw9vPrBQNePy6wZJlR8HAUBLybNp1w/6lr6zZ2pjMShee65t/ybR5pT8ulkLzD1xwiw==}
dependencies:
babel-runtime: 6.26.0
babel-types: 6.26.0
dev: true
/babel-plugin-transform-es2015-spread/6.22.0:
- resolution: {integrity: sha1-1taKmfia7cRTbIGlQujdnxdG+NE=}
+ resolution: {integrity: sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg==}
dependencies:
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-es2015-sticky-regex/6.24.1:
- resolution: {integrity: sha1-AMHNsaynERLN8M9hJsLta0V8zbw=}
+ resolution: {integrity: sha512-CYP359ADryTo3pCsH0oxRo/0yn6UsEZLqYohHmvLQdfS9xkf+MbCzE3/Kolw9OYIY4ZMilH25z/5CbQbwDD+lQ==}
dependencies:
babel-helper-regex: 6.26.0
babel-runtime: 6.26.0
@@ -15640,19 +16285,19 @@ packages:
dev: true
/babel-plugin-transform-es2015-template-literals/6.22.0:
- resolution: {integrity: sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=}
+ resolution: {integrity: sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg==}
dependencies:
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-es2015-typeof-symbol/6.23.0:
- resolution: {integrity: sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=}
+ resolution: {integrity: sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw==}
dependencies:
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-es2015-unicode-regex/6.24.1:
- resolution: {integrity: sha1-04sS9C6nMj9yk4fxinxa4frrNek=}
+ resolution: {integrity: sha512-v61Dbbihf5XxnYjtBN04B/JBvsScY37R1cZT5r9permN1cp+b70DY3Ib3fIkgn1DI9U3tGgBJZVD8p/mE/4JbQ==}
dependencies:
babel-helper-regex: 6.26.0
babel-runtime: 6.26.0
@@ -15660,7 +16305,7 @@ packages:
dev: true
/babel-plugin-transform-exponentiation-operator/6.24.1:
- resolution: {integrity: sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=}
+ resolution: {integrity: sha512-LzXDmbMkklvNhprr20//RStKVcT8Cu+SQtX18eMHLhjHf2yFzwtQ0S2f0jQ+89rokoNdmwoSqYzAhq86FxlLSQ==}
dependencies:
babel-helper-builder-binary-assignment-operator-visitor: 6.24.1
babel-plugin-syntax-exponentiation-operator: 6.13.0
@@ -15670,40 +16315,40 @@ packages:
dev: true
/babel-plugin-transform-export-extensions/6.22.0:
- resolution: {integrity: sha1-U3OLR+deghhYnuqUbLvTkQm75lM=}
+ resolution: {integrity: sha512-mtzELzINaYqdVglyZrDDVwkcFRuE7s6QUFWXxwffKAHB/NkfbJ2NJSytugB43ytIC8UVt30Ereyx+7gNyTkDLg==}
dependencies:
babel-plugin-syntax-export-extensions: 6.13.0
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-flow-strip-types/6.22.0:
- resolution: {integrity: sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=}
+ resolution: {integrity: sha512-TxIM0ZWNw9oYsoTthL3lvAK3+eTujzktoXJg4ubGvICGbVuXVYv5hHv0XXpz8fbqlJaGYY4q5SVzaSmsg3t4Fg==}
dependencies:
babel-plugin-syntax-flow: 6.18.0
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-function-bind/6.22.0:
- resolution: {integrity: sha1-xvuOlqwpajELjPjqQBRiQH3fapc=}
+ resolution: {integrity: sha512-9Ec4KYf1GurT39mlUjDSlN7HWSlB3u3mWRMogQbb+Y88lO0ZM3rJ0ADhPnQwWK9TbO6e/4E+Et1rrfGY9mFimA==}
dependencies:
babel-plugin-syntax-function-bind: 6.13.0
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-inline-consecutive-adds/0.4.3:
- resolution: {integrity: sha1-Mj1Ho+pjqDp6w8gRro5pQfrysNE=}
+ resolution: {integrity: sha512-8D104wbzzI5RlxeVPYeQb9QsUyepiH1rAO5hpPpQ6NPRgQLpIVwkS/Nbx944pm4K8Z+rx7CgjPsFACz/VCBN0Q==}
dev: true
/babel-plugin-transform-member-expression-literals/6.9.4:
- resolution: {integrity: sha1-NwOcmgwzE6OUlfqsL/OmtbnQOL8=}
+ resolution: {integrity: sha512-Xq9/Rarpj+bjOZSl1nBbZYETsNEDDJSrb6Plb1sS3/36FukWFLLRysgecva5KZECjUJTrJoQqjJgtWToaflk5Q==}
dev: true
- /babel-plugin-transform-merge-sibling-variables/6.9.4:
- resolution: {integrity: sha1-hbQi/DN3tEnJ0c3kQIcgNTJAHa4=}
+ /babel-plugin-transform-merge-sibling-variables/6.9.5:
+ resolution: {integrity: sha512-xj/KrWi6/uP+DrD844h66Qh2cZN++iugEIgH8QcIxhmZZPNP6VpOE9b4gP2FFW39xDAY43kCmYMM6U0QNKN8fw==}
dev: true
/babel-plugin-transform-minify-booleans/6.9.4:
- resolution: {integrity: sha1-rLs+VqNVXdI5KOS1gtKFFi3SsZg=}
+ resolution: {integrity: sha512-9pW9ePng6DZpzGPalcrULuhSCcauGAbn8AeU3bE34HcDkGm8Ldt0ysjGkyb64f0K3T5ilV4mriayOVv5fg0ASA==}
dev: true
/babel-plugin-transform-object-rest-spread/6.26.0:
@@ -15713,33 +16358,33 @@ packages:
babel-runtime: 6.26.0
/babel-plugin-transform-property-literals/6.9.4:
- resolution: {integrity: sha1-mMHSHiVXNlc/k+zlRFn2ziSYXTk=}
+ resolution: {integrity: sha512-Pf8JHTjTPxecqVyL6KSwD/hxGpoTZjiEgV7nCx0KFQsJYM0nuuoCajbg09KRmZWeZbJ5NGTySABYv8b/hY1eEA==}
dependencies:
esutils: 2.0.3
dev: true
/babel-plugin-transform-react-display-name/6.25.0:
- resolution: {integrity: sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=}
+ resolution: {integrity: sha512-QLYkLiZeeED2PKd4LuXGg5y9fCgPB5ohF8olWUuETE2ryHNRqqnXlEVP7RPuef89+HTfd3syptMGVHeoAu0Wig==}
dependencies:
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-react-jsx-self/6.22.0:
- resolution: {integrity: sha1-322AqdomEqEh5t3XVYvL7PBuY24=}
+ resolution: {integrity: sha512-Y3ZHP1nunv0U1+ysTNwLK39pabHj6cPVsfN4TRC7BDBfbgbyF4RifP5kd6LnbuMV9wcfedQMe7hn1fyKc7IzTQ==}
dependencies:
babel-plugin-syntax-jsx: 6.18.0
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-react-jsx-source/6.22.0:
- resolution: {integrity: sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=}
+ resolution: {integrity: sha512-pcDNDsZ9q/6LJmujQ/OhjeoIlp5Nl546HJ2yiFIJK3mYpgNXhI5/S9mXfVxu5yqWAi7HdI7e/q6a9xtzwL69Vw==}
dependencies:
babel-plugin-syntax-jsx: 6.18.0
babel-runtime: 6.26.0
dev: true
/babel-plugin-transform-react-jsx/6.24.1:
- resolution: {integrity: sha1-hAoCjn30YN/DotKfDA2R9jduZqM=}
+ resolution: {integrity: sha512-s+q/Y2u2OgDPHRuod3t6zyLoV8pUHc64i/O7ZNgIOEdYTq+ChPeybcKBi/xk9VI60VriILzFPW+dUxAEbTxh2w==}
dependencies:
babel-helper-builder-react-jsx: 6.26.0
babel-plugin-syntax-jsx: 6.18.0
@@ -15750,21 +16395,21 @@ packages:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
/babel-plugin-transform-regenerator/6.26.0:
- resolution: {integrity: sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=}
+ resolution: {integrity: sha512-LS+dBkUGlNR15/5WHKe/8Neawx663qttS6AGqoOUhICc9d1KciBvtrQSuc0PI+CxQ2Q/S1aKuJ+u64GtLdcEZg==}
dependencies:
regenerator-transform: 0.10.1
dev: true
/babel-plugin-transform-regexp-constructors/0.4.3:
- resolution: {integrity: sha1-WLd3W2OvzzMyj66aX4j71PsLSWU=}
+ resolution: {integrity: sha512-JjymDyEyRNhAoNFp09y/xGwYVYzT2nWTGrBrWaL6eCg2m+B24qH2jR0AA8V8GzKJTgC8NW6joJmc6nabvWBD/g==}
dev: true
/babel-plugin-transform-remove-console/6.9.4:
- resolution: {integrity: sha1-uYA2DAZzhOJLNXpYjYB9PINSd4A=}
+ resolution: {integrity: sha512-88blrUrMX3SPiGkT1GnvVY8E/7A+k6oj3MNvUtTIxJflFzXTw1bHkuJ/y039ouhFMp2prRn5cQGzokViYi1dsg==}
dev: true
/babel-plugin-transform-remove-debugger/6.9.4:
- resolution: {integrity: sha1-QrcnYxyXl44estGZp67IShgznvI=}
+ resolution: {integrity: sha512-Kd+eTBYlXfwoFzisburVwrngsrz4xh9I0ppoJnU/qlLysxVBRgI4Pj+dk3X8F5tDiehp3hhP8oarRMT9v2Z3lw==}
dev: true
/babel-plugin-transform-remove-undefined/0.5.0:
@@ -15778,22 +16423,22 @@ packages:
dev: true
/babel-plugin-transform-simplify-comparison-operators/6.9.4:
- resolution: {integrity: sha1-9ir+CWyrDh9ootdT/fKDiIRxzrk=}
+ resolution: {integrity: sha512-GLInxhGAQWJ9YIdjwF6dAFlmh4U+kN8pL6Big7nkDzHoZcaDQOtBm28atEhQJq6m9GpAovbiGEShKqXv4BSp0A==}
dev: true
/babel-plugin-transform-strict-mode/6.24.1:
- resolution: {integrity: sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=}
+ resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==}
dependencies:
babel-runtime: 6.26.0
babel-types: 6.26.0
dev: true
/babel-plugin-transform-undefined-to-void/6.9.4:
- resolution: {integrity: sha1-viQcqBQEAwZ4t0hxcyK4nQyP4oA=}
+ resolution: {integrity: sha512-D2UbwxawEY1xVc9svYAUZQM2xarwSNXue2qDIx6CeV2EuMGaes/0su78zlIDIAgE7BvnMw4UpmSo9fDy+znghg==}
dev: true
/babel-polyfill/6.26.0:
- resolution: {integrity: sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=}
+ resolution: {integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==}
dependencies:
babel-runtime: 6.26.0
core-js: 2.6.12
@@ -15838,24 +16483,24 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3
'@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.12.3
- /babel-preset-current-node-syntax/1.0.1_@babel+core@7.17.5:
+ /babel-preset-current-node-syntax/1.0.1_@babel+core@7.13.15:
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.5
- '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.5
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.17.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.5
+ '@babel/core': 7.13.15
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.13.15
+ '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.13.15
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.13.15
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.13.15
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.13.15
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.13.15
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.13.15
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.13.15
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.13.15
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.13.15
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.13.15
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.13.15
/babel-preset-env/1.7.0:
resolution: {integrity: sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==}
@@ -15889,25 +16534,25 @@ packages:
babel-plugin-transform-regenerator: 6.26.0
browserslist: 3.2.8
invariant: 2.2.4
- semver: 5.7.1
+ semver: 5.7.2
transitivePeerDependencies:
- supports-color
dev: true
/babel-preset-flow/6.23.0:
- resolution: {integrity: sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0=}
+ resolution: {integrity: sha512-PQZFJXnM3d80Vq4O67OE6EMVKIw2Vmzy8UXovqulNogCtblWU8rzP7Sm5YgHiCg4uejUxzCkHfNXQ4Z6GI+Dhw==}
dependencies:
babel-plugin-transform-flow-strip-types: 6.22.0
dev: true
- /babel-preset-jest/24.9.0_@babel+core@7.16.0:
+ /babel-preset-jest/24.9.0_@babel+core@7.24.7:
resolution: {integrity: sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==}
engines: {node: '>= 6'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.16.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0
+ '@babel/core': 7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.24.7
babel-plugin-jest-hoist: 24.9.0
/babel-preset-jest/24.9.0_@babel+core@7.9.0:
@@ -15931,15 +16576,15 @@ packages:
babel-plugin-jest-hoist: 26.6.2
babel-preset-current-node-syntax: 1.0.1_@babel+core@7.12.3
- /babel-preset-jest/26.6.2_@babel+core@7.17.5:
+ /babel-preset-jest/26.6.2_@babel+core@7.13.15:
resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==}
engines: {node: '>= 10.14.2'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.13.15
babel-plugin-jest-hoist: 26.6.2
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.5
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.13.15
/babel-preset-jest/27.5.1:
resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==}
@@ -15951,34 +16596,34 @@ packages:
babel-preset-current-node-syntax: 1.0.1
dev: true
- /babel-preset-jest/27.5.1_@babel+core@7.17.5:
+ /babel-preset-jest/27.5.1_@babel+core@7.13.15:
resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.13.15
babel-plugin-jest-hoist: 27.5.1
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.5
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.13.15
dev: true
- /babel-preset-minify/0.5.1:
- resolution: {integrity: sha512-1IajDumYOAPYImkHbrKeiN5AKKP9iOmRoO2IPbIuVp0j2iuCcj0n7P260z38siKMZZ+85d3mJZdtW8IgOv+Tzg==}
+ /babel-preset-minify/0.5.2:
+ resolution: {integrity: sha512-v4GL+kk0TfovbRIKZnC3HPbu2cAGmPAby7BsOmuPdMJfHV+4FVdsGXTH/OOGQRKYdjemBuL1+MsE6mobobhe9w==}
dependencies:
babel-plugin-minify-builtins: 0.5.0
babel-plugin-minify-constant-folding: 0.5.0
- babel-plugin-minify-dead-code-elimination: 0.5.1
+ babel-plugin-minify-dead-code-elimination: 0.5.2
babel-plugin-minify-flip-comparisons: 0.4.3
babel-plugin-minify-guarded-expressions: 0.4.4
babel-plugin-minify-infinity: 0.4.3
- babel-plugin-minify-mangle-names: 0.5.0
+ babel-plugin-minify-mangle-names: 0.5.1
babel-plugin-minify-numeric-literals: 0.4.3
babel-plugin-minify-replace: 0.5.0
babel-plugin-minify-simplify: 0.5.1
babel-plugin-minify-type-constructors: 0.4.3
babel-plugin-transform-inline-consecutive-adds: 0.4.3
babel-plugin-transform-member-expression-literals: 6.9.4
- babel-plugin-transform-merge-sibling-variables: 6.9.4
+ babel-plugin-transform-merge-sibling-variables: 6.9.5
babel-plugin-transform-minify-booleans: 6.9.4
babel-plugin-transform-property-literals: 6.9.4
babel-plugin-transform-regexp-constructors: 0.4.3
@@ -15993,21 +16638,21 @@ packages:
/babel-preset-react-app/10.0.1:
resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
dependencies:
- '@babel/core': 7.17.5
- '@babel/plugin-proposal-class-properties': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-decorators': 7.16.7_@babel+core@7.17.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-numeric-separator': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-private-methods': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-proposal-private-property-in-object': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-flow-strip-types': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-react-display-name': 7.16.0_@babel+core@7.17.5
- '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.17.5
- '@babel/preset-env': 7.16.4_@babel+core@7.17.5
- '@babel/preset-react': 7.16.0_@babel+core@7.17.5
- '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5
- '@babel/runtime': 7.17.2
+ '@babel/core': 7.24.7
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-decorators': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.24.7
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11_@babel+core@7.24.7
+ '@babel/plugin-transform-flow-strip-types': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-react-display-name': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-runtime': 7.24.7_@babel+core@7.24.7
+ '@babel/preset-env': 7.24.7_@babel+core@7.24.7
+ '@babel/preset-react': 7.24.7_@babel+core@7.24.7
+ '@babel/preset-typescript': 7.24.7_@babel+core@7.24.7
+ '@babel/runtime': 7.24.7
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
transitivePeerDependencies:
@@ -16036,7 +16681,7 @@ packages:
dev: false
/babel-preset-react/6.24.1:
- resolution: {integrity: sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A=}
+ resolution: {integrity: sha512-phQe3bElbgF887UM0Dhz55d22ob8czTL1kbhZFwpCE6+R/X9kHktfwmx9JZb+bBSVRGphP5tZ9oWhVhlgjrX3Q==}
dependencies:
babel-plugin-syntax-jsx: 6.18.0
babel-plugin-transform-react-display-name: 6.25.0
@@ -16047,7 +16692,7 @@ packages:
dev: true
/babel-preset-stage-0/6.24.1:
- resolution: {integrity: sha1-VkLRUEL5E4TX5a+LyIsduVsDnmo=}
+ resolution: {integrity: sha512-MJD+xBbpsApbKlzAX0sOBF+VeFaUmv5s8FSOO7SSZpes1QgphCjq/UIGRFWSmQ/0i5bqQjLGCTXGGXqcLQ9JDA==}
dependencies:
babel-plugin-transform-do-expressions: 6.22.0
babel-plugin-transform-function-bind: 6.22.0
@@ -16057,7 +16702,7 @@ packages:
dev: true
/babel-preset-stage-1/6.24.1:
- resolution: {integrity: sha1-dpLNfc1oSZB+auSgqFWJz7niv7A=}
+ resolution: {integrity: sha512-rn+UOcd7BHDniq1SVxv2/AVVSVI1NK+hfS0I/iR6m6KbOi/aeBRcqBilqO73pd9VUpRXF2HFtlDuC9F2BEQqmg==}
dependencies:
babel-plugin-transform-class-constructor-call: 6.24.1
babel-plugin-transform-export-extensions: 6.22.0
@@ -16067,7 +16712,7 @@ packages:
dev: true
/babel-preset-stage-2/6.24.1:
- resolution: {integrity: sha1-2eKWD7PXEYfw5k7sYrwHdnIZvcE=}
+ resolution: {integrity: sha512-9F+nquz+37PrlTSBdpeQBKnQfAMNBnryXw+m4qBh35FNbJPfzZz+sjN2G5Uf1CRedU9PH7fJkTbYijxmkLX8Og==}
dependencies:
babel-plugin-syntax-dynamic-import: 6.18.0
babel-plugin-transform-class-properties: 6.24.1
@@ -16078,7 +16723,7 @@ packages:
dev: true
/babel-preset-stage-3/6.24.1:
- resolution: {integrity: sha1-g2raCp56f6N8sTj7kyb4eTSkg5U=}
+ resolution: {integrity: sha512-eCbEOF8uN0KypFXJmZXn2sTk7bPV9uM5xov7G/7BM08TbQEObsVs0cEWfy6NQySlfk7JBi/t+XJP1JkruYfthA==}
dependencies:
babel-plugin-syntax-trailing-function-commas: 6.22.0
babel-plugin-transform-async-generator-functions: 6.24.1
@@ -16090,27 +16735,27 @@ packages:
dev: true
/babel-register/6.26.0:
- resolution: {integrity: sha1-btAhFz4vy0htestFxgCahW9kcHE=}
+ resolution: {integrity: sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A==}
dependencies:
babel-core: 6.26.3
babel-runtime: 6.26.0
core-js: 2.6.12
home-or-tmp: 2.0.0
lodash: 4.17.21
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
source-map-support: 0.4.18
transitivePeerDependencies:
- supports-color
dev: true
/babel-runtime/6.26.0:
- resolution: {integrity: sha1-llxwWGaOgrVde/4E/yM3vItWR/4=}
+ resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
dependencies:
core-js: 2.6.12
regenerator-runtime: 0.11.1
/babel-template/6.26.0:
- resolution: {integrity: sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=}
+ resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==}
dependencies:
babel-runtime: 6.26.0
babel-traverse: 6.26.0
@@ -16122,7 +16767,7 @@ packages:
dev: true
/babel-traverse/6.26.0:
- resolution: {integrity: sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=}
+ resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==}
dependencies:
babel-code-frame: 6.26.0
babel-messages: 6.23.0
@@ -16138,7 +16783,7 @@ packages:
dev: true
/babel-types/6.26.0:
- resolution: {integrity: sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=}
+ resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==}
dependencies:
babel-runtime: 6.26.0
esutils: 2.0.3
@@ -16151,11 +16796,11 @@ packages:
hasBin: true
/backo2/1.0.2:
- resolution: {integrity: sha1-MasayLEpNjRj41s+u2n038+6eUc=}
+ resolution: {integrity: sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA==}
dev: false
/balanced-match/0.4.2:
- resolution: {integrity: sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=}
+ resolution: {integrity: sha512-STw03mQKnGUYtoNjmowo4F2cRmIIxYEGiMsjjwla/u5P1lxadj/05WkNaFjNiKTgJkj8KiXbgAiRTmcQRwQNtg==}
dev: false
/balanced-match/1.0.2:
@@ -16167,7 +16812,7 @@ packages:
dependencies:
cache-base: 1.0.1
class-utils: 0.3.6
- component-emitter: 1.3.0
+ component-emitter: 1.3.1
define-property: 1.0.0
isobject: 3.0.1
mixin-deep: 1.3.2
@@ -16177,17 +16822,17 @@ packages:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
/basscss-addons/1.0.0:
- resolution: {integrity: sha1-CGEUgcB6GFVEyEMRGXtsGLZIzug=}
+ resolution: {integrity: sha512-EhSHAsfnzOA59baXm7uG70GcTqOZzHjfO5ro4CyzvIiF1Xyjjb84VvV+zE6fZ6U71SsG4Vp5H3m8cu3IQmLcbw==}
dependencies:
colors.css: 3.0.0
dev: false
/basscss-align/1.0.2:
- resolution: {integrity: sha1-KUqmidb5nahuSvTFwokocIVcHDc=}
+ resolution: {integrity: sha512-T7XvlG6jqjBvQ27xSioO5p069E5jW12QbOy+V+QKnkmfwkU+SDTrcLI2DMSlTPGbPmtDZHeRrG9qwOhjbaMMbg==}
dev: false
/basscss-border/4.0.2:
- resolution: {integrity: sha1-FLRQYym5DLFKvl9NNHPp/pIC3y4=}
+ resolution: {integrity: sha512-qw+AeA7zFVtYWdWR+GQ+CkXbGzJ6QhjyT4eE4SURSkviSoZkZEA+oVbtC/yD/hiy/spWFk9UDLE71vJ8CDEnHw==}
dev: false
/basscss-flexbox/1.0.2:
@@ -16195,15 +16840,15 @@ packages:
dev: false
/basscss-grid/2.0.0:
- resolution: {integrity: sha1-b0wxmOeGo4Up+DYrw7O85SVME2k=}
+ resolution: {integrity: sha512-vUnHyLvNx4Bi7caXWMpooMBOBCP+bib/z+pu/kqySLHe0ap5kNTs9EgTBI/QVD8VrnruIznL5GUP3RuT0KLZ6g==}
dev: false
/basscss-hide/1.0.1:
- resolution: {integrity: sha1-NLwTi7qGfGxJq4aCphDvSV5H11A=}
+ resolution: {integrity: sha512-NYKtjyYIoY4GGiRrE5b3NV/9AmLJOoYTshKl2N6rNI+Bvh+rElT+F7GsOvNlmJvoVhDihcLK16U2UYYNlmb9Bw==}
dev: false
/basscss-layout/3.1.0:
- resolution: {integrity: sha1-+fOS5IDaZmV9n+XenKTAfFecOk4=}
+ resolution: {integrity: sha512-umKiuaeDS4THPPA/3N8UOO3wyubEKf+93Cm971QkAWLjDu2OrX5rOOAQC+tP+Q+OsMaAKvMNdZlA4kij+2y4nQ==}
dev: false
/basscss-margin/1.0.9:
@@ -16211,15 +16856,15 @@ packages:
dev: false
/basscss-padding/1.1.3:
- resolution: {integrity: sha1-adt5lBTm3Vi+2Dd2lSzCmeLmh04=}
+ resolution: {integrity: sha512-pfqA7LgTpdR9lCh36IxWFNV4kZM53G1lnQlvC/2MzUu62XhvRDXD2uENGXWwJYKgaxRAdqdDoHZ0K23mRlk29g==}
dev: false
/basscss-position/2.0.3:
- resolution: {integrity: sha1-RnGAofjzhukHLtjQgpTSpuC6QwU=}
+ resolution: {integrity: sha512-g3esHpUHqABF4wieZyAVaLI6JnK7/mPVG65OCfM6VcSRQcw7g4mxHI8nTWlnwlzpwFnqXnI/KBco00ccUJvOLg==}
dev: false
/basscss-sass/4.0.0:
- resolution: {integrity: sha1-wtYptiVm6yBI9yIxzbzJ7+DCYwg=}
+ resolution: {integrity: sha512-WIFjZp9pBxLNjuy6LMKUKMOIf+3VuQQYf68vn4yR+MlDro6DYzXD016mX6w8mNYdJv1MCzPz3bJSM3e9WVRf4A==}
dependencies:
basscss: 8.1.0
basscss-addons: 1.0.0
@@ -16250,24 +16895,25 @@ packages:
dev: false
/batch-processor/1.0.0:
- resolution: {integrity: sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=}
+ resolution: {integrity: sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==}
dev: true
/batch/0.6.1:
- resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=}
+ resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
/bcrypt-pbkdf/1.0.2:
resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
dependencies:
tweetnacl: 0.14.5
- /bfj/7.0.2:
- resolution: {integrity: sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==}
+ /bfj/7.1.0:
+ resolution: {integrity: sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==}
engines: {node: '>= 8.0.0'}
dependencies:
bluebird: 3.7.2
- check-types: 11.1.2
+ check-types: 11.2.3
hoopy: 0.1.4
+ jsonpath: 1.1.1
tryer: 1.0.1
/big.js/3.2.0:
@@ -16281,8 +16927,8 @@ packages:
resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==}
engines: {node: '>=0.10.0'}
- /binary-extensions/2.2.0:
- resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
+ /binary-extensions/2.3.0:
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
/bindings/1.5.0:
@@ -16297,7 +16943,7 @@ packages:
dependencies:
buffer: 5.7.1
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
dev: true
/blob-util/2.0.2:
@@ -16305,7 +16951,7 @@ packages:
dev: true
/block-stream/0.0.9:
- resolution: {integrity: sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=}
+ resolution: {integrity: sha512-OorbnJVPII4DuUKbjARAe8u8EfqOmkEEaSFIyoQ7OjTHn6kafxWl0wLgoZ2rXaYd7MyLcDaU4TmhfxtwgcccMQ==}
engines: {node: 0.4 || >=0.5.8}
dependencies:
inherits: 2.0.4
@@ -16321,55 +16967,63 @@ packages:
resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==}
dev: true
+ /blurhash/2.0.5:
+ resolution: {integrity: sha512-cRygWd7kGBQO3VEhPiTgq4Wc43ctsM+o46urrmPOiuAe+07fzlSB9OJVdpgDL0jPqXUVQ9ht7aq7kxOeJHRK+w==}
+ dev: false
+
/bn.js/4.12.0:
resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==}
- /bn.js/5.2.0:
- resolution: {integrity: sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==}
+ /bn.js/5.2.1:
+ resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
- /body-parser/1.19.0:
- resolution: {integrity: sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==}
- engines: {node: '>= 0.8'}
+ /body-parser/1.20.2:
+ resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
- bytes: 3.1.0
- content-type: 1.0.4
+ bytes: 3.1.2
+ content-type: 1.0.5
debug: 2.6.9
- depd: 1.1.2
- http-errors: 1.7.2
+ depd: 2.0.0
+ destroy: 1.2.0
+ http-errors: 2.0.0
iconv-lite: 0.4.24
- on-finished: 2.3.0
- qs: 6.7.0
- raw-body: 2.4.0
+ on-finished: 2.4.1
+ qs: 6.11.0
+ raw-body: 2.5.2
type-is: 1.6.18
+ unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
dev: true
- /body-parser/1.19.0_supports-color@6.1.0:
- resolution: {integrity: sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==}
- engines: {node: '>= 0.8'}
+ /body-parser/1.20.2_supports-color@6.1.0:
+ resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
- bytes: 3.1.0
- content-type: 1.0.4
+ bytes: 3.1.2
+ content-type: 1.0.5
debug: 2.6.9_supports-color@6.1.0
- depd: 1.1.2
- http-errors: 1.7.2
+ depd: 2.0.0
+ destroy: 1.2.0
+ http-errors: 2.0.0
iconv-lite: 0.4.24
- on-finished: 2.3.0
- qs: 6.7.0
- raw-body: 2.4.0
+ on-finished: 2.4.1
+ qs: 6.11.0
+ raw-body: 2.5.2
type-is: 1.6.18
+ unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
/bonde-styleguide/0.16.5-alpha.5:
resolution: {integrity: sha512-9RhVcjTdLPto+bcOhYaCOCWt9k40pbVertys+4fK5rWY9sjJow2hUCe1BUWmr/DpordxuNkqXcrIIfoR11OD+Q==}
dependencies:
- '@babel/plugin-proposal-class-properties': 7.16.0
- '@babel/plugin-transform-runtime': 7.16.4
+ '@babel/plugin-proposal-class-properties': 7.13.0
+ '@babel/plugin-transform-runtime': 7.13.15
babel-plugin-styled-components: 1.13.3_styled-components@4.4.1
- prop-types: 15.7.2
- recharts: 1.8.5
+ prop-types: 15.8.1
+ recharts: 1.8.6
styled-components: 4.4.1
webfontloader: 1.6.28
transitivePeerDependencies:
@@ -16383,7 +17037,7 @@ packages:
resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==}
dependencies:
array-flatten: 2.1.2
- deep-equal: 1.1.1
+ deep-equal: 1.1.2
dns-equal: 1.0.0
dns-txt: 2.0.2
multicast-dns: 6.2.3
@@ -16439,7 +17093,7 @@ packages:
concat-map: 0.0.1
/braces/1.8.5:
- resolution: {integrity: sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=}
+ resolution: {integrity: sha512-xU7bpz2ytJl1bH9cgIurjpg/n8Gohy9GTw81heDYLJQ4RU60dlyJsa+atVF2pI0yMMvKxI9HkKwjePCj5XI1hw==}
engines: {node: '>=0.10.0'}
dependencies:
expand-range: 1.8.2
@@ -16482,11 +17136,11 @@ packages:
transitivePeerDependencies:
- supports-color
- /braces/3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
+ /braces/3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
dependencies:
- fill-range: 7.0.1
+ fill-range: 7.1.1
/brorand/1.1.0:
resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
@@ -16524,27 +17178,29 @@ packages:
resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==}
dependencies:
cipher-base: 1.0.4
- des.js: 1.0.1
+ des.js: 1.1.0
inherits: 2.0.4
safe-buffer: 5.2.1
/browserify-rsa/4.1.0:
resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==}
dependencies:
- bn.js: 5.2.0
+ bn.js: 5.2.1
randombytes: 2.1.0
- /browserify-sign/4.2.1:
- resolution: {integrity: sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==}
+ /browserify-sign/4.2.3:
+ resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==}
+ engines: {node: '>= 0.12'}
dependencies:
- bn.js: 5.2.0
+ bn.js: 5.2.1
browserify-rsa: 4.1.0
create-hash: 1.2.0
create-hmac: 1.1.7
- elliptic: 6.5.4
+ elliptic: 6.5.5
+ hash-base: 3.0.4
inherits: 2.0.4
- parse-asn1: 5.1.6
- readable-stream: 3.6.0
+ parse-asn1: 5.1.7
+ readable-stream: 2.3.8
safe-buffer: 5.2.1
/browserify-zlib/0.2.0:
@@ -16556,16 +17212,16 @@ packages:
resolution: {integrity: sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001282
- electron-to-chromium: 1.3.900
+ caniuse-lite: 1.0.30001632
+ electron-to-chromium: 1.4.798
dev: true
/browserslist/4.10.0:
resolution: {integrity: sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001312
- electron-to-chromium: 1.4.71
+ caniuse-lite: 1.0.30001632
+ electron-to-chromium: 1.4.798
node-releases: 1.1.77
pkg-up: 3.1.0
dev: false
@@ -16575,39 +17231,27 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001314
- electron-to-chromium: 1.4.81
- escalade: 3.1.1
+ caniuse-lite: 1.0.30001632
+ electron-to-chromium: 1.4.798
+ escalade: 3.1.2
node-releases: 1.1.77
- /browserslist/4.19.1:
- resolution: {integrity: sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001312
- electron-to-chromium: 1.4.71
- escalade: 3.1.1
- node-releases: 2.0.1
- picocolors: 1.0.0
-
- /browserslist/4.20.0:
- resolution: {integrity: sha512-bnpOoa+DownbciXj0jVGENf8VYQnE2LNWomhYuCsMmmx9Jd9lwq0WXODuwpSsp8AVdKM2/HorrzxAfbKvWTByQ==}
+ /browserslist/4.23.1:
+ resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001314
- electron-to-chromium: 1.4.81
- escalade: 3.1.1
- node-releases: 2.0.2
- picocolors: 1.0.0
+ caniuse-lite: 1.0.30001632
+ electron-to-chromium: 1.4.798
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.16_browserslist@4.23.1
/browserslist/4.7.0:
resolution: {integrity: sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001282
- electron-to-chromium: 1.3.900
+ caniuse-lite: 1.0.30001632
+ electron-to-chromium: 1.4.798
node-releases: 1.1.77
dev: true
@@ -16628,7 +17272,7 @@ packages:
dev: true
/buffer-equal-constant-time/1.0.1:
- resolution: {integrity: sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=}
+ resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==}
dev: false
/buffer-from/1.1.2:
@@ -16644,33 +17288,40 @@ packages:
resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==}
dependencies:
base64-js: 1.5.1
- ieee754: 1.1.13
+ ieee754: 1.2.1
isarray: 1.0.0
/buffer/5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
dependencies:
base64-js: 1.5.1
- ieee754: 1.1.13
+ ieee754: 1.2.1
+ dev: true
+
+ /buffer/6.0.3:
+ resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
dev: true
- /builtin-modules/3.2.0:
- resolution: {integrity: sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==}
+ /builtin-modules/3.3.0:
+ resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
engines: {node: '>=6'}
/builtin-status-codes/3.0.0:
resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
/bytes/3.0.0:
- resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=}
+ resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
- /bytes/3.1.0:
- resolution: {integrity: sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==}
+ /bytes/3.1.2:
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- /c8/7.10.0:
- resolution: {integrity: sha512-OAwfC5+emvA6R7pkYFVBTOtI5ruf9DahffGmIqUc9l6wEh0h7iAFP6dt/V9Ioqlr2zW5avX9U9/w1I4alTRHkA==}
+ /c8/7.14.0:
+ resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==}
engines: {node: '>=10.12.0'}
hasBin: true
dependencies:
@@ -16678,12 +17329,12 @@ packages:
'@istanbuljs/schema': 0.1.3
find-up: 5.0.0
foreground-child: 2.0.0
- istanbul-lib-coverage: 3.2.0
- istanbul-lib-report: 3.0.0
- istanbul-reports: 3.1.4
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-report: 3.0.1
+ istanbul-reports: 3.1.7
rimraf: 3.0.2
test-exclude: 6.0.0
- v8-to-istanbul: 8.1.0
+ v8-to-istanbul: 9.2.0
yargs: 16.2.0
yargs-parser: 20.2.9
dev: true
@@ -16694,12 +17345,12 @@ packages:
bluebird: 3.7.2
chownr: 1.1.4
figgy-pudding: 3.5.2
- glob: 7.2.0
- graceful-fs: 4.2.9
+ glob: 7.2.3
+ graceful-fs: 4.2.11
infer-owner: 1.0.4
lru-cache: 5.1.1
mississippi: 3.0.0
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
move-concurrently: 1.0.1
promise-inflight: 1.0.1_bluebird@3.7.2
rimraf: 2.7.1
@@ -16714,15 +17365,15 @@ packages:
chownr: 1.1.4
figgy-pudding: 3.5.2
fs-minipass: 2.1.0
- glob: 7.2.0
- graceful-fs: 4.2.9
+ glob: 7.2.3
+ graceful-fs: 4.2.11
infer-owner: 1.0.4
lru-cache: 5.1.1
- minipass: 3.1.5
+ minipass: 3.3.6
minipass-collect: 1.0.2
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
move-concurrently: 1.0.1
p-map: 3.0.0
promise-inflight: 1.0.1
@@ -16736,14 +17387,14 @@ packages:
resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==}
engines: {node: '>= 10'}
dependencies:
- '@npmcli/fs': 1.1.0
+ '@npmcli/fs': 1.1.1
'@npmcli/move-file': 1.1.2
chownr: 2.0.0
fs-minipass: 2.1.0
- glob: 7.2.0
+ glob: 7.2.3
infer-owner: 1.0.4
lru-cache: 6.0.0
- minipass: 3.1.5
+ minipass: 3.3.6
minipass-collect: 1.0.2
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
@@ -16752,7 +17403,7 @@ packages:
promise-inflight: 1.0.1
rimraf: 3.0.2
ssri: 8.0.1
- tar: 6.1.11
+ tar: 6.2.1
unique-filename: 1.1.1
transitivePeerDependencies:
- bluebird
@@ -16762,7 +17413,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
collection-visit: 1.0.0
- component-emitter: 1.3.0
+ component-emitter: 1.3.1
get-value: 2.0.6
has-value: 1.0.0
isobject: 3.0.1
@@ -16775,17 +17426,17 @@ packages:
resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==}
engines: {node: '>=8'}
dependencies:
- clone-response: 1.0.2
+ clone-response: 1.0.3
get-stream: 5.2.0
- http-cache-semantics: 4.1.0
+ http-cache-semantics: 4.1.1
keyv: 3.1.0
lowercase-keys: 2.0.0
normalize-url: 4.5.1
responselike: 1.0.2
dev: true
- /cachedir/2.3.0:
- resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==}
+ /cachedir/2.4.0:
+ resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==}
engines: {node: '>=6'}
dev: true
@@ -16799,14 +17450,18 @@ packages:
write-file-atomic: 3.0.3
dev: true
- /call-bind/1.0.2:
- resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
+ /call-bind/1.0.7:
+ resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
+ engines: {node: '>= 0.4'}
dependencies:
- function-bind: 1.1.1
- get-intrinsic: 1.1.1
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ set-function-length: 1.2.2
- /call-me-maybe/1.0.1:
- resolution: {integrity: sha1-JtII6onje1y95gJQoV8DHBak1ms=}
+ /call-me-maybe/1.0.2:
+ resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
/caller-callsite/2.0.0:
resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
@@ -16829,7 +17484,7 @@ packages:
engines: {node: '>=6'}
/camel-case/3.0.0:
- resolution: {integrity: sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=}
+ resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==}
dependencies:
no-case: 2.3.2
upper-case: 1.1.3
@@ -16839,21 +17494,26 @@ packages:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
- tslib: 2.3.1
+ tslib: 2.6.3
+
+ /camelcase-css/2.0.1:
+ resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
+ engines: {node: '>= 6'}
+ dev: true
/camelcase-keys/2.1.0:
- resolution: {integrity: sha1-MIvur/3ygRkFHvodkyITyRuPkuc=}
+ resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==}
engines: {node: '>=0.10.0'}
dependencies:
camelcase: 2.1.1
map-obj: 1.0.1
/camelcase/2.1.1:
- resolution: {integrity: sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=}
+ resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==}
engines: {node: '>=0.10.0'}
/camelcase/4.1.0:
- resolution: {integrity: sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz}
+ resolution: {integrity: sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==}
engines: {node: '>=4'}
/camelcase/5.0.0:
@@ -16869,31 +17529,24 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- /camelize/1.0.0:
- resolution: {integrity: sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=}
+ /camelize/1.0.1:
+ resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
dev: false
/can-use-dom/0.1.0:
- resolution: {integrity: sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo=}
+ resolution: {integrity: sha512-ceOhN1DL7Y4O6M0j9ICgmTYziV89WMd96SvSl0REd8PMgrY0B/WBOPoed5S1KUmJqXgUXh8gzSe6E3ae27upsQ==}
dev: true
/caniuse-api/3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.20.0
- caniuse-lite: 1.0.30001314
+ browserslist: 4.23.1
+ caniuse-lite: 1.0.30001632
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- /caniuse-lite/1.0.30001282:
- resolution: {integrity: sha512-YhF/hG6nqBEllymSIjLtR2iWDDnChvhnVJqp+vloyt2tEHFG1yBR+ac2B/rOw0qOK0m0lEXU2dv4E/sMk5P9Kg==}
- dev: true
-
- /caniuse-lite/1.0.30001312:
- resolution: {integrity: sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==}
-
- /caniuse-lite/1.0.30001314:
- resolution: {integrity: sha512-0zaSO+TnCHtHJIbpLroX7nsD+vYuOVjl3uzFbJO1wMVbuveJA0RK2WcQA9ZUIOiO0/ArMiMgHJLxfEZhQiC0kw==}
+ /caniuse-lite/1.0.30001632:
+ resolution: {integrity: sha512-udx3o7yHJfUxMLkGohMlVHCvFvWmirKh9JAH/d7WOLPetlH+LTL5cocMZ0t7oZx/mdlOWXti97xLZWc8uURRHg==}
/capture-exit/2.0.0:
resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==}
@@ -16913,19 +17566,20 @@ packages:
/caseless/0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
- /chai/4.3.4:
- resolution: {integrity: sha512-yS5H68VYOCtN1cjfwumDSuzn/9c+yza4f3reKXlE5rUg7SFcCEy90gJvydNgOYtblyf4Zi6jIWRnXOgErta0KA==}
+ /chai/4.4.1:
+ resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
engines: {node: '>=4'}
dependencies:
assertion-error: 1.1.0
- check-error: 1.0.2
- deep-eql: 3.0.1
- get-func-name: 2.0.0
+ check-error: 1.0.3
+ deep-eql: 4.1.4
+ get-func-name: 2.0.2
+ loupe: 2.3.7
pathval: 1.1.1
type-detect: 4.0.8
/chalk/1.1.3:
- resolution: {integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=}
+ resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
engines: {node: '>=0.10.0'}
dependencies:
ansi-styles: 2.2.1
@@ -16984,38 +17638,41 @@ packages:
/chardet/0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
- /check-error/1.0.2:
- resolution: {integrity: sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=}
+ /check-error/1.0.3:
+ resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
+ dependencies:
+ get-func-name: 2.0.2
/check-more-types/2.24.0:
resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==}
engines: {node: '>= 0.8.0'}
dev: true
- /check-types/11.1.2:
- resolution: {integrity: sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==}
+ /check-types/11.2.3:
+ resolution: {integrity: sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==}
- /cheerio-select/1.5.0:
- resolution: {integrity: sha512-qocaHPv5ypefh6YNxvnbABM07KMxExbtbfuJoIie3iZXX1ERwYmJcIiRrr9H05ucQP1k28dav8rpdDgjQd8drg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-1.5.0.tgz}
+ /cheerio-select/2.1.0:
+ resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
dependencies:
- css-select: 4.1.3
- css-what: 5.1.0
- domelementtype: 2.2.0
- domhandler: 4.2.2
- domutils: 2.8.0
+ boolbase: 1.0.0
+ css-select: 5.1.0
+ css-what: 6.1.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ domutils: 3.1.0
dev: true
- /cheerio/1.0.0-rc.10:
- resolution: {integrity: sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.10.tgz}
+ /cheerio/1.0.0-rc.12:
+ resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==}
engines: {node: '>= 6'}
dependencies:
- cheerio-select: 1.5.0
- dom-serializer: 1.3.2
- domhandler: 4.2.2
- htmlparser2: 6.1.0
- parse5: 6.0.1
- parse5-htmlparser2-tree-adapter: 6.0.1
- tslib: 2.3.1
+ cheerio-select: 2.1.0
+ dom-serializer: 2.0.0
+ domhandler: 5.0.3
+ domutils: 3.1.0
+ htmlparser2: 8.0.2
+ parse5: 7.1.2
+ parse5-htmlparser2-tree-adapter: 7.0.0
dev: true
/chokidar-cli/1.2.3:
@@ -17036,7 +17693,7 @@ packages:
requiresBuild: true
dependencies:
anymatch: 1.3.2
- async-each: 1.0.3
+ async-each: 1.0.6
glob-parent: 2.0.0
inherits: 2.0.4
is-binary-path: 1.0.1
@@ -17052,10 +17709,10 @@ packages:
/chokidar/2.1.5:
resolution: {integrity: sha512-i0TprVWp+Kj4WRPtInjexJ8Q+BqTE909VpH8xVhXrJkoc5QC8VO9TryGOqTr+2hljzc1sC62t22h5tZePodM/A==}
- deprecated: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.
+ deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
dependencies:
anymatch: 2.0.0
- async-each: 1.0.3
+ async-each: 1.0.6
braces: 2.3.2
glob-parent: 3.1.0
inherits: 2.0.4
@@ -17076,7 +17733,7 @@ packages:
deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
dependencies:
anymatch: 2.0.0
- async-each: 1.0.3
+ async-each: 1.0.6
braces: 2.3.2
glob-parent: 3.1.0
inherits: 2.0.4
@@ -17096,7 +17753,7 @@ packages:
deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
dependencies:
anymatch: 2.0.0_supports-color@6.1.0
- async-each: 1.0.3
+ async-each: 1.0.6
braces: 2.3.2_supports-color@6.1.0
glob-parent: 3.1.0
inherits: 2.0.4
@@ -17115,47 +17772,30 @@ packages:
resolution: {integrity: sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==}
engines: {node: '>= 8.10.0'}
dependencies:
- anymatch: 3.1.2
- braces: 3.0.2
+ anymatch: 3.1.3
+ braces: 3.0.3
glob-parent: 5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.3
normalize-path: 3.0.0
readdirp: 3.5.0
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
dev: true
- /chokidar/3.5.2:
- resolution: {integrity: sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==}
- engines: {node: '>= 8.10.0'}
- requiresBuild: true
- dependencies:
- anymatch: 3.1.2
- braces: 3.0.2
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.2
-
- /chokidar/3.5.3:
- resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
+ /chokidar/3.6.0:
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
- requiresBuild: true
dependencies:
- anymatch: 3.1.2
- braces: 3.0.2
+ anymatch: 3.1.3
+ braces: 3.0.3
glob-parent: 5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.3
normalize-path: 3.0.0
readdirp: 3.6.0
optionalDependencies:
- fsevents: 2.3.2
- optional: true
+ fsevents: 2.3.3
/chownr/1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
@@ -17164,8 +17804,8 @@ packages:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
- /chrome-trace-event/1.0.3:
- resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
+ /chrome-trace-event/1.0.4:
+ resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
/chunkd/2.0.1:
@@ -17175,8 +17815,9 @@ packages:
/ci-info/2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
- /ci-info/3.3.0:
- resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==}
+ /ci-info/3.9.0:
+ resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
+ engines: {node: '>=8'}
dev: true
/ci-parallel-vars/1.0.1:
@@ -17192,9 +17833,82 @@ packages:
/cjs-module-lexer/0.6.0:
resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==}
- /cjs-module-lexer/1.2.2:
- resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==}
- dev: true
+ /cjs-module-lexer/1.3.1:
+ resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==}
+ dev: true
+
+ /ckeditor5/41.4.2:
+ resolution: {integrity: sha512-90k7d3R1B7x3muHOKKOGIomFsSQRG1sPuRHdN6J7WmKZH+BrMQgRkUs66xVRhNjrLPmewwJYdQI42Sb1cA1ILQ==}
+ dependencies:
+ '@ckeditor/ckeditor5-adapter-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-alignment': 41.4.2
+ '@ckeditor/ckeditor5-autoformat': 41.4.2
+ '@ckeditor/ckeditor5-autosave': 41.4.2
+ '@ckeditor/ckeditor5-basic-styles': 41.4.2
+ '@ckeditor/ckeditor5-block-quote': 41.4.2
+ '@ckeditor/ckeditor5-build-balloon': 41.4.2
+ '@ckeditor/ckeditor5-build-balloon-block': 41.4.2
+ '@ckeditor/ckeditor5-build-classic': 41.4.2
+ '@ckeditor/ckeditor5-build-decoupled-document': 41.4.2
+ '@ckeditor/ckeditor5-build-inline': 41.4.2
+ '@ckeditor/ckeditor5-build-multi-root': 41.4.2
+ '@ckeditor/ckeditor5-ckbox': 41.4.2
+ '@ckeditor/ckeditor5-ckfinder': 41.4.2
+ '@ckeditor/ckeditor5-clipboard': 41.4.2
+ '@ckeditor/ckeditor5-cloud-services': 41.4.2
+ '@ckeditor/ckeditor5-code-block': 41.4.2
+ '@ckeditor/ckeditor5-core': 41.4.2
+ '@ckeditor/ckeditor5-easy-image': 41.4.2
+ '@ckeditor/ckeditor5-editor-balloon': 41.4.2
+ '@ckeditor/ckeditor5-editor-classic': 41.4.2
+ '@ckeditor/ckeditor5-editor-decoupled': 41.4.2
+ '@ckeditor/ckeditor5-editor-inline': 41.4.2
+ '@ckeditor/ckeditor5-editor-multi-root': 41.4.2
+ '@ckeditor/ckeditor5-engine': 41.4.2
+ '@ckeditor/ckeditor5-enter': 41.4.2
+ '@ckeditor/ckeditor5-essentials': 41.4.2
+ '@ckeditor/ckeditor5-find-and-replace': 41.4.2
+ '@ckeditor/ckeditor5-font': 41.4.2
+ '@ckeditor/ckeditor5-heading': 41.4.2
+ '@ckeditor/ckeditor5-highlight': 41.4.2
+ '@ckeditor/ckeditor5-horizontal-line': 41.4.2
+ '@ckeditor/ckeditor5-html-embed': 41.4.2
+ '@ckeditor/ckeditor5-html-support': 41.4.2
+ '@ckeditor/ckeditor5-image': 41.4.2
+ '@ckeditor/ckeditor5-indent': 41.4.2
+ '@ckeditor/ckeditor5-language': 41.4.2
+ '@ckeditor/ckeditor5-link': 41.4.2
+ '@ckeditor/ckeditor5-list': 41.4.2
+ '@ckeditor/ckeditor5-markdown-gfm': 41.4.2
+ '@ckeditor/ckeditor5-media-embed': 41.4.2
+ '@ckeditor/ckeditor5-mention': 41.4.2
+ '@ckeditor/ckeditor5-minimap': 41.4.2
+ '@ckeditor/ckeditor5-page-break': 41.4.2
+ '@ckeditor/ckeditor5-paragraph': 41.4.2
+ '@ckeditor/ckeditor5-paste-from-office': 41.4.2
+ '@ckeditor/ckeditor5-remove-format': 41.4.2
+ '@ckeditor/ckeditor5-restricted-editing': 41.4.2
+ '@ckeditor/ckeditor5-select-all': 41.4.2
+ '@ckeditor/ckeditor5-show-blocks': 41.4.2
+ '@ckeditor/ckeditor5-source-editing': 41.4.2
+ '@ckeditor/ckeditor5-special-characters': 41.4.2
+ '@ckeditor/ckeditor5-style': 41.4.2
+ '@ckeditor/ckeditor5-table': 41.4.2
+ '@ckeditor/ckeditor5-theme-lark': 41.4.2
+ '@ckeditor/ckeditor5-typing': 41.4.2
+ '@ckeditor/ckeditor5-ui': 41.4.2
+ '@ckeditor/ckeditor5-undo': 41.4.2
+ '@ckeditor/ckeditor5-upload': 41.4.2
+ '@ckeditor/ckeditor5-utils': 41.4.2
+ '@ckeditor/ckeditor5-watchdog': 41.4.2
+ '@ckeditor/ckeditor5-widget': 41.4.2
+ '@ckeditor/ckeditor5-word-count': 41.4.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
/class-utils/0.3.6:
resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
@@ -17205,8 +17919,8 @@ packages:
isobject: 3.0.1
static-extend: 0.1.2
- /classnames/2.3.1:
- resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==}
+ /classnames/2.5.1:
+ resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
dev: false
/clean-css/4.2.4:
@@ -17220,12 +17934,12 @@ packages:
engines: {node: '>=6'}
/clean-yaml-object/0.1.0:
- resolution: {integrity: sha1-Y/sRDcLOGoTcIfbZM0h20BCui2g=}
+ resolution: {integrity: sha512-3yONmlN9CSAkzNwnRCiJQ7Q2xK5mWuEfL3PuTZcAUzhObbXsfsnMptJzXwz93nc5zn9V9TwCVMmV7w4xsm43dw==}
engines: {node: '>=0.10.0'}
dev: true
/cli-boxes/1.0.0:
- resolution: {integrity: sha1-T6kXw+WclKAEzWH47lCdplFocUM=}
+ resolution: {integrity: sha512-3Fo5wu8Ytle8q9iCzS4D2MWVL2X7JVWRiS1BnXbTFDhS9c/REkM9vd1AmabsoZoY5/dGi5TT9iKL8Kb6DeBRQg==}
engines: {node: '>=0.10.0'}
dev: false
@@ -17234,7 +17948,7 @@ packages:
engines: {node: '>=6'}
/cli-cursor/2.1.0:
- resolution: {integrity: sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=}
+ resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
engines: {node: '>=4'}
dependencies:
restore-cursor: 2.0.0
@@ -17251,8 +17965,8 @@ packages:
engines: {node: '>=4'}
dev: true
- /cli-spinners/2.6.1:
- resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
+ /cli-spinners/2.9.2:
+ resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
dev: true
@@ -17266,8 +17980,8 @@ packages:
colors: 1.4.0
dev: true
- /cli-table3/0.6.2:
- resolution: {integrity: sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==}
+ /cli-table3/0.6.5:
+ resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
engines: {node: 10.* || >= 12.*}
dependencies:
string-width: 4.2.3
@@ -17294,8 +18008,8 @@ packages:
resolution: {integrity: sha512-vooFaGFL6ulEP1liiaWFBmmfuPm3cY3y7T9eB83ZTnYc/oFeAKsq3NcDrOkBC8XaauEE8zHQwI7k0+JSYiVQSQ==}
dev: false
- /clipboard/2.0.8:
- resolution: {integrity: sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==}
+ /clipboard/2.0.11:
+ resolution: {integrity: sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==}
requiresBuild: true
dependencies:
good-listener: 1.2.2
@@ -17352,7 +18066,7 @@ packages:
dev: true
/clone-deep/0.2.4:
- resolution: {integrity: sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=}
+ resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==}
engines: {node: '>=0.10.0'}
dependencies:
for-own: 0.1.5
@@ -17369,20 +18083,25 @@ packages:
kind-of: 6.0.3
shallow-clone: 3.0.1
- /clone-response/1.0.2:
- resolution: {integrity: sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=}
+ /clone-response/1.0.3:
+ resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
dependencies:
mimic-response: 1.0.1
dev: true
/clone/1.0.4:
- resolution: {integrity: sha1-2jCcwmPfFZlMaIypAheco8fNfH4=}
+ resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
dev: true
- /clsx/1.1.1:
- resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==}
+ /clsx/1.2.1:
+ resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
+ engines: {node: '>=6'}
+
+ /clsx/2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
+ dev: false
/co/4.6.0:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
@@ -17392,7 +18111,7 @@ packages:
resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==}
engines: {node: '>= 4.0'}
dependencies:
- '@types/q': 1.5.5
+ '@types/q': 1.5.8
chalk: 2.4.2
q: 1.5.1
@@ -17404,11 +18123,11 @@ packages:
dev: true
/code-point-at/1.1.0:
- resolution: {integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=}
+ resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
engines: {node: '>=0.10.0'}
- /collect-v8-coverage/1.0.1:
- resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
+ /collect-v8-coverage/1.0.2:
+ resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
/collection-visit/1.0.0:
resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
@@ -17434,8 +18153,13 @@ packages:
/color-name/1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- /color-string/1.6.0:
- resolution: {integrity: sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==}
+ /color-parse/1.4.2:
+ resolution: {integrity: sha512-RI7s49/8yqDj3fECFZjUI1Yi0z/Gq1py43oNJivAIIDSyJiOZLfYCRQEgn8HEVAj++PcRe8AnL2XF0fRJ3BTnA==}
+ dependencies:
+ color-name: 1.1.4
+
+ /color-string/1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
dependencies:
color-name: 1.1.4
simple-swizzle: 0.2.2
@@ -17444,21 +18168,24 @@ packages:
resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==}
dependencies:
color-convert: 1.9.3
- color-string: 1.6.0
+ color-string: 1.9.1
+
+ /colord/2.9.3:
+ resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
+ dev: true
- /colorette/2.0.16:
- resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==}
+ /colorette/2.0.20:
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
dev: true
/colors.css/3.0.0:
- resolution: {integrity: sha1-URz0L7inGZqMvvSciKTqTx2Pnvw=}
+ resolution: {integrity: sha512-mnoVd1viYkriMAuMWggN8v3lFvOjkJ2LcCNdh5ZbJs7SkxindeXmU8EV7nBGxdga03zwe00ut7uoFVCCu2mA/w==}
engines: {node: '>=0.10.22'}
dev: false
/colors/1.4.0:
resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==}
engines: {node: '>=0.1.90'}
- requiresBuild: true
/combined-stream/1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
@@ -17487,6 +18214,11 @@ packages:
engines: {node: '>= 6'}
dev: true
+ /commander/7.2.0:
+ resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
+ engines: {node: '>= 10'}
+ dev: true
+
/common-path-prefix/3.0.0:
resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
dev: true
@@ -17498,11 +18230,11 @@ packages:
/commondir/1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- /component-emitter/1.3.0:
- resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
+ /component-emitter/1.3.1:
+ resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==}
/compose-function/3.0.3:
- resolution: {integrity: sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=}
+ resolution: {integrity: sha512-xzhzTJ5eC+gmIzvZq+C3kCJHsp9os6tJkrigDRZclyGtOKINbZtE8n1Tzmeh32jW+BUDPbvZpibwvJHBLGMVwg==}
dependencies:
arity-n: 1.0.4
@@ -17510,13 +18242,13 @@ packages:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
dependencies:
- mime-db: 1.51.0
+ mime-db: 1.52.0
/compression/1.7.3:
resolution: {integrity: sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==}
engines: {node: '>= 0.8.0'}
dependencies:
- accepts: 1.3.7
+ accepts: 1.3.8
bytes: 3.0.0
compressible: 2.0.18
debug: 2.6.9
@@ -17531,7 +18263,7 @@ packages:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
dependencies:
- accepts: 1.3.7
+ accepts: 1.3.8
bytes: 3.0.0
compressible: 2.0.18
debug: 2.6.9_supports-color@6.1.0
@@ -17546,7 +18278,7 @@ packages:
dev: false
/concat-map/0.0.1:
- resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
/concat-stream/1.6.2:
resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==}
@@ -17554,7 +18286,7 @@ packages:
dependencies:
buffer-from: 1.1.2
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
typedarray: 0.0.6
/concaveman/1.2.1:
@@ -17572,11 +18304,11 @@ packages:
dependencies:
date-time: 3.1.0
esutils: 2.0.3
- fast-diff: 1.2.0
+ fast-diff: 1.3.0
js-string-escape: 1.0.1
lodash: 4.17.21
md5-hex: 3.0.1
- semver: 7.3.5
+ semver: 7.6.2
well-known-symbols: 2.0.0
dev: true
@@ -17585,15 +18317,15 @@ packages:
engines: {node: '>=8'}
dependencies:
dot-prop: 5.3.0
- graceful-fs: 4.2.8
+ graceful-fs: 4.2.11
make-dir: 3.1.0
unique-string: 2.0.0
write-file-atomic: 3.0.3
xdg-basedir: 4.0.0
dev: true
- /confusing-browser-globals/1.0.10:
- resolution: {integrity: sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==}
+ /confusing-browser-globals/1.0.11:
+ resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
/connect-history-api-fallback/1.6.0:
resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
@@ -17603,29 +18335,29 @@ packages:
resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
/console-control-strings/1.1.0:
- resolution: {integrity: sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=}
+ resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
/constants-browserify/1.0.0:
resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
/contains-path/0.1.0:
- resolution: {integrity: sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=}
+ resolution: {integrity: sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg==}
engines: {node: '>=0.10.0'}
dev: false
/content-disposition/0.5.2:
- resolution: {integrity: sha1-DPaLud318r55YcOoUXjLhdunjLQ=}
+ resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==}
engines: {node: '>= 0.6'}
dev: false
- /content-disposition/0.5.3:
- resolution: {integrity: sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==}
+ /content-disposition/0.5.4:
+ resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
dependencies:
- safe-buffer: 5.1.2
+ safe-buffer: 5.2.1
- /content-type/1.0.4:
- resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==}
+ /content-type/1.0.5:
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
/convert-source-map/0.3.5:
@@ -17636,26 +18368,27 @@ packages:
dependencies:
safe-buffer: 5.1.2
- /convert-source-map/1.8.0:
- resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
- dependencies:
- safe-buffer: 5.1.2
+ /convert-source-map/1.9.0:
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+
+ /convert-source-map/2.0.0:
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
/convert-to-spaces/1.0.2:
- resolution: {integrity: sha1-fj5Iu+bZl7FBfdyihoIEtNPYVxU=}
+ resolution: {integrity: sha512-cj09EBuObp9gZNQCzc7hByQyrs6jVGE+o9kSJmeUoj+GiPiJvi5LYqEH/Hmme4+MTLHM+Ejtq+FChpjjEnsPdQ==}
engines: {node: '>= 4'}
dev: true
/cookie-signature/1.0.6:
- resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=}
+ resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
/cookie/0.3.1:
- resolution: {integrity: sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=}
+ resolution: {integrity: sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==}
engines: {node: '>= 0.6'}
dev: false
- /cookie/0.4.0:
- resolution: {integrity: sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==}
+ /cookie/0.6.0:
+ resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
/copy-anything/2.0.6:
@@ -17666,11 +18399,12 @@ packages:
/copy-concurrently/1.0.5:
resolution: {integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==}
+ deprecated: This package is no longer supported.
dependencies:
aproba: 1.2.0
fs-write-stream-atomic: 1.0.10
iferr: 0.1.5
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
rimraf: 2.7.1
run-queue: 1.0.3
@@ -17682,38 +18416,44 @@ packages:
resolution: {integrity: sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==}
dependencies:
toggle-selection: 1.0.6
+ dev: false
+
+ /copy-to-clipboard/3.3.3:
+ resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
+ dependencies:
+ toggle-selection: 1.0.6
+ dev: true
- /core-js-compat/3.19.1:
- resolution: {integrity: sha512-Q/VJ7jAF/y68+aUsQJ/afPOewdsGkDtcMb40J8MbuWKlK3Y+wtHq8bTHKPj2WKWLIqmS5JhHs4CzHtz6pT2W6g==}
+ /core-js-compat/3.37.1:
+ resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
dependencies:
- browserslist: 4.20.0
- semver: 7.0.0
+ browserslist: 4.23.1
- /core-js-pure/3.19.1:
- resolution: {integrity: sha512-Q0Knr8Es84vtv62ei6/6jXH/7izKmOrtrxH9WJTHLCMAVeU+8TF8z8Nr08CsH4Ot0oJKzBzJJL9SJBYIv7WlfQ==}
+ /core-js-pure/3.37.1:
+ resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==}
requiresBuild: true
/core-js/1.2.7:
- resolution: {integrity: sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=}
- deprecated: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.
+ resolution: {integrity: sha512-ZiPp9pZlgxpWRu0M+YWbm6+aQ84XEfH1JRXvfOc/fILWI0VKhLC2LX13X1NYq4fULzLMq7Hfh43CSo2/aIaUPA==}
+ deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
dev: false
/core-js/2.6.12:
resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
- deprecated: core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.
+ deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
requiresBuild: true
/core-js/2.6.4:
resolution: {integrity: sha512-05qQ5hXShcqGkPZpXEFLIpxayZscVD2kuMBZewxiIPPEagukO4mqgPA9CWhUvFBJfy3ODdK2p9xyHh7FTU9/7A==}
- deprecated: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.
+ deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
dev: false
- /core-js/3.19.1:
- resolution: {integrity: sha512-Tnc7E9iKd/b/ff7GFbhwPVzJzPztGrChB8X8GLqoYGdEOG8IpLnK1xPyo3ZoO3HsK6TodJS58VGPOxA+hLHQMg==}
+ /core-js/3.37.1:
+ resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==}
requiresBuild: true
/core-util-is/1.0.2:
- resolution: {integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=}
+ resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
/core-util-is/1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -17722,7 +18462,7 @@ packages:
resolution: {integrity: sha512-J0QMp9GNoiw91Kj/dkIQFZeiCXgXoja/Wlht1SPybxerBWh4NCmb0pOgCv61lrlQZETwvVVfAFAA3IqoEO9aqQ==}
dependencies:
resolve-from: 5.0.0
- webpack: 4.46.0
+ webpack: 4.42.0
transitivePeerDependencies:
- supports-color
- webpack-cli
@@ -17742,28 +18482,44 @@ packages:
resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
engines: {node: '>=8'}
dependencies:
- '@types/parse-json': 4.0.0
+ '@types/parse-json': 4.0.2
import-fresh: 3.3.0
parse-json: 5.2.0
path-type: 4.0.0
yaml: 1.10.2
- /cosmiconfig/7.0.1:
- resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
+ /cosmiconfig/7.1.0:
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
dependencies:
- '@types/parse-json': 4.0.0
+ '@types/parse-json': 4.0.2
import-fresh: 3.3.0
parse-json: 5.2.0
path-type: 4.0.0
yaml: 1.10.2
+ /cosmiconfig/9.0.0_typescript@3.9.10:
+ resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ env-paths: 2.2.1
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ parse-json: 5.2.0
+ typescript: 3.9.10
+ dev: true
+
/countup.js/1.9.3:
- resolution: {integrity: sha1-zj5QzXFgRB5HjwfaMYle3MDxyd0=}
+ resolution: {integrity: sha512-UHf2P/mFKaESqdPq+UdBJm/1y8lYdlcDd0nTZHNC8cxWoJwZr1Eldm1PpWui446vDl5Pd8PtRYkr3q6K4+Qa5A==}
dev: false
/cpf_cnpj/0.2.0:
- resolution: {integrity: sha1-oDLBkkKjjoNj7c5OeLsfvp1mSqU=}
+ resolution: {integrity: sha512-vwUmjbXDxW4iBDPVDB/4yJUMsJ6HfQDzveLjnpxrT82N/HXFbM0/tRHCVEsMB2+PwT61KIynDdPt+KS/v0H9Lg==}
deprecated: Please use @fnando/cpf and @fnando/cnpj packages instead.
dev: false
@@ -17771,7 +18527,7 @@ packages:
resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
dependencies:
bn.js: 4.12.0
- elliptic: 6.5.4
+ elliptic: 6.5.5
/create-hash/1.2.0:
resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
@@ -17799,32 +18555,32 @@ packages:
object-assign: 4.1.1
dev: false
- /create-react-context/0.3.0_mv67koxdvxhyejehvpcoenu3ai:
+ /create-react-context/0.3.0_4vyaxm4rsh2mpfdenvlqy7kmya:
resolution: {integrity: sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==}
peerDependencies:
prop-types: ^15.0.0
react: ^0.14.0 || ^15.0.0 || ^16.0.0
dependencies:
gud: 1.0.0
- prop-types: 15.7.2
- react: 17.0.2
+ prop-types: 15.8.1
+ react: 16.14.0
warning: 4.0.3
dev: true
- /create-react-context/0.3.0_uutjjb2r36qagpytglxm7vtgnq:
+ /create-react-context/0.3.0_at7mkepldmzoo6silmqc5bca74:
resolution: {integrity: sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==}
peerDependencies:
prop-types: ^15.0.0
react: ^0.14.0 || ^15.0.0 || ^16.0.0
dependencies:
gud: 1.0.0
- prop-types: 15.7.2
- react: 16.14.0
+ prop-types: 15.8.1
+ react: 17.0.2
warning: 4.0.3
dev: true
/create-require/1.1.1:
- resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz}
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
dev: true
/cross-env/6.0.3:
@@ -17843,12 +18599,6 @@ packages:
cross-spawn: 7.0.3
dev: true
- /cross-fetch/3.1.4:
- resolution: {integrity: sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==}
- dependencies:
- node-fetch: 2.6.1
- dev: false
-
/cross-fetch/3.1.5:
resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
dependencies:
@@ -17857,14 +18607,22 @@ packages:
- encoding
dev: false
+ /cross-fetch/3.1.8:
+ resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==}
+ dependencies:
+ node-fetch: 2.7.0
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+
/cross-spawn/3.0.1:
- resolution: {integrity: sha1-ElYDfsufDF9549bvE14wdwGEuYI=}
+ resolution: {integrity: sha512-eZ+m1WNhSZutOa/uRblAc9Ut5MQfukFrFMtPSm3bZCA888NmMd5AWXWdgRZ80zd+pTk1P2JrGjg9pUPTvl2PWQ==}
dependencies:
lru-cache: 4.1.5
which: 1.3.1
/cross-spawn/5.1.0:
- resolution: {integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz}
+ resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
dependencies:
lru-cache: 4.1.5
shebang-command: 1.2.0
@@ -17877,7 +18635,7 @@ packages:
dependencies:
nice-try: 1.0.5
path-key: 2.0.1
- semver: 5.7.1
+ semver: 5.7.2
shebang-command: 1.2.0
which: 1.3.1
@@ -17899,14 +18657,14 @@ packages:
which: 2.0.2
/cross-storage/1.0.0:
- resolution: {integrity: sha1-cJUDdyQUhPF86VWbBdLghEjhdmA=}
+ resolution: {integrity: sha512-PkAi+2MD6T17klbIjRSGs5ku4AM97/1CYrWEJtClrw8UYLXq709+o92FfW+Q2uDPlv4PMMsa59dJNRIwjWReuw==}
dev: false
/crypto-browserify/3.12.0:
resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==}
dependencies:
browserify-cipher: 1.0.1
- browserify-sign: 4.2.1
+ browserify-sign: 4.2.3
create-ecdh: 4.0.4
create-hash: 1.2.0
create-hmac: 1.1.7
@@ -17936,16 +18694,16 @@ packages:
/css-box-model/1.2.1:
resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==}
dependencies:
- tiny-invariant: 1.2.0
+ tiny-invariant: 1.3.3
dev: false
/css-color-keywords/1.0.0:
- resolution: {integrity: sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=}
+ resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
dev: false
/css-color-names/0.0.4:
- resolution: {integrity: sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=}
+ resolution: {integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==}
/css-declaration-sorter/4.0.1:
resolution: {integrity: sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==}
@@ -17954,6 +18712,15 @@ packages:
postcss: 7.0.39
timsort: 0.3.0
+ /css-declaration-sorter/6.4.1_postcss@8.4.38:
+ resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==}
+ engines: {node: ^10 || ^12 || >=14}
+ peerDependencies:
+ postcss: ^8.0.9
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
/css-has-pseudo/0.10.0:
resolution: {integrity: sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==}
engines: {node: '>=6.0.0'}
@@ -17971,7 +18738,7 @@ packages:
camelcase: 5.3.1
cssesc: 3.0.0
icss-utils: 4.1.1
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
normalize-path: 3.0.0
postcss: 7.0.39
postcss-modules-extract-imports: 2.0.0
@@ -17983,7 +18750,7 @@ packages:
webpack: 4.42.0
dev: false
- /css-loader/3.6.0_webpack@4.46.0:
+ /css-loader/3.6.0_webpack@4.42.0:
resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==}
engines: {node: '>= 8.9.0'}
peerDependencies:
@@ -17992,7 +18759,7 @@ packages:
camelcase: 5.3.1
cssesc: 3.0.0
icss-utils: 4.1.1
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
normalize-path: 3.0.0
postcss: 7.0.39
postcss-modules-extract-imports: 2.0.0
@@ -18001,8 +18768,8 @@ packages:
postcss-modules-values: 3.0.0
postcss-value-parser: 4.2.0
schema-utils: 2.7.1
- semver: 6.3.0
- webpack: 4.46.0
+ semver: 6.3.1
+ webpack: 4.42.0
dev: true
/css-loader/4.3.0_webpack@4.44.2:
@@ -18014,7 +18781,7 @@ packages:
camelcase: 6.3.0
cssesc: 3.0.0
icss-utils: 4.1.1
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
postcss: 7.0.39
postcss-modules-extract-imports: 2.0.0
postcss-modules-local-by-default: 3.0.3
@@ -18022,11 +18789,52 @@ packages:
postcss-modules-values: 3.0.0
postcss-value-parser: 4.2.0
schema-utils: 2.7.1
- semver: 7.3.5
+ semver: 7.6.2
webpack: 4.44.2
+ /css-loader/5.2.7_webpack@5.92.1:
+ resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ webpack: ^4.27.0 || ^5.0.0
+ dependencies:
+ icss-utils: 5.1.0_postcss@8.4.38
+ loader-utils: 2.0.4
+ postcss: 8.4.38
+ postcss-modules-extract-imports: 3.1.0_postcss@8.4.38
+ postcss-modules-local-by-default: 4.0.5_postcss@8.4.38
+ postcss-modules-scope: 3.2.0_postcss@8.4.38
+ postcss-modules-values: 4.0.0_postcss@8.4.38
+ postcss-value-parser: 4.2.0
+ schema-utils: 3.3.0
+ semver: 7.6.2
+ webpack: 5.92.1_webpack-cli@4.10.0
+ dev: true
+
+ /css-loader/7.1.2:
+ resolution: {integrity: sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ '@rspack/core': 0.x || 1.x
+ webpack: ^5.27.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
+ dependencies:
+ icss-utils: 5.1.0_postcss@8.4.38
+ postcss: 8.4.38
+ postcss-modules-extract-imports: 3.1.0_postcss@8.4.38
+ postcss-modules-local-by-default: 4.0.5_postcss@8.4.38
+ postcss-modules-scope: 3.2.0_postcss@8.4.38
+ postcss-modules-values: 4.0.0_postcss@8.4.38
+ postcss-value-parser: 4.2.0
+ semver: 7.6.2
+ dev: true
+
/css-parse/2.0.0:
- resolution: {integrity: sha1-pGjuZnwW2BzPBcWMONKpfHgNv9Q=}
+ resolution: {integrity: sha512-UNIFik2RgSbiTwIW1IsFwXWn6vs+bYdq83LKTSOsx7NJR7WII9dxewkHLltfTLVppoUApHV0118a4RZRI9FLwA==}
dependencies:
css: 2.2.4
dev: true
@@ -18049,14 +18857,24 @@ packages:
domutils: 1.7.0
nth-check: 1.0.2
- /css-select/4.1.3:
- resolution: {integrity: sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==}
+ /css-select/4.3.0:
+ resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies:
boolbase: 1.0.0
- css-what: 5.1.0
- domhandler: 4.2.2
+ css-what: 6.1.0
+ domhandler: 4.3.1
domutils: 2.8.0
- nth-check: 2.0.1
+ nth-check: 2.1.1
+
+ /css-select/5.1.0:
+ resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 6.1.0
+ domhandler: 5.0.3
+ domutils: 3.1.0
+ nth-check: 2.1.1
+ dev: true
/css-selector-tokenizer/0.7.3:
resolution: {integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==}
@@ -18068,15 +18886,15 @@ packages:
/css-to-react-native/2.3.2:
resolution: {integrity: sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==}
dependencies:
- camelize: 1.0.0
+ camelize: 1.0.1
css-color-keywords: 1.0.0
postcss-value-parser: 3.3.1
dev: false
- /css-to-react-native/3.0.0:
- resolution: {integrity: sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==}
+ /css-to-react-native/3.2.0:
+ resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
dependencies:
- camelize: 1.0.0
+ camelize: 1.0.1
css-color-keywords: 1.0.0
postcss-value-parser: 4.2.0
dev: false
@@ -18095,16 +18913,12 @@ packages:
mdn-data: 2.0.14
source-map: 0.6.1
- /css-unit-converter/1.1.2:
- resolution: {integrity: sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==}
- dev: false
-
/css-what/3.4.2:
resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==}
engines: {node: '>= 6'}
- /css-what/5.1.0:
- resolution: {integrity: sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==}
+ /css-what/6.1.0:
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
/css.escape/1.5.1:
@@ -18166,6 +18980,44 @@ packages:
postcss-svgo: 4.0.3
postcss-unique-selectors: 4.0.1
+ /cssnano-preset-default/5.2.14_postcss@8.4.38:
+ resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ css-declaration-sorter: 6.4.1_postcss@8.4.38
+ cssnano-utils: 3.1.0_postcss@8.4.38
+ postcss: 8.4.38
+ postcss-calc: 8.2.4_postcss@8.4.38
+ postcss-colormin: 5.3.1_postcss@8.4.38
+ postcss-convert-values: 5.1.3_postcss@8.4.38
+ postcss-discard-comments: 5.1.2_postcss@8.4.38
+ postcss-discard-duplicates: 5.1.0_postcss@8.4.38
+ postcss-discard-empty: 5.1.1_postcss@8.4.38
+ postcss-discard-overridden: 5.1.0_postcss@8.4.38
+ postcss-merge-longhand: 5.1.7_postcss@8.4.38
+ postcss-merge-rules: 5.1.4_postcss@8.4.38
+ postcss-minify-font-values: 5.1.0_postcss@8.4.38
+ postcss-minify-gradients: 5.1.1_postcss@8.4.38
+ postcss-minify-params: 5.1.4_postcss@8.4.38
+ postcss-minify-selectors: 5.2.1_postcss@8.4.38
+ postcss-normalize-charset: 5.1.0_postcss@8.4.38
+ postcss-normalize-display-values: 5.1.0_postcss@8.4.38
+ postcss-normalize-positions: 5.1.1_postcss@8.4.38
+ postcss-normalize-repeat-style: 5.1.1_postcss@8.4.38
+ postcss-normalize-string: 5.1.0_postcss@8.4.38
+ postcss-normalize-timing-functions: 5.1.0_postcss@8.4.38
+ postcss-normalize-unicode: 5.1.1_postcss@8.4.38
+ postcss-normalize-url: 5.1.0_postcss@8.4.38
+ postcss-normalize-whitespace: 5.1.1_postcss@8.4.38
+ postcss-ordered-values: 5.1.3_postcss@8.4.38
+ postcss-reduce-initial: 5.1.2_postcss@8.4.38
+ postcss-reduce-transforms: 5.1.0_postcss@8.4.38
+ postcss-svgo: 5.1.0_postcss@8.4.38
+ postcss-unique-selectors: 5.1.1_postcss@8.4.38
+ dev: true
+
/cssnano-util-get-arguments/4.0.0:
resolution: {integrity: sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==}
engines: {node: '>=6.9.0'}
@@ -18184,6 +19036,15 @@ packages:
resolution: {integrity: sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==}
engines: {node: '>=6.9.0'}
+ /cssnano-utils/3.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
/cssnano/4.1.11:
resolution: {integrity: sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==}
engines: {node: '>=6.9.0'}
@@ -18193,6 +19054,18 @@ packages:
is-resolvable: 1.1.0
postcss: 7.0.39
+ /cssnano/5.1.15_postcss@8.4.38:
+ resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ cssnano-preset-default: 5.2.14_postcss@8.4.38
+ lilconfig: 2.1.0
+ postcss: 8.4.38
+ yaml: 1.10.2
+ dev: true
+
/csso/4.2.0:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
@@ -18216,20 +19089,24 @@ packages:
dependencies:
cssom: 0.3.8
- /csstype/2.6.18:
- resolution: {integrity: sha512-RSU6Hyeg14am3Ah4VZEmeX8H7kLwEEirXe6aU2IPfKNvhXwTflK5HQRDNI0ypQXoqmm+QPyG2IaPuQE5zMwSIQ==}
+ /csstype/2.6.21:
+ resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
+
+ /csstype/3.0.9:
+ resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==}
+ dev: false
- /csstype/3.0.10:
- resolution: {integrity: sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==}
+ /csstype/3.1.3:
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
/currently-unhandled/0.4.1:
- resolution: {integrity: sha1-mI3zP+qxke95mmE2nddsF635V+o=}
+ resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==}
engines: {node: '>=0.10.0'}
dependencies:
array-find-index: 1.0.2
- /cyclist/1.0.1:
- resolution: {integrity: sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==}
+ /cyclist/1.0.2:
+ resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==}
/cypress/9.7.0:
resolution: {integrity: sha512-+1EE1nuuuwIt/N1KXRR2iWHU+OiIt7H28jJDyyI4tiUftId/DrXYEwoDa5+kH2pki1zxnA0r6HrUGHV5eLbF5Q==}
@@ -18237,26 +19114,26 @@ packages:
hasBin: true
requiresBuild: true
dependencies:
- '@cypress/request': 2.88.10
+ '@cypress/request': 2.88.12
'@cypress/xvfb': 1.2.4_supports-color@8.1.1
- '@types/node': 14.18.18
+ '@types/node': 14.18.63
'@types/sinonjs__fake-timers': 8.1.1
- '@types/sizzle': 2.3.3
+ '@types/sizzle': 2.3.8
arch: 2.2.0
blob-util: 2.0.2
bluebird: 3.7.2
buffer: 5.7.1
- cachedir: 2.3.0
+ cachedir: 2.4.0
chalk: 4.1.2
check-more-types: 2.24.0
cli-cursor: 3.1.0
- cli-table3: 0.6.2
+ cli-table3: 0.6.5
commander: 5.1.0
common-tags: 1.8.2
- dayjs: 1.11.2
- debug: 4.3.4_supports-color@8.1.1
- enquirer: 2.3.6
- eventemitter2: 6.4.5
+ dayjs: 1.11.11
+ debug: 4.3.5_supports-color@8.1.1
+ enquirer: 2.4.1
+ eventemitter2: 6.4.9
execa: 4.1.0
executable: 4.1.1
extract-zip: 2.0.1_supports-color@8.1.1
@@ -18266,35 +19143,37 @@ packages:
is-ci: 3.0.1
is-installed-globally: 0.4.0
lazy-ass: 1.6.0
- listr2: 3.14.0_enquirer@2.3.6
+ listr2: 3.14.0_enquirer@2.4.1
lodash: 4.17.21
log-symbols: 4.1.0
- minimist: 1.2.6
+ minimist: 1.2.8
ospath: 1.2.2
pretty-bytes: 5.6.0
proxy-from-env: 1.0.0
request-progress: 3.0.0
- semver: 7.3.5
+ semver: 7.6.2
supports-color: 8.1.1
- tmp: 0.2.1
+ tmp: 0.2.3
untildify: 4.0.0
yauzl: 2.10.0
dev: true
- /d/1.0.1:
- resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==}
+ /d/1.0.2:
+ resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
+ engines: {node: '>=0.12'}
dependencies:
- es5-ext: 0.10.53
- type: 1.2.0
+ es5-ext: 0.10.64
+ type: 2.7.3
/d3-array/1.2.4:
resolution: {integrity: sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==}
dev: false
- /d3-array/2.12.1:
- resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==}
+ /d3-array/3.2.4:
+ resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
+ engines: {node: '>=12'}
dependencies:
- internmap: 1.0.1
+ internmap: 2.0.3
dev: false
/d3-collection/1.0.7:
@@ -18305,16 +19184,23 @@ packages:
resolution: {integrity: sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==}
dev: false
- /d3-color/2.0.0:
- resolution: {integrity: sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ==}
+ /d3-color/3.1.0:
+ resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
+ engines: {node: '>=12'}
+ dev: false
+
+ /d3-ease/3.0.1:
+ resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
+ engines: {node: '>=12'}
dev: false
/d3-format/1.4.5:
resolution: {integrity: sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==}
dev: false
- /d3-format/2.0.0:
- resolution: {integrity: sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==}
+ /d3-format/3.1.0:
+ resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
+ engines: {node: '>=12'}
dev: false
/d3-geo/1.7.1:
@@ -18329,18 +19215,20 @@ packages:
d3-color: 1.4.1
dev: false
- /d3-interpolate/2.0.1:
- resolution: {integrity: sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==}
+ /d3-interpolate/3.0.1:
+ resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
+ engines: {node: '>=12'}
dependencies:
- d3-color: 2.0.0
+ d3-color: 3.1.0
dev: false
/d3-path/1.0.9:
resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==}
dev: false
- /d3-path/2.0.0:
- resolution: {integrity: sha512-ZwZQxKhBnv9yHaiWd6ZU4x5BtCQ7pXszEV9CU6kRgwIQVQGLMv1oiL4M+MK/n79sYzsj+gcgpPQSctJUsLN7fA==}
+ /d3-path/3.1.0:
+ resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
+ engines: {node: '>=12'}
dev: false
/d3-scale/2.2.2:
@@ -18354,14 +19242,15 @@ packages:
d3-time-format: 2.3.0
dev: false
- /d3-scale/3.3.0:
- resolution: {integrity: sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ==}
+ /d3-scale/4.0.2:
+ resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
+ engines: {node: '>=12'}
dependencies:
- d3-array: 2.12.1
- d3-format: 2.0.0
- d3-interpolate: 2.0.1
- d3-time: 2.1.1
- d3-time-format: 3.0.0
+ d3-array: 3.2.4
+ d3-format: 3.1.0
+ d3-interpolate: 3.0.1
+ d3-time: 3.1.0
+ d3-time-format: 4.1.0
dev: false
/d3-shape/1.3.7:
@@ -18370,10 +19259,11 @@ packages:
d3-path: 1.0.9
dev: false
- /d3-shape/2.1.0:
- resolution: {integrity: sha512-PnjUqfM2PpskbSLTJvAzp2Wv4CZsnAgTfcVRTwW03QR3MkXF8Uo7B1y/lWkAsmbKwuecto++4NlsYcvYpXpTHA==}
+ /d3-shape/3.2.0:
+ resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
+ engines: {node: '>=12'}
dependencies:
- d3-path: 2.0.0
+ d3-path: 3.1.0
dev: false
/d3-time-format/2.3.0:
@@ -18382,31 +19272,38 @@ packages:
d3-time: 1.1.0
dev: false
- /d3-time-format/3.0.0:
- resolution: {integrity: sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==}
+ /d3-time-format/4.1.0:
+ resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
+ engines: {node: '>=12'}
dependencies:
- d3-time: 2.1.1
+ d3-time: 3.1.0
dev: false
/d3-time/1.1.0:
resolution: {integrity: sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==}
dev: false
- /d3-time/2.1.1:
- resolution: {integrity: sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==}
+ /d3-time/3.1.0:
+ resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
+ engines: {node: '>=12'}
dependencies:
- d3-array: 2.12.1
+ d3-array: 3.2.4
+ dev: false
+
+ /d3-timer/3.0.1:
+ resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
+ engines: {node: '>=12'}
dev: false
/d3-voronoi/1.1.2:
- resolution: {integrity: sha1-Fodmfo8TotFYyAwUgMWinLDYlzw=}
+ resolution: {integrity: sha512-RhGS1u2vavcO7ay7ZNAPo4xeDh/VYeGof3x5ZLJBQgYhLegxr3s5IykvWmJ94FTU6mcbtp4sloqZ54mP6R4Utw==}
dev: false
- /damerau-levenshtein/1.0.7:
- resolution: {integrity: sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==}
+ /damerau-levenshtein/1.0.8:
+ resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
/dashdash/1.14.1:
- resolution: {integrity: sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=}
+ resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
engines: {node: '>=0.10'}
dependencies:
assert-plus: 1.0.0
@@ -18414,7 +19311,7 @@ packages:
/data-urls/1.1.0:
resolution: {integrity: sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==}
dependencies:
- abab: 2.0.5
+ abab: 2.0.6
whatwg-mimetype: 2.3.0
whatwg-url: 7.1.0
@@ -18422,10 +19319,34 @@ packages:
resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==}
engines: {node: '>=10'}
dependencies:
- abab: 2.0.5
+ abab: 2.0.6
whatwg-mimetype: 2.3.0
whatwg-url: 8.7.0
+ /data-view-buffer/1.0.1:
+ resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
+ /data-view-byte-length/1.0.1:
+ resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
+ /data-view-byte-offset/1.0.0:
+ resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
/date-time/3.1.0:
resolution: {integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==}
engines: {node: '>=6'}
@@ -18433,8 +19354,12 @@ packages:
time-zone: 1.0.0
dev: true
- /dayjs/1.11.2:
- resolution: {integrity: sha512-F4LXf1OeU9hrSYRPTTj/6FbO4HTjPKXvEIC1P2kcnFurViINCVk3ZV0xAS3XVx9MkMsXbbqlK6hjseaYbgKEHw==}
+ /dateformat/4.6.3:
+ resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==}
+ dev: true
+
+ /dayjs/1.11.11:
+ resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==}
dev: true
/debug/2.6.9:
@@ -18514,8 +19439,8 @@ packages:
supports-color: 8.1.1
dev: true
- /debug/4.3.2:
- resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==}
+ /debug/4.3.4:
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -18524,9 +19449,10 @@ packages:
optional: true
dependencies:
ms: 2.1.2
+ dev: true
- /debug/4.3.2_supports-color@5.5.0:
- resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==}
+ /debug/4.3.5:
+ resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -18535,11 +19461,9 @@ packages:
optional: true
dependencies:
ms: 2.1.2
- supports-color: 5.5.0
- dev: false
- /debug/4.3.2_supports-color@6.1.0:
- resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==}
+ /debug/4.3.5_supports-color@5.5.0:
+ resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -18548,10 +19472,11 @@ packages:
optional: true
dependencies:
ms: 2.1.2
- supports-color: 6.1.0
+ supports-color: 5.5.0
+ dev: false
- /debug/4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ /debug/4.3.5_supports-color@6.1.0:
+ resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -18560,9 +19485,10 @@ packages:
optional: true
dependencies:
ms: 2.1.2
+ supports-color: 6.1.0
- /debug/4.3.4_supports-color@8.1.1:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ /debug/4.3.5_supports-color@8.1.1:
+ resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -18575,7 +19501,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'}
/decamelize/4.0.0:
@@ -18587,15 +19513,15 @@ packages:
resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
dev: false
- /decimal.js/10.3.1:
- resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==}
+ /decimal.js/10.4.3:
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
- /decode-uri-component/0.2.0:
- resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==}
+ /decode-uri-component/0.2.2:
+ resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
/decompress-response/3.3.0:
- resolution: {integrity: sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=}
+ resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==}
engines: {node: '>=4'}
dependencies:
mimic-response: 1.0.1
@@ -18604,21 +19530,46 @@ packages:
/dedent/0.7.0:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
- /deep-eql/3.0.1:
- resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==}
- engines: {node: '>=0.12'}
+ /deep-eql/4.1.4:
+ resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
+ engines: {node: '>=6'}
dependencies:
type-detect: 4.0.8
- /deep-equal/1.1.1:
- resolution: {integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==}
+ /deep-equal/1.1.2:
+ resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-arguments: 1.1.1
+ is-date-object: 1.0.5
+ is-regex: 1.1.4
+ object-is: 1.1.6
+ object-keys: 1.1.1
+ regexp.prototype.flags: 1.5.2
+
+ /deep-equal/2.2.3:
+ resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
+ engines: {node: '>= 0.4'}
dependencies:
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
+ es-get-iterator: 1.1.3
+ get-intrinsic: 1.2.4
is-arguments: 1.1.1
+ is-array-buffer: 3.0.4
is-date-object: 1.0.5
is-regex: 1.1.4
- object-is: 1.1.5
+ is-shared-array-buffer: 1.0.3
+ isarray: 2.0.5
+ object-is: 1.1.6
object-keys: 1.1.1
- regexp.prototype.flags: 1.3.1
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.2
+ side-channel: 1.0.6
+ which-boxed-primitive: 1.0.2
+ which-collection: 1.0.2
+ which-typed-array: 1.1.15
+ dev: true
/deep-extend/0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
@@ -18627,11 +19578,11 @@ packages:
/deep-is/0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- /deep-object-diff/1.1.0:
- resolution: {integrity: sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==}
+ /deep-object-diff/1.1.9:
+ resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==}
- /deepmerge/4.2.2:
- resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
+ /deepmerge/4.3.1:
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
/default-gateway/4.2.0:
@@ -18641,15 +19592,15 @@ packages:
execa: 1.0.0
ip-regex: 2.1.0
- /default-require-extensions/3.0.0:
- resolution: {integrity: sha512-ek6DpXq/SCpvjhpFsLFRVtIxJCRw6fUR42lYMVZuUMK7n8eMz4Uh5clckdBjEpLhn/gEBZo7hDJnJcwdKLKQjg==}
+ /default-require-extensions/3.0.1:
+ resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==}
engines: {node: '>=8'}
dependencies:
strip-bom: 4.0.0
dev: true
- /defaults/1.0.3:
- resolution: {integrity: sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=}
+ /defaults/1.0.4:
+ resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
dependencies:
clone: 1.0.4
dev: true
@@ -18658,29 +19609,39 @@ packages:
resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==}
dev: true
- /define-properties/1.1.3:
- resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==}
+ /define-data-property/1.1.4:
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
dependencies:
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ gopd: 1.0.1
+
+ /define-properties/1.2.1:
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
object-keys: 1.1.1
/define-property/0.2.5:
resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
engines: {node: '>=0.10.0'}
dependencies:
- is-descriptor: 0.1.6
+ is-descriptor: 0.1.7
/define-property/1.0.0:
resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
engines: {node: '>=0.10.0'}
dependencies:
- is-descriptor: 1.0.2
+ is-descriptor: 1.0.3
/define-property/2.0.2:
resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==}
engines: {node: '>=0.10.0'}
dependencies:
- is-descriptor: 1.0.2
+ is-descriptor: 1.0.3
isobject: 3.0.1
/del/4.1.1:
@@ -18695,12 +19656,26 @@ packages:
pify: 4.0.1
rimraf: 2.7.1
- /del/6.0.0:
- resolution: {integrity: sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==}
+ /del/5.1.0:
+ resolution: {integrity: sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==}
+ engines: {node: '>=8'}
+ dependencies:
+ globby: 10.0.2
+ graceful-fs: 4.2.11
+ is-glob: 4.0.3
+ is-path-cwd: 2.2.0
+ is-path-inside: 3.0.3
+ p-map: 3.0.0
+ rimraf: 3.0.2
+ slash: 3.0.0
+ dev: true
+
+ /del/6.1.1:
+ resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
engines: {node: '>=10'}
dependencies:
globby: 11.1.0
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
is-glob: 4.0.3
is-path-cwd: 2.2.0
is-path-inside: 3.0.3
@@ -18710,7 +19685,7 @@ packages:
dev: true
/delayed-stream/1.0.0:
- resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=}
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
/delegate/3.2.0:
@@ -18719,34 +19694,43 @@ packages:
optional: true
/delegates/1.0.0:
- resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=}
+ resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
/density-clustering/1.3.0:
- resolution: {integrity: sha1-3J9ZyPCrl+FiSsZJMP0xlIF9ysU=}
+ resolution: {integrity: sha512-icpmBubVTwLnsaor9qH/4tG5+7+f61VcqMN3V3pm9sxxSCt2Jcs0zWOgwZW9ARJYaKD3FumIgHiMOcIMRRAzFQ==}
dev: false
/depd/1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
- /des.js/1.0.1:
- resolution: {integrity: sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==}
+ /depd/2.0.0:
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
+ engines: {node: '>= 0.8'}
+
+ /dequal/2.0.3:
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
+ engines: {node: '>=6'}
+
+ /des.js/1.1.0:
+ resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==}
dependencies:
inherits: 2.0.4
minimalistic-assert: 1.0.1
- /destroy/1.0.4:
- resolution: {integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==}
+ /destroy/1.2.0:
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
/detect-indent/4.0.0:
- resolution: {integrity: sha1-920GQ1LN9Docts5hnE7jqUdd4gg=}
+ resolution: {integrity: sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==}
engines: {node: '>=0.10.0'}
dependencies:
repeating: 2.0.1
dev: true
/detect-newline/2.1.0:
- resolution: {integrity: sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=}
+ resolution: {integrity: sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==}
engines: {node: '>=0.10.0'}
/detect-newline/3.1.0:
@@ -18769,13 +19753,13 @@ packages:
transitivePeerDependencies:
- supports-color
- /detect-port/1.3.0:
- resolution: {integrity: sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==}
- engines: {node: '>= 4.2.1'}
+ /detect-port/1.6.1:
+ resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==}
+ engines: {node: '>= 4.0.0'}
hasBin: true
dependencies:
- address: 1.1.2
- debug: 2.6.9
+ address: 1.2.2
+ debug: 4.3.5
transitivePeerDependencies:
- supports-color
dev: true
@@ -18789,7 +19773,7 @@ packages:
engines: {node: '>= 10.14.2'}
/diff-sequences/27.5.1:
- resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz}
+ resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dev: true
@@ -18828,12 +19812,12 @@ packages:
path-type: 4.0.0
/direction/0.1.5:
- resolution: {integrity: sha1-zl15f5fib4vnvv9T99xA4cGp7Ew=}
+ resolution: {integrity: sha512-HceXsAluGbXKCz2qCVbXFUH4Vn4eNMWxY5gzydMFMnS1zKSwvDASqLwcrYLIFDpwuZ63FUAqjDLEP1eicHt8DQ==}
hasBin: true
dev: false
/discontinuous-range/1.0.0:
- resolution: {integrity: sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz}
+ resolution: {integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==}
dev: true
/dns-equal/1.0.0:
@@ -18842,7 +19826,7 @@ packages:
/dns-packet/1.3.4:
resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==}
dependencies:
- ip: 1.1.5
+ ip: 1.1.9
safe-buffer: 5.2.1
/dns-txt/2.0.2:
@@ -18851,7 +19835,7 @@ packages:
buffer-indexof: 1.1.1
/doctrine/1.5.0:
- resolution: {integrity: sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=}
+ resolution: {integrity: sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==}
engines: {node: '>=0.10.0'}
dependencies:
esutils: 2.0.3
@@ -18870,8 +19854,8 @@ packages:
dependencies:
esutils: 2.0.3
- /dom-accessibility-api/0.5.10:
- resolution: {integrity: sha512-Xu9mD0UjrJisTmv7lmVSDMagQcU9R5hwAbxsaAE/35XPnPLJobbuREfV/rraiSaEj/UOvgrzQs66zyTWTlyd+g==}
+ /dom-accessibility-api/0.5.16:
+ resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
dev: true
/dom-converter/0.2.0:
@@ -18882,29 +19866,37 @@ packages:
/dom-helpers/3.4.0:
resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
dev: false
/dom-helpers/5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
- '@babel/runtime': 7.17.2
- csstype: 3.0.10
+ '@babel/runtime': 7.13.10
+ csstype: 3.1.3
dev: false
/dom-serializer/0.2.2:
resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
entities: 2.2.0
- /dom-serializer/1.3.2:
- resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==}
+ /dom-serializer/1.4.1:
+ resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
- domelementtype: 2.2.0
- domhandler: 4.2.2
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
entities: 2.2.0
+ /dom-serializer/2.0.0:
+ resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ entities: 4.5.0
+ dev: true
+
/dom-walk/0.1.2:
resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==}
dev: true
@@ -18916,25 +19908,34 @@ packages:
/domelementtype/1.3.1:
resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==}
- /domelementtype/2.2.0:
- resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==}
+ /domelementtype/2.3.0:
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
/domexception/1.0.1:
resolution: {integrity: sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==}
+ deprecated: Use your platform's native DOMException instead
dependencies:
webidl-conversions: 4.0.2
/domexception/2.0.1:
resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==}
engines: {node: '>=8'}
+ deprecated: Use your platform's native DOMException instead
dependencies:
webidl-conversions: 5.0.0
- /domhandler/4.2.2:
- resolution: {integrity: sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==}
+ /domhandler/4.3.1:
+ resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
+ engines: {node: '>= 4'}
+ dependencies:
+ domelementtype: 2.3.0
+
+ /domhandler/5.0.3:
+ resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
+ dev: true
/domutils/1.7.0:
resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
@@ -18945,15 +19946,23 @@ packages:
/domutils/2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
- dom-serializer: 1.3.2
- domelementtype: 2.2.0
- domhandler: 4.2.2
+ dom-serializer: 1.4.1
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+
+ /domutils/3.1.0:
+ resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
+ dependencies:
+ dom-serializer: 2.0.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ dev: true
/dot-case/3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
no-case: 3.0.4
- tslib: 2.3.1
+ tslib: 2.6.3
/dot-prop/5.3.0:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
@@ -18970,13 +19979,13 @@ packages:
/dotenv-expand/5.1.0:
resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==}
- /dotenv-webpack/1.8.0_webpack@4.46.0:
+ /dotenv-webpack/1.8.0_webpack@4.42.0:
resolution: {integrity: sha512-o8pq6NLBehtrqA8Jv8jFQNtG9nhRtVqmoD4yWbgUyoU3+9WBlPe+c2EAiaJok9RB28QvrWvdWLZGeTT5aATDMg==}
peerDependencies:
webpack: ^1 || ^2 || ^3 || ^4
dependencies:
dotenv-defaults: 1.1.1
- webpack: 4.46.0
+ webpack: 4.42.0
dev: true
/dotenv/10.0.0:
@@ -18984,8 +19993,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /dotenv/16.0.0:
- resolution: {integrity: sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==}
+ /dotenv/16.4.5:
+ resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
dev: false
@@ -19004,7 +20013,7 @@ packages:
dev: true
/downloadjs/1.4.7:
- resolution: {integrity: sha1-9p+W+UDg0FU9rCkROYZaPNAQHjw=}
+ resolution: {integrity: sha512-LN1gO7+u9xjU5oEScGFKvXhYf7Y/empUIIEAGBs1LzUq/rg5duiDrkuH5A2lQGd5jfMOb9X9usDa2oVXwJ0U/Q==}
dev: false
/draft-js/0.10.5:
@@ -19029,6 +20038,8 @@ packages:
object-assign: 4.1.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
+ transitivePeerDependencies:
+ - encoding
dev: false
/draft-js/0.11.7_wcqkhtmu7mswc6yz4uyexck3ty:
@@ -19042,13 +20053,15 @@ packages:
object-assign: 4.1.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
+ transitivePeerDependencies:
+ - encoding
dev: false
/duplexer/0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- /duplexer3/0.1.4:
- resolution: {integrity: sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=}
+ /duplexer3/0.1.5:
+ resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
dev: true
/duplexify/3.7.1:
@@ -19056,15 +20069,15 @@ packages:
dependencies:
end-of-stream: 1.4.4
inherits: 2.0.4
- readable-stream: 2.3.7
- stream-shift: 1.0.1
+ readable-stream: 2.3.8
+ stream-shift: 1.0.3
- /earcut/2.2.3:
- resolution: {integrity: sha512-iRDI1QeCQIhMCZk48DRDMVgQSSBDmbzzNhnxIo+pwx3swkfjMh6vh0nWLq1NdvGHLKH6wIrAM3vQWeTj6qeoug==}
+ /earcut/2.2.4:
+ resolution: {integrity: sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==}
dev: false
/ecc-jsbn/0.1.2:
- resolution: {integrity: sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=}
+ resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
dependencies:
jsbn: 0.1.1
safer-buffer: 2.1.2
@@ -19076,31 +20089,24 @@ packages:
dev: false
/ee-first/1.1.1:
- resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
/ejs/2.7.4:
resolution: {integrity: sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==}
engines: {node: '>=0.10.0'}
requiresBuild: true
- /electron-to-chromium/1.3.900:
- resolution: {integrity: sha512-SuXbQD8D4EjsaBaJJxySHbC+zq8JrFfxtb4GIr4E9n1BcROyMcRrJCYQNpJ9N+Wjf5mFp7Wp0OHykd14JNEzzQ==}
- dev: true
-
- /electron-to-chromium/1.4.71:
- resolution: {integrity: sha512-Hk61vXXKRb2cd3znPE9F+2pLWdIOmP7GjiTj45y6L3W/lO+hSnUSUhq+6lEaERWBdZOHbk2s3YV5c9xVl3boVw==}
+ /electron-to-chromium/1.4.798:
+ resolution: {integrity: sha512-by9J2CiM9KPGj9qfp5U4FcPSbXJG7FNzqnYaY4WLzX+v2PHieVGmnsA4dxfpGE3QEC7JofpPZmn7Vn1B9NR2+Q==}
- /electron-to-chromium/1.4.81:
- resolution: {integrity: sha512-Gs7xVpIZ7tYYSDA+WgpzwpPvfGwUk3KSIjJ0akuj5XQHFdyQnsUoM76EA4CIHXNLPiVwTwOFay9RMb0ChG3OBw==}
-
- /element-resize-detector/1.2.3:
- resolution: {integrity: sha512-+dhNzUgLpq9ol5tyhoG7YLoXL3ssjfFW+0gpszXPwRU6NjGr1fVHMEAF8fVzIiRJq57Nre0RFeIjJwI8Nh2NmQ==}
+ /element-resize-detector/1.2.4:
+ resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==}
dependencies:
batch-processor: 1.0.0
dev: true
- /elliptic/6.5.4:
- resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
+ /elliptic/6.5.5:
+ resolution: {integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==}
dependencies:
bn.js: 4.12.0
brorand: 1.1.0
@@ -19136,27 +20142,27 @@ packages:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
- /emotion-theming/10.0.27_go5tdyoyk4iceqw7gzblglw2da:
- resolution: {integrity: sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==}
+ /emotion-theming/10.3.0_gfrer23gq2rp2t523t6qbxrx6m:
+ resolution: {integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==}
peerDependencies:
'@emotion/core': ^10.0.27
react: '>=16.3.0'
dependencies:
- '@babel/runtime': 7.17.2
- '@emotion/core': 10.1.1_react@17.0.2
+ '@babel/runtime': 7.13.10
+ '@emotion/core': 10.3.1_react@17.0.2
'@emotion/weak-memoize': 0.2.5
hoist-non-react-statics: 3.3.2
react: 17.0.2
dev: true
- /emotion-theming/10.0.27_l4qwngn4rqpsicelhp3xw7f334:
- resolution: {integrity: sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==}
+ /emotion-theming/10.3.0_qzeatvug73zaio2r3dlvejynye:
+ resolution: {integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==}
peerDependencies:
'@emotion/core': ^10.0.27
react: '>=16.3.0'
dependencies:
- '@babel/runtime': 7.17.2
- '@emotion/core': 10.1.1_react@16.14.0
+ '@babel/runtime': 7.13.10
+ '@emotion/core': 10.3.1_react@16.14.0
'@emotion/weak-memoize': 0.2.5
hoist-non-react-statics: 3.3.2
react: 16.14.0
@@ -19185,104 +20191,120 @@ packages:
resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==}
engines: {node: '>=6.9.0'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
memory-fs: 0.5.0
tapable: 1.1.3
- /enhanced-resolve/5.9.0:
- resolution: {integrity: sha512-weDYmzbBygL7HzGGS26M3hGQx68vehdEg6VUmqSOaFzXExFqlnKuSvsEJCVGQHScS8CQMbrAqftT+AzzHNt/YA==}
+ /enhanced-resolve/5.17.0:
+ resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==}
engines: {node: '>=10.13.0'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
tapable: 2.2.1
- dev: false
- /enquirer/2.3.6:
- resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
+ /enquirer/2.4.1:
+ resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
engines: {node: '>=8.6'}
dependencies:
- ansi-colors: 4.1.1
+ ansi-colors: 4.1.3
+ strip-ansi: 6.0.1
/entities/2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- /enzyme-adapter-react-16/1.15.6_7ltvq4e2railvf5uya4ffxpe2a:
- resolution: {integrity: sha512-yFlVJCXh8T+mcQo8M6my9sPgeGzj85HSHi6Apgf1Cvq/7EL/J9+1JoJmJsRxZgyTvPMAqOEpRSu/Ii/ZpyOk0g==}
+ /entities/4.5.0:
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
+ engines: {node: '>=0.12'}
+ dev: true
+
+ /env-paths/2.2.1:
+ resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /envinfo/7.13.0:
+ resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: true
+
+ /enzyme-adapter-react-16/1.15.8_7ltvq4e2railvf5uya4ffxpe2a:
+ resolution: {integrity: sha512-uYGC31eGZBp5nGsr4nKhZKvxGQjyHGjS06BJsUlWgE29/hvnpgCsT1BJvnnyny7N3GIIVyxZ4O9GChr6hy2WQA==}
peerDependencies:
enzyme: ^3.0.0
react: ^16.0.0-0
react-dom: ^16.0.0-0
dependencies:
enzyme: 3.11.0
- enzyme-adapter-utils: 1.14.0_react@17.0.2
- enzyme-shallow-equal: 1.0.4
- has: 1.0.3
- object.assign: 4.1.2
- object.values: 1.1.5
- prop-types: 15.7.2
+ enzyme-adapter-utils: 1.14.2_react@17.0.2
+ enzyme-shallow-equal: 1.0.7
+ hasown: 2.0.2
+ object.assign: 4.1.5
+ object.values: 1.2.0
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-is: 16.13.1
- react-test-renderer: 16.14.0_react@17.0.2
- semver: 5.7.1
+ react-test-renderer: 16.7.0_react@17.0.2
+ semver: 5.7.2
dev: true
- /enzyme-adapter-react-16/1.15.6_j6bpv5pizkyfppcg2tmva6pmii:
- resolution: {integrity: sha512-yFlVJCXh8T+mcQo8M6my9sPgeGzj85HSHi6Apgf1Cvq/7EL/J9+1JoJmJsRxZgyTvPMAqOEpRSu/Ii/ZpyOk0g==}
+ /enzyme-adapter-react-16/1.15.8_j6bpv5pizkyfppcg2tmva6pmii:
+ resolution: {integrity: sha512-uYGC31eGZBp5nGsr4nKhZKvxGQjyHGjS06BJsUlWgE29/hvnpgCsT1BJvnnyny7N3GIIVyxZ4O9GChr6hy2WQA==}
peerDependencies:
enzyme: ^3.0.0
react: ^16.0.0-0
react-dom: ^16.0.0-0
dependencies:
enzyme: 3.11.0
- enzyme-adapter-utils: 1.14.0_react@16.14.0
- enzyme-shallow-equal: 1.0.4
- has: 1.0.3
- object.assign: 4.1.2
- object.values: 1.1.5
- prop-types: 15.7.2
+ enzyme-adapter-utils: 1.14.2_react@16.14.0
+ enzyme-shallow-equal: 1.0.7
+ hasown: 2.0.2
+ object.assign: 4.1.5
+ object.values: 1.2.0
+ prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
react-is: 16.13.1
- react-test-renderer: 16.14.0_react@16.14.0
- semver: 5.7.1
+ react-test-renderer: 16.7.0_react@16.14.0
+ semver: 5.7.2
dev: true
- /enzyme-adapter-utils/1.14.0_react@16.14.0:
- resolution: {integrity: sha512-F/z/7SeLt+reKFcb7597IThpDp0bmzcH1E9Oabqv+o01cID2/YInlqHbFl7HzWBl4h3OdZYedtwNDOmSKkk0bg==}
+ /enzyme-adapter-utils/1.14.2_react@16.14.0:
+ resolution: {integrity: sha512-1ZC++RlsYRaiOWE5NRaF5OgsMt7F5rn/VuaJIgc7eW/fmgg8eS1/Ut7EugSPPi7VMdWMLcymRnMF+mJUJ4B8KA==}
peerDependencies:
react: 0.13.x || 0.14.x || ^15.0.0-0 || ^16.0.0-0
dependencies:
airbnb-prop-types: 2.16.0_react@16.14.0
- function.prototype.name: 1.1.5
- has: 1.0.3
- object.assign: 4.1.2
- object.fromentries: 2.0.5
- prop-types: 15.7.2
+ function.prototype.name: 1.1.6
+ hasown: 2.0.2
+ object.assign: 4.1.5
+ object.fromentries: 2.0.8
+ prop-types: 15.8.1
react: 16.14.0
- semver: 5.7.1
+ semver: 6.3.1
dev: true
- /enzyme-adapter-utils/1.14.0_react@17.0.2:
- resolution: {integrity: sha512-F/z/7SeLt+reKFcb7597IThpDp0bmzcH1E9Oabqv+o01cID2/YInlqHbFl7HzWBl4h3OdZYedtwNDOmSKkk0bg==}
+ /enzyme-adapter-utils/1.14.2_react@17.0.2:
+ resolution: {integrity: sha512-1ZC++RlsYRaiOWE5NRaF5OgsMt7F5rn/VuaJIgc7eW/fmgg8eS1/Ut7EugSPPi7VMdWMLcymRnMF+mJUJ4B8KA==}
peerDependencies:
react: 0.13.x || 0.14.x || ^15.0.0-0 || ^16.0.0-0
dependencies:
airbnb-prop-types: 2.16.0_react@17.0.2
- function.prototype.name: 1.1.5
- has: 1.0.3
- object.assign: 4.1.2
- object.fromentries: 2.0.5
- prop-types: 15.7.2
+ function.prototype.name: 1.1.6
+ hasown: 2.0.2
+ object.assign: 4.1.5
+ object.fromentries: 2.0.8
+ prop-types: 15.8.1
react: 17.0.2
- semver: 5.7.1
+ semver: 6.3.1
dev: true
- /enzyme-shallow-equal/1.0.4:
- resolution: {integrity: sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==}
+ /enzyme-shallow-equal/1.0.7:
+ resolution: {integrity: sha512-/um0GFqUXnpM9SvKtje+9Tjoz3f1fpBC3eXRFrNs8kpYn69JljciYP7KZTqM/YQbUY9KUjvKB4jo/q+L6WGGvg==}
dependencies:
- has: 1.0.3
- object-is: 1.1.5
+ hasown: 2.0.2
+ object-is: 1.1.6
dev: true
/enzyme-to-json/3.3.5:
@@ -19295,40 +20317,41 @@ packages:
dev: false
/enzyme/3.11.0:
- resolution: {integrity: sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/enzyme/-/enzyme-3.11.0.tgz}
+ resolution: {integrity: sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==}
dependencies:
- array.prototype.flat: 1.2.5
- cheerio: 1.0.0-rc.10
- enzyme-shallow-equal: 1.0.4
- function.prototype.name: 1.1.5
- has: 1.0.3
+ array.prototype.flat: 1.3.2
+ cheerio: 1.0.0-rc.12
+ enzyme-shallow-equal: 1.0.7
+ function.prototype.name: 1.1.6
+ has: 1.0.4
html-element-map: 1.3.1
is-boolean-object: 1.1.2
- is-callable: 1.2.4
- is-number-object: 1.0.6
+ is-callable: 1.2.7
+ is-number-object: 1.0.7
is-regex: 1.1.4
is-string: 1.0.7
is-subset: 0.1.1
lodash.escape: 4.0.1
lodash.isequal: 4.5.0
- object-inspect: 1.11.0
- object-is: 1.1.5
- object.assign: 4.1.2
- object.entries: 1.1.5
- object.values: 1.1.5
+ object-inspect: 1.13.1
+ object-is: 1.1.6
+ object.assign: 4.1.5
+ object.entries: 1.1.8
+ object.values: 1.2.0
raf: 3.4.1
rst-selector-parser: 2.2.3
- string.prototype.trim: 1.2.5
+ string.prototype.trim: 1.2.9
dev: true
/equal-length/1.0.1:
- resolution: {integrity: sha1-IcoRLUirJLTh5//A5TOdMf38J0w=}
+ resolution: {integrity: sha512-TK2m7MvWPt/v3dan0BCNp99pytIE5UGrUj7F0KZirNX8xz8fDFUAZfgm8uB5FuQq9u0sMeDocYBfEhsd1nwGoA==}
engines: {node: '>=4'}
dev: true
/errno/0.1.8:
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
hasBin: true
+ requiresBuild: true
dependencies:
prr: 1.0.1
@@ -19338,75 +20361,156 @@ packages:
is-arrayish: 0.2.1
/error-stack-parser/1.3.6:
- resolution: {integrity: sha1-4Oc7k+QXE40c18C3RrGkoUhUwpI=}
+ resolution: {integrity: sha512-xhuSYd8wLgOXwNgjcPeXMPL/IiiA1Huck+OPvClpJViVNNlJVtM41o+1emp7bPvlCJwCatFX2DWc05/DgfbWzA==}
dependencies:
stackframe: 0.3.1
dev: false
- /error-stack-parser/2.0.6:
- resolution: {integrity: sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==}
+ /error-stack-parser/2.1.4:
+ resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
dependencies:
- stackframe: 1.2.0
+ stackframe: 1.3.4
- /es-abstract/1.19.1:
- resolution: {integrity: sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==}
+ /es-abstract/1.23.3:
+ resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
+ array-buffer-byte-length: 1.0.1
+ arraybuffer.prototype.slice: 1.0.3
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ data-view-buffer: 1.0.1
+ data-view-byte-length: 1.0.1
+ data-view-byte-offset: 1.0.0
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-set-tostringtag: 2.0.3
es-to-primitive: 1.2.1
- function-bind: 1.1.1
- get-intrinsic: 1.1.1
- get-symbol-description: 1.0.0
- has: 1.0.3
- has-symbols: 1.0.2
- internal-slot: 1.0.3
- is-callable: 1.2.4
- is-negative-zero: 2.0.1
+ function.prototype.name: 1.1.6
+ get-intrinsic: 1.2.4
+ get-symbol-description: 1.0.2
+ globalthis: 1.0.4
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.2
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ hasown: 2.0.2
+ internal-slot: 1.0.7
+ is-array-buffer: 3.0.4
+ is-callable: 1.2.7
+ is-data-view: 1.0.1
+ is-negative-zero: 2.0.3
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.1
+ is-shared-array-buffer: 1.0.3
is-string: 1.0.7
- is-weakref: 1.0.1
- object-inspect: 1.11.0
+ is-typed-array: 1.1.13
+ is-weakref: 1.0.2
+ object-inspect: 1.13.1
object-keys: 1.1.1
- object.assign: 4.1.2
- string.prototype.trimend: 1.0.4
- string.prototype.trimstart: 1.0.4
- unbox-primitive: 1.0.1
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.2
+ safe-array-concat: 1.1.2
+ safe-regex-test: 1.0.3
+ string.prototype.trim: 1.2.9
+ string.prototype.trimend: 1.0.8
+ string.prototype.trimstart: 1.0.8
+ typed-array-buffer: 1.0.2
+ typed-array-byte-length: 1.0.1
+ typed-array-byte-offset: 1.0.2
+ typed-array-length: 1.0.6
+ unbox-primitive: 1.0.2
+ which-typed-array: 1.1.15
/es-array-method-boxes-properly/1.0.0:
- resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz}
- dev: true
+ resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
+
+ /es-define-property/1.0.0:
+ resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.4
+
+ /es-errors/1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
- /es-get-iterator/1.1.2:
- resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==}
+ /es-get-iterator/1.1.3:
+ resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.1.1
- has-symbols: 1.0.2
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
is-arguments: 1.1.1
- is-map: 2.0.2
- is-set: 2.0.2
+ is-map: 2.0.3
+ is-set: 2.0.3
is-string: 1.0.7
isarray: 2.0.5
+ stop-iteration-iterator: 1.0.0
dev: true
+ /es-iterator-helpers/1.0.19:
+ resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-set-tostringtag: 2.0.3
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ globalthis: 1.0.4
+ has-property-descriptors: 1.0.2
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ internal-slot: 1.0.7
+ iterator.prototype: 1.1.2
+ safe-array-concat: 1.1.2
+
+ /es-module-lexer/1.5.4:
+ resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+ dev: true
+
+ /es-object-atoms/1.0.0:
+ resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ es-errors: 1.3.0
+
+ /es-set-tostringtag/2.0.3:
+ resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.4
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
+
+ /es-shim-unscopables/1.0.2:
+ resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
+ dependencies:
+ hasown: 2.0.2
+
/es-to-primitive/1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
dependencies:
- is-callable: 1.2.4
+ is-callable: 1.2.7
is-date-object: 1.0.5
is-symbol: 1.0.4
- /es5-ext/0.10.53:
- resolution: {integrity: sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==}
+ /es5-ext/0.10.64:
+ resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
+ engines: {node: '>=0.10'}
+ requiresBuild: true
dependencies:
es6-iterator: 2.0.3
- es6-symbol: 3.1.3
- next-tick: 1.0.0
+ es6-symbol: 3.1.4
+ esniff: 2.0.1
+ next-tick: 1.1.0
- /es5-shim/4.6.2:
- resolution: {integrity: sha512-n0XTVMGps+Deyr38jtqKPR5F5hb9owYeRQcKJW39eFvzUk/u/9Ww315werRzbiNMnHCUw/YHDPBphTlEnzdi+A==}
+ /es5-shim/4.6.7:
+ resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==}
engines: {node: '>=0.4.0'}
dev: true
@@ -19415,24 +20519,25 @@ packages:
dev: true
/es6-iterator/2.0.3:
- resolution: {integrity: sha1-p96IkUGgWpSwhUQDstCg+/qY87c=}
+ resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
dependencies:
- d: 1.0.1
- es5-ext: 0.10.53
- es6-symbol: 3.1.3
+ d: 1.0.2
+ es5-ext: 0.10.64
+ es6-symbol: 3.1.4
- /es6-shim/0.35.6:
- resolution: {integrity: sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==}
+ /es6-shim/0.35.8:
+ resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==}
dev: true
- /es6-symbol/3.1.3:
- resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==}
+ /es6-symbol/3.1.4:
+ resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
+ engines: {node: '>=0.12'}
dependencies:
- d: 1.0.1
- ext: 1.6.0
+ d: 1.0.2
+ ext: 1.7.0
- /escalade/3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ /escalade/3.1.2:
+ resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
engines: {node: '>=6'}
/escape-goat/2.1.1:
@@ -19467,33 +20572,32 @@ packages:
optionalDependencies:
source-map: 0.6.1
- /escodegen/2.0.0:
- resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==}
+ /escodegen/2.1.0:
+ resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
engines: {node: '>=6.0'}
hasBin: true
dependencies:
esprima: 4.0.1
estraverse: 5.3.0
esutils: 2.0.3
- optionator: 0.8.3
optionalDependencies:
source-map: 0.6.1
- /eslint-config-airbnb-base/14.2.1_vaqnzbumzdgwnwbjppthpg4qgu:
+ /eslint-config-airbnb-base/14.2.1_ryxylqcqjrgqrcq5e2gwnwvmem:
resolution: {integrity: sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==}
engines: {node: '>= 6'}
peerDependencies:
eslint: ^5.16.0 || ^6.8.0 || ^7.2.0
eslint-plugin-import: ^2.22.1
dependencies:
- confusing-browser-globals: 1.0.10
+ confusing-browser-globals: 1.0.11
eslint: 7.32.0
- eslint-plugin-import: 2.25.3_ffi3uiz42rv3jyhs6cr7p7qqry
- object.assign: 4.1.2
- object.entries: 1.1.5
+ eslint-plugin-import: 2.29.1_ffi3uiz42rv3jyhs6cr7p7qqry
+ object.assign: 4.1.5
+ object.entries: 1.1.8
dev: true
- /eslint-config-airbnb-typescript/14.0.2_2cxnn5euwmjfrhh7mb2kjgkaoe:
+ /eslint-config-airbnb-typescript/14.0.2_z3qksmckfr5ii25m33necivc2a:
resolution: {integrity: sha512-oaVR63DqpRUiOOeSVxIzhD3FXbqJRH+7Lt9GCMsS9SKgrRW3XpZINN2FO4JEsnaHEGkktumd0AHE9K7KQNuXSQ==}
peerDependencies:
'@typescript-eslint/eslint-plugin': ^4.29.3
@@ -19501,33 +20605,31 @@ packages:
dependencies:
'@typescript-eslint/eslint-plugin': 4.33.0_ffi3uiz42rv3jyhs6cr7p7qqry
'@typescript-eslint/parser': 4.33.0_eslint@7.32.0
- eslint-config-airbnb-base: 14.2.1_vaqnzbumzdgwnwbjppthpg4qgu
+ eslint-config-airbnb-base: 14.2.1_ryxylqcqjrgqrcq5e2gwnwvmem
transitivePeerDependencies:
- eslint
- eslint-plugin-import
dev: true
- /eslint-config-next/12.0.10_eslint@7.32.0+next@12.0.10:
- resolution: {integrity: sha512-l1er6mwSo1bltjLwmd71p5BdT6k/NQxV1n4lKZI6xt3MDMrq7ChUBr+EecxOry8GC/rCRUtPpH8Ygs0BJc5YLg==}
+ /eslint-config-next/12.3.4_eslint@7.32.0:
+ resolution: {integrity: sha512-WuT3gvgi7Bwz00AOmKGhOeqnyA5P29Cdyr0iVjLyfDbk+FANQKcOjFUTZIdyYfe5Tq1x4TGcmoe4CwctGvFjHQ==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
- next: '>=10.2.0'
typescript: '>=3.3.1'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@next/eslint-plugin-next': 12.0.10
- '@rushstack/eslint-patch': 1.1.0
- '@typescript-eslint/parser': 5.12.0_eslint@7.32.0
+ '@next/eslint-plugin-next': 12.3.4
+ '@rushstack/eslint-patch': 1.10.3
+ '@typescript-eslint/parser': 5.62.0_eslint@7.32.0
eslint: 7.32.0
- eslint-import-resolver-node: 0.3.6
- eslint-import-resolver-typescript: 2.5.0_vaqnzbumzdgwnwbjppthpg4qgu
- eslint-plugin-import: 2.25.3_p7myicoan3u77ghoe5uzfr4nem
- eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0
- eslint-plugin-react: 7.27.0_eslint@7.32.0
- eslint-plugin-react-hooks: 4.3.0_eslint@7.32.0
- next: 12.0.10_t3qp7jjdvogg6q4bidjnygdwy4
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 2.7.1_ryxylqcqjrgqrcq5e2gwnwvmem
+ eslint-plugin-import: 2.29.1_zwxpt3r5j4jcknus6dhyh3wpkq
+ eslint-plugin-jsx-a11y: 6.8.0_eslint@7.32.0
+ eslint-plugin-react: 7.34.2_eslint@7.32.0
+ eslint-plugin-react-hooks: 4.6.2_eslint@7.32.0
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
@@ -19543,8 +20645,8 @@ packages:
get-stdin: 6.0.0
dev: true
- /eslint-config-prettier/8.3.0_eslint@7.32.0:
- resolution: {integrity: sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==}
+ /eslint-config-prettier/8.10.0_eslint@7.32.0:
+ resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
@@ -19572,7 +20674,7 @@ packages:
'@typescript-eslint/eslint-plugin': 2.34.0_fmavwhclprfd5wnbs7ocgoy2gu
'@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
babel-eslint: 10.1.0_eslint@6.8.0
- confusing-browser-globals: 1.0.10
+ confusing-browser-globals: 1.0.11
eslint: 6.8.0
eslint-plugin-flowtype: 4.6.0_eslint@6.8.0
eslint-plugin-import: 2.20.1_tbglwmj7t2rhd43mvxmptakoay
@@ -19582,7 +20684,7 @@ packages:
typescript: 3.9.10
dev: false
- /eslint-config-react-app/5.2.1_sdslx5m6u5fjscqov2w3s4rcmy:
+ /eslint-config-react-app/5.2.1_c4rjpjuy3qbjpbd5jaaozmy7xi:
resolution: {integrity: sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ==}
peerDependencies:
'@typescript-eslint/eslint-plugin': 2.x
@@ -19602,17 +20704,17 @@ packages:
'@typescript-eslint/eslint-plugin': 2.34.0_fmavwhclprfd5wnbs7ocgoy2gu
'@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
babel-eslint: 10.1.0_eslint@6.8.0
- confusing-browser-globals: 1.0.10
+ confusing-browser-globals: 1.0.11
eslint: 6.8.0
eslint-plugin-flowtype: 3.13.0_eslint@6.8.0
- eslint-plugin-import: 2.25.3_tbglwmj7t2rhd43mvxmptakoay
- eslint-plugin-jsx-a11y: 6.5.1_eslint@6.8.0
- eslint-plugin-react: 7.27.0_eslint@6.8.0
+ eslint-plugin-import: 2.29.1_tbglwmj7t2rhd43mvxmptakoay
+ eslint-plugin-jsx-a11y: 6.8.0_eslint@6.8.0
+ eslint-plugin-react: 7.34.2_eslint@6.8.0
eslint-plugin-react-hooks: 2.5.1_eslint@6.8.0
typescript: 3.9.10
dev: true
- /eslint-config-react-app/6.0.0_jsnpamofhwivp44oziernwqq5m:
+ /eslint-config-react-app/6.0.0_56hzpvad3csshpfzgfwl52nx6i:
resolution: {integrity: sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -19636,42 +20738,43 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 4.33.0_mxui2jzt6nwtmjfua3szbtylhm
- '@typescript-eslint/parser': 4.33.0_e6rt7vlgxfprtuallp2t3cvyi4
+ '@typescript-eslint/eslint-plugin': 4.33.0_s2qqtxhzmb7vugvfoyripfgp7i
+ '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe
babel-eslint: 10.1.0_eslint@7.32.0
- confusing-browser-globals: 1.0.10
+ confusing-browser-globals: 1.0.11
eslint: 7.32.0
eslint-plugin-flowtype: 5.10.0_eslint@7.32.0
- eslint-plugin-import: 2.25.3_ffi3uiz42rv3jyhs6cr7p7qqry
- eslint-plugin-jest: 24.7.0_eiscpddx74zrztqv3bgkgtrg44
- eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0
- eslint-plugin-react: 7.27.0_eslint@7.32.0
- eslint-plugin-react-hooks: 4.3.0_eslint@7.32.0
- eslint-plugin-testing-library: 3.10.2_e6rt7vlgxfprtuallp2t3cvyi4
- typescript: 4.6.2
+ eslint-plugin-import: 2.29.1_ffi3uiz42rv3jyhs6cr7p7qqry
+ eslint-plugin-jest: 24.7.0_bfrijen5mqdzfbbsgrvmb4p2hy
+ eslint-plugin-jsx-a11y: 6.8.0_eslint@7.32.0
+ eslint-plugin-react: 7.34.2_eslint@7.32.0
+ eslint-plugin-react-hooks: 4.6.2_eslint@7.32.0
+ eslint-plugin-testing-library: 3.10.2_jofidmxrjzhj7l6vknpw5ecvfe
+ typescript: 4.9.5
- /eslint-import-resolver-node/0.3.6:
- resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==}
+ /eslint-import-resolver-node/0.3.9:
+ resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
dependencies:
debug: 3.2.7
- resolve: 1.20.0
+ is-core-module: 2.13.1
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- /eslint-import-resolver-typescript/2.5.0_vaqnzbumzdgwnwbjppthpg4qgu:
- resolution: {integrity: sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==}
+ /eslint-import-resolver-typescript/2.7.1_ryxylqcqjrgqrcq5e2gwnwvmem:
+ resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==}
engines: {node: '>=4'}
peerDependencies:
eslint: '*'
eslint-plugin-import: '*'
dependencies:
- debug: 4.3.4
+ debug: 4.3.5
eslint: 7.32.0
- eslint-plugin-import: 2.25.3_p7myicoan3u77ghoe5uzfr4nem
- glob: 7.2.0
+ eslint-plugin-import: 2.29.1_zwxpt3r5j4jcknus6dhyh3wpkq
+ glob: 7.2.3
is-glob: 4.0.3
- resolve: 1.20.0
- tsconfig-paths: 3.11.0
+ resolve: 1.22.8
+ tsconfig-paths: 3.15.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -19687,23 +20790,26 @@ packages:
eslint: 6.8.0
fs-extra: 8.1.0
loader-fs-cache: 1.0.3
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
object-hash: 2.2.0
schema-utils: 2.7.1
webpack: 4.42.0
dev: false
- /eslint-module-utils/2.7.1_diherve2usnrs4uey65ggib33y:
- resolution: {integrity: sha512-fjoetBXQZq2tSTWZ9yWVl2KuFrTZZH3V+9iD1V1RfpDgxzJR+mPd/KZmMiA8gbPqdBzpNiEHOuT7IYEWxrH0zQ==}
+ /eslint-module-utils/2.8.1_clggmhisrku7hd5cmszepuwv5i:
+ resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
+ eslint: '*'
eslint-import-resolver-node: '*'
eslint-import-resolver-typescript: '*'
eslint-import-resolver-webpack: '*'
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
+ eslint:
+ optional: true
eslint-import-resolver-node:
optional: true
eslint-import-resolver-typescript:
@@ -19711,27 +20817,29 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.12.0_eslint@7.32.0
+ '@typescript-eslint/parser': 5.62.0_eslint@7.32.0
debug: 3.2.7
- eslint-import-resolver-node: 0.3.6
- eslint-import-resolver-typescript: 2.5.0_vaqnzbumzdgwnwbjppthpg4qgu
- find-up: 2.1.0
- pkg-dir: 2.0.0
+ eslint: 7.32.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 2.7.1_ryxylqcqjrgqrcq5e2gwnwvmem
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-module-utils/2.7.1_lkzaig2qiyp6elizstfbgvzhie:
- resolution: {integrity: sha512-fjoetBXQZq2tSTWZ9yWVl2KuFrTZZH3V+9iD1V1RfpDgxzJR+mPd/KZmMiA8gbPqdBzpNiEHOuT7IYEWxrH0zQ==}
+ /eslint-module-utils/2.8.1_dliihslfikp2yunuxqn7usg75u:
+ resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
+ eslint: '*'
eslint-import-resolver-node: '*'
eslint-import-resolver-typescript: '*'
eslint-import-resolver-webpack: '*'
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
+ eslint:
+ optional: true
eslint-import-resolver-node:
optional: true
eslint-import-resolver-typescript:
@@ -19739,25 +20847,27 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 4.33.0_eslint@7.32.0
+ '@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
debug: 3.2.7
- eslint-import-resolver-node: 0.3.6
- find-up: 2.1.0
- pkg-dir: 2.0.0
+ eslint: 6.8.0
+ eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- /eslint-module-utils/2.7.1_v3bireslbrxtr5bkc2nznayije:
- resolution: {integrity: sha512-fjoetBXQZq2tSTWZ9yWVl2KuFrTZZH3V+9iD1V1RfpDgxzJR+mPd/KZmMiA8gbPqdBzpNiEHOuT7IYEWxrH0zQ==}
+ /eslint-module-utils/2.8.1_iqqpyvyhlk3n5xet62dsnby2pq:
+ resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
+ eslint: '*'
eslint-import-resolver-node: '*'
eslint-import-resolver-typescript: '*'
eslint-import-resolver-webpack: '*'
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
+ eslint:
+ optional: true
eslint-import-resolver-node:
optional: true
eslint-import-resolver-typescript:
@@ -19765,11 +20875,10 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
+ '@typescript-eslint/parser': 4.33.0_eslint@7.32.0
debug: 3.2.7
- eslint-import-resolver-node: 0.3.6
- find-up: 2.1.0
- pkg-dir: 2.0.0
+ eslint: 7.32.0
+ eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
@@ -19814,27 +20923,27 @@ packages:
optional: true
dependencies:
'@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
- array-includes: 3.1.4
- array.prototype.flat: 1.2.5
+ array-includes: 3.1.8
+ array.prototype.flat: 1.3.2
contains-path: 0.1.0
debug: 2.6.9
doctrine: 1.5.0
eslint: 6.8.0
- eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.1_v3bireslbrxtr5bkc2nznayije
- has: 1.0.3
- minimatch: 3.0.4
- object.values: 1.1.5
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.1_dliihslfikp2yunuxqn7usg75u
+ has: 1.0.4
+ minimatch: 3.1.2
+ object.values: 1.2.0
read-pkg-up: 2.0.0
- resolve: 1.20.0
+ resolve: 1.15.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
dev: false
- /eslint-plugin-import/2.25.3_ffi3uiz42rv3jyhs6cr7p7qqry:
- resolution: {integrity: sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==}
+ /eslint-plugin-import/2.29.1_ffi3uiz42rv3jyhs6cr7p7qqry:
+ resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -19844,27 +20953,31 @@ packages:
optional: true
dependencies:
'@typescript-eslint/parser': 4.33.0_eslint@7.32.0
- array-includes: 3.1.4
- array.prototype.flat: 1.2.5
- debug: 2.6.9
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7
doctrine: 2.1.0
eslint: 7.32.0
- eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.1_lkzaig2qiyp6elizstfbgvzhie
- has: 1.0.3
- is-core-module: 2.8.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.1_iqqpyvyhlk3n5xet62dsnby2pq
+ hasown: 2.0.2
+ is-core-module: 2.13.1
is-glob: 4.0.3
- minimatch: 3.0.4
- object.values: 1.1.5
- resolve: 1.20.0
- tsconfig-paths: 3.11.0
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ tsconfig-paths: 3.15.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- /eslint-plugin-import/2.25.3_p7myicoan3u77ghoe5uzfr4nem:
- resolution: {integrity: sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==}
+ /eslint-plugin-import/2.29.1_tbglwmj7t2rhd43mvxmptakoay:
+ resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -19873,29 +20986,33 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.12.0_eslint@7.32.0
- array-includes: 3.1.4
- array.prototype.flat: 1.2.5
- debug: 2.6.9
+ '@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7
doctrine: 2.1.0
- eslint: 7.32.0
- eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.1_diherve2usnrs4uey65ggib33y
- has: 1.0.3
- is-core-module: 2.8.0
+ eslint: 6.8.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.1_dliihslfikp2yunuxqn7usg75u
+ hasown: 2.0.2
+ is-core-module: 2.13.1
is-glob: 4.0.3
- minimatch: 3.0.4
- object.values: 1.1.5
- resolve: 1.20.0
- tsconfig-paths: 3.11.0
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ tsconfig-paths: 3.15.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-plugin-import/2.25.3_tbglwmj7t2rhd43mvxmptakoay:
- resolution: {integrity: sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==}
+ /eslint-plugin-import/2.29.1_zwxpt3r5j4jcknus6dhyh3wpkq:
+ resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -19904,28 +21021,32 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
- array-includes: 3.1.4
- array.prototype.flat: 1.2.5
- debug: 2.6.9
+ '@typescript-eslint/parser': 5.62.0_eslint@7.32.0
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7
doctrine: 2.1.0
- eslint: 6.8.0
- eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.1_v3bireslbrxtr5bkc2nznayije
- has: 1.0.3
- is-core-module: 2.8.0
+ eslint: 7.32.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.1_clggmhisrku7hd5cmszepuwv5i
+ hasown: 2.0.2
+ is-core-module: 2.13.1
is-glob: 4.0.3
- minimatch: 3.0.4
- object.values: 1.1.5
- resolve: 1.20.0
- tsconfig-paths: 3.11.0
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ tsconfig-paths: 3.15.0
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-plugin-jest/24.7.0_eiscpddx74zrztqv3bgkgtrg44:
+ /eslint-plugin-jest/24.7.0_bfrijen5mqdzfbbsgrvmb4p2hy:
resolution: {integrity: sha512-wUxdF2bAZiYSKBclsUMrYHH6WxiBreNjyDxbRv345TIvPeoCEgPNEn3Sa+ZrSqsf1Dl9SqqSREXMHExlMMu1DA==}
engines: {node: '>=10'}
peerDependencies:
@@ -19935,8 +21056,8 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 4.33.0_mxui2jzt6nwtmjfua3szbtylhm
- '@typescript-eslint/experimental-utils': 4.33.0_e6rt7vlgxfprtuallp2t3cvyi4
+ '@typescript-eslint/eslint-plugin': 4.33.0_s2qqtxhzmb7vugvfoyripfgp7i
+ '@typescript-eslint/experimental-utils': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe
eslint: 7.32.0
transitivePeerDependencies:
- supports-color
@@ -19948,58 +21069,66 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
aria-query: 3.0.0
- array-includes: 3.1.4
+ array-includes: 3.1.8
ast-types-flow: 0.0.7
axobject-query: 2.2.0
- damerau-levenshtein: 1.0.7
+ damerau-levenshtein: 1.0.8
emoji-regex: 7.0.3
eslint: 6.8.0
- has: 1.0.3
+ has: 1.0.4
jsx-ast-utils: 2.4.1
dev: false
- /eslint-plugin-jsx-a11y/6.5.1_eslint@6.8.0:
- resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==}
+ /eslint-plugin-jsx-a11y/6.8.0_eslint@6.8.0:
+ resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.17.2
- aria-query: 4.2.2
- array-includes: 3.1.4
- ast-types-flow: 0.0.7
- axe-core: 4.3.5
- axobject-query: 2.2.0
- damerau-levenshtein: 1.0.7
+ '@babel/runtime': 7.24.7
+ aria-query: 5.3.0
+ array-includes: 3.1.8
+ array.prototype.flatmap: 1.3.2
+ ast-types-flow: 0.0.8
+ axe-core: 4.7.0
+ axobject-query: 3.2.1
+ damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
+ es-iterator-helpers: 1.0.19
eslint: 6.8.0
- has: 1.0.3
- jsx-ast-utils: 3.2.1
- language-tags: 1.0.5
- minimatch: 3.0.4
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
+ language-tags: 1.0.9
+ minimatch: 3.1.2
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
dev: true
- /eslint-plugin-jsx-a11y/6.5.1_eslint@7.32.0:
- resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==}
+ /eslint-plugin-jsx-a11y/6.8.0_eslint@7.32.0:
+ resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.17.2
- aria-query: 4.2.2
- array-includes: 3.1.4
- ast-types-flow: 0.0.7
- axe-core: 4.3.5
- axobject-query: 2.2.0
- damerau-levenshtein: 1.0.7
+ '@babel/runtime': 7.24.7
+ aria-query: 5.3.0
+ array-includes: 3.1.8
+ array.prototype.flatmap: 1.3.2
+ ast-types-flow: 0.0.8
+ axe-core: 4.7.0
+ axobject-query: 3.2.1
+ damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
+ es-iterator-helpers: 1.0.19
eslint: 7.32.0
- has: 1.0.3
- jsx-ast-utils: 3.2.1
- language-tags: 1.0.5
- minimatch: 3.0.4
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
+ language-tags: 1.0.9
+ minimatch: 3.1.2
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
/eslint-plugin-prettier/3.4.1_w56nqx62sqpcgkca3sb3623wsa:
resolution: {integrity: sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==}
@@ -20018,9 +21147,9 @@ packages:
prettier-linter-helpers: 1.0.0
dev: true
- /eslint-plugin-prettier/4.0.0_nzvclje2srg3b6ryiggdxjf4qy:
- resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
- engines: {node: '>=6.0.0'}
+ /eslint-plugin-prettier/4.2.1_bbatpuwfbpnx32jr4tzjhnui3m:
+ resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
+ engines: {node: '>=12.0.0'}
peerDependencies:
eslint: '>=7.28.0'
eslint-config-prettier: '*'
@@ -20030,8 +21159,8 @@ packages:
optional: true
dependencies:
eslint: 7.32.0
- eslint-config-prettier: 8.3.0_eslint@7.32.0
- prettier: 2.5.1
+ eslint-config-prettier: 8.10.0_eslint@7.32.0
+ prettier: 2.8.8
prettier-linter-helpers: 1.0.0
dev: true
@@ -20053,8 +21182,8 @@ packages:
eslint: 6.8.0
dev: true
- /eslint-plugin-react-hooks/4.3.0_eslint@7.32.0:
- resolution: {integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==}
+ /eslint-plugin-react-hooks/4.6.2_eslint@7.32.0:
+ resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
@@ -20067,73 +21196,81 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
dependencies:
- array-includes: 3.1.4
+ array-includes: 3.1.8
doctrine: 2.1.0
eslint: 6.8.0
- has: 1.0.3
+ has: 1.0.4
jsx-ast-utils: 2.4.1
- object.entries: 1.1.5
- object.fromentries: 2.0.5
- object.values: 1.1.5
- prop-types: 15.7.2
- resolve: 1.20.0
- semver: 6.3.0
- string.prototype.matchall: 4.0.6
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.values: 1.2.0
+ prop-types: 15.8.1
+ resolve: 1.22.8
+ semver: 6.3.1
+ string.prototype.matchall: 4.0.11
xregexp: 4.4.1
dev: false
- /eslint-plugin-react/7.27.0_eslint@6.8.0:
- resolution: {integrity: sha512-0Ut+CkzpppgFtoIhdzi2LpdpxxBvgFf99eFqWxJnUrO7mMe0eOiNpou6rvNYeVVV6lWZvTah0BFne7k5xHjARg==}
+ /eslint-plugin-react/7.34.2_eslint@6.8.0:
+ resolution: {integrity: sha512-2HCmrU+/JNigDN6tg55cRDKCQWicYAPB38JGSFDQt95jDm8rrvSUo7YPkOIm5l6ts1j1zCvysNcasvfTMQzUOw==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- array-includes: 3.1.4
- array.prototype.flatmap: 1.2.5
+ array-includes: 3.1.8
+ array.prototype.findlast: 1.2.5
+ array.prototype.flatmap: 1.3.2
+ array.prototype.toreversed: 1.1.2
+ array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
+ es-iterator-helpers: 1.0.19
eslint: 6.8.0
estraverse: 5.3.0
- jsx-ast-utils: 3.2.1
- minimatch: 3.0.4
- object.entries: 1.1.5
- object.fromentries: 2.0.5
- object.hasown: 1.1.0
- object.values: 1.1.5
+ jsx-ast-utils: 3.3.5
+ minimatch: 3.1.2
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.hasown: 1.1.4
+ object.values: 1.2.0
prop-types: 15.8.1
- resolve: 2.0.0-next.3
- semver: 6.3.0
- string.prototype.matchall: 4.0.6
+ resolve: 2.0.0-next.5
+ semver: 6.3.1
+ string.prototype.matchall: 4.0.11
dev: true
- /eslint-plugin-react/7.27.0_eslint@7.32.0:
- resolution: {integrity: sha512-0Ut+CkzpppgFtoIhdzi2LpdpxxBvgFf99eFqWxJnUrO7mMe0eOiNpou6rvNYeVVV6lWZvTah0BFne7k5xHjARg==}
+ /eslint-plugin-react/7.34.2_eslint@7.32.0:
+ resolution: {integrity: sha512-2HCmrU+/JNigDN6tg55cRDKCQWicYAPB38JGSFDQt95jDm8rrvSUo7YPkOIm5l6ts1j1zCvysNcasvfTMQzUOw==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- array-includes: 3.1.4
- array.prototype.flatmap: 1.2.5
+ array-includes: 3.1.8
+ array.prototype.findlast: 1.2.5
+ array.prototype.flatmap: 1.3.2
+ array.prototype.toreversed: 1.1.2
+ array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
+ es-iterator-helpers: 1.0.19
eslint: 7.32.0
estraverse: 5.3.0
- jsx-ast-utils: 3.2.1
- minimatch: 3.0.4
- object.entries: 1.1.5
- object.fromentries: 2.0.5
- object.hasown: 1.1.0
- object.values: 1.1.5
+ jsx-ast-utils: 3.3.5
+ minimatch: 3.1.2
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.hasown: 1.1.4
+ object.values: 1.2.0
prop-types: 15.8.1
- resolve: 2.0.0-next.3
- semver: 6.3.0
- string.prototype.matchall: 4.0.6
+ resolve: 2.0.0-next.5
+ semver: 6.3.1
+ string.prototype.matchall: 4.0.11
- /eslint-plugin-testing-library/3.10.2_e6rt7vlgxfprtuallp2t3cvyi4:
+ /eslint-plugin-testing-library/3.10.2_jofidmxrjzhj7l6vknpw5ecvfe:
resolution: {integrity: sha512-WAmOCt7EbF1XM8XfbCKAEzAPnShkNSwcIsAD2jHdsMUT9mZJPjLCG7pMzbcC8kK366NOuGip8HKLDC+Xk4yIdA==}
engines: {node: ^10.12.0 || >=12.0.0, npm: '>=6'}
peerDependencies:
eslint: ^5 || ^6 || ^7
dependencies:
- '@typescript-eslint/experimental-utils': 3.10.1_e6rt7vlgxfprtuallp2t3cvyi4
+ '@typescript-eslint/experimental-utils': 3.10.1_jofidmxrjzhj7l6vknpw5ecvfe
eslint: 7.32.0
transitivePeerDependencies:
- supports-color
@@ -20202,13 +21339,13 @@ packages:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
- /eslint-visitor-keys/3.3.0:
- resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==}
+ /eslint-visitor-keys/3.4.3:
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint-webpack-plugin/2.6.0_a7xmpkungfd35is2c4kqy55h3i:
- resolution: {integrity: sha512-V+LPY/T3kur5QO3u+1s34VDTcRxjXWPUGM4hlmTb5DwVD0OQz631yGTxJZf4SpAqAjdbBVe978S8BJeHpAdOhQ==}
+ /eslint-webpack-plugin/2.7.0_a7xmpkungfd35is2c4kqy55h3i:
+ resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -20218,9 +21355,9 @@ packages:
arrify: 2.0.1
eslint: 7.32.0
jest-worker: 27.5.1
- micromatch: 4.0.4
+ micromatch: 4.0.7
normalize-path: 3.0.0
- schema-utils: 3.1.1
+ schema-utils: 3.3.0
webpack: 4.44.2
/eslint/6.8.0:
@@ -20228,17 +21365,17 @@ packages:
engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
hasBin: true
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.24.7
ajv: 6.12.6
chalk: 2.4.2
cross-spawn: 6.0.5
- debug: 4.3.2
+ debug: 4.3.5
doctrine: 3.0.0
eslint-scope: 5.1.1
eslint-utils: 1.4.3
eslint-visitor-keys: 1.3.0
espree: 6.2.1
- esquery: 1.4.0
+ esquery: 1.5.0
esutils: 2.0.3
file-entry-cache: 5.0.1
functional-red-black-tree: 1.0.1
@@ -20253,18 +21390,18 @@ packages:
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.3.0
lodash: 4.17.21
- minimatch: 3.0.4
- mkdirp: 0.5.5
+ minimatch: 3.1.2
+ mkdirp: 0.5.6
natural-compare: 1.4.0
optionator: 0.8.3
progress: 2.0.3
regexpp: 2.0.1
- semver: 6.3.0
+ semver: 6.3.1
strip-ansi: 5.2.0
strip-json-comments: 3.1.1
table: 5.4.6
text-table: 0.2.0
- v8-compile-cache: 2.3.0
+ v8-compile-cache: 2.4.0
transitivePeerDependencies:
- supports-color
@@ -20279,21 +21416,21 @@ packages:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.2
+ debug: 4.3.5
doctrine: 3.0.0
- enquirer: 2.3.6
+ enquirer: 2.4.1
escape-string-regexp: 4.0.0
eslint-scope: 5.1.1
eslint-utils: 2.1.0
eslint-visitor-keys: 2.1.0
espree: 7.3.1
- esquery: 1.4.0
+ esquery: 1.5.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
functional-red-black-tree: 1.0.1
glob-parent: 5.1.2
- globals: 13.12.0
+ globals: 13.24.0
ignore: 4.0.6
import-fresh: 3.3.0
imurmurhash: 0.1.4
@@ -20302,20 +21439,29 @@ packages:
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
lodash.merge: 4.6.2
- minimatch: 3.0.4
+ minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.1
+ optionator: 0.9.4
progress: 2.0.3
regexpp: 3.2.0
- semver: 7.3.5
+ semver: 7.6.2
strip-ansi: 6.0.1
strip-json-comments: 3.1.1
- table: 6.8.0
+ table: 6.8.2
text-table: 0.2.0
- v8-compile-cache: 2.3.0
+ v8-compile-cache: 2.4.0
transitivePeerDependencies:
- supports-color
+ /esniff/2.0.1:
+ resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ d: 1.0.2
+ es5-ext: 0.10.64
+ event-emitter: 0.3.5
+ type: 2.7.3
+
/espree/6.2.1:
resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==}
engines: {node: '>=6.0.0'}
@@ -20332,13 +21478,18 @@ packages:
acorn-jsx: 5.3.2_acorn@7.4.1
eslint-visitor-keys: 1.3.0
+ /esprima/1.2.2:
+ resolution: {integrity: sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
/esprima/4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- /esquery/1.4.0:
- resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==}
+ /esquery/1.5.0:
+ resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
dependencies:
estraverse: 5.3.0
@@ -20350,7 +21501,7 @@ packages:
estraverse: 5.3.0
/esrever/0.2.0:
- resolution: {integrity: sha1-lunSj08bGnZ4TNXUkOquAQ50B7g=}
+ resolution: {integrity: sha512-1e9YJt6yQkyekt2BUjTky7LZWWVyC2cIpgdnsTAvMcnzXIZvlW/fTMPkxBcZoYhgih4d+EC+iw+yv9GIkz7vrw==}
hasBin: true
dev: false
@@ -20366,9 +21517,9 @@ packages:
resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==}
engines: {node: '>=8.3.0'}
dependencies:
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
- c8: 7.10.0
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ c8: 7.14.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -20387,8 +21538,14 @@ packages:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
+ /event-emitter/0.3.5:
+ resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
+ dependencies:
+ d: 1.0.2
+ es5-ext: 0.10.64
+
/event-stream/3.3.4:
- resolution: {integrity: sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=}
+ resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==}
dependencies:
duplexer: 0.1.2
from: 0.1.7
@@ -20399,8 +21556,13 @@ packages:
through: 2.3.8
dev: true
- /eventemitter2/6.4.5:
- resolution: {integrity: sha512-bXE7Dyc1i6oQElDG0jMRZJrRAn9QR2xyyFGmBdZleNmyQX0FqGYmhZIrIrpPfm/w//LTo4tVQGOGQcGCb5q9uw==}
+ /event-target-shim/5.0.1:
+ resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /eventemitter2/6.4.9:
+ resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==}
dev: true
/eventemitter3/3.1.2:
@@ -20411,7 +21573,7 @@ packages:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
/events/1.1.1:
- resolution: {integrity: sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=}
+ resolution: {integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==}
engines: {node: '>=0.4.x'}
dev: false
@@ -20419,11 +21581,13 @@ packages:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- /eventsource/1.1.0:
- resolution: {integrity: sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==}
+ /eventsource/1.1.2:
+ resolution: {integrity: sha512-xAH3zWhgO2/3KIniEKYPr8plNSzlGINOUqYj0m0u7AB81iRw8b/3E73W6AuU+6klLbaSFmZnaETQ2lXPfAydrA==}
engines: {node: '>=0.12.0'}
- dependencies:
- original: 1.0.2
+
+ /eventsource/2.0.2:
+ resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==}
+ engines: {node: '>=12.0.0'}
/evp_bytestokey/1.0.3:
resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==}
@@ -20435,7 +21599,7 @@ packages:
resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==}
/execa/0.7.0:
- resolution: {integrity: sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz}
+ resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==}
engines: {node: '>=4'}
dependencies:
cross-spawn: 5.1.0
@@ -20443,12 +21607,12 @@ packages:
is-stream: 1.1.0
npm-run-path: 2.0.2
p-finally: 1.0.0
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
strip-eof: 1.0.0
dev: false
/execa/0.8.0:
- resolution: {integrity: sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz}
+ resolution: {integrity: sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==}
engines: {node: '>=4'}
dependencies:
cross-spawn: 5.1.0
@@ -20456,7 +21620,7 @@ packages:
is-stream: 1.1.0
npm-run-path: 2.0.2
p-finally: 1.0.0
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
strip-eof: 1.0.0
dev: false
@@ -20469,7 +21633,7 @@ packages:
is-stream: 1.1.0
npm-run-path: 2.0.2
p-finally: 1.0.0
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
strip-eof: 1.0.0
/execa/3.2.0:
@@ -20484,7 +21648,7 @@ packages:
npm-run-path: 4.0.1
onetime: 5.1.2
p-finally: 2.0.1
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
strip-final-newline: 2.0.0
dev: true
@@ -20499,7 +21663,7 @@ packages:
merge-stream: 2.0.0
npm-run-path: 4.0.1
onetime: 5.1.2
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
strip-final-newline: 2.0.0
/execa/5.1.1:
@@ -20513,7 +21677,7 @@ packages:
merge-stream: 2.0.0
npm-run-path: 4.0.1
onetime: 5.1.2
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
strip-final-newline: 2.0.0
dev: true
@@ -20525,7 +21689,7 @@ packages:
dev: true
/exenv/1.2.2:
- resolution: {integrity: sha1-KueOhdmJQVhnCwPUe+wfA72Ru50=}
+ resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==}
dev: false
/exit/0.1.2:
@@ -20533,7 +21697,7 @@ packages:
engines: {node: '>= 0.8.0'}
/expand-brackets/0.1.5:
- resolution: {integrity: sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=}
+ resolution: {integrity: sha512-hxx03P2dJxss6ceIeri9cmYOT4SRs3Zk3afZwWpOsRqLqprhTR8u++SlC+sFGsQr7WGFPdMF7Gjc1njDLDK6UA==}
engines: {node: '>=0.10.0'}
dependencies:
is-posix-bracket: 0.1.1
@@ -20569,7 +21733,7 @@ packages:
- supports-color
/expand-range/1.8.2:
- resolution: {integrity: sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=}
+ resolution: {integrity: sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==}
engines: {node: '>=0.10.0'}
dependencies:
fill-range: 2.2.4
@@ -20614,41 +21778,42 @@ packages:
resolution: {integrity: sha512-RKwCrO4A6IiKm0pG3c9V46JxIHcDplwwGJn6+JJ1RcVnh/WSGJa0xkmk5cRVtgOPzCAtTMGj2F7nluh9L0vpSA==}
engines: {node: '>= 4'}
dependencies:
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
source-map: 0.5.0
dev: false
- /express/4.17.1:
- resolution: {integrity: sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==}
+ /express/4.19.2:
+ resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
engines: {node: '>= 0.10.0'}
dependencies:
- accepts: 1.3.7
+ accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.19.0
- content-disposition: 0.5.3
- content-type: 1.0.4
- cookie: 0.4.0
+ body-parser: 1.20.2
+ content-disposition: 0.5.4
+ content-type: 1.0.5
+ cookie: 0.6.0
cookie-signature: 1.0.6
debug: 2.6.9
- depd: 1.1.2
+ depd: 2.0.0
encodeurl: 1.0.2
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.1.2
+ finalhandler: 1.2.0
fresh: 0.5.2
+ http-errors: 2.0.0
merge-descriptors: 1.0.1
methods: 1.1.2
- on-finished: 2.3.0
+ on-finished: 2.4.1
parseurl: 1.3.3
path-to-regexp: 0.1.7
proxy-addr: 2.0.7
- qs: 6.7.0
+ qs: 6.11.0
range-parser: 1.2.1
- safe-buffer: 5.1.2
- send: 0.17.1
- serve-static: 1.14.1
- setprototypeof: 1.1.1
- statuses: 1.5.0
+ safe-buffer: 5.2.1
+ send: 0.18.0
+ serve-static: 1.15.0
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
type-is: 1.6.18
utils-merge: 1.0.1
vary: 1.1.2
@@ -20656,47 +21821,48 @@ packages:
- supports-color
dev: true
- /express/4.17.1_supports-color@6.1.0:
- resolution: {integrity: sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==}
+ /express/4.19.2_supports-color@6.1.0:
+ resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
engines: {node: '>= 0.10.0'}
dependencies:
- accepts: 1.3.7
+ accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.19.0_supports-color@6.1.0
- content-disposition: 0.5.3
- content-type: 1.0.4
- cookie: 0.4.0
+ body-parser: 1.20.2_supports-color@6.1.0
+ content-disposition: 0.5.4
+ content-type: 1.0.5
+ cookie: 0.6.0
cookie-signature: 1.0.6
debug: 2.6.9_supports-color@6.1.0
- depd: 1.1.2
+ depd: 2.0.0
encodeurl: 1.0.2
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.1.2_supports-color@6.1.0
+ finalhandler: 1.2.0_supports-color@6.1.0
fresh: 0.5.2
+ http-errors: 2.0.0
merge-descriptors: 1.0.1
methods: 1.1.2
- on-finished: 2.3.0
+ on-finished: 2.4.1
parseurl: 1.3.3
path-to-regexp: 0.1.7
proxy-addr: 2.0.7
- qs: 6.7.0
+ qs: 6.11.0
range-parser: 1.2.1
- safe-buffer: 5.1.2
- send: 0.17.1_supports-color@6.1.0
- serve-static: 1.14.1_supports-color@6.1.0
- setprototypeof: 1.1.1
- statuses: 1.5.0
+ safe-buffer: 5.2.1
+ send: 0.18.0_supports-color@6.1.0
+ serve-static: 1.15.0_supports-color@6.1.0
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
type-is: 1.6.18
utils-merge: 1.0.1
vary: 1.1.2
transitivePeerDependencies:
- supports-color
- /ext/1.6.0:
- resolution: {integrity: sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==}
+ /ext/1.7.0:
+ resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
dependencies:
- type: 2.5.0
+ type: 2.7.3
/extend-shallow/2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
@@ -20723,7 +21889,7 @@ packages:
tmp: 0.0.33
/extglob/0.3.2:
- resolution: {integrity: sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=}
+ resolution: {integrity: sha512-1FOj1LOwn42TMrruOHGt18HemVnbwAmAak7krWk+wa93KXxGbK+2jpezm+ytJYDaBX0/SPLZFHKM7m+tKobWGg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 1.0.0
@@ -20770,39 +21936,44 @@ packages:
engines: {node: '>= 10.17.0'}
hasBin: true
dependencies:
- debug: 4.3.4_supports-color@8.1.1
+ debug: 4.3.5_supports-color@8.1.1
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
- '@types/yauzl': 2.10.0
+ '@types/yauzl': 2.10.3
transitivePeerDependencies:
- supports-color
dev: true
/extsprintf/1.3.0:
- resolution: {integrity: sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=}
+ resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
engines: {'0': node >=0.6.0}
/faker/4.1.0:
- resolution: {integrity: sha1-HkW7vsxndLPBlfrSg1EJxtdIzD8=}
+ resolution: {integrity: sha512-ILKg69P6y/D8/wSmDXw35Ly0re8QzQ8pMfBCflsGiZG2ZjMUNLYNexA6lz5pkmJlepVdsiDFUxYAzPQ9/+iGLA==}
dev: false
/faker/5.5.3:
resolution: {integrity: sha512-wLTv2a28wjUyWkbnX7u/ABZBkUkIF2fCd73V6P2oFqEGEktDfzWx4UxrSqtPRw0xPRAcjeAOIiJWqZm3pP4u3g==}
dev: false
+ /fast-copy/3.0.2:
+ resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==}
+ dev: true
+
/fast-deep-equal/2.0.1:
- resolution: {integrity: sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=}
+ resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==}
/fast-deep-equal/3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- /fast-diff/1.2.0:
- resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==}
+ /fast-diff/1.3.0:
+ resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
dev: true
- /fast-equals/2.0.3:
- resolution: {integrity: sha512-0EMw4TTUxsMDpDkCg0rXor2gsg+npVrMIHbEhvD0HZyIhUX6AktC/yasm+qKwfyswd06Qy95ZKk8p2crTo0iPA==}
+ /fast-equals/5.0.1:
+ resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==}
+ engines: {node: '>=6.0.0'}
dev: false
/fast-glob/2.2.7:
@@ -20818,15 +21989,15 @@ packages:
transitivePeerDependencies:
- supports-color
- /fast-glob/3.2.11:
- resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==}
+ /fast-glob/3.3.2:
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.4
+ micromatch: 4.0.7
/fast-json-stable-stringify/2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
@@ -20834,31 +22005,31 @@ packages:
/fast-levenshtein/2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- /fast-redact/3.0.2:
- resolution: {integrity: sha512-YN+CYfCVRVMUZOUPeinHNKgytM1wPI/C/UCLEi56EsY2dwwvI00kIJHJoI7pMVqGoMew8SMZ2SSfHKHULHXDsg==}
+ /fast-redact/3.5.0:
+ resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==}
engines: {node: '>=6'}
dev: false
/fast-safe-stringify/2.1.1:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
- dev: false
/fast-url-parser/1.1.3:
- resolution: {integrity: sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=}
+ resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==}
dependencies:
punycode: 1.4.1
dev: false
- /fastify-warning/0.2.0:
- resolution: {integrity: sha512-s1EQguBw/9qtc1p/WTY4eq9WMRIACkj+HTcOIK1in4MV5aFaQC9ZCIt0dJ7pr5bIf4lPpHvAtP2ywpTNgs7hqw==}
- dev: false
+ /fastest-levenshtein/1.0.16:
+ resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
+ engines: {node: '>= 4.9.1'}
+ dev: true
/fastparse/1.1.2:
resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
dev: true
- /fastq/1.13.0:
- resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
+ /fastq/1.17.1:
+ resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
dependencies:
reusify: 1.0.4
@@ -20869,7 +22040,7 @@ packages:
dev: true
/faye-websocket/0.10.0:
- resolution: {integrity: sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=}
+ resolution: {integrity: sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==}
engines: {node: '>=0.4.0'}
dependencies:
websocket-driver: 0.7.4
@@ -20881,8 +22052,8 @@ packages:
dependencies:
websocket-driver: 0.7.4
- /fb-watchman/2.0.1:
- resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==}
+ /fb-watchman/2.0.2:
+ resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
dependencies:
bser: 2.1.1
@@ -20899,33 +22070,36 @@ packages:
object-assign: 4.1.1
promise: 7.3.1
setimmediate: 1.0.5
- ua-parser-js: 0.7.31
+ ua-parser-js: 0.7.38
dev: false
/fbjs/2.0.0:
resolution: {integrity: sha512-8XA8ny9ifxrAWlyhAbexXcs3rRMtxWcs3M0lctLfB49jRDHiaxj+Mo0XxbwE7nKZYzgCFoq64FS+WFd4IycPPQ==}
dependencies:
- core-js: 3.19.1
- cross-fetch: 3.1.4
+ core-js: 3.37.1
+ cross-fetch: 3.1.8
fbjs-css-vars: 1.0.2
loose-envify: 1.4.0
object-assign: 4.1.1
promise: 7.3.1
setimmediate: 1.0.5
- ua-parser-js: 0.7.31
+ ua-parser-js: 0.7.38
+ transitivePeerDependencies:
+ - encoding
dev: false
/fd-slicer/1.1.0:
- resolution: {integrity: sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=}
+ resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
dependencies:
pend: 1.2.0
dev: true
/figgy-pudding/3.5.2:
resolution: {integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==}
+ deprecated: This module is no longer supported.
/figures/2.0.0:
- resolution: {integrity: sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=}
+ resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==}
engines: {node: '>=4'}
dependencies:
escape-string-regexp: 1.0.5
@@ -20947,7 +22121,7 @@ packages:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flat-cache: 3.0.4
+ flat-cache: 3.2.0
/file-loader/4.3.0_webpack@4.42.0:
resolution: {integrity: sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==}
@@ -20955,21 +22129,9 @@ packages:
peerDependencies:
webpack: ^4.0.0
dependencies:
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
schema-utils: 2.7.1
webpack: 4.42.0
- dev: false
-
- /file-loader/4.3.0_webpack@4.46.0:
- resolution: {integrity: sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==}
- engines: {node: '>= 8.9.0'}
- peerDependencies:
- webpack: ^4.0.0
- dependencies:
- loader-utils: 1.4.0
- schema-utils: 2.7.1
- webpack: 4.46.0
- dev: true
/file-loader/6.1.1_webpack@4.44.2:
resolution: {integrity: sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==}
@@ -20977,20 +22139,19 @@ packages:
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
- loader-utils: 2.0.2
- schema-utils: 3.1.1
+ loader-utils: 2.0.4
+ schema-utils: 3.3.0
webpack: 4.44.2
/file-saver/2.0.5:
resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==}
dev: false
- /file-system-cache/1.0.5:
- resolution: {integrity: sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=}
+ /file-system-cache/1.1.0:
+ resolution: {integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==}
dependencies:
- bluebird: 3.7.2
- fs-extra: 0.30.0
- ramda: 0.21.0
+ fs-extra: 10.1.0
+ ramda: 0.28.0
dev: true
/file-uri-to-path/1.0.0:
@@ -20999,7 +22160,7 @@ packages:
optional: true
/filename-regex/2.0.1:
- resolution: {integrity: sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=}
+ resolution: {integrity: sha512-BTCqyBaWBTsauvnHiE8i562+EdJj+oUpkqWp2R1iCoR8f6oo8STRu3of7WJJ0TqWtxN50a5YFpzYK4Jj9esYfQ==}
engines: {node: '>=0.10.0'}
dev: true
optional: true
@@ -21039,64 +22200,65 @@ packages:
repeat-string: 1.6.1
to-regex-range: 2.1.1
- /fill-range/7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
+ /fill-range/7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
/filter-obj/1.1.0:
- resolution: {integrity: sha1-mzERErxsYSehbgFsbF1/GeCAXFs=}
+ resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
engines: {node: '>=0.10.0'}
dev: false
- /final-form-arrays/3.0.2:
- resolution: {integrity: sha512-TfO8aZNz3RrsZCDx8GHMQcyztDNpGxSSi9w4wpSNKlmv2PfFWVVM8P7Yj5tj4n0OWax+x5YwTLhT5BnqSlCi+w==}
+ /final-form-arrays/3.1.0:
+ resolution: {integrity: sha512-TWBvun+AopgBLw9zfTFHBllnKMVNEwCEyDawphPuBGGqNsuhGzhT7yewHys64KFFwzIs6KEteGLpKOwvTQEscQ==}
peerDependencies:
- final-form: ^4.18.2
+ final-form: ^4.20.8
dev: false
- /final-form/4.20.4:
- resolution: {integrity: sha512-hyoOVVilPLpkTvgi+FSJkFZrh0Yhy4BhE6lk/NiBwrF4aRV8/ykKEyXYvQH/pfUbRkOosvpESYouFb+FscsLrw==}
+ /final-form/4.20.10:
+ resolution: {integrity: sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==}
+ engines: {node: '>=8'}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
dev: false
- /finalhandler/1.1.2:
- resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
+ /finalhandler/1.2.0:
+ resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
dependencies:
debug: 2.6.9
encodeurl: 1.0.2
escape-html: 1.0.3
- on-finished: 2.3.0
+ on-finished: 2.4.1
parseurl: 1.3.3
- statuses: 1.5.0
+ statuses: 2.0.1
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
dev: true
- /finalhandler/1.1.2_supports-color@6.1.0:
- resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
+ /finalhandler/1.2.0_supports-color@6.1.0:
+ resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
dependencies:
debug: 2.6.9_supports-color@6.1.0
encodeurl: 1.0.2
escape-html: 1.0.3
- on-finished: 2.3.0
+ on-finished: 2.4.1
parseurl: 1.3.3
- statuses: 1.5.0
+ statuses: 2.0.1
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
/find-cache-dir/0.1.1:
- resolution: {integrity: sha1-yN765XyKUqinhPnjHFfHQumToLk=}
+ resolution: {integrity: sha512-Z9XSBoNE7xQiV6MSgPuCfyMokH2K7JdpRkOYE1+mu3d4BFJtx3GW+f6Bo4q8IX6rlf5MYbLBKW0pjl2cWdkm2A==}
engines: {node: '>=0.10.0'}
dependencies:
commondir: 1.0.1
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
pkg-dir: 1.0.0
dev: false
@@ -21120,7 +22282,7 @@ packages:
resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
/find-up/1.1.2:
- resolution: {integrity: sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=}
+ resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==}
engines: {node: '>=0.10.0'}
dependencies:
path-exists: 2.1.0
@@ -21161,11 +22323,12 @@ packages:
rimraf: 2.6.3
write: 1.0.3
- /flat-cache/3.0.4:
- resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
+ /flat-cache/3.2.0:
+ resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flatted: 3.2.4
+ flatted: 3.3.1
+ keyv: 4.5.4
rimraf: 3.0.2
/flat/5.0.2:
@@ -21180,8 +22343,8 @@ packages:
/flatted/2.0.2:
resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==}
- /flatted/3.2.4:
- resolution: {integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==}
+ /flatted/3.3.1:
+ resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
/flatten/1.0.3:
resolution: {integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==}
@@ -21191,7 +22354,7 @@ packages:
resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==}
dependencies:
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
/flux-standard-action/2.1.2:
resolution: {integrity: sha512-7vdgawlphCjzaMLdpZv8hlGC/FJCXu6sqE3Wuqe3HLZ22KcDiO4IFplxLDePDhEt6hgCrugt45RoUObuzZP6Kg==}
@@ -21204,10 +22367,18 @@ packages:
resolution: {integrity: sha512-YtHxjX7a0IC0ZACL5wsX8QdncXofWpGPNoVMuI/nZUrPGp6LmNI6+D5j0pPj+v8Kw5EpweA+T5yImK0rnWf7oQ==}
engines: {node: '>=10'}
dependencies:
- tslib: 2.3.1
+ tslib: 2.6.3
+ dev: false
+
+ /focus-lock/1.3.5:
+ resolution: {integrity: sha512-QFaHbhv9WPUeLYBDe/PAuLKJ4Dd9OPvKs9xZBr3yLXnUrDNaVXKu2baDBXe3naPY30hgHYSsf2JW4jzas2mDEQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ tslib: 2.6.3
+ dev: true
- /follow-redirects/1.14.5:
- resolution: {integrity: sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==}
+ /follow-redirects/1.15.6:
+ resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -21215,8 +22386,8 @@ packages:
debug:
optional: true
- /follow-redirects/1.14.5_debug@4.3.2:
- resolution: {integrity: sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==}
+ /follow-redirects/1.15.6_debug@4.3.4:
+ resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -21224,9 +22395,20 @@ packages:
debug:
optional: true
dependencies:
- debug: 4.3.2_supports-color@6.1.0
+ debug: 4.3.4
dev: true
+ /follow-redirects/1.15.6_debug@4.3.5:
+ resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ dependencies:
+ debug: 4.3.5_supports-color@6.1.0
+
/follow-redirects/1.5.10:
resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==}
engines: {node: '>=4.0'}
@@ -21237,17 +22419,17 @@ packages:
dev: false
/font-awesome/4.7.0:
- resolution: {integrity: sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM=}
+ resolution: {integrity: sha512-U6kGnykA/6bFmg1M/oT9EkFeIYv7JlX3bozwQJWiiLz6L0w3F5vBVPxHlwyX/vtNq1ckcpRKOB9f2Qal/VtFpg==}
engines: {node: '>=0.10.3'}
dev: false
/for-each/0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
dependencies:
- is-callable: 1.2.4
+ is-callable: 1.2.7
/for-in/0.1.8:
- resolution: {integrity: sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=}
+ resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==}
engines: {node: '>=0.10.0'}
/for-in/1.0.2:
@@ -21255,7 +22437,7 @@ packages:
engines: {node: '>=0.10.0'}
/for-own/0.1.5:
- resolution: {integrity: sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=}
+ resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==}
engines: {node: '>=0.10.0'}
dependencies:
for-in: 1.0.2
@@ -21265,13 +22447,13 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
cross-spawn: 7.0.3
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
dev: true
/forever-agent/0.6.1:
- resolution: {integrity: sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=}
+ resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
- /fork-ts-checker-webpack-plugin/1.5.0_webpack@4.46.0:
+ /fork-ts-checker-webpack-plugin/1.5.0_webpack@4.42.0:
resolution: {integrity: sha512-zEhg7Hz+KhZlBhILYpXy+Beu96gwvkROWJiTXOCyOOMMrdBIRPvsBpBqgTI4jfJGrJXcqGwJR8zsBGDmzY0jsA==}
engines: {node: '>=6.11.5', yarn: '>=1.0.0'}
peerDependencies:
@@ -21289,10 +22471,10 @@ packages:
chalk: 2.4.2
chokidar: 2.1.8
micromatch: 3.1.10
- minimatch: 3.0.4
- semver: 5.7.1
+ minimatch: 3.1.2
+ semver: 5.7.2
tapable: 1.1.3
- webpack: 4.46.0
+ webpack: 4.42.0
worker-rpc: 0.1.1
transitivePeerDependencies:
- supports-color
@@ -21314,11 +22496,11 @@ packages:
dependencies:
babel-code-frame: 6.26.0
chalk: 2.4.2
- chokidar: 3.5.2
+ chokidar: 3.6.0
eslint: 6.8.0
micromatch: 3.1.10
- minimatch: 3.0.4
- semver: 5.7.1
+ minimatch: 3.1.2
+ semver: 5.7.2
tapable: 1.1.3
typescript: 3.9.10
webpack: 4.42.0
@@ -21327,7 +22509,7 @@ packages:
- supports-color
dev: false
- /fork-ts-checker-webpack-plugin/4.1.6_dcjss5q5ylmpylxyjqs364hobq:
+ /fork-ts-checker-webpack-plugin/4.1.6_73mvphemx5yrjoz5ocxp4i3m2y:
resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==}
engines: {node: '>=6.11.5', yarn: '>=1.0.0'}
peerDependencies:
@@ -21341,14 +22523,14 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.24.7
chalk: 2.4.2
eslint: 7.32.0
micromatch: 3.1.10
- minimatch: 3.0.4
- semver: 5.7.1
+ minimatch: 3.1.2
+ semver: 5.7.2
tapable: 1.1.3
- typescript: 4.6.2
+ typescript: 4.9.5
webpack: 4.44.2
worker-rpc: 0.1.1
transitivePeerDependencies:
@@ -21360,7 +22542,7 @@ packages:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
- mime-types: 2.1.34
+ mime-types: 2.1.35
/form-data/3.0.1:
resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
@@ -21368,14 +22550,23 @@ packages:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
- mime-types: 2.1.34
+ mime-types: 2.1.35
+
+ /form-data/4.0.0:
+ resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ engines: {node: '>= 6'}
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ mime-types: 2.1.35
+ dev: true
/format-number/3.0.0:
resolution: {integrity: sha512-RWcbtINcRZ2DWCo4EcJgOJUYIwtsY5LKlTtL5OX1vfGsxEEK5mKaGxZC0p4Mgy63vXR12rut3lnjwCQ8YIlRMw==}
dev: false
/format/0.2.2:
- resolution: {integrity: sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=}
+ resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
engines: {node: '>=0.4.x'}
dev: true
@@ -21383,8 +22574,8 @@ packages:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
- /fraction.js/4.1.3:
- resolution: {integrity: sha512-pUHWWt6vHzZZiQJcM6S/0PXfS+g6FM4BF5rj9wZyreivhQPdsh5PpE25VtSNxq80wHS5RfY51Ii+8Z0Zl/pmzg==}
+ /fraction.js/4.3.7:
+ resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
dev: true
/fragment-cache/0.2.1:
@@ -21403,7 +22594,7 @@ packages:
hey-listen: 1.0.8
popmotion: 9.3.6
style-value-types: 4.1.4
- tslib: 2.3.1
+ tslib: 2.6.3
optionalDependencies:
'@emotion/is-prop-valid': 0.8.8
dev: false
@@ -21420,7 +22611,7 @@ packages:
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
style-value-types: 4.1.4
- tslib: 2.3.1
+ tslib: 2.6.3
optionalDependencies:
'@emotion/is-prop-valid': 0.8.8
dev: false
@@ -21428,41 +22619,40 @@ packages:
/framesync/5.3.0:
resolution: {integrity: sha512-oc5m68HDO/tuK2blj7ZcdEBRx3p1PjrgHazL8GYEpvULhrtGIFbQArN6cQS2QhW8mitffaB+VYzMjDqBxxQeoA==}
dependencies:
- tslib: 2.3.1
+ tslib: 2.6.3
dev: false
/fresh/0.5.2:
- resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=}
+ resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
/from/0.1.7:
- resolution: {integrity: sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=}
+ resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==}
dev: true
/from2/2.3.0:
resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
dependencies:
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
/fromentries/1.3.2:
resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==}
dev: true
- /fs-extra/0.30.0:
- resolution: {integrity: sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=}
+ /fs-extra/10.1.0:
+ resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
+ engines: {node: '>=12'}
dependencies:
- graceful-fs: 4.2.9
- jsonfile: 2.4.0
- klaw: 1.3.1
- path-is-absolute: 1.0.1
- rimraf: 2.7.1
+ graceful-fs: 4.2.11
+ jsonfile: 6.1.0
+ universalify: 2.0.1
dev: true
/fs-extra/4.0.3:
resolution: {integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jsonfile: 4.0.0
universalify: 0.1.2
dev: false
@@ -21471,7 +22661,7 @@ packages:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jsonfile: 4.0.0
universalify: 0.1.2
@@ -21479,7 +22669,7 @@ packages:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jsonfile: 4.0.0
universalify: 0.1.2
@@ -21488,15 +22678,15 @@ packages:
engines: {node: '>=10'}
dependencies:
at-least-node: 1.0.0
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
/fs-minipass/2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.1.5
+ minipass: 3.3.6
/fs-readdir-recursive/1.1.0:
resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==}
@@ -21504,11 +22694,12 @@ packages:
/fs-write-stream-atomic/1.0.10:
resolution: {integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==}
+ deprecated: This package is no longer supported.
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
iferr: 0.1.5
imurmurhash: 0.1.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
/fs.realpath/1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
@@ -21517,11 +22708,11 @@ packages:
resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==}
engines: {node: '>= 4.0'}
os: [darwin]
- deprecated: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
+ deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2
requiresBuild: true
dependencies:
bindings: 1.5.0
- nan: 2.15.0
+ nan: 2.19.0
optional: true
/fsevents/2.1.2:
@@ -21533,8 +22724,8 @@ packages:
dev: false
optional: true
- /fsevents/2.3.2:
- resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
+ /fsevents/2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
@@ -21543,31 +22734,30 @@ packages:
/fstream/1.0.12:
resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==}
engines: {node: '>=0.6'}
+ deprecated: This package is no longer supported.
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
inherits: 2.0.4
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
rimraf: 2.7.1
- /function-bind/1.1.1:
- resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+ /function-bind/1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- /function.prototype.name/1.1.5:
- resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz}
+ /function.prototype.name/1.1.6:
+ resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
- functions-have-names: 1.2.2
- dev: true
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ functions-have-names: 1.2.3
/functional-red-black-tree/1.0.1:
resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
- /functions-have-names/1.2.2:
- resolution: {integrity: sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.2.tgz}
- dev: true
+ /functions-have-names/1.2.3:
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
/fuse.js/3.6.1:
resolution: {integrity: sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==}
@@ -21575,13 +22765,14 @@ packages:
dev: true
/gauge/2.7.4:
- resolution: {integrity: sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=}
+ resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==}
+ deprecated: This package is no longer supported.
dependencies:
aproba: 1.2.0
console-control-strings: 1.1.0
has-unicode: 2.0.1
object-assign: 4.1.1
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
string-width: 1.0.2
strip-ansi: 3.0.1
wide-align: 1.1.5
@@ -21590,10 +22781,10 @@ packages:
resolution: {integrity: sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==}
engines: {node: '>= 4.0.0'}
dependencies:
- globule: 1.3.3
+ globule: 1.3.4
/generic-names/1.0.3:
- resolution: {integrity: sha1-LXhqEhruUIh2eWk56OO/+DbCCRc=}
+ resolution: {integrity: sha512-b6OHfQuKasIKM9b6YPkX+KUj/TLBTx3B/1aT1T5F12FEuEqyFMdr59OMS53aoaSw8eVtapdqieX6lbg5opaOhA==}
dependencies:
loader-utils: 0.2.17
dev: true
@@ -21603,16 +22794,16 @@ packages:
engines: {node: '>=6.9.0'}
/geojson-equality/0.1.6:
- resolution: {integrity: sha1-oXE3TvBD5dR5eZWEC65GSOB1LXI=}
+ resolution: {integrity: sha512-TqG8YbqizP3EfwP5Uw4aLu6pKkg6JQK9uq/XZ1lXQntvTHD1BBKJWhNpJ2M0ax6TuWMP3oyx6Oq7FCIfznrgpQ==}
dependencies:
- deep-equal: 1.1.1
+ deep-equal: 1.1.2
dev: false
/geojson-rbush/2.1.0:
- resolution: {integrity: sha1-O9c745H8ELCuaT2bis6iquC4Oo0=}
+ resolution: {integrity: sha512-9HvLGhmAJBYkYYDdPlCrlfkKGwNW3PapiS0xPekdJLobkZE4rjtduKJXsO7+kUr97SsUlz4VtMcPuSIbjjJaQg==}
dependencies:
- '@turf/helpers': 6.5.0
- '@turf/meta': 6.5.0
+ '@turf/helpers': 5.1.5
+ '@turf/meta': 5.1.6
rbush: 3.0.1
dev: false
@@ -21625,22 +22816,25 @@ packages:
engines: {node: 6.* || 8.* || >= 10.*}
/get-closest/0.0.4:
- resolution: {integrity: sha1-JprHdtHmAiqg/Vht1wjop9Miaa8=}
+ resolution: {integrity: sha512-oMgZYUtnPMZB6XieXiUADpRIc5kfD+RPfpiYe9aIlEYGIcOx2mTGgKmUkctlLof/ANleypqOJRhQypbrh33DkA==}
dev: false
/get-document/1.0.0:
- resolution: {integrity: sha1-SCG85m8cJMsDMWAr5strEsTwHEs=}
+ resolution: {integrity: sha512-8E7H2Xxibav+/rQTTtm6gFlSQwDoAQg667yheA+vWQr/amxEuswChzGo4MIbOJJoR0SMpDyhbUqWp3FpIfwD9A==}
dev: false
- /get-func-name/2.0.0:
- resolution: {integrity: sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=}
+ /get-func-name/2.0.2:
+ resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
- /get-intrinsic/1.1.1:
- resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==}
+ /get-intrinsic/1.2.4:
+ resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
+ engines: {node: '>= 0.4'}
dependencies:
- function-bind: 1.1.1
- has: 1.0.3
- has-symbols: 1.0.2
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ hasown: 2.0.2
/get-nonce/1.0.1:
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
@@ -21655,7 +22849,7 @@ packages:
engines: {node: '>=8.0.0'}
/get-stdin/4.0.1:
- resolution: {integrity: sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=}
+ resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==}
engines: {node: '>=0.10.0'}
/get-stdin/6.0.0:
@@ -21664,7 +22858,7 @@ packages:
dev: true
/get-stream/3.0.0:
- resolution: {integrity: sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz}
+ resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
engines: {node: '>=4'}
dev: false
@@ -21685,12 +22879,13 @@ packages:
engines: {node: '>=10'}
dev: true
- /get-symbol-description/1.0.0:
- resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
+ /get-symbol-description/1.0.2:
+ resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.1.1
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
/get-value/2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
@@ -21705,16 +22900,16 @@ packages:
/getos/3.2.1:
resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==}
dependencies:
- async: 3.2.3
+ async: 3.2.5
dev: true
/getpass/0.1.7:
- resolution: {integrity: sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=}
+ resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
dependencies:
assert-plus: 1.0.0
/glob-base/0.3.0:
- resolution: {integrity: sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=}
+ resolution: {integrity: sha512-ab1S1g1EbO7YzauaJLkgLp7DZVAqj9M/dvKlTt8DkXA2tiOIcSMrlVI2J1RZyB5iJVccEscjGn+kpOG9788MHA==}
engines: {node: '>=0.10.0'}
dependencies:
glob-parent: 2.0.0
@@ -21722,7 +22917,7 @@ packages:
dev: true
/glob-parent/2.0.0:
- resolution: {integrity: sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=}
+ resolution: {integrity: sha512-JDYOvfxio/t42HKdxkAYaCiBN7oYiuxykOxKxdaUW5Qn0zaYN3gRQWolrwdnf0shM9/EP0ebuuTmyoXNr1cC5w==}
dependencies:
is-glob: 2.0.1
dev: true
@@ -21740,10 +22935,15 @@ packages:
is-glob: 4.0.3
/glob-to-regexp/0.3.0:
- resolution: {integrity: sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=}
+ resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==}
+
+ /glob-to-regexp/0.4.1:
+ resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
+ dev: true
/glob/7.1.6:
resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
+ deprecated: Glob versions prior to v9 are no longer supported
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
@@ -21755,26 +22955,28 @@ packages:
/glob/7.1.7:
resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
+ deprecated: Glob versions prior to v9 are no longer supported
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 3.0.4
+ minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
- /glob/7.2.0:
- resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
+ /glob/7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ deprecated: Glob versions prior to v9 are no longer supported
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 3.0.4
+ minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
- /global-dirs/3.0.0:
- resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==}
+ /global-dirs/3.0.1:
+ resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
engines: {node: '>=10'}
dependencies:
ini: 2.0.0
@@ -21811,8 +23013,8 @@ packages:
dependencies:
type-fest: 0.8.1
- /globals/13.12.0:
- resolution: {integrity: sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==}
+ /globals/13.24.0:
+ resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
@@ -21822,25 +23024,39 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /globalthis/1.0.2:
- resolution: {integrity: sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==}
+ /globalthis/1.0.4:
+ resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
dependencies:
- define-properties: 1.1.3
- dev: true
+ define-properties: 1.2.1
+ gopd: 1.0.1
/globalyzer/0.1.0:
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
dev: true
+ /globby/10.0.2:
+ resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@types/glob': 7.2.0
+ array-union: 2.1.0
+ dir-glob: 3.0.1
+ fast-glob: 3.3.2
+ glob: 7.2.3
+ ignore: 5.3.1
+ merge2: 1.4.1
+ slash: 3.0.0
+ dev: true
+
/globby/11.0.1:
resolution: {integrity: sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==}
engines: {node: '>=10'}
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.2.11
- ignore: 5.2.0
+ fast-glob: 3.3.2
+ ignore: 5.3.1
merge2: 1.4.1
slash: 3.0.0
@@ -21850,8 +23066,8 @@ packages:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.2.11
- ignore: 5.2.0
+ fast-glob: 3.3.2
+ ignore: 5.3.1
merge2: 1.4.1
slash: 3.0.0
@@ -21860,7 +23076,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
array-union: 1.0.2
- glob: 7.2.0
+ glob: 7.2.3
object-assign: 4.1.1
pify: 2.3.0
pinkie-promise: 2.0.1
@@ -21872,7 +23088,7 @@ packages:
array-union: 1.0.2
dir-glob: 2.0.0
fast-glob: 2.2.7
- glob: 7.2.0
+ glob: 7.2.3
ignore: 3.3.10
pify: 3.0.0
slash: 1.0.0
@@ -21883,21 +23099,26 @@ packages:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
dev: true
- /globule/1.3.3:
- resolution: {integrity: sha512-mb1aYtDbIjTu4ShMB85m3UzjX9BVKe9WCzsnfMSZk+K5GpIbBOexgg4PPCt5eHDEG5/ZQAUX2Kct02zfiPLsKg==}
+ /globule/1.3.4:
+ resolution: {integrity: sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==}
engines: {node: '>= 0.10'}
dependencies:
glob: 7.1.7
lodash: 4.17.21
- minimatch: 3.0.4
+ minimatch: 3.0.8
/good-listener/1.2.2:
- resolution: {integrity: sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=}
+ resolution: {integrity: sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==}
dependencies:
delegate: 3.2.0
dev: true
optional: true
+ /gopd/1.0.1:
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ dependencies:
+ get-intrinsic: 1.2.4
+
/got/9.6.0:
resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==}
engines: {node: '>=8.6'}
@@ -21905,10 +23126,10 @@ packages:
'@sindresorhus/is': 0.14.0
'@szmarczak/http-timer': 1.1.2
'@types/keyv': 3.1.4
- '@types/responselike': 1.0.0
+ '@types/responselike': 1.0.3
cacheable-request: 6.1.0
decompress-response: 3.3.0
- duplexer3: 0.1.4
+ duplexer3: 0.1.5
get-stream: 4.1.0
lowercase-keys: 1.0.1
mimic-response: 1.0.1
@@ -21917,37 +23138,33 @@ packages:
url-parse-lax: 3.0.0
dev: true
- /graceful-fs/4.2.8:
- resolution: {integrity: sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==}
- dev: true
-
- /graceful-fs/4.2.9:
- resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==}
+ /graceful-fs/4.2.11:
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- /graphql-request/4.1.0:
- resolution: {integrity: sha512-CBFcO6LP7cg+aBMc+x9C1dZEQsKTBZKR2J+HzuB0cR/6aaU4K4/tRXTQu8CDMp5195ZU+DTNKZZOSK1WRbTeAg==}
+ /graphql-request/4.3.0:
+ resolution: {integrity: sha512-2v6hQViJvSsifK606AliqiNiijb1uwWp6Re7o0RTyH+uRTv/u7Uqm2g4Fjq/LgZIzARB38RZEvVBFOQOVdlBow==}
peerDependencies:
graphql: 14 - 16
dependencies:
- cross-fetch: 3.1.5
+ cross-fetch: 3.1.8
extract-files: 9.0.0
form-data: 3.0.1
transitivePeerDependencies:
- encoding
dev: false
- /graphql-tag/2.12.6_graphql@15.7.2:
+ /graphql-tag/2.12.6_graphql@15.8.0:
resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==}
engines: {node: '>=10'}
peerDependencies:
graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- graphql: 15.7.2
- tslib: 2.3.1
+ graphql: 15.8.0
+ tslib: 2.6.3
dev: false
- /graphql/15.7.2:
- resolution: {integrity: sha512-AnnKk7hFQFmU/2I9YSQf3xw44ctnSFCfp3zE0N6W174gqe9fWG/2rKaKxROK7CcI3XtERpjEKFqts8o319Kf7A==}
+ /graphql/15.8.0:
+ resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==}
engines: {node: '>= 10.x'}
dev: false
@@ -21981,7 +23198,7 @@ packages:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
/har-schema/2.0.0:
- resolution: {integrity: sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=}
+ resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==}
engines: {node: '>=4'}
/har-validator/5.1.5:
@@ -21996,13 +23213,13 @@ packages:
resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==}
/has-ansi/2.0.0:
- resolution: {integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=}
+ resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
engines: {node: '>=0.10.0'}
dependencies:
ansi-regex: 2.1.1
- /has-bigints/1.0.1:
- resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==}
+ /has-bigints/1.0.2:
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
/has-flag/3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
@@ -22012,18 +23229,27 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- /has-symbols/1.0.2:
- resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==}
+ /has-property-descriptors/1.0.2:
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
+ dependencies:
+ es-define-property: 1.0.0
+
+ /has-proto/1.0.3:
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
engines: {node: '>= 0.4'}
- /has-tostringtag/1.0.0:
- resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
+ /has-symbols/1.0.3:
+ resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ engines: {node: '>= 0.4'}
+
+ /has-tostringtag/1.0.2:
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
dependencies:
- has-symbols: 1.0.2
+ has-symbols: 1.0.3
/has-unicode/2.0.1:
- resolution: {integrity: sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=}
+ resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
/has-value/0.3.1:
resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
@@ -22057,18 +23283,23 @@ packages:
engines: {node: '>=8'}
dev: true
- /has/1.0.3:
- resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
+ /has/1.0.4:
+ resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==}
engines: {node: '>= 0.4.0'}
+
+ /hash-base/3.0.4:
+ resolution: {integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==}
+ engines: {node: '>=4'}
dependencies:
- function-bind: 1.1.1
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
/hash-base/3.1.0:
resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
engines: {node: '>=4'}
dependencies:
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
safe-buffer: 5.2.1
/hash.js/1.1.7:
@@ -22085,6 +23316,12 @@ packages:
type-fest: 0.8.1
dev: true
+ /hasown/2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ function-bind: 1.1.2
+
/hast-util-parse-selector/2.2.5:
resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==}
dev: true
@@ -22102,6 +23339,10 @@ packages:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
+ /help-me/5.0.0:
+ resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==}
+ dev: true
+
/hex-color-regex/1.1.0:
resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==}
@@ -22123,16 +23364,16 @@ packages:
/history/4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
loose-envify: 1.4.0
resolve-pathname: 3.0.0
- tiny-invariant: 1.2.0
+ tiny-invariant: 1.3.3
tiny-warning: 1.0.3
value-equal: 1.0.1
dev: false
/hmac-drbg/1.0.1:
- resolution: {integrity: sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=}
+ resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
dependencies:
hash.js: 1.1.7
minimalistic-assert: 1.0.1
@@ -22148,7 +23389,7 @@ packages:
react-is: 16.13.1
/home-or-tmp/2.0.0:
- resolution: {integrity: sha1-42w/LSyufXRqhX440Y1fMqeILbg=}
+ resolution: {integrity: sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg==}
engines: {node: '>=0.10.0'}
dependencies:
os-homedir: 1.0.2
@@ -22167,7 +23408,7 @@ packages:
dependencies:
inherits: 2.0.4
obuf: 1.1.2
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
wbuf: 1.7.3
/hsl-regex/1.0.0:
@@ -22177,10 +23418,10 @@ packages:
resolution: {integrity: sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==}
/html-element-map/1.3.1:
- resolution: {integrity: sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.3.1.tgz}
+ resolution: {integrity: sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==}
dependencies:
- array.prototype.filter: 1.0.1
- call-bind: 1.0.2
+ array.prototype.filter: 1.0.4
+ call-bind: 1.0.7
dev: true
/html-encoding-sniffer/1.0.2:
@@ -22197,8 +23438,8 @@ packages:
/html-entities/1.4.0:
resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==}
- /html-entities/2.3.2:
- resolution: {integrity: sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==}
+ /html-entities/2.5.2:
+ resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
dev: true
/html-escaper/2.0.2:
@@ -22215,7 +23456,7 @@ packages:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 4.8.0
+ terser: 4.8.1
/html-parse-stringify/3.0.1:
resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==}
@@ -22231,7 +23472,7 @@ packages:
webpack: ^4.0.0
dependencies:
html-minifier-terser: 5.1.1
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
lodash: 4.17.21
pretty-error: 2.1.2
tapable: 1.1.3
@@ -22246,44 +23487,53 @@ packages:
webpack: ^4.0.0 || ^5.0.0
dependencies:
'@types/html-minifier-terser': 5.1.2
- '@types/tapable': 1.0.8
- '@types/webpack': 4.41.32
+ '@types/tapable': 1.0.12
+ '@types/webpack': 4.41.38
html-minifier-terser: 5.1.1
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
lodash: 4.17.21
pretty-error: 2.1.2
tapable: 1.1.3
util.promisify: 1.0.0
webpack: 4.44.2
- /html-webpack-plugin/4.5.2_webpack@4.46.0:
+ /html-webpack-plugin/4.5.2_webpack@4.42.0:
resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==}
engines: {node: '>=6.9'}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
'@types/html-minifier-terser': 5.1.2
- '@types/tapable': 1.0.8
- '@types/webpack': 4.41.32
+ '@types/tapable': 1.0.12
+ '@types/webpack': 4.41.38
html-minifier-terser: 5.1.1
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
lodash: 4.17.21
pretty-error: 2.1.2
tapable: 1.1.3
util.promisify: 1.0.0
- webpack: 4.46.0
+ webpack: 4.42.0
dev: true
/htmlparser2/6.1.0:
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
dependencies:
- domelementtype: 2.2.0
- domhandler: 4.2.2
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
domutils: 2.8.0
entities: 2.2.0
- /http-cache-semantics/4.1.0:
- resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==}
+ /htmlparser2/8.0.2:
+ resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ domutils: 3.1.0
+ entities: 4.5.0
+ dev: true
+
+ /http-cache-semantics/4.1.1:
+ resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
dev: true
/http-deceiver/1.2.7:
@@ -22298,28 +23548,18 @@ packages:
setprototypeof: 1.1.0
statuses: 1.5.0
- /http-errors/1.7.2:
- resolution: {integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==}
- engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.3
- setprototypeof: 1.1.1
- statuses: 1.5.0
- toidentifier: 1.0.0
-
- /http-errors/1.7.3:
- resolution: {integrity: sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==}
- engines: {node: '>= 0.6'}
+ /http-errors/2.0.0:
+ resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+ engines: {node: '>= 0.8'}
dependencies:
- depd: 1.1.2
+ depd: 2.0.0
inherits: 2.0.4
- setprototypeof: 1.1.1
- statuses: 1.5.0
- toidentifier: 1.0.0
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ toidentifier: 1.0.1
- /http-parser-js/0.5.3:
- resolution: {integrity: sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==}
+ /http-parser-js/0.5.8:
+ resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
/http-proxy-agent/4.0.1:
resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
@@ -22327,15 +23567,15 @@ packages:
dependencies:
'@tootallnate/once': 1.1.2
agent-base: 6.0.2
- debug: 4.3.2
+ debug: 4.3.5
transitivePeerDependencies:
- supports-color
- /http-proxy-middleware/0.19.1_xwktanctkdp2ue56r3exixdqpa:
+ /http-proxy-middleware/0.19.1_cvgmqmby27wuzeql4gbeflp6nq:
resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==}
engines: {node: '>=4.0.0'}
dependencies:
- http-proxy: 1.18.1_debug@4.3.2
+ http-proxy: 1.18.1_debug@4.3.5
is-glob: 4.0.3
lodash: 4.17.21
micromatch: 3.1.10_supports-color@6.1.0
@@ -22343,23 +23583,23 @@ packages:
- debug
- supports-color
- /http-proxy/1.18.1_debug@4.3.2:
+ /http-proxy/1.18.1_debug@4.3.5:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.14.5
+ follow-redirects: 1.15.6_debug@4.3.5
requires-port: 1.0.0
transitivePeerDependencies:
- debug
/http-signature/1.2.0:
- resolution: {integrity: sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=}
+ resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==}
engines: {node: '>=0.8', npm: '>=1.3.7'}
dependencies:
assert-plus: 1.0.0
- jsprim: 1.4.1
- sshpk: 1.16.1
+ jsprim: 1.4.2
+ sshpk: 1.18.0
/http-signature/1.3.6:
resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==}
@@ -22367,18 +23607,18 @@ packages:
dependencies:
assert-plus: 1.0.0
jsprim: 2.0.2
- sshpk: 1.16.1
+ sshpk: 1.18.0
dev: true
/https-browserify/1.0.0:
resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==}
- /https-proxy-agent/5.0.0:
- resolution: {integrity: sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==}
+ /https-proxy-agent/5.0.1:
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
dependencies:
agent-base: 6.0.2
- debug: 4.3.2
+ debug: 4.3.5
transitivePeerDependencies:
- supports-color
@@ -22391,42 +23631,44 @@ packages:
engines: {node: '>=10.17.0'}
dev: true
- /humanize-duration/3.27.0:
- resolution: {integrity: sha512-qLo/08cNc3Tb0uD7jK0jAcU5cnqCM0n568918E7R2XhMr/+7F37p4EY062W/stg7tmzvknNn9b/1+UhVRzsYrQ==}
+ /humanize-duration/3.32.1:
+ resolution: {integrity: sha512-inh5wue5XdfObhu/IGEMiA1nUXigSGcaKNemcbLRKa7jXYGDZXr3LoT9pTIzq2hPEbld7w/qv9h+ikWGz8fL1g==}
dev: true
/i18next-browser-languagedetector/5.0.1:
resolution: {integrity: sha512-7K4A6DJ2rNz3Yd835Y493UgkzUxgpGsCeIMKLGkt6Ps0cbgSaJ+LdATFNFA+ujp2brmsUM9BeDThXKhabXUbUw==}
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
dev: false
- /i18next-fs-backend/1.1.4:
- resolution: {integrity: sha512-/MfAGMP0jHonV966uFf9PkWWuDjPYLIcsipnSO3NxpNtAgRUKLTwvm85fEmsF6hGeu0zbZiCQ3W74jwO6K9uXA==}
+ /i18next-fs-backend/1.2.0:
+ resolution: {integrity: sha512-pUx3AcgXCbur0jpFA7U67Z2RJflAcIi698Y8VL+phdOqUchahxriV3Cs+M6UkPNQSS/zPEzWLfdJ8EgjB7HVxg==}
dev: false
- /i18next-http-backend/1.3.1:
- resolution: {integrity: sha512-o79n4GBBRpl20hByC+ne/S1UaSZ4iGAn59Hu2TEZGjN0WLB72L7WrM39Cshziyrssp6MQfdI8wjToU2Q6kpSvA==}
+ /i18next-http-backend/1.4.5:
+ resolution: {integrity: sha512-tLuHWuLWl6CmS07o+UB6EcQCaUjrZ1yhdseIN7sfq0u7phsMePJ8pqlGhIAdRDPF/q7ooyo5MID5DRFBCH+x5w==}
dependencies:
- cross-fetch: 3.1.4
+ cross-fetch: 3.1.5
+ transitivePeerDependencies:
+ - encoding
dev: false
- /i18next-icu/2.0.3:
- resolution: {integrity: sha512-sZ0VCWDnHysUYQL8j/0rVOxv6rLR+SBoaqQQ2UVNfLyJCuf/bAjYPkoUQgyuDkWFo1xZjeCf4G6GBNr7gD61bQ==}
+ /i18next-icu/2.3.0:
+ resolution: {integrity: sha512-x+j7kd5nDJCfbU53uwsMfXD7ALPu5uv0bqjAMQ5nVvXRoj1L7gkmswKtM3XDWYo4YUHf1jznlhSdPyy0xEwU+Q==}
peerDependencies:
- intl-messageformat: ^9.0.0
+ intl-messageformat: ^10.3.3
dev: false
/i18next/19.9.2:
resolution: {integrity: sha512-0i6cuo6ER6usEOtKajUUDj92zlG+KArFia0857xxiEHAQcUwh/RtOQocui1LPJwunSYT574Pk64aNva1kwtxZg==}
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
dev: false
/i18next/20.6.1:
resolution: {integrity: sha512-yCMYTMEJ9ihCwEQQ3phLo7I/Pwycf8uAx+sRHwwk5U9Aui/IZYgQRyMqXafQOw5QQ7DM1Z+WyEXWIqSuJHhG2A==}
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
dev: false
/iconv-lite/0.4.24:
@@ -22440,10 +23682,9 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
- dev: false
/icss-utils/3.0.1:
- resolution: {integrity: sha1-7nDTroysOMa+XtkehRsn7tNDrQ8=}
+ resolution: {integrity: sha512-ANhVLoEfe0KoC9+z4yiTaXOneB49K6JIXdS+yAgH0NERELpdIT7kkj2XxUPuHafeHnn8umXnECSpsfk1RTaUew==}
dependencies:
postcss: 6.0.23
dev: true
@@ -22454,29 +23695,33 @@ packages:
dependencies:
postcss: 7.0.39
- /icss-utils/5.1.0_postcss@8.4.5:
+ /icss-utils/5.1.0_postcss@8.4.38:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.5
+ postcss: 8.4.38
dev: true
/identity-obj-proxy/3.0.0:
- resolution: {integrity: sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=}
+ resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==}
engines: {node: '>=4'}
dependencies:
harmony-reflect: 1.6.2
/ieee754/1.1.13:
resolution: {integrity: sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==}
+ dev: false
+
+ /ieee754/1.2.1:
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
/iferr/0.1.5:
resolution: {integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==}
- /ignore-by-default/2.0.0:
- resolution: {integrity: sha512-+mQSgMRiFD3L3AOxLYOCxjIq4OnAmo5CIuC+lj5ehCJcPtV++QacEV7FdpzvYxH6DaOySWzQU6RR0lPLy37ckA==}
+ /ignore-by-default/2.1.0:
+ resolution: {integrity: sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==}
engines: {node: '>=10 <11 || >=12 <13 || >=14'}
dev: true
@@ -22487,8 +23732,8 @@ packages:
resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
engines: {node: '>= 4'}
- /ignore/5.2.0:
- resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==}
+ /ignore/5.3.1:
+ resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
engines: {node: '>= 4'}
/image-size/0.5.5:
@@ -22506,16 +23751,16 @@ packages:
resolution: {integrity: sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==}
/immutable/3.7.6:
- resolution: {integrity: sha1-E7TTyxK++hVIKib+Gy665kAHHks=}
+ resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==}
engines: {node: '>=0.8.0'}
/immutable/3.8.2:
- resolution: {integrity: sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=}
+ resolution: {integrity: sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==}
engines: {node: '>=0.10.0'}
dev: false
- /immutable/4.0.0:
- resolution: {integrity: sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==}
+ /immutable/4.3.6:
+ resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==}
/import-cwd/2.1.0:
resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==}
@@ -22544,7 +23789,7 @@ packages:
resolve-from: 3.0.0
/import-lazy/2.1.0:
- resolution: {integrity: sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=}
+ resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==}
engines: {node: '>=4'}
dev: true
@@ -22573,7 +23818,7 @@ packages:
hasBin: true
/indent-string/2.1.0:
- resolution: {integrity: sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=}
+ resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==}
engines: {node: '>=0.10.0'}
dependencies:
repeating: 2.0.1
@@ -22590,12 +23835,14 @@ packages:
/inflight/1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
+ deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
dependencies:
once: 1.4.0
wrappy: 1.0.2
/inherits/2.0.1:
resolution: {integrity: sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==}
+ dev: false
/inherits/2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
@@ -22674,16 +23921,17 @@ packages:
default-gateway: 4.2.0
ipaddr.js: 1.9.1
- /internal-slot/1.0.3:
- resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==}
+ /internal-slot/1.0.7:
+ resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.1.1
- has: 1.0.3
- side-channel: 1.0.4
+ es-errors: 1.3.0
+ hasown: 2.0.2
+ side-channel: 1.0.6
- /internmap/1.0.1:
- resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==}
+ /internmap/2.0.3:
+ resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
+ engines: {node: '>=12'}
dev: false
/interpret/1.4.0:
@@ -22701,23 +23949,23 @@ packages:
dev: false
/intl-messageformat-parser/1.4.0:
- resolution: {integrity: sha1-tD1FqXRoytvkQzHXS7Ho3qRPwHU=}
+ resolution: {integrity: sha512-/XkqFHKezO6UcF4Av2/Lzfrez18R0jyw7kRFhSeB/YRakdrgSc9QfFZUwNJI9swMwMoNPygK1ArC5wdFSjPw+A==}
deprecated: We've written a new parser that's 6x faster and is backwards compatible. Please use @formatjs/icu-messageformat-parser
dev: false
/intl-messageformat/2.2.0:
- resolution: {integrity: sha1-NFvNRt5jC3aDMwwuUhd/9eq0hPw=}
+ resolution: {integrity: sha512-I+tSvHnXqJYjDfNmY95tpFMj30yoakC6OXAo+wu/wTMy6tA/4Fd4mvV7Uzs4cqK/Ap29sHhwjcY+78a8eifcXw==}
dependencies:
intl-messageformat-parser: 1.4.0
dev: false
- /intl-messageformat/9.11.2:
- resolution: {integrity: sha512-4wsinP2ObVK1Rz5C4121lgVeHeOCW32FOsqcVXtJNdlow+NypJKmnrije9rOc0bKxPwtto9IkXdgakXUmYXVHw==}
+ /intl-messageformat/9.13.0:
+ resolution: {integrity: sha512-7sGC7QnSQGa5LZP7bXLDhVDtQOeKGeBFGHF2Y8LVBwYZoQZCgWeKoPGTa5GMG8g/TzDgeXuYJQis7Ggiw2xTOw==}
dependencies:
- '@formatjs/ecma402-abstract': 1.11.1
+ '@formatjs/ecma402-abstract': 1.11.4
'@formatjs/fast-memoize': 1.2.1
- '@formatjs/icu-messageformat-parser': 2.0.16
- tslib: 2.3.1
+ '@formatjs/icu-messageformat-parser': 2.1.0
+ tslib: 2.6.3
/intl-relativeformat/2.2.0:
resolution: {integrity: sha512-4bV/7kSKaPEmu6ArxXf9xjv1ny74Zkwuey8Pm01NH4zggPP7JHwg2STk8Y3JdspCKRDriwIyLRfEXnj2ZLr4Bw==}
@@ -22740,15 +23988,15 @@ packages:
resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==}
engines: {node: '>=4'}
- /ip/1.1.5:
- resolution: {integrity: sha512-rBtCAQAJm8A110nbwn6YdveUnuZH3WrC36IwkRXxDnq53JvXA2NVQvB7IHyKomxK1MJ4VDNw3UtFDdXQ+AvLYA==}
+ /ip/1.1.9:
+ resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==}
/ipaddr.js/1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- /irregular-plurals/3.3.0:
- resolution: {integrity: sha512-MVBLKUTangM3EfRPFROhmWQQKRDsrgI83J8GS3jXy+OwYqiR2/aoWndYQ5416jLE3uaGgLH7ncme3X9y09gZ3g==}
+ /irregular-plurals/3.5.0:
+ resolution: {integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==}
engines: {node: '>=8'}
dev: true
@@ -22760,17 +24008,11 @@ packages:
resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==}
engines: {node: '>=8'}
- /is-accessor-descriptor/0.1.6:
- resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- kind-of: 3.2.2
-
- /is-accessor-descriptor/1.0.0:
- resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==}
- engines: {node: '>=0.10.0'}
+ /is-accessor-descriptor/1.0.1:
+ resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==}
+ engines: {node: '>= 0.10'}
dependencies:
- kind-of: 6.0.3
+ hasown: 2.0.2
/is-alphabetical/1.0.4:
resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
@@ -22787,8 +24029,15 @@ packages:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
+
+ /is-array-buffer/3.0.4:
+ resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
/is-arrayish/0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
@@ -22796,10 +24045,16 @@ packages:
/is-arrayish/0.3.2:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+ /is-async-function/2.0.0:
+ resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.2
+
/is-bigint/1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
- has-bigints: 1.0.1
+ has-bigints: 1.0.2
/is-binary-path/1.0.1:
resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==}
@@ -22811,18 +24066,14 @@ packages:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
dependencies:
- binary-extensions: 2.2.0
-
- /is-blob/2.1.0:
- resolution: {integrity: sha512-SZ/fTft5eUhQM6oF/ZaASFDEdbFVe89Imltn9uZr03wdKMcWNVYSMjQPFtg05QuNkt5l5c135ElvXEQG0rk4tw==}
- engines: {node: '>=6'}
+ binary-extensions: 2.3.0
/is-boolean-object/1.1.2:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
/is-buffer/1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
@@ -22831,8 +24082,8 @@ packages:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
- /is-callable/1.2.4:
- resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==}
+ /is-callable/1.2.7:
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
/is-ci/2.0.0:
@@ -22845,7 +24096,7 @@ packages:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
dependencies:
- ci-info: 3.3.0
+ ci-info: 3.9.0
dev: true
/is-color-stop/1.1.0:
@@ -22858,48 +24109,46 @@ packages:
rgb-regex: 1.0.1
rgba-regex: 1.0.0
- /is-core-module/2.8.0:
- resolution: {integrity: sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==}
+ /is-core-module/2.13.1:
+ resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
dependencies:
- has: 1.0.3
+ hasown: 2.0.2
- /is-data-descriptor/0.1.4:
- resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==}
- engines: {node: '>=0.10.0'}
+ /is-data-descriptor/1.0.1:
+ resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==}
+ engines: {node: '>= 0.4'}
dependencies:
- kind-of: 3.2.2
+ hasown: 2.0.2
- /is-data-descriptor/1.0.0:
- resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==}
- engines: {node: '>=0.10.0'}
+ /is-data-view/1.0.1:
+ resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
+ engines: {node: '>= 0.4'}
dependencies:
- kind-of: 6.0.3
+ is-typed-array: 1.1.13
/is-date-object/1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
/is-decimal/1.0.4:
resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
dev: true
- /is-descriptor/0.1.6:
- resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==}
- engines: {node: '>=0.10.0'}
+ /is-descriptor/0.1.7:
+ resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==}
+ engines: {node: '>= 0.4'}
dependencies:
- is-accessor-descriptor: 0.1.6
- is-data-descriptor: 0.1.4
- kind-of: 5.1.0
+ is-accessor-descriptor: 1.0.1
+ is-data-descriptor: 1.0.1
- /is-descriptor/1.0.2:
- resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==}
- engines: {node: '>=0.10.0'}
+ /is-descriptor/1.0.3:
+ resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==}
+ engines: {node: '>= 0.4'}
dependencies:
- is-accessor-descriptor: 1.0.0
- is-data-descriptor: 1.0.0
- kind-of: 6.0.3
+ is-accessor-descriptor: 1.0.1
+ is-data-descriptor: 1.0.1
/is-directory/0.3.1:
resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
@@ -22918,13 +24167,13 @@ packages:
dev: true
/is-dotfile/1.0.3:
- resolution: {integrity: sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=}
+ resolution: {integrity: sha512-9YclgOGtN/f8zx0Pr4FQYMdibBiTaH3sn52vjYip4ZSf6C4/6RfTEZ+MR4GvKhCxdPh21Bg42/WL55f6KSnKpg==}
engines: {node: '>=0.10.0'}
dev: true
optional: true
/is-equal-shallow/0.1.3:
- resolution: {integrity: sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=}
+ resolution: {integrity: sha512-0EygVC5qPvIyb+gSz7zdD5/AAoS6Qrx1e//6N4yv4oNm30kqvdmG66oZFWVlQHUWe5OjP08FuTw2IdT0EOTcYA==}
engines: {node: '>=0.10.0'}
dependencies:
is-primitive: 2.0.0
@@ -22946,7 +24195,7 @@ packages:
is-plain-object: 2.0.4
/is-extglob/1.0.0:
- resolution: {integrity: sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=}
+ resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==}
engines: {node: '>=0.10.0'}
dev: true
@@ -22954,12 +24203,17 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
+ /is-finalizationregistry/1.0.2:
+ resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
+ dependencies:
+ call-bind: 1.0.7
+
/is-finite/1.1.0:
resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==}
engines: {node: '>=0.10.0'}
/is-fullwidth-code-point/1.0.0:
- resolution: {integrity: sha1-754xOG8DGn8NZDr4L95QxFfvAMs=}
+ resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==}
engines: {node: '>=0.10.0'}
dependencies:
number-is-nan: 1.0.1
@@ -22980,8 +24234,14 @@ packages:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
+ /is-generator-function/1.0.10:
+ resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.2
+
/is-glob/2.0.1:
- resolution: {integrity: sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=}
+ resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 1.0.0
@@ -23008,14 +24268,14 @@ packages:
dev: false
/is-in-browser/1.1.3:
- resolution: {integrity: sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=}
+ resolution: {integrity: sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==}
dev: false
/is-installed-globally/0.4.0:
resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
engines: {node: '>=10'}
dependencies:
- global-dirs: 3.0.0
+ global-dirs: 3.0.1
is-path-inside: 3.0.3
dev: true
@@ -23024,19 +24284,19 @@ packages:
engines: {node: '>=8'}
dev: true
- /is-map/2.0.2:
- resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
- dev: true
+ /is-map/2.0.3:
+ resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
+ engines: {node: '>= 0.4'}
/is-module/1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
- /is-negative-zero/2.0.1:
- resolution: {integrity: sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==}
+ /is-negative-zero/2.0.3:
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
engines: {node: '>= 0.4'}
/is-node/1.0.2:
- resolution: {integrity: sha1-19ACdF733ru3R36YiVarCk/MtlM=}
+ resolution: {integrity: sha512-U37UdVWHNH1wDFmlSauKRDL1nhaCVRIH1FoaZN94eGJvU832sjMHEO/4AITAkOT0aRD7oA1Fovn7PeNCHiqz0w==}
engines: {node: '>= 0.10'}
dev: false
@@ -23045,14 +24305,14 @@ packages:
engines: {node: '>=10'}
dev: true
- /is-number-object/1.0.6:
- resolution: {integrity: sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==}
+ /is-number-object/1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
/is-number/2.1.0:
- resolution: {integrity: sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=}
+ resolution: {integrity: sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
@@ -23134,7 +24394,7 @@ packages:
dev: true
/is-posix-bracket/0.1.1:
- resolution: {integrity: sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=}
+ resolution: {integrity: sha512-Yu68oeXJ7LeWNmZ3Zov/xg/oDBnBK2RNxwYY1ilNJX+tKKZqgPK+qOn/Gs9jEu66KDY9Netf5XLKNGzas/vPfQ==}
engines: {node: '>=0.10.0'}
dev: true
optional: true
@@ -23143,7 +24403,7 @@ packages:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
/is-primitive/2.0.0:
- resolution: {integrity: sha1-IHurkWOEmcB7Kt8kCkGochADRXU=}
+ resolution: {integrity: sha512-N3w1tFaRfk3UrPfqeRyD+GYDASU3W5VinKhlORy8EWVf/sIdDL9GAcew85XmktCfH+ngG7SRXEVDoO18WMdB/Q==}
engines: {node: '>=0.10.0'}
dev: true
optional: true
@@ -23159,15 +24419,15 @@ packages:
/is-reference/1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
dependencies:
- '@types/estree': 0.0.50
+ '@types/estree': 1.0.5
dev: true
/is-regex/1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
/is-regexp/1.0.0:
resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
@@ -23180,12 +24440,15 @@ packages:
resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==}
engines: {node: '>=6'}
- /is-set/2.0.2:
- resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
- dev: true
+ /is-set/2.0.3:
+ resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
+ engines: {node: '>= 0.4'}
- /is-shared-array-buffer/1.0.1:
- resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==}
+ /is-shared-array-buffer/1.0.3:
+ resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
/is-stream/1.1.0:
resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
@@ -23199,17 +24462,23 @@ packages:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
/is-subset/0.1.1:
- resolution: {integrity: sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz}
+ resolution: {integrity: sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==}
dev: true
/is-symbol/1.0.4:
resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
dependencies:
- has-symbols: 1.0.2
+ has-symbols: 1.0.3
+
+ /is-typed-array/1.1.13:
+ resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ which-typed-array: 1.1.15
/is-typedarray/1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
@@ -23220,18 +24489,29 @@ packages:
dev: true
/is-utf8/0.2.1:
- resolution: {integrity: sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=}
+ resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==}
+
+ /is-weakmap/2.0.2:
+ resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
+ engines: {node: '>= 0.4'}
+
+ /is-weakref/1.0.2:
+ resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ dependencies:
+ call-bind: 1.0.7
- /is-weakref/1.0.1:
- resolution: {integrity: sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==}
+ /is-weakset/2.0.3:
+ resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
/is-what/3.14.1:
resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
/is-window/1.0.2:
- resolution: {integrity: sha1-LIlspT25feRdPDMTOmXYyfVjSA0=}
+ resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==}
/is-windows/1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
@@ -23252,7 +24532,7 @@ packages:
dev: true
/isarray/0.0.1:
- resolution: {integrity: sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=}
+ resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
dev: false
/isarray/1.0.0:
@@ -23260,7 +24540,6 @@ packages:
/isarray/2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
- dev: true
/isexe/2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
@@ -23281,25 +24560,25 @@ packages:
dev: true
/isomorphic-base64/1.0.2:
- resolution: {integrity: sha1-9Caq6CVpuopOxcpzrSGkSrHueAM=}
+ resolution: {integrity: sha512-pQFyLwShVPA1Qr0dE1ZPguJkbOsFGDfSq6Wzz6XaO33v74X6/iQjgYPozwkeKGQxOI1/H3Fz7+ROtnV1veyKEg==}
dev: false
/isomorphic-fetch/2.2.1:
- resolution: {integrity: sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=}
+ resolution: {integrity: sha512-9c4TNAKYXM5PRyVcwUZrF3W09nQ+sO7+jydgs4ZGW9dhsLG2VOlISJABombdQqQRXCwuYG3sYV/puGf5rp0qmA==}
dependencies:
node-fetch: 1.7.3
- whatwg-fetch: 3.6.2
+ whatwg-fetch: 3.6.20
dev: false
/isstream/0.1.2:
- resolution: {integrity: sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=}
+ resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
/istanbul-lib-coverage/2.0.5:
resolution: {integrity: sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==}
engines: {node: '>=6'}
- /istanbul-lib-coverage/3.2.0:
- resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==}
+ /istanbul-lib-coverage/3.2.2:
+ resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
/istanbul-lib-hook/3.0.0:
@@ -23313,13 +24592,13 @@ packages:
resolution: {integrity: sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==}
engines: {node: '>=6'}
dependencies:
- '@babel/generator': 7.16.8
- '@babel/parser': 7.16.8
- '@babel/template': 7.16.7
- '@babel/traverse': 7.16.8
- '@babel/types': 7.17.0
+ '@babel/generator': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
istanbul-lib-coverage: 2.0.5
- semver: 6.3.0
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -23327,36 +24606,35 @@ packages:
resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.24.7
'@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.0
- semver: 6.3.0
+ istanbul-lib-coverage: 3.2.2
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /istanbul-lib-instrument/5.1.0:
- resolution: {integrity: sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==}
+ /istanbul-lib-instrument/5.2.1:
+ resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.17.5
- '@babel/parser': 7.17.3
+ '@babel/core': 7.13.15
+ '@babel/parser': 7.24.7
'@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.0
- semver: 6.3.0
+ istanbul-lib-coverage: 3.2.2
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /istanbul-lib-processinfo/2.0.2:
- resolution: {integrity: sha512-kOwpa7z9hme+IBPZMzQ5vdQj8srYgAtaRqeI48NGmAQ+/5yKiHLV0QbYqQpxsdEF0+w14SoB8YbnHKcXE2KnYw==}
+ /istanbul-lib-processinfo/2.0.3:
+ resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==}
engines: {node: '>=8'}
dependencies:
archy: 1.0.0
cross-spawn: 7.0.3
- istanbul-lib-coverage: 3.2.0
- make-dir: 3.1.0
+ istanbul-lib-coverage: 3.2.2
p-map: 3.0.0
rimraf: 3.0.2
- uuid: 3.4.0
+ uuid: 8.3.2
dev: true
/istanbul-lib-report/2.0.8:
@@ -23367,19 +24645,19 @@ packages:
make-dir: 2.1.0
supports-color: 6.1.0
- /istanbul-lib-report/3.0.0:
- resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==}
- engines: {node: '>=8'}
+ /istanbul-lib-report/3.0.1:
+ resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
+ engines: {node: '>=10'}
dependencies:
- istanbul-lib-coverage: 3.2.0
- make-dir: 3.1.0
+ istanbul-lib-coverage: 3.2.2
+ make-dir: 4.0.0
supports-color: 7.2.0
/istanbul-lib-source-maps/3.0.6:
resolution: {integrity: sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==}
engines: {node: '>=6'}
dependencies:
- debug: 4.3.2
+ debug: 4.3.5
istanbul-lib-coverage: 2.0.5
make-dir: 2.1.0
rimraf: 2.7.1
@@ -23391,8 +24669,8 @@ packages:
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
engines: {node: '>=10'}
dependencies:
- debug: 4.3.4
- istanbul-lib-coverage: 3.2.0
+ debug: 4.3.5
+ istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
- supports-color
@@ -23403,20 +24681,12 @@ packages:
dependencies:
html-escaper: 2.0.2
- /istanbul-reports/3.0.5:
- resolution: {integrity: sha512-5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ==}
- engines: {node: '>=8'}
- dependencies:
- html-escaper: 2.0.2
- istanbul-lib-report: 3.0.0
- dev: true
-
- /istanbul-reports/3.1.4:
- resolution: {integrity: sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==}
+ /istanbul-reports/3.1.7:
+ resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
engines: {node: '>=8'}
dependencies:
html-escaper: 2.0.2
- istanbul-lib-report: 3.0.0
+ istanbul-lib-report: 3.0.1
/iterall/1.3.0:
resolution: {integrity: sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==}
@@ -23429,10 +24699,23 @@ packages:
/iterate-value/1.0.2:
resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==}
dependencies:
- es-get-iterator: 1.1.2
+ es-get-iterator: 1.1.3
iterate-iterator: 1.0.2
dev: true
+ /iterator.prototype/1.1.2:
+ resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
+ dependencies:
+ define-properties: 1.2.1
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
+ reflect.getprototypeof: 1.0.6
+ set-function-name: 2.0.2
+
+ /javascript-stringify/1.6.0:
+ resolution: {integrity: sha512-fnjC0up+0SjEJtgmmG+teeel68kutkvzfctO/KxE3qJlbunkJYAshgH3boU++gSBHP8z5/r0ts0qRIrHf0RTQQ==}
+ dev: true
+
/jest-changed-files/24.9.0:
resolution: {integrity: sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==}
engines: {node: '>= 6'}
@@ -23455,19 +24738,19 @@ packages:
dependencies:
'@jest/types': 27.5.1
execa: 5.1.1
- throat: 6.0.1
+ throat: 6.0.2
dev: true
/jest-circus/26.6.0:
resolution: {integrity: sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/traverse': 7.17.3
+ '@babel/traverse': 7.24.7
'@jest/environment': 26.6.2
'@jest/test-result': 26.6.2
'@jest/types': 26.6.2
- '@types/babel__traverse': 7.14.2
- '@types/node': 17.0.18
+ '@types/babel__traverse': 7.20.6
+ '@types/node': 17.0.45
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -23481,7 +24764,7 @@ packages:
jest-snapshot: 26.6.2
jest-util: 26.6.2
pretty-format: 26.6.2
- stack-utils: 2.0.5
+ stack-utils: 2.0.6
throat: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -23497,7 +24780,7 @@ packages:
'@jest/environment': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -23511,8 +24794,8 @@ packages:
jest-util: 27.5.1
pretty-format: 27.5.1
slash: 3.0.0
- stack-utils: 2.0.5
- throat: 6.0.1
+ stack-utils: 2.0.6
+ throat: 6.0.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -23550,13 +24833,13 @@ packages:
'@jest/types': 26.6.2
chalk: 4.1.2
exit: 0.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
import-local: 3.1.0
is-ci: 2.0.0
jest-config: 26.6.3
jest-util: 26.6.2
jest-validate: 26.6.2
- prompts: 2.4.2
+ prompts: 2.4.0
yargs: 15.4.1
transitivePeerDependencies:
- bufferutil
@@ -23580,7 +24863,7 @@ packages:
'@jest/types': 27.5.1
chalk: 4.1.2
exit: 0.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
import-local: 3.1.0
jest-config: 27.5.1
jest-util: 27.5.1
@@ -23595,7 +24878,7 @@ packages:
- utf-8-validate
dev: true
- /jest-cli/27.5.1_ts-node@10.5.0:
+ /jest-cli/27.5.1_ts-node@10.9.2:
resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
hasBin: true
@@ -23605,14 +24888,14 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 27.5.1_ts-node@10.5.0
+ '@jest/core': 27.5.1_ts-node@10.9.2
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
chalk: 4.1.2
exit: 0.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
import-local: 3.1.0
- jest-config: 27.5.1_ts-node@10.5.0
+ jest-config: 27.5.1_ts-node@10.9.2
jest-util: 27.5.1
jest-validate: 27.5.1
prompts: 2.4.2
@@ -23629,12 +24912,12 @@ packages:
resolution: {integrity: sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==}
engines: {node: '>= 6'}
dependencies:
- '@babel/core': 7.16.0
+ '@babel/core': 7.24.7
'@jest/test-sequencer': 24.9.0
'@jest/types': 24.9.0
- babel-jest: 24.9.0_@babel+core@7.16.0
+ babel-jest: 24.9.0_@babel+core@7.24.7
chalk: 2.4.2
- glob: 7.2.0
+ glob: 7.2.3
jest-environment-jsdom: 24.9.0
jest-environment-node: 24.9.0
jest-get-type: 24.9.0
@@ -23660,14 +24943,14 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.13.15
'@jest/test-sequencer': 26.6.3
'@jest/types': 26.6.2
- babel-jest: 26.6.3_@babel+core@7.17.5
+ babel-jest: 26.6.3_@babel+core@7.13.15
chalk: 4.1.2
- deepmerge: 4.2.2
- glob: 7.2.0
- graceful-fs: 4.2.9
+ deepmerge: 4.3.1
+ glob: 7.2.3
+ graceful-fs: 4.2.11
jest-environment-jsdom: 26.6.2
jest-environment-node: 26.6.2
jest-get-type: 26.3.0
@@ -23676,7 +24959,7 @@ packages:
jest-resolve: 26.6.2
jest-util: 26.6.2
jest-validate: 26.6.2
- micromatch: 4.0.4
+ micromatch: 4.0.7
pretty-format: 26.6.2
transitivePeerDependencies:
- bufferutil
@@ -23693,15 +24976,15 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.13.15
'@jest/test-sequencer': 27.5.1
'@jest/types': 27.5.1
- babel-jest: 27.5.1_@babel+core@7.17.5
+ babel-jest: 27.5.1_@babel+core@7.13.15
chalk: 4.1.2
- ci-info: 3.3.0
- deepmerge: 4.2.2
- glob: 7.2.0
- graceful-fs: 4.2.9
+ ci-info: 3.9.0
+ deepmerge: 4.3.1
+ glob: 7.2.3
+ graceful-fs: 4.2.11
jest-circus: 27.5.1
jest-environment-jsdom: 27.5.1
jest-environment-node: 27.5.1
@@ -23712,7 +24995,7 @@ packages:
jest-runner: 27.5.1
jest-util: 27.5.1
jest-validate: 27.5.1
- micromatch: 4.0.4
+ micromatch: 4.0.7
parse-json: 5.2.0
pretty-format: 27.5.1
slash: 3.0.0
@@ -23724,7 +25007,7 @@ packages:
- utf-8-validate
dev: true
- /jest-config/27.5.1_ts-node@10.5.0:
+ /jest-config/27.5.1_ts-node@10.9.2:
resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
@@ -23733,15 +25016,15 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.13.15
'@jest/test-sequencer': 27.5.1
'@jest/types': 27.5.1
- babel-jest: 27.5.1_@babel+core@7.17.5
+ babel-jest: 27.5.1_@babel+core@7.13.15
chalk: 4.1.2
- ci-info: 3.3.0
- deepmerge: 4.2.2
- glob: 7.2.0
- graceful-fs: 4.2.9
+ ci-info: 3.9.0
+ deepmerge: 4.3.1
+ glob: 7.2.3
+ graceful-fs: 4.2.11
jest-circus: 27.5.1
jest-environment-jsdom: 27.5.1
jest-environment-node: 27.5.1
@@ -23752,12 +25035,12 @@ packages:
jest-runner: 27.5.1
jest-util: 27.5.1
jest-validate: 27.5.1
- micromatch: 4.0.4
+ micromatch: 4.0.7
parse-json: 5.2.0
pretty-format: 27.5.1
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.5.0_@types+node@17.0.18
+ ts-node: 10.9.2_@types+node@17.0.45
transitivePeerDependencies:
- bufferutil
- canvas
@@ -23784,7 +25067,7 @@ packages:
pretty-format: 26.6.2
/jest-diff/27.5.1:
- resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.5.1.tgz}
+ resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
chalk: 4.1.2
@@ -23897,7 +25180,7 @@ packages:
'@jest/environment': 26.6.2
'@jest/fake-timers': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
jest-mock: 26.6.2
jest-util: 26.6.2
jsdom: 16.7.0
@@ -23914,7 +25197,7 @@ packages:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
jest-mock: 27.5.1
jest-util: 27.5.1
jsdom: 16.7.0
@@ -23944,7 +25227,7 @@ packages:
'@jest/environment': 26.6.2
'@jest/fake-timers': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
jest-mock: 26.6.2
jest-util: 26.6.2
@@ -23955,7 +25238,7 @@ packages:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
jest-mock: 27.5.1
jest-util: 27.5.1
dev: true
@@ -23979,8 +25262,8 @@ packages:
dependencies:
'@jest/types': 24.9.0
anymatch: 2.0.0
- fb-watchman: 2.0.1
- graceful-fs: 4.2.9
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
invariant: 2.2.4
jest-serializer: 24.9.0
jest-util: 24.9.0
@@ -23998,20 +25281,20 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/types': 26.6.2
- '@types/graceful-fs': 4.1.5
- '@types/node': 17.0.18
- anymatch: 3.1.2
- fb-watchman: 2.0.1
- graceful-fs: 4.2.9
+ '@types/graceful-fs': 4.1.9
+ '@types/node': 17.0.45
+ anymatch: 3.1.3
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
jest-regex-util: 26.0.0
jest-serializer: 26.6.2
jest-util: 26.6.2
jest-worker: 26.6.2
- micromatch: 4.0.4
+ micromatch: 4.0.7
sane: 4.1.0
walker: 1.0.8
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
transitivePeerDependencies:
- supports-color
@@ -24020,26 +25303,26 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/graceful-fs': 4.1.5
- '@types/node': 17.0.18
- anymatch: 3.1.2
- fb-watchman: 2.0.1
- graceful-fs: 4.2.9
+ '@types/graceful-fs': 4.1.9
+ '@types/node': 17.0.45
+ anymatch: 3.1.3
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
jest-regex-util: 27.5.1
jest-serializer: 27.5.1
jest-util: 27.5.1
jest-worker: 27.5.1
- micromatch: 4.0.4
+ micromatch: 4.0.7
walker: 1.0.8
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
dev: true
/jest-jasmine2/24.9.0:
resolution: {integrity: sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==}
engines: {node: '>= 6'}
dependencies:
- '@babel/traverse': 7.16.8
+ '@babel/traverse': 7.24.7
'@jest/environment': 24.9.0
'@jest/test-result': 24.9.0
'@jest/types': 24.9.0
@@ -24062,12 +25345,12 @@ packages:
resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/traverse': 7.17.3
+ '@babel/traverse': 7.24.7
'@jest/environment': 26.6.2
'@jest/source-map': 26.6.2
'@jest/test-result': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
chalk: 4.1.2
co: 4.6.0
expect: 26.6.2
@@ -24095,7 +25378,7 @@ packages:
'@jest/source-map': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
chalk: 4.1.2
co: 4.6.0
expect: 27.5.1
@@ -24107,7 +25390,7 @@ packages:
jest-snapshot: 27.5.1
jest-util: 27.5.1
pretty-format: 27.5.1
- throat: 6.0.1
+ throat: 6.0.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -24166,7 +25449,7 @@ packages:
resolution: {integrity: sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==}
engines: {node: '>= 6'}
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.24.7
'@jest/test-result': 24.9.0
'@jest/types': 24.9.0
'@types/stack-utils': 1.0.1
@@ -24181,12 +25464,12 @@ packages:
resolution: {integrity: sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==}
engines: {node: '>= 8.3'}
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.24.7
'@jest/types': 25.5.0
'@types/stack-utils': 1.0.1
chalk: 3.0.0
- graceful-fs: 4.2.9
- micromatch: 4.0.4
+ graceful-fs: 4.2.11
+ micromatch: 4.0.7
slash: 3.0.0
stack-utils: 1.0.5
dev: false
@@ -24195,29 +25478,29 @@ packages:
resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.24.7
'@jest/types': 26.6.2
- '@types/stack-utils': 2.0.1
+ '@types/stack-utils': 2.0.3
chalk: 4.1.2
- graceful-fs: 4.2.9
- micromatch: 4.0.4
+ graceful-fs: 4.2.11
+ micromatch: 4.0.7
pretty-format: 26.6.2
slash: 3.0.0
- stack-utils: 2.0.5
+ stack-utils: 2.0.6
/jest-message-util/27.5.1:
resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.24.7
'@jest/types': 27.5.1
- '@types/stack-utils': 2.0.1
+ '@types/stack-utils': 2.0.3
chalk: 4.1.2
- graceful-fs: 4.2.9
- micromatch: 4.0.4
+ graceful-fs: 4.2.11
+ micromatch: 4.0.7
pretty-format: 27.5.1
slash: 3.0.0
- stack-utils: 2.0.5
+ stack-utils: 2.0.6
dev: true
/jest-mock/24.9.0:
@@ -24238,18 +25521,18 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/types': 26.6.2
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
/jest-mock/27.5.1:
resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
dev: true
- /jest-pnp-resolver/1.2.2_jest-resolve@24.9.0:
- resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==}
+ /jest-pnp-resolver/1.2.3_jest-resolve@24.9.0:
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
jest-resolve: '*'
@@ -24259,8 +25542,8 @@ packages:
dependencies:
jest-resolve: 24.9.0
- /jest-pnp-resolver/1.2.2_jest-resolve@26.6.0:
- resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==}
+ /jest-pnp-resolver/1.2.3_jest-resolve@26.6.0:
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
jest-resolve: '*'
@@ -24270,8 +25553,8 @@ packages:
dependencies:
jest-resolve: 26.6.0
- /jest-pnp-resolver/1.2.2_jest-resolve@26.6.2:
- resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==}
+ /jest-pnp-resolver/1.2.3_jest-resolve@26.6.2:
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
jest-resolve: '*'
@@ -24281,8 +25564,8 @@ packages:
dependencies:
jest-resolve: 26.6.2
- /jest-pnp-resolver/1.2.2_jest-resolve@27.5.1:
- resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==}
+ /jest-pnp-resolver/1.2.3_jest-resolve@27.5.1:
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
jest-resolve: '*'
@@ -24344,7 +25627,7 @@ packages:
'@jest/types': 24.9.0
browser-resolve: 1.11.3
chalk: 2.4.2
- jest-pnp-resolver: 1.2.2_jest-resolve@24.9.0
+ jest-pnp-resolver: 1.2.3_jest-resolve@24.9.0
realpath-native: 1.1.0
/jest-resolve/26.6.0:
@@ -24353,11 +25636,11 @@ packages:
dependencies:
'@jest/types': 26.6.2
chalk: 4.1.2
- graceful-fs: 4.2.9
- jest-pnp-resolver: 1.2.2_jest-resolve@26.6.0
+ graceful-fs: 4.2.11
+ jest-pnp-resolver: 1.2.3_jest-resolve@26.6.0
jest-util: 26.6.2
read-pkg-up: 7.0.1
- resolve: 1.20.0
+ resolve: 1.18.1
slash: 3.0.0
/jest-resolve/26.6.2:
@@ -24366,11 +25649,11 @@ packages:
dependencies:
'@jest/types': 26.6.2
chalk: 4.1.2
- graceful-fs: 4.2.9
- jest-pnp-resolver: 1.2.2_jest-resolve@26.6.2
+ graceful-fs: 4.2.11
+ jest-pnp-resolver: 1.2.3_jest-resolve@26.6.2
jest-util: 26.6.2
read-pkg-up: 7.0.1
- resolve: 1.20.0
+ resolve: 1.22.8
slash: 3.0.0
/jest-resolve/27.5.1:
@@ -24379,13 +25662,13 @@ packages:
dependencies:
'@jest/types': 27.5.1
chalk: 4.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-haste-map: 27.5.1
- jest-pnp-resolver: 1.2.2_jest-resolve@27.5.1
+ jest-pnp-resolver: 1.2.3_jest-resolve@27.5.1
jest-util: 27.5.1
jest-validate: 27.5.1
- resolve: 1.20.0
- resolve.exports: 1.1.0
+ resolve: 1.22.8
+ resolve.exports: 1.1.1
slash: 3.0.0
dev: true
@@ -24399,7 +25682,7 @@ packages:
'@jest/types': 24.9.0
chalk: 2.4.2
exit: 0.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-config: 24.9.0
jest-docblock: 24.9.0
jest-haste-map: 24.9.0
@@ -24410,7 +25693,7 @@ packages:
jest-runtime: 24.9.0
jest-util: 24.9.0
jest-worker: 24.9.0
- source-map-support: 0.5.20
+ source-map-support: 0.5.21
throat: 4.1.0
transitivePeerDependencies:
- bufferutil
@@ -24425,11 +25708,11 @@ packages:
'@jest/environment': 26.6.2
'@jest/test-result': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
chalk: 4.1.2
emittery: 0.7.2
exit: 0.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-config: 26.6.3
jest-docblock: 26.0.0
jest-haste-map: 26.6.2
@@ -24439,7 +25722,7 @@ packages:
jest-runtime: 26.6.3
jest-util: 26.6.2
jest-worker: 26.6.2
- source-map-support: 0.5.20
+ source-map-support: 0.5.21
throat: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -24457,10 +25740,10 @@ packages:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
chalk: 4.1.2
emittery: 0.8.1
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-docblock: 27.5.1
jest-environment-jsdom: 27.5.1
jest-environment-node: 27.5.1
@@ -24471,8 +25754,8 @@ packages:
jest-runtime: 27.5.1
jest-util: 27.5.1
jest-worker: 27.5.1
- source-map-support: 0.5.20
- throat: 6.0.1
+ source-map-support: 0.5.21
+ throat: 6.0.2
transitivePeerDependencies:
- bufferutil
- canvas
@@ -24493,8 +25776,8 @@ packages:
'@types/yargs': 13.0.12
chalk: 2.4.2
exit: 0.1.2
- glob: 7.2.0
- graceful-fs: 4.2.9
+ glob: 7.2.3
+ graceful-fs: 4.2.11
jest-config: 24.9.0
jest-haste-map: 24.9.0
jest-message-util: 24.9.0
@@ -24526,13 +25809,13 @@ packages:
'@jest/test-result': 26.6.2
'@jest/transform': 26.6.2
'@jest/types': 26.6.2
- '@types/yargs': 15.0.14
+ '@types/yargs': 15.0.19
chalk: 4.1.2
cjs-module-lexer: 0.6.0
- collect-v8-coverage: 1.0.1
+ collect-v8-coverage: 1.0.2
exit: 0.1.2
- glob: 7.2.0
- graceful-fs: 4.2.9
+ glob: 7.2.3
+ graceful-fs: 4.2.11
jest-config: 26.6.3
jest-haste-map: 26.6.2
jest-message-util: 26.6.2
@@ -24564,11 +25847,11 @@ packages:
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
chalk: 4.1.2
- cjs-module-lexer: 1.2.2
- collect-v8-coverage: 1.0.1
+ cjs-module-lexer: 1.3.1
+ collect-v8-coverage: 1.0.2
execa: 5.1.1
- glob: 7.2.0
- graceful-fs: 4.2.9
+ glob: 7.2.3
+ graceful-fs: 4.2.11
jest-haste-map: 27.5.1
jest-message-util: 27.5.1
jest-mock: 27.5.1
@@ -24590,22 +25873,22 @@ packages:
resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@types/node': 17.0.18
- graceful-fs: 4.2.9
+ '@types/node': 17.0.45
+ graceful-fs: 4.2.11
/jest-serializer/27.5.1:
resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@types/node': 17.0.18
- graceful-fs: 4.2.9
+ '@types/node': 17.0.45
+ graceful-fs: 4.2.11
dev: true
/jest-snapshot/24.9.0:
resolution: {integrity: sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==}
engines: {node: '>= 6'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.24.7
'@jest/types': 24.9.0
chalk: 2.4.2
expect: 24.9.0
@@ -24614,10 +25897,10 @@ packages:
jest-matcher-utils: 24.9.0
jest-message-util: 24.9.0
jest-resolve: 24.9.0
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
natural-compare: 1.4.0
pretty-format: 24.9.0
- semver: 6.3.0
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -24625,13 +25908,13 @@ packages:
resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.24.7
'@jest/types': 26.6.2
- '@types/babel__traverse': 7.14.2
- '@types/prettier': 2.4.2
+ '@types/babel__traverse': 7.20.6
+ '@types/prettier': 2.7.3
chalk: 4.1.2
expect: 26.6.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-diff: 26.6.2
jest-get-type: 26.3.0
jest-haste-map: 26.6.2
@@ -24640,7 +25923,7 @@ packages:
jest-resolve: 26.6.2
natural-compare: 1.4.0
pretty-format: 26.6.2
- semver: 7.3.5
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
@@ -24648,19 +25931,19 @@ packages:
resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@babel/core': 7.17.5
- '@babel/generator': 7.17.3
- '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.5
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/core': 7.13.15
+ '@babel/generator': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.24.7_@babel+core@7.13.15
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/babel__traverse': 7.14.2
- '@types/prettier': 2.4.2
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.5
+ '@types/babel__traverse': 7.20.6
+ '@types/prettier': 2.7.3
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.13.15
chalk: 4.1.2
expect: 27.5.1
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jest-diff: 27.5.1
jest-get-type: 27.5.1
jest-haste-map: 27.5.1
@@ -24669,7 +25952,7 @@ packages:
jest-util: 27.5.1
natural-compare: 1.4.0
pretty-format: 27.5.1
- semver: 7.3.5
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -24685,9 +25968,9 @@ packages:
'@jest/types': 24.9.0
callsites: 3.1.0
chalk: 2.4.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
is-ci: 2.0.0
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
slash: 2.0.0
source-map: 0.6.1
transitivePeerDependencies:
@@ -24699,7 +25982,7 @@ packages:
dependencies:
'@jest/types': 25.5.0
chalk: 3.0.0
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
is-ci: 2.0.0
make-dir: 3.1.0
dev: false
@@ -24709,22 +25992,22 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/types': 26.6.2
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
chalk: 4.1.2
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
is-ci: 2.0.0
- micromatch: 4.0.4
+ micromatch: 4.0.7
/jest-util/27.5.1:
resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
chalk: 4.1.2
- ci-info: 3.3.0
- graceful-fs: 4.2.9
- picomatch: 2.3.0
+ ci-info: 3.9.0
+ graceful-fs: 4.2.11
+ picomatch: 2.3.1
dev: true
/jest-validate/24.9.0:
@@ -24809,7 +26092,7 @@ packages:
dependencies:
'@jest/test-result': 26.6.2
'@jest/types': 26.6.2
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
ansi-escapes: 4.3.2
chalk: 4.1.2
jest-util: 26.6.2
@@ -24821,7 +26104,7 @@ packages:
dependencies:
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
ansi-escapes: 4.3.2
chalk: 4.1.2
jest-util: 27.5.1
@@ -24846,7 +26129,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
merge-stream: 2.0.0
supports-color: 7.2.0
@@ -24854,7 +26137,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 17.0.18
+ '@types/node': 17.0.45
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -24906,7 +26189,7 @@ packages:
- utf-8-validate
dev: true
- /jest/27.5.1_ts-node@10.5.0:
+ /jest/27.5.1_ts-node@10.9.2:
resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
hasBin: true
@@ -24916,9 +26199,9 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 27.5.1_ts-node@10.5.0
+ '@jest/core': 27.5.1_ts-node@10.9.2
import-local: 3.1.0
- jest-cli: 27.5.1_ts-node@10.5.0
+ jest-cli: 27.5.1_ts-node@10.9.2
transitivePeerDependencies:
- bufferutil
- canvas
@@ -24927,21 +26210,31 @@ packages:
- utf-8-validate
dev: true
- /jmespath/0.15.0:
- resolution: {integrity: sha1-o/Iiqarp+Wb10nx5ZRDigJF2Qhc=}
+ /jiti/1.21.6:
+ resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
+ hasBin: true
+ dev: true
+
+ /jmespath/0.16.0:
+ resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==}
engines: {node: '>= 0.6.0'}
dev: false
- /joi/17.6.0:
- resolution: {integrity: sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==}
+ /joi/17.13.1:
+ resolution: {integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==}
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
- '@sideway/address': 4.1.4
- '@sideway/formula': 3.0.0
+ '@sideway/address': 4.1.5
+ '@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
dev: true
+ /joycon/3.1.1:
+ resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
+ engines: {node: '>=10'}
+ dev: true
+
/jpjs/1.2.1:
resolution: {integrity: sha512-GxJWybWU4NV0RNKi6EIqk6IRPOTqd/h+U7sbtyuD7yUISUzV78LdHnq2xkevJsTlz/EImux4sWj+wfMiwKLkiw==}
dev: true
@@ -24949,18 +26242,18 @@ packages:
/js-base64/2.6.4:
resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==}
- /js-cookie/3.0.1:
- resolution: {integrity: sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==}
- engines: {node: '>=12'}
+ /js-cookie/3.0.5:
+ resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
+ engines: {node: '>=14'}
dev: false
/js-string-escape/1.0.1:
- resolution: {integrity: sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=}
+ resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==}
engines: {node: '>= 0.8'}
dev: true
/js-tokens/3.0.2:
- resolution: {integrity: sha1-mGbfOVECEw449/mWvOtlRDIJwls=}
+ resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==}
/js-tokens/4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -24979,16 +26272,23 @@ packages:
argparse: 2.0.1
dev: true
+ /js-yaml/4.1.0:
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
+ hasBin: true
+ dependencies:
+ argparse: 2.0.1
+ dev: true
+
/jsbn/0.1.1:
- resolution: {integrity: sha1-peZUwuWi3rXyAdls77yoDA7y9RM=}
+ resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
/jsdom/11.12.0:
resolution: {integrity: sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==}
dependencies:
- abab: 2.0.5
+ abab: 2.0.6
acorn: 5.7.4
acorn-globals: 4.3.4
- array-equal: 1.0.0
+ array-equal: 1.0.2
cssom: 0.3.8
cssstyle: 1.4.0
data-urls: 1.1.0
@@ -24996,12 +26296,12 @@ packages:
escodegen: 1.14.3
html-encoding-sniffer: 1.0.2
left-pad: 1.3.0
- nwsapi: 2.2.0
+ nwsapi: 2.2.10
parse5: 4.0.0
pn: 1.1.0
request: 2.88.2
request-promise-native: 1.0.9_request@2.88.2
- sax: 1.2.4
+ sax: 1.4.1
symbol-tree: 3.2.4
tough-cookie: 2.5.0
w3c-hr-time: 1.0.2
@@ -25019,17 +26319,17 @@ packages:
resolution: {integrity: sha512-O901mfJSuTdwU2w3Sn+74T+RnDVP+FuV5fH8tcPWyqrseRAb0s5xOtPgCFiPOtLcyK7CLIJwPyD83ZqQWvA5ng==}
engines: {node: '>=8'}
dependencies:
- abab: 2.0.5
+ abab: 2.0.6
acorn: 6.4.2
acorn-globals: 4.3.4
- array-equal: 1.0.0
+ array-equal: 1.0.2
cssom: 0.3.8
cssstyle: 1.4.0
data-urls: 1.1.0
domexception: 1.0.1
escodegen: 1.14.3
html-encoding-sniffer: 1.0.2
- nwsapi: 2.2.0
+ nwsapi: 2.2.10
parse5: 5.1.0
pn: 1.1.0
request: 2.88.2
@@ -25059,32 +26359,32 @@ packages:
canvas:
optional: true
dependencies:
- abab: 2.0.5
- acorn: 8.5.0
+ abab: 2.0.6
+ acorn: 8.11.3
acorn-globals: 6.0.0
cssom: 0.4.4
cssstyle: 2.3.0
data-urls: 2.0.0
- decimal.js: 10.3.1
+ decimal.js: 10.4.3
domexception: 2.0.1
- escodegen: 2.0.0
+ escodegen: 2.1.0
form-data: 3.0.1
html-encoding-sniffer: 2.0.1
http-proxy-agent: 4.0.1
- https-proxy-agent: 5.0.0
+ https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.0
+ nwsapi: 2.2.10
parse5: 6.0.1
saxes: 5.0.1
symbol-tree: 3.2.4
- tough-cookie: 4.0.0
+ tough-cookie: 4.1.4
w3c-hr-time: 1.0.2
w3c-xmlserializer: 2.0.0
webidl-conversions: 6.1.0
whatwg-encoding: 1.0.5
whatwg-mimetype: 2.3.0
whatwg-url: 8.7.0
- ws: 7.5.5
+ ws: 7.5.9
xml-name-validator: 3.0.0
transitivePeerDependencies:
- bufferutil
@@ -25096,7 +26396,7 @@ packages:
hasBin: true
/jsesc/1.3.0:
- resolution: {integrity: sha1-RsP+yMGJKxKwgz25vHYiF226s0s=}
+ resolution: {integrity: sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==}
hasBin: true
dev: true
@@ -25111,9 +26411,12 @@ packages:
dev: false
/json-buffer/3.0.0:
- resolution: {integrity: sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=}
+ resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==}
dev: true
+ /json-buffer/3.0.1:
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+
/json-parse-better-errors/1.0.2:
resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
@@ -25126,68 +26429,67 @@ packages:
/json-schema-traverse/1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- /json-schema/0.2.3:
- resolution: {integrity: sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=}
-
/json-schema/0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
- dev: true
/json-stable-stringify-without-jsonify/1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- /json-stable-stringify/1.0.1:
- resolution: {integrity: sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=}
+ /json-stable-stringify/1.1.1:
+ resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==}
+ engines: {node: '>= 0.4'}
dependencies:
- jsonify: 0.0.0
+ call-bind: 1.0.7
+ isarray: 2.0.5
+ jsonify: 0.0.1
+ object-keys: 1.1.1
dev: false
/json-stringify-safe/5.0.1:
- resolution: {integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=}
+ resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
/json3/3.3.3:
resolution: {integrity: sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==}
/json5/0.5.1:
- resolution: {integrity: sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=}
+ resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==}
hasBin: true
dev: true
- /json5/1.0.1:
- resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
+ /json5/1.0.2:
+ resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
dependencies:
- minimist: 1.2.6
+ minimist: 1.2.8
- /json5/2.2.0:
- resolution: {integrity: sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==}
+ /json5/2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
hasBin: true
- dependencies:
- minimist: 1.2.5
-
- /jsonfile/2.4.0:
- resolution: {integrity: sha1-NzaitCi4e72gzIO1P6PWM6NcKug=}
- optionalDependencies:
- graceful-fs: 4.2.9
- dev: true
/jsonfile/4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
/jsonfile/6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
- universalify: 2.0.0
+ universalify: 2.0.1
optionalDependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
- /jsonify/0.0.0:
- resolution: {integrity: sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=}
+ /jsonify/0.0.1:
+ resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==}
dev: false
+ /jsonpath/1.1.1:
+ resolution: {integrity: sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==}
+ dependencies:
+ esprima: 1.2.2
+ static-eval: 2.0.2
+ underscore: 1.12.1
+
/jsonwebtoken/8.5.1:
resolution: {integrity: sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==}
engines: {node: '>=4', npm: '>=1.4.28'}
@@ -25201,16 +26503,16 @@ packages:
lodash.isstring: 4.0.1
lodash.once: 4.1.1
ms: 2.1.3
- semver: 5.7.1
+ semver: 5.7.2
dev: false
- /jsprim/1.4.1:
- resolution: {integrity: sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=}
- engines: {'0': node >=0.6.0}
+ /jsprim/1.4.2:
+ resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==}
+ engines: {node: '>=0.6.0'}
dependencies:
assert-plus: 1.0.0
extsprintf: 1.3.0
- json-schema: 0.2.3
+ json-schema: 0.4.0
verror: 1.10.0
/jsprim/2.0.2:
@@ -25231,21 +26533,27 @@ packages:
resolution: {integrity: sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==}
engines: {node: '>=4.0'}
dependencies:
- array-includes: 3.1.4
- object.assign: 4.1.2
+ array-includes: 3.1.8
+ object.assign: 4.1.5
dev: false
- /jsx-ast-utils/3.2.1:
- resolution: {integrity: sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==}
+ /jsx-ast-utils/3.3.5:
+ resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
engines: {node: '>=4.0'}
dependencies:
- array-includes: 3.1.4
- object.assign: 4.1.2
+ array-includes: 3.1.8
+ array.prototype.flat: 1.3.2
+ object.assign: 4.1.5
+ object.values: 1.2.0
/just-extend/4.2.1:
resolution: {integrity: sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==}
dev: false
+ /just-extend/6.2.0:
+ resolution: {integrity: sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==}
+ dev: false
+
/jwa/1.4.1:
resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==}
dependencies:
@@ -25271,11 +26579,16 @@ packages:
json-buffer: 3.0.0
dev: true
+ /keyv/4.5.4:
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ dependencies:
+ json-buffer: 3.0.1
+
/killable/1.0.1:
resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==}
/kind-of/2.0.1:
- resolution: {integrity: sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=}
+ resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==}
engines: {node: '>=0.10.0'}
dependencies:
is-buffer: 1.1.6
@@ -25292,35 +26605,26 @@ packages:
dependencies:
is-buffer: 1.1.6
- /kind-of/5.1.0:
- resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==}
- engines: {node: '>=0.10.0'}
-
/kind-of/6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- /klaw/1.3.1:
- resolution: {integrity: sha1-QIhDO0azsbolnXh4XY6W9zugJDk=}
- optionalDependencies:
- graceful-fs: 4.2.9
- dev: true
-
/kleur/3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- /klona/2.0.5:
- resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==}
+ /klona/2.0.6:
+ resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
- /language-subtag-registry/0.3.21:
- resolution: {integrity: sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==}
+ /language-subtag-registry/0.3.23:
+ resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
- /language-tags/1.0.5:
- resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
+ /language-tags/1.0.9:
+ resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
+ engines: {node: '>=0.10'}
dependencies:
- language-subtag-registry: 0.3.21
+ language-subtag-registry: 0.3.23
/last-call-webpack-plugin/3.0.0:
resolution: {integrity: sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==}
@@ -25336,25 +26640,25 @@ packages:
dev: true
/lazy-ass/1.6.0:
- resolution: {integrity: sha1-eZllXoZGwX8In90YfRUNMyTVRRM=}
+ resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==}
engines: {node: '> 0.8'}
dev: true
/lazy-cache/0.2.7:
- resolution: {integrity: sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=}
+ resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==}
engines: {node: '>=0.10.0'}
/lazy-cache/1.0.4:
- resolution: {integrity: sha1-odePw6UEdMuAhF07O24dpJpEbo4=}
+ resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==}
engines: {node: '>=0.10.0'}
/lazy-universal-dotenv/3.0.1:
resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==}
engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.24.7
app-root-dir: 1.0.2
- core-js: 3.19.1
+ core-js: 3.37.1
dotenv: 8.6.0
dotenv-expand: 5.1.0
dev: true
@@ -25370,24 +26674,22 @@ packages:
resolution: {integrity: sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==}
deprecated: use String.prototype.padStart()
- /less/4.1.2:
- resolution: {integrity: sha512-EoQp/Et7OSOVu0aJknJOtlXZsnr8XE8KwuzTHOLeVSEx8pVWUICc8Q0VYRHgzyjX78nMEyC/oztWFbgyhtNfDA==}
+ /less/4.2.0:
+ resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==}
engines: {node: '>=6'}
hasBin: true
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.3.1
+ tslib: 2.6.3
optionalDependencies:
errno: 0.1.8
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
image-size: 0.5.5
make-dir: 2.1.0
mime: 1.6.0
- needle: 2.9.1
+ needle: 3.3.1
source-map: 0.6.1
- transitivePeerDependencies:
- - supports-color
dev: true
/leven/3.1.0:
@@ -25402,7 +26704,7 @@ packages:
dev: false
/levn/0.3.0:
- resolution: {integrity: sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=}
+ resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.1.2
@@ -25415,19 +26717,19 @@ packages:
prelude-ls: 1.2.1
type-check: 0.4.0
- /lilconfig/2.0.4:
- resolution: {integrity: sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==}
+ /lilconfig/2.1.0:
+ resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
dev: true
/lineclip/1.1.5:
- resolution: {integrity: sha1-K/JgZ9lDVP6r+R5CdoI221YW/RM=}
+ resolution: {integrity: sha512-KlA/wRSjpKl7tS9iRUdlG72oQ7qZ1IlVbVgHwoO10TBR/4gQ86uhKow6nlzMAJJhjCWKto8OeoAzzIzKSmN25A==}
dev: false
- /lines-and-columns/1.1.6:
- resolution: {integrity: sha512-8ZmlJFVK9iCmtLz19HpSsR8HaAMWBT284VMNednLwlIMDP2hJDCIhUp0IZ2xUcZ+Ob6BM0VvCSJwzASDM45NLQ==}
+ /lines-and-columns/1.2.4:
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- /listr2/3.14.0_enquirer@2.3.6:
+ /listr2/3.14.0_enquirer@2.4.1:
resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -25437,41 +26739,41 @@ packages:
optional: true
dependencies:
cli-truncate: 2.1.0
- colorette: 2.0.16
- enquirer: 2.3.6
+ colorette: 2.0.20
+ enquirer: 2.4.1
log-update: 4.0.0
p-map: 4.0.0
- rfdc: 1.3.0
- rxjs: 7.5.5
+ rfdc: 1.3.1
+ rxjs: 7.8.1
through: 2.3.8
wrap-ansi: 7.0.0
dev: true
/load-json-file/1.1.0:
- resolution: {integrity: sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=}
+ resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==}
engines: {node: '>=0.10.0'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
parse-json: 2.2.0
pify: 2.3.0
pinkie-promise: 2.0.1
strip-bom: 2.0.0
/load-json-file/2.0.0:
- resolution: {integrity: sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=}
+ resolution: {integrity: sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==}
engines: {node: '>=4'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
parse-json: 2.2.0
pify: 2.3.0
strip-bom: 3.0.0
dev: false
/load-json-file/4.0.0:
- resolution: {integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs=}
+ resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
engines: {node: '>=4'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
parse-json: 4.0.0
pify: 3.0.0
strip-bom: 3.0.0
@@ -25480,7 +26782,7 @@ packages:
resolution: {integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==}
engines: {node: '>=6'}
dependencies:
- graceful-fs: 4.2.8
+ graceful-fs: 4.2.11
parse-json: 4.0.0
pify: 4.0.1
strip-bom: 3.0.0
@@ -25491,15 +26793,20 @@ packages:
resolution: {integrity: sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA==}
dependencies:
find-cache-dir: 0.1.1
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
dev: false
/loader-runner/2.4.0:
resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==}
engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
+ /loader-runner/4.3.0:
+ resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
+ engines: {node: '>=6.11.5'}
+ dev: true
+
/loader-utils/0.2.17:
- resolution: {integrity: sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=}
+ resolution: {integrity: sha512-tiv66G0SmiOx+pLWMtGEkfSEejxvb6N6uRrQjfWJIT79W9GMpgKeCAmm9aVBKtd4WEgntciI8CsGqjpDoCWJug==}
dependencies:
big.js: 3.2.0
emojis-list: 2.1.0
@@ -25513,15 +26820,15 @@ packages:
dependencies:
big.js: 5.2.2
emojis-list: 2.1.0
- json5: 1.0.1
+ json5: 1.0.2
- /loader-utils/1.4.0:
- resolution: {integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==}
+ /loader-utils/1.4.2:
+ resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
engines: {node: '>=4.0.0'}
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
- json5: 1.0.1
+ json5: 1.0.2
/loader-utils/2.0.0:
resolution: {integrity: sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==}
@@ -25529,15 +26836,15 @@ packages:
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
- json5: 2.2.0
+ json5: 2.2.3
- /loader-utils/2.0.2:
- resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==}
+ /loader-utils/2.0.4:
+ resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
- json5: 2.2.0
+ json5: 2.2.3
/locate-path/2.0.0:
resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
@@ -25573,49 +26880,49 @@ packages:
resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==}
/lodash.camelcase/4.3.0:
- resolution: {integrity: sha1-soqmKIorn8ZRA1x3EfZathkDMaY=}
+ resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
dev: true
/lodash.debounce/4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
/lodash.escape/4.0.1:
- resolution: {integrity: sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-4.0.1.tgz}
+ resolution: {integrity: sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==}
dev: true
/lodash.flattendeep/4.4.0:
- resolution: {integrity: sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=}
+ resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==}
dev: true
/lodash.get/4.4.2:
- resolution: {integrity: sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=}
+ resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
dev: false
/lodash.includes/4.3.0:
- resolution: {integrity: sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=}
+ resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==}
dev: false
/lodash.isboolean/3.0.3:
- resolution: {integrity: sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=}
+ resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
dev: false
/lodash.isequal/4.5.0:
- resolution: {integrity: sha1-QVxEePK8wwEgwizhDtMib30+GOA=, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz}
+ resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
dev: true
/lodash.isinteger/4.0.4:
- resolution: {integrity: sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=}
+ resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==}
dev: false
/lodash.isnumber/3.0.3:
- resolution: {integrity: sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=}
+ resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==}
dev: false
/lodash.isplainobject/4.0.6:
- resolution: {integrity: sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=}
+ resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
/lodash.isstring/4.0.1:
- resolution: {integrity: sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=}
+ resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==}
dev: false
/lodash.memoize/4.1.2:
@@ -25629,10 +26936,10 @@ packages:
dev: false
/lodash.once/4.1.1:
- resolution: {integrity: sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=}
+ resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
/lodash.sortby/4.7.0:
- resolution: {integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=}
+ resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
/lodash.template/4.5.0:
resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==}
@@ -25646,7 +26953,7 @@ packages:
lodash._reinterpolate: 3.0.0
/lodash.throttle/4.1.1:
- resolution: {integrity: sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=}
+ resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
/lodash.truncate/4.4.2:
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
@@ -25684,7 +26991,7 @@ packages:
dev: true
/log-update/2.3.0:
- resolution: {integrity: sha1-iDKP19HOeTiykoN0bwsbwSayRwg=}
+ resolution: {integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==}
engines: {node: '>=4'}
dependencies:
ansi-escapes: 3.2.0
@@ -25702,8 +27009,8 @@ packages:
wrap-ansi: 6.2.0
dev: true
- /loglevel/1.7.1:
- resolution: {integrity: sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==}
+ /loglevel/1.9.1:
+ resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==}
engines: {node: '>= 0.6.0'}
/lolex/2.7.5:
@@ -25713,7 +27020,7 @@ packages:
/lolex/5.1.2:
resolution: {integrity: sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.6
dev: false
/loose-envify/1.4.0:
@@ -25723,20 +27030,25 @@ packages:
js-tokens: 4.0.0
/loud-rejection/1.6.0:
- resolution: {integrity: sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=}
+ resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==}
engines: {node: '>=0.10.0'}
dependencies:
currently-unhandled: 0.4.1
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
+
+ /loupe/2.3.7:
+ resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+ dependencies:
+ get-func-name: 2.0.2
/lower-case/1.1.4:
- resolution: {integrity: sha1-miyr0bno4K6ZOkv31YdcOcQujqw=}
+ resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==}
dev: true
/lower-case/2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
- tslib: 2.3.1
+ tslib: 2.6.3
/lowercase-keys/1.0.1:
resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
@@ -25772,28 +27084,40 @@ packages:
dependencies:
yallist: 4.0.0
- /lz-string/1.4.4:
- resolution: {integrity: sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=}
+ /lz-string/1.5.0:
+ resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
dev: true
- /magic-string/0.25.7:
- resolution: {integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==}
+ /m/1.9.0:
+ resolution: {integrity: sha512-Lrq5A8PF9nSkWSIgsZLTAvcgI+9WjeGQmdHVnY7QUXiDMMIU0XbWFZDEhiMe1naYK6CVO0TlcBQXMoXit1mDdg==}
+ hasBin: true
+ dev: false
+
+ /magic-string/0.25.9:
+ resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
dependencies:
sourcemap-codec: 1.4.8
/make-dir/2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
+ requiresBuild: true
dependencies:
pify: 4.0.1
- semver: 5.7.1
+ semver: 5.7.2
/make-dir/3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
dependencies:
- semver: 6.3.0
+ semver: 6.3.1
+
+ /make-dir/4.0.0:
+ resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
+ engines: {node: '>=10'}
+ dependencies:
+ semver: 7.6.2
/make-error/1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
@@ -25806,7 +27130,6 @@ packages:
/mamacro/0.0.3:
resolution: {integrity: sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==}
- dev: false
/map-age-cleaner/0.1.3:
resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==}
@@ -25819,15 +27142,15 @@ packages:
engines: {node: '>=0.10.0'}
/map-obj/1.0.1:
- resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=}
+ resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
engines: {node: '>=0.10.0'}
/map-or-similar/1.5.0:
- resolution: {integrity: sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=}
+ resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==}
dev: true
/map-stream/0.1.0:
- resolution: {integrity: sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=}
+ resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==}
dev: true
/map-visit/1.0.0:
@@ -25842,11 +27165,17 @@ packages:
peerDependencies:
react: '>= 0.14.0'
dependencies:
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
unquote: 1.1.1
dev: true
+ /marked/4.0.12:
+ resolution: {integrity: sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==}
+ engines: {node: '>= 12'}
+ hasBin: true
+ dev: false
+
/matcher/3.0.0:
resolution: {integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==}
engines: {node: '>=10'}
@@ -25858,8 +27187,8 @@ packages:
resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==}
dev: false
- /math-expression-evaluator/1.3.8:
- resolution: {integrity: sha512-9FbRY3i6U+CbHgrdNbAUaisjWTozkm1ZfupYQJiZ87NtYHk2Zh9DvxMgp/fifxVhqTLpd5fCCLossUbpZxGeKw==}
+ /math-expression-evaluator/1.4.0:
+ resolution: {integrity: sha512-4vRUvPyxdO8cWULGTh9dZWL2tZK6LDBvj+OGHBER7poH9Qdt7kXEoj20wiz4lQUbUXQZFjPbe5mVDo9nutizCw==}
dev: false
/math-random/1.0.4:
@@ -25888,7 +27217,7 @@ packages:
resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==}
/media-typer/0.3.0:
- resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
+ resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
/mem/4.3.0:
@@ -25917,7 +27246,7 @@ packages:
dev: false
/memoizerific/1.11.3:
- resolution: {integrity: sha1-fIekZGREwy11Q4VwkF8tvRsagFo=}
+ resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==}
dependencies:
map-or-similar: 1.5.0
dev: true
@@ -25926,29 +27255,29 @@ packages:
resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==}
dependencies:
errno: 0.1.8
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
/memory-fs/0.5.0:
resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==}
engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
dependencies:
errno: 0.1.8
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
/memorystream/0.3.1:
- resolution: {integrity: sha1-htcJCzDORV1j+64S3aUaR93K+bI=}
+ resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
engines: {node: '>= 0.10.0'}
dev: true
/meow/3.7.0:
- resolution: {integrity: sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=}
+ resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==}
engines: {node: '>=0.10.0'}
dependencies:
camelcase-keys: 2.1.0
decamelize: 1.2.0
loud-rejection: 1.6.0
map-obj: 1.0.1
- minimist: 1.2.5
+ minimist: 1.2.8
normalize-package-data: 2.5.0
object-assign: 4.1.1
read-pkg-up: 1.0.1
@@ -25970,7 +27299,7 @@ packages:
kind-of: 3.2.2
/merge-descriptors/1.0.1:
- resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=}
+ resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
/merge-stream/2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -25987,7 +27316,7 @@ packages:
resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==}
/micromatch/2.3.11:
- resolution: {integrity: sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=}
+ resolution: {integrity: sha512-LnU2XFEk9xxSJ6rfgAry/ty5qwUTyHYOBU0g4R6tIw5ljwgGIBmiKhRWLw5NpMOnrgUNcDJ4WMp8rl3sYVHLNA==}
engines: {node: '>=0.10.0'}
dependencies:
arr-diff: 2.0.0
@@ -26046,12 +27375,12 @@ packages:
transitivePeerDependencies:
- supports-color
- /micromatch/4.0.4:
- resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==}
+ /micromatch/4.0.7:
+ resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
engines: {node: '>=8.6'}
dependencies:
- braces: 3.0.2
- picomatch: 2.3.0
+ braces: 3.0.3
+ picomatch: 2.3.1
/miller-rabin/4.0.1:
resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==}
@@ -26065,8 +27394,8 @@ packages:
engines: {node: '>= 0.6'}
dev: false
- /mime-db/1.51.0:
- resolution: {integrity: sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==}
+ /mime-db/1.52.0:
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
/mime-types/2.1.18:
@@ -26076,16 +27405,17 @@ packages:
mime-db: 1.33.0
dev: false
- /mime-types/2.1.34:
- resolution: {integrity: sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==}
+ /mime-types/2.1.35:
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
dependencies:
- mime-db: 1.51.0
+ mime-db: 1.52.0
/mime/1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
+ requiresBuild: true
/mime/2.6.0:
resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
@@ -26112,7 +27442,7 @@ packages:
dev: true
/min-document/2.19.0:
- resolution: {integrity: sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=}
+ resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==}
dependencies:
dom-walk: 0.1.2
dev: true
@@ -26121,40 +27451,28 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- /mini-create-react-context/0.4.1_mv67koxdvxhyejehvpcoenu3ai:
- resolution: {integrity: sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==}
- peerDependencies:
- prop-types: ^15.0.0
- react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- dependencies:
- '@babel/runtime': 7.17.2
- prop-types: 15.7.2
- react: 17.0.2
- tiny-warning: 1.0.3
- dev: false
-
/mini-css-extract-plugin/0.11.3_webpack@4.44.2:
resolution: {integrity: sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==}
engines: {node: '>= 6.9.0'}
peerDependencies:
webpack: ^4.4.0 || ^5.0.0
dependencies:
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
normalize-url: 1.9.1
schema-utils: 1.0.0
webpack: 4.44.2
webpack-sources: 1.4.3
- /mini-css-extract-plugin/0.7.0_webpack@4.46.0:
+ /mini-css-extract-plugin/0.7.0_webpack@4.42.0:
resolution: {integrity: sha512-RQIw6+7utTYn8DBGsf/LpRgZCJMpZt+kuawJ/fju0KiOL6nAaTBNmCJwS7HtwSCXfS47gCkmtBFS7HdsquhdxQ==}
engines: {node: '>= 6.9.0'}
peerDependencies:
webpack: ^4.4.0
dependencies:
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
normalize-url: 1.9.1
schema-utils: 1.0.0
- webpack: 4.46.0
+ webpack: 4.42.0
webpack-sources: 1.4.3
dev: true
@@ -26164,7 +27482,7 @@ packages:
peerDependencies:
webpack: ^4.4.0
dependencies:
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
normalize-url: 1.9.1
schema-utils: 1.0.0
webpack: 4.42.0
@@ -26175,48 +27493,59 @@ packages:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
/minimalistic-crypto-utils/1.0.1:
- resolution: {integrity: sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=}
+ resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==}
/minimatch/3.0.4:
resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
dependencies:
brace-expansion: 1.1.11
- /minimist/1.2.5:
- resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==}
+ /minimatch/3.0.8:
+ resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
+ dependencies:
+ brace-expansion: 1.1.11
+
+ /minimatch/3.1.2:
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ dependencies:
+ brace-expansion: 1.1.11
- /minimist/1.2.6:
- resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
+ /minimist/1.2.8:
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
/minipass-collect/1.0.2:
resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.1.5
+ minipass: 3.3.6
/minipass-flush/1.0.5:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.1.5
+ minipass: 3.3.6
/minipass-pipeline/1.2.4:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
engines: {node: '>=8'}
dependencies:
- minipass: 3.1.5
+ minipass: 3.3.6
- /minipass/3.1.5:
- resolution: {integrity: sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==}
+ /minipass/3.3.6:
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
dependencies:
yallist: 4.0.0
+ /minipass/5.0.0:
+ resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+ engines: {node: '>=8'}
+
/minizlib/2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.1.5
+ minipass: 3.3.6
yallist: 4.0.0
/mississippi/3.0.0:
@@ -26242,17 +27571,17 @@ packages:
is-extendable: 1.0.1
/mixin-object/2.0.1:
- resolution: {integrity: sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=}
+ resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==}
engines: {node: '>=0.10.0'}
dependencies:
for-in: 0.1.8
is-extendable: 0.1.1
- /mkdirp/0.5.5:
- resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==}
+ /mkdirp/0.5.6:
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
dependencies:
- minimist: 1.2.5
+ minimist: 1.2.8
/mkdirp/1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
@@ -26291,21 +27620,22 @@ packages:
yargs-unparser: 2.0.0
dev: true
- /moment/2.29.1:
- resolution: {integrity: sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==}
+ /moment/2.30.1:
+ resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
dev: false
- /moo/0.5.1:
- resolution: {integrity: sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/moo/-/moo-0.5.1.tgz}
+ /moo/0.5.2:
+ resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==}
dev: true
/move-concurrently/1.0.1:
resolution: {integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==}
+ deprecated: This package is no longer supported.
dependencies:
aproba: 1.2.0
copy-concurrently: 1.0.5
fs-write-stream-atomic: 1.0.10
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
rimraf: 2.7.1
run-queue: 1.0.3
@@ -26314,16 +27644,17 @@ packages:
engines: {node: '>=4'}
dev: true
- /mrmime/1.0.0:
- resolution: {integrity: sha512-a70zx7zFfVO7XpnQ2IX1Myh9yY4UYvfld/dikWRnsXxbyvMcfz+u6UfgNAtH+k2QqtJuzVpv6eLTx1G2+WKZbQ==}
+ /mrmime/1.0.1:
+ resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
engines: {node: '>=10'}
dev: true
/ms/2.0.0:
- resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=}
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
/ms/2.1.1:
resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==}
+ dev: true
/ms/2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
@@ -26342,15 +27673,14 @@ packages:
thunky: 1.1.0
/mute-stream/0.0.7:
- resolution: {integrity: sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=}
+ resolution: {integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==}
dev: true
/mute-stream/0.0.8:
resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
- /nan/2.15.0:
- resolution: {integrity: sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==}
- requiresBuild: true
+ /nan/2.19.0:
+ resolution: {integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==}
/nanoid/3.1.20:
resolution: {integrity: sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==}
@@ -26358,8 +27688,8 @@ packages:
hasBin: true
dev: true
- /nanoid/3.2.0:
- resolution: {integrity: sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==}
+ /nanoid/3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -26408,93 +27738,93 @@ packages:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
/nearley/2.20.1:
- resolution: {integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/nearley/-/nearley-2.20.1.tgz}
+ resolution: {integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==}
hasBin: true
dependencies:
commander: 2.20.3
- moo: 0.5.1
+ moo: 0.5.2
railroad-diagrams: 1.0.0
randexp: 0.4.6
dev: true
- /needle/2.9.1:
- resolution: {integrity: sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==}
+ /needle/3.3.1:
+ resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
engines: {node: '>= 4.4.x'}
hasBin: true
requiresBuild: true
dependencies:
- debug: 3.2.7
- iconv-lite: 0.4.24
- sax: 1.2.4
- transitivePeerDependencies:
- - supports-color
+ iconv-lite: 0.6.3
+ sax: 1.4.1
dev: true
optional: true
- /negotiator/0.6.2:
- resolution: {integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==}
+ /negotiator/0.6.3:
+ resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
/neo-async/2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- /next-i18next/8.0.0_next@12.0.10+react@17.0.2:
+ /next-i18next/8.0.0_dwjfwrt6uv2f53xn6wotzcxyoa:
resolution: {integrity: sha512-oGfvGjDPEoA/XqWD3lkwyWwgvDypPPo7B0cQvzKiDoiuCZ2uuV5Ao36kNsZcAvu9PrmjcZVMg3pu/XM5KKyzZg==}
engines: {node: '>=10'}
peerDependencies:
next: '>= 10.0.0'
react: '>= 16.8.0'
dependencies:
- core-js: 3.19.1
+ core-js: 3.37.1
hoist-non-react-statics: 3.3.2
i18next: 19.9.2
- i18next-fs-backend: 1.1.4
- next: 12.0.10_t3qp7jjdvogg6q4bidjnygdwy4
+ i18next-fs-backend: 1.2.0
+ next: 12.3.4_ano66n2hx2pallif55qdujhkvi
react: 17.0.2
- react-i18next: 11.14.2_ftpfmoxqd2lj3y767446p7m2ce
+ react-i18next: 11.18.6_r4vbf6j3grmryggditgyffazwe
+ transitivePeerDependencies:
+ - react-dom
+ - react-native
dev: false
- /next-redux-wrapper/7.0.5_xdsjuvluuumeglvuaoaxbs23rm:
+ /next-redux-wrapper/7.0.5_2jlx3afzhh5rbjairyvkcrvqky:
resolution: {integrity: sha512-UFXdAWG5i+GFT8+Hoqpx3GArkPh34fVWF9YoA2VSHlBzsrPtnRd7NWM6FNSYUennpommTpWJ09mu+r/1UxyIkg==}
peerDependencies:
next: '>=10.0.3'
react: '*'
react-redux: '*'
dependencies:
- next: 12.0.10_t3qp7jjdvogg6q4bidjnygdwy4
+ next: 12.3.4_ano66n2hx2pallif55qdujhkvi
react: 17.0.2
- react-redux: 7.2.6_sfoxds7t5ydpegc3knd667wn6m
+ react-redux: 7.2.9_sfoxds7t5ydpegc3knd667wn6m
dev: false
- /next-seo/4.29.0_me4qx2mswy2knchxyjkvkr5vlm:
+ /next-seo/4.29.0_dwjfwrt6uv2f53xn6wotzcxyoa:
resolution: {integrity: sha512-xmwzcz4uHaYJ8glbuhs6FSBQ7z3irmdPYdJJ5saWm72Uy3o+mPKGaPCXQetTCE6/xxVnpoDV4yFtFlEjUcljSg==}
peerDependencies:
next: ^8.1.1-canary.54 || >=9.0.0
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
- next: 12.0.10_t3qp7jjdvogg6q4bidjnygdwy4
+ next: 12.3.4_ano66n2hx2pallif55qdujhkvi
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
dev: false
- /next-tick/1.0.0:
- resolution: {integrity: sha512-mc/caHeUcdjnC/boPWJefDr4KUIWQNv+tlnFnJd38QMou86QtxQzBJfxgGRzvx8jazYRqrVlaHarfO72uNxPOg==}
+ /next-tick/1.1.0:
+ resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
- /next-transpile-modules/9.0.0:
- resolution: {integrity: sha512-VCNFOazIAnXn1hvgYYSTYMnoWgKgwlYh4lm1pKbSfiB3kj5ZYLcKVhfh3jkPOg1cnd9DP+pte9yCUocdPEUBTQ==}
+ /next-transpile-modules/9.1.0:
+ resolution: {integrity: sha512-yzJji65xDqcIqjvx5vPJcs1M+MYQTzLM1pXH/qf8Q88ohx+bwVGDc1AeV+HKr1NwvMCNTpwVPSFI7cA5WdyeWA==}
dependencies:
- enhanced-resolve: 5.9.0
- escalade: 3.1.1
+ enhanced-resolve: 5.17.0
+ escalade: 3.1.2
dev: false
- /next/12.0.10_t3qp7jjdvogg6q4bidjnygdwy4:
- resolution: {integrity: sha512-1y3PpGzpb/EZzz1jgne+JfZXKAVJUjYXwxzrADf/LWN+8yi9o79vMLXpW3mevvCHkEF2sBnIdjzNn16TJrINUw==}
+ /next/12.3.4_ano66n2hx2pallif55qdujhkvi:
+ resolution: {integrity: sha512-VcyMJUtLZBGzLKo3oMxrEF0stxh8HwuW976pAzlHhI3t8qJ4SROjCrSh1T24bhrbjw55wfZXAbXPGwPt5FLRfQ==}
engines: {node: '>=12.22.0'}
hasBin: true
peerDependencies:
fibers: '>= 3.1.0'
- node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0
+ node-sass: ^6.0.0 || ^7.0.0
react: ^17.0.2 || ^18.0.0-0
react-dom: ^17.0.2 || ^18.0.0-0
sass: ^1.3.0
@@ -26506,29 +27836,33 @@ packages:
sass:
optional: true
dependencies:
- '@next/env': 12.0.10
- caniuse-lite: 1.0.30001312
- postcss: 8.4.5
+ '@next/env': 12.3.4
+ '@swc/helpers': 0.4.11
+ caniuse-lite: 1.0.30001632
+ postcss: 8.4.14
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- sass: 1.49.7
- styled-jsx: 5.0.0_react@17.0.2
- use-subscription: 1.5.1_react@17.0.2
+ sass: 1.77.4
+ styled-jsx: 5.0.7_react@17.0.2
+ use-sync-external-store: 1.2.0_react@17.0.2
optionalDependencies:
- '@next/swc-android-arm64': 12.0.10
- '@next/swc-darwin-arm64': 12.0.10
- '@next/swc-darwin-x64': 12.0.10
- '@next/swc-linux-arm-gnueabihf': 12.0.10
- '@next/swc-linux-arm64-gnu': 12.0.10
- '@next/swc-linux-arm64-musl': 12.0.10
- '@next/swc-linux-x64-gnu': 12.0.10
- '@next/swc-linux-x64-musl': 12.0.10
- '@next/swc-win32-arm64-msvc': 12.0.10
- '@next/swc-win32-ia32-msvc': 12.0.10
- '@next/swc-win32-x64-msvc': 12.0.10
+ '@next/swc-android-arm-eabi': 12.3.4
+ '@next/swc-android-arm64': 12.3.4
+ '@next/swc-darwin-arm64': 12.3.4
+ '@next/swc-darwin-x64': 12.3.4
+ '@next/swc-freebsd-x64': 12.3.4
+ '@next/swc-linux-arm-gnueabihf': 12.3.4
+ '@next/swc-linux-arm64-gnu': 12.3.4
+ '@next/swc-linux-arm64-musl': 12.3.4
+ '@next/swc-linux-x64-gnu': 12.3.4
+ '@next/swc-linux-x64-musl': 12.3.4
+ '@next/swc-win32-arm64-msvc': 12.3.4
+ '@next/swc-win32-ia32-msvc': 12.3.4
+ '@next/swc-win32-x64-msvc': 12.3.4
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
+ dev: false
/nice-try/1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
@@ -26537,20 +27871,20 @@ packages:
resolution: {integrity: sha512-Ymbac/94xeIrMf59REBPOv0thr+CJVFMhrlAkW/gjCIE58BGQdCj0x7KRCb3yz+Ga2Rz3E9XXSvUyyxqqhjQAQ==}
dependencies:
'@sinonjs/formatio': 3.2.2
- '@sinonjs/text-encoding': 0.7.1
+ '@sinonjs/text-encoding': 0.7.2
just-extend: 4.2.1
lolex: 5.1.2
path-to-regexp: 1.8.0
dev: false
- /nise/4.1.0:
- resolution: {integrity: sha512-eQMEmGN/8arp0xsvGoQ+B1qvSkR73B1nWSCh7nOt5neMCtwcQVYQGdzQMhcNscktTsWB54xnlSQFzOAPJD8nXA==}
+ /nise/5.1.9:
+ resolution: {integrity: sha512-qOnoujW4SV6e40dYxJOb3uvuoPHtmLzIk4TFo+j0jPJoC+5Z9xja5qH5JZobEPsa8+YYphMrOSwnrshEhG2qww==}
dependencies:
- '@sinonjs/commons': 1.8.3
- '@sinonjs/fake-timers': 6.0.1
- '@sinonjs/text-encoding': 0.7.1
- just-extend: 4.2.1
- path-to-regexp: 1.8.0
+ '@sinonjs/commons': 3.0.1
+ '@sinonjs/fake-timers': 11.2.2
+ '@sinonjs/text-encoding': 0.7.2
+ just-extend: 6.2.0
+ path-to-regexp: 6.2.2
dev: false
/no-case/2.3.2:
@@ -26563,13 +27897,13 @@ packages:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
lower-case: 2.0.2
- tslib: 2.3.1
+ tslib: 2.6.3
/node-dir/0.1.17:
- resolution: {integrity: sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=}
+ resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
engines: {node: '>= 0.10.5'}
dependencies:
- minimatch: 3.0.4
+ minimatch: 3.1.2
dev: true
/node-fetch/1.7.3:
@@ -26582,17 +27916,21 @@ packages:
/node-fetch/2.6.1:
resolution: {integrity: sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==}
engines: {node: 4.x || >=6.0.0}
- dev: false
- /node-fetch/2.6.6:
- resolution: {integrity: sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA==}
+ /node-fetch/2.6.7:
+ resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
dependencies:
whatwg-url: 5.0.0
- dev: true
+ dev: false
- /node-fetch/2.6.7:
- resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
+ /node-fetch/2.7.0:
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
encoding: ^0.1.0
@@ -26613,9 +27951,9 @@ packages:
hasBin: true
dependencies:
fstream: 1.0.12
- glob: 7.2.0
- graceful-fs: 4.2.9
- mkdirp: 0.5.5
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ mkdirp: 0.5.6
nopt: 3.0.6
npmlog: 4.1.2
osenv: 0.1.5
@@ -26631,7 +27969,7 @@ packages:
/node-libs-browser/2.2.1:
resolution: {integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==}
dependencies:
- assert: 1.5.0
+ assert: 1.5.1
browserify-zlib: 0.2.0
buffer: 4.9.2
console-browserify: 1.2.0
@@ -26645,27 +27983,22 @@ packages:
process: 0.11.10
punycode: 1.4.1
querystring-es3: 0.2.1
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
stream-browserify: 2.0.2
stream-http: 2.8.3
string_decoder: 1.3.0
timers-browserify: 2.0.12
tty-browserify: 0.0.0
- url: 0.11.0
+ url: 0.11.3
util: 0.11.1
vm-browserify: 1.1.2
- /node-modules-regexp/1.0.0:
- resolution: {integrity: sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=}
- engines: {node: '>=0.10.0'}
- dev: true
-
/node-notifier/5.4.5:
resolution: {integrity: sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ==}
dependencies:
growly: 1.3.0
is-wsl: 1.1.0
- semver: 5.7.1
+ semver: 5.7.2
shellwords: 0.1.1
which: 1.3.1
@@ -26675,7 +28008,7 @@ packages:
dependencies:
growly: 1.3.0
is-wsl: 2.2.0
- semver: 7.3.5
+ semver: 7.6.2
shellwords: 0.1.1
uuid: 8.3.2
which: 2.0.2
@@ -26691,11 +28024,8 @@ packages:
/node-releases/1.1.77:
resolution: {integrity: sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==}
- /node-releases/2.0.1:
- resolution: {integrity: sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==}
-
- /node-releases/2.0.2:
- resolution: {integrity: sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==}
+ /node-releases/2.0.14:
+ resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
/node-sass/4.14.1:
resolution: {integrity: sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g==}
@@ -26708,12 +28038,12 @@ packages:
cross-spawn: 3.0.1
gaze: 1.1.3
get-stdin: 4.0.1
- glob: 7.2.0
+ glob: 7.2.3
in-publish: 2.0.1
lodash: 4.17.21
meow: 3.7.0
- mkdirp: 0.5.5
- nan: 2.15.0
+ mkdirp: 0.5.6
+ nan: 2.19.0
node-gyp: 3.8.0
npmlog: 4.1.2
request: 2.88.2
@@ -26722,7 +28052,7 @@ packages:
true-case-path: 1.0.3
/nopt/3.0.6:
- resolution: {integrity: sha1-xkZdvwirzU2zWTF/eaxopkayj/k=}
+ resolution: {integrity: sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==}
hasBin: true
dependencies:
abbrev: 1.1.1
@@ -26731,12 +28061,12 @@ packages:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.20.0
- semver: 5.7.1
+ resolve: 1.22.8
+ semver: 5.7.2
validate-npm-package-license: 3.0.4
/normalize-path/2.1.1:
- resolution: {integrity: sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=}
+ resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
engines: {node: '>=0.10.0'}
dependencies:
remove-trailing-separator: 1.1.0
@@ -26746,11 +28076,11 @@ packages:
engines: {node: '>=0.10.0'}
/normalize-range/0.1.2:
- resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=}
+ resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
/normalize-url/1.9.1:
- resolution: {integrity: sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=}
+ resolution: {integrity: sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==}
engines: {node: '>=4'}
dependencies:
object-assign: 4.1.1
@@ -26767,6 +28097,11 @@ packages:
engines: {node: '>=8'}
dev: true
+ /normalize-url/6.1.0:
+ resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
+ engines: {node: '>=10'}
+ dev: true
+
/npm-run-all/4.1.5:
resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==}
engines: {node: '>= 4'}
@@ -26776,15 +28111,15 @@ packages:
chalk: 2.4.2
cross-spawn: 6.0.5
memorystream: 0.3.1
- minimatch: 3.0.4
+ minimatch: 3.1.2
pidtree: 0.3.1
read-pkg: 3.0.0
- shell-quote: 1.7.2
- string.prototype.padend: 3.1.3
+ shell-quote: 1.8.1
+ string.prototype.padend: 3.1.6
dev: true
/npm-run-path/2.0.2:
- resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=}
+ resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
engines: {node: '>=4'}
dependencies:
path-key: 2.0.1
@@ -26797,6 +28132,7 @@ packages:
/npmlog/4.1.2:
resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==}
+ deprecated: This package is no longer supported.
dependencies:
are-we-there-yet: 1.1.7
console-control-strings: 1.1.0
@@ -26808,20 +28144,20 @@ packages:
dependencies:
boolbase: 1.0.0
- /nth-check/2.0.1:
- resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==}
+ /nth-check/2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
dependencies:
boolbase: 1.0.0
/num2fraction/1.2.2:
- resolution: {integrity: sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=}
+ resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==}
/number-is-nan/1.0.1:
- resolution: {integrity: sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=}
+ resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
engines: {node: '>=0.10.0'}
- /nwsapi/2.2.0:
- resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==}
+ /nwsapi/2.2.10:
+ resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==}
/nyc/15.1.0:
resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==}
@@ -26831,27 +28167,27 @@ packages:
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
caching-transform: 4.0.0
- convert-source-map: 1.8.0
+ convert-source-map: 1.9.0
decamelize: 1.2.0
find-cache-dir: 3.3.2
find-up: 4.1.0
foreground-child: 2.0.0
get-package-type: 0.1.0
- glob: 7.2.0
- istanbul-lib-coverage: 3.2.0
+ glob: 7.2.3
+ istanbul-lib-coverage: 3.2.2
istanbul-lib-hook: 3.0.0
istanbul-lib-instrument: 4.0.3
- istanbul-lib-processinfo: 2.0.2
- istanbul-lib-report: 3.0.0
+ istanbul-lib-processinfo: 2.0.3
+ istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.0.5
+ istanbul-reports: 3.1.7
make-dir: 3.1.0
node-preload: 0.2.1
p-map: 3.0.0
process-on-spawn: 1.0.0
resolve-from: 5.0.0
rimraf: 3.0.2
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
spawn-wrap: 2.0.0
test-exclude: 6.0.0
yargs: 15.4.1
@@ -26863,16 +28199,16 @@ packages:
resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
/object-assign/2.1.1:
- resolution: {integrity: sha1-Q8NuXVaf+OSBbE76i+AtJpZ8GKo=}
+ resolution: {integrity: sha512-CdsOUYIh5wIiozhJ3rLQgmUTgcyzFwZZrqhkKhODMoGtPKM+wt0h0CNIoauJWMsS9822EdzPsF/6mb4nLvPN5g==}
engines: {node: '>=0.10.0'}
dev: false
/object-assign/4.1.1:
- resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
/object-copy/0.1.0:
- resolution: {integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=}
+ resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==}
engines: {node: '>=0.10.0'}
dependencies:
copy-descriptor: 0.1.1
@@ -26884,72 +28220,87 @@ packages:
engines: {node: '>= 6'}
dev: false
- /object-inspect/1.11.0:
- resolution: {integrity: sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==}
+ /object-inspect/1.13.1:
+ resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
- /object-is/1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
+ /object-is/1.1.6:
+ resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
+ call-bind: 1.0.7
+ define-properties: 1.2.1
/object-keys/1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
/object-path/0.11.4:
- resolution: {integrity: sha1-NwrnUvvzfePqcKhhwju6iRVpGUk=}
+ resolution: {integrity: sha512-ICbQN+aw/eAASDtaC7+SJXSAruz7fvvNjxMFfS3mTdvZaaiuuw81XXYu+9CSJeUVrS3YpRhTr862YGywMQUOWg==}
engines: {node: '>=0.10.0'}
dev: false
/object-visit/1.0.1:
- resolution: {integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=}
+ resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- /object.assign/4.1.2:
- resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==}
+ /object.assign/4.1.5:
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- has-symbols: 1.0.2
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ has-symbols: 1.0.3
object-keys: 1.1.1
- /object.entries/1.1.5:
- resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==}
+ /object.entries/1.1.8:
+ resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
- /object.fromentries/2.0.5:
- resolution: {integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==}
+ /object.fromentries/2.0.8:
+ resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
- /object.getownpropertydescriptors/2.1.3:
- resolution: {integrity: sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==}
+ /object.getownpropertydescriptors/2.1.8:
+ resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==}
engines: {node: '>= 0.8'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ array.prototype.reduce: 1.0.7
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
+ gopd: 1.0.1
+ safe-array-concat: 1.1.2
+
+ /object.groupby/1.0.3:
+ resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
- /object.hasown/1.1.0:
- resolution: {integrity: sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==}
+ /object.hasown/1.1.4:
+ resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==}
+ engines: {node: '>= 0.4'}
dependencies:
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
/object.omit/2.0.1:
- resolution: {integrity: sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=}
+ resolution: {integrity: sha512-UiAM5mhmIuKLsOvrL+B0U2d1hXHF3bFYWIuH1LMpuV2EJEHG1Ntz06PgLEHjm6VFd87NpH8rastvPoyv6UW2fA==}
engines: {node: '>=0.10.0'}
dependencies:
for-own: 0.1.5
@@ -26958,24 +28309,29 @@ packages:
optional: true
/object.pick/1.3.0:
- resolution: {integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=}
+ resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- /object.values/1.1.5:
- resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==}
+ /object.values/1.2.0:
+ resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
/obuf/1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
- /on-finished/2.3.0:
- resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=}
+ /on-exit-leak-free/2.1.2:
+ resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
+ engines: {node: '>=14.0.0'}
+ dev: true
+
+ /on-finished/2.4.1:
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
@@ -26985,12 +28341,12 @@ packages:
engines: {node: '>= 0.8'}
/once/1.4.0:
- resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
/onetime/2.0.1:
- resolution: {integrity: sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=}
+ resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
engines: {node: '>=4'}
dependencies:
mimic-fn: 1.2.0
@@ -27032,11 +28388,13 @@ packages:
dependencies:
is-wsl: 1.1.0
- /optimism/0.16.1:
- resolution: {integrity: sha512-64i+Uw3otrndfq5kaoGNoY7pvOhSsjFEN4bdEFh80MWVk/dbgJfMv7VFDeCT8LxNAlEVhQmdVEbfE7X2nWNIIg==}
+ /optimism/0.18.0:
+ resolution: {integrity: sha512-tGn8+REwLRNFnb9WmcY5IfpOqeX2kpaYJ1s6Ae3mn12AeydLkR3j+jSCmVQFoXqU8D41PAJ1RG1rCRNWmNZVmQ==}
dependencies:
- '@wry/context': 0.6.1
- '@wry/trie': 0.3.1
+ '@wry/caches': 1.0.1
+ '@wry/context': 0.7.4
+ '@wry/trie': 0.4.3
+ tslib: 2.6.3
dev: false
/optimize-css-assets-webpack-plugin/5.0.3_webpack@4.42.0:
@@ -27067,10 +28425,10 @@ packages:
levn: 0.3.0
prelude-ls: 1.1.2
type-check: 0.3.2
- word-wrap: 1.2.3
+ word-wrap: 1.2.5
- /optionator/0.9.1:
- resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
+ /optionator/0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
dependencies:
deep-is: 0.1.4
@@ -27078,7 +28436,7 @@ packages:
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
- word-wrap: 1.2.3
+ word-wrap: 1.2.5
/ora/3.4.0:
resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==}
@@ -27086,7 +28444,7 @@ packages:
dependencies:
chalk: 2.4.2
cli-cursor: 2.1.0
- cli-spinners: 2.6.1
+ cli-spinners: 2.9.2
log-symbols: 2.2.0
strip-ansi: 5.2.0
wcwidth: 1.0.1
@@ -27099,7 +28457,7 @@ packages:
bl: 4.1.0
chalk: 4.1.2
cli-cursor: 3.1.0
- cli-spinners: 2.6.1
+ cli-spinners: 2.9.2
is-interactive: 1.0.0
is-unicode-supported: 0.1.0
log-symbols: 4.1.0
@@ -27107,16 +28465,11 @@ packages:
wcwidth: 1.0.1
dev: true
- /original/1.0.2:
- resolution: {integrity: sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==}
- dependencies:
- url-parse: 1.5.3
-
/os-browserify/0.3.0:
- resolution: {integrity: sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=}
+ resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==}
/os-homedir/1.0.2:
- resolution: {integrity: sha1-/7xJiDNuDoM94MFox+8VISGqf7M=}
+ resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
engines: {node: '>=0.10.0'}
/os-locale/3.1.0:
@@ -27129,24 +28482,25 @@ packages:
dev: false
/os-tmpdir/1.0.2:
- resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=}
+ resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
/osenv/0.1.5:
resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==}
+ deprecated: This package is no longer supported.
dependencies:
os-homedir: 1.0.2
os-tmpdir: 1.0.2
/ospath/1.2.2:
- resolution: {integrity: sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs=}
+ resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==}
dev: true
/output-file-sync/1.1.2:
- resolution: {integrity: sha1-0KM+7+YaIF+suQCS6CZZjVJFznY=}
+ resolution: {integrity: sha512-uQLlclru4xpCi+tfs80l3QF24KL81X57ELNMy7W/dox+JTtxUf1bLyQ8968fFCmSqqbokjW0kn+WBIlO+rSkNg==}
dependencies:
- graceful-fs: 4.2.8
- mkdirp: 0.5.5
+ graceful-fs: 4.2.11
+ mkdirp: 0.5.6
object-assign: 4.1.1
dev: true
@@ -27156,11 +28510,11 @@ packages:
dev: true
/p-defer/1.0.0:
- resolution: {integrity: sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=}
+ resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==}
engines: {node: '>=4'}
/p-each-series/1.0.0:
- resolution: {integrity: sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=}
+ resolution: {integrity: sha512-J/e9xiZZQNrt+958FFzJ+auItsBGq+UrQ7nE89AUP7UOTtjHnkISANXLdayhVzh538UnLMCSlf13lFfRIAKQOA==}
engines: {node: '>=4'}
dependencies:
p-reduce: 1.0.0
@@ -27177,7 +28531,7 @@ packages:
dev: true
/p-finally/1.0.0:
- resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=}
+ resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
engines: {node: '>=4'}
/p-finally/2.0.1:
@@ -27209,7 +28563,7 @@ packages:
yocto-queue: 0.1.0
/p-locate/2.0.0:
- resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=}
+ resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==}
engines: {node: '>=4'}
dependencies:
p-limit: 1.3.0
@@ -27250,7 +28604,7 @@ packages:
aggregate-error: 3.1.0
/p-reduce/1.0.0:
- resolution: {integrity: sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=}
+ resolution: {integrity: sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==}
engines: {node: '>=4'}
/p-retry/3.0.1:
@@ -27267,7 +28621,7 @@ packages:
dev: true
/p-try/1.0.0:
- resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=}
+ resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
engines: {node: '>=4'}
/p-try/2.2.0:
@@ -27278,7 +28632,7 @@ packages:
resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==}
engines: {node: '>=8'}
dependencies:
- graceful-fs: 4.2.8
+ graceful-fs: 4.2.11
hasha: 5.2.2
lodash.flattendeep: 4.4.0
release-zalgo: 1.0.0
@@ -27289,9 +28643,9 @@ packages:
engines: {node: '>=8'}
dependencies:
got: 9.6.0
- registry-auth-token: 4.2.1
+ registry-auth-token: 4.2.2
registry-url: 5.1.0
- semver: 6.3.0
+ semver: 6.3.1
dev: true
/pako/1.0.11:
@@ -27300,15 +28654,15 @@ packages:
/parallel-transform/1.2.0:
resolution: {integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==}
dependencies:
- cyclist: 1.0.1
+ cyclist: 1.0.2
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
/param-case/3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
- tslib: 2.3.1
+ tslib: 2.6.3
/parent-module/1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
@@ -27316,12 +28670,14 @@ packages:
dependencies:
callsites: 3.1.0
- /parse-asn1/5.1.6:
- resolution: {integrity: sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==}
+ /parse-asn1/5.1.7:
+ resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==}
+ engines: {node: '>= 0.10'}
dependencies:
- asn1.js: 5.4.1
+ asn1.js: 4.10.1
browserify-aes: 1.2.0
evp_bytestokey: 1.0.3
+ hash-base: 3.0.4
pbkdf2: 3.1.2
safe-buffer: 5.2.1
@@ -27337,7 +28693,7 @@ packages:
dev: true
/parse-glob/3.0.4:
- resolution: {integrity: sha1-ssN2z7EfNVE7rdFz7wu246OIORw=}
+ resolution: {integrity: sha512-FC5TeK0AwXzq3tUBFtH74naWkPQCEWs4K+xMxWZBlKDWu0bVHXGZa+KKqxKidd7xwhdZ19ZNuF2uO1M/r196HA==}
engines: {node: '>=0.10.0'}
dependencies:
glob-base: 0.3.0
@@ -27348,13 +28704,13 @@ packages:
optional: true
/parse-json/2.2.0:
- resolution: {integrity: sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=}
+ resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==}
engines: {node: '>=0.10.0'}
dependencies:
error-ex: 1.3.2
/parse-json/4.0.0:
- resolution: {integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=}
+ resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
engines: {node: '>=4'}
dependencies:
error-ex: 1.3.2
@@ -27364,10 +28720,10 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.24.7
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.1.6
+ lines-and-columns: 1.2.4
/parse-ms/2.1.0:
resolution: {integrity: sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==}
@@ -27379,10 +28735,11 @@ packages:
engines: {node: '>= 0.10'}
dev: true
- /parse5-htmlparser2-tree-adapter/6.0.1:
- resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz}
+ /parse5-htmlparser2-tree-adapter/7.0.0:
+ resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==}
dependencies:
- parse5: 6.0.1
+ domhandler: 5.0.3
+ parse5: 7.1.2
dev: true
/parse5/4.0.0:
@@ -27395,12 +28752,18 @@ packages:
/parse5/6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
+ /parse5/7.1.2:
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
+ dependencies:
+ entities: 4.5.0
+ dev: true
+
/parseurl/1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
/pascal-case/2.0.1:
- resolution: {integrity: sha1-LVeNNFX2YNpl7KGO+VtODekSdh4=}
+ resolution: {integrity: sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==}
dependencies:
camel-case: 3.0.0
upper-case-first: 1.1.2
@@ -27410,26 +28773,26 @@ packages:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
- tslib: 2.3.1
+ tslib: 2.6.3
/pascalcase/0.1.1:
- resolution: {integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=}
+ resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
engines: {node: '>=0.10.0'}
/path-browserify/0.0.1:
resolution: {integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==}
/path-dirname/1.0.2:
- resolution: {integrity: sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=}
+ resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==}
/path-exists/2.1.0:
- resolution: {integrity: sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=}
+ resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==}
engines: {node: '>=0.10.0'}
dependencies:
pinkie-promise: 2.0.1
/path-exists/3.0.0:
- resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=}
+ resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
/path-exists/4.0.0:
@@ -27437,14 +28800,14 @@ packages:
engines: {node: '>=8'}
/path-is-absolute/1.0.1:
- resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
/path-is-inside/1.0.2:
- resolution: {integrity: sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=}
+ resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
/path-key/2.0.1:
- resolution: {integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=}
+ resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
engines: {node: '>=4'}
/path-key/3.1.1:
@@ -27455,7 +28818,7 @@ packages:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
/path-to-regexp/0.1.7:
- resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=}
+ resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
/path-to-regexp/1.8.0:
resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==}
@@ -27467,16 +28830,20 @@ packages:
resolution: {integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==}
dev: false
+ /path-to-regexp/6.2.2:
+ resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==}
+ dev: false
+
/path-type/1.1.0:
- resolution: {integrity: sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=}
+ resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==}
engines: {node: '>=0.10.0'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
pify: 2.3.0
pinkie-promise: 2.0.1
/path-type/2.0.0:
- resolution: {integrity: sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=}
+ resolution: {integrity: sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==}
engines: {node: '>=4'}
dependencies:
pify: 2.3.0
@@ -27496,7 +28863,7 @@ packages:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
/pause-stream/0.0.11:
- resolution: {integrity: sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=}
+ resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
dependencies:
through: 2.3.8
dev: true
@@ -27512,20 +28879,20 @@ packages:
sha.js: 2.4.11
/pend/1.2.0:
- resolution: {integrity: sha1-elfrVQpng/kRUzH89GY9XI4AelA=}
+ resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
dev: true
/performance-now/2.1.0:
- resolution: {integrity: sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=}
+ resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
/picocolors/0.2.1:
resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
- /picocolors/1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+ /picocolors/1.0.1:
+ resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
- /picomatch/2.3.0:
- resolution: {integrity: sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==}
+ /picomatch/2.3.1:
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
/pidtree/0.3.1:
@@ -27535,11 +28902,11 @@ packages:
dev: true
/pify/2.3.0:
- resolution: {integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=}
+ resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
/pify/3.0.0:
- resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=}
+ resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
engines: {node: '>=4'}
/pify/4.0.1:
@@ -27547,41 +28914,65 @@ packages:
engines: {node: '>=6'}
/pinkie-promise/2.0.1:
- resolution: {integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=}
+ resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
engines: {node: '>=0.10.0'}
dependencies:
pinkie: 2.0.4
/pinkie/2.0.4:
- resolution: {integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA=}
+ resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
engines: {node: '>=0.10.0'}
+ /pino-abstract-transport/1.2.0:
+ resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==}
+ dependencies:
+ readable-stream: 4.5.2
+ split2: 4.2.0
+ dev: true
+
+ /pino-pretty/11.2.0:
+ resolution: {integrity: sha512-k6VHtZBcfLDB1mB8TWPE19OyLygfNdqOgX/uACqBbVMaUK2JeXHBUTINvJ/QPs5Vazwfq4gWIDpTYDnhkfy7Jw==}
+ hasBin: true
+ dependencies:
+ colorette: 2.0.20
+ dateformat: 4.6.3
+ fast-copy: 3.0.2
+ fast-safe-stringify: 2.1.1
+ help-me: 5.0.0
+ joycon: 3.1.1
+ minimist: 1.2.8
+ on-exit-leak-free: 2.1.2
+ pino-abstract-transport: 1.2.0
+ pump: 3.0.0
+ readable-stream: 4.5.2
+ secure-json-parse: 2.7.0
+ sonic-boom: 4.0.1
+ strip-json-comments: 3.1.1
+ dev: true
+
/pino-std-serializers/3.2.0:
resolution: {integrity: sha512-EqX4pwDPrt3MuOAAUBMU0Tk5kR/YcCM5fNPEzgCO2zJ5HfX0vbiH9HbJglnyeQsN96Kznae6MWD47pZB5avTrg==}
dev: false
- /pino/6.13.3:
- resolution: {integrity: sha512-tJy6qVgkh9MwNgqX1/oYi3ehfl2Y9H0uHyEEMsBe74KinESIjdMrMQDWpcZPpPicg3VV35d/GLQZmo4QgU2Xkg==}
+ /pino-std-serializers/7.0.0:
+ resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==}
+ dev: true
+
+ /pino/6.14.0:
+ resolution: {integrity: sha512-iuhEDel3Z3hF9Jfe44DPXR8l07bhjuFY3GMHIXbjnY9XcafbyDDwl2sN2vw2GjMPf5Nkoe+OFao7ffn9SXaKDg==}
hasBin: true
dependencies:
- fast-redact: 3.0.2
+ fast-redact: 3.5.0
fast-safe-stringify: 2.1.1
- fastify-warning: 0.2.0
flatstr: 1.0.12
pino-std-serializers: 3.2.0
+ process-warning: 1.0.0
quick-format-unescaped: 4.0.4
sonic-boom: 1.4.1
dev: false
- /pirates/4.0.1:
- resolution: {integrity: sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==}
- engines: {node: '>= 6'}
- dependencies:
- node-modules-regexp: 1.0.0
- dev: true
-
- /pirates/4.0.5:
- resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
+ /pirates/4.0.6:
+ resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
/pkg-conf/3.1.0:
@@ -27593,18 +28984,12 @@ packages:
dev: true
/pkg-dir/1.0.0:
- resolution: {integrity: sha1-ektQio1bstYp1EcFb/TpyTFM89Q=}
+ resolution: {integrity: sha512-c6pv3OE78mcZ92ckebVDqg0aWSoKhOTbwCV6qbCWMk546mAL9pZln0+QsN/yQ7fkucd4+yJPLrCBXNt8Ruk+Eg==}
engines: {node: '>=0.10.0'}
dependencies:
find-up: 1.1.2
dev: false
- /pkg-dir/2.0.0:
- resolution: {integrity: sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=}
- engines: {node: '>=4'}
- dependencies:
- find-up: 2.1.0
-
/pkg-dir/3.0.0:
resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
engines: {node: '>=6'}
@@ -27618,7 +29003,7 @@ packages:
find-up: 4.1.0
/pkg-up/2.0.0:
- resolution: {integrity: sha1-yBmscoBZpGHKscOImivjxJoATX8=}
+ resolution: {integrity: sha512-fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg==}
engines: {node: '>=4'}
dependencies:
find-up: 2.1.0
@@ -27634,7 +29019,7 @@ packages:
resolution: {integrity: sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==}
engines: {node: '>=10'}
dependencies:
- irregular-plurals: 3.3.0
+ irregular-plurals: 3.5.0
dev: true
/pn/1.1.0:
@@ -27644,7 +29029,7 @@ packages:
resolution: {integrity: sha512-jd9olUr9D7do+RN8Wspzhpxhgp1n6Vd0NtQ4SFkmIACZoEL1nkyAdW9Ygrinjec0vgDcWjscFQQ1gDW8rsfKTg==}
engines: {node: '>=6'}
dependencies:
- ts-pnp: 1.2.0_typescript@4.6.2
+ ts-pnp: 1.2.0
transitivePeerDependencies:
- typescript
dev: true
@@ -27658,14 +29043,18 @@ packages:
- typescript
dev: false
- /pnp-webpack-plugin/1.6.4_typescript@4.6.2:
+ /pnp-webpack-plugin/1.6.4_typescript@4.9.5:
resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==}
engines: {node: '>=6'}
dependencies:
- ts-pnp: 1.2.0_typescript@4.6.2
+ ts-pnp: 1.2.0_typescript@4.9.5
transitivePeerDependencies:
- typescript
+ /pofile/1.1.4:
+ resolution: {integrity: sha512-r6Q21sKsY1AjTVVjOuU02VYKVNQGJNQHjTIvs4dEbeuuYfxgYk/DGD2mqqq4RDaVkwdSq0VEtmQUOPe/wH8X3g==}
+ dev: true
+
/point-in-polygon/1.1.0:
resolution: {integrity: sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==}
dev: false
@@ -27674,7 +29063,7 @@ packages:
resolution: {integrity: sha512-pQKtpZGmsZrW8UUpQMAnR7s3ppHeMQVNyMDKtUyKwuvDmklzcEyM5Kllb3JyE/sE/x7arDmyd35i+4vp99H6sQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
dev: true
/popmotion/9.3.6:
@@ -27683,7 +29072,7 @@ packages:
framesync: 5.3.0
hey-listen: 1.0.8
style-value-types: 4.1.4
- tslib: 2.3.1
+ tslib: 2.6.3
dev: false
/popper.js/1.16.1:
@@ -27691,41 +29080,55 @@ packages:
deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1
dev: true
- /portfinder/1.0.28_supports-color@6.1.0:
- resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==}
+ /portfinder/1.0.32_supports-color@6.1.0:
+ resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
engines: {node: '>= 0.12.0'}
dependencies:
- async: 2.6.3
+ async: 2.6.4
debug: 3.2.7_supports-color@6.1.0
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
transitivePeerDependencies:
- supports-color
/posix-character-classes/0.1.1:
- resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=}
+ resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
engines: {node: '>=0.10.0'}
+ /possible-typed-array-names/1.0.0:
+ resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
+ engines: {node: '>= 0.4'}
+
/postcss-attribute-case-insensitive/4.0.2:
resolution: {integrity: sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==}
dependencies:
postcss: 7.0.39
- postcss-selector-parser: 6.0.6
+ postcss-selector-parser: 6.1.0
- /postcss-browser-comments/3.0.0_browserslist@4.20.0:
+ /postcss-browser-comments/3.0.0_browserslist@4.23.1:
resolution: {integrity: sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==}
engines: {node: '>=8.0.0'}
peerDependencies:
browserslist: ^4
dependencies:
- browserslist: 4.20.0
+ browserslist: 4.23.1
postcss: 7.0.39
/postcss-calc/7.0.5:
resolution: {integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==}
dependencies:
postcss: 7.0.39
- postcss-selector-parser: 6.0.6
+ postcss-selector-parser: 6.1.0
+ postcss-value-parser: 4.2.0
+
+ /postcss-calc/8.2.4_postcss@8.4.38:
+ resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
+ peerDependencies:
+ postcss: ^8.2.2
+ dependencies:
+ postcss: 8.4.38
+ postcss-selector-parser: 6.1.0
postcss-value-parser: 4.2.0
+ dev: true
/postcss-color-functional-notation/2.0.1:
resolution: {integrity: sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==}
@@ -27768,12 +29171,25 @@ packages:
resolution: {integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.20.0
+ browserslist: 4.23.1
color: 3.2.1
- has: 1.0.3
+ has: 1.0.4
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-colormin/5.3.1_postcss@8.4.38:
+ resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.23.1
+ caniuse-api: 3.0.0
+ colord: 2.9.3
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-convert-values/4.0.1:
resolution: {integrity: sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==}
engines: {node: '>=6.9.0'}
@@ -27781,6 +29197,17 @@ packages:
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-convert-values/5.1.3_postcss@8.4.38:
+ resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.23.1
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-custom-media/7.0.8:
resolution: {integrity: sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==}
engines: {node: '>=6.0.0'}
@@ -27814,24 +29241,60 @@ packages:
dependencies:
postcss: 7.0.39
+ /postcss-discard-comments/5.1.2_postcss@8.4.38:
+ resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
/postcss-discard-duplicates/4.0.2:
resolution: {integrity: sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==}
engines: {node: '>=6.9.0'}
dependencies:
postcss: 7.0.39
+ /postcss-discard-duplicates/5.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
/postcss-discard-empty/4.0.1:
resolution: {integrity: sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==}
engines: {node: '>=6.9.0'}
dependencies:
postcss: 7.0.39
+ /postcss-discard-empty/5.1.1_postcss@8.4.38:
+ resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
/postcss-discard-overridden/4.0.1:
resolution: {integrity: sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==}
engines: {node: '>=6.9.0'}
dependencies:
postcss: 7.0.39
+ /postcss-discard-overridden/5.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
/postcss-double-position-gradients/1.0.0:
resolution: {integrity: sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==}
engines: {node: '>=6.0.0'}
@@ -27887,7 +29350,7 @@ packages:
postcss: 7.0.39
/postcss-icss-keyframes/0.2.1:
- resolution: {integrity: sha1-gMRFXgESsPL5w8Bax1FQYruf8pU=}
+ resolution: {integrity: sha512-4m+hLY5TVqoTM198KKnzdNudyu1OvtqwD+8kVZ9PNiEO4+IfHYoyVvEXsOHjV8nZ1k6xowf+nY4HlUfZhOFvvw==}
dependencies:
icss-utils: 3.0.1
postcss: 6.0.23
@@ -27895,7 +29358,7 @@ packages:
dev: true
/postcss-icss-selectors/2.0.3:
- resolution: {integrity: sha1-J/oa/Kq2xgLIZsuymPMhjpvBybM=}
+ resolution: {integrity: sha512-dxFtq+wscbU9faJaH8kIi98vvCPDbt+qg1g9GoG0os1PY3UvgY1Y2G06iZrZb1iVC9cyFfafwSY1IS+IQpRQ4w==}
dependencies:
css-selector-tokenizer: 0.7.3
generic-names: 1.0.3
@@ -27911,11 +29374,33 @@ packages:
postcss: 7.0.39
postcss-values-parser: 2.0.1
+ /postcss-import/14.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ postcss: ^8.0.0
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ read-cache: 1.0.0
+ resolve: 1.22.8
+ dev: true
+
/postcss-initial/3.0.4:
resolution: {integrity: sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==}
dependencies:
postcss: 7.0.39
+ /postcss-js/4.0.1_postcss@8.4.38:
+ resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
+ engines: {node: ^12 || ^14 || >= 16}
+ peerDependencies:
+ postcss: ^8.4.21
+ dependencies:
+ camelcase-css: 2.0.1
+ postcss: 8.4.38
+ dev: true
+
/postcss-lab-function/2.0.1:
resolution: {integrity: sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==}
engines: {node: '>=6.0.0'}
@@ -27931,17 +29416,21 @@ packages:
cosmiconfig: 5.2.1
import-cwd: 2.1.0
- /postcss-load-config/3.1.3_ts-node@10.5.0:
- resolution: {integrity: sha512-5EYgaM9auHGtO//ljHH+v/aC/TQ5LHXtL7bQajNAUBKUVKiYE8rYpFms7+V26D9FncaGe2zwCoPQsFKb5zF/Hw==}
+ /postcss-load-config/3.1.4_r4pj7oqxt52r2j6furr2dysbhy:
+ resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
+ postcss: '>=8.0.9'
ts-node: '>=9.0.0'
peerDependenciesMeta:
+ postcss:
+ optional: true
ts-node:
optional: true
dependencies:
- lilconfig: 2.0.4
- ts-node: 10.5.0_@types+node@17.0.18
+ lilconfig: 2.1.0
+ postcss: 8.4.38
+ ts-node: 10.9.2_@types+node@17.0.45
yaml: 1.10.2
dev: true
@@ -27949,11 +29438,47 @@ packages:
resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==}
engines: {node: '>= 6'}
dependencies:
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
postcss: 7.0.39
postcss-load-config: 2.1.2
schema-utils: 1.0.0
+ /postcss-loader/4.3.0_7yemt7gjo74q3cwnxqf4xneyva:
+ resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ postcss: ^7.0.0 || ^8.0.1
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ cosmiconfig: 7.1.0
+ klona: 2.0.6
+ loader-utils: 2.0.4
+ postcss: 8.4.38
+ schema-utils: 3.3.0
+ semver: 7.6.2
+ webpack: 5.92.1_webpack-cli@4.10.0
+ dev: true
+
+ /postcss-loader/8.1.1_typescript@3.9.10:
+ resolution: {integrity: sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ '@rspack/core': 0.x || 1.x
+ postcss: ^7.0.0 || ^8.0.1
+ webpack: ^5.0.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
+ dependencies:
+ cosmiconfig: 9.0.0_typescript@3.9.10
+ jiti: 1.21.6
+ semver: 7.6.2
+ transitivePeerDependencies:
+ - typescript
+ dev: true
+
/postcss-logical/3.0.0:
resolution: {integrity: sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==}
engines: {node: '>=6.0.0'}
@@ -27975,17 +29500,41 @@ packages:
postcss-value-parser: 3.3.1
stylehacks: 4.0.3
+ /postcss-merge-longhand/5.1.7_postcss@8.4.38:
+ resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ stylehacks: 5.1.1_postcss@8.4.38
+ dev: true
+
/postcss-merge-rules/4.0.3:
resolution: {integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.20.0
+ browserslist: 4.23.1
caniuse-api: 3.0.0
cssnano-util-same-parent: 4.0.1
postcss: 7.0.39
postcss-selector-parser: 3.1.2
vendors: 1.0.4
+ /postcss-merge-rules/5.1.4_postcss@8.4.38:
+ resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.23.1
+ caniuse-api: 3.0.0
+ cssnano-utils: 3.1.0_postcss@8.4.38
+ postcss: 8.4.38
+ postcss-selector-parser: 6.1.0
+ dev: true
+
/postcss-minify-font-values/4.0.2:
resolution: {integrity: sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==}
engines: {node: '>=6.9.0'}
@@ -27993,6 +29542,16 @@ packages:
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-minify-font-values/5.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-minify-gradients/4.0.2:
resolution: {integrity: sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==}
engines: {node: '>=6.9.0'}
@@ -28002,47 +29561,125 @@ packages:
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-minify-gradients/5.1.1_postcss@8.4.38:
+ resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ colord: 2.9.3
+ cssnano-utils: 3.1.0_postcss@8.4.38
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-minify-params/4.0.2:
resolution: {integrity: sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==}
engines: {node: '>=6.9.0'}
dependencies:
alphanum-sort: 1.0.2
- browserslist: 4.20.0
+ browserslist: 4.23.1
cssnano-util-get-arguments: 4.0.0
postcss: 7.0.39
postcss-value-parser: 3.3.1
uniqs: 2.0.0
+ /postcss-minify-params/5.1.4_postcss@8.4.38:
+ resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.23.1
+ cssnano-utils: 3.1.0_postcss@8.4.38
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-minify-selectors/4.0.2:
resolution: {integrity: sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==}
engines: {node: '>=6.9.0'}
dependencies:
alphanum-sort: 1.0.2
- has: 1.0.3
+ has: 1.0.4
postcss: 7.0.39
postcss-selector-parser: 3.1.2
+ /postcss-minify-selectors/5.2.1_postcss@8.4.38:
+ resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-selector-parser: 6.1.0
+ dev: true
+
+ /postcss-mixins/9.0.4_postcss@8.4.38:
+ resolution: {integrity: sha512-XVq5jwQJDRu5M1XGkdpgASqLk37OqkH4JCFDXl/Dn7janOJjCTEKL+36cnRVy7bMtoBzALfO7bV7nTIsFnUWLA==}
+ engines: {node: '>=14.0'}
+ peerDependencies:
+ postcss: ^8.2.14
+ dependencies:
+ fast-glob: 3.3.2
+ postcss: 8.4.38
+ postcss-js: 4.0.1_postcss@8.4.38
+ postcss-simple-vars: 7.0.1_postcss@8.4.38
+ sugarss: 4.0.1_postcss@8.4.38
+ dev: true
+
/postcss-modules-extract-imports/2.0.0:
resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==}
engines: {node: '>= 6'}
dependencies:
postcss: 7.0.39
+ /postcss-modules-extract-imports/3.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
/postcss-modules-local-by-default/3.0.3:
resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==}
engines: {node: '>= 6'}
dependencies:
icss-utils: 4.1.1
postcss: 7.0.39
- postcss-selector-parser: 6.0.6
+ postcss-selector-parser: 6.1.0
+ postcss-value-parser: 4.2.0
+
+ /postcss-modules-local-by-default/4.0.5_postcss@8.4.38:
+ resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ icss-utils: 5.1.0_postcss@8.4.38
+ postcss: 8.4.38
+ postcss-selector-parser: 6.1.0
postcss-value-parser: 4.2.0
+ dev: true
/postcss-modules-scope/2.2.0:
resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==}
engines: {node: '>= 6'}
dependencies:
postcss: 7.0.39
- postcss-selector-parser: 6.0.6
+ postcss-selector-parser: 6.1.0
+
+ /postcss-modules-scope/3.2.0_postcss@8.4.38:
+ resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ postcss: 8.4.38
+ postcss-selector-parser: 6.1.0
+ dev: true
/postcss-modules-values/3.0.0:
resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==}
@@ -28050,6 +29687,27 @@ packages:
icss-utils: 4.1.1
postcss: 7.0.39
+ /postcss-modules-values/4.0.0_postcss@8.4.38:
+ resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
+ engines: {node: ^10 || ^12 || >= 14}
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ icss-utils: 5.1.0_postcss@8.4.38
+ postcss: 8.4.38
+ dev: true
+
+ /postcss-nesting/10.2.0_postcss@8.4.38:
+ resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==}
+ engines: {node: ^12 || ^14 || >=16}
+ peerDependencies:
+ postcss: ^8.2
+ dependencies:
+ '@csstools/selector-specificity': 2.2.0_jbx4mus4njtel3ypyfykqgp6rq
+ postcss: 8.4.38
+ postcss-selector-parser: 6.1.0
+ dev: true
+
/postcss-nesting/7.0.1:
resolution: {integrity: sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==}
engines: {node: '>=6.0.0'}
@@ -28062,6 +29720,15 @@ packages:
dependencies:
postcss: 7.0.39
+ /postcss-normalize-charset/5.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
/postcss-normalize-display-values/4.0.2:
resolution: {integrity: sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==}
engines: {node: '>=6.9.0'}
@@ -28070,15 +29737,35 @@ packages:
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-normalize-display-values/5.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-normalize-positions/4.0.2:
resolution: {integrity: sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==}
engines: {node: '>=6.9.0'}
dependencies:
cssnano-util-get-arguments: 4.0.0
- has: 1.0.3
+ has: 1.0.4
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-normalize-positions/5.1.1_postcss@8.4.38:
+ resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-normalize-repeat-style/4.0.2:
resolution: {integrity: sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==}
engines: {node: '>=6.9.0'}
@@ -28088,14 +29775,34 @@ packages:
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-normalize-repeat-style/5.1.1_postcss@8.4.38:
+ resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-normalize-string/4.0.2:
resolution: {integrity: sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==}
engines: {node: '>=6.9.0'}
dependencies:
- has: 1.0.3
+ has: 1.0.4
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-normalize-string/5.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-normalize-timing-functions/4.0.2:
resolution: {integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==}
engines: {node: '>=6.9.0'}
@@ -28104,14 +29811,35 @@ packages:
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-normalize-timing-functions/5.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-normalize-unicode/4.0.1:
resolution: {integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.20.0
+ browserslist: 4.23.1
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-normalize-unicode/5.1.1_postcss@8.4.38:
+ resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.23.1
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-normalize-url/4.0.1:
resolution: {integrity: sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==}
engines: {node: '>=6.9.0'}
@@ -28121,6 +29849,17 @@ packages:
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-normalize-url/5.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ normalize-url: 6.1.0
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-normalize-whitespace/4.0.2:
resolution: {integrity: sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==}
engines: {node: '>=6.9.0'}
@@ -28128,14 +29867,24 @@ packages:
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-normalize-whitespace/5.1.1_postcss@8.4.38:
+ resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-normalize/8.0.1:
resolution: {integrity: sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==}
engines: {node: '>=8.0.0'}
dependencies:
'@csstools/normalize.css': 10.1.0
- browserslist: 4.20.0
+ browserslist: 4.23.1
postcss: 7.0.39
- postcss-browser-comments: 3.0.0_browserslist@4.20.0
+ postcss-browser-comments: 3.0.0_browserslist@4.23.1
sanitize.css: 10.0.0
/postcss-ordered-values/4.1.2:
@@ -28146,6 +29895,17 @@ packages:
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-ordered-values/5.1.3_postcss@8.4.38:
+ resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ cssnano-utils: 3.1.0_postcss@8.4.38
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-overflow-shorthand/2.0.0:
resolution: {integrity: sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==}
engines: {node: '>=6.0.0'}
@@ -28169,8 +29929,8 @@ packages:
engines: {node: '>=6.0.0'}
dependencies:
autoprefixer: 9.8.8
- browserslist: 4.20.0
- caniuse-lite: 1.0.30001314
+ browserslist: 4.23.1
+ caniuse-lite: 1.0.30001632
css-blank-pseudo: 0.1.4
css-has-pseudo: 0.10.0
css-prefers-color-scheme: 3.1.1
@@ -28217,20 +29977,41 @@ packages:
resolution: {integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.20.0
+ browserslist: 4.23.1
caniuse-api: 3.0.0
- has: 1.0.3
+ has: 1.0.4
postcss: 7.0.39
+ /postcss-reduce-initial/5.1.2_postcss@8.4.38:
+ resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.23.1
+ caniuse-api: 3.0.0
+ postcss: 8.4.38
+ dev: true
+
/postcss-reduce-transforms/4.0.2:
resolution: {integrity: sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==}
engines: {node: '>=6.9.0'}
dependencies:
cssnano-util-get-match: 4.0.0
- has: 1.0.3
+ has: 1.0.4
postcss: 7.0.39
postcss-value-parser: 3.3.1
+ /postcss-reduce-transforms/5.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ dev: true
+
/postcss-replace-overflow-wrap/3.0.0:
resolution: {integrity: sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==}
dependencies:
@@ -28247,7 +30028,7 @@ packages:
resolution: {integrity: sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==}
engines: {node: '>=10.0'}
dependencies:
- postcss: 8.4.5
+ postcss: 8.4.38
/postcss-selector-matches/4.0.0:
resolution: {integrity: sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==}
@@ -28277,13 +30058,22 @@ packages:
indexes-of: 1.0.1
uniq: 1.0.1
- /postcss-selector-parser/6.0.6:
- resolution: {integrity: sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==}
+ /postcss-selector-parser/6.1.0:
+ resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
+ /postcss-simple-vars/7.0.1_postcss@8.4.38:
+ resolution: {integrity: sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==}
+ engines: {node: '>=14.0'}
+ peerDependencies:
+ postcss: ^8.2.1
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
/postcss-svgo/4.0.3:
resolution: {integrity: sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==}
engines: {node: '>=6.9.0'}
@@ -28292,6 +30082,17 @@ packages:
postcss-value-parser: 3.3.1
svgo: 1.3.2
+ /postcss-svgo/5.1.0_postcss@8.4.38:
+ resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ svgo: 2.8.0
+ dev: true
+
/postcss-unique-selectors/4.0.1:
resolution: {integrity: sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==}
engines: {node: '>=6.9.0'}
@@ -28300,6 +30101,16 @@ packages:
postcss: 7.0.39
uniqs: 2.0.0
+ /postcss-unique-selectors/5.1.1_postcss@8.4.38:
+ resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ postcss: 8.4.38
+ postcss-selector-parser: 6.1.0
+ dev: true
+
/postcss-value-parser/3.3.1:
resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==}
@@ -28347,16 +30158,25 @@ packages:
picocolors: 0.2.1
source-map: 0.6.1
- /postcss/8.4.5:
- resolution: {integrity: sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==}
+ /postcss/8.4.14:
+ resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.1
+ source-map-js: 1.2.0
+ dev: false
+
+ /postcss/8.4.38:
+ resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.2.0
- picocolors: 1.0.0
- source-map-js: 1.0.1
+ nanoid: 3.3.7
+ picocolors: 1.0.1
+ source-map-js: 1.2.0
/prelude-ls/1.1.2:
- resolution: {integrity: sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=}
+ resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
engines: {node: '>= 0.8.0'}
/prelude-ls/1.2.1:
@@ -28364,16 +30184,16 @@ packages:
engines: {node: '>= 0.8.0'}
/prepend-http/1.0.4:
- resolution: {integrity: sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=}
+ resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==}
engines: {node: '>=0.10.0'}
/prepend-http/2.0.0:
- resolution: {integrity: sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=}
+ resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==}
engines: {node: '>=4'}
dev: true
/preserve/0.2.0:
- resolution: {integrity: sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=}
+ resolution: {integrity: sha512-s/46sYeylUfHNjI+sA/78FAHlmIuKqI9wNnzEOGehAlUUYeObv5C2mOinXBjyUyWmJ2SfcS2/ydApH4hTF4WXQ==}
engines: {node: '>=0.10.0'}
dev: true
optional: true
@@ -28382,7 +30202,7 @@ packages:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
dependencies:
- fast-diff: 1.2.0
+ fast-diff: 1.3.0
dev: true
/prettier/1.19.1:
@@ -28391,8 +30211,8 @@ packages:
hasBin: true
dev: true
- /prettier/2.5.1:
- resolution: {integrity: sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==}
+ /prettier/2.8.8:
+ resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
hasBin: true
dev: true
@@ -28412,7 +30232,7 @@ packages:
engines: {node: '>= 6'}
dependencies:
'@jest/types': 24.9.0
- ansi-regex: 4.1.0
+ ansi-regex: 4.1.1
ansi-styles: 3.2.1
react-is: 16.13.1
@@ -28426,7 +30246,7 @@ packages:
react-is: 17.0.2
/pretty-format/27.5.1:
- resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz}
+ resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
ansi-regex: 5.0.1
@@ -28435,7 +30255,7 @@ packages:
dev: true
/pretty-hrtime/1.0.3:
- resolution: {integrity: sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=}
+ resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==}
engines: {node: '>= 0.8'}
dev: true
@@ -28449,11 +30269,12 @@ packages:
/prismjs/1.17.1:
resolution: {integrity: sha512-PrEDJAFdUGbOP6xK/UsfkC5ghJsPJviKgnQOoxaDbBjwc8op68Quupwt1DeAFoG8GImPhiKXAvvsH7wDSLsu1Q==}
optionalDependencies:
- clipboard: 2.0.8
+ clipboard: 2.0.11
dev: true
- /prismjs/1.25.0:
- resolution: {integrity: sha512-WCjJHl1KEWbnkQom1+SzftbtXMKQoezOCYs5rECqMN+jP+apI7ftoflyqigqzopSO3hMhTEb0mFClA8lkolgEg==}
+ /prismjs/1.29.0:
+ resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
+ engines: {node: '>=6'}
dev: true
/private/0.1.8:
@@ -28471,8 +30292,12 @@ packages:
fromentries: 1.3.2
dev: true
+ /process-warning/1.0.0:
+ resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==}
+ dev: false
+
/process/0.11.10:
- resolution: {integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI=}
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
engines: {node: '>= 0.6.0'}
/progress-estimator/0.2.2:
@@ -28480,7 +30305,7 @@ packages:
dependencies:
chalk: 2.4.2
cli-spinners: 1.3.1
- humanize-duration: 3.27.0
+ humanize-duration: 3.32.1
log-update: 2.3.0
dev: true
@@ -28489,7 +30314,7 @@ packages:
engines: {node: '>=0.4.0'}
/promise-inflight/1.0.1:
- resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=}
+ resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
peerDependencies:
bluebird: '*'
peerDependenciesMeta:
@@ -28497,7 +30322,7 @@ packages:
optional: true
/promise-inflight/1.0.1_bluebird@3.7.2:
- resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=}
+ resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
peerDependencies:
bluebird: '*'
peerDependenciesMeta:
@@ -28506,29 +30331,31 @@ packages:
dependencies:
bluebird: 3.7.2
- /promise-polyfill/8.2.1:
- resolution: {integrity: sha512-3p9zj0cEHbp7NVUxEYUWjQlffXqnXaZIMPkAO7HhFh8u5636xLRDHOUo2vpWSK0T2mqm6fKLXYn1KP6PAZ2gKg==}
+ /promise-polyfill/8.3.0:
+ resolution: {integrity: sha512-H5oELycFml5yto/atYqmjyigJoAo3+OXwolYiH7OfQuYlAqhxNvTfiNMbV9hsC6Yp83yE5r2KTVmtrG6R9i6Pg==}
dev: false
- /promise.allsettled/1.0.5:
- resolution: {integrity: sha512-tVDqeZPoBC0SlzJHzWGZ2NKAguVq2oiYj7gbggbiTvH2itHohijTp7njOUA0aQ/nl+0lr/r6egmhoYu63UZ/pQ==}
+ /promise.allsettled/1.0.7:
+ resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==}
engines: {node: '>= 0.4'}
dependencies:
- array.prototype.map: 1.0.4
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
- get-intrinsic: 1.1.1
+ array.prototype.map: 1.0.7
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ get-intrinsic: 1.2.4
iterate-value: 1.0.2
dev: true
- /promise.prototype.finally/3.1.3:
- resolution: {integrity: sha512-EXRF3fC9/0gz4qkt/f5EP5iW4kj9oFpBICNpCNOb/52+8nlHIX07FPLbi/q4qYBQ1xZqivMzTpNQSnArVASolQ==}
+ /promise.prototype.finally/3.1.8:
+ resolution: {integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ set-function-name: 2.0.2
dev: true
/promise/7.3.1:
@@ -28543,8 +30370,8 @@ packages:
asap: 2.0.6
dev: false
- /promise/8.1.0:
- resolution: {integrity: sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==}
+ /promise/8.3.0:
+ resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
dependencies:
asap: 2.0.6
@@ -28562,21 +30389,17 @@ packages:
kleur: 3.0.3
sisteransi: 1.0.5
- /prop-types-exact/1.2.0:
- resolution: {integrity: sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==}
+ /prop-types-exact/1.2.4:
+ resolution: {integrity: sha512-vKfETKgBHRCLQwZgpl0pGPvMFxCX/06dAkz5jwNYHfrU0I8bgVhryaHA6O/KlqwtQi0IdnjAhDiZqzD+uJuVjA==}
+ engines: {node: '>= 0.8'}
dependencies:
- has: 1.0.3
- object.assign: 4.1.2
- reflect.ownkeys: 0.2.0
+ es-errors: 1.3.0
+ hasown: 2.0.2
+ isarray: 2.0.5
+ object.assign: 4.1.5
+ reflect.ownkeys: 1.1.4
dev: true
- /prop-types/15.7.2:
- resolution: {integrity: sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==}
- dependencies:
- loose-envify: 1.4.0
- object-assign: 4.1.1
- react-is: 16.13.1
-
/prop-types/15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
dependencies:
@@ -28598,11 +30421,11 @@ packages:
ipaddr.js: 1.9.1
/proxy-from-env/1.0.0:
- resolution: {integrity: sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4=}
+ resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==}
dev: true
/prr/1.0.1:
- resolution: {integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=}
+ resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
/ps-tree/1.2.0:
resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==}
@@ -28613,10 +30436,10 @@ packages:
dev: true
/pseudomap/1.0.2:
- resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=}
+ resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
- /psl/1.8.0:
- resolution: {integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==}
+ /psl/1.9.0:
+ resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
/public-encrypt/4.0.3:
resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==}
@@ -28624,7 +30447,7 @@ packages:
bn.js: 4.12.0
browserify-rsa: 4.1.0
create-hash: 1.2.0
- parse-asn1: 5.1.6
+ parse-asn1: 5.1.7
randombytes: 2.1.0
safe-buffer: 5.2.1
@@ -28648,13 +30471,14 @@ packages:
pump: 2.0.1
/punycode/1.3.2:
- resolution: {integrity: sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=}
+ resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==}
+ dev: false
/punycode/1.4.1:
- resolution: {integrity: sha1-wNWmOycYgArY4esPpSachN1BhF4=}
+ resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
- /punycode/2.1.1:
- resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
+ /punycode/2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
/pupa/2.1.1:
@@ -28665,26 +30489,34 @@ packages:
dev: true
/q/1.5.1:
- resolution: {integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=}
+ resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
- /qs/6.10.1:
- resolution: {integrity: sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==}
+ /qs/6.10.4:
+ resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==}
engines: {node: '>=0.6'}
dependencies:
- side-channel: 1.0.4
+ side-channel: 1.0.6
dev: true
- /qs/6.5.2:
- resolution: {integrity: sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==}
+ /qs/6.11.0:
+ resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
+ engines: {node: '>=0.6'}
+ dependencies:
+ side-channel: 1.0.6
+
+ /qs/6.12.1:
+ resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==}
engines: {node: '>=0.6'}
+ dependencies:
+ side-channel: 1.0.6
- /qs/6.7.0:
- resolution: {integrity: sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==}
+ /qs/6.5.3:
+ resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
engines: {node: '>=0.6'}
/query-string/4.3.4:
- resolution: {integrity: sha1-u7aTucqRXCMlFbIosaArYJBD2+s=}
+ resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==}
engines: {node: '>=0.10.0'}
dependencies:
object-assign: 4.1.1
@@ -28694,20 +30526,21 @@ packages:
resolution: {integrity: sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==}
engines: {node: '>=6'}
dependencies:
- decode-uri-component: 0.2.0
+ decode-uri-component: 0.2.2
filter-obj: 1.1.0
split-on-first: 1.1.0
strict-uri-encode: 2.0.0
dev: false
/querystring-es3/0.2.1:
- resolution: {integrity: sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=}
+ resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==}
engines: {node: '>=0.4.x'}
/querystring/0.2.0:
- resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=}
+ resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==}
engines: {node: '>=0.4.x'}
deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
+ dev: false
/querystring/0.2.1:
resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==}
@@ -28738,15 +30571,15 @@ packages:
performance-now: 2.1.0
/railroad-diagrams/1.0.0:
- resolution: {integrity: sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz}
+ resolution: {integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==}
dev: true
- /ramda/0.21.0:
- resolution: {integrity: sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=}
+ /ramda/0.28.0:
+ resolution: {integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==}
dev: true
/randexp/0.4.6:
- resolution: {integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz}
+ resolution: {integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==}
engines: {node: '>=0.12'}
dependencies:
discontinuous-range: 1.0.0
@@ -28775,7 +30608,7 @@ packages:
safe-buffer: 5.2.1
/range-parser/1.2.0:
- resolution: {integrity: sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=}
+ resolution: {integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==}
engines: {node: '>= 0.6'}
dev: false
@@ -28783,32 +30616,54 @@ packages:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- /rangy/1.3.0:
- resolution: {integrity: sha1-t8mnCuoF5djNx0qNTIJz1pcnGQQ=}
+ /rangy/1.3.1:
+ resolution: {integrity: sha512-gfo1FOzdvcrcCR+wf0XMKPJBD3p2nHUw2wvNtuKsaHoI2dXQ9vH2QIpSQMV+mWLvKSqPfDNThhlyK8UN1hJijw==}
dev: false
/raven-js/3.27.2:
resolution: {integrity: sha512-mFWQcXnhRFEQe5HeFroPaEghlnqy7F5E2J3Fsab189ondqUzcjwSVi7el7F36cr6PvQYXoZ1P2F5CSF2/azeMQ==}
+ deprecated: Please upgrade to @sentry/browser. See the migration guide https://bit.ly/3ybOlo7
dev: false
- /raw-body/2.4.0:
- resolution: {integrity: sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==}
+ /raw-body/2.5.2:
+ resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
dependencies:
- bytes: 3.1.0
- http-errors: 1.7.2
+ bytes: 3.1.2
+ http-errors: 2.0.0
iconv-lite: 0.4.24
unpipe: 1.0.0
- /raw-loader/3.1.0_webpack@4.46.0:
+ /raw-loader/3.1.0_webpack@4.42.0:
resolution: {integrity: sha512-lzUVMuJ06HF4rYveaz9Tv0WRlUMxJ0Y1hgSkkgg+50iEdaI0TthyEDe08KIHb0XsF6rn8WYTqPCaGTZg3sX+qA==}
engines: {node: '>= 8.9.0'}
peerDependencies:
webpack: ^4.3.0
dependencies:
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
schema-utils: 2.7.1
- webpack: 4.46.0
+ webpack: 4.42.0
+ dev: true
+
+ /raw-loader/4.0.2:
+ resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ loader-utils: 2.0.4
+ schema-utils: 3.3.0
+ dev: false
+
+ /raw-loader/4.0.2_webpack@5.92.1:
+ resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ loader-utils: 2.0.4
+ schema-utils: 3.3.0
+ webpack: 5.92.1_webpack-cli@4.10.0
dev: true
/rbush/2.0.2:
@@ -28829,10 +30684,10 @@ packages:
dependencies:
deep-extend: 0.6.0
ini: 1.3.8
- minimist: 1.2.5
+ minimist: 1.2.8
strip-json-comments: 2.0.1
- /react-apollo/3.1.5_x2iasnk3pmjd3uyfcc43iysb64:
+ /react-apollo/3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa:
resolution: {integrity: sha512-xOxMqxORps+WHrUYbjVHPliviomefOpu5Sh35oO3osuOyPTxvrljdfTLGCggMhcXBsDljtS5Oy4g+ijWg3D4JQ==}
peerDependencies:
'@types/react': ^16.8.0
@@ -28841,13 +30696,13 @@ packages:
react: ^16.8.0
react-dom: ^16.8.0
dependencies:
- '@apollo/react-common': 3.1.4_lqwbfzxcvg4hjliqxaocdoh5sy
- '@apollo/react-components': 3.1.5_x2iasnk3pmjd3uyfcc43iysb64
- '@apollo/react-hoc': 3.1.5_x2iasnk3pmjd3uyfcc43iysb64
- '@apollo/react-hooks': 3.1.5_x2iasnk3pmjd3uyfcc43iysb64
- '@apollo/react-ssr': 3.1.5_x2iasnk3pmjd3uyfcc43iysb64
- apollo-client: 2.6.10_graphql@15.7.2
- graphql: 15.7.2
+ '@apollo/react-common': 3.1.4_ozbojwhab272yq4lsqhm33tngq
+ '@apollo/react-components': 3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa
+ '@apollo/react-hoc': 3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa
+ '@apollo/react-hooks': 3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa
+ '@apollo/react-ssr': 3.1.5_a5r3sa2vi7n3vwtkhxgthsfofa
+ apollo-client: 2.6.10_graphql@15.8.0
+ graphql: 15.8.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
transitivePeerDependencies:
@@ -28871,48 +30726,48 @@ packages:
resolution: {integrity: sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==}
engines: {node: '>=6'}
dependencies:
- core-js: 3.19.1
+ core-js: 3.37.1
object-assign: 4.1.1
- promise: 8.1.0
+ promise: 8.3.0
raf: 3.4.1
- regenerator-runtime: 0.13.9
- whatwg-fetch: 3.6.2
+ regenerator-runtime: 0.13.11
+ whatwg-fetch: 3.6.20
dev: false
/react-app-polyfill/2.0.0:
resolution: {integrity: sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==}
engines: {node: '>=10'}
dependencies:
- core-js: 3.19.1
+ core-js: 3.37.1
object-assign: 4.1.1
- promise: 8.1.0
+ promise: 8.3.0
raf: 3.4.1
- regenerator-runtime: 0.13.9
- whatwg-fetch: 3.6.2
+ regenerator-runtime: 0.13.11
+ whatwg-fetch: 3.6.20
- /react-clientside-effect/1.2.5:
- resolution: {integrity: sha512-2bL8qFW1TGBHozGGbVeyvnggRpMjibeZM2536AKNENLECutp2yfs44IL8Hmpn8qjFQ2K7A9PnYf3vc7aQq/cPA==}
+ /react-clientside-effect/1.2.6:
+ resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==}
peerDependencies:
- react: ^15.3.0 || ^16.0.0 || ^17.0.0
+ react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
dev: false
- /react-clientside-effect/1.2.5_react@16.14.0:
- resolution: {integrity: sha512-2bL8qFW1TGBHozGGbVeyvnggRpMjibeZM2536AKNENLECutp2yfs44IL8Hmpn8qjFQ2K7A9PnYf3vc7aQq/cPA==}
+ /react-clientside-effect/1.2.6_react@16.14.0:
+ resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==}
peerDependencies:
- react: ^15.3.0 || ^16.0.0 || ^17.0.0
+ react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
react: 16.14.0
dev: true
- /react-clientside-effect/1.2.5_react@17.0.2:
- resolution: {integrity: sha512-2bL8qFW1TGBHozGGbVeyvnggRpMjibeZM2536AKNENLECutp2yfs44IL8Hmpn8qjFQ2K7A9PnYf3vc7aQq/cPA==}
+ /react-clientside-effect/1.2.6_react@17.0.2:
+ resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==}
peerDependencies:
- react: ^15.3.0 || ^16.0.0 || ^17.0.0
+ react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
react: 17.0.2
dev: false
@@ -28923,9 +30778,9 @@ packages:
dependencies:
lodash: 4.17.21
material-colors: 1.2.6
- prop-types: 15.7.2
+ prop-types: 15.8.1
reactcss: 1.2.3
- tinycolor2: 1.4.2
+ tinycolor2: 1.6.0
dev: false
/react-color/2.19.3:
@@ -28939,7 +30794,7 @@ packages:
material-colors: 1.2.6
prop-types: 15.8.1
reactcss: 1.2.3
- tinycolor2: 1.4.2
+ tinycolor2: 1.6.0
dev: false
/react-color/2.19.3_react@16.14.0:
@@ -28954,7 +30809,7 @@ packages:
prop-types: 15.8.1
react: 16.14.0
reactcss: 1.2.3_react@16.14.0
- tinycolor2: 1.4.2
+ tinycolor2: 1.6.0
dev: false
/react-color/2.19.3_react@17.0.2:
@@ -28969,11 +30824,11 @@ packages:
prop-types: 15.8.1
react: 17.0.2
reactcss: 1.2.3_react@17.0.2
- tinycolor2: 1.4.2
+ tinycolor2: 1.6.0
dev: false
/react-cookie/1.0.5:
- resolution: {integrity: sha1-I0GQvVXd/qNhREqJyHMHerar9lE=}
+ resolution: {integrity: sha512-q/DOWYCKpUX3FOvU4sMUdz298QQSrQanYS1QT6CFHs5vODhxsojaBObjMp4NFqTiQeT5orJRmELlekt2z5StZQ==}
dependencies:
cookie: 0.3.1
is-node: 1.0.2
@@ -28994,7 +30849,7 @@ packages:
react: '>= 16.3.0'
dependencies:
countup.js: 1.9.3
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
warning: 4.0.3
dev: false
@@ -29005,7 +30860,7 @@ packages:
react: '>= 16.3.0'
dependencies:
countup.js: 1.9.3
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
warning: 4.0.3
dev: false
@@ -29013,6 +30868,12 @@ packages:
/react-dev-utils/10.2.1_crohzwvpukyphkhrd5alcafdre:
resolution: {integrity: sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ==}
engines: {node: '>=8.10'}
+ peerDependencies:
+ typescript: '>=2.7'
+ webpack: '>=4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
'@babel/code-frame': 7.8.3
address: 1.1.2
@@ -29033,22 +30894,28 @@ packages:
loader-utils: 1.2.3
open: 7.4.2
pkg-up: 3.1.0
- react-error-overlay: 6.0.9
+ react-error-overlay: 6.0.11
recursive-readdir: 2.2.2
shell-quote: 1.7.2
strip-ansi: 6.0.0
text-table: 0.2.0
+ typescript: 3.9.10
+ webpack: 4.42.0
transitivePeerDependencies:
- eslint
- supports-color
- - typescript
- vue-template-compiler
- - webpack
dev: false
- /react-dev-utils/11.0.4_dcjss5q5ylmpylxyjqs364hobq:
+ /react-dev-utils/11.0.4_73mvphemx5yrjoz5ocxp4i3m2y:
resolution: {integrity: sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==}
engines: {node: '>=10'}
+ peerDependencies:
+ typescript: '>=2.7'
+ webpack: '>=4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
'@babel/code-frame': 7.10.4
address: 1.1.2
@@ -29059,7 +30926,7 @@ packages:
escape-string-regexp: 2.0.0
filesize: 6.1.0
find-up: 4.1.0
- fork-ts-checker-webpack-plugin: 4.1.6_dcjss5q5ylmpylxyjqs364hobq
+ fork-ts-checker-webpack-plugin: 4.1.6_73mvphemx5yrjoz5ocxp4i3m2y
global-modules: 2.0.0
globby: 11.0.1
gzip-size: 5.1.1
@@ -29069,21 +30936,27 @@ packages:
open: 7.4.2
pkg-up: 3.1.0
prompts: 2.4.0
- react-error-overlay: 6.0.9
+ react-error-overlay: 6.0.11
recursive-readdir: 2.2.2
shell-quote: 1.7.2
strip-ansi: 6.0.0
text-table: 0.2.0
+ typescript: 4.9.5
+ webpack: 4.44.2
transitivePeerDependencies:
- eslint
- supports-color
- - typescript
- vue-template-compiler
- - webpack
- /react-dev-utils/9.1.0_webpack@4.46.0:
+ /react-dev-utils/9.1.0_webpack@4.42.0:
resolution: {integrity: sha512-X2KYF/lIGyGwP/F/oXgGDF24nxDA2KC4b7AFto+eqzc/t838gpSGiaU8trTqHXOohuLxxc5qi1eDzsl9ucPDpg==}
engines: {node: '>=8.10'}
+ peerDependencies:
+ typescript: '>=2.7'
+ webpack: '>=4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
'@babel/code-frame': 7.5.5
address: 1.1.2
@@ -29094,7 +30967,7 @@ packages:
escape-string-regexp: 1.0.5
filesize: 3.6.1
find-up: 3.0.0
- fork-ts-checker-webpack-plugin: 1.5.0_webpack@4.46.0
+ fork-ts-checker-webpack-plugin: 1.5.0_webpack@4.42.0
global-modules: 2.0.0
globby: 8.0.2
gzip-size: 5.1.1
@@ -29104,18 +30977,17 @@ packages:
loader-utils: 1.2.3
open: 6.4.0
pkg-up: 2.0.0
- react-error-overlay: 6.0.9
+ react-error-overlay: 6.0.11
recursive-readdir: 2.2.2
shell-quote: 1.7.2
sockjs-client: 1.4.0
strip-ansi: 5.2.0
text-table: 0.2.0
+ webpack: 4.42.0
transitivePeerDependencies:
- eslint
- supports-color
- - typescript
- vue-template-compiler
- - webpack
dev: true
/react-device-detect/1.17.0_wcqkhtmu7mswc6yz4uyexck3ty:
@@ -29126,37 +30998,37 @@ packages:
dependencies:
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- ua-parser-js: 0.7.31
+ ua-parser-js: 0.7.38
dev: false
- /react-device-detect/2.1.2:
- resolution: {integrity: sha512-N42xttwez3ECgu4KpOL2ICesdfoz8NCBfmc1rH9FRYSjH7NmMyANPSrQ3EvAtJyj/6TzJNhrANSO38iXjCB2Ug==}
+ /react-device-detect/2.2.3:
+ resolution: {integrity: sha512-buYY3qrCnQVlIFHrC5UcUoAj7iANs/+srdkwsnNjI7anr3Tt7UY6MqNxtMLlr0tMBied0O49UZVK8XKs3ZIiPw==}
peerDependencies:
- react: '>= 0.14.0 < 18.0.0'
- react-dom: '>= 0.14.0 < 18.0.0'
+ react: '>= 0.14.0'
+ react-dom: '>= 0.14.0'
dependencies:
- ua-parser-js: 0.7.31
+ ua-parser-js: 1.0.38
dev: false
- /react-device-detect/2.1.2_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-N42xttwez3ECgu4KpOL2ICesdfoz8NCBfmc1rH9FRYSjH7NmMyANPSrQ3EvAtJyj/6TzJNhrANSO38iXjCB2Ug==}
+ /react-device-detect/2.2.3_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-buYY3qrCnQVlIFHrC5UcUoAj7iANs/+srdkwsnNjI7anr3Tt7UY6MqNxtMLlr0tMBied0O49UZVK8XKs3ZIiPw==}
peerDependencies:
- react: '>= 0.14.0 < 18.0.0'
- react-dom: '>= 0.14.0 < 18.0.0'
+ react: '>= 0.14.0'
+ react-dom: '>= 0.14.0'
dependencies:
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- ua-parser-js: 0.7.31
+ ua-parser-js: 1.0.38
dev: false
- /react-docgen/5.4.0:
- resolution: {integrity: sha512-JBjVQ9cahmNlfjMGxWUxJg919xBBKAoy3hgDgKERbR+BcF4ANpDuzWAScC7j27hZfd8sJNmMPOLWo9+vB/XJEQ==}
+ /react-docgen/5.4.3:
+ resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==}
engines: {node: '>=8.10.0'}
hasBin: true
dependencies:
- '@babel/core': 7.17.5
- '@babel/generator': 7.17.3
- '@babel/runtime': 7.17.2
+ '@babel/core': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/runtime': 7.13.10
ast-types: 0.14.2
commander: 2.20.3
doctrine: 3.0.0
@@ -29175,7 +31047,7 @@ packages:
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
scheduler: 0.19.1
@@ -29195,38 +31067,38 @@ packages:
react: '>= 16.3.0'
react-dom: '>= 16.3.0'
dependencies:
- classnames: 2.3.1
- prop-types: 15.7.2
+ classnames: 2.5.1
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
dev: false
- /react-draggable/4.4.4_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==}
+ /react-draggable/4.4.6_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==}
peerDependencies:
react: '>= 16.3.0'
react-dom: '>= 16.3.0'
dependencies:
- clsx: 1.1.1
- prop-types: 15.7.2
+ clsx: 1.2.1
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
dev: false
- /react-draggable/4.4.4_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==}
+ /react-draggable/4.4.6_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==}
peerDependencies:
react: '>= 16.3.0'
react-dom: '>= 16.3.0'
dependencies:
- clsx: 1.1.1
- prop-types: 15.7.2
+ clsx: 1.2.1
+ prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
dev: true
- /react-error-overlay/6.0.9:
- resolution: {integrity: sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==}
+ /react-error-overlay/6.0.11:
+ resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
/react-fast-compare/2.0.4:
resolution: {integrity: sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==}
@@ -29234,110 +31106,102 @@ packages:
/react-fast-compare/3.2.0:
resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==}
+ dev: false
- /react-final-form-arrays/3.1.3_final-form-arrays@3.0.2:
- resolution: {integrity: sha512-dzBiLfbr9l1YRExARBpJ8uA/djBenCvFrbrsXjd362joDl3vT+WhmMKKr6HDQMJffjA8T4gZ3n5+G9M59yZfuQ==}
+ /react-fast-compare/3.2.2:
+ resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
+ dev: true
+
+ /react-final-form-arrays/3.1.4_final-form-arrays@3.1.0:
+ resolution: {integrity: sha512-siVFAolUAe29rMR6u8VwepoysUcUdh6MLV2OWnCtKpsPRUdT9VUgECjAPaVMAH2GROZNiVB9On1H9MMrm9gdpg==}
peerDependencies:
final-form: ^4.15.0
final-form-arrays: '>=1.0.4'
- react: ^16.8.0 || ^17.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-final-form: ^6.2.1
dependencies:
- '@babel/runtime': 7.16.3
- final-form-arrays: 3.0.2
+ '@babel/runtime': 7.24.7
+ final-form-arrays: 3.1.0
dev: false
- /react-final-form/6.5.7_soexlzopzjzlvc3z6yg6dqhpvi:
- resolution: {integrity: sha512-o7tvJXB+McGiXOILqIC8lnOcX4aLhIBiF/Xi9Qet35b7XOS8R7KL8HLRKTfnZWQJm6MCE15v1U0SFive0NcxyA==}
+ /react-final-form/6.5.9_3yxkfq5ui5vew7hpdzcaudhbla:
+ resolution: {integrity: sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==}
peerDependencies:
- final-form: 4.20.4
- react: ^16.8.0 || ^17.0.0
+ final-form: ^4.20.4
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.17.2
- final-form: 4.20.4
+ '@babel/runtime': 7.24.7
+ final-form: 4.20.10
react: 17.0.2
dev: false
- /react-focus-lock/2.5.2:
- resolution: {integrity: sha512-WzpdOnEqjf+/A3EH9opMZWauag7gV0BxFl+EY4ElA4qFqYsUsBLnmo2sELbN5OC30S16GAWMy16B9DLPpdJKAQ==}
+ /react-focus-lock/2.12.1_nhfnajythmqulrdwzj5xx6c5qy:
+ resolution: {integrity: sha512-lfp8Dve4yJagkHiFrC1bGtib3mF2ktqwPJw4/WGcgPW+pJ/AVQA5X2vI7xgp13FcxFEpYBBHpXai/N2DBNC0Jw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.17.2
- focus-lock: 0.9.2
- prop-types: 15.7.2
- react-clientside-effect: 1.2.5
- use-callback-ref: 1.2.5
- use-sidecar: 1.0.5
- transitivePeerDependencies:
- - '@types/react'
- dev: false
+ '@babel/runtime': 7.13.10
+ '@types/react': 16.14.60
+ focus-lock: 1.3.5
+ prop-types: 15.8.1
+ react: 16.14.0
+ react-clientside-effect: 1.2.6_react@16.14.0
+ use-callback-ref: 1.3.2_nhfnajythmqulrdwzj5xx6c5qy
+ use-sidecar: 1.1.2_nhfnajythmqulrdwzj5xx6c5qy
+ dev: true
- /react-focus-lock/2.5.2_oqfjjbydlevwhoma3gspdo4w3y:
+ /react-focus-lock/2.5.2:
resolution: {integrity: sha512-WzpdOnEqjf+/A3EH9opMZWauag7gV0BxFl+EY4ElA4qFqYsUsBLnmo2sELbN5OC30S16GAWMy16B9DLPpdJKAQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
focus-lock: 0.9.2
- prop-types: 15.7.2
- react: 17.0.2
- react-clientside-effect: 1.2.5_react@17.0.2
- use-callback-ref: 1.2.5_oqfjjbydlevwhoma3gspdo4w3y
- use-sidecar: 1.0.5_react@17.0.2
+ prop-types: 15.8.1
+ react-clientside-effect: 1.2.6
+ use-callback-ref: 1.3.2
+ use-sidecar: 1.1.2
transitivePeerDependencies:
- '@types/react'
dev: false
- /react-focus-lock/2.5.2_qewexek3mggvbeokd2goivthmy:
+ /react-focus-lock/2.5.2_3r2q4vqikxqiwlpkbpcd6cn6l4:
resolution: {integrity: sha512-WzpdOnEqjf+/A3EH9opMZWauag7gV0BxFl+EY4ElA4qFqYsUsBLnmo2sELbN5OC30S16GAWMy16B9DLPpdJKAQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
focus-lock: 0.9.2
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
- react-clientside-effect: 1.2.5_react@17.0.2
- use-callback-ref: 1.2.5_qewexek3mggvbeokd2goivthmy
- use-sidecar: 1.0.5_react@17.0.2
+ react-clientside-effect: 1.2.6_react@17.0.2
+ use-callback-ref: 1.3.2_3r2q4vqikxqiwlpkbpcd6cn6l4
+ use-sidecar: 1.1.2_3r2q4vqikxqiwlpkbpcd6cn6l4
transitivePeerDependencies:
- '@types/react'
dev: false
- /react-focus-lock/2.6.0_3f5okroqb6j7hwu5ne6ch3trz4:
- resolution: {integrity: sha512-2yB5KWyaefbvFDgqvsg/KpIjbqVlhIY2c/dyDcokDLhB3Ib7I4bjsrta5OkI5euUoIu5xBTyBwIQZPykUJAr1g==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- '@babel/runtime': 7.16.3
- focus-lock: 0.9.2
- prop-types: 15.7.2
- react: 16.14.0
- react-clientside-effect: 1.2.5_react@16.14.0
- use-callback-ref: 1.2.5_3f5okroqb6j7hwu5ne6ch3trz4
- use-sidecar: 1.0.5_react@16.14.0
- transitivePeerDependencies:
- - '@types/react'
- dev: true
-
/react-fontawesome/1.7.1_react@17.0.2:
resolution: {integrity: sha512-kottReWW1I9Uupub6A5YX4VK7qfpFnEjAcm5zB4Aepst7iofONT27GJYdTcRsj7q5uQu9PXBL7GsxAFKANNUVg==}
engines: {node: '>=0.10.0'}
peerDependencies:
react: '>=0.12.0'
dependencies:
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
dev: false
- /react-ga/2.5.6_prop-types@15.7.2:
+ /react-ga/2.5.6_prop-types@15.8.1:
resolution: {integrity: sha512-g04dz6zrbdHRxVaURPWT3RUbjLflh74sS6dCuhGeZupj7ii+UEt9lwTjALb2ST2w+7wAmzG1YqYlNX4yvRXe1g==}
peerDependencies:
prop-types: ^15.6.0
react: ^15.6.2 || ^16.0
dependencies:
- prop-types: 15.7.2
+ prop-types: 15.8.1
dev: false
/react-ga/2.7.0_react@17.0.2:
@@ -29349,13 +31213,13 @@ packages:
react: 17.0.2
dev: false
- /react-ga/3.3.0_uutjjb2r36qagpytglxm7vtgnq:
- resolution: {integrity: sha512-o8RScHj6Lb8cwy3GMrVH6NJvL+y0zpJvKtc0+wmH7Bt23rszJmnqEQxRbyrqUzk9DTJIHoP42bfO5rswC9SWBQ==}
+ /react-ga/3.3.1_4vyaxm4rsh2mpfdenvlqy7kmya:
+ resolution: {integrity: sha512-4Vc0W5EvXAXUN/wWyxvsAKDLLgtJ3oLmhYYssx+YzphJpejtOst6cbIHCIyF50Fdxuf5DDKqRYny24yJ2y7GFQ==}
peerDependencies:
prop-types: ^15.6.0
- react: ^15.6.2 || ^16.0 || ^17
+ react: ^15.6.2 || ^16.0 || ^17 || ^18
dependencies:
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
dev: false
@@ -29375,22 +31239,37 @@ packages:
peerDependencies:
react: ^16.8.0
dependencies:
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
dev: false
- /react-helmet-async/1.1.2_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-LTTzDDkyIleT/JJ6T/uqx7Y8qi1EuPPSiJawQY/nHHz0h7SPDT6HxP1YDDQx/fzcVxCqpWEEMS3QdrSrNkJYhg==}
+ /react-helmet-async/1.3.0_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
peerDependencies:
- react: ^16.6.0 || ^17.0.0
- react-dom: ^16.6.0 || ^17.0.0
+ react: ^16.6.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
invariant: 2.2.4
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- react-fast-compare: 3.2.0
+ react-fast-compare: 3.2.2
+ shallowequal: 1.1.0
+ dev: true
+
+ /react-helmet-async/1.3.0_zkbncb2mrwigeq3keybbaytzya:
+ resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
+ peerDependencies:
+ react: ^16.6.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ '@babel/runtime': 7.13.10
+ invariant: 2.2.4
+ prop-types: 15.8.1
+ react: 16.14.0
+ react-dom: 17.0.2_react@17.0.2
+ react-fast-compare: 3.2.2
shallowequal: 1.1.0
dev: true
@@ -29400,7 +31279,7 @@ packages:
react: '>=15.0.0'
dependencies:
object-assign: 4.1.1
- prop-types: 15.7.2
+ prop-types: 15.8.1
react-fast-compare: 2.0.4
react-side-effect: 1.2.0
dev: false
@@ -29414,32 +31293,48 @@ packages:
peerDependencies:
react: '>= 0.14.0'
dependencies:
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
dev: true
- /react-i18next/11.14.2_ftpfmoxqd2lj3y767446p7m2ce:
- resolution: {integrity: sha512-fmDhwNA0zDmSEL3BBT5qwNMvxrKu25oXDDAZyHprfB0AHZmWXfBmRLf8MX8i1iBd2I2C2vsA2D9wxYBIwzooEQ==}
+ /react-i18next/11.18.6_r4vbf6j3grmryggditgyffazwe:
+ resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==}
peerDependencies:
i18next: '>= 19.0.0'
react: '>= 16.8.0'
+ react-dom: '*'
+ react-native: '*'
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+ react-native:
+ optional: true
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.24.7
html-parse-stringify: 3.0.1
i18next: 19.9.2
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
dev: false
- /react-i18next/11.14.2_fx4b3zen7tdcdwbld3lkpcycbu:
- resolution: {integrity: sha512-fmDhwNA0zDmSEL3BBT5qwNMvxrKu25oXDDAZyHprfB0AHZmWXfBmRLf8MX8i1iBd2I2C2vsA2D9wxYBIwzooEQ==}
+ /react-i18next/11.18.6_vuqjwpwape4qikc5ioig4ztvbm:
+ resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==}
peerDependencies:
i18next: '>= 19.0.0'
react: '>= 16.8.0'
+ react-dom: '*'
+ react-native: '*'
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+ react-native:
+ optional: true
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.24.7
html-parse-stringify: 3.0.1
i18next: 20.6.1
react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
dev: false
/react-immutable-proptypes/2.2.0_immutable@3.8.2:
@@ -29451,12 +31346,12 @@ packages:
invariant: 2.2.4
dev: false
- /react-immutable-proptypes/2.2.0_immutable@4.0.0:
+ /react-immutable-proptypes/2.2.0_immutable@4.3.6:
resolution: {integrity: sha512-Vf4gBsePlwdGvSZoLSBfd4HAP93HDauMY4fDjXhreg/vg6F3Fj/MXDNyTbltPC/xZKmZc+cjLu3598DdYK6sgQ==}
peerDependencies:
immutable: '>=3.6.2'
dependencies:
- immutable: 4.0.0
+ immutable: 4.3.6
invariant: 2.2.4
dev: false
@@ -29465,7 +31360,7 @@ packages:
peerDependencies:
react: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0
dependencies:
- prop-types: 15.7.2
+ prop-types: 15.8.1
dev: false
/react-input-autosize/3.0.0:
@@ -29502,13 +31397,13 @@ packages:
peerDependencies:
react: ^16.8.4
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
is-dom: 1.1.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
dev: true
- /react-intl/2.7.2_prop-types@15.7.2:
+ /react-intl/2.7.2_prop-types@15.8.1:
resolution: {integrity: sha512-3dcNGLqEw2FKkX+1L2WYLgjP0MVJkvWuVd1uLcnwifIQe8JQvnd9Bss4hb4Gvg/YhBIRcs4LM6C2bAgyklucjw==}
peerDependencies:
prop-types: ^15.5.4
@@ -29519,7 +31414,7 @@ packages:
intl-messageformat: 2.2.0
intl-relativeformat: 2.2.0
invariant: 2.2.4
- prop-types: 15.7.2
+ prop-types: 15.8.1
dev: false
/react-intl/2.7.2_react@17.0.2:
@@ -29536,49 +31431,49 @@ packages:
react: 17.0.2
dev: false
- /react-intl/5.24.3_deefhllol2hu2mngzdkosoyjay:
- resolution: {integrity: sha512-SrV0Qs8Rg+Mlo2u0OqGJZ3pH3cF0lv3cVtHvVPksptrjlgvt6Lbc4vfzD1nPog/CPKzSSdNlLoMs5suHFdBnTw==}
+ /react-intl/5.25.1_bc2glf7glpp5banumrk2yqrvyu:
+ resolution: {integrity: sha512-pkjdQDvpJROoXLMltkP/5mZb0/XqrqLoPGKUCfbdkP8m6U9xbK40K51Wu+a4aQqTEvEK5lHBk0fWzUV72SJ3Hg==}
peerDependencies:
- react: ^16.3.0 || 17
+ react: ^16.3.0 || 17 || 18
typescript: ^4.5
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@formatjs/ecma402-abstract': 1.11.1
- '@formatjs/icu-messageformat-parser': 2.0.16
- '@formatjs/intl': 1.18.3_typescript@4.6.2
- '@formatjs/intl-displaynames': 5.4.0
- '@formatjs/intl-listformat': 6.5.0
- '@types/hoist-non-react-statics': 3.3.1
- '@types/react': 17.0.35
+ '@formatjs/ecma402-abstract': 1.11.4
+ '@formatjs/icu-messageformat-parser': 2.1.0
+ '@formatjs/intl': 2.2.1_typescript@4.9.5
+ '@formatjs/intl-displaynames': 5.4.3
+ '@formatjs/intl-listformat': 6.5.3
+ '@types/hoist-non-react-statics': 3.3.5
+ '@types/react': 16.14.60
hoist-non-react-statics: 3.3.2
- intl-messageformat: 9.11.2
+ intl-messageformat: 9.13.0
react: 16.14.0
- tslib: 2.3.1
- typescript: 4.6.2
+ tslib: 2.6.3
+ typescript: 4.9.5
dev: false
- /react-intl/5.24.3_react@17.0.2:
- resolution: {integrity: sha512-SrV0Qs8Rg+Mlo2u0OqGJZ3pH3cF0lv3cVtHvVPksptrjlgvt6Lbc4vfzD1nPog/CPKzSSdNlLoMs5suHFdBnTw==}
+ /react-intl/5.25.1_react@17.0.2:
+ resolution: {integrity: sha512-pkjdQDvpJROoXLMltkP/5mZb0/XqrqLoPGKUCfbdkP8m6U9xbK40K51Wu+a4aQqTEvEK5lHBk0fWzUV72SJ3Hg==}
peerDependencies:
- react: ^16.3.0 || 17
+ react: ^16.3.0 || 17 || 18
typescript: ^4.5
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@formatjs/ecma402-abstract': 1.11.1
- '@formatjs/icu-messageformat-parser': 2.0.16
- '@formatjs/intl': 1.18.3
- '@formatjs/intl-displaynames': 5.4.0
- '@formatjs/intl-listformat': 6.5.0
- '@types/hoist-non-react-statics': 3.3.1
- '@types/react': 17.0.35
+ '@formatjs/ecma402-abstract': 1.11.4
+ '@formatjs/icu-messageformat-parser': 2.1.0
+ '@formatjs/intl': 2.2.1
+ '@formatjs/intl-displaynames': 5.4.3
+ '@formatjs/intl-listformat': 6.5.3
+ '@types/hoist-non-react-statics': 3.3.5
+ '@types/react': 16.14.60
hoist-non-react-statics: 3.3.2
- intl-messageformat: 9.11.2
+ intl-messageformat: 9.13.0
react: 17.0.2
- tslib: 2.3.1
+ tslib: 2.6.3
dev: true
/react-is/16.13.1:
@@ -29588,22 +31483,22 @@ packages:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
/react-lazy-cache/3.0.1:
- resolution: {integrity: sha1-DcZNON8XZ+93Z4xclBkAZMsRsM0=}
+ resolution: {integrity: sha512-CKxkpa3paWSi0oyVRsmNyBpPRmeihxMYY+bEE3xAtXcqJPWaeqzlCI4MP1lWbuUzwqcTX8P5UMxGZop/qg6Y6w==}
engines: {node: '>= 0.10.0'}
dependencies:
- deep-equal: 1.1.1
+ deep-equal: 1.1.2
dev: false
/react-lifecycles-compat/3.0.4:
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
- /react-number-format/4.8.0:
- resolution: {integrity: sha512-oGGiQpqzvKTR5PD2/AJbyUsci8jyupaoKxpuSPevjpWHMhFkUtmo390t+EIpJOgnuAHZogLu6PHiXgb/OXETKA==}
+ /react-number-format/4.9.4:
+ resolution: {integrity: sha512-Gq20Z3ugqPLFgeaidnx5on9cNpbQZntPN3QgNAL/WJrNNlQnNznY0LCx7g8xtssmRBw0/hw+SCqw6zAcajooiA==}
peerDependencies:
- react: ^0.14 || ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0
- react-dom: ^0.14 || ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0
+ react: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
- prop-types: 15.7.2
+ prop-types: 15.8.1
dev: false
/react-popper-tooltip/2.11.1_wcqkhtmu7mswc6yz4uyexck3ty:
@@ -29612,22 +31507,34 @@ packages:
react: ^16.6.0
react-dom: ^16.6.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
react-popper: 1.3.11_react@16.14.0
dev: true
+ /react-popper-tooltip/2.11.1_zkbncb2mrwigeq3keybbaytzya:
+ resolution: {integrity: sha512-04A2f24GhyyMicKvg/koIOQ5BzlrRbKiAgP6L+Pdj1MVX3yJ1NeZ8+EidndQsbejFT55oW1b++wg2Z8KlAyhfQ==}
+ peerDependencies:
+ react: ^16.6.0
+ react-dom: ^16.6.0
+ dependencies:
+ '@babel/runtime': 7.13.10
+ react: 16.14.0
+ react-dom: 17.0.2_react@17.0.2
+ react-popper: 1.3.11_react@16.14.0
+ dev: true
+
/react-popper/1.3.11_react@16.14.0:
resolution: {integrity: sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==}
peerDependencies:
react: 0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.17.2
- '@hypnosphi/create-react-context': 0.3.1_uutjjb2r36qagpytglxm7vtgnq
- deep-equal: 1.1.1
+ '@babel/runtime': 7.24.7
+ '@hypnosphi/create-react-context': 0.3.1_4vyaxm4rsh2mpfdenvlqy7kmya
+ deep-equal: 1.1.2
popper.js: 1.16.1
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
typed-styles: 0.0.7
warning: 4.0.3
@@ -29640,7 +31547,7 @@ packages:
react-dom: ~16
dependencies:
jsqr: 1.4.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
webrtc-adapter: 7.7.1
dev: false
@@ -29655,14 +31562,14 @@ packages:
lodash: 4.17.21
lodash-es: 4.17.21
loose-envify: 1.4.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
redux: 3.7.2
dev: false
- /react-redux/7.2.6_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-10RPdsz0UUrRL1NZE0ejTkucnclYSgXp5q+tB5SWx2qeG2ZJQJyymgAhwKy73yiL/13btfB6fPr+rgbMAaZIAQ==}
+ /react-redux/7.2.9_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==}
peerDependencies:
- react: ^16.8.3 || ^17
+ react: ^16.8.3 || ^17 || ^18
react-dom: '*'
react-native: '*'
peerDependenciesMeta:
@@ -29671,20 +31578,20 @@ packages:
react-native:
optional: true
dependencies:
- '@babel/runtime': 7.16.3
- '@types/react-redux': 7.1.22
+ '@babel/runtime': 7.24.7
+ '@types/react-redux': 7.1.33
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-is: 17.0.2
dev: false
- /react-redux/7.2.6_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-10RPdsz0UUrRL1NZE0ejTkucnclYSgXp5q+tB5SWx2qeG2ZJQJyymgAhwKy73yiL/13btfB6fPr+rgbMAaZIAQ==}
+ /react-redux/7.2.9_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==}
peerDependencies:
- react: ^16.8.3 || ^17
+ react: ^16.8.3 || ^17 || ^18
react-dom: '*'
react-native: '*'
peerDependenciesMeta:
@@ -29693,11 +31600,11 @@ packages:
react-native:
optional: true
dependencies:
- '@babel/runtime': 7.16.3
- '@types/react-redux': 7.1.22
+ '@babel/runtime': 7.24.7
+ '@types/react-redux': 7.1.33
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
react-is: 17.0.2
@@ -29707,50 +31614,34 @@ packages:
resolution: {integrity: sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==}
engines: {node: '>=0.10.0'}
- /react-remove-scroll-bar/2.2.0:
- resolution: {integrity: sha512-UU9ZBP1wdMR8qoUs7owiVcpaPwsQxUDC2lypP6mmixaGlARZa7ZIBx1jcuObLdhMOvCsnZcvetOho0wzPa9PYg==}
- engines: {node: '>=8.5.0'}
- peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- react-style-singleton: 2.1.1
- tslib: 1.14.1
- dev: false
-
- /react-remove-scroll-bar/2.2.0_oqfjjbydlevwhoma3gspdo4w3y:
- resolution: {integrity: sha512-UU9ZBP1wdMR8qoUs7owiVcpaPwsQxUDC2lypP6mmixaGlARZa7ZIBx1jcuObLdhMOvCsnZcvetOho0wzPa9PYg==}
- engines: {node: '>=8.5.0'}
+ /react-remove-scroll-bar/2.3.6:
+ resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
+ engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 16.14.21
- react: 17.0.2
- react-style-singleton: 2.1.1_oqfjjbydlevwhoma3gspdo4w3y
- tslib: 1.14.1
+ react-style-singleton: 2.2.1
+ tslib: 2.6.3
dev: false
- /react-remove-scroll-bar/2.2.0_qewexek3mggvbeokd2goivthmy:
- resolution: {integrity: sha512-UU9ZBP1wdMR8qoUs7owiVcpaPwsQxUDC2lypP6mmixaGlARZa7ZIBx1jcuObLdhMOvCsnZcvetOho0wzPa9PYg==}
- engines: {node: '>=8.5.0'}
+ /react-remove-scroll-bar/2.3.6_3r2q4vqikxqiwlpkbpcd6cn6l4:
+ resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
+ engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 17.0.35
+ '@types/react': 16.14.60
react: 17.0.2
- react-style-singleton: 2.1.1_qewexek3mggvbeokd2goivthmy
- tslib: 1.14.1
+ react-style-singleton: 2.2.1_3r2q4vqikxqiwlpkbpcd6cn6l4
+ tslib: 2.6.3
dev: false
/react-remove-scroll/2.4.1:
@@ -29763,33 +31654,14 @@ packages:
'@types/react':
optional: true
dependencies:
- react-remove-scroll-bar: 2.2.0
- react-style-singleton: 2.1.1
- tslib: 1.14.1
- use-callback-ref: 1.2.5
- use-sidecar: 1.0.5
- dev: false
-
- /react-remove-scroll/2.4.1_oqfjjbydlevwhoma3gspdo4w3y:
- resolution: {integrity: sha512-K7XZySEzOHMTq7dDwcHsZA6Y7/1uX5RsWhRXVYv8rdh+y9Qz2nMwl9RX/Mwnj/j7JstCGmxyfyC0zbVGXYh3mA==}
- engines: {node: '>=8.5.0'}
- peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@types/react': 16.14.21
- react: 17.0.2
- react-remove-scroll-bar: 2.2.0_oqfjjbydlevwhoma3gspdo4w3y
- react-style-singleton: 2.1.1_oqfjjbydlevwhoma3gspdo4w3y
+ react-remove-scroll-bar: 2.3.6
+ react-style-singleton: 2.2.1
tslib: 1.14.1
- use-callback-ref: 1.2.5_oqfjjbydlevwhoma3gspdo4w3y
- use-sidecar: 1.0.5_react@17.0.2
+ use-callback-ref: 1.3.2
+ use-sidecar: 1.1.2
dev: false
- /react-remove-scroll/2.4.1_qewexek3mggvbeokd2goivthmy:
+ /react-remove-scroll/2.4.1_3r2q4vqikxqiwlpkbpcd6cn6l4:
resolution: {integrity: sha512-K7XZySEzOHMTq7dDwcHsZA6Y7/1uX5RsWhRXVYv8rdh+y9Qz2nMwl9RX/Mwnj/j7JstCGmxyfyC0zbVGXYh3mA==}
engines: {node: '>=8.5.0'}
peerDependencies:
@@ -29799,13 +31671,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 17.0.35
+ '@types/react': 16.14.60
react: 17.0.2
- react-remove-scroll-bar: 2.2.0_qewexek3mggvbeokd2goivthmy
- react-style-singleton: 2.1.1_qewexek3mggvbeokd2goivthmy
+ react-remove-scroll-bar: 2.3.6_3r2q4vqikxqiwlpkbpcd6cn6l4
+ react-style-singleton: 2.2.1_3r2q4vqikxqiwlpkbpcd6cn6l4
tslib: 1.14.1
- use-callback-ref: 1.2.5_qewexek3mggvbeokd2goivthmy
- use-sidecar: 1.0.5_react@17.0.2
+ use-callback-ref: 1.3.2_3r2q4vqikxqiwlpkbpcd6cn6l4
+ use-sidecar: 1.1.2_3r2q4vqikxqiwlpkbpcd6cn6l4
dev: false
/react-resize-detector/2.3.0:
@@ -29815,19 +31687,7 @@ packages:
dependencies:
lodash.debounce: 4.0.8
lodash.throttle: 4.1.1
- prop-types: 15.7.2
- resize-observer-polyfill: 1.5.1
- dev: false
-
- /react-resize-detector/6.7.6:
- resolution: {integrity: sha512-/6RZlul1yePSoYJxWxmmgjO320moeLC/khrwpEVIL+D2EjLKhqOwzFv+H8laMbImVj7Zu4FlMa0oA7au3/ChjQ==}
- peerDependencies:
- react: ^16.0.0 || ^17.0.0
- react-dom: ^16.0.0 || ^17.0.0
- dependencies:
- '@types/resize-observer-browser': 0.1.6
- lodash.debounce: 4.0.8
- lodash.throttle: 4.1.1
+ prop-types: 15.8.1
resize-observer-polyfill: 1.5.1
dev: false
@@ -29848,23 +31708,23 @@ packages:
history: 4.10.1
invariant: 2.2.4
loose-envify: 1.4.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
react-router: 4.3.1
warning: 4.0.3
dev: false
- /react-router-dom/5.3.0_react@17.0.2:
- resolution: {integrity: sha512-ObVBLjUZsphUUMVycibxgMdh5jJ1e3o+KpAZBVeHcNQZ4W+uUGGWsokurzlF4YOldQYRQL4y6yFRWM4m3svmuQ==}
+ /react-router-dom/5.3.4_react@17.0.2:
+ resolution: {integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==}
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
history: 4.10.1
loose-envify: 1.4.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
- react-router: 5.2.1_react@17.0.2
- tiny-invariant: 1.2.0
+ react-router: 5.3.4_react@17.0.2
+ tiny-invariant: 1.3.3
tiny-warning: 1.0.3
dev: false
@@ -29878,7 +31738,7 @@ packages:
invariant: 2.2.4
loose-envify: 1.4.0
path-to-regexp: 1.8.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
warning: 4.0.3
dev: false
@@ -29892,43 +31752,42 @@ packages:
invariant: 2.2.4
loose-envify: 1.4.0
path-to-regexp: 1.8.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
warning: 4.0.3
dev: false
- /react-router/5.2.1_react@17.0.2:
- resolution: {integrity: sha512-lIboRiOtDLFdg1VTemMwud9vRVuOCZmUIT/7lUoZiSpPODiiH1UQlfXy+vPLC/7IWdFYnhRwAyNqA/+I7wnvKQ==}
+ /react-router/5.3.4_react@17.0.2:
+ resolution: {integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==}
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
- mini-create-react-context: 0.4.1_mv67koxdvxhyejehvpcoenu3ai
path-to-regexp: 1.8.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
react-is: 16.13.1
- tiny-invariant: 1.2.0
+ tiny-invariant: 1.3.3
tiny-warning: 1.0.3
dev: false
/react-s3-uploader/4.8.0:
resolution: {integrity: sha512-vKt6Gh+pFnkLOHkcOBtAKcbWvs8dHB1/xB9zu6yafvny0/IatVqBoZFp+jVnACLCVkex5hjMUHFknYifF2OoXA==}
dependencies:
- aws-sdk: 2.1030.0
+ aws-sdk: 2.1639.0
create-react-class: 15.7.0
object-assign: 2.1.1
- prop-types: 15.7.2
+ prop-types: 15.8.1
uuid: 3.4.0
dev: false
/react-s3-uploader/4.9.3:
resolution: {integrity: sha512-O1zAOzFd29eZSSuGB/sTzWzwNP74q0hIDKn1Y06jPj1QTCylQ5O+JTsE1peYlZN9k9vzslQBJ8YkgsqhYWZ9FA==}
dependencies:
- aws-sdk: 2.1030.0
+ aws-sdk: 2.1639.0
create-react-class: 15.7.0
object-assign: 2.1.1
prop-types: 15.8.1
@@ -29939,12 +31798,12 @@ packages:
resolution: {integrity: sha512-UVPHkmJpYS9iucurTbsCY1E4a+1qVocw1wGqpy/ILM3pC54Ub//wr2SrIMTnCFPIuJAAEDdOi/aLm1vO62qUOg==}
dependencies:
create-react-class: 15.7.0
- mime-types: 2.1.34
+ mime-types: 2.1.35
object-assign: 2.1.1
- prop-types: 15.7.2
+ prop-types: 15.8.1
uuid: 3.4.0
optionalDependencies:
- aws-sdk: 2.1030.0
+ aws-sdk: 2.1649.0
dev: false
/react-scripts/3.4.1_folnupnbsrp55x5wyhghjb4wly:
@@ -29965,7 +31824,7 @@ packages:
babel-eslint: 10.1.0_eslint@6.8.0
babel-jest: 24.9.0_@babel+core@7.9.0
babel-loader: 8.1.0_v5wbdnhwytg3u2hu4ix2bhpzla
- babel-plugin-named-asset-import: 0.3.7_@babel+core@7.9.0
+ babel-plugin-named-asset-import: 0.3.8_@babel+core@7.9.0
babel-preset-react-app: 9.1.2
camelcase: 5.3.1
case-sensitive-paths-webpack-plugin: 2.3.0
@@ -30046,7 +31905,7 @@ packages:
babel-eslint: 10.1.0_eslint@6.8.0
babel-jest: 24.9.0_@babel+core@7.9.0
babel-loader: 8.1.0_v5wbdnhwytg3u2hu4ix2bhpzla
- babel-plugin-named-asset-import: 0.3.7_@babel+core@7.9.0
+ babel-plugin-named-asset-import: 0.3.8_@babel+core@7.9.0
babel-preset-react-app: 9.1.2
camelcase: 5.3.1
case-sensitive-paths-webpack-plugin: 2.3.0
@@ -30109,7 +31968,7 @@ packages:
- webpack-command
dev: false
- /react-scripts/4.0.3_typescript@4.6.2:
+ /react-scripts/4.0.3_ksswt7spaxpnjxhhvh5arnzeya:
resolution: {integrity: sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==}
engines: {node: ^10.12.0 || >=12.0.0}
hasBin: true
@@ -30123,29 +31982,29 @@ packages:
'@babel/core': 7.12.3
'@pmmmwh/react-refresh-webpack-plugin': 0.4.3_t4ezke4netssl24gycl5qjajya
'@svgr/webpack': 5.5.0
- '@typescript-eslint/eslint-plugin': 4.33.0_mxui2jzt6nwtmjfua3szbtylhm
- '@typescript-eslint/parser': 4.33.0_e6rt7vlgxfprtuallp2t3cvyi4
+ '@typescript-eslint/eslint-plugin': 4.33.0_s2qqtxhzmb7vugvfoyripfgp7i
+ '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe
babel-eslint: 10.1.0_eslint@7.32.0
babel-jest: 26.6.3_@babel+core@7.12.3
babel-loader: 8.1.0_ijzbfparldiylzlxam7rtsqhk4
- babel-plugin-named-asset-import: 0.3.7_@babel+core@7.12.3
+ babel-plugin-named-asset-import: 0.3.8_@babel+core@7.12.3
babel-preset-react-app: 10.0.1
- bfj: 7.0.2
+ bfj: 7.1.0
camelcase: 6.3.0
case-sensitive-paths-webpack-plugin: 2.3.0
css-loader: 4.3.0_webpack@4.44.2
dotenv: 8.2.0
dotenv-expand: 5.1.0
eslint: 7.32.0
- eslint-config-react-app: 6.0.0_jsnpamofhwivp44oziernwqq5m
+ eslint-config-react-app: 6.0.0_56hzpvad3csshpfzgfwl52nx6i
eslint-plugin-flowtype: 5.10.0_eslint@7.32.0
- eslint-plugin-import: 2.25.3_ffi3uiz42rv3jyhs6cr7p7qqry
- eslint-plugin-jest: 24.7.0_eiscpddx74zrztqv3bgkgtrg44
- eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0
- eslint-plugin-react: 7.27.0_eslint@7.32.0
- eslint-plugin-react-hooks: 4.3.0_eslint@7.32.0
- eslint-plugin-testing-library: 3.10.2_e6rt7vlgxfprtuallp2t3cvyi4
- eslint-webpack-plugin: 2.6.0_a7xmpkungfd35is2c4kqy55h3i
+ eslint-plugin-import: 2.29.1_ffi3uiz42rv3jyhs6cr7p7qqry
+ eslint-plugin-jest: 24.7.0_bfrijen5mqdzfbbsgrvmb4p2hy
+ eslint-plugin-jsx-a11y: 6.8.0_eslint@7.32.0
+ eslint-plugin-react: 7.34.2_eslint@7.32.0
+ eslint-plugin-react-hooks: 4.6.2_eslint@7.32.0
+ eslint-plugin-testing-library: 3.10.2_jofidmxrjzhj7l6vknpw5ecvfe
+ eslint-webpack-plugin: 2.7.0_a7xmpkungfd35is2c4kqy55h3i
file-loader: 6.1.1_webpack@4.44.2
fs-extra: 9.1.0
html-webpack-plugin: 4.5.0_webpack@4.44.2
@@ -30156,31 +32015,32 @@ packages:
jest-watch-typeahead: 0.6.1_jest@26.6.0
mini-css-extract-plugin: 0.11.3_webpack@4.44.2
optimize-css-assets-webpack-plugin: 5.0.4_webpack@4.44.2
- pnp-webpack-plugin: 1.6.4_typescript@4.6.2
+ pnp-webpack-plugin: 1.6.4_typescript@4.9.5
postcss-flexbugs-fixes: 4.2.1
postcss-loader: 3.0.0
postcss-normalize: 8.0.1
postcss-preset-env: 6.7.0
postcss-safe-parser: 5.0.2
prompts: 2.4.0
+ react: 16.14.0
react-app-polyfill: 2.0.0
- react-dev-utils: 11.0.4_dcjss5q5ylmpylxyjqs364hobq
+ react-dev-utils: 11.0.4_73mvphemx5yrjoz5ocxp4i3m2y
react-refresh: 0.8.3
resolve: 1.18.1
- resolve-url-loader: 3.1.4
- sass-loader: 10.2.1_webpack@4.44.2
+ resolve-url-loader: 3.1.5
+ sass-loader: 10.5.2_cyskhd5bj2bmn3hi25swn5xqtq
semver: 7.3.2
style-loader: 1.3.0_webpack@4.44.2
terser-webpack-plugin: 4.2.3_webpack@4.44.2
- ts-pnp: 1.2.0_typescript@4.6.2
- typescript: 4.6.2
+ ts-pnp: 1.2.0_typescript@4.9.5
+ typescript: 4.9.5
url-loader: 4.1.1_7hroj2mdu577asu2zyhaasbvae
webpack: 4.44.2
webpack-dev-server: 3.11.1_webpack@4.44.2
webpack-manifest-plugin: 2.2.0_webpack@4.44.2
workbox-webpack-plugin: 5.1.4_webpack@4.44.2
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
transitivePeerDependencies:
- '@types/webpack'
- bluebird
@@ -30201,9 +32061,9 @@ packages:
- webpack-command
- webpack-hot-middleware
- webpack-plugin-serve
- dev: false
+ dev: true
- /react-scripts/4.0.3_ysovnjf3qjiv2axpnv2jxeumzu:
+ /react-scripts/4.0.3_typescript@4.9.5:
resolution: {integrity: sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==}
engines: {node: ^10.12.0 || >=12.0.0}
hasBin: true
@@ -30217,29 +32077,29 @@ packages:
'@babel/core': 7.12.3
'@pmmmwh/react-refresh-webpack-plugin': 0.4.3_t4ezke4netssl24gycl5qjajya
'@svgr/webpack': 5.5.0
- '@typescript-eslint/eslint-plugin': 4.33.0_mxui2jzt6nwtmjfua3szbtylhm
- '@typescript-eslint/parser': 4.33.0_e6rt7vlgxfprtuallp2t3cvyi4
+ '@typescript-eslint/eslint-plugin': 4.33.0_s2qqtxhzmb7vugvfoyripfgp7i
+ '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe
babel-eslint: 10.1.0_eslint@7.32.0
babel-jest: 26.6.3_@babel+core@7.12.3
babel-loader: 8.1.0_ijzbfparldiylzlxam7rtsqhk4
- babel-plugin-named-asset-import: 0.3.7_@babel+core@7.12.3
+ babel-plugin-named-asset-import: 0.3.8_@babel+core@7.12.3
babel-preset-react-app: 10.0.1
- bfj: 7.0.2
+ bfj: 7.1.0
camelcase: 6.3.0
case-sensitive-paths-webpack-plugin: 2.3.0
css-loader: 4.3.0_webpack@4.44.2
dotenv: 8.2.0
dotenv-expand: 5.1.0
eslint: 7.32.0
- eslint-config-react-app: 6.0.0_jsnpamofhwivp44oziernwqq5m
+ eslint-config-react-app: 6.0.0_56hzpvad3csshpfzgfwl52nx6i
eslint-plugin-flowtype: 5.10.0_eslint@7.32.0
- eslint-plugin-import: 2.25.3_ffi3uiz42rv3jyhs6cr7p7qqry
- eslint-plugin-jest: 24.7.0_eiscpddx74zrztqv3bgkgtrg44
- eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0
- eslint-plugin-react: 7.27.0_eslint@7.32.0
- eslint-plugin-react-hooks: 4.3.0_eslint@7.32.0
- eslint-plugin-testing-library: 3.10.2_e6rt7vlgxfprtuallp2t3cvyi4
- eslint-webpack-plugin: 2.6.0_a7xmpkungfd35is2c4kqy55h3i
+ eslint-plugin-import: 2.29.1_ffi3uiz42rv3jyhs6cr7p7qqry
+ eslint-plugin-jest: 24.7.0_bfrijen5mqdzfbbsgrvmb4p2hy
+ eslint-plugin-jsx-a11y: 6.8.0_eslint@7.32.0
+ eslint-plugin-react: 7.34.2_eslint@7.32.0
+ eslint-plugin-react-hooks: 4.6.2_eslint@7.32.0
+ eslint-plugin-testing-library: 3.10.2_jofidmxrjzhj7l6vknpw5ecvfe
+ eslint-webpack-plugin: 2.7.0_a7xmpkungfd35is2c4kqy55h3i
file-loader: 6.1.1_webpack@4.44.2
fs-extra: 9.1.0
html-webpack-plugin: 4.5.0_webpack@4.44.2
@@ -30250,32 +32110,31 @@ packages:
jest-watch-typeahead: 0.6.1_jest@26.6.0
mini-css-extract-plugin: 0.11.3_webpack@4.44.2
optimize-css-assets-webpack-plugin: 5.0.4_webpack@4.44.2
- pnp-webpack-plugin: 1.6.4_typescript@4.6.2
+ pnp-webpack-plugin: 1.6.4_typescript@4.9.5
postcss-flexbugs-fixes: 4.2.1
postcss-loader: 3.0.0
postcss-normalize: 8.0.1
postcss-preset-env: 6.7.0
postcss-safe-parser: 5.0.2
prompts: 2.4.0
- react: 16.14.0
react-app-polyfill: 2.0.0
- react-dev-utils: 11.0.4_dcjss5q5ylmpylxyjqs364hobq
+ react-dev-utils: 11.0.4_73mvphemx5yrjoz5ocxp4i3m2y
react-refresh: 0.8.3
resolve: 1.18.1
- resolve-url-loader: 3.1.4
- sass-loader: 10.2.1_cyskhd5bj2bmn3hi25swn5xqtq
+ resolve-url-loader: 3.1.5
+ sass-loader: 10.5.2_webpack@4.44.2
semver: 7.3.2
style-loader: 1.3.0_webpack@4.44.2
terser-webpack-plugin: 4.2.3_webpack@4.44.2
- ts-pnp: 1.2.0_typescript@4.6.2
- typescript: 4.6.2
+ ts-pnp: 1.2.0_typescript@4.9.5
+ typescript: 4.9.5
url-loader: 4.1.1_7hroj2mdu577asu2zyhaasbvae
webpack: 4.44.2
webpack-dev-server: 3.11.1_webpack@4.44.2
webpack-manifest-plugin: 2.2.0_webpack@4.44.2
workbox-webpack-plugin: 5.1.4_webpack@4.44.2
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
transitivePeerDependencies:
- '@types/webpack'
- bluebird
@@ -30296,7 +32155,7 @@ packages:
- webpack-command
- webpack-hot-middleware
- webpack-plugin-serve
- dev: true
+ dev: false
/react-select-plus/1.2.0:
resolution: {integrity: sha512-IIvRMB7Od6YAdLVFef61Tdd6FWsi6Kc0qLlSRuR/GsgYwE7IeyRx88HJ95by4hJ8M7q2LWwIkXKMDSrAUrjwyw==}
@@ -30304,8 +32163,8 @@ packages:
react: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0
react-dom: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0
dependencies:
- classnames: 2.3.1
- prop-types: 15.7.2
+ classnames: 2.5.1
+ prop-types: 15.8.1
react-input-autosize: 2.2.2
dev: false
@@ -30315,14 +32174,16 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
'@emotion/cache': 10.0.29
- '@emotion/core': 10.1.1
+ '@emotion/core': 10.3.1
'@emotion/css': 10.0.27
memoize-one: 5.2.1
prop-types: 15.8.1
react-input-autosize: 3.0.0
- react-transition-group: 4.4.2
+ react-transition-group: 4.4.5
+ transitivePeerDependencies:
+ - supports-color
dev: false
/react-select/3.2.0_sfoxds7t5ydpegc3knd667wn6m:
@@ -30331,22 +32192,24 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
'@emotion/cache': 10.0.29
- '@emotion/core': 10.1.1_react@17.0.2
+ '@emotion/core': 10.3.1_react@17.0.2
'@emotion/css': 10.0.27
memoize-one: 5.2.1
prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-input-autosize: 3.0.0_react@17.0.2
- react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m
+ react-transition-group: 4.4.5_sfoxds7t5ydpegc3knd667wn6m
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /react-shallow-renderer/16.14.1_react@17.0.2:
- resolution: {integrity: sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg==}
+ /react-shallow-renderer/16.15.0_react@17.0.2:
+ resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
peerDependencies:
- react: ^16.0.0 || ^17.0.0
+ react: ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
object-assign: 4.1.1
react: 17.0.2
@@ -30367,7 +32230,7 @@ packages:
react: ^0.14.0 || ^15.0.0-0 || ^16.0.0
react-dom: ^0.14.0 || ^15.0.0-0 || ^16.0.0
dependencies:
- element-resize-detector: 1.2.3
+ element-resize-detector: 1.2.4
invariant: 2.2.4
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
@@ -30382,70 +32245,52 @@ packages:
react-dom: ^15.0.0 || ^16.0.0
dependencies:
lodash: 4.17.21
- prop-types: 15.7.2
- raf: 3.4.1
- react-transition-group: 2.9.0
- dev: false
-
- /react-smooth/2.0.0:
- resolution: {integrity: sha512-wK4dBBR6P21otowgMT9toZk+GngMplGS1O5gk+2WSiHEXIrQgDvhR5IIlT74Vtu//qpTcipkgo21dD7a7AUNxw==}
- peerDependencies:
- prop-types: ^15.6.0
- react: ^15.0.0 || ^16.0.0 || ^17.0.0
- react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0
- dependencies:
- fast-equals: 2.0.3
+ prop-types: 15.8.1
raf: 3.4.1
react-transition-group: 2.9.0
dev: false
- /react-style-singleton/2.1.1:
- resolution: {integrity: sha512-jNRp07Jza6CBqdRKNgGhT3u9umWvils1xsuMOjZlghBDH2MU0PL2WZor4PGYjXpnRCa9DQSlHMs/xnABWOwYbA==}
- engines: {node: '>=8.5.0'}
+ /react-smooth/4.0.1:
+ resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==}
peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- get-nonce: 1.0.1
- invariant: 2.2.4
- tslib: 1.14.1
+ fast-equals: 5.0.1
+ prop-types: 15.8.1
+ react-transition-group: 4.4.5
dev: false
- /react-style-singleton/2.1.1_oqfjjbydlevwhoma3gspdo4w3y:
- resolution: {integrity: sha512-jNRp07Jza6CBqdRKNgGhT3u9umWvils1xsuMOjZlghBDH2MU0PL2WZor4PGYjXpnRCa9DQSlHMs/xnABWOwYbA==}
- engines: {node: '>=8.5.0'}
+ /react-style-singleton/2.2.1:
+ resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
+ engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 16.14.21
get-nonce: 1.0.1
invariant: 2.2.4
- react: 17.0.2
- tslib: 1.14.1
+ tslib: 2.6.3
dev: false
- /react-style-singleton/2.1.1_qewexek3mggvbeokd2goivthmy:
- resolution: {integrity: sha512-jNRp07Jza6CBqdRKNgGhT3u9umWvils1xsuMOjZlghBDH2MU0PL2WZor4PGYjXpnRCa9DQSlHMs/xnABWOwYbA==}
- engines: {node: '>=8.5.0'}
+ /react-style-singleton/2.2.1_3r2q4vqikxqiwlpkbpcd6cn6l4:
+ resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
+ engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 17.0.35
+ '@types/react': 16.14.60
get-nonce: 1.0.1
invariant: 2.2.4
react: 17.0.2
- tslib: 1.14.1
+ tslib: 2.6.3
dev: false
/react-syntax-highlighter/11.0.3_react@16.14.0:
@@ -30453,62 +32298,50 @@ packages:
peerDependencies:
react: '>= 0.14.0'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
highlight.js: 9.18.5
lowlight: 1.11.0
- prismjs: 1.25.0
+ prismjs: 1.29.0
react: 16.14.0
refractor: 2.10.1
dev: true
- /react-table/7.7.0:
- resolution: {integrity: sha512-jBlj70iBwOTvvImsU9t01LjFjy4sXEtclBovl3mTiqjz23Reu0DKnRza4zlLtOPACx6j2/7MrQIthIK1Wi+LIA==}
+ /react-table/7.8.0:
+ resolution: {integrity: sha512-hNaz4ygkZO4bESeFfnfOft73iBUj8K5oKi1EcSHPAibEydfsX2MyU6Z8KCr3mv3C9Kqqh71U+DhZkFvibbnPbA==}
peerDependencies:
- react: ^16.8.3 || ^17.0.0-0
+ react: ^16.8.3 || ^17.0.0-0 || ^18.0.0
dev: false
- /react-table/7.7.0_react@17.0.2:
- resolution: {integrity: sha512-jBlj70iBwOTvvImsU9t01LjFjy4sXEtclBovl3mTiqjz23Reu0DKnRza4zlLtOPACx6j2/7MrQIthIK1Wi+LIA==}
+ /react-table/7.8.0_react@17.0.2:
+ resolution: {integrity: sha512-hNaz4ygkZO4bESeFfnfOft73iBUj8K5oKi1EcSHPAibEydfsX2MyU6Z8KCr3mv3C9Kqqh71U+DhZkFvibbnPbA==}
peerDependencies:
- react: ^16.8.3 || ^17.0.0-0
+ react: ^16.8.3 || ^17.0.0-0 || ^18.0.0
dependencies:
react: 17.0.2
dev: false
- /react-test-renderer/16.14.0_react@16.14.0:
- resolution: {integrity: sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==}
- peerDependencies:
- react: ^16.14.0
- dependencies:
- object-assign: 4.1.1
- prop-types: 15.7.2
- react: 16.14.0
- react-is: 16.13.1
- scheduler: 0.19.1
- dev: true
-
- /react-test-renderer/16.14.0_react@17.0.2:
- resolution: {integrity: sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==}
+ /react-test-renderer/16.7.0:
+ resolution: {integrity: sha512-tFbhSjknSQ6+ttzmuGdv+SjQfmvGcq3PFKyPItohwhhOBmRoTf1We3Mlt3rJtIn85mjPXOkKV+TaKK4irvk9Yg==}
peerDependencies:
- react: ^16.14.0
+ react: ^16.0.0
dependencies:
object-assign: 4.1.1
- prop-types: 15.7.2
- react: 17.0.2
+ prop-types: 15.8.1
react-is: 16.13.1
- scheduler: 0.19.1
- dev: true
+ scheduler: 0.12.0
+ dev: false
- /react-test-renderer/16.7.0:
+ /react-test-renderer/16.7.0_react@16.14.0:
resolution: {integrity: sha512-tFbhSjknSQ6+ttzmuGdv+SjQfmvGcq3PFKyPItohwhhOBmRoTf1We3Mlt3rJtIn85mjPXOkKV+TaKK4irvk9Yg==}
peerDependencies:
react: ^16.0.0
dependencies:
object-assign: 4.1.1
- prop-types: 15.7.2
+ prop-types: 15.8.1
+ react: 16.14.0
react-is: 16.13.1
scheduler: 0.12.0
- dev: false
+ dev: true
/react-test-renderer/16.7.0_react@17.0.2:
resolution: {integrity: sha512-tFbhSjknSQ6+ttzmuGdv+SjQfmvGcq3PFKyPItohwhhOBmRoTf1We3Mlt3rJtIn85mjPXOkKV+TaKK4irvk9Yg==}
@@ -30516,7 +32349,7 @@ packages:
react: ^16.0.0
dependencies:
object-assign: 4.1.1
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
react-is: 16.13.1
scheduler: 0.12.0
@@ -30530,7 +32363,7 @@ packages:
object-assign: 4.1.1
react: 17.0.2
react-is: 17.0.2
- react-shallow-renderer: 16.14.1_react@17.0.2
+ react-shallow-renderer: 16.15.0_react@17.0.2
scheduler: 0.20.2
dev: true
@@ -30539,8 +32372,8 @@ packages:
peerDependencies:
react: '>=0.14.0 <17.0.0'
dependencies:
- '@babel/runtime': 7.17.2
- prop-types: 15.7.2
+ '@babel/runtime': 7.13.10
+ prop-types: 15.8.1
react: 16.14.0
dev: true
@@ -30550,10 +32383,10 @@ packages:
react: '>=15.0.0'
react-dom: '>=15.0.0'
dependencies:
- '@babel/runtime': 7.16.3
- classnames: 2.3.1
- prop-types: 15.7.2
- react-transition-group: 4.4.2
+ '@babel/runtime': 7.13.10
+ classnames: 2.5.1
+ prop-types: 15.8.1
+ react-transition-group: 4.4.5
dev: false
/react-toastify/6.0.8:
@@ -30561,9 +32394,9 @@ packages:
peerDependencies:
react: '>=16'
dependencies:
- classnames: 2.3.1
- prop-types: 15.7.2
- react-transition-group: 4.4.2
+ classnames: 2.5.1
+ prop-types: 15.8.1
+ react-transition-group: 4.4.5
transitivePeerDependencies:
- react-dom
dev: false
@@ -30573,10 +32406,10 @@ packages:
peerDependencies:
react: '>=16'
dependencies:
- clsx: 1.1.1
+ clsx: 1.2.1
prop-types: 15.8.1
react: 17.0.2
- react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m
+ react-transition-group: 4.4.5_sfoxds7t5ydpegc3knd667wn6m
transitivePeerDependencies:
- react-dom
dev: false
@@ -30589,29 +32422,29 @@ packages:
dependencies:
dom-helpers: 3.4.0
loose-envify: 1.4.0
- prop-types: 15.7.2
+ prop-types: 15.8.1
react-lifecycles-compat: 3.0.4
dev: false
- /react-transition-group/4.4.2:
- resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==}
+ /react-transition-group/4.4.5:
+ resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
dev: false
- /react-transition-group/4.4.2_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==}
+ /react-transition-group/4.4.5_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -30625,7 +32458,7 @@ packages:
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
- prop-types: 15.7.2
+ prop-types: 15.8.1
/react/17.0.2:
resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==}
@@ -30660,15 +32493,21 @@ packages:
react: 17.0.2
dev: false
+ /read-cache/1.0.0:
+ resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
+ dependencies:
+ pify: 2.3.0
+ dev: true
+
/read-pkg-up/1.0.1:
- resolution: {integrity: sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=}
+ resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==}
engines: {node: '>=0.10.0'}
dependencies:
find-up: 1.1.2
read-pkg: 1.1.0
/read-pkg-up/2.0.0:
- resolution: {integrity: sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=}
+ resolution: {integrity: sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==}
engines: {node: '>=4'}
dependencies:
find-up: 2.1.0
@@ -30691,7 +32530,7 @@ packages:
type-fest: 0.8.1
/read-pkg/1.1.0:
- resolution: {integrity: sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=}
+ resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==}
engines: {node: '>=0.10.0'}
dependencies:
load-json-file: 1.1.0
@@ -30699,7 +32538,7 @@ packages:
path-type: 1.1.0
/read-pkg/2.0.0:
- resolution: {integrity: sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=}
+ resolution: {integrity: sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==}
engines: {node: '>=4'}
dependencies:
load-json-file: 2.0.0
@@ -30708,7 +32547,7 @@ packages:
dev: false
/read-pkg/3.0.0:
- resolution: {integrity: sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=}
+ resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==}
engines: {node: '>=4'}
dependencies:
load-json-file: 4.0.0
@@ -30719,13 +32558,13 @@ packages:
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
engines: {node: '>=8'}
dependencies:
- '@types/normalize-package-data': 2.4.1
+ '@types/normalize-package-data': 2.4.4
normalize-package-data: 2.5.0
parse-json: 5.2.0
type-fest: 0.6.0
- /readable-stream/2.3.7:
- resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
+ /readable-stream/2.3.8:
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
core-util-is: 1.0.3
inherits: 2.0.4
@@ -30735,21 +32574,32 @@ packages:
string_decoder: 1.1.1
util-deprecate: 1.0.2
- /readable-stream/3.6.0:
- resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
+ /readable-stream/3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ /readable-stream/4.5.2:
+ resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ abort-controller: 3.0.0
+ buffer: 6.0.3
+ events: 3.3.0
+ process: 0.11.10
+ string_decoder: 1.3.0
+ dev: true
+
/readdirp/2.2.1:
resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==}
engines: {node: '>=0.10'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
micromatch: 3.1.10
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
transitivePeerDependencies:
- supports-color
@@ -30757,9 +32607,9 @@ packages:
resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==}
engines: {node: '>=0.10'}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
micromatch: 3.1.10_supports-color@6.1.0
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
transitivePeerDependencies:
- supports-color
@@ -30767,20 +32617,20 @@ packages:
resolution: {integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==}
engines: {node: '>=8.10.0'}
dependencies:
- picomatch: 2.3.0
+ picomatch: 2.3.1
dev: true
/readdirp/3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
dependencies:
- picomatch: 2.3.0
+ picomatch: 2.3.1
/realpath-native/1.1.0:
resolution: {integrity: sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==}
engines: {node: '>=4'}
dependencies:
- util.promisify: 1.1.1
+ util.promisify: 1.1.2
/recharts-scale/0.4.5:
resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
@@ -30788,54 +32638,54 @@ packages:
decimal.js-light: 2.5.1
dev: false
- /recharts/1.8.5:
- resolution: {integrity: sha512-tM9mprJbXVEBxjM7zHsIy6Cc41oO/pVYqyAsOHLxlJrbNBuLs0PHB3iys2M+RqCF0//k8nJtZF6X6swSkWY3tg==}
+ /recharts/1.8.6:
+ resolution: {integrity: sha512-UlfSEOnZRAxxaH33Fc86yHEcqN+IRauPP31NfVvlGudtwVZEIb2RFI5b1J3npQo7XyoSnkUodg3Ha6EupkV+SQ==}
peerDependencies:
react: ^15.0.0 || ^16.0.0
react-dom: ^15.0.0 || ^16.0.0
dependencies:
- classnames: 2.3.1
- core-js: 2.6.12
+ classnames: 2.5.1
+ core-js: 3.37.1
d3-interpolate: 1.4.0
d3-scale: 2.2.2
d3-shape: 1.3.7
lodash: 4.17.21
- prop-types: 15.7.2
+ prop-types: 15.8.1
react-resize-detector: 2.3.0
react-smooth: 1.0.6
recharts-scale: 0.4.5
reduce-css-calc: 1.3.0
dev: false
- /recharts/2.1.6:
- resolution: {integrity: sha512-KnRNnCum1hL27DYhUfcdcKUEQkYnda6G+KDN4n/nCiTKp7UzJSgHfFHQvCkBujPi/U98dGd430DA2/8RJpkPlg==}
+ /recharts/2.12.7:
+ resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==}
+ engines: {node: '>=14'}
peerDependencies:
- react: ^16.0.0 || ^17.0.0
- react-dom: ^16.0.0 || ^17.0.0
+ react: ^16.0.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@types/d3-interpolate': 2.0.2
- '@types/d3-scale': 3.3.2
- '@types/d3-shape': 2.1.3
- classnames: 2.3.1
- d3-interpolate: 2.0.1
- d3-scale: 3.3.0
- d3-shape: 2.1.0
+ clsx: 2.1.1
eventemitter3: 4.0.7
lodash: 4.17.21
react-is: 16.13.1
- react-resize-detector: 6.7.6
- react-smooth: 2.0.0
+ react-smooth: 4.0.1
recharts-scale: 0.4.5
- reduce-css-calc: 2.1.8
- transitivePeerDependencies:
- - prop-types
+ tiny-invariant: 1.3.3
+ victory-vendor: 36.9.2
dev: false
/rechoir/0.6.2:
- resolution: {integrity: sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=}
+ resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ resolve: 1.22.8
+ dev: true
+
+ /rechoir/0.7.1:
+ resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==}
engines: {node: '>= 0.10'}
dependencies:
- resolve: 1.20.0
+ resolve: 1.22.8
dev: true
/recursive-readdir/2.2.2:
@@ -30845,7 +32695,7 @@ packages:
minimatch: 3.0.4
/redent/1.0.0:
- resolution: {integrity: sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=}
+ resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==}
engines: {node: '>=0.10.0'}
dependencies:
indent-string: 2.1.0
@@ -30859,22 +32709,15 @@ packages:
strip-indent: 3.0.0
/redial/0.5.0:
- resolution: {integrity: sha1-5pClOjH7RpkG0bUurkxdzCvzRs0=}
+ resolution: {integrity: sha512-mkxmTGPrVK8skIy0j9IGAK/0GLRNnnUi7ois7bPQSGRD+E7y4SfarcxKD7NXNeVnsaMA6/F5ckF9ntF4wYeNqQ==}
dev: false
/reduce-css-calc/1.3.0:
- resolution: {integrity: sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=}
- dependencies:
- balanced-match: 0.4.2
- math-expression-evaluator: 1.3.8
- reduce-function-call: 1.0.3
- dev: false
-
- /reduce-css-calc/2.1.8:
- resolution: {integrity: sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==}
+ resolution: {integrity: sha512-0dVfwYVOlf/LBA2ec4OwQ6p3X9mYxn/wOl2xTcLwjnPYrkgEfPx3VI4eGCH3rQLlPISG5v9I9bkZosKsNRTRKA==}
dependencies:
- css-unit-converter: 1.1.2
- postcss-value-parser: 3.3.1
+ balanced-match: 0.4.2
+ math-expression-evaluator: 1.4.0
+ reduce-function-call: 1.0.3
dev: false
/reduce-function-call/1.0.3:
@@ -30884,7 +32727,7 @@ packages:
dev: false
/redux-form-validation/0.0.8_icxfo3iyncmcqg44r3o7j6b5i4:
- resolution: {integrity: sha1-2x1jj7sZWj+aXgbzEDu7kxV/9X8=}
+ resolution: {integrity: sha512-yPhYgnuHwXzpTLD36abed+tvJA2k3Cb9ZZju9/TlEGkSMc8YHBFJvMOL7UqD9P1vJT4yrLaXxKVc//gNnXTxVg==}
peerDependencies:
react-redux: ^3.0.0 || ^4.0.0 || ^5.0.0
redux: ^3.3.1
@@ -30903,11 +32746,11 @@ packages:
react-redux: ^3.0.0 || ^4.0.0 || ^5.0.0
redux: ^3.0.0 || ^4.0.0
dependencies:
- deep-equal: 1.1.1
+ deep-equal: 1.1.2
hoist-non-react-statics: 2.5.5
invariant: 2.2.4
is-promise: 2.2.2
- prop-types: 15.7.2
+ prop-types: 15.8.1
react-lazy-cache: 3.0.1
react-redux: 5.0.7_redux@3.7.2
redux: 3.7.2
@@ -30940,12 +32783,12 @@ packages:
redux: 3.7.2
dev: false
- /redux-thunk/2.4.1_redux@4.1.2:
- resolution: {integrity: sha512-OOYGNY5Jy2TWvTL1KgAlVy6dcx3siPJ1wTq741EPyUKfn6W6nChdICjZwCd0p8AZBs5kWpZlbkXW2nE/zjUa+Q==}
+ /redux-thunk/2.4.2_redux@4.2.1:
+ resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==}
peerDependencies:
redux: ^4
dependencies:
- redux: 4.1.2
+ redux: 4.2.1
dev: false
/redux/3.7.2:
@@ -30956,14 +32799,32 @@ packages:
loose-envify: 1.4.0
symbol-observable: 1.2.0
- /redux/4.1.2:
- resolution: {integrity: sha512-SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw==}
+ /redux/4.2.1:
+ resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==}
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
dev: false
- /reflect.ownkeys/0.2.0:
- resolution: {integrity: sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=}
+ /reflect.getprototypeof/1.0.6:
+ resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ globalthis: 1.0.4
+ which-builtin-type: 1.1.3
+
+ /reflect.ownkeys/1.1.4:
+ resolution: {integrity: sha512-iUNmtLgzudssL+qnTUosCmnq3eczlrVd1wXrgx/GhiI/8FvwrTYWtCJ9PNvWIRX+4ftupj2WUfB5mu5s9t6LnA==}
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-set-tostringtag: 2.0.3
+ globalthis: 1.0.4
dev: true
/refractor/2.10.1:
@@ -30974,8 +32835,8 @@ packages:
prismjs: 1.17.1
dev: true
- /regenerate-unicode-properties/9.0.0:
- resolution: {integrity: sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==}
+ /regenerate-unicode-properties/10.1.1:
+ resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
@@ -30984,14 +32845,17 @@ packages:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
/regenerator-runtime/0.10.5:
- resolution: {integrity: sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=}
+ resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==}
dev: true
/regenerator-runtime/0.11.1:
resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
- /regenerator-runtime/0.13.9:
- resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
+ /regenerator-runtime/0.13.11:
+ resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
+
+ /regenerator-runtime/0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
/regenerator-transform/0.10.1:
resolution: {integrity: sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==}
@@ -31001,10 +32865,10 @@ packages:
private: 0.1.8
dev: true
- /regenerator-transform/0.14.5:
- resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==}
+ /regenerator-transform/0.15.2:
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
/regex-cache/0.4.4:
resolution: {integrity: sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==}
@@ -31025,15 +32889,17 @@ packages:
resolution: {integrity: sha512-8t6074A68gHfU8Neftl0Le6KTDwfGAj7IyjPIMSfikI2wJUTHDMaIq42bUsfVnj8mhx0R+45rdUXHGpN164avA==}
dev: false
- /regex-parser/2.2.11:
- resolution: {integrity: sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==}
+ /regex-parser/2.3.0:
+ resolution: {integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==}
- /regexp.prototype.flags/1.3.1:
- resolution: {integrity: sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==}
+ /regexp.prototype.flags/1.5.2:
+ resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-errors: 1.3.0
+ set-function-name: 2.0.2
/regexpp/2.0.1:
resolution: {integrity: sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==}
@@ -31044,23 +32910,23 @@ packages:
engines: {node: '>=8'}
/regexpu-core/2.0.0:
- resolution: {integrity: sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=}
+ resolution: {integrity: sha512-tJ9+S4oKjxY8IZ9jmjnp/mtytu1u3iyIQAfmI51IKWH6bFf7XR1ybtaO6j7INhZKXOTYADk7V5qxaqLkmNxiZQ==}
dependencies:
regenerate: 1.4.2
regjsgen: 0.2.0
regjsparser: 0.1.5
dev: true
- /regexpu-core/4.8.0:
- resolution: {integrity: sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==}
+ /regexpu-core/5.3.2:
+ resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
dependencies:
+ '@babel/regjsgen': 0.8.0
regenerate: 1.4.2
- regenerate-unicode-properties: 9.0.0
- regjsgen: 0.5.2
- regjsparser: 0.7.0
+ regenerate-unicode-properties: 10.1.1
+ regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.1.0
/registry-auth-token/3.3.2:
resolution: {integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==}
@@ -31069,15 +32935,15 @@ packages:
safe-buffer: 5.2.1
dev: false
- /registry-auth-token/4.2.1:
- resolution: {integrity: sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==}
+ /registry-auth-token/4.2.2:
+ resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==}
engines: {node: '>=6.0.0'}
dependencies:
rc: 1.2.8
dev: true
/registry-url/3.1.0:
- resolution: {integrity: sha1-PU74cPc93h138M+aOBQyRE4XSUI=}
+ resolution: {integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==}
engines: {node: '>=0.10.0'}
dependencies:
rc: 1.2.8
@@ -31091,43 +32957,70 @@ packages:
dev: true
/regjsgen/0.2.0:
- resolution: {integrity: sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=}
+ resolution: {integrity: sha512-x+Y3yA24uF68m5GA+tBjbGYo64xXVJpbToBaWCoSNSc1hdk6dfctaRWrNFTVJZIIhL5GxW8zwjoixbnifnK59g==}
dev: true
- /regjsgen/0.5.2:
- resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==}
-
/regjsparser/0.1.5:
- resolution: {integrity: sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=}
+ resolution: {integrity: sha512-jlQ9gYLfk2p3V5Ag5fYhA7fv7OHzd1KUH0PRP46xc3TgwjwgROIW572AfYg/X9kaNq/LJnu6oJcFRXlIrGoTRw==}
hasBin: true
dependencies:
jsesc: 0.5.0
dev: true
- /regjsparser/0.7.0:
- resolution: {integrity: sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==}
+ /regjsparser/0.9.1:
+ resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
dependencies:
jsesc: 0.5.0
+ /rehackt/0.1.0_3r2q4vqikxqiwlpkbpcd6cn6l4:
+ resolution: {integrity: sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: '*'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ react:
+ optional: true
+ dependencies:
+ '@types/react': 16.14.60
+ react: 17.0.2
+ dev: false
+
+ /rehackt/0.1.0_hqp5somsn7eiiofz7xtfzylpfm:
+ resolution: {integrity: sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: '*'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ react:
+ optional: true
+ dependencies:
+ '@types/react': 17.0.80
+ react: 17.0.2
+ dev: false
+
/relateurl/0.2.7:
- resolution: {integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=}
+ resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
/release-zalgo/1.0.0:
- resolution: {integrity: sha1-CXALflB0Mpc5Mw5TXFqQ+2eFFzA=}
+ resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==}
engines: {node: '>=4'}
dependencies:
es6-error: 4.1.1
dev: true
/remove-trailing-separator/1.1.0:
- resolution: {integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=}
+ resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
/renderkid/2.0.7:
resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==}
dependencies:
- css-select: 4.1.3
+ css-select: 4.3.0
dom-converter: 0.2.0
htmlparser2: 6.1.0
lodash: 4.17.21
@@ -31138,19 +33031,19 @@ packages:
engines: {node: '>=0.10.0'}
/repeat-string/1.6.1:
- resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=}
+ resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
/repeating/2.0.1:
- resolution: {integrity: sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=}
+ resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==}
engines: {node: '>=0.10.0'}
dependencies:
is-finite: 1.1.0
/request-progress/3.0.0:
- resolution: {integrity: sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4=}
+ resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==}
dependencies:
- throttleit: 1.0.0
+ throttleit: 1.0.1
dev: true
/request-promise-core/1.1.4_request@2.88.2:
@@ -31180,7 +33073,7 @@ packages:
deprecated: request has been deprecated, see https://github.com/request/request/issues/3142
dependencies:
aws-sign2: 0.7.0
- aws4: 1.11.0
+ aws4: 1.13.0
caseless: 0.12.0
combined-stream: 1.0.8
extend: 3.0.2
@@ -31191,17 +33084,17 @@ packages:
is-typedarray: 1.0.0
isstream: 0.1.2
json-stringify-safe: 5.0.1
- mime-types: 2.1.34
+ mime-types: 2.1.35
oauth-sign: 0.9.0
performance-now: 2.1.0
- qs: 6.5.2
+ qs: 6.5.3
safe-buffer: 5.2.1
tough-cookie: 2.5.0
tunnel-agent: 0.6.0
uuid: 3.4.0
/require-directory/2.1.1:
- resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=}
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
/require-from-string/2.0.2:
@@ -31209,24 +33102,24 @@ packages:
engines: {node: '>=0.10.0'}
/require-main-filename/1.0.1:
- resolution: {integrity: sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=}
+ resolution: {integrity: sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==}
dev: false
/require-main-filename/2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
/requires-port/1.0.0:
- resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=}
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
/reserved-words/0.1.2:
- resolution: {integrity: sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=}
+ resolution: {integrity: sha512-0S5SrIUJ9LfpbVl4Yzij6VipUdafHrOTzvmfazSw/jeZrZtQK303OPZW+obtkaw7jQlTQppy0UvZWm9872PbRw==}
dev: true
/resize-observer-polyfill/1.5.1:
resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
/resolve-cwd/2.0.0:
- resolution: {integrity: sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=}
+ resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==}
engines: {node: '>=4'}
dependencies:
resolve-from: 3.0.0
@@ -31238,7 +33131,7 @@ packages:
resolve-from: 5.0.0
/resolve-from/3.0.0:
- resolution: {integrity: sha1-six699nWiBvItuZTM17rywoYh0g=}
+ resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
engines: {node: '>=4'}
/resolve-from/4.0.0:
@@ -31269,8 +33162,8 @@ packages:
source-map: 0.6.1
dev: false
- /resolve-url-loader/3.1.4:
- resolution: {integrity: sha512-D3sQ04o0eeQEySLrcz4DsX3saHfsr8/N6tfhblxgZKXxMT2Louargg12oGNfoTRLV09GXhVUe5/qgA5vdgNigg==}
+ /resolve-url-loader/3.1.5:
+ resolution: {integrity: sha512-mgFMCmrV/tA4738EsFmPFE5/MaqSgUMe8LK971kVEKA/RrNVb7+VqFsg/qmKyythf34eyq476qIobP/gfFBGSQ==}
engines: {node: '>=6.0.0'}
dependencies:
adjust-sourcemap-loader: 3.0.0
@@ -31278,23 +33171,23 @@ packages:
compose-function: 3.0.3
convert-source-map: 1.7.0
es6-iterator: 2.0.3
- loader-utils: 1.2.3
+ loader-utils: 1.4.2
postcss: 7.0.36
rework: 1.0.1
rework-visit: 1.0.0
source-map: 0.6.1
/resolve-url/0.2.1:
- resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=}
+ resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
deprecated: https://github.com/lydell/resolve-url#deprecated
- /resolve.exports/1.1.0:
- resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==}
+ /resolve.exports/1.1.1:
+ resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==}
engines: {node: '>=10'}
dev: true
/resolve/1.1.7:
- resolution: {integrity: sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=}
+ resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==}
/resolve/1.12.0:
resolution: {integrity: sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==}
@@ -31311,33 +33204,42 @@ packages:
/resolve/1.18.1:
resolution: {integrity: sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==}
dependencies:
- is-core-module: 2.8.0
+ is-core-module: 2.13.1
path-parse: 1.0.7
- /resolve/1.20.0:
- resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==}
+ /resolve/1.22.8:
+ resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
+ hasBin: true
dependencies:
- is-core-module: 2.8.0
+ is-core-module: 2.13.1
path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
- /resolve/2.0.0-next.3:
- resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==}
+ /resolve/2.0.0-next.5:
+ resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
+ hasBin: true
dependencies:
- is-core-module: 2.8.0
+ is-core-module: 2.13.1
path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+
+ /response-iterator/0.2.6:
+ resolution: {integrity: sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw==}
+ engines: {node: '>=0.8'}
+ dev: false
/responselike/1.0.2:
- resolution: {integrity: sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=}
+ resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==}
dependencies:
lowercase-keys: 1.0.1
dev: true
/restore-cursor/2.0.0:
- resolution: {integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368=}
+ resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
engines: {node: '>=4'}
dependencies:
onetime: 2.0.1
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
dev: true
/restore-cursor/3.1.0:
@@ -31345,14 +33247,14 @@ packages:
engines: {node: '>=8'}
dependencies:
onetime: 5.1.2
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
/ret/0.1.15:
resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
engines: {node: '>=0.12'}
/retry/0.12.0:
- resolution: {integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=}
+ resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
engines: {node: '>= 4'}
/reusify/1.0.4:
@@ -31360,41 +33262,44 @@ packages:
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
/rework-visit/1.0.0:
- resolution: {integrity: sha1-mUWygD8hni96ygCtuLyfZA+ELJo=}
+ resolution: {integrity: sha512-W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ==}
/rework/1.0.1:
- resolution: {integrity: sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=}
+ resolution: {integrity: sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw==}
dependencies:
convert-source-map: 0.3.5
css: 2.2.4
- /rfdc/1.3.0:
- resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
+ /rfdc/1.3.1:
+ resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
dev: true
/rgb-regex/1.0.1:
- resolution: {integrity: sha1-wODWiC3w4jviVKR16O3UGRX+rrE=}
+ resolution: {integrity: sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==}
/rgba-regex/1.0.0:
- resolution: {integrity: sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=}
+ resolution: {integrity: sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==}
/rimraf/2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
/rimraf/2.7.1:
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
/rimraf/3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
/ripemd160/2.0.2:
resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
@@ -31406,33 +33311,37 @@ packages:
resolution: {integrity: sha512-l4NwboJM74Ilm4VKfbAtFeGq7aEjWL+5kVFcmgFA2MrdnQWx9iE/tUGvxY5HyMI7o/WpSIUFLbC5fbeaHgSCYg==}
dev: false
- /rollup-plugin-babel/4.4.0_4s3bdcfkf2nwnscy4hsif6bdua:
+ /rollup-plugin-babel/4.4.0_bw564yummf3pdo354elmt3ddaa:
resolution: {integrity: sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==}
deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-babel.
peerDependencies:
'@babel/core': 7 || ^7.0.0-rc.2
rollup: '>=0.60.0 <3'
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-module-imports': 7.16.0
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
rollup: 1.32.1
rollup-pluginutils: 2.8.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /rollup-plugin-babel/4.4.0_t7njsrm5zgy6kh3htdw5m63kti:
+ /rollup-plugin-babel/4.4.0_q5g4rhtwbxmjien7677dbvgy6e:
resolution: {integrity: sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==}
deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-babel.
peerDependencies:
'@babel/core': 7 || ^7.0.0-rc.2
rollup: '>=0.60.0 <3'
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-module-imports': 7.16.0
+ '@babel/core': 7.13.15
+ '@babel/helper-module-imports': 7.24.7
rollup: 1.32.1
rollup-pluginutils: 2.8.2
- dev: true
+ transitivePeerDependencies:
+ - supports-color
/rollup-plugin-sourcemaps/0.4.2_rollup@1.32.1:
- resolution: {integrity: sha1-YhJaqUCHqt97g+9N+vYptHMTXoc=}
+ resolution: {integrity: sha512-pHUvzofmQx/C3zCkX14h9J9MbRfMjaARED8j8qOY+au4prtk2d567GD29WAHQTeGsDAVeStms3cPnRboC41YzA==}
engines: {node: '>=4.5.0', npm: '>=2.15.9'}
peerDependencies:
rollup: '>=0.31.2'
@@ -31444,15 +33353,16 @@ packages:
/rollup-plugin-terser/5.3.1_rollup@1.32.1:
resolution: {integrity: sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==}
+ deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser
peerDependencies:
rollup: '>=0.66.0 <3'
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.24.7
jest-worker: 24.9.0
rollup: 1.32.1
rollup-pluginutils: 2.8.2
serialize-javascript: 4.0.0
- terser: 4.8.0
+ terser: 4.8.1
/rollup-plugin-typescript2/0.25.3_u7o3wpaaa4xpcuuxlpndi4hgqe:
resolution: {integrity: sha512-ADkSaidKBovJmf5VBnZBZe+WzaZwofuvYdzGAKTN/J4hN7QJCFYAq7IrH9caxlru6T5qhX41PNFS1S4HqhsGQg==}
@@ -31484,12 +33394,12 @@ packages:
resolution: {integrity: sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==}
hasBin: true
dependencies:
- '@types/estree': 0.0.50
- '@types/node': 17.0.18
+ '@types/estree': 1.0.5
+ '@types/node': 17.0.45
acorn: 7.4.1
/rst-selector-parser/2.2.3:
- resolution: {integrity: sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz}
+ resolution: {integrity: sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==}
dependencies:
lodash.flattendeep: 4.4.0
nearley: 2.20.1
@@ -31516,7 +33426,7 @@ packages:
queue-microtask: 1.2.3
/run-queue/1.0.3:
- resolution: {integrity: sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=}
+ resolution: {integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==}
dependencies:
aproba: 1.2.0
@@ -31526,19 +33436,28 @@ packages:
dependencies:
tslib: 1.14.1
- /rxjs/7.5.5:
- resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==}
+ /rxjs/7.8.1:
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
dependencies:
- tslib: 2.3.1
+ tslib: 2.6.3
dev: true
- /sade/1.7.4:
- resolution: {integrity: sha512-y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA==}
- engines: {node: '>= 6'}
+ /sade/1.8.1:
+ resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
+ engines: {node: '>=6'}
dependencies:
mri: 1.2.0
dev: true
+ /safe-array-concat/1.1.2:
+ resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
+ engines: {node: '>=0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
+ isarray: 2.0.5
+
/safe-buffer/5.1.1:
resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==}
dev: true
@@ -31549,8 +33468,16 @@ packages:
/safe-buffer/5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+ /safe-regex-test/1.0.3:
+ resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-regex: 1.1.4
+
/safe-regex/1.1.0:
- resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=}
+ resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
dependencies:
ret: 0.1.15
@@ -31573,9 +33500,9 @@ packages:
capture-exit: 2.0.0
exec-sh: 0.3.6
execa: 1.0.0
- fb-watchman: 2.0.1
+ fb-watchman: 2.0.2
micromatch: 3.1.10
- minimist: 1.2.5
+ minimist: 1.2.8
walker: 1.0.8
transitivePeerDependencies:
- supports-color
@@ -31587,17 +33514,17 @@ packages:
resolution: {integrity: sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==}
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
lodash: 4.17.21
scss-tokenizer: 0.2.3
yargs: 13.3.2
- /sass-loader/10.2.1_cyskhd5bj2bmn3hi25swn5xqtq:
- resolution: {integrity: sha512-RRvWl+3K2LSMezIsd008ErK4rk6CulIMSwrcc2aZvjymUgKo/vjXGp1rSWmfTUX7bblEOz8tst4wBwWtCGBqKA==}
+ /sass-loader/10.5.2_cyskhd5bj2bmn3hi25swn5xqtq:
+ resolution: {integrity: sha512-vMUoSNOUKJILHpcNCCyD23X34gve1TS7Rjd9uXHeKqhvBG39x6XbswFDtpbTElj6XdMFezoWhkh5vtKudf2cgQ==}
engines: {node: '>= 10.13.0'}
peerDependencies:
fibers: '>= 3.1.0'
- node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0
+ node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
sass: ^1.3.0
webpack: ^4.36.0 || ^5.0.0
peerDependenciesMeta:
@@ -31608,21 +33535,21 @@ packages:
sass:
optional: true
dependencies:
- klona: 2.0.5
- loader-utils: 2.0.2
+ klona: 2.0.6
+ loader-utils: 2.0.4
neo-async: 2.6.2
node-sass: 4.14.1
- schema-utils: 3.1.1
- semver: 7.3.5
+ schema-utils: 3.3.0
+ semver: 7.6.2
webpack: 4.44.2
dev: true
- /sass-loader/10.2.1_webpack@4.44.2:
- resolution: {integrity: sha512-RRvWl+3K2LSMezIsd008ErK4rk6CulIMSwrcc2aZvjymUgKo/vjXGp1rSWmfTUX7bblEOz8tst4wBwWtCGBqKA==}
+ /sass-loader/10.5.2_webpack@4.44.2:
+ resolution: {integrity: sha512-vMUoSNOUKJILHpcNCCyD23X34gve1TS7Rjd9uXHeKqhvBG39x6XbswFDtpbTElj6XdMFezoWhkh5vtKudf2cgQ==}
engines: {node: '>= 10.13.0'}
peerDependencies:
fibers: '>= 3.1.0'
- node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0
+ node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
sass: ^1.3.0
webpack: ^4.36.0 || ^5.0.0
peerDependenciesMeta:
@@ -31633,11 +33560,11 @@ packages:
sass:
optional: true
dependencies:
- klona: 2.0.5
- loader-utils: 2.0.2
+ klona: 2.0.6
+ loader-utils: 2.0.4
neo-async: 2.6.2
- schema-utils: 3.1.1
- semver: 7.3.5
+ schema-utils: 3.3.0
+ semver: 7.6.2
webpack: 4.44.2
dev: false
@@ -31658,11 +33585,11 @@ packages:
optional: true
dependencies:
clone-deep: 4.0.1
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
neo-async: 2.6.2
node-sass: 4.14.1
schema-utils: 2.7.1
- semver: 6.3.0
+ semver: 6.3.1
webpack: 4.42.0
dev: false
@@ -31683,29 +33610,32 @@ packages:
optional: true
dependencies:
clone-deep: 4.0.1
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
neo-async: 2.6.2
schema-utils: 2.7.1
- semver: 6.3.0
+ semver: 6.3.1
webpack: 4.42.0
dev: false
- /sass/1.49.7:
- resolution: {integrity: sha512-13dml55EMIR2rS4d/RDHHP0sXMY3+30e1TKsyXaSz3iLWVoDWEoboY8WzJd5JMnxrRHffKO3wq2mpJ0jxRJiEQ==}
- engines: {node: '>=12.0.0'}
+ /sass/1.77.4:
+ resolution: {integrity: sha512-vcF3Ckow6g939GMA4PeU7b2K/9FALXk2KF9J87txdHzXbUF9XRQRwSxcAs/fGaTnJeBFd7UoV22j3lzMLdM0Pw==}
+ engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
- chokidar: 3.5.2
- immutable: 4.0.0
- source-map-js: 1.0.1
+ chokidar: 3.6.0
+ immutable: 4.3.6
+ source-map-js: 1.2.0
/sax/1.2.1:
- resolution: {integrity: sha1-e45lYZCyKOgaZq6nSEgNgozS03o=}
+ resolution: {integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==}
dev: false
/sax/1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
+ /sax/1.4.1:
+ resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
+
/saxes/3.1.11:
resolution: {integrity: sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==}
engines: {node: '>=8'}
@@ -31749,20 +33679,20 @@ packages:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
engines: {node: '>= 8.9.0'}
dependencies:
- '@types/json-schema': 7.0.9
+ '@types/json-schema': 7.0.15
ajv: 6.12.6
ajv-keywords: 3.5.2_ajv@6.12.6
- /schema-utils/3.1.1:
- resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
+ /schema-utils/3.3.0:
+ resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/json-schema': 7.0.9
+ '@types/json-schema': 7.0.15
ajv: 6.12.6
ajv-keywords: 3.5.2_ajv@6.12.6
/scss-tokenizer/0.2.3:
- resolution: {integrity: sha1-jrBtualyMzOCTT9VMGQRSYR85dE=}
+ resolution: {integrity: sha512-dYE8LhncfBUar6POCxMTm0Ln+erjeczqEvCJib5/7XNkdw1FkUGgwMPY360FY0FgPWQxHWCx29Jl3oejyGLM9Q==}
dependencies:
js-base64: 2.6.4
source-map: 0.4.4
@@ -31771,20 +33701,24 @@ packages:
resolution: {integrity: sha512-jhXqQAQVM+8Xj5EjJGVweuEzgtGWb3tmEEpl3CLP3cStInSbVHSg0QWOGQzNq8pSID4JkpeV2mPqlMDLrm0/Vw==}
dev: false
+ /secure-json-parse/2.7.0:
+ resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==}
+ dev: true
+
/select-hose/2.0.0:
- resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=}
+ resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
/select/1.1.2:
- resolution: {integrity: sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=}
+ resolution: {integrity: sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==}
dev: true
optional: true
/selection-is-backward/1.0.0:
- resolution: {integrity: sha1-l6VGMxiKURq6ZBn8XB+pG0Z+a+E=}
+ resolution: {integrity: sha512-C+6PCOO55NLCfS8uQjUKV/6E5XMuUcfOVsix5m0QqCCCKi495NgeQVNfWtAaD71NKHsdmFCJoXUGfir3qWdr9A==}
dev: false
- /selfsigned/1.10.11:
- resolution: {integrity: sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==}
+ /selfsigned/1.10.14:
+ resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==}
dependencies:
node-forge: 0.10.0
@@ -31792,23 +33726,24 @@ packages:
resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==}
engines: {node: '>=8'}
dependencies:
- semver: 6.3.0
+ semver: 6.3.1
dev: true
/semver/5.3.0:
- resolution: {integrity: sha1-myzl094C0XxgEq0yaqa00M9U+U8=}
+ resolution: {integrity: sha512-mfmm3/H9+67MCVix1h+IXTpDwL6710LyHuk7+cWC9T1mE0qz4iHhh6r4hU2wrIT9iTsAAC2XQRvfblL028cpLw==}
hasBin: true
- /semver/5.7.1:
- resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
+ /semver/5.7.2:
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
/semver/6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
+ dev: false
- /semver/7.0.0:
- resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
+ /semver/6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
/semver/7.3.2:
@@ -31816,51 +33751,49 @@ packages:
engines: {node: '>=10'}
hasBin: true
- /semver/7.3.5:
- resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
+ /semver/7.6.2:
+ resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
engines: {node: '>=10'}
hasBin: true
- dependencies:
- lru-cache: 6.0.0
- /send/0.17.1:
- resolution: {integrity: sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==}
+ /send/0.18.0:
+ resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
dependencies:
debug: 2.6.9
- depd: 1.1.2
- destroy: 1.0.4
+ depd: 2.0.0
+ destroy: 1.2.0
encodeurl: 1.0.2
escape-html: 1.0.3
etag: 1.8.1
fresh: 0.5.2
- http-errors: 1.7.3
+ http-errors: 2.0.0
mime: 1.6.0
- ms: 2.1.1
- on-finished: 2.3.0
+ ms: 2.1.3
+ on-finished: 2.4.1
range-parser: 1.2.1
- statuses: 1.5.0
+ statuses: 2.0.1
transitivePeerDependencies:
- supports-color
dev: true
- /send/0.17.1_supports-color@6.1.0:
- resolution: {integrity: sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==}
+ /send/0.18.0_supports-color@6.1.0:
+ resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
dependencies:
debug: 2.6.9_supports-color@6.1.0
- depd: 1.1.2
- destroy: 1.0.4
+ depd: 2.0.0
+ destroy: 1.2.0
encodeurl: 1.0.2
escape-html: 1.0.3
etag: 1.8.1
fresh: 0.5.2
- http-errors: 1.7.3
+ http-errors: 2.0.0
mime: 1.6.0
- ms: 2.1.1
- on-finished: 2.3.0
+ ms: 2.1.3
+ on-finished: 2.4.1
range-parser: 1.2.1
- statuses: 1.5.0
+ statuses: 2.0.1
transitivePeerDependencies:
- supports-color
@@ -31885,8 +33818,14 @@ packages:
dependencies:
randombytes: 2.1.0
+ /serialize-javascript/6.0.2:
+ resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
+ dependencies:
+ randombytes: 2.1.0
+ dev: true
+
/serve-favicon/2.5.0:
- resolution: {integrity: sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=}
+ resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==}
engines: {node: '>= 0.8.0'}
dependencies:
etag: 1.8.1
@@ -31910,39 +33849,39 @@ packages:
dev: false
/serve-index/1.9.1_supports-color@6.1.0:
- resolution: {integrity: sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=}
+ resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
dependencies:
- accepts: 1.3.7
+ accepts: 1.3.8
batch: 0.6.1
debug: 2.6.9_supports-color@6.1.0
escape-html: 1.0.3
http-errors: 1.6.3
- mime-types: 2.1.34
+ mime-types: 2.1.35
parseurl: 1.3.3
transitivePeerDependencies:
- supports-color
- /serve-static/1.14.1:
- resolution: {integrity: sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==}
+ /serve-static/1.15.0:
+ resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
dependencies:
encodeurl: 1.0.2
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.17.1
+ send: 0.18.0
transitivePeerDependencies:
- supports-color
dev: true
- /serve-static/1.14.1_supports-color@6.1.0:
- resolution: {integrity: sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==}
+ /serve-static/1.15.0_supports-color@6.1.0:
+ resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
dependencies:
encodeurl: 1.0.2
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.17.1_supports-color@6.1.0
+ send: 0.18.0_supports-color@6.1.0
transitivePeerDependencies:
- supports-color
@@ -31963,8 +33902,8 @@ packages:
- supports-color
dev: false
- /serve/13.0.2:
- resolution: {integrity: sha512-71R6fKvNgKrqARAag6lYJNnxDzpH7DCNrMuvPY5PLVaC2PDhJsGTj/34o4o4tPWhTuLgEXqvgnAWbATQ9zGZTQ==}
+ /serve/13.0.4:
+ resolution: {integrity: sha512-Lj8rhXmphJCRQVv5qwu0NQZ2h+0MrRyRJxDZu5y3qLH2i/XY6a0FPj/VmjMUdkJb672MBfE8hJ274PU6JzBd0Q==}
hasBin: true
dependencies:
'@zeit/schemas': 2.6.0
@@ -31981,7 +33920,27 @@ packages:
dev: false
/set-blocking/2.0.0:
- resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=}
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+
+ /set-function-length/1.2.2:
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.2
+
+ /set-function-name/2.0.2:
+ resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ functions-have-names: 1.2.3
+ has-property-descriptors: 1.0.2
/set-value/2.0.1:
resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
@@ -31993,13 +33952,13 @@ packages:
split-string: 3.1.0
/setimmediate/1.0.5:
- resolution: {integrity: sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=}
+ resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
/setprototypeof/1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
- /setprototypeof/1.1.1:
- resolution: {integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==}
+ /setprototypeof/1.2.0:
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
/sha.js/2.4.11:
resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
@@ -32009,7 +33968,7 @@ packages:
safe-buffer: 5.2.1
/shallow-clone/0.1.2:
- resolution: {integrity: sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=}
+ resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==}
engines: {node: '>=0.10.0'}
dependencies:
is-extendable: 0.1.1
@@ -32031,7 +33990,7 @@ packages:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
/shebang-command/1.2.0:
- resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=}
+ resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
dependencies:
shebang-regex: 1.0.0
@@ -32043,7 +34002,7 @@ packages:
shebang-regex: 3.0.0
/shebang-regex/1.0.0:
- resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=}
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
engines: {node: '>=0.10.0'}
/shebang-regex/3.0.0:
@@ -32053,12 +34012,16 @@ packages:
/shell-quote/1.7.2:
resolution: {integrity: sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==}
- /shelljs/0.8.4:
- resolution: {integrity: sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==}
+ /shell-quote/1.8.1:
+ resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
+ dev: true
+
+ /shelljs/0.8.5:
+ resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==}
engines: {node: '>=4'}
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
interpret: 1.4.0
rechoir: 0.6.2
dev: true
@@ -32066,18 +34029,20 @@ packages:
/shellwords/0.1.1:
resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==}
- /side-channel/1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
+ /side-channel/1.0.6:
+ resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.1.1
- object-inspect: 1.11.0
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ object-inspect: 1.13.1
- /signal-exit/3.0.5:
- resolution: {integrity: sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==}
+ /signal-exit/3.0.7:
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
/simple-swizzle/0.2.2:
- resolution: {integrity: sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=}
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
dependencies:
is-arrayish: 0.3.2
@@ -32087,36 +34052,50 @@ packages:
react: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0
react-dom: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0
dependencies:
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
simplebar: 4.2.3
dev: true
+ /simplebar-react/1.2.3_zkbncb2mrwigeq3keybbaytzya:
+ resolution: {integrity: sha512-1EOWJzFC7eqHUp1igD1/tb8GBv5aPQA5ZMvpeDnVkpNJ3jAuvmrL2kir3HuijlxhG7njvw9ssxjjBa89E5DrJg==}
+ peerDependencies:
+ react: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0
+ react-dom: ^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0
+ dependencies:
+ prop-types: 15.8.1
+ react: 16.14.0
+ react-dom: 17.0.2_react@17.0.2
+ simplebar: 4.2.3
+ dev: true
+
/simplebar/4.2.3:
resolution: {integrity: sha512-9no0pK7/1y+8/oTF3sy/+kx0PjQ3uk4cYwld5F1CJGk2gx+prRyUq8GRfvcVLq5niYWSozZdX73a2wIr1o9l/g==}
dependencies:
can-use-dom: 0.1.0
- core-js: 3.19.1
+ core-js: 3.37.1
lodash.debounce: 4.0.8
lodash.memoize: 4.1.2
lodash.throttle: 4.1.1
resize-observer-polyfill: 1.5.1
dev: true
- /sinon/10.0.0:
- resolution: {integrity: sha512-XAn5DxtGVJBlBWYrcYKEhWCz7FLwZGdyvANRyK06419hyEpdT0dMc5A8Vcxg5SCGHc40CsqoKsc1bt1CbJPfNw==}
+ /sinon/10.0.1:
+ resolution: {integrity: sha512-1rf86mvW4Mt7JitEIgmNaLXaWnrWd/UrVKZZlL+kbeOujXVf9fmC4kQEQ/YeHoiIA23PLNngYWK+dngIx/AumA==}
+ deprecated: 16.1.1
dependencies:
- '@sinonjs/commons': 1.8.3
- '@sinonjs/fake-timers': 6.0.1
- '@sinonjs/samsam': 5.3.1
+ '@sinonjs/commons': 1.8.6
+ '@sinonjs/fake-timers': 7.1.2
+ '@sinonjs/samsam': 6.1.3
diff: 4.0.2
- nise: 4.1.0
+ nise: 5.1.9
supports-color: 7.2.0
dev: false
/sinon/4.5.0:
resolution: {integrity: sha512-trdx+mB0VBBgoYucy6a9L7/jfQOmvGeaKZT4OOJ+lPAtI8623xyGr8wLiE4eojzBS8G9yXbhx42GHUOVLr4X2w==}
+ deprecated: 16.1.1
requiresBuild: true
dependencies:
'@sinonjs/formatio': 2.0.0
@@ -32132,8 +34111,8 @@ packages:
resolution: {integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==}
engines: {node: '>= 10'}
dependencies:
- '@polka/url': 1.0.0-next.21
- mrmime: 1.0.0
+ '@polka/url': 1.0.0-next.25
+ mrmime: 1.0.1
totalist: 1.1.0
dev: true
@@ -32145,7 +34124,7 @@ packages:
dev: false
/slash/1.0.0:
- resolution: {integrity: sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=}
+ resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==}
engines: {node: '>=0.10.0'}
/slash/2.0.0:
@@ -32182,24 +34161,24 @@ packages:
slate-dev-environment: 0.2.5
dev: false
- /slate-plain-serializer/0.6.39_rzi24lz64tylwv45t6z7v46aim:
+ /slate-plain-serializer/0.6.39_fsp4ikl4z4pfto7qi6l6afmvbi:
resolution: {integrity: sha512-EGl+Y+9Fw9IULtPg8sttydaeiAoaibJolMXNfqI79+5GWTQwJFIbg24keKvsTw+3f2RieaPu8fcrKyujKtZ7ZQ==}
peerDependencies:
immutable: '>=3.8.1'
slate: '>=0.32.0'
dependencies:
- immutable: 3.8.2
- slate: 0.41.3_xqes2epxgajwa2ujqadoxgmfjq
+ immutable: 4.3.6
+ slate: 0.41.3_immutable@4.3.6
dev: false
- /slate-plain-serializer/0.6.39_yrgvprs7zhm3jadril2fboc6g4:
+ /slate-plain-serializer/0.6.39_rzi24lz64tylwv45t6z7v46aim:
resolution: {integrity: sha512-EGl+Y+9Fw9IULtPg8sttydaeiAoaibJolMXNfqI79+5GWTQwJFIbg24keKvsTw+3f2RieaPu8fcrKyujKtZ7ZQ==}
peerDependencies:
immutable: '>=3.8.1'
slate: '>=0.32.0'
dependencies:
- immutable: 4.0.0
- slate: 0.41.3_immutable@4.0.0
+ immutable: 3.8.2
+ slate: 0.41.3_xqes2epxgajwa2ujqadoxgmfjq
dev: false
/slate-plain-serializer/0.7.13:
@@ -32209,27 +34188,27 @@ packages:
slate: '>=0.46.0 <0.50.0'
dev: false
- /slate-prop-types/0.4.67_rzi24lz64tylwv45t6z7v46aim:
+ /slate-prop-types/0.4.67_fsp4ikl4z4pfto7qi6l6afmvbi:
resolution: {integrity: sha512-FmdwitAw1Y69JHm326dfwP6Zd6R99jz1Im8jvKcnG2hytk72I1vIv6ct2CkNGwc3sg90+OIO/Rf18frYxxoTzw==}
peerDependencies:
immutable: '>=3.8.1'
slate: '>=0.32.0'
dependencies:
- immutable: 3.8.2
- slate: 0.41.3_xqes2epxgajwa2ujqadoxgmfjq
+ immutable: 4.3.6
+ slate: 0.41.3_immutable@4.3.6
dev: false
- /slate-prop-types/0.4.67_yrgvprs7zhm3jadril2fboc6g4:
+ /slate-prop-types/0.4.67_rzi24lz64tylwv45t6z7v46aim:
resolution: {integrity: sha512-FmdwitAw1Y69JHm326dfwP6Zd6R99jz1Im8jvKcnG2hytk72I1vIv6ct2CkNGwc3sg90+OIO/Rf18frYxxoTzw==}
peerDependencies:
immutable: '>=3.8.1'
slate: '>=0.32.0'
dependencies:
- immutable: 4.0.0
- slate: 0.41.3_nri5ixjb2e3bg6wmozyotoe52y
+ immutable: 3.8.2
+ slate: 0.41.3_xqes2epxgajwa2ujqadoxgmfjq
dev: false
- /slate-react/0.18.0_yrgvprs7zhm3jadril2fboc6g4:
+ /slate-react/0.18.0_fsp4ikl4z4pfto7qi6l6afmvbi:
resolution: {integrity: sha512-k2XE8GLOl459evStuAhGlTXaBQ5bTGPwGkr8XhY6m0abSmvaKr3Xy9Vn0wvzbFWbYDeDFsd+NBpIabd4vU2ZUQ==}
peerDependencies:
immutable: '>=3.8.1'
@@ -32239,25 +34218,25 @@ packages:
dependencies:
debug: 3.2.7
get-window: 1.1.2
- immutable: 4.0.0
+ immutable: 4.3.6
is-window: 1.0.2
lodash: 4.17.21
memoize-one: 4.0.3
- prop-types: 15.7.2
- react-immutable-proptypes: 2.2.0_immutable@4.0.0
+ prop-types: 15.8.1
+ react-immutable-proptypes: 2.2.0_immutable@4.3.6
selection-is-backward: 1.0.0
- slate: 0.41.3_immutable@4.0.0
+ slate: 0.41.3_immutable@4.3.6
slate-base64-serializer: 0.2.115_slate@0.41.3
slate-dev-environment: 0.2.5
slate-dev-warning: 0.0.1
slate-hotkeys: 0.2.11
- slate-plain-serializer: 0.6.39_yrgvprs7zhm3jadril2fboc6g4
- slate-prop-types: 0.4.67_yrgvprs7zhm3jadril2fboc6g4
+ slate-plain-serializer: 0.6.39_fsp4ikl4z4pfto7qi6l6afmvbi
+ slate-prop-types: 0.4.67_fsp4ikl4z4pfto7qi6l6afmvbi
transitivePeerDependencies:
- supports-color
dev: false
- /slate-react/0.18.11_hixnpnc4k2emuat7tur23ak6gi:
+ /slate-react/0.18.11_e5lsqgoe4lsklgncetj35xqqrm:
resolution: {integrity: sha512-7u0+LLabGaxjWYb0oTqUDcs3iCvJdaZwcGW6hLc1hFv06KkwaIxAqYpP8dUBRVlQd+0/X0TdyagCmf0IjFSPhg==}
peerDependencies:
immutable: '>=3.8.1'
@@ -32267,22 +34246,22 @@ packages:
dependencies:
debug: 3.2.7
get-window: 1.1.2
- immutable: 4.0.0
+ immutable: 4.3.6
is-window: 1.0.2
lodash: 4.17.21
memoize-one: 4.0.3
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- react-immutable-proptypes: 2.2.0_immutable@4.0.0
+ react-immutable-proptypes: 2.2.0_immutable@4.3.6
selection-is-backward: 1.0.0
- slate: 0.41.3_nri5ixjb2e3bg6wmozyotoe52y
+ slate: 0.41.3_5ytup4ucxr2wnochrhmfa65b4i
slate-base64-serializer: 0.2.115_slate@0.41.3
slate-dev-environment: 0.2.5
slate-dev-warning: 0.0.1
slate-hotkeys: 0.2.11
- slate-plain-serializer: 0.6.39_yrgvprs7zhm3jadril2fboc6g4
- slate-prop-types: 0.4.67_yrgvprs7zhm3jadril2fboc6g4
+ slate-plain-serializer: 0.6.39_fsp4ikl4z4pfto7qi6l6afmvbi
+ slate-prop-types: 0.4.67_fsp4ikl4z4pfto7qi6l6afmvbi
transitivePeerDependencies:
- supports-color
dev: false
@@ -32301,7 +34280,7 @@ packages:
is-window: 1.0.2
lodash: 4.17.21
memoize-one: 4.0.3
- prop-types: 15.7.2
+ prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-immutable-proptypes: 2.2.0_immutable@3.8.2
@@ -32317,7 +34296,7 @@ packages:
- supports-color
dev: false
- /slate/0.41.3_immutable@4.0.0:
+ /slate/0.41.3_5ytup4ucxr2wnochrhmfa65b4i:
resolution: {integrity: sha512-I/ymHWRxtoSOWYKh/SFgW3Vkkojt5ywWf7Wh4oBvaKic/3mAsM1wymyZmhnvSKK59IeE0JJzD4uyyQaM1KEFHA==}
peerDependencies:
immutable: '>=3.8.1'
@@ -32326,16 +34305,17 @@ packages:
debug: 3.2.7
direction: 0.1.5
esrever: 0.2.0
- immutable: 4.0.0
+ immutable: 4.3.6
is-plain-object: 2.0.4
lodash: 4.17.21
+ react: 17.0.2
slate-dev-warning: 0.0.1
type-of: 2.0.1
transitivePeerDependencies:
- supports-color
dev: false
- /slate/0.41.3_nri5ixjb2e3bg6wmozyotoe52y:
+ /slate/0.41.3_immutable@4.3.6:
resolution: {integrity: sha512-I/ymHWRxtoSOWYKh/SFgW3Vkkojt5ywWf7Wh4oBvaKic/3mAsM1wymyZmhnvSKK59IeE0JJzD4uyyQaM1KEFHA==}
peerDependencies:
immutable: '>=3.8.1'
@@ -32344,10 +34324,9 @@ packages:
debug: 3.2.7
direction: 0.1.5
esrever: 0.2.0
- immutable: 4.0.0
+ immutable: 4.3.6
is-plain-object: 2.0.4
lodash: 4.17.21
- react: 17.0.2
slate-dev-warning: 0.0.1
type-of: 2.0.1
transitivePeerDependencies:
@@ -32398,8 +34377,8 @@ packages:
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
- /slugify/1.6.2:
- resolution: {integrity: sha512-XMtI8qD84LwCpthLMBHlIhcrj10cgA+U/Ot8G6FD6uFuWZtMfKK75JO7l81nzpFJsPlsW6LT+VKqWQJW3+6New==}
+ /slugify/1.6.6:
+ resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==}
engines: {node: '>=8.0.0'}
dev: false
@@ -32451,11 +34430,11 @@ packages:
resolution: {integrity: sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==}
dependencies:
debug: 3.2.7
- eventsource: 1.1.0
+ eventsource: 1.1.2
faye-websocket: 0.11.4
inherits: 2.0.4
json3: 3.3.3
- url-parse: 1.5.3
+ url-parse: 1.5.10
transitivePeerDependencies:
- supports-color
dev: true
@@ -32464,24 +34443,24 @@ packages:
resolution: {integrity: sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==}
dependencies:
debug: 3.2.7_supports-color@6.1.0
- eventsource: 1.1.0
+ eventsource: 1.1.2
faye-websocket: 0.11.4
inherits: 2.0.4
json3: 3.3.3
- url-parse: 1.5.3
+ url-parse: 1.5.10
transitivePeerDependencies:
- supports-color
dev: false
- /sockjs-client/1.5.2_supports-color@6.1.0:
- resolution: {integrity: sha512-ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ==}
+ /sockjs-client/1.6.1_supports-color@6.1.0:
+ resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==}
+ engines: {node: '>=12'}
dependencies:
debug: 3.2.7_supports-color@6.1.0
- eventsource: 1.1.0
+ eventsource: 2.0.2
faye-websocket: 0.11.4
inherits: 2.0.4
- json3: 3.3.3
- url-parse: 1.5.3
+ url-parse: 1.5.10
transitivePeerDependencies:
- supports-color
@@ -32506,14 +34485,20 @@ packages:
flatstr: 1.0.12
dev: false
- /sonic-boom/2.3.1:
- resolution: {integrity: sha512-o0vJPsRiCW5Q0EmRKjNiiYGy2DqSXcxk4mY9vIBSPwmkH/e/vJ2Tq8EECd5NTiO77x8vlVN+ykDjRQJTqf7eKg==}
+ /sonic-boom/2.8.0:
+ resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==}
+ dependencies:
+ atomic-sleep: 1.0.0
+ dev: true
+
+ /sonic-boom/4.0.1:
+ resolution: {integrity: sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ==}
dependencies:
atomic-sleep: 1.0.0
dev: true
/sort-keys/1.1.2:
- resolution: {integrity: sha1-RBttTTRnmPG05J6JIK37oOVD+a0=}
+ resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==}
engines: {node: '>=0.10.0'}
dependencies:
is-plain-obj: 1.1.0
@@ -32521,8 +34506,8 @@ packages:
/source-list-map/2.0.1:
resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
- /source-map-js/1.0.1:
- resolution: {integrity: sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==}
+ /source-map-js/1.2.0:
+ resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
engines: {node: '>=0.10.0'}
/source-map-resolve/0.5.3:
@@ -32530,7 +34515,7 @@ packages:
deprecated: See https://github.com/lydell/source-map-resolve#deprecated
dependencies:
atob: 2.1.2
- decode-uri-component: 0.2.0
+ decode-uri-component: 0.2.2
resolve-url: 0.2.1
source-map-url: 0.4.1
urix: 0.1.0
@@ -32541,8 +34526,8 @@ packages:
source-map: 0.5.7
dev: true
- /source-map-support/0.5.20:
- resolution: {integrity: sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==}
+ /source-map-support/0.5.21:
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
@@ -32552,30 +34537,31 @@ packages:
deprecated: See https://github.com/lydell/source-map-url#deprecated
/source-map/0.4.4:
- resolution: {integrity: sha1-66T12pwNyZneaAMti092FzZSA2s=}
+ resolution: {integrity: sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A==}
engines: {node: '>=0.8.0'}
dependencies:
amdefine: 1.0.1
/source-map/0.5.0:
- resolution: {integrity: sha1-D+llA6yGpa213mP05BKuSHLNvoY=}
+ resolution: {integrity: sha512-gjGnxNN0K+/Pr4Mi4fs/pOtda10dKB6Wn9QvjOrH6v5TWsI7ghHuJUHoIgyM6DkUL5kr2GtPFGererzKpMBWfA==}
engines: {node: '>=0.10.0'}
dev: false
/source-map/0.5.7:
- resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=}
+ resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
/source-map/0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- /source-map/0.7.3:
- resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==}
+ /source-map/0.7.4:
+ resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
/sourcemap-codec/1.4.8:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
+ deprecated: Please use @jridgewell/sourcemap-codec instead
/space-separated-tokens/1.1.5:
resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==}
@@ -32589,36 +34575,36 @@ packages:
is-windows: 1.0.2
make-dir: 3.1.0
rimraf: 3.0.2
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
which: 2.0.2
dev: true
- /spdx-correct/3.1.1:
- resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
+ /spdx-correct/3.2.0:
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.11
+ spdx-license-ids: 3.0.18
- /spdx-exceptions/2.3.0:
- resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
+ /spdx-exceptions/2.5.0:
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
/spdx-expression-parse/3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.11
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.18
- /spdx-license-ids/3.0.11:
- resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==}
+ /spdx-license-ids/3.0.18:
+ resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==}
/spdy-transport/3.0.0_supports-color@6.1.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
dependencies:
- debug: 4.3.2_supports-color@6.1.0
+ debug: 4.3.5_supports-color@6.1.0
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
wbuf: 1.7.3
transitivePeerDependencies:
- supports-color
@@ -32627,7 +34613,7 @@ packages:
resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
engines: {node: '>=6.0.0'}
dependencies:
- debug: 4.3.2_supports-color@6.1.0
+ debug: 4.3.5_supports-color@6.1.0
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -32647,16 +34633,21 @@ packages:
extend-shallow: 3.0.2
/split/0.3.3:
- resolution: {integrity: sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=}
+ resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==}
dependencies:
through: 2.3.8
dev: true
+ /split2/4.2.0:
+ resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
+ engines: {node: '>= 10.x'}
+ dev: true
+
/sprintf-js/1.0.3:
- resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=}
+ resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- /sshpk/1.16.1:
- resolution: {integrity: sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==}
+ /sshpk/1.18.0:
+ resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==}
engines: {node: '>=0.10.0'}
hasBin: true
dependencies:
@@ -32680,16 +34671,17 @@ packages:
engines: {node: '>= 8'}
dependencies:
figgy-pudding: 3.5.2
- minipass: 3.1.5
+ minipass: 3.3.6
/ssri/8.0.1:
resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.1.5
+ minipass: 3.3.6
/stable/0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
+ deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
/stack-utils/1.0.5:
resolution: {integrity: sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==}
@@ -32697,67 +34689,85 @@ packages:
dependencies:
escape-string-regexp: 2.0.0
- /stack-utils/2.0.5:
- resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==}
+ /stack-utils/2.0.6:
+ resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
dependencies:
escape-string-regexp: 2.0.0
/stackframe/0.3.1:
- resolution: {integrity: sha1-M6qE8Rd6VUjIk1Uzy/6zQgl19aQ=}
+ resolution: {integrity: sha512-XmoiF4T5nuWEp2x2w92WdGjdHGY/cZa6LIbRsDRQR/Xlk4uW0PAUlH1zJYVffocwKpCdwyuypIp25xsSXEtZHw==}
dev: false
- /stackframe/1.2.0:
- resolution: {integrity: sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==}
+ /stackframe/1.3.4:
+ resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
- /start-server-and-test/1.14.0:
- resolution: {integrity: sha512-on5ELuxO2K0t8EmNj9MtVlFqwBMxfWOhu4U7uZD1xccVpFlOQKR93CSe0u98iQzfNxRyaNTb/CdadbNllplTsw==}
+ /start-server-and-test/1.15.5:
+ resolution: {integrity: sha512-o3EmkX0++GV+qsvIJ/OKWm3w91fD8uS/bPQVPrh/7loaxkpXSuAIHdnmN/P/regQK9eNAK76aBJcHt+OSTk+nA==}
engines: {node: '>=6'}
+ deprecated: this package has been deprecated
hasBin: true
dependencies:
+ arg: 5.0.2
bluebird: 3.7.2
check-more-types: 2.24.0
- debug: 4.3.2
+ debug: 4.3.4
execa: 5.1.1
lazy-ass: 1.6.0
ps-tree: 1.2.0
- wait-on: 6.0.0_debug@4.3.2
+ wait-on: 7.0.1_debug@4.3.4
transitivePeerDependencies:
- supports-color
dev: true
+ /static-eval/2.0.2:
+ resolution: {integrity: sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==}
+ dependencies:
+ escodegen: 1.14.3
+
/static-extend/0.1.2:
- resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=}
+ resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==}
engines: {node: '>=0.10.0'}
dependencies:
define-property: 0.2.5
object-copy: 0.1.0
/statuses/1.5.0:
- resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=}
+ resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
+ /statuses/2.0.1:
+ resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+ engines: {node: '>= 0.8'}
+
/stdout-stream/1.4.1:
resolution: {integrity: sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==}
dependencies:
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
/stealthy-require/1.1.1:
- resolution: {integrity: sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=}
+ resolution: {integrity: sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==}
engines: {node: '>=0.10.0'}
- /store2/2.12.0:
- resolution: {integrity: sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw==}
+ /stop-iteration-iterator/1.0.0:
+ resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ internal-slot: 1.0.7
+ dev: true
+
+ /store2/2.14.3:
+ resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==}
dev: true
/stream-browserify/2.0.2:
resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==}
dependencies:
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
/stream-combiner/0.0.4:
- resolution: {integrity: sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=}
+ resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==}
dependencies:
duplexer: 0.1.2
dev: true
@@ -32766,31 +34776,31 @@ packages:
resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==}
dependencies:
end-of-stream: 1.4.4
- stream-shift: 1.0.1
+ stream-shift: 1.0.3
/stream-http/2.8.3:
resolution: {integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==}
dependencies:
builtin-status-codes: 3.0.0
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
to-arraybuffer: 1.0.1
xtend: 4.0.2
- /stream-shift/1.0.1:
- resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==}
+ /stream-shift/1.0.3:
+ resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
/strict-uri-encode/1.1.0:
- resolution: {integrity: sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=}
+ resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==}
engines: {node: '>=0.10.0'}
/strict-uri-encode/2.0.0:
- resolution: {integrity: sha1-ucczDHBChi9rFC3CdLvMWGbONUY=}
+ resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
engines: {node: '>=4'}
dev: false
/string-length/2.0.0:
- resolution: {integrity: sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=}
+ resolution: {integrity: sha512-Qka42GGrS8Mm3SZ+7cH8UXiIWI867/b/Z/feQSpQx/rbfB8UGknGEZVaUQMOUVj+soY6NpWAxily63HI1OckVQ==}
engines: {node: '>=4'}
dependencies:
astral-regex: 1.0.0
@@ -32814,7 +34824,7 @@ packages:
resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==}
/string-width/1.0.2:
- resolution: {integrity: sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=}
+ resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==}
engines: {node: '>=0.10.0'}
dependencies:
code-point-at: 1.1.0
@@ -32844,59 +34854,69 @@ packages:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- /string.prototype.matchall/4.0.6:
- resolution: {integrity: sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==}
+ /string.prototype.matchall/4.0.11:
+ resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
- get-intrinsic: 1.1.1
- has-symbols: 1.0.2
- internal-slot: 1.0.3
- regexp.prototype.flags: 1.3.1
- side-channel: 1.0.4
-
- /string.prototype.padend/3.1.3:
- resolution: {integrity: sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg==}
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
+ has-symbols: 1.0.3
+ internal-slot: 1.0.7
+ regexp.prototype.flags: 1.5.2
+ set-function-name: 2.0.2
+ side-channel: 1.0.6
+
+ /string.prototype.padend/3.1.6:
+ resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
dev: true
- /string.prototype.padstart/3.1.3:
- resolution: {integrity: sha512-NZydyOMtYxpTjGqp0VN5PYUF/tsU15yDMZnUdj16qRUIUiMJkHHSDElYyQFrMu+/WloTpA7MQSiADhBicDfaoA==}
+ /string.prototype.padstart/3.1.6:
+ resolution: {integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
dev: true
- /string.prototype.trim/1.2.5:
- resolution: {integrity: sha512-Lnh17webJVsD6ECeovpVN17RlAKjmz4rF9S+8Y45CkMc/ufVpTkU3vZIyIC7sllQ1FCvObZnnCdNs/HXTUOTlg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.5.tgz}
+ /string.prototype.trim/1.2.9:
+ resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- es-abstract: 1.19.1
- dev: true
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
- /string.prototype.trimend/1.0.4:
- resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==}
+ /string.prototype.trimend/1.0.8:
+ resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
- /string.prototype.trimstart/1.0.4:
- resolution: {integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==}
+ /string.prototype.trimstart/1.0.8:
+ resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
/string/3.3.3:
- resolution: {integrity: sha1-XqIRzZLSKOGEKUmQpsyXs2anfLA=}
+ resolution: {integrity: sha512-LbvprpPZT/39QKfNrlPX9vXtS7If80vqbPQ7clnHQb5oVOM5hz/cs3iQCCZjvQDwsAWl+HpLQX3gRgN6IC8t3g==}
dev: false
/string_decoder/1.1.1:
@@ -32918,22 +34938,22 @@ packages:
is-regexp: 1.0.0
/strip-ansi/3.0.1:
- resolution: {integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=}
+ resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
engines: {node: '>=0.10.0'}
dependencies:
ansi-regex: 2.1.1
/strip-ansi/4.0.0:
- resolution: {integrity: sha1-qEeQIusaw2iocTibY1JixQXuNo8=}
+ resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==}
engines: {node: '>=4'}
dependencies:
- ansi-regex: 3.0.0
+ ansi-regex: 3.0.1
/strip-ansi/5.2.0:
resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
engines: {node: '>=6'}
dependencies:
- ansi-regex: 4.1.0
+ ansi-regex: 4.1.1
/strip-ansi/6.0.0:
resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==}
@@ -32948,13 +34968,13 @@ packages:
ansi-regex: 5.0.1
/strip-bom/2.0.0:
- resolution: {integrity: sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=}
+ resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==}
engines: {node: '>=0.10.0'}
dependencies:
is-utf8: 0.2.1
/strip-bom/3.0.0:
- resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=}
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
/strip-bom/4.0.0:
@@ -32969,7 +34989,7 @@ packages:
babel-plugin-transform-object-rest-spread: 6.26.0
/strip-eof/1.0.0:
- resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=}
+ resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
engines: {node: '>=0.10.0'}
/strip-final-newline/2.0.0:
@@ -32977,7 +34997,7 @@ packages:
engines: {node: '>=6'}
/strip-indent/1.0.1:
- resolution: {integrity: sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=}
+ resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==}
engines: {node: '>=0.10.0'}
hasBin: true
dependencies:
@@ -32990,7 +35010,7 @@ packages:
min-indent: 1.0.1
/strip-json-comments/2.0.1:
- resolution: {integrity: sha1-PFMZQukIwml8DsNEhYwobHygpgo=}
+ resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
engines: {node: '>=0.10.0'}
/strip-json-comments/3.1.1:
@@ -33001,36 +35021,54 @@ packages:
resolution: {integrity: sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==}
engines: {node: '>= 0.12.0'}
dependencies:
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
schema-utils: 1.0.0
dev: false
- /style-loader/1.3.0_webpack@4.44.2:
+ /style-loader/1.3.0_webpack@4.42.0:
resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==}
engines: {node: '>= 8.9.0'}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
schema-utils: 2.7.1
- webpack: 4.44.2
+ webpack: 4.42.0
+ dev: true
- /style-loader/1.3.0_webpack@4.46.0:
+ /style-loader/1.3.0_webpack@4.44.2:
resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==}
engines: {node: '>= 8.9.0'}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
schema-utils: 2.7.1
- webpack: 4.46.0
+ webpack: 4.44.2
+
+ /style-loader/2.0.0_webpack@5.92.1:
+ resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ loader-utils: 2.0.4
+ schema-utils: 3.3.0
+ webpack: 5.92.1_webpack-cli@4.10.0
+ dev: true
+
+ /style-loader/4.0.0:
+ resolution: {integrity: sha512-1V4WqhhZZgjVAVJyt7TdDPZoPBPNHbekX4fWnCJL1yQukhCeZhJySUL+gL9y6sNdN95uEOS83Y55SqHcP7MzLA==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ webpack: ^5.27.0
dev: true
/style-value-types/4.1.4:
resolution: {integrity: sha512-LCJL6tB+vPSUoxgUBt9juXIlNJHtBMy8jkXzUJSBzeHWdBu6lhzHqCvLVkXFGsFIlNa2ln1sQHya/gzaFmB2Lg==}
dependencies:
hey-listen: 1.0.8
- tslib: 2.3.1
+ tslib: 2.6.3
dev: false
/styled-components/4.4.1:
@@ -33040,15 +35078,15 @@ packages:
react: '>= 16.3.0'
react-dom: '>= 16.3.0'
dependencies:
- '@babel/helper-module-imports': 7.16.0
- '@babel/traverse': 7.16.8_supports-color@5.5.0
+ '@babel/helper-module-imports': 7.24.7_supports-color@5.5.0
+ '@babel/traverse': 7.24.7_supports-color@5.5.0
'@emotion/is-prop-valid': 0.8.8
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 1.13.3_styled-components@4.4.1
+ babel-plugin-styled-components: 1.13.3_x56uxbnty5wbws66wahiqabede
css-to-react-native: 2.3.2
memoize-one: 5.2.1
merge-anything: 2.4.4
- prop-types: 15.7.2
+ prop-types: 15.8.1
react-is: 16.13.1
stylis: 3.5.4
stylis-rule-sheet: 0.0.10_stylis@3.5.4
@@ -33062,36 +35100,38 @@ packages:
react-dom: '>= 16.8.0'
react-is: '>= 16.8.0'
dependencies:
- '@babel/helper-module-imports': 7.16.0
- '@babel/traverse': 7.16.3_supports-color@5.5.0
+ '@babel/helper-module-imports': 7.24.7_supports-color@5.5.0
+ '@babel/traverse': 7.24.7_supports-color@5.5.0
'@emotion/is-prop-valid': 0.8.8
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 1.13.3_styled-components@5.0.1
- css-to-react-native: 3.0.0
+ babel-plugin-styled-components: 2.1.4_bjmfadd4hoclqnjgyriqjgqwzq
+ css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
shallowequal: 1.1.0
supports-color: 5.5.0
+ transitivePeerDependencies:
+ - '@babel/core'
dev: false
- /styled-jsx-plugin-postcss/4.0.1_postcss@8.4.5:
+ /styled-jsx-plugin-postcss/4.0.1_postcss@8.4.38:
resolution: {integrity: sha512-Qy3OnewWZYykT0ESWRqqC7KhYSghXpel+cnY3/MOnmatEwvJl1+RB5YwJRjqhcODDoY/D+dKH97PZFuF3/rCBg==}
peerDependencies:
postcss: ^7.0.2 || ^8.1.0
dependencies:
- postcss: 8.4.5
+ postcss: 8.4.38
postcss-load-config: 2.1.2
dev: false
- /styled-jsx/5.0.0_react@17.0.2:
- resolution: {integrity: sha512-qUqsWoBquEdERe10EW8vLp3jT25s/ssG1/qX5gZ4wu15OZpmSMFI2v+fWlRhLfykA5rFtlJ1ME8A8pm/peV4WA==}
+ /styled-jsx/5.0.7_react@17.0.2:
+ resolution: {integrity: sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA==}
engines: {node: '>= 12.0.0'}
peerDependencies:
'@babel/core': '*'
babel-plugin-macros: '*'
- react: '>= 16.8.0 || 17.x.x || 18.x.x'
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
peerDependenciesMeta:
'@babel/core':
optional: true
@@ -33099,15 +35139,27 @@ packages:
optional: true
dependencies:
react: 17.0.2
+ dev: false
/stylehacks/4.0.3:
resolution: {integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.20.0
+ browserslist: 4.23.1
postcss: 7.0.39
postcss-selector-parser: 3.1.2
+ /stylehacks/5.1.1_postcss@8.4.38:
+ resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
+ engines: {node: ^10 || ^12 || >=14.0}
+ peerDependencies:
+ postcss: ^8.2.15
+ dependencies:
+ browserslist: 4.23.1
+ postcss: 8.4.38
+ postcss-selector-parser: 6.1.0
+ dev: true
+
/stylis-rule-sheet/0.0.10_stylis@3.5.4:
resolution: {integrity: sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==}
peerDependencies:
@@ -33120,12 +35172,8 @@ packages:
resolution: {integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==}
dev: false
- /stylis/4.0.10:
- resolution: {integrity: sha512-m3k+dk7QeJw660eIKRRn3xPF6uuvHs/FFzjX3HQ5ove0qYsiygoAhwn5a3IYKaZPo5LrYD0rfVmtv1gNY1uYwg==}
- dev: false
-
- /stylis/4.0.13:
- resolution: {integrity: sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==}
+ /stylis/4.2.0:
+ resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
dev: false
/stylus/0.54.8:
@@ -33134,32 +35182,42 @@ packages:
dependencies:
css-parse: 2.0.0
debug: 3.1.0
- glob: 7.2.0
+ glob: 7.2.3
mkdirp: 1.0.4
safer-buffer: 2.1.2
sax: 1.2.4
- semver: 6.3.0
- source-map: 0.7.3
+ semver: 6.3.1
+ source-map: 0.7.4
transitivePeerDependencies:
- supports-color
dev: true
- /subscriptions-transport-ws/0.9.19_graphql@15.7.2:
+ /subscriptions-transport-ws/0.9.19_graphql@15.8.0:
resolution: {integrity: sha512-dxdemxFFB0ppCLg10FTtRqH/31FNRL1y1BQv8209MK5I4CwALb7iihQg+7p65lFcIl8MHatINWBLOqpgU4Kyyw==}
+ deprecated: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md
peerDependencies:
graphql: '>=0.10.0'
dependencies:
backo2: 1.0.2
eventemitter3: 3.1.2
- graphql: 15.7.2
+ graphql: 15.8.0
iterall: 1.3.0
symbol-observable: 1.2.0
- ws: 7.5.5
+ ws: 7.5.9
transitivePeerDependencies:
- bufferutil
- utf-8-validate
dev: false
+ /sugarss/4.0.1_postcss@8.4.38:
+ resolution: {integrity: sha512-WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.3.3
+ dependencies:
+ postcss: 8.4.38
+ dev: true
+
/supertap/2.0.0:
resolution: {integrity: sha512-jRzcXlCeDYvKoZGA5oRhYyR3jUIYu0enkSxtmAgHRlD7HwrovTpH4bDSi0py9FtuA8si9cW/fKommJHuaoDHJA==}
engines: {node: '>=10'}
@@ -33172,7 +35230,7 @@ packages:
dev: true
/supports-color/2.0.0:
- resolution: {integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=}
+ resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
engines: {node: '>=0.8.0'}
/supports-color/5.5.0:
@@ -33199,13 +35257,17 @@ packages:
dependencies:
has-flag: 4.0.0
- /supports-hyperlinks/2.2.0:
- resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==}
+ /supports-hyperlinks/2.3.0:
+ resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
+ /supports-preserve-symlinks-flag/1.0.0:
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
+
/svg-parser/2.0.4:
resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
@@ -33222,13 +35284,27 @@ packages:
css-tree: 1.0.0-alpha.37
csso: 4.2.0
js-yaml: 3.14.1
- mkdirp: 0.5.5
- object.values: 1.1.5
+ mkdirp: 0.5.6
+ object.values: 1.2.0
sax: 1.2.4
stable: 0.1.8
unquote: 1.1.1
util.promisify: 1.0.1
+ /svgo/2.8.0:
+ resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ dependencies:
+ '@trysound/sax': 0.2.0
+ commander: 7.2.0
+ css-select: 4.3.0
+ css-tree: 1.1.3
+ csso: 4.2.0
+ picocolors: 1.0.1
+ stable: 0.1.8
+ dev: true
+
/symbol-observable/1.2.0:
resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==}
engines: {node: '>=0.10.0'}
@@ -33241,14 +35317,15 @@ packages:
/symbol-tree/3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
- /symbol.prototype.description/1.0.5:
- resolution: {integrity: sha512-x738iXRYsrAt9WBhRCVG5BtIC3B7CUkFwbHW2zOvGtwM33s7JjrCDyq8V0zgMYVb5ymsL8+qkzzpANH63CPQaQ==}
- engines: {node: '>= 0.11.15'}
+ /symbol.prototype.description/1.0.6:
+ resolution: {integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==}
+ engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.2
- get-symbol-description: 1.0.0
- has-symbols: 1.0.2
- object.getownpropertydescriptors: 2.1.3
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-symbol-description: 1.0.2
+ has-symbols: 1.0.3
+ object.getownpropertydescriptors: 2.1.8
dev: true
/table/5.4.6:
@@ -33260,11 +35337,11 @@ packages:
slice-ansi: 2.1.0
string-width: 3.1.0
- /table/6.8.0:
- resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==}
+ /table/6.8.2:
+ resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
engines: {node: '>=10.0.0'}
dependencies:
- ajv: 8.9.0
+ ajv: 8.16.0
lodash.truncate: 4.4.2
slice-ansi: 4.0.0
string-width: 4.2.3
@@ -33277,7 +35354,6 @@ packages:
/tapable/2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- dev: false
/tar/2.2.2:
resolution: {integrity: sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==}
@@ -33287,13 +35363,13 @@ packages:
fstream: 1.0.12
inherits: 2.0.4
- /tar/6.1.11:
- resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==}
- engines: {node: '>= 10'}
+ /tar/6.2.1:
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
+ engines: {node: '>=10'}
dependencies:
chownr: 2.0.0
fs-minipass: 2.1.0
- minipass: 3.1.5
+ minipass: 5.0.0
minizlib: 2.1.2
mkdirp: 1.0.4
yallist: 4.0.0
@@ -33301,7 +35377,7 @@ packages:
/telejson/3.3.0:
resolution: {integrity: sha512-er08AylQ+LEbDLp1GRezORZu5wKOHaBczF6oYJtgC3Idv10qZ8A3p6ffT+J5BzDKkV9MqBvu8HAKiIIOp6KJ2w==}
dependencies:
- '@types/is-function': 1.0.1
+ '@types/is-function': 1.0.3
global: 4.4.0
is-function: 1.0.2
is-regex: 1.1.4
@@ -33312,7 +35388,7 @@ packages:
dev: true
/temp-dir/1.0.0:
- resolution: {integrity: sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=}
+ resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
engines: {node: '>=4'}
/temp-dir/2.0.0:
@@ -33329,7 +35405,7 @@ packages:
unique-string: 1.0.0
/term-size/1.2.0:
- resolution: {integrity: sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=}
+ resolution: {integrity: sha512-7dPUZQGy/+m3/wjVz3ZW5dobSoD/02NxJpoXUX0WIyjfVS3l0c+b/+9phIDFA7FHzkYtwtMFgeGZ/Y8jVTeqQQ==}
engines: {node: '>=4'}
dependencies:
execa: 0.7.0
@@ -33345,7 +35421,7 @@ packages:
engines: {node: '>=8'}
dependencies:
ansi-escapes: 4.3.2
- supports-hyperlinks: 2.2.0
+ supports-hyperlinks: 2.3.0
/terser-webpack-plugin/1.4.5_webpack@4.42.0:
resolution: {integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==}
@@ -33359,11 +35435,10 @@ packages:
schema-utils: 1.0.0
serialize-javascript: 4.0.0
source-map: 0.6.1
- terser: 4.8.0
+ terser: 4.8.1
webpack: 4.42.0
webpack-sources: 1.4.3
worker-farm: 1.7.0
- dev: false
/terser-webpack-plugin/1.4.5_webpack@4.44.2:
resolution: {integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==}
@@ -33377,29 +35452,11 @@ packages:
schema-utils: 1.0.0
serialize-javascript: 4.0.0
source-map: 0.6.1
- terser: 4.8.0
+ terser: 4.8.1
webpack: 4.44.2
webpack-sources: 1.4.3
worker-farm: 1.7.0
- /terser-webpack-plugin/1.4.5_webpack@4.46.0:
- resolution: {integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==}
- engines: {node: '>= 6.9.0'}
- peerDependencies:
- webpack: ^4.0.0
- dependencies:
- cacache: 12.0.4
- find-cache-dir: 2.1.0
- is-wsl: 1.1.0
- schema-utils: 1.0.0
- serialize-javascript: 4.0.0
- source-map: 0.6.1
- terser: 4.8.0
- webpack: 4.46.0
- webpack-sources: 1.4.3
- worker-farm: 1.7.0
- dev: true
-
/terser-webpack-plugin/2.3.5_webpack@4.42.0:
resolution: {integrity: sha512-WlWksUoq+E4+JlJ+h+U+QUzXpcsMSSNXkDy9lBVkSqDn1w23Gg29L/ary9GeJVYCGiNJJX7LnVc4bwL1N3/g1w==}
engines: {node: '>= 8.9.0'}
@@ -33413,14 +35470,14 @@ packages:
schema-utils: 2.7.1
serialize-javascript: 2.1.2
source-map: 0.6.1
- terser: 4.8.0
+ terser: 4.8.1
webpack: 4.42.0
webpack-sources: 1.4.3
transitivePeerDependencies:
- bluebird
dev: false
- /terser-webpack-plugin/2.3.8_webpack@4.46.0:
+ /terser-webpack-plugin/2.3.8_webpack@4.42.0:
resolution: {integrity: sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==}
engines: {node: '>= 8.9.0'}
peerDependencies:
@@ -33433,8 +35490,8 @@ packages:
schema-utils: 2.7.1
serialize-javascript: 4.0.0
source-map: 0.6.1
- terser: 4.8.0
- webpack: 4.46.0
+ terser: 4.8.1
+ webpack: 4.42.0
webpack-sources: 1.4.3
transitivePeerDependencies:
- bluebird
@@ -33450,44 +35507,85 @@ packages:
find-cache-dir: 3.3.2
jest-worker: 26.6.2
p-limit: 3.1.0
- schema-utils: 3.1.1
+ schema-utils: 3.3.0
serialize-javascript: 5.0.1
source-map: 0.6.1
- terser: 5.10.0
+ terser: 5.31.1
webpack: 4.44.2
webpack-sources: 1.4.3
transitivePeerDependencies:
- bluebird
- /terser/4.8.0:
- resolution: {integrity: sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==}
+ /terser-webpack-plugin/4.2.3_webpack@5.92.1:
+ resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ cacache: 15.3.0
+ find-cache-dir: 3.3.2
+ jest-worker: 26.6.2
+ p-limit: 3.1.0
+ schema-utils: 3.3.0
+ serialize-javascript: 5.0.1
+ source-map: 0.6.1
+ terser: 5.31.1
+ webpack: 5.92.1_webpack-cli@4.10.0
+ webpack-sources: 1.4.3
+ transitivePeerDependencies:
+ - bluebird
+ dev: true
+
+ /terser-webpack-plugin/5.3.10_webpack@5.92.1:
+ resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ '@swc/core': '*'
+ esbuild: '*'
+ uglify-js: '*'
+ webpack: ^5.1.0
+ peerDependenciesMeta:
+ '@swc/core':
+ optional: true
+ esbuild:
+ optional: true
+ uglify-js:
+ optional: true
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ jest-worker: 27.5.1
+ schema-utils: 3.3.0
+ serialize-javascript: 6.0.2
+ terser: 5.31.1
+ webpack: 5.92.1_webpack-cli@4.10.0
+ dev: true
+
+ /terser/4.8.1:
+ resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- acorn: 8.5.0
+ acorn: 8.11.3
commander: 2.20.3
source-map: 0.6.1
- source-map-support: 0.5.20
+ source-map-support: 0.5.21
- /terser/5.10.0:
- resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==}
+ /terser/5.31.1:
+ resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==}
engines: {node: '>=10'}
hasBin: true
- peerDependenciesMeta:
- acorn:
- optional: true
dependencies:
- acorn: 8.5.0
+ '@jridgewell/source-map': 0.3.6
+ acorn: 8.11.3
commander: 2.20.3
- source-map: 0.7.3
- source-map-support: 0.5.20
+ source-map-support: 0.5.21
/test-exclude/5.2.3:
resolution: {integrity: sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==}
engines: {node: '>=6'}
dependencies:
- glob: 7.2.0
- minimatch: 3.0.4
+ glob: 7.2.3
+ minimatch: 3.1.2
read-pkg-up: 4.0.0
require-main-filename: 2.0.0
@@ -33496,20 +35594,20 @@ packages:
engines: {node: '>=8'}
dependencies:
'@istanbuljs/schema': 0.1.3
- glob: 7.2.0
- minimatch: 3.0.4
+ glob: 7.2.3
+ minimatch: 3.1.2
/text-table/0.2.0:
- resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=}
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
/throat/4.1.0:
- resolution: {integrity: sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=}
+ resolution: {integrity: sha512-wCVxLDcFxw7ujDxaeJC6nfl2XfHJNYs8yUYJnvMgtPEFlttP9tHSfRUv2vBe6C4hkVFPWoP1P6ZccbYjmSEkKA==}
/throat/5.0.0:
resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
- /throat/6.0.1:
- resolution: {integrity: sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==}
+ /throat/6.0.2:
+ resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==}
dev: true
/throttle-debounce/2.3.0:
@@ -33517,24 +35615,31 @@ packages:
engines: {node: '>=8'}
dev: true
- /throttleit/1.0.0:
- resolution: {integrity: sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=}
+ /throttleit/1.0.1:
+ resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==}
dev: true
/through/2.3.8:
- resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=}
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
/through2/2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
dependencies:
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
xtend: 4.0.2
+ /through2/3.0.2:
+ resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ dev: true
+
/thunky/1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
/time-zone/1.0.0:
- resolution: {integrity: sha1-mcW/VZWJZq9tBtg73zgA3IL67F0=}
+ resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==}
engines: {node: '>=4'}
dev: true
@@ -33545,7 +35650,7 @@ packages:
setimmediate: 1.0.5
/timsort/0.3.0:
- resolution: {integrity: sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=}
+ resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==}
/tiny-emitter/2.1.0:
resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
@@ -33559,16 +35664,16 @@ packages:
globrex: 0.1.2
dev: true
- /tiny-invariant/1.2.0:
- resolution: {integrity: sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg==}
+ /tiny-invariant/1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
dev: false
/tiny-warning/1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
dev: false
- /tinycolor2/1.4.2:
- resolution: {integrity: sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==}
+ /tinycolor2/1.6.0:
+ resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
dev: false
/tinyqueue/2.0.3:
@@ -33581,30 +35686,28 @@ packages:
dependencies:
os-tmpdir: 1.0.2
- /tmp/0.2.1:
- resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==}
- engines: {node: '>=8.17.0'}
- dependencies:
- rimraf: 3.0.2
+ /tmp/0.2.3:
+ resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
+ engines: {node: '>=14.14'}
dev: true
/tmpl/1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
/to-arraybuffer/1.0.1:
- resolution: {integrity: sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=}
+ resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==}
/to-fast-properties/1.0.3:
- resolution: {integrity: sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=}
+ resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==}
engines: {node: '>=0.10.0'}
dev: true
/to-fast-properties/2.0.0:
- resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
+ resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
/to-object-path/0.3.0:
- resolution: {integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=}
+ resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
engines: {node: '>=0.10.0'}
dependencies:
kind-of: 3.2.2
@@ -33615,7 +35718,7 @@ packages:
dev: true
/to-regex-range/2.1.1:
- resolution: {integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=}
+ resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==}
engines: {node: '>=0.10.0'}
dependencies:
is-number: 3.0.0
@@ -33637,10 +35740,10 @@ packages:
safe-regex: 1.1.0
/toggle-selection/1.0.6:
- resolution: {integrity: sha1-bkWxJj8gF/oKzH2J14sVuL932jI=}
+ resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==}
- /toidentifier/1.0.0:
- resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==}
+ /toidentifier/1.0.1:
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
/topojson-client/3.1.0:
@@ -33666,33 +35769,35 @@ packages:
resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
engines: {node: '>=0.8'}
dependencies:
- psl: 1.8.0
- punycode: 2.1.1
+ psl: 1.9.0
+ punycode: 2.3.1
- /tough-cookie/4.0.0:
- resolution: {integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==}
+ /tough-cookie/4.1.4:
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
engines: {node: '>=6'}
dependencies:
- psl: 1.8.0
- punycode: 2.1.1
- universalify: 0.1.2
+ psl: 1.9.0
+ punycode: 2.3.1
+ universalify: 0.2.0
+ url-parse: 1.5.10
/tr46/0.0.3:
- resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=}
+ resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+ dev: false
/tr46/1.0.1:
- resolution: {integrity: sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=}
+ resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
/tr46/2.1.0:
resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==}
engines: {node: '>=8'}
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
/trim-newlines/1.0.0:
- resolution: {integrity: sha1-WIeWa7WCpFA6QetST301ARgVphM=}
+ resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==}
engines: {node: '>=0.10.0'}
/trim-off-newlines/1.0.3:
@@ -33701,14 +35806,14 @@ packages:
dev: true
/trim-right/1.0.1:
- resolution: {integrity: sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=}
+ resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==}
engines: {node: '>=0.10.0'}
dev: true
/true-case-path/1.0.3:
resolution: {integrity: sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==}
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
/tryer/1.0.1:
resolution: {integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==}
@@ -33718,17 +35823,17 @@ packages:
engines: {node: '>=6.10'}
dev: true
- /ts-invariant/0.4.4:
- resolution: {integrity: sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==}
+ /ts-invariant/0.10.3:
+ resolution: {integrity: sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==}
+ engines: {node: '>=8'}
dependencies:
- tslib: 1.14.1
+ tslib: 2.6.3
dev: false
- /ts-invariant/0.9.3:
- resolution: {integrity: sha512-HinBlTbFslQI0OHP07JLsSXPibSegec6r9ai5xxq/qHYCsIQbzpymLpDhAUsnXcSrDEcd0L62L8vsOEdzM0qlA==}
- engines: {node: '>=8'}
+ /ts-invariant/0.4.4:
+ resolution: {integrity: sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==}
dependencies:
- tslib: 2.3.1
+ tslib: 1.14.1
dev: false
/ts-jest/24.3.0_jest@24.9.0:
@@ -33742,12 +35847,12 @@ packages:
buffer-from: 1.1.2
fast-json-stable-stringify: 2.1.0
jest: 24.9.0
- json5: 2.2.0
+ json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
- mkdirp: 0.5.5
- resolve: 1.20.0
- semver: 5.7.1
+ mkdirp: 0.5.6
+ resolve: 1.22.8
+ semver: 5.7.2
yargs-parser: 10.1.0
dev: true
@@ -33763,23 +35868,23 @@ packages:
buffer-from: 1.1.2
fast-json-stable-stringify: 2.1.0
jest-util: 26.6.2
- json5: 2.2.0
+ json5: 2.2.3
lodash: 4.17.21
make-error: 1.3.6
mkdirp: 1.0.4
- semver: 7.3.5
+ semver: 7.6.2
yargs-parser: 20.2.9
dev: true
- /ts-jest/27.1.3_kkev54cduf7c2ijiuki6n7mgqu:
- resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/ts-jest/-/ts-jest-27.1.3.tgz}
+ /ts-jest/27.1.5_odqqgqpulgmvbrmxvpi5rnkgua:
+ resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
hasBin: true
peerDependencies:
'@babel/core': '>=7.0.0-beta.0 <8'
'@types/jest': ^27.0.0
babel-jest: '>=27.0.0 <28'
- esbuild: ~0.14.0
+ esbuild: '*'
jest: ^27.0.0
typescript: '>=3.8 <5.0'
peerDependenciesMeta:
@@ -33792,16 +35897,16 @@ packages:
esbuild:
optional: true
dependencies:
- '@types/jest': 27.4.0
+ '@types/jest': 27.5.2
babel-jest: 27.5.1
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
- jest: 27.5.1_ts-node@10.5.0
+ jest: 27.5.1_ts-node@10.9.2
jest-util: 27.5.1
- json5: 2.2.0
+ json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
- semver: 7.3.5
+ semver: 7.6.2
yargs-parser: 20.2.9
dev: true
@@ -33813,13 +35918,29 @@ packages:
dependencies:
chalk: 2.4.2
enhanced-resolve: 4.5.0
- loader-utils: 1.4.0
- micromatch: 4.0.4
- semver: 6.3.0
+ loader-utils: 1.4.2
+ micromatch: 4.0.7
+ semver: 6.3.1
+ dev: true
+
+ /ts-loader/9.5.1_noj5fmpgd6g2myobhnpnujoode:
+ resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ typescript: '*'
+ webpack: ^5.0.0
+ dependencies:
+ chalk: 4.1.2
+ enhanced-resolve: 5.17.0
+ micromatch: 4.0.7
+ semver: 7.6.2
+ source-map: 0.7.4
+ typescript: 5.0.4
+ webpack: 5.92.1_webpack-cli@4.10.0
dev: true
- /ts-node/10.5.0_@types+node@17.0.18:
- resolution: {integrity: sha512-6kEJKwVxAJ35W4akuiysfKwKmjkbYxwQMTBaAxo9KKAx/Yd26mPUyhGz3ji+EsJoAgrLqVsYHNuuYwQe22lbtw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/ts-node/-/ts-node-10.5.0.tgz}
+ /ts-node/10.9.2_@types+node@17.0.45:
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
'@swc/core': '>=1.2.50'
@@ -33832,19 +35953,19 @@ packages:
'@swc/wasm':
optional: true
dependencies:
- '@cspotcode/source-map-support': 0.7.0
- '@tsconfig/node10': 1.0.8
- '@tsconfig/node12': 1.0.9
- '@tsconfig/node14': 1.0.1
- '@tsconfig/node16': 1.0.2
- '@types/node': 17.0.18
- acorn: 8.5.0
- acorn-walk: 8.2.0
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 17.0.45
+ acorn: 8.11.3
+ acorn-walk: 8.3.2
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- v8-compile-cache-lib: 3.0.0
+ v8-compile-cache-lib: 3.0.1
yn: 3.1.1
dev: true
@@ -33860,6 +35981,16 @@ packages:
typescript: 3.9.10
dev: false
+ /ts-pnp/1.2.0:
+ resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
+ engines: {node: '>=6'}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dev: true
+
/ts-pnp/1.2.0_typescript@3.9.10:
resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
engines: {node: '>=6'}
@@ -33872,7 +36003,7 @@ packages:
typescript: 3.9.10
dev: false
- /ts-pnp/1.2.0_typescript@4.6.2:
+ /ts-pnp/1.2.0_typescript@4.9.5:
resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
engines: {node: '>=6'}
peerDependencies:
@@ -33881,45 +36012,45 @@ packages:
typescript:
optional: true
dependencies:
- typescript: 4.6.2
+ typescript: 4.9.5
- /tsconfig-paths/3.11.0:
- resolution: {integrity: sha512-7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA==}
+ /tsconfig-paths/3.15.0:
+ resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
dependencies:
'@types/json5': 0.0.29
- json5: 1.0.1
- minimist: 1.2.6
+ json5: 1.0.2
+ minimist: 1.2.8
strip-bom: 3.0.0
/tsdx/0.12.3:
resolution: {integrity: sha512-BQ0oj9S5Yti6Esol+29ztiJs0kSUA57LngT0G4VF2lqTDRZcMlByCMyWa7yOih08t1wNUj8ah0ml7WJkf8PIbA==}
hasBin: true
dependencies:
- '@babel/core': 7.16.0
- '@babel/helper-module-imports': 7.16.0
- '@babel/plugin-proposal-class-properties': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0
- '@babel/plugin-transform-regenerator': 7.16.0_@babel+core@7.16.0
- '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.16.0
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.24.7
+ '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.24.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.24.7
+ '@babel/plugin-transform-regenerator': 7.24.7_@babel+core@7.24.7
+ '@babel/plugin-transform-runtime': 7.24.7_@babel+core@7.24.7
'@babel/polyfill': 7.12.1
- '@babel/preset-env': 7.16.4_@babel+core@7.16.0
+ '@babel/preset-env': 7.13.15_@babel+core@7.24.7
'@rollup/plugin-commonjs': 11.1.0_rollup@1.32.1
'@rollup/plugin-json': 4.1.0_rollup@1.32.1
'@rollup/plugin-node-resolve': 6.1.0_rollup@1.32.1
'@rollup/plugin-replace': 2.4.2_rollup@1.32.1
'@types/rimraf': 2.0.5
- '@types/shelljs': 0.8.9
+ '@types/shelljs': 0.8.15
'@typescript-eslint/eslint-plugin': 2.34.0_fmavwhclprfd5wnbs7ocgoy2gu
'@typescript-eslint/parser': 2.34.0_z6m2zvrkqxyghb4a2ijhravsdi
ansi-escapes: 4.3.2
asyncro: 3.0.0
babel-eslint: 10.1.0_eslint@6.8.0
- babel-plugin-annotate-pure-calls: 0.4.0_@babel+core@7.16.0
- babel-plugin-dev-expression: 0.2.3_@babel+core@7.16.0
+ babel-plugin-annotate-pure-calls: 0.4.0_@babel+core@7.24.7
+ babel-plugin-dev-expression: 0.2.3_@babel+core@7.24.7
babel-plugin-macros: 2.8.0
- babel-plugin-transform-async-to-promises: 0.8.15
+ babel-plugin-transform-async-to-promises: 0.8.18
babel-plugin-transform-rename-import: 2.3.0
babel-traverse: 6.26.0
babylon: 6.18.0
@@ -33928,15 +36059,15 @@ packages:
chokidar-cli: 1.2.3
cross-env: 6.0.3
cross-spawn: 6.0.5
- enquirer: 2.3.6
+ enquirer: 2.4.1
eslint: 6.8.0
eslint-config-prettier: 6.15.0_eslint@6.8.0
- eslint-config-react-app: 5.2.1_sdslx5m6u5fjscqov2w3s4rcmy
+ eslint-config-react-app: 5.2.1_c4rjpjuy3qbjpbd5jaaozmy7xi
eslint-plugin-flowtype: 3.13.0_eslint@6.8.0
- eslint-plugin-import: 2.25.3_tbglwmj7t2rhd43mvxmptakoay
- eslint-plugin-jsx-a11y: 6.5.1_eslint@6.8.0
+ eslint-plugin-import: 2.29.1_tbglwmj7t2rhd43mvxmptakoay
+ eslint-plugin-jsx-a11y: 6.8.0_eslint@6.8.0
eslint-plugin-prettier: 3.4.1_w56nqx62sqpcgkca3sb3623wsa
- eslint-plugin-react: 7.27.0_eslint@6.8.0
+ eslint-plugin-react: 7.34.2_eslint@6.8.0
eslint-plugin-react-hooks: 2.5.1_eslint@6.8.0
execa: 3.2.0
fs-extra: 8.1.0
@@ -33944,19 +36075,19 @@ packages:
jest-watch-typeahead: 0.4.2
jpjs: 1.2.1
lodash.merge: 4.6.2
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
ora: 3.4.0
pascal-case: 2.0.1
prettier: 1.19.1
progress-estimator: 0.2.2
rimraf: 3.0.2
rollup: 1.32.1
- rollup-plugin-babel: 4.4.0_t7njsrm5zgy6kh3htdw5m63kti
+ rollup-plugin-babel: 4.4.0_bw564yummf3pdo354elmt3ddaa
rollup-plugin-sourcemaps: 0.4.2_rollup@1.32.1
rollup-plugin-terser: 5.3.1_rollup@1.32.1
rollup-plugin-typescript2: 0.25.3_u7o3wpaaa4xpcuuxlpndi4hgqe
- sade: 1.7.4
- shelljs: 0.8.4
+ sade: 1.8.1
+ shelljs: 0.8.5
tiny-glob: 0.2.9
ts-jest: 24.3.0_jest@24.9.0
tslib: 1.14.1
@@ -33976,8 +36107,8 @@ packages:
/tslib/1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- /tslib/2.3.1:
- resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==}
+ /tslib/2.6.3:
+ resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
/tsutils/3.21.0:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
@@ -33996,20 +36127,20 @@ packages:
tslib: 1.14.1
typescript: 3.9.10
- /tsutils/3.21.0_typescript@4.6.2:
+ /tsutils/3.21.0_typescript@4.9.5:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 4.6.2
+ typescript: 4.9.5
/tty-browserify/0.0.0:
- resolution: {integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=}
+ resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==}
/tunnel-agent/0.6.0:
- resolution: {integrity: sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=}
+ resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
dependencies:
safe-buffer: 5.2.1
@@ -34017,11 +36148,26 @@ packages:
resolution: {integrity: sha512-Ja03QIJlPuHt4IQ2FfGex4F4JAr8m3jpaHbFbQrgwr7s7L6U8ocrHiF3J1+wf9jzhGKxvDeaCAnGDot8OjGFyA==}
dev: false
+ /turndown-plugin-gfm/1.0.2:
+ resolution: {integrity: sha512-vwz9tfvF7XN/jE0dGoBei3FXWuvll78ohzCZQuOb+ZjWrs3a0XhQVomJEb2Qh4VHTPNRO4GPZh0V7VRbiWwkRg==}
+ dev: false
+
+ /turndown/6.0.0:
+ resolution: {integrity: sha512-UVJBhSyRHCpNKtQ00mNWlYUM/i+tcipkb++F0PrOpt0L7EhNd0AX9mWEpL2dRFBu7LWXMp4HgAMA4OeKKnN7og==}
+ dependencies:
+ jsdom: 16.7.0
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: false
+
/tweetnacl/0.14.5:
- resolution: {integrity: sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=}
+ resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
/type-check/0.3.2:
- resolution: {integrity: sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=}
+ resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.1.2
@@ -34066,17 +36212,54 @@ packages:
engines: {node: '>= 0.6'}
dependencies:
media-typer: 0.3.0
- mime-types: 2.1.34
+ mime-types: 2.1.35
/type-of/2.0.1:
- resolution: {integrity: sha1-5yoXQYllaOn2KDeNgW1pEvfyOXI=}
+ resolution: {integrity: sha512-39wxbwHdQ2sTiBB8wAzKfQ9GN+om8w+sjNWzr+vZJR5AMD5J+J7Yc8AtXnU9r/r2c8XiDZ/smxutDmZehX/qpQ==}
dev: false
- /type/1.2.0:
- resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==}
+ /type/2.7.3:
+ resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
+
+ /typed-array-buffer/1.0.2:
+ resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-typed-array: 1.1.13
+
+ /typed-array-byte-length/1.0.1:
+ resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+
+ /typed-array-byte-offset/1.0.2:
+ resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
- /type/2.5.0:
- resolution: {integrity: sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==}
+ /typed-array-length/1.0.6:
+ resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+ possible-typed-array-names: 1.0.0
/typed-styles/0.0.7:
resolution: {integrity: sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==}
@@ -34088,26 +36271,26 @@ packages:
is-typedarray: 1.0.0
/typedarray/0.0.6:
- resolution: {integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=}
+ resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
- /typescript-plugin-css-modules/3.4.0_ts-node@10.5.0:
+ /typescript-plugin-css-modules/3.4.0_ts-node@10.9.2:
resolution: {integrity: sha512-2MdjfSg4MGex1csCWRUwKD+MpgnvcvLLr9bSAMemU/QYGqBsXdez0cc06H/fFhLtRoKJjXg6PSTur3Gy1Umhpw==}
peerDependencies:
typescript: '>=3.0.0'
dependencies:
dotenv: 10.0.0
- icss-utils: 5.1.0_postcss@8.4.5
- less: 4.1.2
+ icss-utils: 5.1.0_postcss@8.4.38
+ less: 4.2.0
lodash.camelcase: 4.3.0
- postcss: 8.4.5
+ postcss: 8.4.38
postcss-filter-plugins: 3.0.1
postcss-icss-keyframes: 0.2.1
postcss-icss-selectors: 2.0.3
- postcss-load-config: 3.1.3_ts-node@10.5.0
+ postcss-load-config: 3.1.4_r4pj7oqxt52r2j6furr2dysbhy
reserved-words: 0.1.2
- sass: 1.49.7
+ sass: 1.77.4
stylus: 0.54.8
- tsconfig-paths: 3.11.0
+ tsconfig-paths: 3.15.0
transitivePeerDependencies:
- supports-color
- ts-node
@@ -34118,23 +36301,36 @@ packages:
engines: {node: '>=4.2.0'}
hasBin: true
- /typescript/4.6.2:
- resolution: {integrity: sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==}
+ /typescript/4.9.5:
+ resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
engines: {node: '>=4.2.0'}
hasBin: true
- /ua-parser-js/0.7.31:
- resolution: {integrity: sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==}
+ /typescript/5.0.4:
+ resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==}
+ engines: {node: '>=12.20'}
+ hasBin: true
+ dev: true
+
+ /ua-parser-js/0.7.38:
+ resolution: {integrity: sha512-fYmIy7fKTSFAhG3fuPlubeGaMoAd6r0rSnfEsO5nEY55i26KSLt9EH7PLQiiqPUhNqYIJvSkTy1oArIcXAbPbA==}
dev: false
- /unbox-primitive/1.0.1:
- resolution: {integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==}
+ /ua-parser-js/1.0.38:
+ resolution: {integrity: sha512-Aq5ppTOfvrCMgAPneW1HfWj66Xi7XL+/mIy996R1/CLS/rcyJQm6QZdsKrUeivDFQ+Oc9Wyuwor8Ze8peEoUoQ==}
+ dev: false
+
+ /unbox-primitive/1.0.2:
+ resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
- function-bind: 1.1.1
- has-bigints: 1.0.1
- has-symbols: 1.0.2
+ call-bind: 1.0.7
+ has-bigints: 1.0.2
+ has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
+ /underscore/1.12.1:
+ resolution: {integrity: sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==}
+
/unfetch/4.2.0:
resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==}
dev: true
@@ -34148,14 +36344,14 @@ packages:
engines: {node: '>=4'}
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.0
- unicode-property-aliases-ecmascript: 2.0.0
+ unicode-property-aliases-ecmascript: 2.1.0
- /unicode-match-property-value-ecmascript/2.0.0:
- resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==}
+ /unicode-match-property-value-ecmascript/2.1.0:
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
- /unicode-property-aliases-ecmascript/2.0.0:
- resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==}
+ /unicode-property-aliases-ecmascript/2.1.0:
+ resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
/union-value/1.0.1:
@@ -34168,10 +36364,10 @@ packages:
set-value: 2.0.1
/uniq/1.0.1:
- resolution: {integrity: sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=}
+ resolution: {integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==}
/uniqs/2.0.0:
- resolution: {integrity: sha1-/+3ks2slKQaW5uFl1KWe25mOawI=}
+ resolution: {integrity: sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==}
/unique-filename/1.1.1:
resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
@@ -34184,7 +36380,7 @@ packages:
imurmurhash: 0.1.4
/unique-string/1.0.0:
- resolution: {integrity: sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=}
+ resolution: {integrity: sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==}
engines: {node: '>=4'}
dependencies:
crypto-random-string: 1.0.0
@@ -34200,19 +36396,23 @@ packages:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
- /universalify/2.0.0:
- resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
+ /universalify/0.2.0:
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
+ engines: {node: '>= 4.0.0'}
+
+ /universalify/2.0.1:
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
/unpipe/1.0.0:
- resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=}
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
/unquote/1.1.1:
- resolution: {integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=}
+ resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==}
/unset-value/1.0.0:
- resolution: {integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=}
+ resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
engines: {node: '>=0.10.0'}
dependencies:
has-value: 0.3.1
@@ -34227,6 +36427,16 @@ packages:
resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
engines: {node: '>=4'}
+ /update-browserslist-db/1.0.16_browserslist@4.23.1:
+ resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.23.1
+ escalade: 3.1.2
+ picocolors: 1.0.1
+
/update-check/1.5.2:
resolution: {integrity: sha512-1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ==}
dependencies:
@@ -34249,28 +36459,28 @@ packages:
is-yarn-global: 0.3.0
latest-version: 5.1.0
pupa: 2.1.1
- semver: 7.3.5
+ semver: 7.6.2
semver-diff: 3.1.1
xdg-basedir: 4.0.0
dev: true
/upper-case-first/1.1.2:
- resolution: {integrity: sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU=}
+ resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==}
dependencies:
upper-case: 1.1.3
dev: true
/upper-case/1.1.3:
- resolution: {integrity: sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=}
+ resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==}
dev: true
/uri-js/4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
/urix/0.1.0:
- resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=}
+ resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
deprecated: Please see https://github.com/lydell/urix#deprecated
/url-join/4.0.1:
@@ -34288,28 +36498,10 @@ packages:
optional: true
dependencies:
file-loader: 4.3.0_webpack@4.42.0
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
mime: 2.6.0
schema-utils: 2.7.1
webpack: 4.42.0
- dev: false
-
- /url-loader/2.3.0_ke5umg2s3o4akbat3qvdol7cby:
- resolution: {integrity: sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==}
- engines: {node: '>= 8.9.0'}
- peerDependencies:
- file-loader: '*'
- webpack: ^4.0.0
- peerDependenciesMeta:
- file-loader:
- optional: true
- dependencies:
- file-loader: 4.3.0_webpack@4.46.0
- loader-utils: 1.4.0
- mime: 2.6.0
- schema-utils: 2.7.1
- webpack: 4.46.0
- dev: true
/url-loader/4.1.1_7hroj2mdu577asu2zyhaasbvae:
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
@@ -34322,268 +36514,321 @@ packages:
optional: true
dependencies:
file-loader: 6.1.1_webpack@4.44.2
- loader-utils: 2.0.2
- mime-types: 2.1.34
- schema-utils: 3.1.1
+ loader-utils: 2.0.4
+ mime-types: 2.1.35
+ schema-utils: 3.3.0
webpack: 4.44.2
/url-parse-lax/3.0.0:
- resolution: {integrity: sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=}
+ resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==}
engines: {node: '>=4'}
dependencies:
prepend-http: 2.0.0
dev: true
- /url-parse/1.5.3:
- resolution: {integrity: sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==}
+ /url-parse/1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
dependencies:
querystringify: 2.2.0
requires-port: 1.0.0
/url/0.10.3:
- resolution: {integrity: sha1-Ah5NnHcF8hu/N9A861h2dAJ3TGQ=}
+ resolution: {integrity: sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==}
dependencies:
punycode: 1.3.2
querystring: 0.2.0
dev: false
- /url/0.11.0:
- resolution: {integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=}
+ /url/0.11.3:
+ resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==}
dependencies:
- punycode: 1.3.2
- querystring: 0.2.0
+ punycode: 1.4.1
+ qs: 6.12.1
- /use-callback-ref/1.2.5:
- resolution: {integrity: sha512-gN3vgMISAgacF7sqsLPByqoePooY3n2emTH59Ur5d/M8eg4WTWu1xp8i8DHjohftIyEx0S08RiYxbffr4j8Peg==}
- engines: {node: '>=8.5.0'}
+ /use-callback-ref/1.3.2:
+ resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
+ engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ tslib: 2.6.3
dev: false
- /use-callback-ref/1.2.5_3f5okroqb6j7hwu5ne6ch3trz4:
- resolution: {integrity: sha512-gN3vgMISAgacF7sqsLPByqoePooY3n2emTH59Ur5d/M8eg4WTWu1xp8i8DHjohftIyEx0S08RiYxbffr4j8Peg==}
- engines: {node: '>=8.5.0'}
+ /use-callback-ref/1.3.2_3r2q4vqikxqiwlpkbpcd6cn6l4:
+ resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
+ engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 17.0.35
- react: 16.14.0
- dev: true
+ '@types/react': 16.14.60
+ react: 17.0.2
+ tslib: 2.6.3
+ dev: false
- /use-callback-ref/1.2.5_oqfjjbydlevwhoma3gspdo4w3y:
- resolution: {integrity: sha512-gN3vgMISAgacF7sqsLPByqoePooY3n2emTH59Ur5d/M8eg4WTWu1xp8i8DHjohftIyEx0S08RiYxbffr4j8Peg==}
- engines: {node: '>=8.5.0'}
+ /use-callback-ref/1.3.2_nhfnajythmqulrdwzj5xx6c5qy:
+ resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
+ engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 16.14.21
- react: 17.0.2
- dev: false
+ '@types/react': 16.14.60
+ react: 16.14.0
+ tslib: 2.6.3
+ dev: true
- /use-callback-ref/1.2.5_qewexek3mggvbeokd2goivthmy:
- resolution: {integrity: sha512-gN3vgMISAgacF7sqsLPByqoePooY3n2emTH59Ur5d/M8eg4WTWu1xp8i8DHjohftIyEx0S08RiYxbffr4j8Peg==}
- engines: {node: '>=8.5.0'}
+ /use-sidecar/1.1.2:
+ resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
+ engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 17.0.35
- react: 17.0.2
+ detect-node-es: 1.1.0
+ tslib: 2.6.3
dev: false
- /use-sidecar/1.0.5:
- resolution: {integrity: sha512-k9jnrjYNwN6xYLj1iaGhonDghfvmeTmYjAiGvOr7clwKfPjMXJf4/HOr7oT5tJwYafgp2tG2l3eZEOfoELiMcA==}
- engines: {node: '>=8.5.0'}
+ /use-sidecar/1.1.2_3r2q4vqikxqiwlpkbpcd6cn6l4:
+ resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
+ engines: {node: '>=10'}
peerDependencies:
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
+ '@types/react': 16.14.60
detect-node-es: 1.1.0
- tslib: 1.14.1
+ react: 17.0.2
+ tslib: 2.6.3
dev: false
- /use-sidecar/1.0.5_react@16.14.0:
- resolution: {integrity: sha512-k9jnrjYNwN6xYLj1iaGhonDghfvmeTmYjAiGvOr7clwKfPjMXJf4/HOr7oT5tJwYafgp2tG2l3eZEOfoELiMcA==}
- engines: {node: '>=8.5.0'}
+ /use-sidecar/1.1.2_nhfnajythmqulrdwzj5xx6c5qy:
+ resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
+ engines: {node: '>=10'}
peerDependencies:
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
+ '@types/react': 16.14.60
detect-node-es: 1.1.0
react: 16.14.0
- tslib: 1.14.1
+ tslib: 2.6.3
dev: true
- /use-sidecar/1.0.5_react@17.0.2:
- resolution: {integrity: sha512-k9jnrjYNwN6xYLj1iaGhonDghfvmeTmYjAiGvOr7clwKfPjMXJf4/HOr7oT5tJwYafgp2tG2l3eZEOfoELiMcA==}
- engines: {node: '>=8.5.0'}
+ /use-sync-external-store/1.2.0_react@17.0.2:
+ resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- detect-node-es: 1.1.0
react: 17.0.2
- tslib: 1.14.1
dev: false
- /use-subscription/1.5.1_react@17.0.2:
- resolution: {integrity: sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0
- dependencies:
- object-assign: 4.1.1
- react: 17.0.2
-
/use/3.1.1:
resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
engines: {node: '>=0.10.0'}
/user-home/1.1.1:
- resolution: {integrity: sha1-K1viOjK2Onyd640PKNSFcko98ZA=}
+ resolution: {integrity: sha512-aggiKfEEubv3UwRNqTzLInZpAOmKzwdHqEBmW/hBA/mt99eg+b4VrX6i+IRLxU8+WJYfa33rGwRseg4eElUgsQ==}
engines: {node: '>=0.10.0'}
hasBin: true
dev: true
/util-deprecate/1.0.2:
- resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
/util.promisify/1.0.0:
resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==}
dependencies:
- define-properties: 1.1.3
- object.getownpropertydescriptors: 2.1.3
+ define-properties: 1.2.1
+ object.getownpropertydescriptors: 2.1.8
/util.promisify/1.0.1:
resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==}
dependencies:
- define-properties: 1.1.3
- es-abstract: 1.19.1
- has-symbols: 1.0.2
- object.getownpropertydescriptors: 2.1.3
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+ has-symbols: 1.0.3
+ object.getownpropertydescriptors: 2.1.8
- /util.promisify/1.1.1:
- resolution: {integrity: sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw==}
+ /util.promisify/1.1.2:
+ resolution: {integrity: sha512-PBdZ03m1kBnQ5cjjO0ZvJMJS+QsbyIcFwi4hY4U76OQsCO9JrOYjbCFgIF76ccFg9xnJo7ZHPkqyj1GqmdS7MA==}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
+ call-bind: 1.0.7
+ define-properties: 1.2.1
for-each: 0.3.3
- has-symbols: 1.0.2
- object.getownpropertydescriptors: 2.1.3
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ object.getownpropertydescriptors: 2.1.8
+ safe-array-concat: 1.1.2
/util/0.10.3:
- resolution: {integrity: sha1-evsa/lCAUkZInj23/g7TeTNqwPk=}
+ resolution: {integrity: sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==}
dependencies:
inherits: 2.0.1
+ dev: false
+
+ /util/0.10.4:
+ resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==}
+ dependencies:
+ inherits: 2.0.3
/util/0.11.1:
resolution: {integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==}
dependencies:
inherits: 2.0.3
+ /util/0.12.5:
+ resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
+ dependencies:
+ inherits: 2.0.4
+ is-arguments: 1.1.1
+ is-generator-function: 1.0.10
+ is-typed-array: 1.1.13
+ which-typed-array: 1.1.15
+ dev: false
+
/utila/0.4.0:
- resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=}
+ resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
/utils-merge/1.0.1:
- resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=}
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
- /uuid/3.3.2:
- resolution: {integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==}
- deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
- hasBin: true
- dev: false
-
/uuid/3.4.0:
resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
hasBin: true
+ /uuid/8.0.0:
+ resolution: {integrity: sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==}
+ hasBin: true
+ dev: false
+
/uuid/8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
- /v8-compile-cache-lib/3.0.0:
- resolution: {integrity: sha512-mpSYqfsFvASnSn5qMiwrr4VKfumbPyONLCOPmsR3A6pTY/r0+tSaVbgPWSAIuzbk3lCTa+FForeTiO+wBQGkjA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.0.tgz}
+ /v8-compile-cache-lib/3.0.1:
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
dev: true
- /v8-compile-cache/2.3.0:
- resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
+ /v8-compile-cache/2.4.0:
+ resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
/v8-to-istanbul/7.1.2:
resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==}
engines: {node: '>=10.10.0'}
dependencies:
- '@types/istanbul-lib-coverage': 2.0.3
- convert-source-map: 1.8.0
- source-map: 0.7.3
+ '@types/istanbul-lib-coverage': 2.0.6
+ convert-source-map: 1.9.0
+ source-map: 0.7.4
+
+ /v8-to-istanbul/8.1.1:
+ resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==}
+ engines: {node: '>=10.12.0'}
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.6
+ convert-source-map: 1.9.0
+ source-map: 0.7.4
+ dev: true
- /v8-to-istanbul/8.1.0:
- resolution: {integrity: sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA==}
+ /v8-to-istanbul/9.2.0:
+ resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==}
engines: {node: '>=10.12.0'}
dependencies:
- '@types/istanbul-lib-coverage': 2.0.3
- convert-source-map: 1.8.0
- source-map: 0.7.3
+ '@jridgewell/trace-mapping': 0.3.25
+ '@types/istanbul-lib-coverage': 2.0.6
+ convert-source-map: 2.0.0
dev: true
/v8flags/2.1.1:
- resolution: {integrity: sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=}
+ resolution: {integrity: sha512-SKfhk/LlaXzvtowJabLZwD4K6SGRYeoxA7KJeISlUMAB/NT4CBkZjMq3WceX2Ckm4llwqYVo8TICgsDYCBU2tA==}
engines: {node: '>= 0.10.0'}
dependencies:
user-home: 1.1.1
dev: true
/valid-url/1.0.9:
- resolution: {integrity: sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA=}
+ resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==}
dev: false
/validate-npm-package-license/3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
- spdx-correct: 3.1.1
+ spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
/value-equal/1.0.1:
resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==}
dev: false
+ /vanilla-colorful/0.7.2:
+ resolution: {integrity: sha512-z2YZusTFC6KnLERx1cgoIRX2CjPRP0W75N+3CC6gbvdX5Ch47rZkEMGO2Xnf+IEmi3RiFLxS18gayMA27iU7Kg==}
+
/vary/1.1.2:
- resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=}
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
/vendors/1.0.4:
resolution: {integrity: sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==}
/verror/1.10.0:
- resolution: {integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=}
+ resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
engines: {'0': node >=0.6.0}
dependencies:
assert-plus: 1.0.0
core-util-is: 1.0.2
extsprintf: 1.3.0
+ /victory-vendor/36.9.2:
+ resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
+ dependencies:
+ '@types/d3-array': 3.2.1
+ '@types/d3-ease': 3.0.2
+ '@types/d3-interpolate': 3.0.4
+ '@types/d3-scale': 4.0.8
+ '@types/d3-shape': 3.1.6
+ '@types/d3-time': 3.0.3
+ '@types/d3-timer': 3.0.2
+ d3-array: 3.2.4
+ d3-ease: 3.0.1
+ d3-interpolate: 3.0.1
+ d3-scale: 4.0.2
+ d3-shape: 3.2.0
+ d3-time: 3.1.0
+ d3-timer: 3.0.1
+ dev: false
+
/vm-browserify/1.1.2:
resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
/void-elements/3.1.0:
- resolution: {integrity: sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=}
+ resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==}
engines: {node: '>=0.10.0'}
dev: false
/w3c-hr-time/1.0.2:
resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
+ deprecated: Use your platform's native performance.now() and performance.timeOrigin.
dependencies:
browser-process-hrtime: 1.0.0
@@ -34601,16 +36846,16 @@ packages:
dependencies:
xml-name-validator: 3.0.0
- /wait-on/6.0.0_debug@4.3.2:
- resolution: {integrity: sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw==}
- engines: {node: '>=10.0.0'}
+ /wait-on/7.0.1_debug@4.3.4:
+ resolution: {integrity: sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog==}
+ engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
- axios: 0.21.4_debug@4.3.2
- joi: 17.6.0
+ axios: 0.27.2_debug@4.3.4
+ joi: 17.13.1
lodash: 4.17.21
- minimist: 1.2.5
- rxjs: 7.5.5
+ minimist: 1.2.8
+ rxjs: 7.8.1
transitivePeerDependencies:
- debug
dev: true
@@ -34637,31 +36882,40 @@ packages:
/watchpack/1.7.5:
resolution: {integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
neo-async: 2.6.2
optionalDependencies:
- chokidar: 3.5.3
+ chokidar: 3.6.0
watchpack-chokidar2: 2.0.1
transitivePeerDependencies:
- supports-color
+ /watchpack/2.4.1:
+ resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ engines: {node: '>=10.13.0'}
+ dependencies:
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ dev: true
+
/wbuf/1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
dependencies:
minimalistic-assert: 1.0.1
/wcwidth/1.0.1:
- resolution: {integrity: sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=}
+ resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
dependencies:
- defaults: 1.0.3
+ defaults: 1.0.4
dev: true
/webfontloader/1.6.28:
- resolution: {integrity: sha1-23hhKSU8tujq5UwvsF+HCvZnW64=}
+ resolution: {integrity: sha512-Egb0oFEga6f+nSgasH3E0M405Pzn6y3/9tOVanv/DLfa1YBIgcv90L18YyWnvXkRbIM17v5Kv6IT2N6g1x5tvQ==}
dev: false
/webidl-conversions/3.0.1:
- resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=}
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+ dev: false
/webidl-conversions/4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
@@ -34679,20 +36933,55 @@ packages:
engines: {node: '>= 10.13.0'}
hasBin: true
dependencies:
- acorn: 8.5.0
- acorn-walk: 8.2.0
+ acorn: 8.11.3
+ acorn-walk: 8.3.2
chalk: 4.1.2
commander: 6.2.1
gzip-size: 6.0.0
lodash: 4.17.21
opener: 1.5.2
sirv: 1.0.19
- ws: 7.5.5
+ ws: 7.5.9
transitivePeerDependencies:
- bufferutil
- utf-8-validate
dev: true
+ /webpack-cli/4.10.0_webpack@5.92.1:
+ resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ peerDependencies:
+ '@webpack-cli/generators': '*'
+ '@webpack-cli/migrate': '*'
+ webpack: 4.x.x || 5.x.x
+ webpack-bundle-analyzer: '*'
+ webpack-dev-server: '*'
+ peerDependenciesMeta:
+ '@webpack-cli/generators':
+ optional: true
+ '@webpack-cli/migrate':
+ optional: true
+ webpack-bundle-analyzer:
+ optional: true
+ webpack-dev-server:
+ optional: true
+ dependencies:
+ '@discoveryjs/json-ext': 0.5.7
+ '@webpack-cli/configtest': 1.2.0_pxtyhad64fzsb5lrmxwhxp4lga
+ '@webpack-cli/info': 1.5.0_webpack-cli@4.10.0
+ '@webpack-cli/serve': 1.7.0_webpack-cli@4.10.0
+ colorette: 2.0.20
+ commander: 7.2.0
+ cross-spawn: 7.0.3
+ fastest-levenshtein: 1.0.16
+ import-local: 3.1.0
+ interpret: 2.2.0
+ rechoir: 0.7.1
+ webpack: 5.92.1_webpack-cli@4.10.0
+ webpack-merge: 5.10.0
+ dev: true
+
/webpack-dev-middleware/3.7.3_webpack@4.42.0:
resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==}
engines: {node: '>= 6'}
@@ -34701,11 +36990,10 @@ packages:
dependencies:
memory-fs: 0.4.1
mime: 2.6.0
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
range-parser: 1.2.1
webpack: 4.42.0
webpack-log: 2.0.0
- dev: false
/webpack-dev-middleware/3.7.3_webpack@4.44.2:
resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==}
@@ -34715,25 +37003,11 @@ packages:
dependencies:
memory-fs: 0.4.1
mime: 2.6.0
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
range-parser: 1.2.1
webpack: 4.44.2
webpack-log: 2.0.0
- /webpack-dev-middleware/3.7.3_webpack@4.46.0:
- resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==}
- engines: {node: '>= 6'}
- peerDependencies:
- webpack: ^4.0.0 || ^5.0.0
- dependencies:
- memory-fs: 0.4.1
- mime: 2.6.0
- mkdirp: 0.5.5
- range-parser: 1.2.1
- webpack: 4.46.0
- webpack-log: 2.0.0
- dev: true
-
/webpack-dev-server/3.10.3_webpack@4.42.0:
resolution: {integrity: sha512-e4nWev8YzEVNdOMcNzNeCN947sWJNd43E5XvsJzbAL08kGc2frm1tQ32hTJslRS+H65LCb/AaUCYU7fjHCpDeQ==}
engines: {node: '>= 6.11.5'}
@@ -34750,30 +37024,30 @@ packages:
chokidar: 2.1.8_supports-color@6.1.0
compression: 1.7.4_supports-color@6.1.0
connect-history-api-fallback: 1.6.0
- debug: 4.3.2_supports-color@6.1.0
+ debug: 4.3.5_supports-color@6.1.0
del: 4.1.1
- express: 4.17.1_supports-color@6.1.0
+ express: 4.19.2_supports-color@6.1.0
html-entities: 1.4.0
- http-proxy-middleware: 0.19.1_xwktanctkdp2ue56r3exixdqpa
+ http-proxy-middleware: 0.19.1_cvgmqmby27wuzeql4gbeflp6nq
import-local: 2.0.0
internal-ip: 4.3.0
- ip: 1.1.5
+ ip: 1.1.9
is-absolute-url: 3.0.3
killable: 1.0.1
- loglevel: 1.7.1
+ loglevel: 1.9.1
opn: 5.5.0
p-retry: 3.0.1
- portfinder: 1.0.28_supports-color@6.1.0
+ portfinder: 1.0.32_supports-color@6.1.0
schema-utils: 1.0.0
- selfsigned: 1.10.11
- semver: 6.3.0
+ selfsigned: 1.10.14
+ semver: 6.3.1
serve-index: 1.9.1_supports-color@6.1.0
sockjs: 0.3.19
sockjs-client: 1.4.0_supports-color@6.1.0
spdy: 4.0.2_supports-color@6.1.0
strip-ansi: 3.0.1
supports-color: 6.1.0
- url: 0.11.0
+ url: 0.11.3
webpack: 4.42.0
webpack-dev-middleware: 3.7.3_webpack@4.42.0
webpack-log: 2.0.0
@@ -34800,30 +37074,30 @@ packages:
chokidar: 2.1.8_supports-color@6.1.0
compression: 1.7.4_supports-color@6.1.0
connect-history-api-fallback: 1.6.0
- debug: 4.3.2_supports-color@6.1.0
+ debug: 4.3.5_supports-color@6.1.0
del: 4.1.1
- express: 4.17.1_supports-color@6.1.0
+ express: 4.19.2_supports-color@6.1.0
html-entities: 1.4.0
- http-proxy-middleware: 0.19.1_xwktanctkdp2ue56r3exixdqpa
+ http-proxy-middleware: 0.19.1_cvgmqmby27wuzeql4gbeflp6nq
import-local: 2.0.0
internal-ip: 4.3.0
- ip: 1.1.5
+ ip: 1.1.9
is-absolute-url: 3.0.3
killable: 1.0.1
- loglevel: 1.7.1
+ loglevel: 1.9.1
opn: 5.5.0
p-retry: 3.0.1
- portfinder: 1.0.28_supports-color@6.1.0
+ portfinder: 1.0.32_supports-color@6.1.0
schema-utils: 1.0.0
- selfsigned: 1.10.11
- semver: 6.3.0
+ selfsigned: 1.10.14
+ semver: 6.3.1
serve-index: 1.9.1_supports-color@6.1.0
sockjs: 0.3.24
- sockjs-client: 1.5.2_supports-color@6.1.0
+ sockjs-client: 1.6.1_supports-color@6.1.0
spdy: 4.0.2_supports-color@6.1.0
strip-ansi: 3.0.1
supports-color: 6.1.0
- url: 0.11.0
+ url: 0.11.3
webpack: 4.44.2
webpack-dev-middleware: 3.7.3_webpack@4.44.2
webpack-log: 2.0.0
@@ -34833,12 +37107,11 @@ packages:
- bufferutil
- utf-8-validate
- /webpack-hot-middleware/2.25.1:
- resolution: {integrity: sha512-Koh0KyU/RPYwel/khxbsDz9ibDivmUbrRuKSSQvW42KSDdO4w23WI3SkHpSUKHE76LrFnnM/L7JCrpBwu8AXYw==}
+ /webpack-hot-middleware/2.26.1:
+ resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==}
dependencies:
ansi-html-community: 0.0.8
- html-entities: 2.3.2
- querystring: 0.2.1
+ html-entities: 2.5.2
strip-ansi: 6.0.1
dev: true
@@ -34857,7 +37130,7 @@ packages:
dependencies:
fs-extra: 7.0.1
lodash: 4.17.21
- object.entries: 1.1.5
+ object.entries: 1.1.8
tapable: 1.1.3
webpack: 4.42.0
dev: false
@@ -34870,16 +37143,38 @@ packages:
dependencies:
fs-extra: 7.0.1
lodash: 4.17.21
- object.entries: 1.1.5
+ object.entries: 1.1.8
tapable: 1.1.3
webpack: 4.44.2
+ /webpack-merge/5.10.0:
+ resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==}
+ engines: {node: '>=10.0.0'}
+ dependencies:
+ clone-deep: 4.0.1
+ flat: 5.0.2
+ wildcard: 2.0.1
+ dev: true
+
/webpack-sources/1.4.3:
resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
dependencies:
source-list-map: 2.0.1
source-map: 0.6.1
+ /webpack-sources/2.3.1:
+ resolution: {integrity: sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==}
+ engines: {node: '>=10.13.0'}
+ dependencies:
+ source-list-map: 2.0.1
+ source-map: 0.6.1
+ dev: true
+
+ /webpack-sources/3.2.3:
+ resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
+ engines: {node: '>=10.13.0'}
+ dev: true
+
/webpack-virtual-modules/0.2.2:
resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==}
dependencies:
@@ -34908,15 +37203,15 @@ packages:
acorn: 6.4.2
ajv: 6.12.6
ajv-keywords: 3.5.2_ajv@6.12.6
- chrome-trace-event: 1.0.3
+ chrome-trace-event: 1.0.4
enhanced-resolve: 4.5.0
eslint-scope: 4.0.3
json-parse-better-errors: 1.0.2
loader-runner: 2.4.0
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
memory-fs: 0.4.1
micromatch: 3.1.10
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
neo-async: 2.6.2
node-libs-browser: 2.2.1
schema-utils: 1.0.0
@@ -34926,7 +37221,6 @@ packages:
webpack-sources: 1.4.3
transitivePeerDependencies:
- supports-color
- dev: false
/webpack/4.44.2:
resolution: {integrity: sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==}
@@ -34948,15 +37242,15 @@ packages:
acorn: 6.4.2
ajv: 6.12.6
ajv-keywords: 3.5.2_ajv@6.12.6
- chrome-trace-event: 1.0.3
+ chrome-trace-event: 1.0.4
enhanced-resolve: 4.5.0
eslint-scope: 4.0.3
json-parse-better-errors: 1.0.2
loader-runner: 2.4.0
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
memory-fs: 0.4.1
micromatch: 3.1.10
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
neo-async: 2.6.2
node-libs-browser: 2.2.1
schema-utils: 1.0.0
@@ -34967,44 +37261,45 @@ packages:
transitivePeerDependencies:
- supports-color
- /webpack/4.46.0:
- resolution: {integrity: sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==}
- engines: {node: '>=6.11.5'}
+ /webpack/5.92.1_webpack-cli@4.10.0:
+ resolution: {integrity: sha512-JECQ7IwJb+7fgUFBlrJzbyu3GEuNBcdqr1LD7IbSzwkSmIevTm8PF+wej3Oxuz/JFBUZ6O1o43zsPkwm1C4TmA==}
+ engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
webpack-cli: '*'
- webpack-command: '*'
peerDependenciesMeta:
webpack-cli:
optional: true
- webpack-command:
- optional: true
dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-module-context': 1.9.0
- '@webassemblyjs/wasm-edit': 1.9.0
- '@webassemblyjs/wasm-parser': 1.9.0
- acorn: 6.4.2
- ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
- chrome-trace-event: 1.0.3
- enhanced-resolve: 4.5.0
- eslint-scope: 4.0.3
- json-parse-better-errors: 1.0.2
- loader-runner: 2.4.0
- loader-utils: 1.4.0
- memory-fs: 0.4.1
- micromatch: 3.1.10
- mkdirp: 0.5.5
+ '@types/eslint-scope': 3.7.7
+ '@types/estree': 1.0.5
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/wasm-edit': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ acorn: 8.11.3
+ acorn-import-attributes: 1.9.5_acorn@8.11.3
+ browserslist: 4.23.1
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.17.0
+ es-module-lexer: 1.5.4
+ eslint-scope: 5.1.1
+ events: 3.3.0
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ json-parse-even-better-errors: 2.3.1
+ loader-runner: 4.3.0
+ mime-types: 2.1.35
neo-async: 2.6.2
- node-libs-browser: 2.2.1
- schema-utils: 1.0.0
- tapable: 1.1.3
- terser-webpack-plugin: 1.4.5_webpack@4.46.0
- watchpack: 1.7.5
- webpack-sources: 1.4.3
+ schema-utils: 3.3.0
+ tapable: 2.2.1
+ terser-webpack-plugin: 5.3.10_webpack@5.92.1
+ watchpack: 2.4.1
+ webpack-cli: 4.10.0_webpack@5.92.1
+ webpack-sources: 3.2.3
transitivePeerDependencies:
- - supports-color
+ - '@swc/core'
+ - esbuild
+ - uglify-js
dev: true
/webrtc-adapter/7.7.1:
@@ -35019,7 +37314,7 @@ packages:
resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
engines: {node: '>=0.8.0'}
dependencies:
- http-parser-js: 0.5.3
+ http-parser-js: 0.5.8
safe-buffer: 5.2.1
websocket-extensions: 0.1.4
@@ -35041,17 +37336,18 @@ packages:
resolution: {integrity: sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==}
dev: false
- /whatwg-fetch/3.6.2:
- resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==}
+ /whatwg-fetch/3.6.20:
+ resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
/whatwg-mimetype/2.3.0:
resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==}
/whatwg-url/5.0.0:
- resolution: {integrity: sha1-lmRU6HZUYuN2RNNib2dCzotwll0=}
+ resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
+ dev: false
/whatwg-url/6.5.0:
resolution: {integrity: sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==}
@@ -35080,12 +37376,48 @@ packages:
dependencies:
is-bigint: 1.0.4
is-boolean-object: 1.1.2
- is-number-object: 1.0.6
+ is-number-object: 1.0.7
is-string: 1.0.7
is-symbol: 1.0.4
- /which-module/2.0.0:
- resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=}
+ /which-builtin-type/1.1.3:
+ resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ function.prototype.name: 1.1.6
+ has-tostringtag: 1.0.2
+ is-async-function: 2.0.0
+ is-date-object: 1.0.5
+ is-finalizationregistry: 1.0.2
+ is-generator-function: 1.0.10
+ is-regex: 1.1.4
+ is-weakref: 1.0.2
+ isarray: 2.0.5
+ which-boxed-primitive: 1.0.2
+ which-collection: 1.0.2
+ which-typed-array: 1.1.15
+
+ /which-collection/1.0.2:
+ resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-map: 2.0.3
+ is-set: 2.0.3
+ is-weakmap: 2.0.2
+ is-weakset: 2.0.3
+
+ /which-module/2.0.1:
+ resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
+
+ /which-typed-array/1.1.15:
+ resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.2
/which/1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
@@ -35109,7 +37441,7 @@ packages:
/wide-align/1.1.5:
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
dependencies:
- string-width: 4.2.3
+ string-width: 1.0.2
/widest-line/2.0.1:
resolution: {integrity: sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==}
@@ -35124,8 +37456,12 @@ packages:
dependencies:
string-width: 4.2.3
- /word-wrap/1.2.3:
- resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
+ /wildcard/2.0.1:
+ resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
+ dev: true
+
+ /word-wrap/1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
/workbox-background-sync/4.3.1:
@@ -35154,11 +37490,11 @@ packages:
resolution: {integrity: sha512-UHdwrN3FrDvicM3AqJS/J07X0KXj67R8Cg0waq1MKEOqzo89ap6zh6LmaLnRAjpB+bDIz+7OlPye9iii9KBnxw==}
engines: {node: '>=4.0.0'}
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.13.10
'@hapi/joi': 15.1.1
common-tags: 1.8.2
fs-extra: 4.0.3
- glob: 7.2.0
+ glob: 7.2.3
lodash.template: 4.5.0
pretty-bytes: 5.6.0
stringify-object: 3.3.0
@@ -35183,9 +37519,9 @@ packages:
resolution: {integrity: sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==}
engines: {node: '>=8.0.0'}
dependencies:
- '@babel/core': 7.17.5
- '@babel/preset-env': 7.16.4_@babel+core@7.17.5
- '@babel/runtime': 7.17.2
+ '@babel/core': 7.13.15
+ '@babel/preset-env': 7.13.15_@babel+core@7.13.15
+ '@babel/runtime': 7.13.10
'@hapi/joi': 15.1.1
'@rollup/plugin-node-resolve': 7.1.3_rollup@1.32.1
'@rollup/plugin-replace': 2.4.2_rollup@1.32.1
@@ -35193,13 +37529,13 @@ packages:
common-tags: 1.8.2
fast-json-stable-stringify: 2.1.0
fs-extra: 8.1.0
- glob: 7.2.0
+ glob: 7.2.3
lodash.template: 4.5.0
pretty-bytes: 5.6.0
rollup: 1.32.1
- rollup-plugin-babel: 4.4.0_4s3bdcfkf2nwnscy4hsif6bdua
+ rollup-plugin-babel: 4.4.0_q5g4rhtwbxmjien7677dbvgy6e
rollup-plugin-terser: 5.3.1_rollup@1.32.1
- source-map: 0.7.3
+ source-map: 0.7.4
source-map-url: 0.4.1
stringify-object: 3.3.0
strip-comments: 1.0.2
@@ -35253,6 +37589,7 @@ packages:
/workbox-google-analytics/4.3.1:
resolution: {integrity: sha512-xzCjAoKuOb55CBSwQrbyWBKqp35yg1vw9ohIlU2wTy06ZrYfJ8rKochb1MSGlnoBfXGWss3UPzxR5QL5guIFdg==}
+ deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained
dependencies:
workbox-background-sync: 4.3.1
workbox-core: 4.3.1
@@ -35262,6 +37599,7 @@ packages:
/workbox-google-analytics/5.1.4:
resolution: {integrity: sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==}
+ deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained
dependencies:
workbox-background-sync: 5.1.4
workbox-core: 5.1.4
@@ -35349,8 +37687,8 @@ packages:
peerDependencies:
webpack: ^2.0.0 || ^3.0.0 || ^4.0.0
dependencies:
- '@babel/runtime': 7.16.3
- json-stable-stringify: 1.0.1
+ '@babel/runtime': 7.13.10
+ json-stable-stringify: 1.1.1
webpack: 4.42.0
workbox-build: 4.3.1
dev: false
@@ -35361,7 +37699,7 @@ packages:
peerDependencies:
webpack: ^4.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.13.10
fast-json-stable-stringify: 2.1.0
source-map-url: 0.4.1
upath: 1.2.0
@@ -35397,7 +37735,7 @@ packages:
dev: true
/wrap-ansi/2.1.0:
- resolution: {integrity: sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=}
+ resolution: {integrity: sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==}
engines: {node: '>=0.10.0'}
dependencies:
string-width: 1.0.2
@@ -35405,7 +37743,7 @@ packages:
dev: false
/wrap-ansi/3.0.1:
- resolution: {integrity: sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=}
+ resolution: {integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==}
engines: {node: '>=4'}
dependencies:
string-width: 2.1.1
@@ -35437,28 +37775,28 @@ packages:
strip-ansi: 6.0.1
/wrappy/1.0.2:
- resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
/write-file-atomic/2.4.1:
resolution: {integrity: sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==}
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
imurmurhash: 0.1.4
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
/write-file-atomic/3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
dependencies:
imurmurhash: 0.1.4
is-typedarray: 1.0.0
- signal-exit: 3.0.5
+ signal-exit: 3.0.7
typedarray-to-buffer: 3.1.5
/write/1.0.3:
resolution: {integrity: sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==}
engines: {node: '>=4'}
dependencies:
- mkdirp: 0.5.5
+ mkdirp: 0.5.6
/ws/5.2.3:
resolution: {integrity: sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==}
@@ -35486,8 +37824,8 @@ packages:
dependencies:
async-limiter: 1.0.1
- /ws/7.5.5:
- resolution: {integrity: sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==}
+ /ws/7.5.9:
+ resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
engines: {node: '>=8.3.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -35506,15 +37844,16 @@ packages:
/xml-name-validator/3.0.0:
resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==}
- /xml2js/0.4.19:
- resolution: {integrity: sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==}
+ /xml2js/0.6.2:
+ resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==}
+ engines: {node: '>=4.0.0'}
dependencies:
- sax: 1.2.4
- xmlbuilder: 9.0.7
+ sax: 1.4.1
+ xmlbuilder: 11.0.1
dev: false
- /xmlbuilder/9.0.7:
- resolution: {integrity: sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=}
+ /xmlbuilder/11.0.1:
+ resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
engines: {node: '>=4.0'}
dev: false
@@ -35524,7 +37863,7 @@ packages:
/xregexp/4.4.1:
resolution: {integrity: sha512-2u9HwfadaJaY9zHtRRnH6BY6CQVNQKkYm3oLtC9gJXXzfsbACg5X5e4EZZGVAH+YIfa+QA9lsFQTTe3HURF3ag==}
dependencies:
- '@babel/runtime-corejs3': 7.16.3
+ '@babel/runtime-corejs3': 7.24.7
dev: false
/xtend/4.0.2:
@@ -35540,7 +37879,7 @@ packages:
dev: true
/yallist/2.1.2:
- resolution: {integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=}
+ resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
/yallist/3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
@@ -35610,7 +37949,7 @@ packages:
require-main-filename: 1.0.1
set-blocking: 2.0.0
string-width: 2.1.1
- which-module: 2.0.0
+ which-module: 2.0.1
y18n: 4.0.3
yargs-parser: 11.1.1
dev: false
@@ -35625,7 +37964,7 @@ packages:
require-main-filename: 2.0.0
set-blocking: 2.0.0
string-width: 3.1.0
- which-module: 2.0.0
+ which-module: 2.0.1
y18n: 4.0.3
yargs-parser: 13.1.2
dev: true
@@ -35640,7 +37979,7 @@ packages:
require-main-filename: 2.0.0
set-blocking: 2.0.0
string-width: 3.1.0
- which-module: 2.0.0
+ which-module: 2.0.1
y18n: 4.0.3
yargs-parser: 13.1.2
@@ -35656,7 +37995,7 @@ packages:
require-main-filename: 2.0.0
set-blocking: 2.0.0
string-width: 4.2.3
- which-module: 2.0.0
+ which-module: 2.0.1
y18n: 4.0.3
yargs-parser: 18.1.3
@@ -35665,7 +38004,7 @@ packages:
engines: {node: '>=10'}
dependencies:
cliui: 7.0.4
- escalade: 3.1.1
+ escalade: 3.1.2
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -35674,14 +38013,14 @@ packages:
dev: true
/yauzl/2.10.0:
- resolution: {integrity: sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=}
+ resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
dependencies:
buffer-crc32: 0.2.13
fd-slicer: 1.1.0
dev: true
/yn/3.1.1:
- resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz}
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
engines: {node: '>=6'}
dev: true
@@ -35696,10 +38035,9 @@ packages:
zen-observable: 0.8.15
dev: false
- /zen-observable-ts/1.1.0:
- resolution: {integrity: sha512-1h4zlLSqI2cRLPJUHJFL8bCWHhkpuXkF+dbGkRaWjgDIG26DmzyshUMrdV/rL3UnR+mhaX4fRq8LPouq0MYYIA==}
+ /zen-observable-ts/1.2.5:
+ resolution: {integrity: sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==}
dependencies:
- '@types/zen-observable': 0.8.3
zen-observable: 0.8.15
dev: false