From 66e6e98446cb4caad237999d73c9e5be2a75318f Mon Sep 17 00:00:00 2001 From: Navin Moorthy Date: Wed, 16 Feb 2022 21:23:29 +0530 Subject: [PATCH] =?UTF-8?q?fix(twind):=20=F0=9F=90=9B=20fixed=20twind=20&?= =?UTF-8?q?=20checkbox=20flex=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/Codeblock.tsx | 29 +- components/InteractiveCodeblock.tsx | 29 +- package.json | 18 +- pages/docs/components/forms/checkbox.mdx | 16 +- pages/docs/components/forms/radio.mdx | 14 +- yarn.lock | 606 +++++++++++++++++------ 6 files changed, 522 insertions(+), 190 deletions(-) diff --git a/components/Codeblock.tsx b/components/Codeblock.tsx index eae74ed..469cbea 100644 --- a/components/Codeblock.tsx +++ b/components/Codeblock.tsx @@ -8,7 +8,8 @@ import { useTheme } from "next-themes"; import Highlight, { defaultProps, Language } from "prism-react-renderer"; import darkTheme from "prism-react-renderer/themes/vsDark"; import lightTheme from "prism-react-renderer/themes/vsLight"; -import { tw } from "twind"; +import { setup, tw } from "twind"; +import * as colors from "twind/colors"; export type StaticCodeProps = { className?: string; @@ -16,6 +17,32 @@ export type StaticCodeProps = { noCopy?: boolean; }; +setup({ + preflight: false, // do not include base style reset (default: use tailwind preflight) + theme: { + extend: { + colors: { + dark: "#111", + oldGray: { + 100: "#f7fafc", + 200: "#edf2f7", + 300: "#e2e8f0", + 400: "#cbd5e0", + 500: "#a0aec0", + 600: "#718096", + 700: "#4a5568", + 800: "#2d3748", + 900: "#1a202c", + }, + transparent: "transparent", + current: "currentColor", + ...colors, + }, + }, + }, // define custom theme values (default: tailwind theme) + darkMode: "class", // use a different dark mode strategy (default: 'media') +}); + export const StaticCode: React.FC = props => { const { children, className, highlight, noCopy, ...rest } = props; diff --git a/components/InteractiveCodeblock.tsx b/components/InteractiveCodeblock.tsx index 59160e8..a65b3c3 100644 --- a/components/InteractiveCodeblock.tsx +++ b/components/InteractiveCodeblock.tsx @@ -15,7 +15,8 @@ import { get } from "lodash"; import { useTheme } from "next-themes"; import darkTheme from "prism-react-renderer/themes/vsDark"; import lightTheme from "prism-react-renderer/themes/vsLight"; -import { tw } from "twind"; +import { setup, tw } from "twind"; +import * as colors from "twind/colors"; type TemplateFunctionProps = { booleanProps: string[]; @@ -25,6 +26,32 @@ type TemplateFunctionProps = { props: Record; }; +setup({ + preflight: false, // do not include base style reset (default: use tailwind preflight) + theme: { + extend: { + colors: { + dark: "#111", + oldGray: { + 100: "#f7fafc", + 200: "#edf2f7", + 300: "#e2e8f0", + 400: "#cbd5e0", + 500: "#a0aec0", + 600: "#718096", + 700: "#4a5568", + 800: "#2d3748", + 900: "#1a202c", + }, + transparent: "transparent", + current: "currentColor", + ...colors, + }, + }, + }, // define custom theme values (default: tailwind theme) + darkMode: "class", // use a different dark mode strategy (default: 'media') +}); + type TemplateFunction = (props: TemplateFunctionProps) => string; type InteractiveCodeblockProps = { diff --git a/package.json b/package.json index ff9a52b..4986e3c 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ }, "dependencies": { "@chakra-ui/hooks": "1.8.2", - "@renderlesskit/react-tailwind": "0.0.1-alpha.37", + "@renderlesskit/react-tailwind": "0.0.1-alpha.38", "lodash": "4.17.21", "next": "12.0.10", "nextra": "2.0.0-alpha.24", @@ -68,24 +68,24 @@ "twind": "^0.16.16" }, "devDependencies": { - "@babel/core": "7.17.2", - "@commitlint/cli": "16.1.0", - "@commitlint/config-conventional": "16.0.0", + "@babel/core": "7.17.4", + "@commitlint/cli": "16.2.1", + "@commitlint/config-conventional": "16.2.1", "@next/eslint-plugin-next": "12.0.10", "@release-it/conventional-changelog": "4.1.0", "@testing-library/dom": "8.11.3", "@testing-library/jest-dom": "5.16.2", - "@testing-library/react": "12.1.2", + "@testing-library/react": "12.1.3", "@testing-library/user-event": "13.5.0", "@types/jest": "27.4.0", "@types/lodash": "4.14.178", - "@types/node": "17.0.17", + "@types/node": "17.0.18", "@types/react": "17.0.39", "@types/react-dom": "17.0.11", "all-contributors-cli": "6.20.0", "autoprefixer": "10.4.2", "babel-jest": "27.5.1", - "eslint": "8.8.0", + "eslint": "8.9.0", "eslint-config-prettier": "8.3.0", "eslint-config-react-app": "7.0.0", "eslint-plugin-prettier": "4.0.0", @@ -93,14 +93,14 @@ "gacp": "2.10.2", "husky": "7.0.4", "jest": "27.5.1", - "lint-staged": "12.3.3", + "lint-staged": "12.3.4", "postcss": "8.4.6", "prettier": "2.5.1", "prettier-plugin-tailwindcss": "0.1.7", "react-icons": "4.3.1", "release-it": "14.12.4", "sort-package-json": "1.54.0", - "tailwindcss": "3.0.21", + "tailwindcss": "3.0.23", "typescript": "4.5.5" }, "gacp": { diff --git a/pages/docs/components/forms/checkbox.mdx b/pages/docs/components/forms/checkbox.mdx index 5c911d4..3f7f49c 100644 --- a/pages/docs/components/forms/checkbox.mdx +++ b/pages/docs/components/forms/checkbox.mdx @@ -46,7 +46,7 @@ Checkbox comes with 3 sizes `sm` `md` `lg` +
@@ -61,7 +61,7 @@ Uncontrolled checkbox can be used with `defaultState` prop. +
@@ -74,10 +74,10 @@ Uncontrolled checkbox can be used with `defaultState` prop. - - - +
+ + +
`} /> @@ -87,10 +87,10 @@ Uncontrolled checkbox can be used with `defaultState` prop. +
- +
`} diff --git a/pages/docs/components/forms/radio.mdx b/pages/docs/components/forms/radio.mdx index e64328d..f507664 100644 --- a/pages/docs/components/forms/radio.mdx +++ b/pages/docs/components/forms/radio.mdx @@ -44,7 +44,7 @@ Radio comes with 3 sizes `sm` `md` `lg` +
@@ -59,7 +59,7 @@ Radio can be controlled using `state` prop. +
@@ -71,7 +71,7 @@ Radio can be controlled using `state` prop. +
@@ -83,10 +83,10 @@ Radio can be controlled using `state` prop. - - - +
+ + +
`} /> diff --git a/yarn.lock b/yarn.lock index da89a42..4e3856e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,10 +2,10 @@ # yarn lockfile v1 -"@ampproject/remapping@^2.0.0": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.1.1.tgz#7922fb0817bf3166d8d9e258c57477e3fd1c3610" - integrity sha512-Aolwjd7HSC2PyY0fDj/wA/EimQT4HfEnFYNp5s9CQlrdhyvWTtvZ5YzrUPu6R6/1jKiUlxu8bUhkdSnKHNAHMA== +"@ampproject/remapping@^2.1.0": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.1.2.tgz#4edca94973ded9630d20101cd8559cedb8d8bd34" + integrity sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg== dependencies: "@jridgewell/trace-mapping" "^0.3.0" @@ -28,20 +28,20 @@ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.16.4.tgz#081d6bbc336ec5c2435c6346b2ae1fb98b5ac68e" integrity sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q== -"@babel/core@7.17.2": - version "7.17.2" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.17.2.tgz#2c77fc430e95139d816d39b113b31bf40fb22337" - integrity sha512-R3VH5G42VSDolRHyUO4V2cfag8WHcZyxdq5Z/m8Xyb92lW/Erm/6kM+XtRFGf3Mulre3mveni2NHfEUws8wSvw== +"@babel/core@7.17.4": + version "7.17.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.17.4.tgz#a22f1ae8999122873b3d18865e98c7a3936b8c8b" + integrity sha512-R9x5r4t4+hBqZTmioSnkrW+I6NmbojwjGT8p4G2Gw1thWbXIHGDnmGdLdFw0/7ljucdIrNRp7Npgb4CyBYzzJg== dependencies: - "@ampproject/remapping" "^2.0.0" + "@ampproject/remapping" "^2.1.0" "@babel/code-frame" "^7.16.7" - "@babel/generator" "^7.17.0" + "@babel/generator" "^7.17.3" "@babel/helper-compilation-targets" "^7.16.7" "@babel/helper-module-transforms" "^7.16.7" "@babel/helpers" "^7.17.2" - "@babel/parser" "^7.17.0" + "@babel/parser" "^7.17.3" "@babel/template" "^7.16.7" - "@babel/traverse" "^7.17.0" + "@babel/traverse" "^7.17.3" "@babel/types" "^7.17.0" convert-source-map "^1.7.0" debug "^4.1.0" @@ -136,6 +136,15 @@ jsesc "^2.5.1" source-map "^0.5.0" +"@babel/generator@^7.17.3": + version "7.17.3" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.3.tgz#a2c30b0c4f89858cb87050c3ffdfd36bdf443200" + integrity sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg== + dependencies: + "@babel/types" "^7.17.0" + jsesc "^2.5.1" + source-map "^0.5.0" + "@babel/helper-annotate-as-pure@^7.16.0": version "7.16.0" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz#9a1f0ebcda53d9a2d00108c4ceace6a5d5f1f08d" @@ -484,6 +493,11 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.0.tgz#f0ac33eddbe214e4105363bb17c3341c5ffcc43c" integrity sha512-VKXSCQx5D8S04ej+Dqsr1CzYvvWgf20jIw2D+YhQCrIlr2UZGaDds23Y0xg75/skOxpLCRpUZvk/1EAVkGoDOw== +"@babel/parser@^7.17.3": + version "7.17.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.3.tgz#b07702b982990bf6fdc1da5049a23fece4c5c3d0" + integrity sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA== + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.2": version "7.16.2" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz#2977fca9b212db153c195674e57cfab807733183" @@ -1297,6 +1311,22 @@ debug "^4.1.0" globals "^11.1.0" +"@babel/traverse@^7.17.3": + version "7.17.3" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.17.3.tgz#0ae0f15b27d9a92ba1f2263358ea7c4e7db47b57" + integrity sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw== + dependencies: + "@babel/code-frame" "^7.16.7" + "@babel/generator" "^7.17.3" + "@babel/helper-environment-visitor" "^7.16.7" + "@babel/helper-function-name" "^7.16.7" + "@babel/helper-hoist-variables" "^7.16.7" + "@babel/helper-split-export-declaration" "^7.16.7" + "@babel/parser" "^7.17.3" + "@babel/types" "^7.17.0" + debug "^4.1.0" + globals "^11.1.0" + "@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": version "7.16.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.0.tgz#db3b313804f96aadd0b776c4823e127ad67289ba" @@ -1342,6 +1372,14 @@ "@chakra-ui/hooks" "1.7.1" "@chakra-ui/utils" "1.9.1" +"@chakra-ui/counter@^1.2.5": + version "1.2.5" + resolved "https://registry.yarnpkg.com/@chakra-ui/counter/-/counter-1.2.5.tgz#801e63d8e65f98be498770c2a511999566472d59" + integrity sha512-2pH98XnUoPwNzZjlONdKwtbFjahdd1gyvyx8QVrEqBNIKOuAGATXDb7arkh2EwAwy5xmpkticZ8ZtOz1gcDvmg== + dependencies: + "@chakra-ui/hooks" "1.8.2" + "@chakra-ui/utils" "1.10.2" + "@chakra-ui/hooks@1.7.1", "@chakra-ui/hooks@^1.7.1": version "1.7.1" resolved "https://registry.yarnpkg.com/@chakra-ui/hooks/-/hooks-1.7.1.tgz#0242b678f40ef00e4834a8a856c8881dcda0072d" @@ -1362,7 +1400,7 @@ compute-scroll-into-view "1.0.14" copy-to-clipboard "3.3.1" -"@chakra-ui/hooks@1.8.2": +"@chakra-ui/hooks@1.8.2", "@chakra-ui/hooks@^1.8.2": version "1.8.2" resolved "https://registry.yarnpkg.com/@chakra-ui/hooks/-/hooks-1.8.2.tgz#1149d93b58d8166570b08bda3c96fe341266a5ad" integrity sha512-rmWfXTh7Ku0sg4bPaR9E5a53N4dzcgrdMt5lDVeaxjLUm2faE0U8LcG8yJgpxNOMKDmaKat8Nrj6H5DBYhVB+A== @@ -1379,7 +1417,7 @@ dependencies: "@chakra-ui/utils" "^1.9.1" -"@chakra-ui/react-utils@1.2.2": +"@chakra-ui/react-utils@1.2.2", "@chakra-ui/react-utils@^1.2.2": version "1.2.2" resolved "https://registry.yarnpkg.com/@chakra-ui/react-utils/-/react-utils-1.2.2.tgz#048a6ee4296249440ce3bd91c49c17fbd2f1ae31" integrity sha512-vdVtwEooRPVmB60+B9FEJNc+L4+DO6llA9qTk8ZFq7ocXLGagl+V5mFKJPLMzmTCafq6j5pNjoAF4A7bbh4U4Q== @@ -1406,42 +1444,42 @@ framesync "5.3.0" lodash.mergewith "4.6.2" -"@commitlint/cli@16.1.0": - version "16.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-16.1.0.tgz#022ad86008374b02974c9f3faf86affb785f4574" - integrity sha512-x5L1knvA3isRWBRVQx+Q6D45pA9139a2aZQYpxkljMG0dj4UHZkCnsYWpnGalxPxASI7nrI0KedKfS2YeQ55cQ== +"@commitlint/cli@16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-16.2.1.tgz#ca4e557829a2755f0e1f0cd69b56b83ce2510173" + integrity sha512-zfKf+B9osuiDbxGMJ7bWFv7XFCW8wlQYPtCffNp7Ukdb7mdrep5R9e03vPUZysnwp8NX6hg05kPEvnD/wRIGWw== dependencies: - "@commitlint/format" "^16.0.0" - "@commitlint/lint" "^16.0.0" - "@commitlint/load" "^16.1.0" - "@commitlint/read" "^16.0.0" - "@commitlint/types" "^16.0.0" + "@commitlint/format" "^16.2.1" + "@commitlint/lint" "^16.2.1" + "@commitlint/load" "^16.2.1" + "@commitlint/read" "^16.2.1" + "@commitlint/types" "^16.2.1" lodash "^4.17.19" resolve-from "5.0.0" resolve-global "1.0.0" yargs "^17.0.0" -"@commitlint/config-conventional@16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-16.0.0.tgz#f42d9e1959416b5e691c8b5248fc2402adb1fc03" - integrity sha512-mN7J8KlKFn0kROd+q9PB01sfDx/8K/R25yITspL1No8PB4oj9M1p77xWjP80hPydqZG9OvQq+anXK3ZWeR7s3g== +"@commitlint/config-conventional@16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-16.2.1.tgz#2cf47b505fb259777c063538c8498d8fd9b47779" + integrity sha512-cP9gArx7gnaj4IqmtCIcHdRjTYdRUi6lmGE+lOzGGjGe45qGOS8nyQQNvkNy2Ey2VqoSWuXXkD8zCUh6EHf1Ww== dependencies: conventional-changelog-conventionalcommits "^4.3.1" -"@commitlint/config-validator@^16.1.0": - version "16.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-16.1.0.tgz#410979f713ed55cbb85504d46295c1fd2419dc4d" - integrity sha512-2cHeZPNTuf1JWbMqyA46MkExor5HMSgv8JrdmzEakUbJHUreh35/wN00FJf57qGs134exQW2thiSQ1IJUsVx2Q== +"@commitlint/config-validator@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-16.2.1.tgz#794e769afd4756e4cf1bfd823b6612932e39c56d" + integrity sha512-hogSe0WGg7CKmp4IfNbdNES3Rq3UEI4XRPB8JL4EPgo/ORq5nrGTVzxJh78omibNuB8Ho4501Czb1Er1MoDWpw== dependencies: - "@commitlint/types" "^16.0.0" + "@commitlint/types" "^16.2.1" ajv "^6.12.6" -"@commitlint/ensure@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-16.0.0.tgz#fdac1e60a944a1993deb33b5e8454c559abe9866" - integrity sha512-WdMySU8DCTaq3JPf0tZFCKIUhqxaL54mjduNhu8v4D2AMUVIIQKYMGyvXn94k8begeW6iJkTf9cXBArayskE7Q== +"@commitlint/ensure@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-16.2.1.tgz#0fc538173f95c1eb2694eeedb79cab478347f16f" + integrity sha512-/h+lBTgf1r5fhbDNHOViLuej38i3rZqTQnBTk+xEg+ehOwQDXUuissQ5GsYXXqI5uGy+261ew++sT4EA3uBJ+A== dependencies: - "@commitlint/types" "^16.0.0" + "@commitlint/types" "^16.2.1" lodash "^4.17.19" "@commitlint/execute-rule@^11.0.0": @@ -1449,36 +1487,36 @@ resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-11.0.0.tgz#3ed60ab7a33019e58d90e2d891b75d7df77b4b4d" integrity sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ== -"@commitlint/execute-rule@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-16.0.0.tgz#824e11ba5b208c214a474ae52a51780d32d31ebc" - integrity sha512-8edcCibmBb386x5JTHSPHINwA5L0xPkHQFY8TAuDEt5QyRZY/o5DF8OPHSa5Hx2xJvGaxxuIz4UtAT6IiRDYkw== +"@commitlint/execute-rule@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-16.2.1.tgz#60be73be4b9af97a41546e7ce59fdd33787c65f8" + integrity sha512-oSls82fmUTLM6cl5V3epdVo4gHhbmBFvCvQGHBRdQ50H/690Uq1Dyd7hXMuKITCIdcnr9umyDkr8r5C6HZDF3g== -"@commitlint/format@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-16.0.0.tgz#6a6fb2c1e6460aff63cc6eca30a7807a96b0ce73" - integrity sha512-9yp5NCquXL1jVMKL0ZkRwJf/UHdebvCcMvICuZV00NQGYSAL89O398nhqrqxlbjBhM5EZVq0VGcV5+7r3D4zAA== +"@commitlint/format@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-16.2.1.tgz#6e673f710c799be78e68b2682323e04f75080d07" + integrity sha512-Yyio9bdHWmNDRlEJrxHKglamIk3d6hC0NkEUW6Ti6ipEh2g0BAhy8Od6t4vLhdZRa1I2n+gY13foy+tUgk0i1Q== dependencies: - "@commitlint/types" "^16.0.0" + "@commitlint/types" "^16.2.1" chalk "^4.0.0" -"@commitlint/is-ignored@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-16.0.0.tgz#5ab4c4a9c7444c1a8540f50a0f1a907dfd78eb70" - integrity sha512-gmAQcwIGC/R/Lp0CEb2b5bfGC7MT5rPe09N8kOGjO/NcdNmfFSZMquwrvNJsq9hnAP0skRdHIsqwlkENkN4Lag== +"@commitlint/is-ignored@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-16.2.1.tgz#cc688ec73a3d204b90f8086821a08814da461e5e" + integrity sha512-exl8HRzTIfb1YvDJp2b2HU5z1BT+9tmgxR2XF0YEzkMiCIuEKh+XLeocPr1VcvAKXv3Cmv5X/OfNRp+i+/HIhQ== dependencies: - "@commitlint/types" "^16.0.0" + "@commitlint/types" "^16.2.1" semver "7.3.5" -"@commitlint/lint@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-16.0.0.tgz#87151a935941073027907fd4752a2e3c83cebbfe" - integrity sha512-HNl15bRC0h+pLzbMzQC3tM0j1aESXsLYhElqKnXcf5mnCBkBkHzu6WwJW8rZbfxX+YwJmNljN62cPhmdBo8x0A== +"@commitlint/lint@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-16.2.1.tgz#c773f082cd4f69cb7807b805b691d2a52c732f97" + integrity sha512-fNINQ3X2ZqsCkNB3Z0Z8ElmhewqrS3gy2wgBTx97BkcjOWiyPAGwDJ752hwrsUnWAVBRztgw826n37xPzxsOgg== dependencies: - "@commitlint/is-ignored" "^16.0.0" - "@commitlint/parse" "^16.0.0" - "@commitlint/rules" "^16.0.0" - "@commitlint/types" "^16.0.0" + "@commitlint/is-ignored" "^16.2.1" + "@commitlint/parse" "^16.2.1" + "@commitlint/rules" "^16.2.1" + "@commitlint/types" "^16.2.1" "@commitlint/load@^11.0.0": version "11.0.0" @@ -1493,15 +1531,16 @@ lodash "^4.17.19" resolve-from "^5.0.0" -"@commitlint/load@^16.1.0": - version "16.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-16.1.0.tgz#7a884072ab915611080c5e99a1f1d999c05f4360" - integrity sha512-MtlEhKjP8jAF85jjX4mw8DUUwCxKsCgAc865hhpnwxjrfBcmGP7Up2AFE/M3ZMGDmSl1X1TMybQk/zohj8Cqdg== +"@commitlint/load@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-16.2.1.tgz#301bda1bff66b3e40a85819f854eda72538d8e24" + integrity sha512-oSpz0jTyVI/A1AIImxJINTLDOMB8YF7lWGm+Jg5wVWM0r7ucpuhyViVvpSRTgvL0z09oIxlctyFGWUQQpI42uw== dependencies: - "@commitlint/config-validator" "^16.1.0" - "@commitlint/execute-rule" "^16.0.0" - "@commitlint/resolve-extends" "^16.1.0" - "@commitlint/types" "^16.0.0" + "@commitlint/config-validator" "^16.2.1" + "@commitlint/execute-rule" "^16.2.1" + "@commitlint/resolve-extends" "^16.2.1" + "@commitlint/types" "^16.2.1" + "@types/node" ">=12" chalk "^4.0.0" cosmiconfig "^7.0.0" cosmiconfig-typescript-loader "^1.0.0" @@ -1509,27 +1548,27 @@ resolve-from "^5.0.0" typescript "^4.4.3" -"@commitlint/message@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-16.0.0.tgz#4a467341fc6bc49e5a3ead005dd6aa36fa856b87" - integrity sha512-CmK2074SH1Ws6kFMEKOKH/7hMekGVbOD6vb4alCOo2+33ZSLUIX8iNkDYyrw38Jwg6yWUhLjyQLUxREeV+QIUA== +"@commitlint/message@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-16.2.1.tgz#bc6a0fa446a746ac2ca78cf372e4cec48daf620d" + integrity sha512-2eWX/47rftViYg7a3axYDdrgwKv32mxbycBJT6OQY/MJM7SUfYNYYvbMFOQFaA4xIVZt7t2Alyqslbl6blVwWw== -"@commitlint/parse@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-16.0.0.tgz#5ce05af14edff806effc702ba910fcb32fcb192a" - integrity sha512-F9EjFlMw4MYgBEqoRrWZZKQBzdiJzPBI0qFDFqwUvfQsMmXEREZ242T4R5bFwLINWaALFLHEIa/FXEPa6QxCag== +"@commitlint/parse@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-16.2.1.tgz#50b359cb711ec566d2ee236a8e4c6baca07b77c0" + integrity sha512-2NP2dDQNL378VZYioLrgGVZhWdnJO4nAxQl5LXwYb08nEcN+cgxHN1dJV8OLJ5uxlGJtDeR8UZZ1mnQ1gSAD/g== dependencies: - "@commitlint/types" "^16.0.0" + "@commitlint/types" "^16.2.1" conventional-changelog-angular "^5.0.11" conventional-commits-parser "^3.2.2" -"@commitlint/read@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-16.0.0.tgz#92fab45d4e0e4d7d049427306500270b3e459221" - integrity sha512-H4T2zsfmYQK9B+JtoQaCXWBHUhgIJyOzWZjSfuIV9Ce69/OgHoffNpLZPF2lX6yKuDrS1SQFhI/kUCjVc/e4ew== +"@commitlint/read@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-16.2.1.tgz#e0539205d77cdb6879b560f95e5fb251e0c6f562" + integrity sha512-tViXGuaxLTrw2r7PiYMQOFA2fueZxnnt0lkOWqKyxT+n2XdEMGYcI9ID5ndJKXnfPGPppD0w/IItKsIXlZ+alw== dependencies: - "@commitlint/top-level" "^16.0.0" - "@commitlint/types" "^16.0.0" + "@commitlint/top-level" "^16.2.1" + "@commitlint/types" "^16.2.1" fs-extra "^10.0.0" git-raw-commits "^2.0.0" @@ -1543,38 +1582,38 @@ resolve-from "^5.0.0" resolve-global "^1.0.0" -"@commitlint/resolve-extends@^16.1.0": - version "16.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-16.1.0.tgz#4b199197c45ddb436b59ef319662de6870f68fd5" - integrity sha512-8182s6AFoUFX6+FT1PgQDt15nO2ogdR/EN8SYVAdhNXw1rLz8kT5saB/ICw567GuRAUgFTUMGCXy3ctMOXPEDg== +"@commitlint/resolve-extends@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-16.2.1.tgz#2f7833a5a3a7aa79f508e59fcb0f1d33c45ed360" + integrity sha512-NbbCMPKTFf2J805kwfP9EO+vV+XvnaHRcBy6ud5dF35dxMsvdJqke54W3XazXF1ZAxC4a3LBy4i/GNVBAthsEg== dependencies: - "@commitlint/config-validator" "^16.1.0" - "@commitlint/types" "^16.0.0" + "@commitlint/config-validator" "^16.2.1" + "@commitlint/types" "^16.2.1" import-fresh "^3.0.0" lodash "^4.17.19" resolve-from "^5.0.0" resolve-global "^1.0.0" -"@commitlint/rules@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-16.0.0.tgz#79d28c3678d2d1f7f1cdbedaedb30b01a86ee75b" - integrity sha512-AOl0y2SBTdJ1bvIv8nwHvQKRT/jC1xb09C5VZwzHoT8sE8F54KDeEzPCwHQFgUcWdGLyS10kkOTAH2MyA8EIlg== +"@commitlint/rules@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-16.2.1.tgz#7264aa1c754e1c212aeceb27e5eb380cfa7bb233" + integrity sha512-ZFezJXQaBBso+BOTre/+1dGCuCzlWVaeLiVRGypI53qVgPMzQqZhkCcrxBFeqB87qeyzr4A4EoG++IvITwwpIw== dependencies: - "@commitlint/ensure" "^16.0.0" - "@commitlint/message" "^16.0.0" - "@commitlint/to-lines" "^16.0.0" - "@commitlint/types" "^16.0.0" + "@commitlint/ensure" "^16.2.1" + "@commitlint/message" "^16.2.1" + "@commitlint/to-lines" "^16.2.1" + "@commitlint/types" "^16.2.1" execa "^5.0.0" -"@commitlint/to-lines@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-16.0.0.tgz#799980a89072302445baf595e20092fb86f0a58a" - integrity sha512-iN/qU38TCKU7uKOg6RXLpD49wNiuI0TqMqybHbjefUeP/Jmzxa8ishryj0uLyVdrAl1ZjGeD1ukXGMTtvqz8iA== +"@commitlint/to-lines@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-16.2.1.tgz#42d000f34dc0406f514991e86237fdab5e8affd0" + integrity sha512-9/VjpYj5j1QeY3eiog1zQWY6axsdWAc0AonUUfyZ7B0MVcRI0R56YsHAfzF6uK/g/WwPZaoe4Lb1QCyDVnpVaQ== -"@commitlint/top-level@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-16.0.0.tgz#7c2efc33cc37df839b3de558c0bc2eaddb64efe6" - integrity sha512-/Jt6NLxyFkpjL5O0jxurZPCHURZAm7cQCqikgPCwqPAH0TLgwqdHjnYipl8J+AGnAMGDip4FNLoYrtgIpZGBYw== +"@commitlint/top-level@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-16.2.1.tgz#bdaa53ab3d8970e0288879f1a342a8c2dfe01583" + integrity sha512-lS6GSieHW9y6ePL73ied71Z9bOKyK+Ib9hTkRsB8oZFAyQZcyRwq2w6nIa6Fngir1QW51oKzzaXfJL94qwImyw== dependencies: find-up "^5.0.0" @@ -1583,10 +1622,10 @@ resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-11.0.0.tgz#719cf05fcc1abb6533610a2e0f5dd1e61eac14fe" integrity sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ== -"@commitlint/types@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-16.0.0.tgz#3c133f106d36132756c464071a7f2290966727a3" - integrity sha512-+0FvYOAS39bJ4aKjnYn/7FD4DfWkmQ6G/06I4F0Gvu4KS5twirEg8mIcLhmeRDOOKn4Tp8PwpLwBiSA6npEMQA== +"@commitlint/types@^16.2.1": + version "16.2.1" + resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-16.2.1.tgz#f25d373b88b01e51fc3fa44488101361945a61bd" + integrity sha512-7/z7pA7BM0i8XvMSBynO7xsB3mVQPUZbVn6zMIlp/a091XJ3qAXRXc+HwLYhiIdzzS5fuxxNIHZMGHVD4HJxdA== dependencies: chalk "^4.0.0" @@ -1602,14 +1641,14 @@ dependencies: "@cspotcode/source-map-consumer" "0.8.0" -"@eslint/eslintrc@^1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.0.5.tgz#33f1b838dbf1f923bfa517e008362b78ddbbf318" - integrity sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ== +"@eslint/eslintrc@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.1.0.tgz#583d12dbec5d4f22f333f9669f7d0b7c7815b4d3" + integrity sha512-C1DfL7XX4nPqGd6jcP01W9pVM1HYCuUkFk1432D7F0v3JSlUIeOYn9oCoi3eoLZ+iwBSb29BMFxxny0YrrEZqg== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.2.0" + espree "^9.3.1" globals "^13.9.0" ignore "^4.0.6" import-fresh "^3.2.1" @@ -1692,6 +1731,13 @@ dependencies: "@babel/runtime" "^7.6.2" +"@internationalized/date@3.0.0-alpha.2": + version "3.0.0-alpha.2" + resolved "https://registry.yarnpkg.com/@internationalized/date/-/date-3.0.0-alpha.2.tgz#a8a71c6154da0a722c62252689e88b8a01b64466" + integrity sha512-zqyJa1/xVv8zmRrkM1iPYo9sxUddqdBsYDj6l5IZ92ZCirFzrn1noZnLi78aPG05UXlNOTyJcPKjjaX9ukFv5A== + dependencies: + "@babel/runtime" "^7.6.2" + "@internationalized/message@^3.0.2": version "3.0.3" resolved "https://registry.yarnpkg.com/@internationalized/message/-/message-3.0.3.tgz#bdedde42d02f935e06a1cb2f3b0dacc5228e782a" @@ -1700,6 +1746,14 @@ "@babel/runtime" "^7.6.2" intl-messageformat "^9.6.12" +"@internationalized/message@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@internationalized/message/-/message-3.0.4.tgz#5d3a8015159a60b5835662bb724032f3a52f1ff4" + integrity sha512-yDd5O3SpY5dtFD+pB+vSgsE0VxK6usvkOIpCGUalS13Ow3FqMuMshfej6u+Ct1nvgItz61C9NAl1lLoY1bHa5g== + dependencies: + "@babel/runtime" "^7.6.2" + intl-messageformat "^9.6.12" + "@internationalized/number@^3.0.2": version "3.0.3" resolved "https://registry.yarnpkg.com/@internationalized/number/-/number-3.0.3.tgz#d29003dffdff54ca6f2287ec0cb77ff3d045478f" @@ -1707,6 +1761,13 @@ dependencies: "@babel/runtime" "^7.6.2" +"@internationalized/number@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@internationalized/number/-/number-3.0.4.tgz#0e2b120a351f132d8c21738526bc43b8ba15d9bf" + integrity sha512-Vmu1FX25C3vRXME+mIG1BqRK25xvI/T1ouD5c5xm6fHuAFYppcA+ok96eOnRS1iPLGJpdYfASo1mlouiE2BS3g== + dependencies: + "@babel/runtime" "^7.6.2" + "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" @@ -2203,6 +2264,17 @@ "@react-types/shared" "^3.9.0" clsx "^1.1.1" +"@react-aria/focus@^3.5.1": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@react-aria/focus/-/focus-3.5.1.tgz#b3d0cd5877c844db7f6fb28ba3eec1516dc3b123" + integrity sha512-8TTlxekumLxFZo0GELVUDCv6olQTMlGtobeGNaf0MVoonGz5oukjjPa3DB+PZRxMduTotRlniqpejnZi4fzMDw== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-aria/interactions" "^3.8.0" + "@react-aria/utils" "^3.11.1" + "@react-types/shared" "^3.11.0" + clsx "^1.1.1" + "@react-aria/i18n@^3.3.2": version "3.3.4" resolved "https://registry.yarnpkg.com/@react-aria/i18n/-/i18n-3.3.4.tgz#172b8bcff0273410e67af31f7d84e49dd3ada463" @@ -2216,6 +2288,19 @@ "@react-aria/utils" "^3.10.0" "@react-types/shared" "^3.10.0" +"@react-aria/i18n@^3.3.5": + version "3.3.5" + resolved "https://registry.yarnpkg.com/@react-aria/i18n/-/i18n-3.3.5.tgz#efaa0daa29ee0da4fcef44cc0dd3d5df56fa04c8" + integrity sha512-FZiSkeXQ9GNZQqsRxtK2KgI1B+5hGaDA3N46ea50ZtLDeFen8M2KXtEqrBQBcussrqD+uwJ94p9NOsBXL3Xs/A== + dependencies: + "@babel/runtime" "^7.6.2" + "@internationalized/date" "3.0.0-alpha.2" + "@internationalized/message" "^3.0.4" + "@internationalized/number" "^3.0.4" + "@react-aria/ssr" "^3.1.1" + "@react-aria/utils" "^3.11.1" + "@react-types/shared" "^3.11.0" + "@react-aria/interactions@^3.5.1", "@react-aria/interactions@^3.6.0": version "3.7.0" resolved "https://registry.yarnpkg.com/@react-aria/interactions/-/interactions-3.7.0.tgz#eb19c1068b557a6b6df1e1c4abef07de719e9f25" @@ -2225,6 +2310,15 @@ "@react-aria/utils" "^3.10.0" "@react-types/shared" "^3.10.0" +"@react-aria/interactions@^3.8.0": + version "3.8.0" + resolved "https://registry.yarnpkg.com/@react-aria/interactions/-/interactions-3.8.0.tgz#38f10329b7c0966dd791bc84716d7ba75bfd4715" + integrity sha512-2NPyk9JM/Obd49+xm9pnSq8dGbe9t1YtQDZprOs/2hyyP6kZEfvQX1NruXcC+SuAMUPwI4R2eiCgLuMfkeUYrA== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-aria/utils" "^3.11.1" + "@react-types/shared" "^3.11.0" + "@react-aria/label@^3.1.3": version "3.2.1" resolved "https://registry.yarnpkg.com/@react-aria/label/-/label-3.2.1.tgz#e6562259e6b17e3856c4c3e0060903cf705d094b" @@ -2235,6 +2329,16 @@ "@react-types/label" "^3.5.0" "@react-types/shared" "^3.10.0" +"@react-aria/label@^3.2.2": + version "3.2.2" + resolved "https://registry.yarnpkg.com/@react-aria/label/-/label-3.2.2.tgz#e60db8dc567dd87f6ea9c3c30bb36eec8635dc06" + integrity sha512-boOXJJGp2+Rqmvqwj/ElfVGsK37/rLUcTZ9fzvN261TAj5mk8QITQ0ii9t6ueNJuuTVDucvOO6NtDhgWRYc4+A== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-aria/utils" "^3.11.1" + "@react-types/label" "^3.5.1" + "@react-types/shared" "^3.11.0" + "@react-aria/live-announcer@^3.0.1": version "3.0.1" resolved "https://registry.yarnpkg.com/@react-aria/live-announcer/-/live-announcer-3.0.1.tgz#772888326808d180adc5bc9fa0b4b1416ec08811" @@ -2244,6 +2348,15 @@ "@react-aria/utils" "^3.8.2" "@react-aria/visually-hidden" "^3.2.3" +"@react-aria/live-announcer@^3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@react-aria/live-announcer/-/live-announcer-3.0.2.tgz#d226f8105904dc89fc58a9a9f0c4b4490c5b1895" + integrity sha512-PtxxA0DJxHudvzglmfrnTzhslYA0/MEIs8ZeCyxnVBxDdWBqBqAIq+8Q1KL4bvsNJGhQFohvwrKjvZ2rZVJNsw== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-aria/utils" "^3.11.1" + "@react-aria/visually-hidden" "^3.2.4" + "@react-aria/slider@^3.0.3": version "3.0.3" resolved "https://registry.yarnpkg.com/@react-aria/slider/-/slider-3.0.3.tgz#de6945970cb7f7fd5c462f57bcb6245bfa0b6f73" @@ -2260,6 +2373,22 @@ "@react-types/radio" "^3.1.2" "@react-types/slider" "^3.0.2" +"@react-aria/slider@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@react-aria/slider/-/slider-3.0.4.tgz#c72053ff94c3945a94bbdd353b4bb9cd3ed24533" + integrity sha512-bSusVTU3ZBeR/rQZKY77KnalJzLuXnwhSAjAVqfzWrHqbdNmXvY/kXo8EJWuXc++HV4IY8IpHgpnuvegFjIesA== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-aria/focus" "^3.5.1" + "@react-aria/i18n" "^3.3.5" + "@react-aria/interactions" "^3.8.0" + "@react-aria/label" "^3.2.2" + "@react-aria/utils" "^3.11.1" + "@react-stately/radio" "^3.3.3" + "@react-stately/slider" "^3.0.4" + "@react-types/radio" "^3.1.3" + "@react-types/slider" "^3.0.3" + "@react-aria/spinbutton@^3.0.1": version "3.0.1" resolved "https://registry.yarnpkg.com/@react-aria/spinbutton/-/spinbutton-3.0.1.tgz#e0d5595e1c74518ca46acdeebf7bd19022ee5d50" @@ -2272,6 +2401,18 @@ "@react-types/button" "^3.4.1" "@react-types/shared" "^3.8.0" +"@react-aria/spinbutton@^3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@react-aria/spinbutton/-/spinbutton-3.0.2.tgz#5c361b7d8e8f1cc3808db51786086ad7fbfa1fb9" + integrity sha512-CjiKx+JXT07fzEqInJ/uCdKqgNJ2DwS25fjDhpnD9WtVbXFxTni3wtbkUVmEzQnb1LKdiMczIhzQ6nenJ5n6hQ== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-aria/i18n" "^3.3.5" + "@react-aria/live-announcer" "^3.0.2" + "@react-aria/utils" "^3.11.1" + "@react-types/button" "^3.4.2" + "@react-types/shared" "^3.11.0" + "@react-aria/ssr@^3.0.3", "@react-aria/ssr@^3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.1.0.tgz#b7163e6224725c30121932a8d1422ef91d1fab22" @@ -2279,6 +2420,13 @@ dependencies: "@babel/runtime" "^7.6.2" +"@react-aria/ssr@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.1.1.tgz#74243b9a76e0f85e18b1becc7125b44b02cc2a12" + integrity sha512-X02QCmTg6kMU2kodRtZ9Qln7x/xs9WxW+bbKeUjeBoLvz6QGFAiTwGEcarFjYJIgQTHSZ81bIJqF91wfnvk1Ew== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-aria/utils@^3.10.0", "@react-aria/utils@^3.8.2", "@react-aria/utils@^3.9.0": version "3.11.0" resolved "https://registry.yarnpkg.com/@react-aria/utils/-/utils-3.11.0.tgz#215ea23a5435672a822cd713bdb8217972c5c80b" @@ -2290,6 +2438,17 @@ "@react-types/shared" "^3.10.1" clsx "^1.1.1" +"@react-aria/utils@^3.11.1": + version "3.11.1" + resolved "https://registry.yarnpkg.com/@react-aria/utils/-/utils-3.11.1.tgz#1dd43563041c7b1e5d85c50bd725cab85571c0fe" + integrity sha512-sD/9EVinZIvuvzAjJMs2YYOz74DELolU0pDBHWuFAAOffJw9gBy8X/HxkmG91X4gwxRzy9jlJAFEEChoqtmHFA== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-aria/ssr" "^3.1.1" + "@react-stately/utils" "^3.4.0" + "@react-types/shared" "^3.11.0" + clsx "^1.1.1" + "@react-aria/visually-hidden@^3.2.3": version "3.2.3" resolved "https://registry.yarnpkg.com/@react-aria/visually-hidden/-/visually-hidden-3.2.3.tgz#4779df0a468873550afb42a7f5fcb2411d82db8d" @@ -2300,6 +2459,16 @@ "@react-aria/utils" "^3.8.2" clsx "^1.1.1" +"@react-aria/visually-hidden@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@react-aria/visually-hidden/-/visually-hidden-3.2.4.tgz#c38e76421142e0fe0d55421e0d48c6a763f7ac7e" + integrity sha512-o1ToUW+/kQ8+PWOuEFxW77eT9ZhLjws+Ynik1ew4ocgJGQyPpFQ0P2riM9idopXOzLmuUyHeBMGPN1JnTwQ4ZQ== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-aria/interactions" "^3.8.0" + "@react-aria/utils" "^3.11.1" + clsx "^1.1.1" + "@react-stately/radio@^3.3.2": version "3.3.2" resolved "https://registry.yarnpkg.com/@react-stately/radio/-/radio-3.3.2.tgz#be489c1e7fe00fadff579776a2e2f4908fae029f" @@ -2309,6 +2478,15 @@ "@react-stately/utils" "^3.2.2" "@react-types/radio" "^3.1.2" +"@react-stately/radio@^3.3.3": + version "3.3.3" + resolved "https://registry.yarnpkg.com/@react-stately/radio/-/radio-3.3.3.tgz#c7e959e087b811ab90699e2faac4f479ede4d176" + integrity sha512-UZTwOE9RqHHYslNSehd0vm9B/1PWpzo6qZGhqbWOwbHVdOrRFa0XrMZ8Ps6wpQuLOV6PKLQbRUVji/suLnr6Ag== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-stately/utils" "^3.4.0" + "@react-types/radio" "^3.1.3" + "@react-stately/slider@^3.0.3": version "3.0.3" resolved "https://registry.yarnpkg.com/@react-stately/slider/-/slider-3.0.3.tgz#77f85eb459d1542a74baf68ff545fcc569e5c309" @@ -2320,6 +2498,17 @@ "@react-stately/utils" "^3.2.2" "@react-types/slider" "^3.0.2" +"@react-stately/slider@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@react-stately/slider/-/slider-3.0.4.tgz#2f0940ff895201d86e5467a860e17770178a1ec8" + integrity sha512-SCVTjKCUmwwKNzHZx/xCoGfT1cAVt1x3WeRRjHUKRRF+UfN7wGTHLQm1zwvlR+nLcFXFVtt+YG2vuTqpbBgyMQ== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-aria/i18n" "^3.3.5" + "@react-aria/utils" "^3.11.1" + "@react-stately/utils" "^3.4.0" + "@react-types/slider" "^3.0.3" + "@react-stately/utils@^3.2.2", "@react-stately/utils@^3.3.0": version "3.3.0" resolved "https://registry.yarnpkg.com/@react-stately/utils/-/utils-3.3.0.tgz#99866c5788539268a06035acd5925b25bb4cedde" @@ -2327,6 +2516,13 @@ dependencies: "@babel/runtime" "^7.6.2" +"@react-stately/utils@^3.4.0": + version "3.4.0" + resolved "https://registry.yarnpkg.com/@react-stately/utils/-/utils-3.4.0.tgz#755ed6e8b5e1fed55c085ac1e27c3628cc7aa197" + integrity sha512-15HNp2nJx3SD/sDOly8poSeD7dIEmvIyfIpcFAyVY/e7FR5kKoeODbor7blNAMEUzP07RKBe0NZpP/D9t0jApQ== + dependencies: + "@babel/runtime" "^7.6.2" + "@react-types/button@^3.4.1": version "3.4.1" resolved "https://registry.yarnpkg.com/@react-types/button/-/button-3.4.1.tgz#715ac9d4997c79233be4d9020b58f85936b8252b" @@ -2334,6 +2530,13 @@ dependencies: "@react-types/shared" "^3.8.0" +"@react-types/button@^3.4.2": + version "3.4.2" + resolved "https://registry.yarnpkg.com/@react-types/button/-/button-3.4.2.tgz#a836a7c8423802203fbe930910a6e7555fc9e367" + integrity sha512-Rz9BymGMnfB4hq0rZpoPsO8c7CpUPZkGrgQN5IcXdI75zycF2B5JEnMh8sj0pJceFKjaKvpBQN2FrfS3/kMysw== + dependencies: + "@react-types/shared" "^3.11.0" + "@react-types/label@^3.5.0": version "3.5.0" resolved "https://registry.yarnpkg.com/@react-types/label/-/label-3.5.0.tgz#c7093871f42c62e1b5523f61a0856a2f58d4cf2a" @@ -2341,6 +2544,13 @@ dependencies: "@react-types/shared" "^3.9.0" +"@react-types/label@^3.5.1": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@react-types/label/-/label-3.5.1.tgz#59d59748940bb8da8b4a5ecf456c831e60f3b9a0" + integrity sha512-iQIu3rzEy9rrIjPLxrotYkwtTz/oiRNKDSzg6s8GfIaqSz5eBb40sdNQcB89fu5zHvNAAauvZO0rTXGBs2E28w== + dependencies: + "@react-types/shared" "^3.11.0" + "@react-types/radio@^3.1.2": version "3.1.2" resolved "https://registry.yarnpkg.com/@react-types/radio/-/radio-3.1.2.tgz#a2a6aed62c0036b9c3647edd9ce944aa80624346" @@ -2348,11 +2558,23 @@ dependencies: "@react-types/shared" "^3.8.0" +"@react-types/radio@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@react-types/radio/-/radio-3.1.3.tgz#a0f1fa61f30087567d24520b2f27246aad1f6643" + integrity sha512-+Z3VxEUwnJbJNQTvqnSMMCr2m9Fx7wSlwnopZamU2/ySy2G+azKFP+MhvHOiotbKv5ipI9kcwlU3qJBju6vTCw== + dependencies: + "@react-types/shared" "^3.11.0" + "@react-types/shared@^3.10.0", "@react-types/shared@^3.10.1", "@react-types/shared@^3.8.0", "@react-types/shared@^3.9.0": version "3.10.1" resolved "https://registry.yarnpkg.com/@react-types/shared/-/shared-3.10.1.tgz#16cd3038361dee63f351fa4d0fd25d90480a149b" integrity sha512-U3dLJtstvOiZ8XLrWdNv9WXuruoDyfIfSXguTs9N0naDdO+M0MIbt/1Hg7Toe43ueAe56GM14IFL+S0/jhv8ow== +"@react-types/shared@^3.11.0": + version "3.11.0" + resolved "https://registry.yarnpkg.com/@react-types/shared/-/shared-3.11.0.tgz#4c7b3c6cad52ee60a36d8b46ab8e47fd12ab854b" + integrity sha512-BLKHwS94m+/731RZ4tgsr0uT7oJCioCNIfzFmZBZuZtASqpXJVsRhn2omweMD0e3uH2atxuwIZbf0WUW3Y6CRw== + "@react-types/slider@^3.0.2": version "3.0.2" resolved "https://registry.yarnpkg.com/@react-types/slider/-/slider-3.0.2.tgz#81313a14caa30ee27feeb66a50a3854a6923ca56" @@ -2360,6 +2582,13 @@ dependencies: "@react-types/shared" "^3.8.0" +"@react-types/slider@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@react-types/slider/-/slider-3.0.3.tgz#eaef8bfee14ac08eae666b2b72134eedb5474cd0" + integrity sha512-4c3ZzlC/ariJLay8z/IspEwYr+VCnECQyZ81hSFKJgOXIH6bOJxfaIsxu+jWZ4GC9NT/d2JVFYE9E5aF1JGQqg== + dependencies: + "@react-types/shared" "^3.11.0" + "@release-it/conventional-changelog@4.1.0": version "4.1.0" resolved "https://registry.yarnpkg.com/@release-it/conventional-changelog/-/conventional-changelog-4.1.0.tgz#86a91259c331c081f49ca915847102da6e454942" @@ -2383,6 +2612,19 @@ reakit-warning "^0.6.2" tailwind-merge "^1.1.1" +"@renderlesskit/react-tailwind@0.0.1-alpha.38": + version "0.0.1-alpha.38" + resolved "https://registry.yarnpkg.com/@renderlesskit/react-tailwind/-/react-tailwind-0.0.1-alpha.38.tgz#8b2f894adaa486bed9c55b5843c985856131f272" + integrity sha512-qaazBOPDTz7LEdgKoJVc2pX02/JZ5IHqW5nmWCfb4uxYDi3K262wE1L+6jv5ZLp1mwYyOiQ4/6+Im3egSR8mug== + dependencies: + "@react-aria/live-announcer" "^3.0.2" + "@renderlesskit/react" "^0.11.0" + reakit "^1.3.11" + reakit-system "^0.15.2" + reakit-utils "^0.15.2" + reakit-warning "^0.6.2" + tailwind-merge "^1.2.0" + "@renderlesskit/react@^0.10.1": version "0.10.1" resolved "https://registry.yarnpkg.com/@renderlesskit/react/-/react-0.10.1.tgz#cbc3acdc6b834fed85f1b6085a74f283917c8993" @@ -2408,6 +2650,31 @@ reakit-utils "^0.15.2" reakit-warning "^0.6.2" +"@renderlesskit/react@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@renderlesskit/react/-/react-0.11.0.tgz#ab0bc77239bb3723e8b0ca13a1914a7265dc64ba" + integrity sha512-hfQZ59DyE7pX5u7JF5UqzAzZdcC69eMxOfQZ4uavEwafPgDbuudtVFubcRY//uOxDPAq2ewKTnRhptcL7sgmlg== + dependencies: + "@chakra-ui/counter" "^1.2.5" + "@chakra-ui/hooks" "^1.8.2" + "@chakra-ui/react-utils" "^1.2.2" + "@chakra-ui/utils" "^1.10.2" + "@radix-ui/popper" "^0.1.0" + "@radix-ui/react-use-rect" "^0.1.1" + "@radix-ui/react-use-size" "^0.1.0" + "@react-aria/i18n" "^3.3.5" + "@react-aria/slider" "^3.0.4" + "@react-aria/spinbutton" "^3.0.2" + "@react-aria/utils" "^3.11.1" + "@react-stately/slider" "^3.0.4" + "@react-types/slider" "^3.0.3" + date-fns "^2.28.0" + raf "^3.4.1" + react-remove-scroll "^2.4.4" + reakit-system "^0.15.2" + reakit-utils "^0.15.2" + reakit-warning "^0.6.2" + "@rushstack/eslint-patch@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.0.tgz#7f698254aadf921e48dda8c0a6b304026b8a9323" @@ -2494,13 +2761,14 @@ lodash "^4.17.15" redent "^3.0.0" -"@testing-library/react@12.1.2": - version "12.1.2" - resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-12.1.2.tgz#f1bc9a45943461fa2a598bb4597df1ae044cfc76" - integrity sha512-ihQiEOklNyHIpo2Y8FREkyD1QAea054U0MVbwH1m8N9TxeFz+KoJ9LkqoKqJlzx2JDm56DVwaJ1r36JYxZM05g== +"@testing-library/react@12.1.3": + version "12.1.3" + resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-12.1.3.tgz#ef26c5f122661ea9b6f672b23dc6b328cadbbf26" + integrity sha512-oCULRXWRrBtC9m6G/WohPo1GLcLesH7T4fuKzRAKn1CWVu9BzXtqLXDDTA6KhFNNtRwLtfSMr20HFl+Qrdrvmg== dependencies: "@babel/runtime" "^7.12.5" "@testing-library/dom" "^8.0.0" + "@types/react-dom" "*" "@testing-library/user-event@13.5.0": version "13.5.0" @@ -2755,10 +3023,10 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.5.tgz#57ca67ec4e57ad9e4ef5a6bab48a15387a1c83e0" integrity sha512-w3mrvNXLeDYV1GKTZorGJQivK6XLCoGwpnyJFbJVK/aTBQUxOCaa/GlFAAN3OTDFcb7h5tiFG+YXCO2By+riZw== -"@types/node@17.0.17": - version "17.0.17" - resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.17.tgz#a8ddf6e0c2341718d74ee3dc413a13a042c45a0c" - integrity sha512-e8PUNQy1HgJGV3iU/Bp2+D/DXh3PYeyli8LgIwsQcs1Ar1LoaWHSIT6Rw+H2rNJmiq6SNWiDytfx8+gYj7wDHw== +"@types/node@17.0.18", "@types/node@>=12": + version "17.0.18" + resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.18.tgz#3b4fed5cfb58010e3a2be4b6e74615e4847f1074" + integrity sha512-eKj4f/BsN/qcculZiRSujogjvp5O/k4lOW5m35NopjZM/QwLOR075a8pJW5hD+Rtdm2DaCVPENS6KtSQnUD6BA== "@types/normalize-package-data@^2.4.0": version "2.4.1" @@ -2780,7 +3048,7 @@ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11" integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== -"@types/react-dom@17.0.11": +"@types/react-dom@*", "@types/react-dom@17.0.11": version "17.0.11" resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.11.tgz#e1eadc3c5e86bdb5f7684e00274ae228e7bcc466" integrity sha512-f96K3k+24RaLGVu/Y2Ng3e1EbZ8/cVJvypZWd7cy0ofCBaf2lcM46xNhycMZ2xGwbBjRql7hOlZ+e2WlJ5MH3Q== @@ -2975,7 +3243,7 @@ acorn@^7.0.0, acorn@^7.1.1: resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.0.0, acorn@^8.2.4, acorn@^8.4.1, acorn@^8.6.0, acorn@^8.7.0: +acorn@^8.0.0, acorn@^8.2.4, acorn@^8.4.1, acorn@^8.7.0: version "8.7.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== @@ -4180,7 +4448,7 @@ data-urls@^2.0.0: whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" -date-fns@^2.26.0: +date-fns@^2.26.0, date-fns@^2.28.0: version "2.28.0" resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.28.0.tgz#9570d656f5fc13143e50c975a3b6bbeb46cd08b2" integrity sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw== @@ -4718,10 +4986,10 @@ eslint-scope@^5.1.1: esrecurse "^4.3.0" estraverse "^4.1.1" -eslint-scope@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.0.tgz#c1f6ea30ac583031f203d65c73e723b01298f153" - integrity sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg== +eslint-scope@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" + integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" @@ -4738,22 +5006,22 @@ eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== -eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.1.0: +eslint-visitor-keys@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz#eee4acea891814cda67a7d8812d9647dd0179af2" integrity sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA== -eslint-visitor-keys@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.2.0.tgz#6fbb166a6798ee5991358bc2daa1ba76cc1254a1" - integrity sha512-IOzT0X126zn7ALX0dwFiUQEdsfzrm4+ISsQS8nukaJXwEyYKRSnEIIDULYg1mCtGp7UUXgfGl7BIolXREQK+XQ== +eslint-visitor-keys@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" + integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== -eslint@8.8.0: - version "8.8.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.8.0.tgz#9762b49abad0cb4952539ffdb0a046392e571a2d" - integrity sha512-H3KXAzQGBH1plhYS3okDix2ZthuYJlQQEGE5k0IKuEqUSiyu4AmxxlJ2MtTYeJ3xB4jDhcYCwGOg2TXYdnDXlQ== +eslint@8.9.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.9.0.tgz#a2a8227a99599adc4342fd9b854cb8d8d6412fdb" + integrity sha512-PB09IGwv4F4b0/atrbcMFboF/giawbBLVC7fyDamk5Wtey4Jh2K+rYaBhCAbUyEI4QzB1ly09Uglc9iCtFaG2Q== dependencies: - "@eslint/eslintrc" "^1.0.5" + "@eslint/eslintrc" "^1.1.0" "@humanwhocodes/config-array" "^0.9.2" ajv "^6.10.0" chalk "^4.0.0" @@ -4761,10 +5029,10 @@ eslint@8.8.0: debug "^4.3.2" doctrine "^3.0.0" escape-string-regexp "^4.0.0" - eslint-scope "^7.1.0" + eslint-scope "^7.1.1" eslint-utils "^3.0.0" - eslint-visitor-keys "^3.2.0" - espree "^9.3.0" + eslint-visitor-keys "^3.3.0" + espree "^9.3.1" esquery "^1.4.0" esutils "^2.0.2" fast-deep-equal "^3.1.3" @@ -4789,23 +5057,14 @@ eslint@8.8.0: text-table "^0.2.0" v8-compile-cache "^2.0.3" -espree@^9.2.0: - version "9.2.0" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.2.0.tgz#c50814e01611c2d0f8bd4daa83c369eabba80dbc" - integrity sha512-oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg== - dependencies: - acorn "^8.6.0" - acorn-jsx "^5.3.1" - eslint-visitor-keys "^3.1.0" - -espree@^9.3.0: - version "9.3.0" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.0.tgz#c1240d79183b72aaee6ccfa5a90bc9111df085a8" - integrity sha512-d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ== +espree@^9.3.1: + version "9.3.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd" + integrity sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ== dependencies: acorn "^8.7.0" acorn-jsx "^5.3.1" - eslint-visitor-keys "^3.1.0" + eslint-visitor-keys "^3.3.0" esprima@^4.0.0, esprima@^4.0.1: version "4.0.1" @@ -6775,10 +7034,10 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== -lint-staged@12.3.3: - version "12.3.3" - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-12.3.3.tgz#0a465962fe53baa2b4b9da50801ead49a910e03b" - integrity sha512-OqcLsqcPOqzvsfkxjeBpZylgJ3SRG1RYqc9LxC6tkt6tNsq1bNVkAixBwX09f6CobcHswzqVOCBpFR1Fck0+ag== +lint-staged@12.3.4: + version "12.3.4" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-12.3.4.tgz#4b1ff8c394c3e6da436aaec5afd4db18b5dac360" + integrity sha512-yv/iK4WwZ7/v0GtVkNb3R82pdL9M+ScpIbJLJNyCXkJ1FGaXvRCOg/SeL59SZtPpqZhE7BD6kPKFLIDUhDx2/w== dependencies: cli-truncate "^3.1.0" colorette "^2.0.16" @@ -8259,7 +8518,7 @@ postcss@8.4.5: picocolors "^1.0.0" source-map-js "^1.0.1" -postcss@8.4.6: +postcss@8.4.6, postcss@^8.4.6: version "8.4.6" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.6.tgz#c5ff3c3c457a23864f32cb45ac9b741498a09ae1" integrity sha512-OovjwIzs9Te46vlEx7+uXB0PLijpwjXGKXjVGGPIGubGpq7uh5Xgf6D6FiJ/SzJMBosHDp6a2hiXOS97iBXcaA== @@ -8510,6 +8769,17 @@ react-remove-scroll@^2.4.3: use-callback-ref "^1.2.3" use-sidecar "^1.0.1" +react-remove-scroll@^2.4.4: + version "2.4.4" + resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.4.4.tgz#2dfff377cf17efc00de39dad51c143fc7a1b9e3e" + integrity sha512-EyC5ohYhaeKbThMSQxuN2i+QC5HqV3AJvNZKEdiATITexu0gHm00+5ko0ltNS1ajYJVeDgVG2baRSCei0AUWlQ== + dependencies: + react-remove-scroll-bar "^2.1.0" + react-style-singleton "^2.1.0" + tslib "^1.0.0" + use-callback-ref "^1.2.3" + use-sidecar "^1.0.1" + react-simple-code-editor@^0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/react-simple-code-editor/-/react-simple-code-editor-0.11.0.tgz#bb57c7c29b570f2ab229872599eac184f5bc673c" @@ -9471,10 +9741,17 @@ tailwind-merge@^1.1.1: dependencies: hashlru "^2.3.0" -tailwindcss@3.0.21: - version "3.0.21" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.0.21.tgz#2b3f2aa579bc8bb91165af9d23f69c5e7bdfab03" - integrity sha512-PGTiaBu/K4QlzjKlLgtz6nVYlrmhy6INPMKYb6RHX18/VXwygFbRdAlJGl2NfXabTQOP62ttKwjQviWLKQuWrA== +tailwind-merge@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/tailwind-merge/-/tailwind-merge-1.2.0.tgz#6e425cf4e379e3620285b99ccab96abb11befdf2" + integrity sha512-XIY4LRLOdOYX6dN+tHlb3K6YE+uxxz9hqDciByQT6dlO4+clDGO6Rl0a4atNdxLpbDIZQFBSxS4r/4/xOKRKkA== + dependencies: + hashlru "^2.3.0" + +tailwindcss@3.0.23: + version "3.0.23" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.0.23.tgz#c620521d53a289650872a66adfcb4129d2200d10" + integrity sha512-+OZOV9ubyQ6oI2BXEhzw4HrqvgcARY38xv3zKcjnWtMIZstEsXdI9xftd1iB7+RbOnj2HOEzkA0OyB5BaSxPQA== dependencies: arg "^5.0.1" chalk "^4.1.2" @@ -9489,6 +9766,7 @@ tailwindcss@3.0.21: is-glob "^4.0.3" normalize-path "^3.0.0" object-hash "^2.2.0" + postcss "^8.4.6" postcss-js "^4.0.0" postcss-load-config "^3.1.0" postcss-nested "5.0.6"