diff --git a/README.md b/README.md
index b58e0af8..e69de29b 100644
--- a/README.md
+++ b/README.md
@@ -1,46 +0,0 @@
-# Getting Started with Create React App
-
-This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
-
-## Available Scripts
-
-In the project directory, you can run:
-
-### `yarn start`
-
-Runs the app in the development mode.\
-Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
-
-The page will reload if you make edits.\
-You will also see any lint errors in the console.
-
-### `yarn test`
-
-Launches the test runner in the interactive watch mode.\
-See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
-
-### `yarn build`
-
-Builds the app for production to the `build` folder.\
-It correctly bundles React in production mode and optimizes the build for the best performance.
-
-The build is minified and the filenames include the hashes.\
-Your app is ready to be deployed!
-
-See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
-
-### `yarn eject`
-
-**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
-
-If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
-
-Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
-
-You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
-
-## Learn More
-
-You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
-
-To learn React, check out the [React documentation](https://reactjs.org/).
diff --git a/build.js b/build.js
new file mode 100644
index 00000000..0bb8cf80
--- /dev/null
+++ b/build.js
@@ -0,0 +1,50 @@
+const StyleDictionary = require('style-dictionary').extend({
+ source: ['tokens/default/*.json'],
+ platforms: {
+ js: {
+ transformGroup: 'web',
+ buildPath: 'src/build/',
+ files: [
+ {
+ destination: 'theme.ts',
+ format: 'javascript/esm',
+ },
+ ],
+ },
+ },
+});
+
+const { fileHeader } = StyleDictionary.formatHelpers;
+
+const javascriptEsm = ({ dictionary, file, options, platform = {} }) => {
+ const { prefix } = platform;
+ const tokens = prefix ? { [prefix]: dictionary.tokens } : dictionary.tokens;
+ const output =
+ fileHeader({ file }) +
+ `export const theme = \n${JSON.stringify(
+ jsonToNestedValue(tokens),
+ null,
+ 2
+ )}\n`;
+ return output;
+};
+
+const jsonToNestedValue = (token) => {
+ // is non-object value
+ if (!token || typeof token !== 'object') return token;
+ // is design token
+ if ('value' in token) return token.value;
+ // is obj
+ const nextObj = {};
+ for (const [prop, value] of Object.entries(token)) {
+ nextObj[prop] = jsonToNestedValue(value);
+ }
+ return nextObj;
+};
+
+StyleDictionary.registerFormat({
+ name: 'javascript/esm',
+ formatter: javascriptEsm,
+});
+
+StyleDictionary.buildAllPlatforms();
diff --git a/package.json b/package.json
index 8b63872f..ffb74f66 100644
--- a/package.json
+++ b/package.json
@@ -13,14 +13,15 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
+ "styled-components": "^6.0.5",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "react-scripts start",
- "build": "react-scripts build",
"test": "react-scripts test",
- "eject": "react-scripts eject"
+ "eject": "react-scripts eject",
+ "build-dict": "node build.js"
},
"eslintConfig": {
"extends": [
@@ -28,6 +29,13 @@
"react-app/jest"
]
},
+ "devDependencies": {
+ "color2k": "^2.0.2",
+ "eslint": "^8.45.0",
+ "prettier": "^3.0.0",
+ "style-dictionary": "^3.8.0",
+ "style-dictionary-utils": "^1.6.1"
+ },
"browserslist": {
"production": [
">0.2%",
diff --git a/src/App.tsx b/src/App.tsx
index 62320e1f..77db068a 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,7 +1,17 @@
import React from 'react';
+import { Container } from './styles';
+import { Button } from './components/Button';
function App() {
- return
Empty
;
+ return (
+
+
+
+
+
+
+
+ );
}
export default App;
diff --git a/src/build/theme.ts b/src/build/theme.ts
new file mode 100644
index 00000000..a00d806a
--- /dev/null
+++ b/src/build/theme.ts
@@ -0,0 +1,2253 @@
+/**
+ * Do not edit directly
+ * Generated on Thu, 27 Jul 2023 09:01:13 GMT
+ */
+
+export const theme = {
+ border: {},
+ color: {
+ primary: {
+ '100': '#f1effe',
+ '200': '#bdb7ff',
+ '300': '#948aff',
+ '400': '#6a5cff',
+ '500': '#402eff',
+ '600': '#1500f7',
+ '700': '#0f00b8',
+ '800': '#0e00a5',
+ '900': '#0b007d',
+ '1000': '#070054',
+ },
+ component: {
+ button: {
+ background: {
+ error: {
+ default: '#da1414',
+ disabled: '#fceaea',
+ },
+ primary: {
+ default: '#070054',
+ hover: '#0e00a5',
+ disabled: '#bdb7ff',
+ },
+ secondary: {
+ default: '#ffffff',
+ hover: '#ffffff',
+ disabled: '#ffffff',
+ },
+ },
+ border: {
+ secondary: {
+ default: '#cbcbcb',
+ hover: '#9e9e9e',
+ disabled: '#f5f5f5',
+ },
+ danger: {
+ hover: '#da1414',
+ },
+ },
+ text: {
+ 'on-primary': '#ffffff',
+ 'on-secondary': '#6e6e71',
+ disabled: '#b5b5b5',
+ },
+ },
+ },
+ background: {
+ brand: {
+ weak: '#bdb7ff',
+ standard: '#1500f7',
+ },
+ danger: {
+ standard: '#da1414',
+ weak: '#fceaea',
+ },
+ neutral: {
+ standard: '#f9f9f9',
+ },
+ },
+ text: {
+ neutral: {
+ strong: '#141416',
+ standard: '#6e6e71',
+ weak: '#b5b5b5',
+ },
+ inverse: {
+ strong: '#ffffff',
+ standard: '#f9f9f9',
+ },
+ danger: {
+ standard: '#da1414',
+ weak: '#f4b9b9',
+ },
+ brand: {
+ standard: '#1500f7',
+ },
+ disabled: 'rgba(0, 0, 0, 0)',
+ },
+ secondary: {
+ paleyellow: {
+ '100': '#fffcf6',
+ '200': '#fff4dc',
+ '300': '#ffecc2',
+ '400': '#ffe3a7',
+ '500': '#ffdb8d',
+ '600': '#ffd373',
+ '700': '#ffc850',
+ '800': '#ffae00',
+ },
+ watergreen: {
+ '100': '#f8fdfb',
+ '200': '#e1f7f0',
+ '300': '#cbf1e5',
+ '400': '#b4ebd9',
+ '500': '#9ee4ce',
+ '600': '#88dec3',
+ '700': '#6ad6b4',
+ '800': '#37c99b',
+ },
+ agrume: {
+ '100': '#fffbfa',
+ '200': '#fff3ef',
+ '300': '#ffeae3',
+ '400': '#ffd9cc',
+ '500': '#ffbfaa',
+ '600': '#ffa587',
+ '700': '#ff8b64',
+ '800': '#fc6533',
+ },
+ },
+ states: {
+ warning: {
+ '100': '#ffe8e0',
+ '200': '#ffc5b1',
+ '300': '#fc6533',
+ },
+ informative: {
+ '100': '#f1effe',
+ '200': '#bdb7ff',
+ '300': '#1500f7',
+ },
+ success: {
+ '100': '#e5fff8',
+ '200': '#9ee4ce',
+ '300': '#37c99b',
+ },
+ danger: {
+ '100': '#fceaea',
+ '200': '#f4b9b9',
+ '300': '#da1414',
+ },
+ },
+ border: {
+ neutral: {
+ standard: '#cbcbcb',
+ strong: '#9e9e9e',
+ weak: '#f5f5f5',
+ },
+ danger: {
+ standard: '#da1414',
+ },
+ brand: {
+ standard: '#1500f7',
+ },
+ },
+ neutral: {
+ '100': '#f9f9f9',
+ '200': '#f5f5f5',
+ '300': '#e2e2e2',
+ '400': '#cbcbcb',
+ '500': '#b5b5b5',
+ '600': '#9e9e9e',
+ '700': '#878787',
+ '800': '#6e6e71',
+ '900': '#57575a',
+ '1000': '#404043',
+ white: '#ffffff',
+ black: '#141416',
+ },
+ extra: {
+ purple: {
+ '100': '#f3daff',
+ '200': '#e372ff',
+ '300': '#ad00ff',
+ },
+ brown: {
+ '100': '#f4e6d5',
+ '200': '#ffba69',
+ '300': '#aa5c00',
+ },
+ pink: {
+ '100': '#ffd7ec',
+ '200': '#ff7dc3',
+ '300': '#da2185',
+ },
+ frog: {
+ '100': '#b4efba',
+ '200': '#69ff78',
+ '300': '#00ac11',
+ },
+ },
+ },
+ font: {},
+ gradient: {},
+ measure: {
+ 'line-height': {
+ lineheights: {
+ '0': {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ '1': {
+ measure: {
+ type: 'size',
+ value: 26,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ '2': {
+ measure: {
+ type: 'size',
+ value: 24,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ '3': {
+ measure: {
+ type: 'size',
+ value: 22,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ '4': {
+ measure: {
+ type: 'size',
+ value: 20,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ },
+ spacing: {
+ 'small-spaces': {
+ 's-space-xxs': {
+ measure: {
+ type: 'size',
+ value: 4,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ 's-space-xs': {
+ measure: {
+ type: 'size',
+ value: 8,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ 's-space-s': {
+ measure: {
+ type: 'size',
+ value: 12,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ 's-space-md': {
+ measure: {
+ type: 'size',
+ value: 16,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ 's-space-lg': {
+ measure: {
+ type: 'size',
+ value: 20,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ 's-space-xl': {
+ measure: {
+ type: 'size',
+ value: 24,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ 's-space-xxl': {
+ measure: {
+ type: 'size',
+ value: 32,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ layout: {
+ xs: {
+ measure: {
+ type: 'size',
+ value: 24,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ s: {
+ measure: {
+ type: 'size',
+ value: 32,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ m: {
+ measure: {
+ type: 'size',
+ value: 40,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ l: {
+ measure: {
+ type: 'size',
+ value: 48,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ xl: {
+ measure: {
+ type: 'size',
+ value: 56,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ 'large-spaces': {
+ 'l-space-xs': {
+ measure: {
+ type: 'size',
+ value: 40,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ 'l-space-s': {
+ measure: {
+ type: 'size',
+ value: 48,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ 'l-space-md': {
+ measure: {
+ type: 'size',
+ value: 64,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ 's-space-lg': {
+ measure: {
+ type: 'size',
+ value: 80,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ 'l-space-xl': {
+ measure: {
+ type: 'size',
+ value: 96,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ 'l-space-xxl': {
+ measure: {
+ type: 'size',
+ value: 128,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ component: {
+ 'button-s': {
+ padding: {
+ measure: {
+ type: 'size',
+ value: 12,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ 'button-regular': {
+ padding: {
+ measure: {
+ type: 'size',
+ value: 16,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ },
+ 'no-space': {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ xs: {
+ measure: {
+ type: 'size',
+ value: 8,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ s: {
+ measure: {
+ type: 'size',
+ value: 12,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ m: {
+ measure: {
+ type: 'size',
+ value: 16,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ l: {
+ measure: {
+ type: 'size',
+ value: 20,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ xl: {
+ measure: {
+ type: 'size',
+ value: 32,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ 'paragraph-spacing': {
+ paragraphspacing: {
+ '0': {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ '1': {
+ measure: {
+ type: 'size',
+ value: 8,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ },
+ dimension: {
+ paragraphindent: {
+ '0': {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ },
+ 'letter-spacing': {
+ letterspacing: {
+ '0': {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ '1': {
+ measure: {
+ type: 'size',
+ value: 8,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ },
+ 'font-size': {
+ fontsize: {
+ '0': {
+ measure: {
+ type: 'size',
+ value: 11,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ '1': {
+ measure: {
+ type: 'size',
+ value: 12,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ '2': {
+ measure: {
+ type: 'size',
+ value: 14,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ '3': {
+ measure: {
+ type: 'size',
+ value: 16,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ '4': {
+ measure: {
+ type: 'size',
+ value: 18,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ '5': {
+ measure: {
+ type: 'size',
+ value: 24,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ },
+ sizing: {
+ component: {
+ 'button-s': {
+ height: {
+ measure: {
+ type: 'size',
+ value: 32,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ 'button-regular': {
+ height: {
+ measure: {
+ type: 'size',
+ value: 42,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ },
+ },
+ },
+ },
+ radius: {
+ 'border-radius': {
+ 'radius-default': {
+ radius: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 4,
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ },
+ 'radius-md': {
+ radius: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 8,
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ },
+ 'radius-lg': {
+ radius: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 12,
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ },
+ button: {
+ radius: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 4,
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ },
+ card: {
+ radius: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 8,
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/radii.json',
+ isSource: true,
+ },
+ },
+ },
+ },
+ shadow: {
+ 'shadow-card': {
+ color: {
+ type: 'color',
+ value: '#0000000a',
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ x: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ y: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ radius: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 6,
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ spread: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ opacity: {
+ type: 'size',
+ value: 1,
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ },
+ 'shadow-modal': {
+ color: {
+ type: 'color',
+ value: '#0000000a',
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ x: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ y: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ radius: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 32,
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ spread: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ opacity: {
+ type: 'size',
+ value: 1,
+ filePath: 'tokens/default/shadows.json',
+ isSource: true,
+ },
+ },
+ },
+ text: {},
+ typography: {
+ headings: {
+ 'h1-24px': {
+ font: {
+ type: 'font',
+ value: {
+ family: {
+ type: 'string',
+ value: 'Heebo',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ subfamily: {
+ type: 'string',
+ value: 'Bold',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ fontSize: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 24,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ textDecoration: 'None',
+ textCase: 'Original',
+ letterSpacing: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ paragraphIndent: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ lineHeight: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ },
+ body: {
+ 'l-18px': {
+ regular: {
+ font: {
+ type: 'font',
+ value: {
+ family: {
+ type: 'string',
+ value: 'Heebo',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ subfamily: {
+ type: 'string',
+ value: 'Regular',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ fontSize: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 18,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ textDecoration: 'None',
+ textCase: 'Original',
+ letterSpacing: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ paragraphIndent: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ lineHeight: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 26,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ bold: {
+ font: {
+ type: 'font',
+ value: {
+ family: {
+ type: 'string',
+ value: 'Heebo',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ subfamily: {
+ type: 'string',
+ value: 'Bold',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ fontSize: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 18,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ textDecoration: 'None',
+ textCase: 'Original',
+ letterSpacing: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ paragraphIndent: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ lineHeight: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 26,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ },
+ 'xs-12px': {
+ regular: {
+ font: {
+ type: 'font',
+ value: {
+ family: {
+ type: 'string',
+ value: 'Heebo',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ subfamily: {
+ type: 'string',
+ value: 'Regular',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ fontSize: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 12,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ textDecoration: 'None',
+ textCase: 'Original',
+ letterSpacing: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ paragraphIndent: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ lineHeight: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 20,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ bold: {
+ font: {
+ type: 'font',
+ value: {
+ family: {
+ type: 'string',
+ value: 'Heebo',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ subfamily: {
+ type: 'string',
+ value: 'Bold',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ fontSize: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 12,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ textDecoration: 'None',
+ textCase: 'Original',
+ letterSpacing: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ paragraphIndent: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ lineHeight: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 20,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ },
+ 's-14px': {
+ regular: {
+ font: {
+ type: 'font',
+ value: {
+ family: {
+ type: 'string',
+ value: 'Heebo',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ subfamily: {
+ type: 'string',
+ value: 'Regular',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ fontSize: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 14,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ textDecoration: 'None',
+ textCase: 'Original',
+ letterSpacing: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ paragraphIndent: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ lineHeight: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 22,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ bold: {
+ font: {
+ type: 'font',
+ value: {
+ family: {
+ type: 'string',
+ value: 'Heebo',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ subfamily: {
+ type: 'string',
+ value: 'Bold',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ fontSize: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 14,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ textDecoration: 'None',
+ textCase: 'Original',
+ letterSpacing: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ paragraphIndent: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ lineHeight: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 22,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ },
+ 'm-16px': {
+ regular: {
+ font: {
+ type: 'font',
+ value: {
+ family: {
+ type: 'string',
+ value: 'Heebo',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ subfamily: {
+ type: 'string',
+ value: 'Regular',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ fontSize: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 16,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ textDecoration: 'None',
+ textCase: 'Original',
+ letterSpacing: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ paragraphIndent: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ lineHeight: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 24,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ bold: {
+ font: {
+ type: 'font',
+ value: {
+ family: {
+ type: 'string',
+ value: 'Heebo',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ subfamily: {
+ type: 'string',
+ value: 'Bold',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ fontSize: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 16,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ textDecoration: 'None',
+ textCase: 'Original',
+ letterSpacing: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ paragraphIndent: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ lineHeight: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 24,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ },
+ },
+ ui: {
+ 'tableheader-11px': {
+ regular: {
+ font: {
+ type: 'font',
+ value: {
+ family: {
+ type: 'string',
+ value: 'Heebo',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ subfamily: {
+ type: 'string',
+ value: 'Regular',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ fontSize: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 11,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ textDecoration: 'None',
+ textCase: 'Original',
+ letterSpacing: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 8,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ paragraphIndent: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ lineHeight: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ bold: {
+ font: {
+ type: 'font',
+ value: {
+ family: {
+ type: 'string',
+ value: 'Heebo',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ subfamily: {
+ type: 'string',
+ value: 'Bold',
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ fontSize: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 11,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ textDecoration: 'None',
+ textCase: 'Original',
+ letterSpacing: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 8,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'percent',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ paragraphIndent: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ lineHeight: {
+ type: 'measure',
+ value: {
+ measure: {
+ type: 'size',
+ value: 0,
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ unit: {
+ type: 'string',
+ value: 'pixels',
+ filePath: 'tokens/default/measures.json',
+ isSource: true,
+ },
+ },
+ filePath: 'tokens/default/typography.json',
+ isSource: true,
+ },
+ },
+ },
+ },
+ },
+};
diff --git a/src/components/Button/index.tsx b/src/components/Button/index.tsx
new file mode 100644
index 00000000..532a12c9
--- /dev/null
+++ b/src/components/Button/index.tsx
@@ -0,0 +1,21 @@
+import React, { ReactElement } from 'react';
+import { StyledButton } from './styles';
+import { ButtonSpacing, ButtonVariant } from './types';
+
+type ButtonProps = {
+ variant?: ButtonVariant;
+ spacing?: ButtonSpacing;
+ disabled?: boolean;
+};
+
+export function Button({
+ variant = 'primary',
+ spacing = 'button-regular',
+ disabled = false,
+}: ButtonProps): ReactElement {
+ return (
+
+ This is {variant} button
+
+ );
+}
diff --git a/src/components/Button/styles.ts b/src/components/Button/styles.ts
new file mode 100644
index 00000000..bd0469d4
--- /dev/null
+++ b/src/components/Button/styles.ts
@@ -0,0 +1,56 @@
+import styled, { css } from 'styled-components';
+import { theme } from '../../build/theme';
+import { ButtonVariant, ButtonSpacing } from './types';
+
+const buttonColors = theme.color.component.button;
+
+const buttonBorderRadiiValue =
+ theme.radius['border-radius'].button.radius.value.measure.value;
+
+const borderColors = buttonColors.border as any;
+
+function getVariantStyles(variant: ButtonVariant) {
+ const textColor =
+ variant === 'secondary'
+ ? buttonColors.text['on-secondary']
+ : buttonColors.text['on-primary'];
+
+ const currentVariantColors = buttonColors.background[variant] as {
+ default: string;
+ hover: string;
+ disabled: string;
+ };
+
+ const borderColor = borderColors[variant];
+
+ const border = borderColor ? `1px solid ${borderColor?.default}` : 'none';
+
+ return css`
+ background-color: ${currentVariantColors.default};
+ color: ${textColor};
+
+ border: ${border};
+
+ &:hover {
+ background-color: ${currentVariantColors.hover};
+ border-color: ${borderColor?.hover};
+ }
+
+ &:disabled {
+ background-color: ${currentVariantColors.disabled};
+ border-color: ${borderColor?.disabled};
+ }
+ `;
+}
+
+export const StyledButton = styled.button<{
+ variant: ButtonVariant;
+ spacing: ButtonSpacing;
+}>`
+ ${(p) => getVariantStyles(p.variant)}
+ border-radius: ${buttonBorderRadiiValue}px;
+ padding: ${(p) =>
+ theme.measure.spacing.component[p.spacing].padding.measure.value}px;
+ cursor: pointer;
+ height: fit-content;
+`;
diff --git a/src/components/Button/types.ts b/src/components/Button/types.ts
new file mode 100644
index 00000000..0d8e134e
--- /dev/null
+++ b/src/components/Button/types.ts
@@ -0,0 +1,3 @@
+export type ButtonVariant = 'primary' | 'secondary' | 'error';
+
+export type ButtonSpacing = 'button-regular' | 'button-s';
diff --git a/src/index.css b/src/index.css
index ec2585e8..e5ce844e 100644
--- a/src/index.css
+++ b/src/index.css
@@ -5,9 +5,19 @@ body {
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
+ height: 100%;
+}
+
+html {
+ height: 100%;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
+
+#root {
+ height: 100%;
+ background-color: #fbfbfb;
+}
diff --git a/src/styles.ts b/src/styles.ts
new file mode 100644
index 00000000..7886a316
--- /dev/null
+++ b/src/styles.ts
@@ -0,0 +1,10 @@
+import styled from 'styled-components';
+
+export const Container = styled.div`
+ width: 500px;
+ height: 500px;
+ margin: auto;
+ background-color: white;
+ display: flex;
+ align-items: center;
+`;
diff --git a/tokens/default/borders.json b/tokens/default/borders.json
new file mode 100644
index 00000000..71d48533
--- /dev/null
+++ b/tokens/default/borders.json
@@ -0,0 +1,3 @@
+{
+ "border": {}
+}
\ No newline at end of file
diff --git a/tokens/default/colors.json b/tokens/default/colors.json
new file mode 100644
index 00000000..f7995093
--- /dev/null
+++ b/tokens/default/colors.json
@@ -0,0 +1,498 @@
+{
+ "color": {
+ "primary": {
+ "100": {
+ "value": "#f1effeff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#bdb7ffff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#948affff",
+ "type": "color"
+ },
+ "400": {
+ "value": "#6a5cffff",
+ "type": "color"
+ },
+ "500": {
+ "value": "#402effff",
+ "type": "color"
+ },
+ "600": {
+ "value": "#1500f7ff",
+ "type": "color"
+ },
+ "700": {
+ "value": "#0f00b8ff",
+ "type": "color"
+ },
+ "800": {
+ "value": "#0e00a5ff",
+ "type": "color"
+ },
+ "900": {
+ "value": "#0b007dff",
+ "type": "color"
+ },
+ "1000": {
+ "value": "#070054ff",
+ "type": "color"
+ }
+ },
+ "component": {
+ "button": {
+ "background": {
+ "error": {
+ "default": {
+ "value": "{color.background.danger.standard.value}",
+ "type": "color"
+ },
+ "disabled": {
+ "value": "{color.states.danger.100.value}",
+ "type": "color"
+ }
+ },
+ "primary": {
+ "default": {
+ "value": "{color.primary.1000.value}",
+ "type": "color"
+ },
+ "hover": {
+ "value": "{color.primary.800.value}",
+ "type": "color"
+ },
+ "disabled": {
+ "value": "{color.background.brand.weak.value}",
+ "type": "color"
+ }
+ },
+ "secondary": {
+ "default": {
+ "value": "{color.neutral.white.value}",
+ "type": "color"
+ },
+ "hover": {
+ "value": "{color.neutral.white.value}",
+ "type": "color"
+ },
+ "disabled": {
+ "value": "{color.neutral.white.value}",
+ "type": "color"
+ }
+ }
+ },
+ "border": {
+ "secondary": {
+ "default": {
+ "value": "{color.border.neutral.standard.value}",
+ "type": "color"
+ },
+ "hover": {
+ "value": "{color.border.neutral.strong.value}",
+ "type": "color"
+ },
+ "disabled": {
+ "value": "{color.border.neutral.weak.value}",
+ "type": "color"
+ }
+ },
+ "danger": {
+ "hover": {
+ "value": "{color.border.danger.standard.value}",
+ "type": "color"
+ }
+ }
+ },
+ "text": {
+ "on-primary": {
+ "value": "{color.text.inverse.strong.value}",
+ "type": "color"
+ },
+ "on-secondary": {
+ "value": "{color.text.neutral.standard.value}",
+ "type": "color"
+ },
+ "disabled": {
+ "value": "{color.text.neutral.weak.value}",
+ "type": "color"
+ }
+ }
+ }
+ },
+ "background": {
+ "brand": {
+ "weak": {
+ "value": "{color.primary.200.value}",
+ "type": "color"
+ },
+ "standard": {
+ "value": "{color.primary.600.value}",
+ "type": "color"
+ }
+ },
+ "danger": {
+ "standard": {
+ "value": "{color.states.danger.300.value}",
+ "type": "color"
+ },
+ "weak": {
+ "value": "{color.states.danger.100.value}",
+ "type": "color"
+ }
+ },
+ "neutral": {
+ "standard": {
+ "value": "{color.neutral.100.value}",
+ "type": "color"
+ }
+ }
+ },
+ "text": {
+ "neutral": {
+ "strong": {
+ "value": "{color.neutral.black.value}",
+ "type": "color"
+ },
+ "standard": {
+ "value": "{color.neutral.800.value}",
+ "type": "color"
+ },
+ "weak": {
+ "value": "{color.neutral.500.value}",
+ "type": "color"
+ }
+ },
+ "inverse": {
+ "strong": {
+ "value": "{color.neutral.white.value}",
+ "type": "color"
+ },
+ "standard": {
+ "value": "{color.neutral.100.value}",
+ "type": "color"
+ }
+ },
+ "danger": {
+ "standard": {
+ "value": "{color.states.danger.300.value}",
+ "type": "color"
+ },
+ "weak": {
+ "value": "{color.states.danger.200.value}",
+ "type": "color"
+ }
+ },
+ "brand": {
+ "standard": {
+ "value": "{color.primary.600.value}",
+ "type": "color"
+ }
+ },
+ "disabled": {
+ "value": "#00000000",
+ "type": "color"
+ }
+ },
+ "secondary": {
+ "paleyellow": {
+ "100": {
+ "value": "#fffcf6ff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#fff4dcff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#ffecc2ff",
+ "type": "color"
+ },
+ "400": {
+ "value": "#ffe3a7ff",
+ "type": "color"
+ },
+ "500": {
+ "value": "#ffdb8dff",
+ "type": "color"
+ },
+ "600": {
+ "value": "#ffd373ff",
+ "type": "color"
+ },
+ "700": {
+ "value": "#ffc850ff",
+ "type": "color"
+ },
+ "800": {
+ "value": "#ffae00ff",
+ "type": "color"
+ }
+ },
+ "watergreen": {
+ "100": {
+ "value": "#f8fdfbff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#e1f7f0ff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#cbf1e5ff",
+ "type": "color"
+ },
+ "400": {
+ "value": "#b4ebd9ff",
+ "type": "color"
+ },
+ "500": {
+ "value": "#9ee4ceff",
+ "type": "color"
+ },
+ "600": {
+ "value": "#88dec3ff",
+ "type": "color"
+ },
+ "700": {
+ "value": "#6ad6b4ff",
+ "type": "color"
+ },
+ "800": {
+ "value": "#37c99bff",
+ "type": "color"
+ }
+ },
+ "agrume": {
+ "100": {
+ "value": "#fffbfaff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#fff3efff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#ffeae3ff",
+ "type": "color"
+ },
+ "400": {
+ "value": "#ffd9ccff",
+ "type": "color"
+ },
+ "500": {
+ "value": "#ffbfaaff",
+ "type": "color"
+ },
+ "600": {
+ "value": "#ffa587ff",
+ "type": "color"
+ },
+ "700": {
+ "value": "#ff8b64ff",
+ "type": "color"
+ },
+ "800": {
+ "value": "#fc6533ff",
+ "type": "color"
+ }
+ }
+ },
+ "states": {
+ "warning": {
+ "100": {
+ "value": "#ffe8e0ff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#ffc5b1ff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#fc6533ff",
+ "type": "color"
+ }
+ },
+ "informative": {
+ "100": {
+ "value": "#f1effeff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#bdb7ffff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#1500f7ff",
+ "type": "color"
+ }
+ },
+ "success": {
+ "100": {
+ "value": "#e5fff8ff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#9ee4ceff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#37c99bff",
+ "type": "color"
+ }
+ },
+ "danger": {
+ "100": {
+ "value": "#fceaeaff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#f4b9b9ff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#da1414ff",
+ "type": "color"
+ }
+ }
+ },
+ "border": {
+ "neutral": {
+ "standard": {
+ "value": "{color.neutral.400.value}",
+ "type": "color"
+ },
+ "strong": {
+ "value": "{color.neutral.600.value}",
+ "type": "color"
+ },
+ "weak": {
+ "value": "{color.neutral.200.value}",
+ "type": "color"
+ }
+ },
+ "danger": {
+ "standard": {
+ "value": "{color.states.danger.300.value}",
+ "type": "color"
+ }
+ },
+ "brand": {
+ "standard": {
+ "value": "{color.primary.600.value}",
+ "type": "color"
+ }
+ }
+ },
+ "neutral": {
+ "100": {
+ "value": "#f9f9f9ff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#f5f5f5ff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#e2e2e2ff",
+ "type": "color"
+ },
+ "400": {
+ "value": "#cbcbcbff",
+ "type": "color"
+ },
+ "500": {
+ "value": "#b5b5b5ff",
+ "type": "color"
+ },
+ "600": {
+ "value": "#9e9e9eff",
+ "type": "color"
+ },
+ "700": {
+ "value": "#878787ff",
+ "type": "color"
+ },
+ "800": {
+ "value": "#6e6e71ff",
+ "type": "color"
+ },
+ "900": {
+ "value": "#57575aff",
+ "type": "color"
+ },
+ "1000": {
+ "value": "#404043ff",
+ "type": "color"
+ },
+ "white": {
+ "value": "#ffffffff",
+ "type": "color"
+ },
+ "black": {
+ "value": "#141416ff",
+ "type": "color"
+ }
+ },
+ "extra": {
+ "purple": {
+ "100": {
+ "value": "#f3daffff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#e372ffff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#ad00ffff",
+ "type": "color"
+ }
+ },
+ "brown": {
+ "100": {
+ "value": "#f4e6d5ff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#ffba69ff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#aa5c00ff",
+ "type": "color"
+ }
+ },
+ "pink": {
+ "100": {
+ "value": "#ffd7ecff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#ff7dc3ff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#da2185ff",
+ "type": "color"
+ }
+ },
+ "frog": {
+ "100": {
+ "value": "#b4efbaff",
+ "type": "color"
+ },
+ "200": {
+ "value": "#69ff78ff",
+ "type": "color"
+ },
+ "300": {
+ "value": "#00ac11ff",
+ "type": "color"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tokens/default/fonts.json b/tokens/default/fonts.json
new file mode 100644
index 00000000..b1d025a6
--- /dev/null
+++ b/tokens/default/fonts.json
@@ -0,0 +1,3 @@
+{
+ "font": {}
+}
\ No newline at end of file
diff --git a/tokens/default/gradients.json b/tokens/default/gradients.json
new file mode 100644
index 00000000..11d1d34b
--- /dev/null
+++ b/tokens/default/gradients.json
@@ -0,0 +1,3 @@
+{
+ "gradient": {}
+}
diff --git a/tokens/default/measures.json b/tokens/default/measures.json
new file mode 100644
index 00000000..9d8159af
--- /dev/null
+++ b/tokens/default/measures.json
@@ -0,0 +1,600 @@
+{
+ "measure": {
+ "line-height": {
+ "lineheights": {
+ "0": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 0
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "1": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 26
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "2": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 24
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "3": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 22
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "4": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 20
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ }
+ }
+ },
+ "spacing": {
+ "small-spaces": {
+ "s-space-xxs": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 4
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "s-space-xs": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 8
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "s-space-s": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 12
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "s-space-md": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 16
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "s-space-lg": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 20
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "s-space-xl": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 24
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "s-space-xxl": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 32
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ }
+ },
+ "layout": {
+ "xs": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 24
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "s": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 32
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "m": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 40
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "l": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 48
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "xl": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 56
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ }
+ },
+ "large-spaces": {
+ "l-space-xs": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 40
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "l-space-s": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 48
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "l-space-md": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 64
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "s-space-lg": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 80
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "l-space-xl": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 96
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "l-space-xxl": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 128
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ }
+ },
+ "component": {
+ "button-s": {
+ "padding": {
+ "value": "{measure.spacing.s.value}",
+ "type": "measure"
+ }
+ },
+ "button-regular": {
+ "padding": {
+ "value": "{measure.spacing.m.value}",
+ "type": "measure"
+ }
+ }
+ },
+ "no-space": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 0
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "xs": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 8
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "s": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 12
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "m": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 16
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "l": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 20
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "xl": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 32
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ }
+ },
+ "paragraph-spacing": {
+ "paragraphspacing": {
+ "0": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 0
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "1": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 8
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ }
+ }
+ },
+ "dimension": {
+ "paragraphindent": {
+ "0": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 0
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ }
+ }
+ },
+ "letter-spacing": {
+ "letterspacing": {
+ "0": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 0
+ },
+ "unit": {
+ "type": "string",
+ "value": "percent"
+ }
+ },
+ "type": "measure"
+ },
+ "1": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 8
+ },
+ "unit": {
+ "type": "string",
+ "value": "percent"
+ }
+ },
+ "type": "measure"
+ }
+ }
+ },
+ "font-size": {
+ "fontsize": {
+ "0": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 11
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "1": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 12
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "2": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 14
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "3": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 16
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "4": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 18
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ },
+ "5": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 24
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ }
+ }
+ },
+ "sizing": {
+ "component": {
+ "button-s": {
+ "height": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 32
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ }
+ },
+ "button-regular": {
+ "height": {
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 42
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ },
+ "type": "measure"
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tokens/default/radii.json b/tokens/default/radii.json
new file mode 100644
index 00000000..1346b803
--- /dev/null
+++ b/tokens/default/radii.json
@@ -0,0 +1,68 @@
+{
+ "radius": {
+ "border-radius": {
+ "radius-default": {
+ "value": {
+ "radius": {
+ "type": "measure",
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 4
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ }
+ }
+ },
+ "type": "radius"
+ },
+ "radius-md": {
+ "value": {
+ "radius": {
+ "type": "measure",
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 8
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ }
+ }
+ },
+ "type": "radius"
+ },
+ "radius-lg": {
+ "value": {
+ "radius": {
+ "type": "measure",
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 12
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ }
+ }
+ },
+ "type": "radius"
+ },
+ "button": {
+ "value": "{radius.border-radius.radius-default.value}",
+ "type": "radius"
+ },
+ "card": {
+ "value": "{radius.border-radius.radius-md.value}",
+ "type": "radius"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tokens/default/shadows.json b/tokens/default/shadows.json
new file mode 100644
index 00000000..91ed158d
--- /dev/null
+++ b/tokens/default/shadows.json
@@ -0,0 +1,134 @@
+{
+ "shadow": {
+ "shadow-card": {
+ "value": {
+ "color": {
+ "type": "color",
+ "value": "#0000000a"
+ },
+ "x": {
+ "type": "measure",
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 0
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ }
+ },
+ "y": {
+ "type": "measure",
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 0
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ }
+ },
+ "radius": {
+ "type": "measure",
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 6
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ }
+ },
+ "spread": {
+ "type": "measure",
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 0
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ }
+ },
+ "opacity": {
+ "type": "size",
+ "value": 1
+ }
+ },
+ "type": "shadow"
+ },
+ "shadow-modal": {
+ "value": {
+ "color": {
+ "type": "color",
+ "value": "#0000000a"
+ },
+ "x": {
+ "type": "measure",
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 0
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ }
+ },
+ "y": {
+ "type": "measure",
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 0
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ }
+ },
+ "radius": {
+ "type": "measure",
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 32
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ }
+ },
+ "spread": {
+ "type": "measure",
+ "value": {
+ "measure": {
+ "type": "size",
+ "value": 0
+ },
+ "unit": {
+ "type": "string",
+ "value": "pixels"
+ }
+ }
+ },
+ "opacity": {
+ "type": "size",
+ "value": 1
+ }
+ },
+ "type": "shadow"
+ }
+ }
+}
diff --git a/tokens/default/text.json b/tokens/default/text.json
new file mode 100644
index 00000000..89f1152b
--- /dev/null
+++ b/tokens/default/text.json
@@ -0,0 +1,3 @@
+{
+ "text": {}
+}
diff --git a/tokens/default/typography.json b/tokens/default/typography.json
new file mode 100644
index 00000000..8e71c6fe
--- /dev/null
+++ b/tokens/default/typography.json
@@ -0,0 +1,416 @@
+{
+ "typography": {
+ "headings": {
+ "h1-24px": {
+ "value": {
+ "font": {
+ "type": "font",
+ "value": {
+ "family": {
+ "type": "string",
+ "value": "Heebo"
+ },
+ "subfamily": {
+ "type": "string",
+ "value": "Bold"
+ }
+ }
+ },
+ "fontSize": {
+ "type": "measure",
+ "value": "{measure.font-size.fontsize.5.value}"
+ },
+ "textDecoration": "None",
+ "textCase": "Original",
+ "letterSpacing": {
+ "type": "measure",
+ "value": "{measure.letter-spacing.letterspacing.0.value}"
+ },
+ "paragraphIndent": {
+ "type": "measure",
+ "value": "{measure.dimension.paragraphindent.0.value}"
+ },
+ "lineHeight": {
+ "type": "measure",
+ "value": "{measure.line-height.lineheights.0.value}"
+ }
+ },
+ "type": "typography"
+ }
+ },
+ "body": {
+ "l-18px": {
+ "regular": {
+ "value": {
+ "font": {
+ "type": "font",
+ "value": {
+ "family": {
+ "type": "string",
+ "value": "Heebo"
+ },
+ "subfamily": {
+ "type": "string",
+ "value": "Regular"
+ }
+ }
+ },
+ "fontSize": {
+ "type": "measure",
+ "value": "{measure.font-size.fontsize.4.value}"
+ },
+ "textDecoration": "None",
+ "textCase": "Original",
+ "letterSpacing": {
+ "type": "measure",
+ "value": "{measure.letter-spacing.letterspacing.0.value}"
+ },
+ "paragraphIndent": {
+ "type": "measure",
+ "value": "{measure.dimension.paragraphindent.0.value}"
+ },
+ "lineHeight": {
+ "type": "measure",
+ "value": "{measure.line-height.lineheights.1.value}"
+ }
+ },
+ "type": "typography"
+ },
+ "bold": {
+ "value": {
+ "font": {
+ "type": "font",
+ "value": {
+ "family": {
+ "type": "string",
+ "value": "Heebo"
+ },
+ "subfamily": {
+ "type": "string",
+ "value": "Bold"
+ }
+ }
+ },
+ "fontSize": {
+ "type": "measure",
+ "value": "{measure.font-size.fontsize.4.value}"
+ },
+ "textDecoration": "None",
+ "textCase": "Original",
+ "letterSpacing": {
+ "type": "measure",
+ "value": "{measure.letter-spacing.letterspacing.0.value}"
+ },
+ "paragraphIndent": {
+ "type": "measure",
+ "value": "{measure.dimension.paragraphindent.0.value}"
+ },
+ "lineHeight": {
+ "type": "measure",
+ "value": "{measure.line-height.lineheights.1.value}"
+ }
+ },
+ "type": "typography"
+ }
+ },
+ "xs-12px": {
+ "regular": {
+ "value": {
+ "font": {
+ "type": "font",
+ "value": {
+ "family": {
+ "type": "string",
+ "value": "Heebo"
+ },
+ "subfamily": {
+ "type": "string",
+ "value": "Regular"
+ }
+ }
+ },
+ "fontSize": {
+ "type": "measure",
+ "value": "{measure.font-size.fontsize.1.value}"
+ },
+ "textDecoration": "None",
+ "textCase": "Original",
+ "letterSpacing": {
+ "type": "measure",
+ "value": "{measure.letter-spacing.letterspacing.0.value}"
+ },
+ "paragraphIndent": {
+ "type": "measure",
+ "value": "{measure.dimension.paragraphindent.0.value}"
+ },
+ "lineHeight": {
+ "type": "measure",
+ "value": "{measure.line-height.lineheights.4.value}"
+ }
+ },
+ "type": "typography"
+ },
+ "bold": {
+ "value": {
+ "font": {
+ "type": "font",
+ "value": {
+ "family": {
+ "type": "string",
+ "value": "Heebo"
+ },
+ "subfamily": {
+ "type": "string",
+ "value": "Bold"
+ }
+ }
+ },
+ "fontSize": {
+ "type": "measure",
+ "value": "{measure.font-size.fontsize.1.value}"
+ },
+ "textDecoration": "None",
+ "textCase": "Original",
+ "letterSpacing": {
+ "type": "measure",
+ "value": "{measure.letter-spacing.letterspacing.0.value}"
+ },
+ "paragraphIndent": {
+ "type": "measure",
+ "value": "{measure.dimension.paragraphindent.0.value}"
+ },
+ "lineHeight": {
+ "type": "measure",
+ "value": "{measure.line-height.lineheights.4.value}"
+ }
+ },
+ "type": "typography"
+ }
+ },
+ "s-14px": {
+ "regular": {
+ "value": {
+ "font": {
+ "type": "font",
+ "value": {
+ "family": {
+ "type": "string",
+ "value": "Heebo"
+ },
+ "subfamily": {
+ "type": "string",
+ "value": "Regular"
+ }
+ }
+ },
+ "fontSize": {
+ "type": "measure",
+ "value": "{measure.font-size.fontsize.2.value}"
+ },
+ "textDecoration": "None",
+ "textCase": "Original",
+ "letterSpacing": {
+ "type": "measure",
+ "value": "{measure.letter-spacing.letterspacing.0.value}"
+ },
+ "paragraphIndent": {
+ "type": "measure",
+ "value": "{measure.dimension.paragraphindent.0.value}"
+ },
+ "lineHeight": {
+ "type": "measure",
+ "value": "{measure.line-height.lineheights.3.value}"
+ }
+ },
+ "type": "typography"
+ },
+ "bold": {
+ "value": {
+ "font": {
+ "type": "font",
+ "value": {
+ "family": {
+ "type": "string",
+ "value": "Heebo"
+ },
+ "subfamily": {
+ "type": "string",
+ "value": "Bold"
+ }
+ }
+ },
+ "fontSize": {
+ "type": "measure",
+ "value": "{measure.font-size.fontsize.2.value}"
+ },
+ "textDecoration": "None",
+ "textCase": "Original",
+ "letterSpacing": {
+ "type": "measure",
+ "value": "{measure.letter-spacing.letterspacing.0.value}"
+ },
+ "paragraphIndent": {
+ "type": "measure",
+ "value": "{measure.dimension.paragraphindent.0.value}"
+ },
+ "lineHeight": {
+ "type": "measure",
+ "value": "{measure.line-height.lineheights.3.value}"
+ }
+ },
+ "type": "typography"
+ }
+ },
+ "m-16px": {
+ "regular": {
+ "value": {
+ "font": {
+ "type": "font",
+ "value": {
+ "family": {
+ "type": "string",
+ "value": "Heebo"
+ },
+ "subfamily": {
+ "type": "string",
+ "value": "Regular"
+ }
+ }
+ },
+ "fontSize": {
+ "type": "measure",
+ "value": "{measure.font-size.fontsize.3.value}"
+ },
+ "textDecoration": "None",
+ "textCase": "Original",
+ "letterSpacing": {
+ "type": "measure",
+ "value": "{measure.letter-spacing.letterspacing.0.value}"
+ },
+ "paragraphIndent": {
+ "type": "measure",
+ "value": "{measure.dimension.paragraphindent.0.value}"
+ },
+ "lineHeight": {
+ "type": "measure",
+ "value": "{measure.line-height.lineheights.2.value}"
+ }
+ },
+ "type": "typography"
+ },
+ "bold": {
+ "value": {
+ "font": {
+ "type": "font",
+ "value": {
+ "family": {
+ "type": "string",
+ "value": "Heebo"
+ },
+ "subfamily": {
+ "type": "string",
+ "value": "Bold"
+ }
+ }
+ },
+ "fontSize": {
+ "type": "measure",
+ "value": "{measure.font-size.fontsize.3.value}"
+ },
+ "textDecoration": "None",
+ "textCase": "Original",
+ "letterSpacing": {
+ "type": "measure",
+ "value": "{measure.letter-spacing.letterspacing.0.value}"
+ },
+ "paragraphIndent": {
+ "type": "measure",
+ "value": "{measure.dimension.paragraphindent.0.value}"
+ },
+ "lineHeight": {
+ "type": "measure",
+ "value": "{measure.line-height.lineheights.2.value}"
+ }
+ },
+ "type": "typography"
+ }
+ }
+ },
+ "ui": {
+ "tableheader-11px": {
+ "regular": {
+ "value": {
+ "font": {
+ "type": "font",
+ "value": {
+ "family": {
+ "type": "string",
+ "value": "Heebo"
+ },
+ "subfamily": {
+ "type": "string",
+ "value": "Regular"
+ }
+ }
+ },
+ "fontSize": {
+ "type": "measure",
+ "value": "{measure.font-size.fontsize.0.value}"
+ },
+ "textDecoration": "None",
+ "textCase": "Original",
+ "letterSpacing": {
+ "type": "measure",
+ "value": "{measure.letter-spacing.letterspacing.1.value}"
+ },
+ "paragraphIndent": {
+ "type": "measure",
+ "value": "{measure.dimension.paragraphindent.0.value}"
+ },
+ "lineHeight": {
+ "type": "measure",
+ "value": "{measure.line-height.lineheights.0.value}"
+ }
+ },
+ "type": "typography"
+ },
+ "bold": {
+ "value": {
+ "font": {
+ "type": "font",
+ "value": {
+ "family": {
+ "type": "string",
+ "value": "Heebo"
+ },
+ "subfamily": {
+ "type": "string",
+ "value": "Bold"
+ }
+ }
+ },
+ "fontSize": {
+ "type": "measure",
+ "value": "{measure.font-size.fontsize.0.value}"
+ },
+ "textDecoration": "None",
+ "textCase": "Original",
+ "letterSpacing": {
+ "type": "measure",
+ "value": "{measure.letter-spacing.letterspacing.1.value}"
+ },
+ "paragraphIndent": {
+ "type": "measure",
+ "value": "{measure.dimension.paragraphindent.0.value}"
+ },
+ "lineHeight": {
+ "type": "measure",
+ "value": "{measure.line-height.lineheights.0.value}"
+ }
+ },
+ "type": "typography"
+ }
+ }
+ }
+ }
+}
diff --git a/yarn.lock b/yarn.lock
index 2be85e28..ff39055a 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,6 +2,11 @@
# yarn lockfile v1
+"@aashutoshrathi/word-wrap@^1.2.3":
+ version "1.2.6"
+ resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf"
+ integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==
+
"@adobe/css-tools@^4.0.1":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.2.0.tgz#e1a84fca468f4b337816fcb7f0964beb620ba855"
@@ -29,6 +34,22 @@
jsonpointer "^5.0.0"
leven "^3.1.0"
+"@babel/cli@^7.21.0":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.22.9.tgz#501b3614aeda7399371f6d5991404f069b059986"
+ integrity sha512-nb2O7AThqRo7/E53EGiuAkMaRbb7J5Qp3RvN+dmua1U+kydm0oznkhqbTEG15yk26G/C3yL6OdZjzgl+DMXVVA==
+ dependencies:
+ "@jridgewell/trace-mapping" "^0.3.17"
+ commander "^4.0.1"
+ convert-source-map "^1.1.0"
+ fs-readdir-recursive "^1.1.0"
+ glob "^7.2.0"
+ make-dir "^2.1.0"
+ slash "^2.0.0"
+ optionalDependencies:
+ "@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents.3"
+ chokidar "^3.4.0"
+
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.22.5", "@babel/code-frame@^7.8.3":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658"
@@ -36,45 +57,45 @@
dependencies:
"@babel/highlight" "^7.22.5"
-"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.5.tgz#b1f6c86a02d85d2dd3368a2b67c09add8cd0c255"
- integrity sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==
+"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730"
+ integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==
-"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.3", "@babel/core@^7.16.0", "@babel/core@^7.7.2", "@babel/core@^7.8.0":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.5.tgz#d67d9747ecf26ee7ecd3ebae1ee22225fe902a89"
- integrity sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==
+"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.3", "@babel/core@^7.16.0", "@babel/core@^7.21.0", "@babel/core@^7.7.2", "@babel/core@^7.8.0":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.9.tgz#bd96492c68822198f33e8a256061da3cf391f58f"
+ integrity sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.22.5"
- "@babel/generator" "^7.22.5"
- "@babel/helper-compilation-targets" "^7.22.5"
- "@babel/helper-module-transforms" "^7.22.5"
- "@babel/helpers" "^7.22.5"
- "@babel/parser" "^7.22.5"
+ "@babel/generator" "^7.22.9"
+ "@babel/helper-compilation-targets" "^7.22.9"
+ "@babel/helper-module-transforms" "^7.22.9"
+ "@babel/helpers" "^7.22.6"
+ "@babel/parser" "^7.22.7"
"@babel/template" "^7.22.5"
- "@babel/traverse" "^7.22.5"
+ "@babel/traverse" "^7.22.8"
"@babel/types" "^7.22.5"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.2.2"
- semver "^6.3.0"
+ semver "^6.3.1"
"@babel/eslint-parser@^7.16.3":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.5.tgz#fa032503b9e2d188e25b1b95d29e8b8431042d78"
- integrity sha512-C69RWYNYtrgIRE5CmTd77ZiLDXqgBipahJc/jHP3sLcAGj6AJzxNIuKNpVnICqbyK7X3pFUfEvL++rvtbQpZkQ==
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.9.tgz#75f8aa978d1e76c87cc6f26c1ea16ae58804d390"
+ integrity sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA==
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
eslint-visitor-keys "^2.1.0"
- semver "^6.3.0"
+ semver "^6.3.1"
-"@babel/generator@^7.22.5", "@babel/generator@^7.7.2":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.5.tgz#1e7bf768688acfb05cf30b2369ef855e82d984f7"
- integrity sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==
+"@babel/generator@^7.22.7", "@babel/generator@^7.22.9", "@babel/generator@^7.7.2":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.9.tgz#572ecfa7a31002fa1de2a9d91621fd895da8493d"
+ integrity sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==
dependencies:
"@babel/types" "^7.22.5"
"@jridgewell/gen-mapping" "^0.3.2"
@@ -95,52 +116,51 @@
dependencies:
"@babel/types" "^7.22.5"
-"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz#fc7319fc54c5e2fa14b2909cf3c5fd3046813e02"
- integrity sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==
+"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.9.tgz#f9d0a7aaaa7cd32a3f31c9316a69f5a9bcacb892"
+ integrity sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==
dependencies:
- "@babel/compat-data" "^7.22.5"
+ "@babel/compat-data" "^7.22.9"
"@babel/helper-validator-option" "^7.22.5"
- browserslist "^4.21.3"
+ browserslist "^4.21.9"
lru-cache "^5.1.1"
- semver "^6.3.0"
+ semver "^6.3.1"
-"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz#2192a1970ece4685fbff85b48da2c32fcb130b7c"
- integrity sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==
+"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.5", "@babel/helper-create-class-features-plugin@^7.22.6", "@babel/helper-create-class-features-plugin@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.9.tgz#c36ea240bb3348f942f08b0fbe28d6d979fab236"
+ integrity sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-function-name" "^7.22.5"
"@babel/helper-member-expression-to-functions" "^7.22.5"
"@babel/helper-optimise-call-expression" "^7.22.5"
- "@babel/helper-replace-supers" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.9"
"@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
- "@babel/helper-split-export-declaration" "^7.22.5"
- semver "^6.3.0"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ semver "^6.3.1"
"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz#bb2bf0debfe39b831986a4efbf4066586819c6e4"
- integrity sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz#9d8e61a8d9366fe66198f57c40565663de0825f6"
+ integrity sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
regexpu-core "^5.3.1"
- semver "^6.3.0"
+ semver "^6.3.1"
-"@babel/helper-define-polyfill-provider@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz#487053f103110f25b9755c5980e031e93ced24d8"
- integrity sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==
+"@babel/helper-define-polyfill-provider@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7"
+ integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==
dependencies:
- "@babel/helper-compilation-targets" "^7.17.7"
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-compilation-targets" "^7.22.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
debug "^4.1.1"
lodash.debounce "^4.0.8"
resolve "^1.14.2"
- semver "^6.1.2"
"@babel/helper-environment-visitor@^7.22.5":
version "7.22.5"
@@ -169,26 +189,23 @@
dependencies:
"@babel/types" "^7.22.5"
-"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.22.5":
+"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c"
integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==
dependencies:
"@babel/types" "^7.22.5"
-"@babel/helper-module-transforms@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef"
- integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==
+"@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz#92dfcb1fbbb2bc62529024f72d942a8c97142129"
+ integrity sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==
dependencies:
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-module-imports" "^7.22.5"
"@babel/helper-simple-access" "^7.22.5"
- "@babel/helper-split-export-declaration" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
"@babel/helper-validator-identifier" "^7.22.5"
- "@babel/template" "^7.22.5"
- "@babel/traverse" "^7.22.5"
- "@babel/types" "^7.22.5"
"@babel/helper-optimise-call-expression@^7.22.5":
version "7.22.5"
@@ -197,32 +214,28 @@
dependencies:
"@babel/types" "^7.22.5"
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
"@babel/helper-remap-async-to-generator@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz#14a38141a7bf2165ad38da61d61cf27b43015da2"
- integrity sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz#53a25b7484e722d7efb9c350c75c032d4628de82"
+ integrity sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
"@babel/helper-environment-visitor" "^7.22.5"
- "@babel/helper-wrap-function" "^7.22.5"
- "@babel/types" "^7.22.5"
+ "@babel/helper-wrap-function" "^7.22.9"
-"@babel/helper-replace-supers@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz#71bc5fb348856dea9fdc4eafd7e2e49f585145dc"
- integrity sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==
+"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz#cbdc27d6d8d18cd22c81ae4293765a5d9afd0779"
+ integrity sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==
dependencies:
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-member-expression-to-functions" "^7.22.5"
"@babel/helper-optimise-call-expression" "^7.22.5"
- "@babel/template" "^7.22.5"
- "@babel/traverse" "^7.22.5"
- "@babel/types" "^7.22.5"
"@babel/helper-simple-access@^7.22.5":
version "7.22.5"
@@ -238,10 +251,10 @@
dependencies:
"@babel/types" "^7.22.5"
-"@babel/helper-split-export-declaration@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz#88cf11050edb95ed08d596f7a044462189127a08"
- integrity sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==
+"@babel/helper-split-export-declaration@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
+ integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
dependencies:
"@babel/types" "^7.22.5"
@@ -260,23 +273,22 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac"
integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==
-"@babel/helper-wrap-function@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz#44d205af19ed8d872b4eefb0d2fa65f45eb34f06"
- integrity sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==
+"@babel/helper-wrap-function@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.9.tgz#189937248c45b0182c1dcf32f3444ca153944cb9"
+ integrity sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==
dependencies:
"@babel/helper-function-name" "^7.22.5"
"@babel/template" "^7.22.5"
- "@babel/traverse" "^7.22.5"
"@babel/types" "^7.22.5"
-"@babel/helpers@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.5.tgz#74bb4373eb390d1ceed74a15ef97767e63120820"
- integrity sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==
+"@babel/helpers@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd"
+ integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==
dependencies:
"@babel/template" "^7.22.5"
- "@babel/traverse" "^7.22.5"
+ "@babel/traverse" "^7.22.6"
"@babel/types" "^7.22.5"
"@babel/highlight@^7.22.5":
@@ -288,10 +300,10 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.5.tgz#721fd042f3ce1896238cf1b341c77eb7dee7dbea"
- integrity sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==
+"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.5", "@babel/parser@^7.22.7":
+ version "7.22.7"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae"
+ integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5":
version "7.22.5"
@@ -309,7 +321,14 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
"@babel/plugin-transform-optional-chaining" "^7.22.5"
-"@babel/plugin-proposal-class-properties@^7.16.0":
+"@babel/plugin-external-helpers@^7.18.6":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-external-helpers/-/plugin-external-helpers-7.22.5.tgz#92b0705b74756123f289388320e0e12c407fdf9a"
+ integrity sha512-ngnNEWxmykPk82mH4ajZT0qTztr3Je6hrMuKAslZVM8G1YZTENJSYwrIGtt6KOtznug3exmAtF4so/nPqJuA4A==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-proposal-class-properties@^7.16.0", "@babel/plugin-proposal-class-properties@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
@@ -318,14 +337,14 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-proposal-decorators@^7.16.4":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.5.tgz#dc8cdda048e5aea947efda920e030199806b868d"
- integrity sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==
+ version "7.22.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.7.tgz#9b5b73c2e404f0869ef8a8a53765f8203c5467a7"
+ integrity sha512-omXqPF7Onq4Bb7wHxXjM3jSMSJvUUbvDvmmds7KI5n9Cq6Ln5I05I1W2nRlRof1rGdiUxJrxwe285WF96XlBXQ==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.22.5"
+ "@babel/helper-create-class-features-plugin" "^7.22.6"
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-replace-supers" "^7.22.5"
- "@babel/helper-split-export-declaration" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
"@babel/plugin-syntax-decorators" "^7.22.5"
"@babel/plugin-proposal-nullish-coalescing-operator@^7.16.0":
@@ -344,6 +363,17 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
+"@babel/plugin-proposal-object-rest-spread@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a"
+ integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==
+ dependencies:
+ "@babel/compat-data" "^7.20.5"
+ "@babel/helper-compilation-targets" "^7.20.7"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-transform-parameters" "^7.20.7"
+
"@babel/plugin-proposal-optional-chaining@^7.16.0":
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea"
@@ -543,10 +573,10 @@
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-async-generator-functions@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz#7336356d23380eda9a56314974f053a020dab0c3"
- integrity sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==
+"@babel/plugin-transform-async-generator-functions@^7.22.7":
+ version "7.22.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz#053e76c0a903b72b573cb1ab7d6882174d460a1b"
+ integrity sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==
dependencies:
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-plugin-utils" "^7.22.5"
@@ -593,19 +623,19 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
-"@babel/plugin-transform-classes@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz#635d4e98da741fad814984639f4c0149eb0135e1"
- integrity sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==
+"@babel/plugin-transform-classes@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz#e04d7d804ed5b8501311293d1a0e6d43e94c3363"
+ integrity sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
- "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/helper-compilation-targets" "^7.22.6"
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-function-name" "^7.22.5"
"@babel/helper-optimise-call-expression" "^7.22.5"
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-replace-supers" "^7.22.5"
- "@babel/helper-split-export-declaration" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
globals "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.22.5":
@@ -809,16 +839,16 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
-"@babel/plugin-transform-optional-chaining@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz#1003762b9c14295501beb41be72426736bedd1e0"
- integrity sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==
+"@babel/plugin-transform-optional-chaining@^7.22.5", "@babel/plugin-transform-optional-chaining@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz#4bacfe37001fe1901117672875e931d439811564"
+ integrity sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
-"@babel/plugin-transform-parameters@^7.22.5":
+"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18"
integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==
@@ -906,16 +936,16 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-runtime@^7.16.4":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.5.tgz#ca975fb5e260044473c8142e1b18b567d33c2a3b"
- integrity sha512-bg4Wxd1FWeFx3daHFTWk1pkSWK/AyQuiyAoeZAOkAOUBjnZPH6KT7eMxouV47tQ6hl6ax2zyAWBdWZXbrvXlaw==
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.9.tgz#a87b11e170cbbfb018e6a2bf91f5c6e533b9e027"
+ integrity sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==
dependencies:
"@babel/helper-module-imports" "^7.22.5"
"@babel/helper-plugin-utils" "^7.22.5"
- babel-plugin-polyfill-corejs2 "^0.4.3"
- babel-plugin-polyfill-corejs3 "^0.8.1"
- babel-plugin-polyfill-regenerator "^0.5.0"
- semver "^6.3.0"
+ babel-plugin-polyfill-corejs2 "^0.4.4"
+ babel-plugin-polyfill-corejs3 "^0.8.2"
+ babel-plugin-polyfill-regenerator "^0.5.1"
+ semver "^6.3.1"
"@babel/plugin-transform-shorthand-properties@^7.22.5":
version "7.22.5"
@@ -954,12 +984,12 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-typescript@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz#5c0f7adfc1b5f38c4dbc8f79b1f0f8074134bd7d"
- integrity sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.9.tgz#91e08ad1eb1028ecc62662a842e93ecfbf3c7234"
+ integrity sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
- "@babel/helper-create-class-features-plugin" "^7.22.5"
+ "@babel/helper-create-class-features-plugin" "^7.22.9"
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-typescript" "^7.22.5"
@@ -994,13 +1024,13 @@
"@babel/helper-create-regexp-features-plugin" "^7.22.5"
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.16.4":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.5.tgz#3da66078b181f3d62512c51cf7014392c511504e"
- integrity sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A==
+"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.16.4", "@babel/preset-env@^7.20.2":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.9.tgz#57f17108eb5dfd4c5c25a44c1977eba1df310ac7"
+ integrity sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==
dependencies:
- "@babel/compat-data" "^7.22.5"
- "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/compat-data" "^7.22.9"
+ "@babel/helper-compilation-targets" "^7.22.9"
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-validator-option" "^7.22.5"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5"
@@ -1025,13 +1055,13 @@
"@babel/plugin-syntax-top-level-await" "^7.14.5"
"@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
"@babel/plugin-transform-arrow-functions" "^7.22.5"
- "@babel/plugin-transform-async-generator-functions" "^7.22.5"
+ "@babel/plugin-transform-async-generator-functions" "^7.22.7"
"@babel/plugin-transform-async-to-generator" "^7.22.5"
"@babel/plugin-transform-block-scoped-functions" "^7.22.5"
"@babel/plugin-transform-block-scoping" "^7.22.5"
"@babel/plugin-transform-class-properties" "^7.22.5"
"@babel/plugin-transform-class-static-block" "^7.22.5"
- "@babel/plugin-transform-classes" "^7.22.5"
+ "@babel/plugin-transform-classes" "^7.22.6"
"@babel/plugin-transform-computed-properties" "^7.22.5"
"@babel/plugin-transform-destructuring" "^7.22.5"
"@babel/plugin-transform-dotall-regex" "^7.22.5"
@@ -1056,7 +1086,7 @@
"@babel/plugin-transform-object-rest-spread" "^7.22.5"
"@babel/plugin-transform-object-super" "^7.22.5"
"@babel/plugin-transform-optional-catch-binding" "^7.22.5"
- "@babel/plugin-transform-optional-chaining" "^7.22.5"
+ "@babel/plugin-transform-optional-chaining" "^7.22.6"
"@babel/plugin-transform-parameters" "^7.22.5"
"@babel/plugin-transform-private-methods" "^7.22.5"
"@babel/plugin-transform-private-property-in-object" "^7.22.5"
@@ -1074,16 +1104,16 @@
"@babel/plugin-transform-unicode-sets-regex" "^7.22.5"
"@babel/preset-modules" "^0.1.5"
"@babel/types" "^7.22.5"
- babel-plugin-polyfill-corejs2 "^0.4.3"
- babel-plugin-polyfill-corejs3 "^0.8.1"
- babel-plugin-polyfill-regenerator "^0.5.0"
- core-js-compat "^3.30.2"
- semver "^6.3.0"
+ babel-plugin-polyfill-corejs2 "^0.4.4"
+ babel-plugin-polyfill-corejs3 "^0.8.2"
+ babel-plugin-polyfill-regenerator "^0.5.1"
+ core-js-compat "^3.31.0"
+ semver "^6.3.1"
"@babel/preset-modules@^0.1.5":
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9"
- integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6.tgz#31bcdd8f19538437339d17af00d177d854d9d458"
+ integrity sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
@@ -1091,7 +1121,7 @@
"@babel/types" "^7.4.4"
esutils "^2.0.2"
-"@babel/preset-react@^7.12.5", "@babel/preset-react@^7.16.0":
+"@babel/preset-react@^7.12.5", "@babel/preset-react@^7.16.0", "@babel/preset-react@^7.18.6":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.22.5.tgz#c4d6058fbf80bccad02dd8c313a9aaa67e3c3dd6"
integrity sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==
@@ -1103,7 +1133,7 @@
"@babel/plugin-transform-react-jsx-development" "^7.22.5"
"@babel/plugin-transform-react-pure-annotations" "^7.22.5"
-"@babel/preset-typescript@^7.16.0":
+"@babel/preset-typescript@^7.16.0", "@babel/preset-typescript@^7.21.0":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz#16367d8b01d640e9a507577ed4ee54e0101e51c8"
integrity sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==
@@ -1120,9 +1150,9 @@
integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
"@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.20.7", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.5.tgz#8564dd588182ce0047d55d7a75e93921107b57ec"
- integrity sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.6.tgz#57d64b9ae3cff1d67eb067ae117dac087f5bd438"
+ integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==
dependencies:
regenerator-runtime "^0.13.11"
@@ -1135,18 +1165,18 @@
"@babel/parser" "^7.22.5"
"@babel/types" "^7.22.5"
-"@babel/traverse@^7.22.5", "@babel/traverse@^7.7.2":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1"
- integrity sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==
+"@babel/traverse@^7.21.2", "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8", "@babel/traverse@^7.7.2":
+ version "7.22.8"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.8.tgz#4d4451d31bc34efeae01eac222b514a77aa4000e"
+ integrity sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==
dependencies:
"@babel/code-frame" "^7.22.5"
- "@babel/generator" "^7.22.5"
+ "@babel/generator" "^7.22.7"
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-function-name" "^7.22.5"
"@babel/helper-hoist-variables" "^7.22.5"
- "@babel/helper-split-export-declaration" "^7.22.5"
- "@babel/parser" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/parser" "^7.22.7"
"@babel/types" "^7.22.5"
debug "^4.1.0"
globals "^11.1.0"
@@ -1276,6 +1306,23 @@
resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz#2cbcf822bf3764c9658c4d2e568bd0c0cb748016"
integrity sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==
+"@emotion/is-prop-valid@^1.2.1":
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz#23116cf1ed18bfeac910ec6436561ecb1a3885cc"
+ integrity sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==
+ dependencies:
+ "@emotion/memoize" "^0.8.1"
+
+"@emotion/memoize@^0.8.1":
+ version "0.8.1"
+ resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17"
+ integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==
+
+"@emotion/unitless@^0.8.0":
+ version "0.8.1"
+ resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.1.tgz#182b5a4704ef8ad91bde93f7a860a88fd92c79a3"
+ integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==
+
"@eslint-community/eslint-utils@^4.2.0":
version "4.4.0"
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
@@ -1284,18 +1331,18 @@
eslint-visitor-keys "^3.3.0"
"@eslint-community/regexpp@^4.4.0":
- version "4.5.1"
- resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884"
- integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==
+ version "4.6.1"
+ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.1.tgz#0b371c118b8e4ebf9dbddb56120ab4befd791211"
+ integrity sha512-O7x6dMstWLn2ktjcoiNLDkAGG2EjveHL+Vvc+n0fXumkJYAcSqcVYKtwDU+hDZ0uDUsnUagSYaZrOLAYE8un1A==
-"@eslint/eslintrc@^2.0.3":
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331"
- integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==
+"@eslint/eslintrc@^2.1.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.0.tgz#82256f164cc9e0b59669efc19d57f8092706841d"
+ integrity sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
- espree "^9.5.2"
+ espree "^9.6.0"
globals "^13.19.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
@@ -1303,10 +1350,10 @@
minimatch "^3.1.2"
strip-json-comments "^3.1.1"
-"@eslint/js@8.42.0":
- version "8.42.0"
- resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.42.0.tgz#484a1d638de2911e6f5a30c12f49c7e4a3270fb6"
- integrity sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==
+"@eslint/js@8.44.0":
+ version "8.44.0"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.44.0.tgz#961a5903c74139390478bdc808bcde3fc45ab7af"
+ integrity sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==
"@humanwhocodes/config-array@^0.11.10":
version "0.11.10"
@@ -1411,10 +1458,10 @@
"@types/node" "*"
jest-mock "^27.5.1"
-"@jest/expect-utils@^29.5.0":
- version "29.5.0"
- resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036"
- integrity sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==
+"@jest/expect-utils@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.6.1.tgz#ab83b27a15cdd203fe5f68230ea22767d5c3acc5"
+ integrity sha512-o319vIf5pEMx0LmzSxxkYYxo4wrRLKHq9dP1yJU7FoPTB0LfAKSz8SWD6D/6U3v/O52t9cF5t+MeJiRsfk7zMw==
dependencies:
jest-get-type "^29.4.3"
@@ -1477,12 +1524,12 @@
dependencies:
"@sinclair/typebox" "^0.24.1"
-"@jest/schemas@^29.4.3":
- version "29.4.3"
- resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788"
- integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==
+"@jest/schemas@^29.6.0":
+ version "29.6.0"
+ resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.0.tgz#0f4cb2c8e3dca80c135507ba5635a4fd755b0040"
+ integrity sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==
dependencies:
- "@sinclair/typebox" "^0.25.16"
+ "@sinclair/typebox" "^0.27.8"
"@jest/source-map@^27.5.1":
version "27.5.1"
@@ -1567,12 +1614,12 @@
"@types/yargs" "^17.0.8"
chalk "^4.0.0"
-"@jest/types@^29.5.0":
- version "29.5.0"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593"
- integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==
+"@jest/types@^29.6.1":
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.1.tgz#ae79080278acff0a6af5eb49d063385aaa897bf2"
+ integrity sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==
dependencies:
- "@jest/schemas" "^29.4.3"
+ "@jest/schemas" "^29.6.0"
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^3.0.0"
"@types/node" "*"
@@ -1599,9 +1646,9 @@
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
"@jridgewell/source-map@^0.3.3":
- version "0.3.3"
- resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.3.tgz#8108265659d4c33e72ffe14e33d6cc5eb59f2fda"
- integrity sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==
+ version "0.3.5"
+ resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91"
+ integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
@@ -1629,6 +1676,11 @@
resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b"
integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==
+"@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3":
+ version "2.1.8-no-fsevents.3"
+ resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz#323d72dd25103d0c4fbdce89dadf574a787b1f9b"
+ integrity sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==
+
"@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1":
version "5.1.1-v1"
resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz#dbf733a965ca47b1973177dc0bb6c889edcfb129"
@@ -1719,10 +1771,10 @@
resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f"
integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==
-"@sinclair/typebox@^0.25.16":
- version "0.25.24"
- resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718"
- integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==
+"@sinclair/typebox@^0.27.8":
+ version "0.27.8"
+ resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e"
+ integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==
"@sinonjs/commons@^1.7.0":
version "1.8.6"
@@ -1852,23 +1904,23 @@
loader-utils "^2.0.0"
"@testing-library/dom@^8.5.0":
- version "8.20.0"
- resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.20.0.tgz#914aa862cef0f5e89b98cc48e3445c4c921010f6"
- integrity sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==
+ version "8.20.1"
+ resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.20.1.tgz#2e52a32e46fc88369eef7eef634ac2a192decd9f"
+ integrity sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==
dependencies:
"@babel/code-frame" "^7.10.4"
"@babel/runtime" "^7.12.5"
"@types/aria-query" "^5.0.1"
- aria-query "^5.0.0"
+ aria-query "5.1.3"
chalk "^4.1.0"
dom-accessibility-api "^0.5.9"
- lz-string "^1.4.4"
+ lz-string "^1.5.0"
pretty-format "^27.0.2"
"@testing-library/jest-dom@^5.14.1":
- version "5.16.5"
- resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz#3912846af19a29b2dbf32a6ae9c31ef52580074e"
- integrity sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==
+ version "5.17.0"
+ resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.17.0.tgz#5e97c8f9a15ccf4656da00fecab505728de81e0c"
+ integrity sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==
dependencies:
"@adobe/css-tools" "^4.0.1"
"@babel/runtime" "^7.9.2"
@@ -1983,9 +2035,9 @@
"@types/estree" "*"
"@types/eslint@*", "@types/eslint@^7.29.0 || ^8.4.1":
- version "8.40.2"
- resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.40.2.tgz#2833bc112d809677864a4b0e7d1de4f04d7dac2d"
- integrity sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==
+ version "8.44.0"
+ resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.0.tgz#55818eabb376e2272f77fbf5c96c43137c3c1e53"
+ integrity sha512-gsF+c/0XOguWgaOgvFs+xnnRqt9GwgTvIks36WpE6ueeI4KCEHHd8K/CKHqhOqrJKsYH8m27kRzQEvWXAwXUTw==
dependencies:
"@types/estree" "*"
"@types/json-schema" "*"
@@ -2032,6 +2084,11 @@
resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35"
integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==
+"@types/http-errors@*":
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.1.tgz#20172f9578b225f6c7da63446f56d4ce108d5a65"
+ integrity sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==
+
"@types/http-proxy@^1.17.8":
version "1.17.11"
resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.11.tgz#0ca21949a5588d55ac2b659b69035c84bd5da293"
@@ -2059,9 +2116,9 @@
"@types/istanbul-lib-report" "*"
"@types/jest@*":
- version "29.5.2"
- resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.2.tgz#86b4afc86e3a8f3005b297ed8a72494f89e6395b"
- integrity sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==
+ version "29.5.3"
+ resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.3.tgz#7a35dc0044ffb8b56325c6802a4781a626b05777"
+ integrity sha512-1Nq7YrO/vJE/FYnqYyw0FS8LdrjExSgIiHyKg7xPpn+yi8Q4huZryKnkJatN1ZRH89Kw2v33/8ZMB7DuZeSLlA==
dependencies:
expect "^29.0.0"
pretty-format "^29.0.0"
@@ -2095,14 +2152,14 @@
integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==
"@types/node@*":
- version "20.3.1"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe"
- integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==
+ version "20.4.4"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.4.4.tgz#c79c7cc22c9d0e97a7944954c9e663bcbd92b0cb"
+ integrity sha512-CukZhumInROvLq3+b5gLev+vgpsIqC2D0deQr/yS1WnxvmYLlJXZpaQrQiseMY+6xusl79E04UjWoqyr+t1/Ew==
"@types/node@^16.7.13":
- version "16.18.36"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.36.tgz#0db5d7efc4760d36d0d1d22c85d1a53accd5dc27"
- integrity sha512-8egDX8dE50XyXWH6C6PRCNkTP106DuUrvdrednFouDSmCi7IOvrqr0frznfZaHifHH/3aq/7a7v9N4wdXMqhBQ==
+ version "16.18.39"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.39.tgz#aa39a1a87a40ef6098ee69689a1acb0c1b034832"
+ integrity sha512-8q9ZexmdYYyc5/cfujaXb4YOucpQxAV4RMG0himLyDUOEr8Mr79VrqsFI+cQ2M2h89YIuy95lbxuYjxT4Hk4kQ==
"@types/parse-json@^4.0.0":
version "4.0.0"
@@ -2135,16 +2192,16 @@
integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==
"@types/react-dom@^18.0.0":
- version "18.2.5"
- resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.5.tgz#5c5f13548bda23cd98f50ca4a59107238bfe18f3"
- integrity sha512-sRQsOS/sCLnpQhR4DSKGTtWFE3FZjpQa86KPVbhUqdYMRZ9FEFcfAytKhR/vUG2rH1oFbOOej6cuD7MFSobDRQ==
+ version "18.2.7"
+ resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.7.tgz#67222a08c0a6ae0a0da33c3532348277c70abb63"
+ integrity sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==
dependencies:
"@types/react" "*"
"@types/react@*", "@types/react@^18.0.0":
- version "18.2.12"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.12.tgz#95d584338610b78bb9ba0415e3180fb03debdf97"
- integrity sha512-ndmBMLCgn38v3SntMeoJaIrO6tGHYKMEBohCUmw8HoLLQdRMOIGXfeYaBTLe2lsFaSB3MOK1VXscYFnmLtTSmw==
+ version "18.2.15"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.15.tgz#14792b35df676c20ec3cf595b262f8c615a73066"
+ integrity sha512-oEjE7TQt1fFTFSbf8kkNuc798ahTUzn3Le67/PWjE8MAfYAD/qB7O8hSTcromLFqHCt9bcdOg5GXMokzTjJ5SA==
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
@@ -2188,10 +2245,11 @@
"@types/express" "*"
"@types/serve-static@*", "@types/serve-static@^1.13.10":
- version "1.15.1"
- resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.1.tgz#86b1753f0be4f9a1bee68d459fcda5be4ea52b5d"
- integrity sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==
+ version "1.15.2"
+ resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.2.tgz#3e5419ecd1e40e7405d34093f10befb43f63381a"
+ integrity sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==
dependencies:
+ "@types/http-errors" "*"
"@types/mime" "*"
"@types/node" "*"
@@ -2207,10 +2265,15 @@
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c"
integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==
+"@types/stylis@^4.0.2":
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/@types/stylis/-/stylis-4.2.0.tgz#199a3f473f0c3a6f6e4e1b17cdbc967f274bdc6b"
+ integrity sha512-n4sx2bqL0mW1tvDf/loQ+aMX7GQD3lc3fkCMC55VFNDu/vBOabO+LTIeXKM14xK0ppk5TUGcWRjiSpIlUpghKw==
+
"@types/testing-library__jest-dom@^5.9.1":
- version "5.14.6"
- resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.6.tgz#4887f6e1af11215428ab02777873bcede98a53b0"
- integrity sha512-FkHXCb+ikSoUP4Y4rOslzTdX5sqYwMxfefKh1GmZ8ce1GOkEHntSp6b5cGadmNfp5e4BMEWOMx+WSKd5/MqlDA==
+ version "5.14.8"
+ resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.8.tgz#b32090a01c29040461fb7fa10a82400f216a4b93"
+ integrity sha512-NRfJE9Cgpmu4fx716q9SYmU4jxxhYRU1BQo239Txt/9N3EC745XZX1Yl7h/SBIDlo1ANVOCRB4YDXjaQdoKCHQ==
dependencies:
"@types/jest" "*"
@@ -2246,94 +2309,94 @@
"@types/yargs-parser" "*"
"@typescript-eslint/eslint-plugin@^5.5.0":
- version "5.59.11"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.11.tgz#8d466aa21abea4c3f37129997b198d141f09e76f"
- integrity sha512-XxuOfTkCUiOSyBWIvHlUraLw/JT/6Io1365RO6ZuI88STKMavJZPNMU0lFcUTeQXEhHiv64CbxYxBNoDVSmghg==
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db"
+ integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==
dependencies:
"@eslint-community/regexpp" "^4.4.0"
- "@typescript-eslint/scope-manager" "5.59.11"
- "@typescript-eslint/type-utils" "5.59.11"
- "@typescript-eslint/utils" "5.59.11"
+ "@typescript-eslint/scope-manager" "5.62.0"
+ "@typescript-eslint/type-utils" "5.62.0"
+ "@typescript-eslint/utils" "5.62.0"
debug "^4.3.4"
- grapheme-splitter "^1.0.4"
+ graphemer "^1.4.0"
ignore "^5.2.0"
natural-compare-lite "^1.4.0"
semver "^7.3.7"
tsutils "^3.21.0"
"@typescript-eslint/experimental-utils@^5.0.0":
- version "5.59.11"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.59.11.tgz#9f95e09313a9f96457006b0b8ed43c2e68eb8876"
- integrity sha512-GkQGV0UF/V5Ra7gZMBmiD1WrYUFOJNvCZs+XQnUyJoxmqfWMXVNyB2NVCPRKefoQcpvTv9UpJyfCvsJFs8NzzQ==
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz#14559bf73383a308026b427a4a6129bae2146741"
+ integrity sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==
dependencies:
- "@typescript-eslint/utils" "5.59.11"
+ "@typescript-eslint/utils" "5.62.0"
"@typescript-eslint/parser@^5.5.0":
- version "5.59.11"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.11.tgz#af7d4b7110e3068ce0b97550736de455e4250103"
- integrity sha512-s9ZF3M+Nym6CAZEkJJeO2TFHHDsKAM3ecNkLuH4i4s8/RCPnF5JRip2GyviYkeEAcwGMJxkqG9h2dAsnA1nZpA==
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7"
+ integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==
dependencies:
- "@typescript-eslint/scope-manager" "5.59.11"
- "@typescript-eslint/types" "5.59.11"
- "@typescript-eslint/typescript-estree" "5.59.11"
+ "@typescript-eslint/scope-manager" "5.62.0"
+ "@typescript-eslint/types" "5.62.0"
+ "@typescript-eslint/typescript-estree" "5.62.0"
debug "^4.3.4"
-"@typescript-eslint/scope-manager@5.59.11":
- version "5.59.11"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.11.tgz#5d131a67a19189c42598af9fb2ea1165252001ce"
- integrity sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q==
+"@typescript-eslint/scope-manager@5.62.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c"
+ integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==
dependencies:
- "@typescript-eslint/types" "5.59.11"
- "@typescript-eslint/visitor-keys" "5.59.11"
+ "@typescript-eslint/types" "5.62.0"
+ "@typescript-eslint/visitor-keys" "5.62.0"
-"@typescript-eslint/type-utils@5.59.11":
- version "5.59.11"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.11.tgz#5eb67121808a84cb57d65a15f48f5bdda25f2346"
- integrity sha512-LZqVY8hMiVRF2a7/swmkStMYSoXMFlzL6sXV6U/2gL5cwnLWQgLEG8tjWPpaE4rMIdZ6VKWwcffPlo1jPfk43g==
+"@typescript-eslint/type-utils@5.62.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a"
+ integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==
dependencies:
- "@typescript-eslint/typescript-estree" "5.59.11"
- "@typescript-eslint/utils" "5.59.11"
+ "@typescript-eslint/typescript-estree" "5.62.0"
+ "@typescript-eslint/utils" "5.62.0"
debug "^4.3.4"
tsutils "^3.21.0"
-"@typescript-eslint/types@5.59.11":
- version "5.59.11"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.11.tgz#1a9018fe3c565ba6969561f2a49f330cf1fe8db1"
- integrity sha512-epoN6R6tkvBYSc+cllrz+c2sOFWkbisJZWkOE+y3xHtvYaOE6Wk6B8e114McRJwFRjGvYdJwLXQH5c9osME/AA==
+"@typescript-eslint/types@5.62.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f"
+ integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==
-"@typescript-eslint/typescript-estree@5.59.11":
- version "5.59.11"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.11.tgz#b2caaa31725e17c33970c1197bcd54e3c5f42b9f"
- integrity sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA==
+"@typescript-eslint/typescript-estree@5.62.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b"
+ integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==
dependencies:
- "@typescript-eslint/types" "5.59.11"
- "@typescript-eslint/visitor-keys" "5.59.11"
+ "@typescript-eslint/types" "5.62.0"
+ "@typescript-eslint/visitor-keys" "5.62.0"
debug "^4.3.4"
globby "^11.1.0"
is-glob "^4.0.3"
semver "^7.3.7"
tsutils "^3.21.0"
-"@typescript-eslint/utils@5.59.11", "@typescript-eslint/utils@^5.58.0":
- version "5.59.11"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.11.tgz#9dbff49dc80bfdd9289f9f33548f2e8db3c59ba1"
- integrity sha512-didu2rHSOMUdJThLk4aZ1Or8IcO3HzCw/ZvEjTTIfjIrcdd5cvSIwwDy2AOlE7htSNp7QIZ10fLMyRCveesMLg==
+"@typescript-eslint/utils@5.62.0", "@typescript-eslint/utils@^5.58.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86"
+ integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==
dependencies:
"@eslint-community/eslint-utils" "^4.2.0"
"@types/json-schema" "^7.0.9"
"@types/semver" "^7.3.12"
- "@typescript-eslint/scope-manager" "5.59.11"
- "@typescript-eslint/types" "5.59.11"
- "@typescript-eslint/typescript-estree" "5.59.11"
+ "@typescript-eslint/scope-manager" "5.62.0"
+ "@typescript-eslint/types" "5.62.0"
+ "@typescript-eslint/typescript-estree" "5.62.0"
eslint-scope "^5.1.1"
semver "^7.3.7"
-"@typescript-eslint/visitor-keys@5.59.11":
- version "5.59.11"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.11.tgz#dca561ddad169dc27d62396d64f45b2d2c3ecc56"
- integrity sha512-KGYniTGG3AMTuKF9QBD7EIrvufkB6O6uX3knP73xbKLMpH+QRPcgnCxjWXSHjMRuOxFLovljqQgQpR0c7GvjoA==
+"@typescript-eslint/visitor-keys@5.62.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e"
+ integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==
dependencies:
- "@typescript-eslint/types" "5.59.11"
+ "@typescript-eslint/types" "5.62.0"
eslint-visitor-keys "^3.3.0"
"@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5":
@@ -2508,10 +2571,10 @@ acorn@^7.1.1:
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
-acorn@^8.2.4, acorn@^8.7.1, acorn@^8.8.0, acorn@^8.8.2:
- version "8.9.0"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59"
- integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==
+acorn@^8.2.4, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0:
+ version "8.10.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5"
+ integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
address@^1.0.1, address@^1.1.2:
version "1.2.2"
@@ -2643,10 +2706,17 @@ argparse@^2.0.1:
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
+aria-query@5.1.3:
+ version "5.1.3"
+ resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e"
+ integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==
+ dependencies:
+ deep-equal "^2.0.5"
+
aria-query@^5.0.0, aria-query@^5.1.3:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.2.1.tgz#bc285d9d654d1df121bcd0c134880d415ca67c15"
- integrity sha512-7uFg4b+lETFgdaJyETnILsXgnnzVnkHcgRbwbPwevm5x/LmUlt3MjczMRe1zg824iBgXZNRPTBftNYyRSKLp2g==
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e"
+ integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==
dependencies:
dequal "^2.0.3"
@@ -2668,7 +2738,7 @@ array-flatten@^2.1.2:
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
-array-includes@^3.1.5, array-includes@^3.1.6:
+array-includes@^3.1.6:
version "3.1.6"
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f"
integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==
@@ -2726,6 +2796,18 @@ array.prototype.tosorted@^1.1.1:
es-shim-unscopables "^1.0.0"
get-intrinsic "^1.1.3"
+arraybuffer.prototype.slice@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz#9b5ea3868a6eebc30273da577eb888381c0044bb"
+ integrity sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==
+ dependencies:
+ array-buffer-byte-length "^1.0.0"
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ get-intrinsic "^1.2.1"
+ is-array-buffer "^3.0.2"
+ is-shared-array-buffer "^1.0.2"
+
asap@~2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
@@ -2839,29 +2921,29 @@ babel-plugin-named-asset-import@^0.3.8:
resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz#6b7fa43c59229685368683c28bc9734f24524cc2"
integrity sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==
-babel-plugin-polyfill-corejs2@^0.4.3:
- version "0.4.3"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz#75044d90ba5043a5fb559ac98496f62f3eb668fd"
- integrity sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==
+babel-plugin-polyfill-corejs2@^0.4.4:
+ version "0.4.5"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c"
+ integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==
dependencies:
- "@babel/compat-data" "^7.17.7"
- "@babel/helper-define-polyfill-provider" "^0.4.0"
- semver "^6.1.1"
+ "@babel/compat-data" "^7.22.6"
+ "@babel/helper-define-polyfill-provider" "^0.4.2"
+ semver "^6.3.1"
-babel-plugin-polyfill-corejs3@^0.8.1:
- version "0.8.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz#39248263c38191f0d226f928d666e6db1b4b3a8a"
- integrity sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==
+babel-plugin-polyfill-corejs3@^0.8.2:
+ version "0.8.3"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz#b4f719d0ad9bb8e0c23e3e630c0c8ec6dd7a1c52"
+ integrity sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.4.0"
- core-js-compat "^3.30.1"
+ "@babel/helper-define-polyfill-provider" "^0.4.2"
+ core-js-compat "^3.31.0"
-babel-plugin-polyfill-regenerator@^0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz#e7344d88d9ef18a3c47ded99362ae4a757609380"
- integrity sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==
+babel-plugin-polyfill-regenerator@^0.5.1:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326"
+ integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.4.0"
+ "@babel/helper-define-polyfill-provider" "^0.4.2"
babel-plugin-transform-react-remove-prop-types@^0.4.24:
version "0.4.24"
@@ -3011,7 +3093,7 @@ browser-process-hrtime@^1.0.0:
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
-browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.18.1, browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.21.5:
+browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.18.1, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.21.9:
version "4.21.9"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635"
integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==
@@ -3084,6 +3166,11 @@ camelcase@^6.2.0, camelcase@^6.2.1:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
+camelize@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.1.tgz#89b7e16884056331a35d6b5ad064332c91daa6c3"
+ integrity sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==
+
caniuse-api@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
@@ -3095,9 +3182,18 @@ caniuse-api@^3.0.0:
lodash.uniq "^4.5.0"
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001503:
- version "1.0.30001503"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001503.tgz#88b6ff1b2cf735f1f3361dc1a15b59f0561aa398"
- integrity sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw==
+ version "1.0.30001517"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz#90fabae294215c3495807eb24fc809e11dc2f0a8"
+ integrity sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==
+
+capital-case@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669"
+ integrity sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==
+ dependencies:
+ no-case "^3.0.4"
+ tslib "^2.0.3"
+ upper-case-first "^2.0.2"
case-sensitive-paths-webpack-plugin@^2.4.0:
version "2.4.0"
@@ -3129,6 +3225,24 @@ chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
+change-case@^4.1.2:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12"
+ integrity sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==
+ dependencies:
+ camel-case "^4.1.2"
+ capital-case "^1.0.4"
+ constant-case "^3.0.4"
+ dot-case "^3.0.4"
+ header-case "^2.0.4"
+ no-case "^3.0.4"
+ param-case "^3.0.4"
+ pascal-case "^3.1.2"
+ path-case "^3.0.4"
+ sentence-case "^3.0.4"
+ snake-case "^3.0.4"
+ tslib "^2.0.3"
+
char-regex@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
@@ -3144,7 +3258,7 @@ check-types@^11.1.1:
resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.2.2.tgz#7afc0b6a860d686885062f2dba888ba5710335b4"
integrity sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==
-chokidar@^3.4.2, chokidar@^3.5.3:
+chokidar@^3.4.0, chokidar@^3.4.2, chokidar@^3.5.3:
version "3.5.3"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
@@ -3205,9 +3319,9 @@ coa@^2.0.2:
q "^1.1.2"
collect-v8-coverage@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59"
- integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9"
+ integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==
color-convert@^1.9.0:
version "1.9.3"
@@ -3233,6 +3347,11 @@ color-name@~1.1.4:
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
+color2k@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/color2k/-/color2k-2.0.2.tgz#ac2b4aea11c822a6bcb70c768b5a289f4fffcebb"
+ integrity sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==
+
colord@^2.9.1:
version "2.9.3"
resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43"
@@ -3255,7 +3374,7 @@ commander@^2.20.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
-commander@^4.0.0:
+commander@^4.0.0, commander@^4.0.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
@@ -3320,6 +3439,15 @@ connect-history-api-fallback@^2.0.0:
resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8"
integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==
+constant-case@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-3.0.4.tgz#3b84a9aeaf4cf31ec45e6bf5de91bdfb0589faf1"
+ integrity sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==
+ dependencies:
+ no-case "^3.0.4"
+ tslib "^2.0.3"
+ upper-case "^2.0.2"
+
content-disposition@0.5.4:
version "0.5.4"
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe"
@@ -3332,7 +3460,7 @@ content-type@~1.0.4:
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
-convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
+convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
version "1.9.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
@@ -3347,22 +3475,22 @@ cookie@0.5.0:
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b"
integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==
-core-js-compat@^3.30.1, core-js-compat@^3.30.2:
- version "3.31.0"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.0.tgz#4030847c0766cc0e803dcdfb30055d7ef2064bf1"
- integrity sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==
+core-js-compat@^3.31.0:
+ version "3.31.1"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.1.tgz#5084ad1a46858df50ff89ace152441a63ba7aae0"
+ integrity sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA==
dependencies:
- browserslist "^4.21.5"
+ browserslist "^4.21.9"
core-js-pure@^3.23.3:
- version "3.31.0"
- resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.31.0.tgz#052fd9e82fbaaf86457f5db1fadcd06f15966ff2"
- integrity sha512-/AnE9Y4OsJZicCzIe97JP5XoPKQJfTuEG43aEVLFJGOJpyqELod+pE6LEl63DfG1Mp8wX97LDaDpy1GmLEUxlg==
+ version "3.31.1"
+ resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.31.1.tgz#73d154958881873bc19381df80bddb20c8d0cdb5"
+ integrity sha512-w+C62kvWti0EPs4KPMCMVv9DriHSXfQOCQ94bGGBiEW5rrbtt/Rz8n5Krhfw9cpFyzXBjf3DB3QnPdEzGDY4Fw==
core-js@^3.19.2:
- version "3.31.0"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.31.0.tgz#4471dd33e366c79d8c0977ed2d940821719db344"
- integrity sha512-NIp2TQSGfR6ba5aalZD+ZQ1fSxGhDo/s1w0nx3RYzf2pnJxt7YynxFlFScP6eV7+GZsKO95NSjGxyJsU3DZgeQ==
+ version "3.31.1"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.31.1.tgz#f2b0eea9be9da0def2c5fece71064a7e5d687653"
+ integrity sha512-2sKLtfq1eFST7l7v62zaqXacPc7uG8ZAya8ogijLhTtaKNcpzpB4TMoTw2Si+8GYKRwFPMMtUT0263QFWFfqyQ==
core-util-is@~1.0.0:
version "1.0.3"
@@ -3412,10 +3540,15 @@ css-blank-pseudo@^3.0.3:
dependencies:
postcss-selector-parser "^6.0.9"
+css-color-keywords@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05"
+ integrity sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==
+
css-declaration-sorter@^6.3.1:
- version "6.4.0"
- resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz#630618adc21724484b3e9505bce812def44000ad"
- integrity sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==
+ version "6.4.1"
+ resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz#28beac7c20bad7f1775be3a7129d7eae409a3a71"
+ integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==
css-has-pseudo@^3.0.4:
version "3.0.4"
@@ -3481,6 +3614,15 @@ css-select@^4.1.3:
domutils "^2.8.0"
nth-check "^2.0.1"
+css-to-react-native@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.2.0.tgz#cdd8099f71024e149e4f6fe17a7d46ecd55f1e32"
+ integrity sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==
+ dependencies:
+ camelize "^1.0.0"
+ css-color-keywords "^1.0.0"
+ postcss-value-parser "^4.0.2"
+
css-tree@1.0.0-alpha.37:
version "1.0.0-alpha.37"
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
@@ -3513,9 +3655,9 @@ css.escape@^1.5.1:
integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==
cssdb@^7.1.0:
- version "7.6.0"
- resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.6.0.tgz#beac8f7a5f676db62d3c33da517ef4c9eb008f8b"
- integrity sha512-Nna7rph8V0jC6+JBY4Vk4ndErUmfJfV6NJCaZdurL0omggabiy+QB2HCQtu5c/ACLZ0I7REv7A4QyPIoYzZx0w==
+ version "7.7.0"
+ resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.7.0.tgz#8a62f1c825c019134e7830729f050c29e3eca95e"
+ integrity sha512-1hN+I3r4VqSNQ+OmMXxYexnumbOONkSil0TWMebVXHtzYW4tRRPovUNHPHj2d4nrgOuYJ8Vs3XwvywsuwwXNNA==
cssesc@^3.0.0:
version "3.0.0"
@@ -3595,7 +3737,7 @@ cssstyle@^2.3.0:
dependencies:
cssom "~0.3.6"
-csstype@^3.0.2:
+csstype@^3.0.2, csstype@^3.1.2:
version "3.1.2"
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b"
integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
@@ -3645,7 +3787,31 @@ dedent@^0.7.0:
resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==
-deep-is@^0.1.3, deep-is@~0.1.3:
+deep-equal@^2.0.5:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.2.tgz#9b2635da569a13ba8e1cc159c2f744071b115daa"
+ integrity sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==
+ dependencies:
+ array-buffer-byte-length "^1.0.0"
+ call-bind "^1.0.2"
+ es-get-iterator "^1.1.3"
+ get-intrinsic "^1.2.1"
+ is-arguments "^1.1.1"
+ is-array-buffer "^3.0.2"
+ is-date-object "^1.0.5"
+ is-regex "^1.1.4"
+ is-shared-array-buffer "^1.0.2"
+ isarray "^2.0.5"
+ object-is "^1.1.5"
+ object-keys "^1.1.1"
+ object.assign "^4.1.4"
+ regexp.prototype.flags "^1.5.0"
+ side-channel "^1.0.4"
+ which-boxed-primitive "^1.0.2"
+ which-collection "^1.0.1"
+ which-typed-array "^1.1.9"
+
+deep-is@^0.1.3:
version "0.1.4"
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
@@ -3877,9 +4043,9 @@ ejs@^3.1.6:
jake "^10.8.5"
electron-to-chromium@^1.4.431:
- version "1.4.432"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.432.tgz#154a69d5ead974347f534aea4d28b03c7149fd7b"
- integrity sha512-yz3U/khQgAFT2HURJA3/F4fKIyO2r5eK09BQzBZFd6BvBSSaRuzKc2ZNBHtJcO75/EKiRYbVYJZ2RB0P4BuD2g==
+ version "1.4.469"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.469.tgz#c9cea85ab94031e239ca4ab03158726672d6f960"
+ integrity sha512-HRN9XQjElxJBrdDky5iiUUr3eDwXGTg6Cp4IV8MuNc8VqMkYSneSnIe6poFKx9PsNzkudCgaWCBVxwDqirwQWQ==
emittery@^0.10.2:
version "0.10.2"
@@ -3939,17 +4105,18 @@ error-stack-parser@^2.0.6:
stackframe "^1.3.4"
es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.20.4, es-abstract@^1.21.2:
- version "1.21.2"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff"
- integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==
+ version "1.22.1"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.1.tgz#8b4e5fc5cefd7f1660f0f8e1a52900dfbc9d9ccc"
+ integrity sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==
dependencies:
array-buffer-byte-length "^1.0.0"
+ arraybuffer.prototype.slice "^1.0.1"
available-typed-arrays "^1.0.5"
call-bind "^1.0.2"
es-set-tostringtag "^2.0.1"
es-to-primitive "^1.2.1"
function.prototype.name "^1.1.5"
- get-intrinsic "^1.2.0"
+ get-intrinsic "^1.2.1"
get-symbol-description "^1.0.0"
globalthis "^1.0.3"
gopd "^1.0.1"
@@ -3969,20 +4136,39 @@ es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.20.4, es-abstract@^1.21
object-inspect "^1.12.3"
object-keys "^1.1.1"
object.assign "^4.1.4"
- regexp.prototype.flags "^1.4.3"
+ regexp.prototype.flags "^1.5.0"
+ safe-array-concat "^1.0.0"
safe-regex-test "^1.0.0"
string.prototype.trim "^1.2.7"
string.prototype.trimend "^1.0.6"
string.prototype.trimstart "^1.0.6"
+ typed-array-buffer "^1.0.0"
+ typed-array-byte-length "^1.0.0"
+ typed-array-byte-offset "^1.0.0"
typed-array-length "^1.0.4"
unbox-primitive "^1.0.2"
- which-typed-array "^1.1.9"
+ which-typed-array "^1.1.10"
es-array-method-boxes-properly@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
+es-get-iterator@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6"
+ integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.3"
+ has-symbols "^1.0.3"
+ is-arguments "^1.1.1"
+ is-map "^2.0.2"
+ is-set "^2.0.2"
+ is-string "^1.0.7"
+ isarray "^2.0.5"
+ stop-iteration-iterator "^1.0.0"
+
es-module-lexer@^1.2.1:
version "1.3.0"
resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.0.tgz#6be9c9e0b4543a60cd166ff6f8b4e9dae0b0c16f"
@@ -4039,14 +4225,13 @@ escape-string-regexp@^4.0.0:
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
escodegen@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
- integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17"
+ integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==
dependencies:
esprima "^4.0.1"
estraverse "^5.2.0"
esutils "^2.0.2"
- optionator "^0.8.1"
optionalDependencies:
source-map "~0.6.1"
@@ -4150,9 +4335,9 @@ eslint-plugin-react-hooks@^4.3.0:
integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==
eslint-plugin-react@^7.27.1:
- version "7.32.2"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10"
- integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==
+ version "7.33.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.33.0.tgz#6c356fb0862fec2cd1b04426c669ea746e9b6eb3"
+ integrity sha512-qewL/8P34WkY8jAqdQxsiL82pDUeT7nhs8IsuXgfgnsEloKCT4miAV9N9kGtx7/KM9NH/NCGUE7Edt9iGxLXFw==
dependencies:
array-includes "^3.1.6"
array.prototype.flatmap "^1.3.1"
@@ -4167,7 +4352,7 @@ eslint-plugin-react@^7.27.1:
object.values "^1.1.6"
prop-types "^15.8.1"
resolve "^2.0.0-next.4"
- semver "^6.3.0"
+ semver "^6.3.1"
string.prototype.matchall "^4.0.8"
eslint-plugin-testing-library@^5.0.1:
@@ -4186,9 +4371,9 @@ eslint-scope@5.1.1, eslint-scope@^5.1.1:
estraverse "^4.1.1"
eslint-scope@^7.2.0:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b"
- integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==
+ version "7.2.1"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.1.tgz#936821d3462675f25a18ac5fd88a67cc15b393bd"
+ integrity sha512-CvefSOsDdaYYvxChovdrPo/ZGt8d5lrJWleAc1diXRKhHGiTYEI26cvo8Kle/wGnsizoCJjK73FMg1/IkIwiNA==
dependencies:
esrecurse "^4.3.0"
estraverse "^5.2.0"
@@ -4214,15 +4399,15 @@ eslint-webpack-plugin@^3.1.1:
normalize-path "^3.0.0"
schema-utils "^4.0.0"
-eslint@^8.3.0:
- version "8.42.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.42.0.tgz#7bebdc3a55f9ed7167251fe7259f75219cade291"
- integrity sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==
+eslint@^8.3.0, eslint@^8.45.0:
+ version "8.45.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.45.0.tgz#bab660f90d18e1364352c0a6b7c6db8edb458b78"
+ integrity sha512-pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw==
dependencies:
"@eslint-community/eslint-utils" "^4.2.0"
"@eslint-community/regexpp" "^4.4.0"
- "@eslint/eslintrc" "^2.0.3"
- "@eslint/js" "8.42.0"
+ "@eslint/eslintrc" "^2.1.0"
+ "@eslint/js" "8.44.0"
"@humanwhocodes/config-array" "^0.11.10"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
@@ -4234,7 +4419,7 @@ eslint@^8.3.0:
escape-string-regexp "^4.0.0"
eslint-scope "^7.2.0"
eslint-visitor-keys "^3.4.1"
- espree "^9.5.2"
+ espree "^9.6.0"
esquery "^1.4.2"
esutils "^2.0.2"
fast-deep-equal "^3.1.3"
@@ -4244,7 +4429,6 @@ eslint@^8.3.0:
globals "^13.19.0"
graphemer "^1.4.0"
ignore "^5.2.0"
- import-fresh "^3.0.0"
imurmurhash "^0.1.4"
is-glob "^4.0.0"
is-path-inside "^3.0.3"
@@ -4254,17 +4438,16 @@ eslint@^8.3.0:
lodash.merge "^4.6.2"
minimatch "^3.1.2"
natural-compare "^1.4.0"
- optionator "^0.9.1"
+ optionator "^0.9.3"
strip-ansi "^6.0.1"
- strip-json-comments "^3.1.0"
text-table "^0.2.0"
-espree@^9.5.2:
- version "9.5.2"
- resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b"
- integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==
+espree@^9.6.0:
+ version "9.6.1"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f"
+ integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
dependencies:
- acorn "^8.8.0"
+ acorn "^8.9.0"
acorn-jsx "^5.3.2"
eslint-visitor-keys "^3.4.1"
@@ -4353,15 +4536,16 @@ expect@^27.5.1:
jest-message-util "^27.5.1"
expect@^29.0.0:
- version "29.5.0"
- resolved "https://registry.yarnpkg.com/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7"
- integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/expect/-/expect-29.6.1.tgz#64dd1c8f75e2c0b209418f2b8d36a07921adfdf1"
+ integrity sha512-XEdDLonERCU1n9uR56/Stx9OqojaLAQtZf9PrCHH9Hl8YXiEIka3H4NXJ3NOIBmQJTg7+j7buh34PMHfJujc8g==
dependencies:
- "@jest/expect-utils" "^29.5.0"
+ "@jest/expect-utils" "^29.6.1"
+ "@types/node" "*"
jest-get-type "^29.4.3"
- jest-matcher-utils "^29.5.0"
- jest-message-util "^29.5.0"
- jest-util "^29.5.0"
+ jest-matcher-utils "^29.6.1"
+ jest-message-util "^29.6.1"
+ jest-util "^29.6.1"
express@^4.17.3:
version "4.18.2"
@@ -4406,9 +4590,9 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
fast-glob@^3.2.12, fast-glob@^3.2.9:
- version "3.2.12"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80"
- integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4"
+ integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==
dependencies:
"@nodelib/fs.stat" "^2.0.2"
"@nodelib/fs.walk" "^1.2.3"
@@ -4421,7 +4605,7 @@ fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0:
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
-fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
+fast-levenshtein@^2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
@@ -4618,6 +4802,11 @@ fs-monkey@^1.0.4:
resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.4.tgz#ee8c1b53d3fe8bb7e5d2c5c5dfc0168afdd2f747"
integrity sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==
+fs-readdir-recursive@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
+ integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==
+
fs.realpath@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
@@ -4658,7 +4847,7 @@ get-caller-file@^2.0.5:
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
-get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0:
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82"
integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==
@@ -4722,7 +4911,7 @@ glob@7.1.6:
once "^1.3.0"
path-is-absolute "^1.0.0"
-glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
+glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0:
version "7.2.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
@@ -4793,11 +4982,6 @@ graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4,
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
-grapheme-splitter@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e"
- integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
-
graphemer@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
@@ -4871,6 +5055,14 @@ he@^1.2.0:
resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
+header-case@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/header-case/-/header-case-2.0.4.tgz#5a42e63b55177349cf405beb8d775acabb92c063"
+ integrity sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==
+ dependencies:
+ capital-case "^1.0.4"
+ tslib "^2.0.3"
+
hoopy@^0.1.4:
version "0.1.4"
resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d"
@@ -4894,9 +5086,9 @@ html-encoding-sniffer@^2.0.1:
whatwg-encoding "^1.0.5"
html-entities@^2.1.0, html-entities@^2.3.2:
- version "2.3.6"
- resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.6.tgz#966391d58e5737c77bca4025e31721b496ab7454"
- integrity sha512-9o0+dcpIw2/HxkNuYKxSJUF/MMRZQECK4GnF+oQOmJ83yCVHTWgCH5aOXxK5bozNRmM8wtgryjHD3uloPBDEGw==
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.4.0.tgz#edd0cee70402584c8c76cc2c0556db09d1f45061"
+ integrity sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==
html-escaper@^2.0.0:
version "2.0.2"
@@ -5051,7 +5243,7 @@ immer@^9.0.7:
resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.21.tgz#1e025ea31a40f24fb064f1fef23e931496330176"
integrity sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==
-import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1:
+import-fresh@^3.1.0, import-fresh@^3.2.1:
version "3.3.0"
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
@@ -5100,7 +5292,7 @@ ini@^1.3.5:
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
-internal-slot@^1.0.3, internal-slot@^1.0.5:
+internal-slot@^1.0.3, internal-slot@^1.0.4, internal-slot@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986"
integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==
@@ -5119,6 +5311,14 @@ ipaddr.js@^2.0.1:
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f"
integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==
+is-arguments@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
+ integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==
+ dependencies:
+ call-bind "^1.0.2"
+ has-tostringtag "^1.0.0"
+
is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe"
@@ -5167,7 +5367,7 @@ is-core-module@^2.11.0, is-core-module@^2.9.0:
dependencies:
has "^1.0.3"
-is-date-object@^1.0.1:
+is-date-object@^1.0.1, is-date-object@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
@@ -5201,6 +5401,11 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
dependencies:
is-extglob "^2.1.1"
+is-map@^2.0.1, is-map@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127"
+ integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==
+
is-module@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
@@ -5261,6 +5466,11 @@ is-root@^2.1.0:
resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c"
integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==
+is-set@^2.0.1, is-set@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec"
+ integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==
+
is-shared-array-buffer@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
@@ -5288,21 +5498,22 @@ is-symbol@^1.0.2, is-symbol@^1.0.3:
has-symbols "^1.0.2"
is-typed-array@^1.1.10, is-typed-array@^1.1.9:
- version "1.1.10"
- resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f"
- integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==
+ version "1.1.12"
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a"
+ integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==
dependencies:
- available-typed-arrays "^1.0.5"
- call-bind "^1.0.2"
- for-each "^0.3.3"
- gopd "^1.0.1"
- has-tostringtag "^1.0.0"
+ which-typed-array "^1.1.11"
is-typedarray@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==
+is-weakmap@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2"
+ integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==
+
is-weakref@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
@@ -5310,6 +5521,14 @@ is-weakref@^1.0.2:
dependencies:
call-bind "^1.0.2"
+is-weakset@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d"
+ integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.1"
+
is-wsl@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
@@ -5476,15 +5695,15 @@ jest-diff@^27.5.1:
jest-get-type "^27.5.1"
pretty-format "^27.5.1"
-jest-diff@^29.5.0:
- version "29.5.0"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63"
- integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==
+jest-diff@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.6.1.tgz#13df6db0a89ee6ad93c747c75c85c70ba941e545"
+ integrity sha512-FsNCvinvl8oVxpNLttNQX7FAq7vR+gMDGj90tiP7siWw1UdakWUGqrylpsYrpvj908IYckm5Y0Q7azNAozU1Kg==
dependencies:
chalk "^4.0.0"
diff-sequences "^29.4.3"
jest-get-type "^29.4.3"
- pretty-format "^29.5.0"
+ pretty-format "^29.6.1"
jest-docblock@^27.5.1:
version "27.5.1"
@@ -5600,15 +5819,15 @@ jest-matcher-utils@^27.0.0, jest-matcher-utils@^27.5.1:
jest-get-type "^27.5.1"
pretty-format "^27.5.1"
-jest-matcher-utils@^29.5.0:
- version "29.5.0"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5"
- integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==
+jest-matcher-utils@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.6.1.tgz#6c60075d84655d6300c5d5128f46531848160b53"
+ integrity sha512-SLaztw9d2mfQQKHmJXKM0HCbl2PPVld/t9Xa6P9sgiExijviSp7TnZZpw2Fpt+OI3nwUO/slJbOfzfUMKKC5QA==
dependencies:
chalk "^4.0.0"
- jest-diff "^29.5.0"
+ jest-diff "^29.6.1"
jest-get-type "^29.4.3"
- pretty-format "^29.5.0"
+ pretty-format "^29.6.1"
jest-message-util@^27.5.1:
version "27.5.1"
@@ -5640,18 +5859,18 @@ jest-message-util@^28.1.3:
slash "^3.0.0"
stack-utils "^2.0.3"
-jest-message-util@^29.5.0:
- version "29.5.0"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e"
- integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==
+jest-message-util@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.6.1.tgz#d0b21d87f117e1b9e165e24f245befd2ff34ff8d"
+ integrity sha512-KoAW2zAmNSd3Gk88uJ56qXUWbFk787QKmjjJVOjtGFmmGSZgDBrlIL4AfQw1xyMYPNVD7dNInfIbur9B2rd/wQ==
dependencies:
"@babel/code-frame" "^7.12.13"
- "@jest/types" "^29.5.0"
+ "@jest/types" "^29.6.1"
"@types/stack-utils" "^2.0.0"
chalk "^4.0.0"
graceful-fs "^4.2.9"
micromatch "^4.0.4"
- pretty-format "^29.5.0"
+ pretty-format "^29.6.1"
slash "^3.0.0"
stack-utils "^2.0.3"
@@ -5818,12 +6037,12 @@ jest-util@^28.1.3:
graceful-fs "^4.2.9"
picomatch "^2.2.3"
-jest-util@^29.5.0:
- version "29.5.0"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f"
- integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==
+jest-util@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.6.1.tgz#c9e29a87a6edbf1e39e6dee2b4689b8a146679cb"
+ integrity sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==
dependencies:
- "@jest/types" "^29.5.0"
+ "@jest/types" "^29.6.1"
"@types/node" "*"
chalk "^4.0.0"
ci-info "^3.2.0"
@@ -5919,9 +6138,9 @@ jest@^27.4.3:
jest-cli "^27.5.1"
jiti@^1.18.2:
- version "1.18.2"
- resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.18.2.tgz#80c3ef3d486ebf2450d9335122b32d121f2a83cd"
- integrity sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==
+ version "1.19.1"
+ resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.19.1.tgz#fa99e4b76a23053e0e7cde098efe1704a14c16f1"
+ integrity sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
version "4.0.0"
@@ -6023,6 +6242,11 @@ json5@^2.1.2, json5@^2.2.0, json5@^2.2.2:
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
+jsonc-parser@^3.0.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76"
+ integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==
+
jsonfile@^6.0.1:
version "6.1.0"
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
@@ -6038,12 +6262,14 @@ jsonpointer@^5.0.0:
integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==
"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3:
- version "3.3.3"
- resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea"
- integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==
+ version "3.3.4"
+ resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz#b896535fed5b867650acce5a9bd4135ffc7b3bf9"
+ integrity sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==
dependencies:
- array-includes "^3.1.5"
- object.assign "^4.1.3"
+ array-includes "^3.1.6"
+ array.prototype.flat "^1.3.1"
+ object.assign "^4.1.4"
+ object.values "^1.1.6"
kind-of@^6.0.2:
version "6.0.3"
@@ -6093,14 +6319,6 @@ levn@^0.4.1:
prelude-ls "^1.2.1"
type-check "~0.4.0"
-levn@~0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
- integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==
- dependencies:
- prelude-ls "~1.1.2"
- type-check "~0.3.2"
-
lilconfig@^2.0.3, lilconfig@^2.0.5, lilconfig@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52"
@@ -6210,7 +6428,7 @@ lru-cache@^6.0.0:
dependencies:
yallist "^4.0.0"
-lz-string@^1.4.4:
+lz-string@^1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941"
integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==
@@ -6222,6 +6440,14 @@ magic-string@^0.25.0, magic-string@^0.25.7:
dependencies:
sourcemap-codec "^1.4.8"
+make-dir@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
+ integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
+ dependencies:
+ pify "^4.0.1"
+ semver "^5.6.0"
+
make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
@@ -6252,9 +6478,9 @@ media-typer@0.3.0:
integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==
memfs@^3.1.2, memfs@^3.4.3:
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.5.3.tgz#d9b40fe4f8d5788c5f895bda804cd0d9eeee9f3b"
- integrity sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.6.0.tgz#d7a2110f86f79dd950a8b6df6d57bc984aa185f6"
+ integrity sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==
dependencies:
fs-monkey "^1.0.4"
@@ -6427,9 +6653,9 @@ node-int64@^0.4.0:
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
node-releases@^2.0.12:
- version "2.0.12"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039"
- integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==
+ version "2.0.13"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d"
+ integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==
normalize-path@^3.0.0, normalize-path@~3.0.0:
version "3.0.0"
@@ -6468,9 +6694,9 @@ nth-check@^2.0.1:
boolbase "^1.0.0"
nwsapi@^2.2.0:
- version "2.2.5"
- resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.5.tgz#a52744c61b3889dd44b0a158687add39b8d935e2"
- integrity sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==
+ version "2.2.7"
+ resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30"
+ integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==
object-assign@^4.0.1, object-assign@^4.1.1:
version "4.1.1"
@@ -6487,12 +6713,20 @@ object-inspect@^1.12.3, object-inspect@^1.9.0:
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9"
integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
+object-is@^1.1.5:
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
+ integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+
object-keys@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
-object.assign@^4.1.3, object.assign@^4.1.4:
+object.assign@^4.1.4:
version "4.1.4"
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
@@ -6588,29 +6822,17 @@ open@^8.0.9, open@^8.4.0:
is-docker "^2.1.1"
is-wsl "^2.2.0"
-optionator@^0.8.1:
- version "0.8.3"
- resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
- integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
- dependencies:
- deep-is "~0.1.3"
- fast-levenshtein "~2.0.6"
- levn "~0.3.0"
- prelude-ls "~1.1.2"
- type-check "~0.3.2"
- word-wrap "~1.2.3"
-
-optionator@^0.9.1:
- version "0.9.1"
- resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
- integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
+optionator@^0.9.3:
+ version "0.9.3"
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64"
+ integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==
dependencies:
+ "@aashutoshrathi/word-wrap" "^1.2.3"
deep-is "^0.1.3"
fast-levenshtein "^2.0.6"
levn "^0.4.1"
prelude-ls "^1.2.1"
type-check "^0.4.0"
- word-wrap "^1.2.3"
p-limit@^2.0.0, p-limit@^2.2.0:
version "2.3.0"
@@ -6703,6 +6925,14 @@ pascal-case@^3.1.2:
no-case "^3.0.4"
tslib "^2.0.3"
+path-case@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/path-case/-/path-case-3.0.4.tgz#9168645334eb942658375c56f80b4c0cb5f82c6f"
+ integrity sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==
+ dependencies:
+ dot-case "^3.0.4"
+ tslib "^2.0.3"
+
path-exists@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
@@ -6763,10 +6993,15 @@ pify@^2.3.0:
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
+pify@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
+ integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
+
pirates@^4.0.1, pirates@^4.0.4:
- version "4.0.5"
- resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b"
- integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==
+ version "4.0.6"
+ resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9"
+ integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==
pkg-dir@^4.1.0, pkg-dir@^4.2.0:
version "4.2.0"
@@ -7312,7 +7547,7 @@ postcss-unique-selectors@^5.1.1:
dependencies:
postcss-selector-parser "^6.0.5"
-postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
+postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
@@ -7326,9 +7561,9 @@ postcss@^7.0.35:
source-map "^0.6.1"
postcss@^8.3.5, postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.4:
- version "8.4.24"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.24.tgz#f714dba9b2284be3cc07dbd2fc57ee4dc972d2df"
- integrity sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==
+ version "8.4.27"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.27.tgz#234d7e4b72e34ba5a92c29636734349e0d9c3057"
+ integrity sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==
dependencies:
nanoid "^3.3.6"
picocolors "^1.0.0"
@@ -7339,10 +7574,10 @@ prelude-ls@^1.2.1:
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
-prelude-ls@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
- integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==
+prettier@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.0.tgz#e7b19f691245a21d618c68bc54dc06122f6105ae"
+ integrity sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==
pretty-bytes@^5.3.0, pretty-bytes@^5.4.1:
version "5.6.0"
@@ -7376,12 +7611,12 @@ pretty-format@^28.1.3:
ansi-styles "^5.0.0"
react-is "^18.0.0"
-pretty-format@^29.0.0, pretty-format@^29.5.0:
- version "29.5.0"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a"
- integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==
+pretty-format@^29.0.0, pretty-format@^29.6.1:
+ version "29.6.1"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.6.1.tgz#ec838c288850b7c4f9090b867c2d4f4edbfb0f3e"
+ integrity sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==
dependencies:
- "@jest/schemas" "^29.4.3"
+ "@jest/schemas" "^29.6.0"
ansi-styles "^5.0.0"
react-is "^18.0.0"
@@ -7700,7 +7935,7 @@ regex-parser@^2.2.11:
resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58"
integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==
-regexp.prototype.flags@^1.4.3:
+regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb"
integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==
@@ -7966,15 +8201,20 @@ selfsigned@^2.1.1:
dependencies:
node-forge "^1"
-semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
- version "6.3.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
- integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
+semver@^5.6.0:
+ version "5.7.2"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
+ integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
+
+semver@^6.0.0, semver@^6.3.0, semver@^6.3.1:
+ version "6.3.1"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
+ integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8:
- version "7.5.2"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb"
- integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==
+ version "7.5.4"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
+ integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
dependencies:
lru-cache "^6.0.0"
@@ -7997,6 +8237,15 @@ send@0.18.0:
range-parser "~1.2.1"
statuses "2.0.1"
+sentence-case@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-3.0.4.tgz#3645a7b8c117c787fde8702056225bb62a45131f"
+ integrity sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==
+ dependencies:
+ no-case "^3.0.4"
+ tslib "^2.0.3"
+ upper-case-first "^2.0.2"
+
serialize-javascript@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
@@ -8044,6 +8293,11 @@ setprototypeof@1.2.0:
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424"
integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
+shallowequal@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
+ integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==
+
shebang-command@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
@@ -8080,6 +8334,11 @@ sisteransi@^1.0.5:
resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
+slash@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
+ integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
+
slash@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
@@ -8090,6 +8349,14 @@ slash@^4.0.0:
resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7"
integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==
+snake-case@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c"
+ integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==
+ dependencies:
+ dot-case "^3.0.4"
+ tslib "^2.0.3"
+
sockjs@^0.3.24:
version "0.3.24"
resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce"
@@ -8203,6 +8470,13 @@ statuses@2.0.1:
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
+stop-iteration-iterator@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4"
+ integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==
+ dependencies:
+ internal-slot "^1.0.4"
+
string-length@^4.0.1:
version "4.0.2"
resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a"
@@ -8338,16 +8612,61 @@ strip-indent@^3.0.0:
dependencies:
min-indent "^1.0.0"
-strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
+strip-json-comments@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
+style-dictionary-utils@^1.6.1:
+ version "1.6.1"
+ resolved "https://registry.yarnpkg.com/style-dictionary-utils/-/style-dictionary-utils-1.6.1.tgz#e5da1975250d3c2152287f3de53f583ebcf63100"
+ integrity sha512-sdkdJ/aaIoVINmop4Y2z2BiOypdH/ki4chfBqvaBHn2tQAdw0Y3Ho5sTnnrG5weKRif0ZVlDHu7WIsBHsfs01w==
+
+style-dictionary@^3.8.0:
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/style-dictionary/-/style-dictionary-3.8.0.tgz#7cb8d64360c53431f768d44def665f61e971a73e"
+ integrity sha512-wHlB/f5eO3mDcYv6WtOz6gvQC477jBKrwuIXe+PtHskTCBsJdAOvL8hCquczJxDui2TnwpeNE+2msK91JJomZg==
+ dependencies:
+ chalk "^4.0.0"
+ change-case "^4.1.2"
+ commander "^8.3.0"
+ fs-extra "^10.0.0"
+ glob "^7.2.0"
+ json5 "^2.2.2"
+ jsonc-parser "^3.0.0"
+ lodash "^4.17.15"
+ tinycolor2 "^1.4.1"
+
style-loader@^3.3.1:
version "3.3.3"
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.3.tgz#bba8daac19930169c0c9c96706749a597ae3acff"
integrity sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==
+styled-components@^6.0.5:
+ version "6.0.5"
+ resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-6.0.5.tgz#a2588432507a57d946bfb6feb2ebd13fce447bd9"
+ integrity sha512-308zi5o7LrA9cVaP4nPD0TaUpOjGPePkAUFb/OGB0xRI3I9ozpW5UyASvRVi9wJcYASG+Y3mLDLDUZC7nqzimw==
+ dependencies:
+ "@babel/cli" "^7.21.0"
+ "@babel/core" "^7.21.0"
+ "@babel/helper-module-imports" "^7.18.6"
+ "@babel/plugin-external-helpers" "^7.18.6"
+ "@babel/plugin-proposal-class-properties" "^7.18.6"
+ "@babel/plugin-proposal-object-rest-spread" "^7.20.7"
+ "@babel/preset-env" "^7.20.2"
+ "@babel/preset-react" "^7.18.6"
+ "@babel/preset-typescript" "^7.21.0"
+ "@babel/traverse" "^7.21.2"
+ "@emotion/is-prop-valid" "^1.2.1"
+ "@emotion/unitless" "^0.8.0"
+ "@types/stylis" "^4.0.2"
+ css-to-react-native "^3.2.0"
+ csstype "^3.1.2"
+ postcss "^8.4.23"
+ shallowequal "^1.1.0"
+ stylis "^4.3.0"
+ tslib "^2.5.0"
+
stylehacks@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9"
@@ -8356,10 +8675,15 @@ stylehacks@^5.1.1:
browserslist "^4.21.4"
postcss-selector-parser "^6.0.4"
+stylis@^4.3.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.3.0.tgz#abe305a669fc3d8777e10eefcfc73ad861c5588c"
+ integrity sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==
+
sucrase@^3.32.0:
- version "3.32.0"
- resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.32.0.tgz#c4a95e0f1e18b6847127258a75cf360bc568d4a7"
- integrity sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==
+ version "3.34.0"
+ resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.34.0.tgz#1e0e2d8fcf07f8b9c3569067d92fbd8690fb576f"
+ integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==
dependencies:
"@jridgewell/gen-mapping" "^0.3.2"
commander "^4.0.0"
@@ -8446,9 +8770,9 @@ symbol-tree@^3.2.4:
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
tailwindcss@^3.0.2:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.3.2.tgz#2f9e35d715fdf0bbf674d90147a0684d7054a2d3"
- integrity sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.3.3.tgz#90da807393a2859189e48e9e7000e6880a736daf"
+ integrity sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==
dependencies:
"@alloc/quick-lru" "^5.2.0"
arg "^5.0.2"
@@ -8470,7 +8794,6 @@ tailwindcss@^3.0.2:
postcss-load-config "^4.0.1"
postcss-nested "^6.0.1"
postcss-selector-parser "^6.0.11"
- postcss-value-parser "^4.2.0"
resolve "^1.22.2"
sucrase "^3.32.0"
@@ -8519,9 +8842,9 @@ terser-webpack-plugin@^5.2.5, terser-webpack-plugin@^5.3.7:
terser "^5.16.8"
terser@^5.0.0, terser@^5.10.0, terser@^5.16.8:
- version "5.18.0"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.18.0.tgz#dc811fb8e3481a875d545bda247c8730ee4dc76b"
- integrity sha512-pdL757Ig5a0I+owA42l6tIuEycRuM7FPY4n62h44mRLRfnOxJkkOHd6i89dOpwZlpF6JXBwaAHF6yWzFrt+QyA==
+ version "5.19.2"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.19.2.tgz#bdb8017a9a4a8de4663a7983f45c506534f9234e"
+ integrity sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==
dependencies:
"@jridgewell/source-map" "^0.3.3"
acorn "^8.8.2"
@@ -8566,6 +8889,11 @@ thunky@^1.0.2:
resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d"
integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
+tinycolor2@^1.4.1:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e"
+ integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==
+
tmpl@1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc"
@@ -8638,9 +8966,14 @@ tslib@^1.8.1:
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
tslib@^2.0.3:
- version "2.5.3"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913"
- integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3"
+ integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==
+
+tslib@^2.5.0:
+ version "2.6.1"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410"
+ integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==
tsutils@^3.21.0:
version "3.21.0"
@@ -8656,13 +8989,6 @@ type-check@^0.4.0, type-check@~0.4.0:
dependencies:
prelude-ls "^1.2.1"
-type-check@~0.3.2:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
- integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==
- dependencies:
- prelude-ls "~1.1.2"
-
type-detect@4.0.8:
version "4.0.8"
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
@@ -8691,6 +9017,36 @@ type-is@~1.6.18:
media-typer "0.3.0"
mime-types "~2.1.24"
+typed-array-buffer@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60"
+ integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.1"
+ is-typed-array "^1.1.10"
+
+typed-array-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0"
+ integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==
+ dependencies:
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ has-proto "^1.0.1"
+ is-typed-array "^1.1.10"
+
+typed-array-byte-offset@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b"
+ integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ has-proto "^1.0.1"
+ is-typed-array "^1.1.10"
+
typed-array-length@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
@@ -8785,6 +9141,20 @@ update-browserslist-db@^1.0.11:
escalade "^3.1.1"
picocolors "^1.0.0"
+upper-case-first@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-2.0.2.tgz#992c3273f882abd19d1e02894cc147117f844324"
+ integrity sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==
+ dependencies:
+ tslib "^2.0.3"
+
+upper-case@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-2.0.2.tgz#d89810823faab1df1549b7d97a76f8662bae6f7a"
+ integrity sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==
+ dependencies:
+ tslib "^2.0.3"
+
uri-js@^4.2.2:
version "4.4.1"
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
@@ -8977,9 +9347,9 @@ webpack-sources@^3.2.3:
integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
webpack@^5.64.4:
- version "5.87.0"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.87.0.tgz#df8a9c094c6037f45e0d77598f9e59d33ca3a98c"
- integrity sha512-GOu1tNbQ7p1bDEoFRs2YPcfyGs8xq52yyPBZ3m2VGnXGtV9MxjrkABHm4V9Ia280OefsSLzvbVoXcfLxjKY/Iw==
+ version "5.88.2"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.2.tgz#f62b4b842f1c6ff580f3fcb2ed4f0b579f4c210e"
+ integrity sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==
dependencies:
"@types/eslint-scope" "^3.7.3"
"@types/estree" "^1.0.0"
@@ -9028,9 +9398,9 @@ whatwg-encoding@^1.0.5:
iconv-lite "0.4.24"
whatwg-fetch@^3.6.2:
- version "3.6.2"
- resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c"
- integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==
+ version "3.6.17"
+ resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.17.tgz#009bbbfc122b227b74ba1ff31536b3a1a0e0e212"
+ integrity sha512-c4ghIvG6th0eudYwKZY5keb81wtFz9/WeAHAoy8+r18kcWlitUIrmGFQ2rWEl4UCKUilD3zCLHOIPheHx5ypRQ==
whatwg-mimetype@^2.3.0:
version "2.3.0"
@@ -9066,17 +9436,26 @@ which-boxed-primitive@^1.0.2:
is-string "^1.0.5"
is-symbol "^1.0.3"
-which-typed-array@^1.1.9:
- version "1.1.9"
- resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6"
- integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==
+which-collection@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906"
+ integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==
+ dependencies:
+ is-map "^2.0.1"
+ is-set "^2.0.1"
+ is-weakmap "^2.0.1"
+ is-weakset "^2.0.1"
+
+which-typed-array@^1.1.10, which-typed-array@^1.1.11, which-typed-array@^1.1.9:
+ version "1.1.11"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a"
+ integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==
dependencies:
available-typed-arrays "^1.0.5"
call-bind "^1.0.2"
for-each "^0.3.3"
gopd "^1.0.1"
has-tostringtag "^1.0.0"
- is-typed-array "^1.1.10"
which@^1.3.1:
version "1.3.1"
@@ -9092,11 +9471,6 @@ which@^2.0.1:
dependencies:
isexe "^2.0.0"
-word-wrap@^1.2.3, word-wrap@~1.2.3:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
- integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
-
workbox-background-sync@6.6.1:
version "6.6.1"
resolved "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-6.6.1.tgz#08d603a33717ce663e718c30cc336f74909aff2f"