add next-ui

This commit is contained in:
c9s 2022-05-17 01:53:51 +08:00
parent e7010c5188
commit 5a18715144
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54
7 changed files with 549 additions and 14 deletions

View File

@ -9,6 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@nextui-org/react": "^1.0.0-beta.7",
"d3-dsv": "^3.0.1",
"d3-format": "^3.1.0",
"d3-time-format": "^4.1.0",

View File

@ -1,8 +1,11 @@
import '../styles/globals.css'
import type { AppProps } from 'next/app'
import type {AppProps} from 'next/app'
import {NextUIProvider} from '@nextui-org/react'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
function MyApp({Component, pageProps}: AppProps) {
return <NextUIProvider>
<Component {...pageProps} />
</NextUIProvider>
}
export default MyApp

View File

@ -0,0 +1,28 @@
import Document, {DocumentContext, Head, Html, Main, NextScript} from 'next/document';
import {CssBaseline} from '@nextui-org/react';
class MyDocument extends Document {
static async getInitialProps(ctx: DocumentContext) {
const initialProps = await Document.getInitialProps(ctx);
// @ts-ignore
initialProps.styles = <>{initialProps.styles}</>;
return initialProps;
}
render() {
return (
<Html lang="en">
<Head>
{CssBaseline.flush()}
</Head>
<body>
<Main/>
<NextScript/>
</body>
</Html>
);
}
}
export default MyDocument;

View File

@ -1,24 +1,21 @@
import type { NextPage } from 'next'
import type {NextPage} from 'next'
import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Home.module.css'
import TradingViewChart from '../src/TradingViewChart';
// This is for react-financial-chart
// import StockChart from '../src/StockChart';
import Report from '../src/components/Report';
const Home: NextPage = () => {
return (
<div className={styles.container}>
<Head>
<title>Back-Test Report</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
<meta name="description" content="Generated by create next app"/>
<link rel="icon" href="/favicon.ico"/>
</Head>
<main className={styles.main}>
<h2>Back-test Report</h2>
<TradingViewChart/>
<Report>
</Report>
</main>
</div>
)

View File

@ -0,0 +1,19 @@
import React from 'react';
import TradingViewChart from './TradingViewChart';
import { Button } from '@nextui-org/react';
const Report = (props) => {
/*
<Button>Click me</Button>
*/
return <div>
<h2>Back-test Report</h2>
<div>
<TradingViewChart/>
</div>
</div>;
};
export default Report;

View File

@ -10,7 +10,14 @@
core-js-pure "^3.20.2"
regenerator-runtime "^0.13.4"
"@babel/runtime@^7.10.2", "@babel/runtime@^7.16.3":
"@babel/runtime@7.9.6":
version "7.9.6"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz#a9102eb5cadedf3f31d08a9ecf294af7827ea29f"
integrity sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==
dependencies:
regenerator-runtime "^0.13.4"
"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.16.3", "@babel/runtime@^7.6.2":
version "7.17.9"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.9.tgz#d19fbf802d01a8cb6cf053a64e472d42c434ba72"
integrity sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==
@ -32,6 +39,45 @@
minimatch "^3.1.2"
strip-json-comments "^3.1.1"
"@formatjs/ecma402-abstract@1.11.4":
version "1.11.4"
resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.11.4.tgz#b962dfc4ae84361f9f08fbce411b4e4340930eda"
integrity sha512-EBikYFp2JCdIfGEb5G9dyCkTGDmC57KSHhRQOC3aYxoPWVZvfWCDjZwkGYHN7Lis/fmuWl906bnNTJifDQ3sXw==
dependencies:
"@formatjs/intl-localematcher" "0.2.25"
tslib "^2.1.0"
"@formatjs/fast-memoize@1.2.1":
version "1.2.1"
resolved "https://registry.yarnpkg.com/@formatjs/fast-memoize/-/fast-memoize-1.2.1.tgz#e6f5aee2e4fd0ca5edba6eba7668e2d855e0fc21"
integrity sha512-Rg0e76nomkz3vF9IPlKeV+Qynok0r7YZjL6syLz4/urSg0IbjPZCB/iYUMNsYA643gh4mgrX3T7KEIFIxJBQeg==
dependencies:
tslib "^2.1.0"
"@formatjs/icu-messageformat-parser@2.1.0":
version "2.1.0"
resolved "https://registry.yarnpkg.com/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.1.0.tgz#a54293dd7f098d6a6f6a084ab08b6d54a3e8c12d"
integrity sha512-Qxv/lmCN6hKpBSss2uQ8IROVnta2r9jd3ymUEIjm2UyIkUCHVcbUVRGL/KS/wv7876edvsPe+hjHVJ4z8YuVaw==
dependencies:
"@formatjs/ecma402-abstract" "1.11.4"
"@formatjs/icu-skeleton-parser" "1.3.6"
tslib "^2.1.0"
"@formatjs/icu-skeleton-parser@1.3.6":
version "1.3.6"
resolved "https://registry.yarnpkg.com/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.3.6.tgz#4ce8c0737d6f07b735288177049e97acbf2e8964"
integrity sha512-I96mOxvml/YLrwU2Txnd4klA7V8fRhb6JG/4hm3VMNmeJo1F03IpV2L3wWt7EweqNLES59SZ4d6hVOPCSf80Bg==
dependencies:
"@formatjs/ecma402-abstract" "1.11.4"
tslib "^2.1.0"
"@formatjs/intl-localematcher@0.2.25":
version "0.2.25"
resolved "https://registry.yarnpkg.com/@formatjs/intl-localematcher/-/intl-localematcher-0.2.25.tgz#60892fe1b271ec35ba07a2eb018a2dd7bca6ea3a"
integrity sha512-YmLcX70BxoSopLFdLr1Ds99NdlTI2oWoLbaUW2M406lxOIPzE1KQhRz2fPUkq34xVZQaihCoU29h0KK7An3bhA==
dependencies:
tslib "^2.1.0"
"@humanwhocodes/config-array@^0.9.2":
version "0.9.5"
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7"
@ -46,6 +92,28 @@
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
"@internationalized/date@3.0.0-rc.0":
version "3.0.0-rc.0"
resolved "https://registry.yarnpkg.com/@internationalized/date/-/date-3.0.0-rc.0.tgz#7050a46c7abc036e32311b6bda79553dd249a867"
integrity sha512-R8ui3O2G43fZ/z5cBdJuU6nswKtuVrKloDE6utvqKEeGf6igFoiapcjg7jbQ+WvWIDGtdUytOp2fOq/X4efBdQ==
dependencies:
"@babel/runtime" "^7.6.2"
"@internationalized/message@^3.0.6":
version "3.0.6"
resolved "https://registry.yarnpkg.com/@internationalized/message/-/message-3.0.6.tgz#3265be5c5bc70dc56e9a3e59ea08a3f3905ebb31"
integrity sha512-ECk3toFy87I2z5zipRNwdbouvRlIyMKb/FzKj1upMaNS52AKhpvrLgo3CY/ZXQKm4CRIbeh6p/F/Ztt+enhIEA==
dependencies:
"@babel/runtime" "^7.6.2"
intl-messageformat "^9.12.0"
"@internationalized/number@^3.1.0":
version "3.1.0"
resolved "https://registry.yarnpkg.com/@internationalized/number/-/number-3.1.0.tgz#441c262e43344371b17765cf691e54df5ab8726b"
integrity sha512-CEts+2rIB4QveKeeF6xIHdn8aLVvUt5aiarkpCZgtMyYqfqo/ZBELf2UyhvLPGpRxcF24ClCISMTP9BTVreSAg==
dependencies:
"@babel/runtime" "^7.6.2"
"@next/env@12.1.6":
version "12.1.6"
resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.6.tgz#5f44823a78335355f00f1687cfc4f1dafa3eca08"
@ -118,6 +186,36 @@
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.6.tgz#a350caf42975e7197b24b495b8d764eec7e6a36e"
integrity sha512-4ZEwiRuZEicXhXqmhw3+de8Z4EpOLQj/gp+D9fFWo6ii6W1kBkNNvvEx4A90ugppu+74pT1lIJnOuz3A9oQeJA==
"@nextui-org/react@^1.0.0-beta.7":
version "1.0.0-beta.7"
resolved "https://registry.yarnpkg.com/@nextui-org/react/-/react-1.0.0-beta.7.tgz#80e054fd9c886569127b7b76c7467bdbdac21136"
integrity sha512-yy40vZuwbE4JhNfAnrkRsPBf9yAT7d7VjqKhmhnDEixhhNqRRNbjLmeMdAlRAwRA4Zhct8MiECVQi+4Z28OPcQ==
dependencies:
"@babel/runtime" "7.9.6"
"@react-aria/button" "3.4.4"
"@react-aria/checkbox" "3.3.4"
"@react-aria/dialog" "3.1.9"
"@react-aria/focus" "3.5.5"
"@react-aria/i18n" "3.3.9"
"@react-aria/interactions" "3.8.4"
"@react-aria/label" "3.2.5"
"@react-aria/overlays" "3.8.2"
"@react-aria/ssr" "3.1.2"
"@react-aria/table" "3.2.4"
"@react-aria/utils" "3.12.0"
"@react-aria/visually-hidden" "3.2.8"
"@react-stately/checkbox" "3.0.7"
"@react-stately/data" "3.4.7"
"@react-stately/overlays" "3.2.0"
"@react-stately/table" "3.1.3"
"@react-stately/toggle" "3.2.7"
"@react-types/button" "^3.4.5"
"@react-types/checkbox" "3.2.7"
"@react-types/grid" "3.0.4"
"@react-types/overlays" "3.5.5"
"@react-types/shared" "3.12.0"
"@stitches/react" "1.2.8"
"@nodelib/fs.scandir@2.1.5":
version "2.1.5"
resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
@ -139,11 +237,373 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
"@react-aria/button@3.4.4":
version "3.4.4"
resolved "https://registry.yarnpkg.com/@react-aria/button/-/button-3.4.4.tgz#7bd5c8852c51426dd27b3d9d237d2bc34415c4a9"
integrity sha512-Z4jh8WLXNk8BJZ28beXTJWFwnhdjyC6ymby7qD/UDckqbm5OqM18EqYbKmJVF3+MRScunZdGg2aw0jkNpzo+3w==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.5.5"
"@react-aria/interactions" "^3.8.4"
"@react-aria/utils" "^3.12.0"
"@react-stately/toggle" "^3.2.7"
"@react-types/button" "^3.4.5"
"@react-aria/checkbox@3.3.4":
version "3.3.4"
resolved "https://registry.yarnpkg.com/@react-aria/checkbox/-/checkbox-3.3.4.tgz#f59a65bdc41894d47717ede7b31f49a29f539ba7"
integrity sha512-5IJff+hzNR0LJgNyNJPgu8ElTN8Df1GDHDySdD7gP2Sv5916x1eTx+hZlYq4FUyTsOlW6QuynQ0jrQUK4xAnRA==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/label" "^3.2.5"
"@react-aria/toggle" "^3.2.4"
"@react-aria/utils" "^3.12.0"
"@react-stately/checkbox" "^3.0.7"
"@react-stately/toggle" "^3.2.7"
"@react-types/checkbox" "^3.2.7"
"@react-aria/dialog@3.1.9":
version "3.1.9"
resolved "https://registry.yarnpkg.com/@react-aria/dialog/-/dialog-3.1.9.tgz#01f3256f7fb83936361ed38a27aeaeed23ffb87d"
integrity sha512-S/HE6XxBU9AiL4TGBjmz4CAEXjCD9nwvV5ofBKlbfPzgimmmSJj3SVNtsawKIt3KyP9AEioyJydM/vbGfccJlw==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.5.5"
"@react-aria/utils" "^3.12.0"
"@react-stately/overlays" "^3.2.0"
"@react-types/dialog" "^3.3.5"
"@react-aria/focus@3.5.5", "@react-aria/focus@^3.5.3", "@react-aria/focus@^3.5.5":
version "3.5.5"
resolved "https://registry.yarnpkg.com/@react-aria/focus/-/focus-3.5.5.tgz#d5e3eb7af8612e8dafda214746084766e55c4b01"
integrity sha512-scv+jhbQ25JCh36gu8a++edvdEFdlRScdQdnkJOB4NbHbYYfY36APtI70hgQHdfq9dDl5fJ9LMsH9hoF7X3gLw==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/interactions" "^3.8.4"
"@react-aria/utils" "^3.12.0"
"@react-types/shared" "^3.12.0"
clsx "^1.1.1"
"@react-aria/grid@^3.2.4":
version "3.2.6"
resolved "https://registry.yarnpkg.com/@react-aria/grid/-/grid-3.2.6.tgz#ae4fe7e48e4de021640039922b875bc97edfbe57"
integrity sha512-hNQHJkedMMAj+XmqbFW97Nybe5nEh+mRWB5SD7yuIvBLOFxnWid2BUF6zRA6nkZpfsPPTY1YHefgCGzQTFxbNQ==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.5.5"
"@react-aria/i18n" "^3.3.9"
"@react-aria/interactions" "^3.8.4"
"@react-aria/live-announcer" "^3.0.6"
"@react-aria/selection" "^3.8.2"
"@react-aria/utils" "^3.12.0"
"@react-stately/grid" "^3.1.4"
"@react-stately/selection" "^3.9.4"
"@react-stately/virtualizer" "^3.1.9"
"@react-types/checkbox" "^3.2.7"
"@react-types/grid" "^3.0.4"
"@react-types/shared" "^3.12.0"
"@react-aria/i18n@3.3.9", "@react-aria/i18n@^3.3.7", "@react-aria/i18n@^3.3.9":
version "3.3.9"
resolved "https://registry.yarnpkg.com/@react-aria/i18n/-/i18n-3.3.9.tgz#58c69e650bd00e94270e2dc31ad85ffd2ee10f04"
integrity sha512-EOqiOu84NYH/CW0s/tt3yDqDsjHlrHdi5qzrOGpGN/BvxtA/4UkMBdi8TTKXdRk8oHUIdNW1z5mZxzxkLDy1sA==
dependencies:
"@babel/runtime" "^7.6.2"
"@internationalized/date" "3.0.0-rc.0"
"@internationalized/message" "^3.0.6"
"@internationalized/number" "^3.1.0"
"@react-aria/ssr" "^3.1.2"
"@react-aria/utils" "^3.12.0"
"@react-types/shared" "^3.12.0"
"@react-aria/interactions@3.8.4", "@react-aria/interactions@^3.8.2", "@react-aria/interactions@^3.8.4":
version "3.8.4"
resolved "https://registry.yarnpkg.com/@react-aria/interactions/-/interactions-3.8.4.tgz#f3704470b70f150b753bba01a8714f97d6299906"
integrity sha512-6EHFKK8pmjSJSKcBbduijPETKqE669XZ1VaEY8ubr6VnlVhCszvKHoxpU384CkNiDNLJOVkK6HDzPXsn3lxhng==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/utils" "^3.12.0"
"@react-types/shared" "^3.12.0"
"@react-aria/label@3.2.5", "@react-aria/label@^3.2.5":
version "3.2.5"
resolved "https://registry.yarnpkg.com/@react-aria/label/-/label-3.2.5.tgz#f1aafc2531540e56df1221233bab343fcfb84dc2"
integrity sha512-MkcPa7Ps/BsWTctH7IgVWtYENwrByfYMPmYdZCgotI0MiI6wK4LWwRaUQmfc7mWwJ7ns2NPyBRwrzJT4+RRbew==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/utils" "^3.12.0"
"@react-types/label" "^3.5.4"
"@react-types/shared" "^3.12.0"
"@react-aria/live-announcer@^3.0.4", "@react-aria/live-announcer@^3.0.6":
version "3.0.6"
resolved "https://registry.yarnpkg.com/@react-aria/live-announcer/-/live-announcer-3.0.6.tgz#cf57ed51b5f693af28f41a19e91086109154fec7"
integrity sha512-dXd5knYAFQPNr4ApxGwHXIDBuO50d9koat1ViFI22yS1QJF3y1dcIkBHfiAWIUtGr8AbRbWDZZnHtKrfPl25Zg==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/utils" "^3.12.0"
"@react-aria/visually-hidden" "^3.2.8"
"@react-aria/overlays@3.8.2":
version "3.8.2"
resolved "https://registry.yarnpkg.com/@react-aria/overlays/-/overlays-3.8.2.tgz#630177cdd20bd6aa20e3516485d90003390d896e"
integrity sha512-HeOkYUILH4CrMVv3HkTrcK1jeZ2NJ7tS39tTciEGZ9JO1d8nUJ5jzDGGiQ587T9YWc1EYxiA+fbnn5Krxyq8IQ==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/i18n" "^3.3.9"
"@react-aria/interactions" "^3.8.4"
"@react-aria/utils" "^3.12.0"
"@react-aria/visually-hidden" "^3.2.8"
"@react-stately/overlays" "^3.2.0"
"@react-types/button" "^3.4.5"
"@react-types/overlays" "^3.5.5"
"@react-types/shared" "^3.12.0"
dom-helpers "^3.3.1"
"@react-aria/selection@^3.8.0", "@react-aria/selection@^3.8.2":
version "3.8.2"
resolved "https://registry.yarnpkg.com/@react-aria/selection/-/selection-3.8.2.tgz#0e64c412ee8e73268994e72f4cb28f5b1100aff9"
integrity sha512-sBkSza8kT06tUKzIX68H2k+svYNCBOwhHmU0gbx164CmitCLk/akDGIds3LeoA9FhFFXw6/5CuLp6SNhmqlLWw==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.5.5"
"@react-aria/i18n" "^3.3.9"
"@react-aria/interactions" "^3.8.4"
"@react-aria/utils" "^3.12.0"
"@react-stately/collections" "^3.3.8"
"@react-stately/selection" "^3.9.4"
"@react-types/shared" "^3.12.0"
"@react-aria/ssr@3.1.2", "@react-aria/ssr@^3.1.2":
version "3.1.2"
resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.1.2.tgz#665a6fd56385068c7417922af2d0d71b0618e52d"
integrity sha512-amXY11ImpokvkTMeKRHjsSsG7v1yzzs6yeqArCyBIk60J3Yhgxwx9Cah+Uu/804ATFwqzN22AXIo7SdtIaMP+g==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/table@3.2.4":
version "3.2.4"
resolved "https://registry.yarnpkg.com/@react-aria/table/-/table-3.2.4.tgz#6d11265983f5a553b0c0b1a849bf6c26161d19d8"
integrity sha512-2t/EGyNAYsU841ZPLYUkwN+tdXztccgllUJ9qL5a0RJm7DYKKFHHsAYWmnV5ONj/tXqNZQfoqJSzsL6wpTXOZw==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.5.3"
"@react-aria/grid" "^3.2.4"
"@react-aria/i18n" "^3.3.7"
"@react-aria/interactions" "^3.8.2"
"@react-aria/live-announcer" "^3.0.4"
"@react-aria/selection" "^3.8.0"
"@react-aria/utils" "^3.11.3"
"@react-stately/table" "^3.1.3"
"@react-stately/virtualizer" "^3.1.8"
"@react-types/checkbox" "^3.2.6"
"@react-types/grid" "^3.0.3"
"@react-types/shared" "^3.11.2"
"@react-types/table" "^3.1.3"
"@react-aria/toggle@^3.2.4":
version "3.2.4"
resolved "https://registry.yarnpkg.com/@react-aria/toggle/-/toggle-3.2.4.tgz#b4cb71782c4f4bfbfa858a37c1fd71d6470e490f"
integrity sha512-q1NiUKkWt9trgVj/VvKrTpe/tvNcsM9ie5JJVxikF4moPCyIqxRWaDzi2/g/63c1I6LZDMVT4v6V5tk9xgfuiQ==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.5.5"
"@react-aria/interactions" "^3.8.4"
"@react-aria/utils" "^3.12.0"
"@react-stately/toggle" "^3.2.7"
"@react-types/checkbox" "^3.2.7"
"@react-types/shared" "^3.12.0"
"@react-types/switch" "^3.1.6"
"@react-aria/utils@3.12.0", "@react-aria/utils@^3.11.3", "@react-aria/utils@^3.12.0":
version "3.12.0"
resolved "https://registry.yarnpkg.com/@react-aria/utils/-/utils-3.12.0.tgz#39d0f37525e050356c4de725c85d9b10e7a5c0d9"
integrity sha512-1TMrE7UpgTgQHgW3z0r6Zo4CTUDwNsZEwzg+mQVub8ZalonhuNs5OrulUn+lRIsGELNktGNkeh/29WsS1Od8eg==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/ssr" "^3.1.2"
"@react-stately/utils" "^3.4.1"
"@react-types/shared" "^3.12.0"
clsx "^1.1.1"
"@react-aria/visually-hidden@3.2.8", "@react-aria/visually-hidden@^3.2.8":
version "3.2.8"
resolved "https://registry.yarnpkg.com/@react-aria/visually-hidden/-/visually-hidden-3.2.8.tgz#1f3531f065752f642089a584a402de0fa1daa288"
integrity sha512-SLBID66sUZrCdxaxLhgxypF/UyGuFVFGc+VhqmFi9QacDfAQcoT3DQyXEaKUIDMVtwAtSuWl7BpuooEctKBe6Q==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/interactions" "^3.8.4"
"@react-aria/utils" "^3.12.0"
clsx "^1.1.1"
"@react-stately/checkbox@3.0.7", "@react-stately/checkbox@^3.0.7":
version "3.0.7"
resolved "https://registry.yarnpkg.com/@react-stately/checkbox/-/checkbox-3.0.7.tgz#c3c77832e90087d20a4facc66aae8a22ce59b447"
integrity sha512-dBY4x3qWoCO2IFeTVovnq6xkWa9ycqdNNws+gbYt79EwFdKSIfH1iTuFrv9DIwTU2N72quFCC/xQ23+a1/ZqSg==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-stately/toggle" "^3.2.7"
"@react-stately/utils" "^3.4.1"
"@react-types/checkbox" "^3.2.7"
"@react-stately/collections@^3.3.7", "@react-stately/collections@^3.3.8":
version "3.3.8"
resolved "https://registry.yarnpkg.com/@react-stately/collections/-/collections-3.3.8.tgz#f0f9def181fab8b2551dfe0c0fc59760fa6eaf05"
integrity sha512-R4RXLc0aaCZaCTh3NT/lmpMtVqP3HIdi2d1kyq4/uIC8APUFzEoUMEV+P0k3nQ5v6mO/UCkP3ePdOywnJBm/Gg==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-types/shared" "^3.12.0"
"@react-stately/data@3.4.7":
version "3.4.7"
resolved "https://registry.yarnpkg.com/@react-stately/data/-/data-3.4.7.tgz#81319f7dcccd33a4a7f66a726d8ac92c919b451d"
integrity sha512-ShxXFEjrtktH9e8u/7Z/lifPjE5T11Tgx5+DBKjZ/kpH3xbHZIpd1riaowpLxeCWt2bYwgoQYxmrL6PA5NclIg==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-types/shared" "^3.12.0"
"@react-stately/grid@^3.1.3", "@react-stately/grid@^3.1.4":
version "3.1.4"
resolved "https://registry.yarnpkg.com/@react-stately/grid/-/grid-3.1.4.tgz#9ef4e6f8ea2dd9446fe6d9212704b0af2addc113"
integrity sha512-f0BjDSGcPFHI7x6PmLwfMMhFj1ttKD3QKZgTrSIhmPnZqY/LEk1XFq8RFdnk5bNmt4JwiEDbytS7W4HbSTIe3g==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-stately/selection" "^3.9.4"
"@react-types/grid" "^3.0.4"
"@react-types/shared" "^3.12.0"
"@react-stately/overlays@3.2.0", "@react-stately/overlays@^3.2.0":
version "3.2.0"
resolved "https://registry.yarnpkg.com/@react-stately/overlays/-/overlays-3.2.0.tgz#4bd2b42e28caa527b7400a7c7d135a44f286ac57"
integrity sha512-Ys+dfhFVyRGFRvvE35+Ychvgk868BDry9Td5rfvjVEwx6x8jaNShbonoo8CYYUkkJhaEnRaiJNG+0OGRCpvjTA==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-stately/utils" "^3.4.1"
"@react-types/overlays" "^3.5.5"
"@react-stately/selection@^3.9.3", "@react-stately/selection@^3.9.4":
version "3.9.4"
resolved "https://registry.yarnpkg.com/@react-stately/selection/-/selection-3.9.4.tgz#5903a6bb59ef1ae51c014c63c33617c93f6530a2"
integrity sha512-hgJ4raHFQMfQ1aQYgL+nRpQgA7GdPDh9esIeB8Ih+yS783cV4vyyqKxuLd2u9W4cilnEkgXjrI5Z21RU86jzEg==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-stately/collections" "^3.3.8"
"@react-stately/utils" "^3.4.1"
"@react-types/shared" "^3.12.0"
"@react-stately/table@3.1.3", "@react-stately/table@^3.1.3":
version "3.1.3"
resolved "https://registry.yarnpkg.com/@react-stately/table/-/table-3.1.3.tgz#23583a2bff89f74b84ced3398edeaba1efd70c04"
integrity sha512-HSsamFabtCSHib4A5rxXBtfKPd0InXjXSoaxUNi6RLOyptULMA06q1ShbWDEijTYGQI5Pfevs/5bgLonj0enbg==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-stately/collections" "^3.3.7"
"@react-stately/grid" "^3.1.3"
"@react-stately/selection" "^3.9.3"
"@react-types/grid" "^3.0.3"
"@react-types/shared" "^3.11.2"
"@react-types/table" "^3.1.3"
"@react-stately/toggle@3.2.7", "@react-stately/toggle@^3.2.7":
version "3.2.7"
resolved "https://registry.yarnpkg.com/@react-stately/toggle/-/toggle-3.2.7.tgz#4d15261b438f89ea78bf3c08c812e0f854e0373f"
integrity sha512-McKc2wIp1z7Dw6EqQgOgjr2QnKR+LWXppZjdx30K4hnCiP6cXZp66DmR2ngekPrtOYDN6Xdqbty/Ez7kiJxmnQ==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-stately/utils" "^3.4.1"
"@react-types/checkbox" "^3.2.7"
"@react-types/shared" "^3.12.0"
"@react-stately/utils@^3.4.1":
version "3.4.1"
resolved "https://registry.yarnpkg.com/@react-stately/utils/-/utils-3.4.1.tgz#56f049aa1704d338968b5973c796ee606e9c0c62"
integrity sha512-mjFbKklj/W8KRw1CQSpUJxHd7lhUge4i00NwJTwGxbzmiJgsTWlKKS/1rBf48ey9hUBopXT5x5vG/AxQfWTQug==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-stately/virtualizer@^3.1.8", "@react-stately/virtualizer@^3.1.9":
version "3.1.9"
resolved "https://registry.yarnpkg.com/@react-stately/virtualizer/-/virtualizer-3.1.9.tgz#8f885c966747b36c5ed9df76020aeccebd35034a"
integrity sha512-to0CQU4l08ZI/Ar3h/BeDqFTjK0nJUfhdk8mTpP+bV0RGBQnDwqCnrLFdQCc3Xl8fbYWa+Y6pvSUqJ0rq6Bp7Q==
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/utils" "^3.12.0"
"@react-types/shared" "^3.12.0"
"@react-types/button@^3.4.5":
version "3.4.5"
resolved "https://registry.yarnpkg.com/@react-types/button/-/button-3.4.5.tgz#ba258ad274d9e1ad775662edcde0839c1c24ecdb"
integrity sha512-wqOw3LvqFRJl6lDhije7koTINWBv+LRBKAlGOri2ddw3VDqvm0/zu2ENDIP/XX0FtUzuffoc1U5YgxmBlXd7gQ==
dependencies:
"@react-types/shared" "^3.12.0"
"@react-types/checkbox@3.2.7", "@react-types/checkbox@^3.2.6", "@react-types/checkbox@^3.2.7":
version "3.2.7"
resolved "https://registry.yarnpkg.com/@react-types/checkbox/-/checkbox-3.2.7.tgz#fa65452931942bfccf804114b6ef4cd086b67226"
integrity sha512-c/hJwVRr7JoakyU39hUQstCc/0uPPvE+Eie8SspV2u9umSs7dYiUBc7F2wpboWIdNkQUEHG/Uq/Vs6/hk+yrkg==
dependencies:
"@react-types/shared" "^3.12.0"
"@react-types/dialog@^3.3.5":
version "3.3.5"
resolved "https://registry.yarnpkg.com/@react-types/dialog/-/dialog-3.3.5.tgz#8b2fe99d7c535d8b09ef439f936462e0cd1231cf"
integrity sha512-K77big4JVDy6nhIv5V8PbnfHOeTK8JeGBLAEhl1DGCgCnPhq2eJ/R342rSjQobSyyaVUAYu1Z4AW4jjBSM17ug==
dependencies:
"@react-types/overlays" "^3.5.5"
"@react-types/shared" "^3.12.0"
"@react-types/grid@3.0.4", "@react-types/grid@^3.0.3", "@react-types/grid@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@react-types/grid/-/grid-3.0.4.tgz#c372456b49281577aec24a6480442f8c448a1f68"
integrity sha512-Ot6V/2PajcqBq2GH/YrsuiA8EqEmTcuvICfPd5RpjbLDFhhHbxOFsgOrXX2Qr33huu96dAhhEEEvOuVKbLcBdQ==
dependencies:
"@react-types/shared" "^3.12.0"
"@react-types/label@^3.5.4":
version "3.5.4"
resolved "https://registry.yarnpkg.com/@react-types/label/-/label-3.5.4.tgz#56bf50332845a161761902876cc5e6034521b48b"
integrity sha512-LuShOdEYokzn58SKUIo7kQdN3CV5Rs+HCxmvix4+Uw6BAYG9/aqqoKKolTA9klbM8rvvEzDqFzNZZHeMTBoN6w==
dependencies:
"@react-types/shared" "^3.12.0"
"@react-types/overlays@3.5.5", "@react-types/overlays@^3.5.5":
version "3.5.5"
resolved "https://registry.yarnpkg.com/@react-types/overlays/-/overlays-3.5.5.tgz#64c20eae8bce39618431205a2a695a8cd7b57473"
integrity sha512-TEfn+hv3E6iX1gEjJ6+Gl3r0+WCIPPMhPjTidU6AKqhS0phtcITQ8gPovr0PYEP4Ub8QuT0ttZWu0nWZP3IxIg==
dependencies:
"@react-types/shared" "^3.12.0"
"@react-types/shared@3.12.0", "@react-types/shared@^3.11.2", "@react-types/shared@^3.12.0":
version "3.12.0"
resolved "https://registry.yarnpkg.com/@react-types/shared/-/shared-3.12.0.tgz#31a53fcec5c3159fd0d5c67f7e3f3876c7d19908"
integrity sha512-faGr9xOjtMlkQPfA1i36iUmWS/hpPPtxIwdAtBi6p7rCejmShMLFZ2YN4DxzbJUCVubF2S1+rMMIKuXG17DkEw==
"@react-types/switch@^3.1.6":
version "3.1.6"
resolved "https://registry.yarnpkg.com/@react-types/switch/-/switch-3.1.6.tgz#75c59ae46f7289bc3b1a6a97e111f346d6ac3f4c"
integrity sha512-H9ECjBeEK82tGGiCNx2gQfrx5nJEviICAvUCfemLCS4zdUxs9NUYxIfI12v1Bl5NJ1dD0Cyc0hb4haiB+mX1ig==
dependencies:
"@react-types/checkbox" "^3.2.7"
"@react-types/shared" "^3.12.0"
"@react-types/table@^3.1.3":
version "3.1.3"
resolved "https://registry.yarnpkg.com/@react-types/table/-/table-3.1.3.tgz#45e3b0c0a1d6a14db32c2dbeb9e5d15e5f01940a"
integrity sha512-l5ZmoPEnnMNUOW/mC7x/HDXC0CmHGz5IpWBPbV1aJtQCxRD42yosMaP8pT48EPZjupSeEuUGVFW2sZQlEjHbwg==
dependencies:
"@react-types/grid" "^3.0.3"
"@react-types/shared" "^3.11.2"
"@rushstack/eslint-patch@^1.1.3":
version "1.1.3"
resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.3.tgz#6801033be7ff87a6b7cadaf5b337c9f366a3c4b0"
integrity sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw==
"@stitches/react@1.2.8":
version "1.2.8"
resolved "https://registry.yarnpkg.com/@stitches/react/-/react-1.2.8.tgz#954f8008be8d9c65c4e58efa0937f32388ce3a38"
integrity sha512-9g9dWI4gsSVe8bNLlb+lMkBYsnIKCZTmvqvDG+Avnn69XfmHZKiaMrx7cgTaddq7aTPPmXiTsbFcUy0xgI4+wA==
"@types/d3-dsv@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@types/d3-dsv/-/d3-dsv-3.0.0.tgz#f3c61fb117bd493ec0e814856feb804a14cfc311"
@ -390,6 +850,11 @@ chalk@^4.0.0:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
clsx@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188"
integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==
color-convert@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
@ -526,6 +991,13 @@ doctrine@^3.0.0:
dependencies:
esutils "^2.0.2"
dom-helpers@^3.3.1:
version "3.4.0"
resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.4.0.tgz#e9b369700f959f62ecde5a6babde4bccd9169af8"
integrity sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==
dependencies:
"@babel/runtime" "^7.1.2"
emoji-regex@^9.2.2:
version "9.2.2"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
@ -1066,6 +1538,16 @@ internal-slot@^1.0.3:
resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009"
integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==
intl-messageformat@^9.12.0:
version "9.13.0"
resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-9.13.0.tgz#97360b73bd82212e4f6005c712a4a16053165468"
integrity sha512-7sGC7QnSQGa5LZP7bXLDhVDtQOeKGeBFGHF2Y8LVBwYZoQZCgWeKoPGTa5GMG8g/TzDgeXuYJQis7Ggiw2xTOw==
dependencies:
"@formatjs/ecma402-abstract" "1.11.4"
"@formatjs/fast-memoize" "1.2.1"
"@formatjs/icu-messageformat-parser" "2.1.0"
tslib "^2.1.0"
is-bigint@^1.0.1:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
@ -1753,6 +2235,11 @@ tslib@^1.8.1:
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
tslib@^2.1.0:
version "2.4.0"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
tsutils@^3.21.0:
version "3.21.0"
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"