├── .gitignore
├── .npmignore
├── .prettierrc
├── README.md
├── example
├── .eslintrc.json
├── .gitignore
├── README.md
├── components
│ └── ColorSwitcher.js
├── next.config.js
├── package.json
├── pages
│ ├── _app.js
│ └── index.js
├── public
│ ├── favicon.ico
│ └── vercel.svg
└── yarn.lock
├── global.d.ts
├── package.json
├── renovate.json
├── src
├── ColorModeScript.tsx
├── ColorModeStyles.tsx
├── index.ts
├── useColorModeValue.tsx
└── useColorSwitcher.tsx
├── tsconfig.json
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | lerna-debug.log*
8 |
9 | # Diagnostic reports (https://nodejs.org/api/report.html)
10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11 |
12 | # Runtime data
13 | pids
14 | *.pid
15 | *.seed
16 | *.pid.lock
17 |
18 | # Directory for instrumented libs generated by jscoverage/JSCover
19 | lib-cov
20 |
21 | # Coverage directory used by tools like istanbul
22 | coverage
23 | *.lcov
24 |
25 | # nyc test coverage
26 | .nyc_output
27 |
28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29 | .grunt
30 |
31 | # Bower dependency directory (https://bower.io/)
32 | bower_components
33 |
34 | # node-waf configuration
35 | .lock-wscript
36 |
37 | # Compiled binary addons (https://nodejs.org/api/addons.html)
38 | build/Release
39 |
40 | # Dependency directories
41 | node_modules/
42 | jspm_packages/
43 |
44 | # TypeScript v1 declaration files
45 | typings/
46 |
47 | # TypeScript cache
48 | *.tsbuildinfo
49 |
50 | # Optional npm cache directory
51 | .npm
52 |
53 | # Optional eslint cache
54 | .eslintcache
55 |
56 | # Microbundle cache
57 | .rpt2_cache/
58 | .rts2_cache_cjs/
59 | .rts2_cache_es/
60 | .rts2_cache_umd/
61 |
62 | # Optional REPL history
63 | .node_repl_history
64 |
65 | # Output of 'npm pack'
66 | *.tgz
67 |
68 | # Yarn Integrity file
69 | .yarn-integrity
70 |
71 | # dotenv environment variables file
72 | .env
73 | .env.test
74 |
75 | # parcel-bundler cache (https://parceljs.org/)
76 | .cache
77 |
78 | # Next.js build output
79 | .next
80 |
81 | # Nuxt.js build / generate output
82 | .nuxt
83 | dist
84 |
85 | # Gatsby files
86 | .cache/
87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js
88 | # https://nextjs.org/blog/next-9-1#public-directory-support
89 | # public
90 |
91 | # vuepress build output
92 | .vuepress/dist
93 |
94 | # Serverless directories
95 | .serverless/
96 |
97 | # FuseBox cache
98 | .fusebox/
99 |
100 | # DynamoDB Local files
101 | .dynamodb/
102 |
103 | # TernJS port file
104 | .tern-port
105 |
106 | # build
107 | lib/
108 |
109 | .vscode/
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | # sources
2 | preview
3 | src
4 |
5 | # locks
6 | package-lock.json
7 | yarn-lock.json
8 |
9 | # configs
10 | tslint.json
11 | tsconfig.json
12 | .prettierrc
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "printWidth": 140,
3 | "tabWidth": 2,
4 | "useTabs": false,
5 | "semi": false,
6 | "singleQuote": true,
7 | "trailingComma": "all"
8 | }
9 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
Next.js color-mode
3 |
A helper for creating non-flickering and accessible themed applications
4 |
5 |
6 |
7 |
12 |
13 |
14 |
15 | ## Features
16 |
17 | - [x] 🙉 Non-flickering
18 | - [x] ♿ Accessible (supports `prefers-color-scheme`)
19 | - [x] 🐱 Dynamic theme values
20 | - [x] 🐄 No additional dependencies
21 | - [x] 🧠 Agnostic to the way you style your app
22 |
23 | ## Installation
24 |
25 | ```
26 | $ npm i --save nextjs-color-mode
27 |
28 | # or
29 |
30 | $ yarn add nextjs-color-mode
31 | ```
32 |
33 | ## Setup
34 | First, you need to import `ColorModeScript` from `nextjs-color-mode` and place it somewhere in the `_app.js` file.
35 | > If you're using styled-components or emotion, you can put the contents of `criticalThemeCss` to GlobalStyles. Just make sure it's critical css, and at the top of your global styles.
36 |
37 | ```jsx
38 | // _app.js
39 |
40 | import Head from 'next/head'
41 | import { ColorModeScript } from 'nextjs-color-mode'
42 |
43 | const criticalThemeCss = `
44 | .next-light-theme {
45 | --background: #fff;
46 | --text: #000;
47 | }
48 |
49 | .next-dark-theme {
50 | --background: #000;
51 | --text: #fff;
52 | }
53 |
54 | body {
55 | background: var(--background);
56 | color: var(--text);
57 | }
58 | `
59 |
60 | function MyApp({ Component, pageProps }) {
61 | return (
62 | <>
63 |
64 |
65 |
66 |
67 |
68 | >
69 | )
70 | }
71 | ```
72 |
73 | ## Theme switcher (`useColorSwitcher`)
74 | To implement theme switcher, you should use the `useColorSwitcher` hook
75 | > Note that every component that explicitly uses this hook should be rendered only on the client-side. [Check out how we do this in the example](https://github.com/bmstefanski/next-color-mode/blob/master/example/pages/index.js#L5)
76 |
77 | ```jsx
78 | import { ColorModeStyles, useColorModeValue, useColorSwitcher } from 'nextjs-color-mode'
79 |
80 | export default function ColorSwitcher(props) {
81 | const { toggleTheme, colorMode } = useColorSwitcher()
82 |
83 | return (
84 |
87 | )
88 | }
89 | ```
90 | ```tsx
91 | function useColorSwitcher(): {
92 | colorMode: string;
93 | changeTheme: (colorMode: 'light' | 'dark') => void;
94 | toggleTheme: () => void;
95 | };
96 |
97 | ```
98 |
99 | ## Using dynamic variables (`useColorModeValue`)
100 | Sometimes you may want to omit the design system or need to hotfix something fast. Here's the solution for that.
101 |
102 | ```jsx
103 | export default function SomeComponent() {
104 | const [boxBgColor, boxBgCss] = useColorModeValue('box-color', 'blue', 'red')
105 | const [boxBorderColor, boxBorderCss] = useColorModeValue('box-border-color', 'red', 'blue')
106 | // the first item of the array returns CSS variable name
107 | // and the second one returns a special object that then gets parsed into a themable CSS variable
108 |
109 | return (
110 | <>
111 |
112 |
113 | >
114 | )
115 | }
116 | ```
117 | ```tsx
118 | function useColorModeValue(name: string, lightThemeValue: string, darkThemeValue: string);
119 | ```
120 | > Do not use the same name twice, it may cause variable overriding and is hard to debug.
121 | Also using things like unique id, UUID or any randomly generated set of characters is a bad idea - it will display mismatch content warning and make it even harder to debug!
122 |
123 |
124 | ## Support
125 |
126 | If you're looking for help or simply want to share your thoughts about the project, we encourage you to join our Discord community. Here's the link: [https://blazity.com/discord](https://blazity.com/discord). It's a space where we exchange ideas and help one another. Everyone's input is appreciated, and we look forward to welcoming you.
127 |
--------------------------------------------------------------------------------
/example/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/example/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 |
27 | # local env files
28 | .env.local
29 | .env.development.local
30 | .env.test.local
31 | .env.production.local
32 |
33 | # vercel
34 | .vercel
35 |
--------------------------------------------------------------------------------
/example/README.md:
--------------------------------------------------------------------------------
1 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2 |
3 | ## Getting Started
4 |
5 | First, run the development server:
6 |
7 | ```bash
8 | npm run dev
9 | # or
10 | yarn dev
11 | ```
12 |
13 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
14 |
15 | You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
16 |
17 | [API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
18 |
19 | The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
20 |
21 | ## Learn More
22 |
23 | To learn more about Next.js, take a look at the following resources:
24 |
25 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
26 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
27 |
28 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
29 |
30 | ## Deploy on Vercel
31 |
32 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
33 |
34 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
35 |
--------------------------------------------------------------------------------
/example/components/ColorSwitcher.js:
--------------------------------------------------------------------------------
1 | import { ColorModeStyles, useColorModeValue, useColorSwitcher } from 'nextjs-color-mode'
2 |
3 | export default function ColorSwitcher(props) {
4 | const { toggleTheme, colorMode } = useColorSwitcher()
5 | const [buttonColor, buttonCss] = useColorModeValue('button-color', 'green', 'yellow')
6 |
7 | return (
8 | <>
9 |
10 |
13 | >
14 | )
15 | }
16 |
--------------------------------------------------------------------------------
/example/next.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | reactStrictMode: true,
3 | }
4 |
--------------------------------------------------------------------------------
/example/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "example",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint"
10 | },
11 | "dependencies": {
12 | "next": "12.1.0",
13 | "nextjs-color-mode": "^1.0.3",
14 | "react": "17.0.2",
15 | "react-dom": "17.0.2"
16 | },
17 | "devDependencies": {
18 | "eslint": "8.42.0",
19 | "eslint-config-next": "11.1.0"
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/example/pages/_app.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import Head from 'next/head'
3 | import { ColorModeScript } from 'nextjs-color-mode'
4 |
5 | const criticalCss = `
6 | .next-light-theme {
7 | --background: #fff;
8 | --text: #000;
9 | }
10 |
11 | .next-dark-theme {
12 | --background: #000;
13 | --text: #fff;
14 | }
15 |
16 | body {
17 | background: var(--background);
18 | color: var(--text);
19 | }
20 | `
21 |
22 | function MyApp({ Component, pageProps }) {
23 | return (
24 | <>
25 |
26 |
27 |
28 |
29 |
30 | >
31 | )
32 | }
33 |
34 | export default MyApp
35 |
--------------------------------------------------------------------------------
/example/pages/index.js:
--------------------------------------------------------------------------------
1 | import { ColorModeStyles, useColorModeValue } from 'nextjs-color-mode'
2 | import { useCallback, useState } from 'react'
3 | import dynamic from 'next/dynamic'
4 |
5 | const ColorSwitcher = dynamic(() => import('../components/ColorSwitcher'), { ssr: false })
6 |
7 | export default function Home() {
8 | const [boxColor, boxCss] = useColorModeValue('box-color', 'blue', 'red')
9 |
10 | return (
11 | <>
12 |
13 |
14 | hello world
15 |
16 |
17 |
18 | >
19 | )
20 | }
21 |
--------------------------------------------------------------------------------
/example/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Blazity/nextjs-color-mode/2979dc67c59f57e11197c045035a2db51f683e94/example/public/favicon.ico
--------------------------------------------------------------------------------
/example/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/example/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/runtime-corejs3@^7.10.2":
6 | version "7.15.3"
7 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.15.3.tgz#28754263988198f2a928c09733ade2fb4d28089d"
8 | integrity sha512-30A3lP+sRL6ml8uhoJSs+8jwpKzbw8CqBvDc1laeptxPm5FahumJxirigcbD2qTs71Sonvj1cyZB0OKGAmxQ+A==
9 | dependencies:
10 | core-js-pure "^3.16.0"
11 | regenerator-runtime "^0.13.4"
12 |
13 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2":
14 | version "7.15.3"
15 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.3.tgz#2e1c2880ca118e5b2f9988322bd8a7656a32502b"
16 | integrity sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==
17 | dependencies:
18 | regenerator-runtime "^0.13.4"
19 |
20 | "@eslint-community/eslint-utils@^4.2.0":
21 | version "4.4.0"
22 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
23 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
24 | dependencies:
25 | eslint-visitor-keys "^3.3.0"
26 |
27 | "@eslint-community/regexpp@^4.4.0":
28 | version "4.5.1"
29 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884"
30 | integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==
31 |
32 | "@eslint/eslintrc@^2.0.3":
33 | version "2.0.3"
34 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331"
35 | integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==
36 | dependencies:
37 | ajv "^6.12.4"
38 | debug "^4.3.2"
39 | espree "^9.5.2"
40 | globals "^13.19.0"
41 | ignore "^5.2.0"
42 | import-fresh "^3.2.1"
43 | js-yaml "^4.1.0"
44 | minimatch "^3.1.2"
45 | strip-json-comments "^3.1.1"
46 |
47 | "@eslint/js@8.42.0":
48 | version "8.42.0"
49 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.42.0.tgz#484a1d638de2911e6f5a30c12f49c7e4a3270fb6"
50 | integrity sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==
51 |
52 | "@humanwhocodes/config-array@^0.11.10":
53 | version "0.11.10"
54 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2"
55 | integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==
56 | dependencies:
57 | "@humanwhocodes/object-schema" "^1.2.1"
58 | debug "^4.1.1"
59 | minimatch "^3.0.5"
60 |
61 | "@humanwhocodes/module-importer@^1.0.1":
62 | version "1.0.1"
63 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
64 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
65 |
66 | "@humanwhocodes/object-schema@^1.2.1":
67 | version "1.2.1"
68 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
69 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
70 |
71 | "@next/env@12.1.0":
72 | version "12.1.0"
73 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.0.tgz#73713399399b34aa5a01771fb73272b55b22c314"
74 | integrity sha512-nrIgY6t17FQ9xxwH3jj0a6EOiQ/WDHUos35Hghtr+SWN/ntHIQ7UpuvSi0vaLzZVHQWaDupKI+liO5vANcDeTQ==
75 |
76 | "@next/eslint-plugin-next@11.1.0":
77 | version "11.1.0"
78 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-11.1.0.tgz#bee19a333e3d2d81d381b9c2fdf2df713f5774e8"
79 | integrity sha512-HjLhyshV+ANzTDCFLN1UZMQIyYwZkCdhydfIcOQQVCrqLSd0hCi+AYIGqWfDPhXmP7aeOuKQsmhRmdennQV2qw==
80 | dependencies:
81 | glob "7.1.7"
82 |
83 | "@next/swc-android-arm64@12.1.0":
84 | version "12.1.0"
85 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.0.tgz#865ba3a9afc204ff2bdeea49dd64d58705007a39"
86 | integrity sha512-/280MLdZe0W03stA69iL+v6I+J1ascrQ6FrXBlXGCsGzrfMaGr7fskMa0T5AhQIVQD4nA/46QQWxG//DYuFBcA==
87 |
88 | "@next/swc-darwin-arm64@12.1.0":
89 | version "12.1.0"
90 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.0.tgz#08e8b411b8accd095009ed12efbc2f1d4d547135"
91 | integrity sha512-R8vcXE2/iONJ1Unf5Ptqjk6LRW3bggH+8drNkkzH4FLEQkHtELhvcmJwkXcuipyQCsIakldAXhRbZmm3YN1vXg==
92 |
93 | "@next/swc-darwin-x64@12.1.0":
94 | version "12.1.0"
95 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.0.tgz#fcd684497a76e8feaca88db3c394480ff0b007cd"
96 | integrity sha512-ieAz0/J0PhmbZBB8+EA/JGdhRHBogF8BWaeqR7hwveb6SYEIJaDNQy0I+ZN8gF8hLj63bEDxJAs/cEhdnTq+ug==
97 |
98 | "@next/swc-linux-arm-gnueabihf@12.1.0":
99 | version "12.1.0"
100 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.0.tgz#9ec6380a27938a5799aaa6035c205b3c478468a7"
101 | integrity sha512-njUd9hpl6o6A5d08dC0cKAgXKCzm5fFtgGe6i0eko8IAdtAPbtHxtpre3VeSxdZvuGFh+hb0REySQP9T1ttkog==
102 |
103 | "@next/swc-linux-arm64-gnu@12.1.0":
104 | version "12.1.0"
105 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.0.tgz#7f4196dff1049cea479607c75b81033ae2dbd093"
106 | integrity sha512-OqangJLkRxVxMhDtcb7Qn1xjzFA3s50EIxY7mljbSCLybU+sByPaWAHY4px97ieOlr2y4S0xdPKkQ3BCAwyo6Q==
107 |
108 | "@next/swc-linux-arm64-musl@12.1.0":
109 | version "12.1.0"
110 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.0.tgz#b445f767569cdc2dddee785ca495e1a88c025566"
111 | integrity sha512-hB8cLSt4GdmOpcwRe2UzI5UWn6HHO/vLkr5OTuNvCJ5xGDwpPXelVkYW/0+C3g5axbDW2Tym4S+MQCkkH9QfWA==
112 |
113 | "@next/swc-linux-x64-gnu@12.1.0":
114 | version "12.1.0"
115 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.0.tgz#67610e9be4fbc987de7535f1bcb17e45fe12f90e"
116 | integrity sha512-OKO4R/digvrVuweSw/uBM4nSdyzsBV5EwkUeeG4KVpkIZEe64ZwRpnFB65bC6hGwxIBnTv5NMSnJ+0K/WmG78A==
117 |
118 | "@next/swc-linux-x64-musl@12.1.0":
119 | version "12.1.0"
120 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.0.tgz#ea19a23db08a9f2e34ac30401f774cf7d1669d31"
121 | integrity sha512-JohhgAHZvOD3rQY7tlp7NlmvtvYHBYgY0x5ZCecUT6eCCcl9lv6iV3nfu82ErkxNk1H893fqH0FUpznZ/H3pSw==
122 |
123 | "@next/swc-win32-arm64-msvc@12.1.0":
124 | version "12.1.0"
125 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.0.tgz#eadf054fc412085659b98e145435bbba200b5283"
126 | integrity sha512-T/3gIE6QEfKIJ4dmJk75v9hhNiYZhQYAoYm4iVo1TgcsuaKLFa+zMPh4056AHiG6n9tn2UQ1CFE8EoybEsqsSw==
127 |
128 | "@next/swc-win32-ia32-msvc@12.1.0":
129 | version "12.1.0"
130 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.0.tgz#68faeae10c89f698bf9d28759172b74c9c21bda1"
131 | integrity sha512-iwnKgHJdqhIW19H9PRPM9j55V6RdcOo6rX+5imx832BCWzkDbyomWnlzBfr6ByUYfhohb8QuH4hSGEikpPqI0Q==
132 |
133 | "@next/swc-win32-x64-msvc@12.1.0":
134 | version "12.1.0"
135 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.0.tgz#d27e7e76c87a460a4da99c5bfdb1618dcd6cd064"
136 | integrity sha512-aBvcbMwuanDH4EMrL2TthNJy+4nP59Bimn8egqv6GHMVj0a44cU6Au4PjOhLNqEh9l+IpRGBqMTzec94UdC5xg==
137 |
138 | "@nodelib/fs.scandir@2.1.5":
139 | version "2.1.5"
140 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
141 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
142 | dependencies:
143 | "@nodelib/fs.stat" "2.0.5"
144 | run-parallel "^1.1.9"
145 |
146 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
147 | version "2.0.5"
148 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
149 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
150 |
151 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
152 | version "1.2.8"
153 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
154 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
155 | dependencies:
156 | "@nodelib/fs.scandir" "2.1.5"
157 | fastq "^1.6.0"
158 |
159 | "@rushstack/eslint-patch@^1.0.6":
160 | version "1.0.6"
161 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.0.6.tgz#023d72a5c4531b4ce204528971700a78a85a0c50"
162 | integrity sha512-Myxw//kzromB9yWgS8qYGuGVf91oBUUJpNvy5eM50sqvmKLbKjwLxohJnkWGTeeI9v9IBMtPLxz5Gc60FIfvCA==
163 |
164 | "@typescript-eslint/parser@^4.20.0":
165 | version "4.29.2"
166 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.29.2.tgz#1c7744f4c27aeb74610c955d3dce9250e95c370a"
167 | integrity sha512-WQ6BPf+lNuwteUuyk1jD/aHKqMQ9jrdCn7Gxt9vvBnzbpj7aWEf+aZsJ1zvTjx5zFxGCt000lsbD9tQPEL8u6g==
168 | dependencies:
169 | "@typescript-eslint/scope-manager" "4.29.2"
170 | "@typescript-eslint/types" "4.29.2"
171 | "@typescript-eslint/typescript-estree" "4.29.2"
172 | debug "^4.3.1"
173 |
174 | "@typescript-eslint/scope-manager@4.29.2":
175 | version "4.29.2"
176 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.29.2.tgz#442b0f029d981fa402942715b1718ac7fcd5aa1b"
177 | integrity sha512-mfHmvlQxmfkU8D55CkZO2sQOueTxLqGvzV+mG6S/6fIunDiD2ouwsAoiYCZYDDK73QCibYjIZmGhpvKwAB5BOA==
178 | dependencies:
179 | "@typescript-eslint/types" "4.29.2"
180 | "@typescript-eslint/visitor-keys" "4.29.2"
181 |
182 | "@typescript-eslint/types@4.29.2":
183 | version "4.29.2"
184 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.29.2.tgz#fc0489c6b89773f99109fb0aa0aaddff21f52fcd"
185 | integrity sha512-K6ApnEXId+WTGxqnda8z4LhNMa/pZmbTFkDxEBLQAbhLZL50DjeY0VIDCml/0Y3FlcbqXZrABqrcKxq+n0LwzQ==
186 |
187 | "@typescript-eslint/typescript-estree@4.29.2":
188 | version "4.29.2"
189 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.2.tgz#a0ea8b98b274adbb2577100ba545ddf8bf7dc219"
190 | integrity sha512-TJ0/hEnYxapYn9SGn3dCnETO0r+MjaxtlWZ2xU+EvytF0g4CqTpZL48SqSNn2hXsPolnewF30pdzR9a5Lj3DNg==
191 | dependencies:
192 | "@typescript-eslint/types" "4.29.2"
193 | "@typescript-eslint/visitor-keys" "4.29.2"
194 | debug "^4.3.1"
195 | globby "^11.0.3"
196 | is-glob "^4.0.1"
197 | semver "^7.3.5"
198 | tsutils "^3.21.0"
199 |
200 | "@typescript-eslint/visitor-keys@4.29.2":
201 | version "4.29.2"
202 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.2.tgz#d2da7341f3519486f50655159f4e5ecdcb2cd1df"
203 | integrity sha512-bDgJLQ86oWHJoZ1ai4TZdgXzJxsea3Ee9u9wsTAvjChdj2WLcVsgWYAPeY7RQMn16tKrlQaBnpKv7KBfs4EQag==
204 | dependencies:
205 | "@typescript-eslint/types" "4.29.2"
206 | eslint-visitor-keys "^2.0.0"
207 |
208 | acorn-jsx@^5.3.2:
209 | version "5.3.2"
210 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
211 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
212 |
213 | acorn@^8.8.0:
214 | version "8.8.2"
215 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a"
216 | integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==
217 |
218 | ajv@^6.10.0, ajv@^6.12.4:
219 | version "6.12.6"
220 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
221 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
222 | dependencies:
223 | fast-deep-equal "^3.1.1"
224 | fast-json-stable-stringify "^2.0.0"
225 | json-schema-traverse "^0.4.1"
226 | uri-js "^4.2.2"
227 |
228 | ansi-regex@^5.0.1:
229 | version "5.0.1"
230 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
231 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
232 |
233 | ansi-styles@^4.1.0:
234 | version "4.3.0"
235 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
236 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
237 | dependencies:
238 | color-convert "^2.0.1"
239 |
240 | argparse@^2.0.1:
241 | version "2.0.1"
242 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
243 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
244 |
245 | aria-query@^4.2.2:
246 | version "4.2.2"
247 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
248 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
249 | dependencies:
250 | "@babel/runtime" "^7.10.2"
251 | "@babel/runtime-corejs3" "^7.10.2"
252 |
253 | array-includes@^3.1.1, array-includes@^3.1.2, array-includes@^3.1.3:
254 | version "3.1.3"
255 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a"
256 | integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==
257 | dependencies:
258 | call-bind "^1.0.2"
259 | define-properties "^1.1.3"
260 | es-abstract "^1.18.0-next.2"
261 | get-intrinsic "^1.1.1"
262 | is-string "^1.0.5"
263 |
264 | array-union@^2.1.0:
265 | version "2.1.0"
266 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
267 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
268 |
269 | array.prototype.flat@^1.2.4:
270 | version "1.2.4"
271 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123"
272 | integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==
273 | dependencies:
274 | call-bind "^1.0.0"
275 | define-properties "^1.1.3"
276 | es-abstract "^1.18.0-next.1"
277 |
278 | array.prototype.flatmap@^1.2.4:
279 | version "1.2.4"
280 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9"
281 | integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==
282 | dependencies:
283 | call-bind "^1.0.0"
284 | define-properties "^1.1.3"
285 | es-abstract "^1.18.0-next.1"
286 | function-bind "^1.1.1"
287 |
288 | ast-types-flow@^0.0.7:
289 | version "0.0.7"
290 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
291 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
292 |
293 | axe-core@^4.0.2:
294 | version "4.3.2"
295 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.3.2.tgz#fcf8777b82c62cfc69c7e9f32c0d2226287680e7"
296 | integrity sha512-5LMaDRWm8ZFPAEdzTYmgjjEdj1YnQcpfrVajO/sn/LhbpGp0Y0H64c2hLZI1gRMxfA+w1S71Uc/nHaOXgcCvGg==
297 |
298 | axobject-query@^2.2.0:
299 | version "2.2.0"
300 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
301 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
302 |
303 | balanced-match@^1.0.0:
304 | version "1.0.2"
305 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
306 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
307 |
308 | brace-expansion@^1.1.7:
309 | version "1.1.11"
310 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
311 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
312 | dependencies:
313 | balanced-match "^1.0.0"
314 | concat-map "0.0.1"
315 |
316 | braces@^3.0.1:
317 | version "3.0.2"
318 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
319 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
320 | dependencies:
321 | fill-range "^7.0.1"
322 |
323 | call-bind@^1.0.0, call-bind@^1.0.2:
324 | version "1.0.2"
325 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
326 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
327 | dependencies:
328 | function-bind "^1.1.1"
329 | get-intrinsic "^1.0.2"
330 |
331 | callsites@^3.0.0:
332 | version "3.1.0"
333 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
334 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
335 |
336 | caniuse-lite@^1.0.30001283:
337 | version "1.0.30001312"
338 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001312.tgz#e11eba4b87e24d22697dae05455d5aea28550d5f"
339 | integrity sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==
340 |
341 | chalk@^4.0.0:
342 | version "4.1.2"
343 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
344 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
345 | dependencies:
346 | ansi-styles "^4.1.0"
347 | supports-color "^7.1.0"
348 |
349 | color-convert@^2.0.1:
350 | version "2.0.1"
351 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
352 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
353 | dependencies:
354 | color-name "~1.1.4"
355 |
356 | color-name@~1.1.4:
357 | version "1.1.4"
358 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
359 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
360 |
361 | concat-map@0.0.1:
362 | version "0.0.1"
363 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
364 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
365 |
366 | core-js-pure@^3.16.0:
367 | version "3.16.2"
368 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.16.2.tgz#0ef4b79cabafb251ea86eb7d139b42bd98c533e8"
369 | integrity sha512-oxKe64UH049mJqrKkynWp6Vu0Rlm/BTXO/bJZuN2mmR3RtOFNepLlSWDd1eo16PzHpQAoNG97rLU1V/YxesJjw==
370 |
371 | cross-spawn@^7.0.2:
372 | version "7.0.3"
373 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
374 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
375 | dependencies:
376 | path-key "^3.1.0"
377 | shebang-command "^2.0.0"
378 | which "^2.0.1"
379 |
380 | damerau-levenshtein@^1.0.6:
381 | version "1.0.7"
382 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz#64368003512a1a6992593741a09a9d31a836f55d"
383 | integrity sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==
384 |
385 | debug@^2.6.9:
386 | version "2.6.9"
387 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
388 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
389 | dependencies:
390 | ms "2.0.0"
391 |
392 | debug@^3.2.7:
393 | version "3.2.7"
394 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
395 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
396 | dependencies:
397 | ms "^2.1.1"
398 |
399 | debug@^4.1.1, debug@^4.3.1:
400 | version "4.3.2"
401 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
402 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
403 | dependencies:
404 | ms "2.1.2"
405 |
406 | debug@^4.3.2:
407 | version "4.3.4"
408 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
409 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
410 | dependencies:
411 | ms "2.1.2"
412 |
413 | deep-is@^0.1.3:
414 | version "0.1.3"
415 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
416 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
417 |
418 | define-properties@^1.1.3:
419 | version "1.1.3"
420 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
421 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
422 | dependencies:
423 | object-keys "^1.0.12"
424 |
425 | dir-glob@^3.0.1:
426 | version "3.0.1"
427 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
428 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
429 | dependencies:
430 | path-type "^4.0.0"
431 |
432 | doctrine@^2.1.0:
433 | version "2.1.0"
434 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
435 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
436 | dependencies:
437 | esutils "^2.0.2"
438 |
439 | doctrine@^3.0.0:
440 | version "3.0.0"
441 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
442 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
443 | dependencies:
444 | esutils "^2.0.2"
445 |
446 | emoji-regex@^9.0.0:
447 | version "9.2.2"
448 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
449 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
450 |
451 | error-ex@^1.3.1:
452 | version "1.3.2"
453 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
454 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
455 | dependencies:
456 | is-arrayish "^0.2.1"
457 |
458 | es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2:
459 | version "1.18.5"
460 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.5.tgz#9b10de7d4c206a3581fd5b2124233e04db49ae19"
461 | integrity sha512-DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA==
462 | dependencies:
463 | call-bind "^1.0.2"
464 | es-to-primitive "^1.2.1"
465 | function-bind "^1.1.1"
466 | get-intrinsic "^1.1.1"
467 | has "^1.0.3"
468 | has-symbols "^1.0.2"
469 | internal-slot "^1.0.3"
470 | is-callable "^1.2.3"
471 | is-negative-zero "^2.0.1"
472 | is-regex "^1.1.3"
473 | is-string "^1.0.6"
474 | object-inspect "^1.11.0"
475 | object-keys "^1.1.1"
476 | object.assign "^4.1.2"
477 | string.prototype.trimend "^1.0.4"
478 | string.prototype.trimstart "^1.0.4"
479 | unbox-primitive "^1.0.1"
480 |
481 | es-to-primitive@^1.2.1:
482 | version "1.2.1"
483 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
484 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
485 | dependencies:
486 | is-callable "^1.1.4"
487 | is-date-object "^1.0.1"
488 | is-symbol "^1.0.2"
489 |
490 | escape-string-regexp@^4.0.0:
491 | version "4.0.0"
492 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
493 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
494 |
495 | eslint-config-next@11.1.0:
496 | version "11.1.0"
497 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-11.1.0.tgz#722d6901f7162f4bb1e9236aef7b3fd8ceb0f2d6"
498 | integrity sha512-8KeBg3qUEhM06vhzvs9MwZl2lsSfu3bm0wa3QVTc9kBdFxSRY6Gu/1GM0FKzWG0sQmWqzjLbynazczu/037Ibw==
499 | dependencies:
500 | "@next/eslint-plugin-next" "11.1.0"
501 | "@rushstack/eslint-patch" "^1.0.6"
502 | "@typescript-eslint/parser" "^4.20.0"
503 | eslint-import-resolver-node "^0.3.4"
504 | eslint-import-resolver-typescript "^2.4.0"
505 | eslint-plugin-import "^2.22.1"
506 | eslint-plugin-jsx-a11y "^6.4.1"
507 | eslint-plugin-react "^7.23.1"
508 | eslint-plugin-react-hooks "^4.2.0"
509 |
510 | eslint-import-resolver-node@^0.3.4, eslint-import-resolver-node@^0.3.5:
511 | version "0.3.6"
512 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
513 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
514 | dependencies:
515 | debug "^3.2.7"
516 | resolve "^1.20.0"
517 |
518 | eslint-import-resolver-typescript@^2.4.0:
519 | version "2.4.0"
520 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.4.0.tgz#ec1e7063ebe807f0362a7320543aaed6fe1100e1"
521 | integrity sha512-useJKURidCcldRLCNKWemr1fFQL1SzB3G4a0li6lFGvlc5xGe1hY343bvG07cbpCzPuM/lK19FIJB3XGFSkplA==
522 | dependencies:
523 | debug "^4.1.1"
524 | glob "^7.1.6"
525 | is-glob "^4.0.1"
526 | resolve "^1.17.0"
527 | tsconfig-paths "^3.9.0"
528 |
529 | eslint-module-utils@^2.6.2:
530 | version "2.6.2"
531 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz#94e5540dd15fe1522e8ffa3ec8db3b7fa7e7a534"
532 | integrity sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q==
533 | dependencies:
534 | debug "^3.2.7"
535 | pkg-dir "^2.0.0"
536 |
537 | eslint-plugin-import@^2.22.1:
538 | version "2.24.0"
539 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.24.0.tgz#697ffd263e24da5e84e03b282f5fb62251777177"
540 | integrity sha512-Kc6xqT9hiYi2cgybOc0I2vC9OgAYga5o/rAFinam/yF/t5uBqxQbauNPMC6fgb640T/89P0gFoO27FOilJ/Cqg==
541 | dependencies:
542 | array-includes "^3.1.3"
543 | array.prototype.flat "^1.2.4"
544 | debug "^2.6.9"
545 | doctrine "^2.1.0"
546 | eslint-import-resolver-node "^0.3.5"
547 | eslint-module-utils "^2.6.2"
548 | find-up "^2.0.0"
549 | has "^1.0.3"
550 | is-core-module "^2.4.0"
551 | minimatch "^3.0.4"
552 | object.values "^1.1.3"
553 | pkg-up "^2.0.0"
554 | read-pkg-up "^3.0.0"
555 | resolve "^1.20.0"
556 | tsconfig-paths "^3.9.0"
557 |
558 | eslint-plugin-jsx-a11y@^6.4.1:
559 | version "6.4.1"
560 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz#a2d84caa49756942f42f1ffab9002436391718fd"
561 | integrity sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==
562 | dependencies:
563 | "@babel/runtime" "^7.11.2"
564 | aria-query "^4.2.2"
565 | array-includes "^3.1.1"
566 | ast-types-flow "^0.0.7"
567 | axe-core "^4.0.2"
568 | axobject-query "^2.2.0"
569 | damerau-levenshtein "^1.0.6"
570 | emoji-regex "^9.0.0"
571 | has "^1.0.3"
572 | jsx-ast-utils "^3.1.0"
573 | language-tags "^1.0.5"
574 |
575 | eslint-plugin-react-hooks@^4.2.0:
576 | version "4.2.0"
577 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556"
578 | integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==
579 |
580 | eslint-plugin-react@^7.23.1:
581 | version "7.24.0"
582 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.24.0.tgz#eadedfa351a6f36b490aa17f4fa9b14e842b9eb4"
583 | integrity sha512-KJJIx2SYx7PBx3ONe/mEeMz4YE0Lcr7feJTCMyyKb/341NcjuAgim3Acgan89GfPv7nxXK2+0slu0CWXYM4x+Q==
584 | dependencies:
585 | array-includes "^3.1.3"
586 | array.prototype.flatmap "^1.2.4"
587 | doctrine "^2.1.0"
588 | has "^1.0.3"
589 | jsx-ast-utils "^2.4.1 || ^3.0.0"
590 | minimatch "^3.0.4"
591 | object.entries "^1.1.4"
592 | object.fromentries "^2.0.4"
593 | object.values "^1.1.4"
594 | prop-types "^15.7.2"
595 | resolve "^2.0.0-next.3"
596 | string.prototype.matchall "^4.0.5"
597 |
598 | eslint-scope@^7.2.0:
599 | version "7.2.0"
600 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b"
601 | integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==
602 | dependencies:
603 | esrecurse "^4.3.0"
604 | estraverse "^5.2.0"
605 |
606 | eslint-visitor-keys@^2.0.0:
607 | version "2.1.0"
608 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
609 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
610 |
611 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1:
612 | version "3.4.1"
613 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994"
614 | integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==
615 |
616 | eslint@8.42.0:
617 | version "8.42.0"
618 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.42.0.tgz#7bebdc3a55f9ed7167251fe7259f75219cade291"
619 | integrity sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==
620 | dependencies:
621 | "@eslint-community/eslint-utils" "^4.2.0"
622 | "@eslint-community/regexpp" "^4.4.0"
623 | "@eslint/eslintrc" "^2.0.3"
624 | "@eslint/js" "8.42.0"
625 | "@humanwhocodes/config-array" "^0.11.10"
626 | "@humanwhocodes/module-importer" "^1.0.1"
627 | "@nodelib/fs.walk" "^1.2.8"
628 | ajv "^6.10.0"
629 | chalk "^4.0.0"
630 | cross-spawn "^7.0.2"
631 | debug "^4.3.2"
632 | doctrine "^3.0.0"
633 | escape-string-regexp "^4.0.0"
634 | eslint-scope "^7.2.0"
635 | eslint-visitor-keys "^3.4.1"
636 | espree "^9.5.2"
637 | esquery "^1.4.2"
638 | esutils "^2.0.2"
639 | fast-deep-equal "^3.1.3"
640 | file-entry-cache "^6.0.1"
641 | find-up "^5.0.0"
642 | glob-parent "^6.0.2"
643 | globals "^13.19.0"
644 | graphemer "^1.4.0"
645 | ignore "^5.2.0"
646 | import-fresh "^3.0.0"
647 | imurmurhash "^0.1.4"
648 | is-glob "^4.0.0"
649 | is-path-inside "^3.0.3"
650 | js-yaml "^4.1.0"
651 | json-stable-stringify-without-jsonify "^1.0.1"
652 | levn "^0.4.1"
653 | lodash.merge "^4.6.2"
654 | minimatch "^3.1.2"
655 | natural-compare "^1.4.0"
656 | optionator "^0.9.1"
657 | strip-ansi "^6.0.1"
658 | strip-json-comments "^3.1.0"
659 | text-table "^0.2.0"
660 |
661 | espree@^9.5.2:
662 | version "9.5.2"
663 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b"
664 | integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==
665 | dependencies:
666 | acorn "^8.8.0"
667 | acorn-jsx "^5.3.2"
668 | eslint-visitor-keys "^3.4.1"
669 |
670 | esquery@^1.4.2:
671 | version "1.5.0"
672 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b"
673 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
674 | dependencies:
675 | estraverse "^5.1.0"
676 |
677 | esrecurse@^4.3.0:
678 | version "4.3.0"
679 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
680 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
681 | dependencies:
682 | estraverse "^5.2.0"
683 |
684 | estraverse@^5.1.0, estraverse@^5.2.0:
685 | version "5.2.0"
686 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
687 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
688 |
689 | esutils@^2.0.2:
690 | version "2.0.3"
691 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
692 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
693 |
694 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
695 | version "3.1.3"
696 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
697 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
698 |
699 | fast-glob@^3.1.1:
700 | version "3.2.7"
701 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1"
702 | integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==
703 | dependencies:
704 | "@nodelib/fs.stat" "^2.0.2"
705 | "@nodelib/fs.walk" "^1.2.3"
706 | glob-parent "^5.1.2"
707 | merge2 "^1.3.0"
708 | micromatch "^4.0.4"
709 |
710 | fast-json-stable-stringify@^2.0.0:
711 | version "2.1.0"
712 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
713 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
714 |
715 | fast-levenshtein@^2.0.6:
716 | version "2.0.6"
717 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
718 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
719 |
720 | fastq@^1.6.0:
721 | version "1.11.1"
722 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.1.tgz#5d8175aae17db61947f8b162cfc7f63264d22807"
723 | integrity sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==
724 | dependencies:
725 | reusify "^1.0.4"
726 |
727 | file-entry-cache@^6.0.1:
728 | version "6.0.1"
729 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
730 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
731 | dependencies:
732 | flat-cache "^3.0.4"
733 |
734 | fill-range@^7.0.1:
735 | version "7.0.1"
736 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
737 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
738 | dependencies:
739 | to-regex-range "^5.0.1"
740 |
741 | find-up@^2.0.0, find-up@^2.1.0:
742 | version "2.1.0"
743 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
744 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
745 | dependencies:
746 | locate-path "^2.0.0"
747 |
748 | find-up@^5.0.0:
749 | version "5.0.0"
750 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
751 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
752 | dependencies:
753 | locate-path "^6.0.0"
754 | path-exists "^4.0.0"
755 |
756 | flat-cache@^3.0.4:
757 | version "3.0.4"
758 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
759 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
760 | dependencies:
761 | flatted "^3.1.0"
762 | rimraf "^3.0.2"
763 |
764 | flatted@^3.1.0:
765 | version "3.2.2"
766 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz#64bfed5cb68fe3ca78b3eb214ad97b63bedce561"
767 | integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==
768 |
769 | fs.realpath@^1.0.0:
770 | version "1.0.0"
771 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
772 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
773 |
774 | function-bind@^1.1.1:
775 | version "1.1.1"
776 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
777 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
778 |
779 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
780 | version "1.1.1"
781 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
782 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
783 | dependencies:
784 | function-bind "^1.1.1"
785 | has "^1.0.3"
786 | has-symbols "^1.0.1"
787 |
788 | glob-parent@^5.1.2:
789 | version "5.1.2"
790 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
791 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
792 | dependencies:
793 | is-glob "^4.0.1"
794 |
795 | glob-parent@^6.0.2:
796 | version "6.0.2"
797 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
798 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
799 | dependencies:
800 | is-glob "^4.0.3"
801 |
802 | glob@7.1.7, glob@^7.1.3, glob@^7.1.6:
803 | version "7.1.7"
804 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
805 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
806 | dependencies:
807 | fs.realpath "^1.0.0"
808 | inflight "^1.0.4"
809 | inherits "2"
810 | minimatch "^3.0.4"
811 | once "^1.3.0"
812 | path-is-absolute "^1.0.0"
813 |
814 | globals@^13.19.0:
815 | version "13.20.0"
816 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82"
817 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==
818 | dependencies:
819 | type-fest "^0.20.2"
820 |
821 | globby@^11.0.3:
822 | version "11.0.4"
823 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5"
824 | integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==
825 | dependencies:
826 | array-union "^2.1.0"
827 | dir-glob "^3.0.1"
828 | fast-glob "^3.1.1"
829 | ignore "^5.1.4"
830 | merge2 "^1.3.0"
831 | slash "^3.0.0"
832 |
833 | graceful-fs@^4.1.2:
834 | version "4.2.8"
835 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a"
836 | integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==
837 |
838 | graphemer@^1.4.0:
839 | version "1.4.0"
840 | resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
841 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
842 |
843 | has-bigints@^1.0.1:
844 | version "1.0.1"
845 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
846 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
847 |
848 | has-flag@^4.0.0:
849 | version "4.0.0"
850 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
851 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
852 |
853 | has-symbols@^1.0.1, has-symbols@^1.0.2:
854 | version "1.0.2"
855 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
856 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
857 |
858 | has-tostringtag@^1.0.0:
859 | version "1.0.0"
860 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
861 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
862 | dependencies:
863 | has-symbols "^1.0.2"
864 |
865 | has@^1.0.3:
866 | version "1.0.3"
867 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
868 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
869 | dependencies:
870 | function-bind "^1.1.1"
871 |
872 | hosted-git-info@^2.1.4:
873 | version "2.8.9"
874 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
875 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
876 |
877 | ignore@^5.1.4:
878 | version "5.1.8"
879 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
880 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
881 |
882 | ignore@^5.2.0:
883 | version "5.2.4"
884 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
885 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
886 |
887 | import-fresh@^3.0.0, import-fresh@^3.2.1:
888 | version "3.3.0"
889 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
890 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
891 | dependencies:
892 | parent-module "^1.0.0"
893 | resolve-from "^4.0.0"
894 |
895 | imurmurhash@^0.1.4:
896 | version "0.1.4"
897 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
898 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
899 |
900 | inflight@^1.0.4:
901 | version "1.0.6"
902 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
903 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
904 | dependencies:
905 | once "^1.3.0"
906 | wrappy "1"
907 |
908 | inherits@2:
909 | version "2.0.4"
910 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
911 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
912 |
913 | internal-slot@^1.0.3:
914 | version "1.0.3"
915 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
916 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
917 | dependencies:
918 | get-intrinsic "^1.1.0"
919 | has "^1.0.3"
920 | side-channel "^1.0.4"
921 |
922 | is-arrayish@^0.2.1:
923 | version "0.2.1"
924 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
925 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
926 |
927 | is-bigint@^1.0.1:
928 | version "1.0.4"
929 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
930 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
931 | dependencies:
932 | has-bigints "^1.0.1"
933 |
934 | is-boolean-object@^1.1.0:
935 | version "1.1.2"
936 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
937 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
938 | dependencies:
939 | call-bind "^1.0.2"
940 | has-tostringtag "^1.0.0"
941 |
942 | is-callable@^1.1.4, is-callable@^1.2.3:
943 | version "1.2.4"
944 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
945 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
946 |
947 | is-core-module@^2.2.0, is-core-module@^2.4.0:
948 | version "2.6.0"
949 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.6.0.tgz#d7553b2526fe59b92ba3e40c8df757ec8a709e19"
950 | integrity sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ==
951 | dependencies:
952 | has "^1.0.3"
953 |
954 | is-date-object@^1.0.1:
955 | version "1.0.5"
956 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
957 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
958 | dependencies:
959 | has-tostringtag "^1.0.0"
960 |
961 | is-extglob@^2.1.1:
962 | version "2.1.1"
963 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
964 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
965 |
966 | is-glob@^4.0.0, is-glob@^4.0.1:
967 | version "4.0.1"
968 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
969 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
970 | dependencies:
971 | is-extglob "^2.1.1"
972 |
973 | is-glob@^4.0.3:
974 | version "4.0.3"
975 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
976 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
977 | dependencies:
978 | is-extglob "^2.1.1"
979 |
980 | is-negative-zero@^2.0.1:
981 | version "2.0.1"
982 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
983 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
984 |
985 | is-number-object@^1.0.4:
986 | version "1.0.6"
987 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0"
988 | integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==
989 | dependencies:
990 | has-tostringtag "^1.0.0"
991 |
992 | is-number@^7.0.0:
993 | version "7.0.0"
994 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
995 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
996 |
997 | is-path-inside@^3.0.3:
998 | version "3.0.3"
999 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
1000 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
1001 |
1002 | is-regex@^1.1.3:
1003 | version "1.1.4"
1004 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
1005 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
1006 | dependencies:
1007 | call-bind "^1.0.2"
1008 | has-tostringtag "^1.0.0"
1009 |
1010 | is-string@^1.0.5, is-string@^1.0.6:
1011 | version "1.0.7"
1012 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
1013 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
1014 | dependencies:
1015 | has-tostringtag "^1.0.0"
1016 |
1017 | is-symbol@^1.0.2, is-symbol@^1.0.3:
1018 | version "1.0.4"
1019 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
1020 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
1021 | dependencies:
1022 | has-symbols "^1.0.2"
1023 |
1024 | isexe@^2.0.0:
1025 | version "2.0.0"
1026 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1027 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
1028 |
1029 | "js-tokens@^3.0.0 || ^4.0.0":
1030 | version "4.0.0"
1031 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1032 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1033 |
1034 | js-yaml@^4.1.0:
1035 | version "4.1.0"
1036 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
1037 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
1038 | dependencies:
1039 | argparse "^2.0.1"
1040 |
1041 | json-parse-better-errors@^1.0.1:
1042 | version "1.0.2"
1043 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
1044 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
1045 |
1046 | json-schema-traverse@^0.4.1:
1047 | version "0.4.1"
1048 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
1049 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1050 |
1051 | json-stable-stringify-without-jsonify@^1.0.1:
1052 | version "1.0.1"
1053 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1054 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
1055 |
1056 | json5@^2.2.0:
1057 | version "2.2.3"
1058 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
1059 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
1060 |
1061 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.1.0:
1062 | version "3.2.0"
1063 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82"
1064 | integrity sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==
1065 | dependencies:
1066 | array-includes "^3.1.2"
1067 | object.assign "^4.1.2"
1068 |
1069 | language-subtag-registry@~0.3.2:
1070 | version "0.3.21"
1071 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a"
1072 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==
1073 |
1074 | language-tags@^1.0.5:
1075 | version "1.0.5"
1076 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
1077 | integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=
1078 | dependencies:
1079 | language-subtag-registry "~0.3.2"
1080 |
1081 | levn@^0.4.1:
1082 | version "0.4.1"
1083 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
1084 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
1085 | dependencies:
1086 | prelude-ls "^1.2.1"
1087 | type-check "~0.4.0"
1088 |
1089 | load-json-file@^4.0.0:
1090 | version "4.0.0"
1091 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
1092 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
1093 | dependencies:
1094 | graceful-fs "^4.1.2"
1095 | parse-json "^4.0.0"
1096 | pify "^3.0.0"
1097 | strip-bom "^3.0.0"
1098 |
1099 | locate-path@^2.0.0:
1100 | version "2.0.0"
1101 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1102 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
1103 | dependencies:
1104 | p-locate "^2.0.0"
1105 | path-exists "^3.0.0"
1106 |
1107 | locate-path@^6.0.0:
1108 | version "6.0.0"
1109 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
1110 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
1111 | dependencies:
1112 | p-locate "^5.0.0"
1113 |
1114 | lodash.merge@^4.6.2:
1115 | version "4.6.2"
1116 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
1117 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
1118 |
1119 | loose-envify@^1.1.0, loose-envify@^1.4.0:
1120 | version "1.4.0"
1121 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1122 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1123 | dependencies:
1124 | js-tokens "^3.0.0 || ^4.0.0"
1125 |
1126 | lru-cache@^6.0.0:
1127 | version "6.0.0"
1128 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
1129 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1130 | dependencies:
1131 | yallist "^4.0.0"
1132 |
1133 | merge2@^1.3.0:
1134 | version "1.4.1"
1135 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
1136 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1137 |
1138 | micromatch@^4.0.4:
1139 | version "4.0.4"
1140 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
1141 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
1142 | dependencies:
1143 | braces "^3.0.1"
1144 | picomatch "^2.2.3"
1145 |
1146 | minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.2:
1147 | version "3.1.2"
1148 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
1149 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1150 | dependencies:
1151 | brace-expansion "^1.1.7"
1152 |
1153 | minimist@^1.2.0:
1154 | version "1.2.6"
1155 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
1156 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
1157 |
1158 | ms@2.0.0:
1159 | version "2.0.0"
1160 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1161 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
1162 |
1163 | ms@2.1.2:
1164 | version "2.1.2"
1165 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1166 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1167 |
1168 | ms@^2.1.1:
1169 | version "2.1.3"
1170 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
1171 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
1172 |
1173 | nanoid@^3.1.30:
1174 | version "3.3.1"
1175 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35"
1176 | integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==
1177 |
1178 | natural-compare@^1.4.0:
1179 | version "1.4.0"
1180 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1181 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
1182 |
1183 | next@12.1.0:
1184 | version "12.1.0"
1185 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.0.tgz#c33d753b644be92fc58e06e5a214f143da61dd5d"
1186 | integrity sha512-s885kWvnIlxsUFHq9UGyIyLiuD0G3BUC/xrH0CEnH5lHEWkwQcHOORgbDF0hbrW9vr/7am4ETfX4A7M6DjrE7Q==
1187 | dependencies:
1188 | "@next/env" "12.1.0"
1189 | caniuse-lite "^1.0.30001283"
1190 | postcss "8.4.5"
1191 | styled-jsx "5.0.0"
1192 | use-subscription "1.5.1"
1193 | optionalDependencies:
1194 | "@next/swc-android-arm64" "12.1.0"
1195 | "@next/swc-darwin-arm64" "12.1.0"
1196 | "@next/swc-darwin-x64" "12.1.0"
1197 | "@next/swc-linux-arm-gnueabihf" "12.1.0"
1198 | "@next/swc-linux-arm64-gnu" "12.1.0"
1199 | "@next/swc-linux-arm64-musl" "12.1.0"
1200 | "@next/swc-linux-x64-gnu" "12.1.0"
1201 | "@next/swc-linux-x64-musl" "12.1.0"
1202 | "@next/swc-win32-arm64-msvc" "12.1.0"
1203 | "@next/swc-win32-ia32-msvc" "12.1.0"
1204 | "@next/swc-win32-x64-msvc" "12.1.0"
1205 |
1206 | nextjs-color-mode@^1.0.3:
1207 | version "1.0.5"
1208 | resolved "https://registry.yarnpkg.com/nextjs-color-mode/-/nextjs-color-mode-1.0.5.tgz#d8251bcb3dd3fbf5ead3f6343e87c581a6444b60"
1209 | integrity sha512-f8lIekgXfiH1ydKbN+8AKos0uH/O8dmjjttZ3QcZj2/GfqW0HkOY8f66F4G0KIgd3eRuXA2tXZKEcq6t5ZWizg==
1210 |
1211 | normalize-package-data@^2.3.2:
1212 | version "2.5.0"
1213 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
1214 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
1215 | dependencies:
1216 | hosted-git-info "^2.1.4"
1217 | resolve "^1.10.0"
1218 | semver "2 || 3 || 4 || 5"
1219 | validate-npm-package-license "^3.0.1"
1220 |
1221 | object-assign@^4.1.1:
1222 | version "4.1.1"
1223 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1224 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
1225 |
1226 | object-inspect@^1.11.0, object-inspect@^1.9.0:
1227 | version "1.11.0"
1228 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1"
1229 | integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==
1230 |
1231 | object-keys@^1.0.12, object-keys@^1.1.1:
1232 | version "1.1.1"
1233 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
1234 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1235 |
1236 | object.assign@^4.1.2:
1237 | version "4.1.2"
1238 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
1239 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
1240 | dependencies:
1241 | call-bind "^1.0.0"
1242 | define-properties "^1.1.3"
1243 | has-symbols "^1.0.1"
1244 | object-keys "^1.1.1"
1245 |
1246 | object.entries@^1.1.4:
1247 | version "1.1.4"
1248 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd"
1249 | integrity sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA==
1250 | dependencies:
1251 | call-bind "^1.0.2"
1252 | define-properties "^1.1.3"
1253 | es-abstract "^1.18.2"
1254 |
1255 | object.fromentries@^2.0.4:
1256 | version "2.0.4"
1257 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8"
1258 | integrity sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==
1259 | dependencies:
1260 | call-bind "^1.0.2"
1261 | define-properties "^1.1.3"
1262 | es-abstract "^1.18.0-next.2"
1263 | has "^1.0.3"
1264 |
1265 | object.values@^1.1.3, object.values@^1.1.4:
1266 | version "1.1.4"
1267 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30"
1268 | integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==
1269 | dependencies:
1270 | call-bind "^1.0.2"
1271 | define-properties "^1.1.3"
1272 | es-abstract "^1.18.2"
1273 |
1274 | once@^1.3.0:
1275 | version "1.4.0"
1276 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1277 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
1278 | dependencies:
1279 | wrappy "1"
1280 |
1281 | optionator@^0.9.1:
1282 | version "0.9.1"
1283 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
1284 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
1285 | dependencies:
1286 | deep-is "^0.1.3"
1287 | fast-levenshtein "^2.0.6"
1288 | levn "^0.4.1"
1289 | prelude-ls "^1.2.1"
1290 | type-check "^0.4.0"
1291 | word-wrap "^1.2.3"
1292 |
1293 | p-limit@^1.1.0:
1294 | version "1.3.0"
1295 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
1296 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
1297 | dependencies:
1298 | p-try "^1.0.0"
1299 |
1300 | p-limit@^3.0.2:
1301 | version "3.1.0"
1302 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
1303 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
1304 | dependencies:
1305 | yocto-queue "^0.1.0"
1306 |
1307 | p-locate@^2.0.0:
1308 | version "2.0.0"
1309 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1310 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
1311 | dependencies:
1312 | p-limit "^1.1.0"
1313 |
1314 | p-locate@^5.0.0:
1315 | version "5.0.0"
1316 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
1317 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
1318 | dependencies:
1319 | p-limit "^3.0.2"
1320 |
1321 | p-try@^1.0.0:
1322 | version "1.0.0"
1323 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
1324 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
1325 |
1326 | parent-module@^1.0.0:
1327 | version "1.0.1"
1328 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
1329 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1330 | dependencies:
1331 | callsites "^3.0.0"
1332 |
1333 | parse-json@^4.0.0:
1334 | version "4.0.0"
1335 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
1336 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
1337 | dependencies:
1338 | error-ex "^1.3.1"
1339 | json-parse-better-errors "^1.0.1"
1340 |
1341 | path-exists@^3.0.0:
1342 | version "3.0.0"
1343 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1344 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
1345 |
1346 | path-exists@^4.0.0:
1347 | version "4.0.0"
1348 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
1349 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
1350 |
1351 | path-is-absolute@^1.0.0:
1352 | version "1.0.1"
1353 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1354 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
1355 |
1356 | path-key@^3.1.0:
1357 | version "3.1.1"
1358 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
1359 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1360 |
1361 | path-parse@^1.0.6:
1362 | version "1.0.7"
1363 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1364 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1365 |
1366 | path-type@^3.0.0:
1367 | version "3.0.0"
1368 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
1369 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
1370 | dependencies:
1371 | pify "^3.0.0"
1372 |
1373 | path-type@^4.0.0:
1374 | version "4.0.0"
1375 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
1376 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
1377 |
1378 | picocolors@^1.0.0:
1379 | version "1.0.0"
1380 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
1381 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
1382 |
1383 | picomatch@^2.2.3:
1384 | version "2.3.0"
1385 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
1386 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
1387 |
1388 | pify@^3.0.0:
1389 | version "3.0.0"
1390 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
1391 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
1392 |
1393 | pkg-dir@^2.0.0:
1394 | version "2.0.0"
1395 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
1396 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
1397 | dependencies:
1398 | find-up "^2.1.0"
1399 |
1400 | pkg-up@^2.0.0:
1401 | version "2.0.0"
1402 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
1403 | integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
1404 | dependencies:
1405 | find-up "^2.1.0"
1406 |
1407 | postcss@8.4.5:
1408 | version "8.4.5"
1409 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95"
1410 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==
1411 | dependencies:
1412 | nanoid "^3.1.30"
1413 | picocolors "^1.0.0"
1414 | source-map-js "^1.0.1"
1415 |
1416 | prelude-ls@^1.2.1:
1417 | version "1.2.1"
1418 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
1419 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
1420 |
1421 | prop-types@^15.7.2:
1422 | version "15.7.2"
1423 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
1424 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
1425 | dependencies:
1426 | loose-envify "^1.4.0"
1427 | object-assign "^4.1.1"
1428 | react-is "^16.8.1"
1429 |
1430 | punycode@^2.1.0:
1431 | version "2.1.1"
1432 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1433 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
1434 |
1435 | queue-microtask@^1.2.2:
1436 | version "1.2.3"
1437 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
1438 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1439 |
1440 | react-dom@17.0.2:
1441 | version "17.0.2"
1442 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23"
1443 | integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==
1444 | dependencies:
1445 | loose-envify "^1.1.0"
1446 | object-assign "^4.1.1"
1447 | scheduler "^0.20.2"
1448 |
1449 | react-is@^16.8.1:
1450 | version "16.13.1"
1451 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
1452 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1453 |
1454 | react@17.0.2:
1455 | version "17.0.2"
1456 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
1457 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
1458 | dependencies:
1459 | loose-envify "^1.1.0"
1460 | object-assign "^4.1.1"
1461 |
1462 | read-pkg-up@^3.0.0:
1463 | version "3.0.0"
1464 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
1465 | integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=
1466 | dependencies:
1467 | find-up "^2.0.0"
1468 | read-pkg "^3.0.0"
1469 |
1470 | read-pkg@^3.0.0:
1471 | version "3.0.0"
1472 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
1473 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
1474 | dependencies:
1475 | load-json-file "^4.0.0"
1476 | normalize-package-data "^2.3.2"
1477 | path-type "^3.0.0"
1478 |
1479 | regenerator-runtime@^0.13.4:
1480 | version "0.13.9"
1481 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
1482 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
1483 |
1484 | regexp.prototype.flags@^1.3.1:
1485 | version "1.3.1"
1486 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26"
1487 | integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==
1488 | dependencies:
1489 | call-bind "^1.0.2"
1490 | define-properties "^1.1.3"
1491 |
1492 | resolve-from@^4.0.0:
1493 | version "4.0.0"
1494 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
1495 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1496 |
1497 | resolve@^1.10.0, resolve@^1.17.0, resolve@^1.20.0:
1498 | version "1.20.0"
1499 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
1500 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
1501 | dependencies:
1502 | is-core-module "^2.2.0"
1503 | path-parse "^1.0.6"
1504 |
1505 | resolve@^2.0.0-next.3:
1506 | version "2.0.0-next.3"
1507 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
1508 | integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
1509 | dependencies:
1510 | is-core-module "^2.2.0"
1511 | path-parse "^1.0.6"
1512 |
1513 | reusify@^1.0.4:
1514 | version "1.0.4"
1515 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
1516 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1517 |
1518 | rimraf@^3.0.2:
1519 | version "3.0.2"
1520 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
1521 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1522 | dependencies:
1523 | glob "^7.1.3"
1524 |
1525 | run-parallel@^1.1.9:
1526 | version "1.2.0"
1527 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
1528 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1529 | dependencies:
1530 | queue-microtask "^1.2.2"
1531 |
1532 | scheduler@^0.20.2:
1533 | version "0.20.2"
1534 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
1535 | integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
1536 | dependencies:
1537 | loose-envify "^1.1.0"
1538 | object-assign "^4.1.1"
1539 |
1540 | "semver@2 || 3 || 4 || 5":
1541 | version "5.7.1"
1542 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
1543 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
1544 |
1545 | semver@^7.3.5:
1546 | version "7.3.5"
1547 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
1548 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
1549 | dependencies:
1550 | lru-cache "^6.0.0"
1551 |
1552 | shebang-command@^2.0.0:
1553 | version "2.0.0"
1554 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
1555 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
1556 | dependencies:
1557 | shebang-regex "^3.0.0"
1558 |
1559 | shebang-regex@^3.0.0:
1560 | version "3.0.0"
1561 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
1562 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
1563 |
1564 | side-channel@^1.0.4:
1565 | version "1.0.4"
1566 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
1567 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
1568 | dependencies:
1569 | call-bind "^1.0.0"
1570 | get-intrinsic "^1.0.2"
1571 | object-inspect "^1.9.0"
1572 |
1573 | slash@^3.0.0:
1574 | version "3.0.0"
1575 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
1576 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
1577 |
1578 | source-map-js@^1.0.1:
1579 | version "1.0.2"
1580 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
1581 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
1582 |
1583 | spdx-correct@^3.0.0:
1584 | version "3.1.1"
1585 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
1586 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
1587 | dependencies:
1588 | spdx-expression-parse "^3.0.0"
1589 | spdx-license-ids "^3.0.0"
1590 |
1591 | spdx-exceptions@^2.1.0:
1592 | version "2.3.0"
1593 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
1594 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
1595 |
1596 | spdx-expression-parse@^3.0.0:
1597 | version "3.0.1"
1598 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
1599 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
1600 | dependencies:
1601 | spdx-exceptions "^2.1.0"
1602 | spdx-license-ids "^3.0.0"
1603 |
1604 | spdx-license-ids@^3.0.0:
1605 | version "3.0.10"
1606 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz#0d9becccde7003d6c658d487dd48a32f0bf3014b"
1607 | integrity sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==
1608 |
1609 | string.prototype.matchall@^4.0.5:
1610 | version "4.0.5"
1611 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz#59370644e1db7e4c0c045277690cf7b01203c4da"
1612 | integrity sha512-Z5ZaXO0svs0M2xd/6By3qpeKpLKd9mO4v4q3oMEQrk8Ck4xOD5d5XeBOOjGrmVZZ/AHB1S0CgG4N5r1G9N3E2Q==
1613 | dependencies:
1614 | call-bind "^1.0.2"
1615 | define-properties "^1.1.3"
1616 | es-abstract "^1.18.2"
1617 | get-intrinsic "^1.1.1"
1618 | has-symbols "^1.0.2"
1619 | internal-slot "^1.0.3"
1620 | regexp.prototype.flags "^1.3.1"
1621 | side-channel "^1.0.4"
1622 |
1623 | string.prototype.trimend@^1.0.4:
1624 | version "1.0.4"
1625 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
1626 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
1627 | dependencies:
1628 | call-bind "^1.0.2"
1629 | define-properties "^1.1.3"
1630 |
1631 | string.prototype.trimstart@^1.0.4:
1632 | version "1.0.4"
1633 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
1634 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
1635 | dependencies:
1636 | call-bind "^1.0.2"
1637 | define-properties "^1.1.3"
1638 |
1639 | strip-ansi@^6.0.1:
1640 | version "6.0.1"
1641 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1642 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
1643 | dependencies:
1644 | ansi-regex "^5.0.1"
1645 |
1646 | strip-bom@^3.0.0:
1647 | version "3.0.0"
1648 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1649 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
1650 |
1651 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
1652 | version "3.1.1"
1653 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
1654 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
1655 |
1656 | styled-jsx@5.0.0:
1657 | version "5.0.0"
1658 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.0.tgz#816b4b92e07b1786c6b7111821750e0ba4d26e77"
1659 | integrity sha512-qUqsWoBquEdERe10EW8vLp3jT25s/ssG1/qX5gZ4wu15OZpmSMFI2v+fWlRhLfykA5rFtlJ1ME8A8pm/peV4WA==
1660 |
1661 | supports-color@^7.1.0:
1662 | version "7.2.0"
1663 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
1664 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
1665 | dependencies:
1666 | has-flag "^4.0.0"
1667 |
1668 | text-table@^0.2.0:
1669 | version "0.2.0"
1670 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1671 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
1672 |
1673 | to-regex-range@^5.0.1:
1674 | version "5.0.1"
1675 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
1676 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1677 | dependencies:
1678 | is-number "^7.0.0"
1679 |
1680 | tsconfig-paths@^3.9.0:
1681 | version "3.10.1"
1682 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.10.1.tgz#79ae67a68c15289fdf5c51cb74f397522d795ed7"
1683 | integrity sha512-rETidPDgCpltxF7MjBZlAFPUHv5aHH2MymyPvh+vEyWAED4Eb/WeMbsnD/JDr4OKPOA1TssDHgIcpTN5Kh0p6Q==
1684 | dependencies:
1685 | json5 "^2.2.0"
1686 | minimist "^1.2.0"
1687 | strip-bom "^3.0.0"
1688 |
1689 | tslib@^1.8.1:
1690 | version "1.14.1"
1691 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
1692 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
1693 |
1694 | tsutils@^3.21.0:
1695 | version "3.21.0"
1696 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
1697 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
1698 | dependencies:
1699 | tslib "^1.8.1"
1700 |
1701 | type-check@^0.4.0, type-check@~0.4.0:
1702 | version "0.4.0"
1703 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
1704 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
1705 | dependencies:
1706 | prelude-ls "^1.2.1"
1707 |
1708 | type-fest@^0.20.2:
1709 | version "0.20.2"
1710 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
1711 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
1712 |
1713 | unbox-primitive@^1.0.1:
1714 | version "1.0.1"
1715 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
1716 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
1717 | dependencies:
1718 | function-bind "^1.1.1"
1719 | has-bigints "^1.0.1"
1720 | has-symbols "^1.0.2"
1721 | which-boxed-primitive "^1.0.2"
1722 |
1723 | uri-js@^4.2.2:
1724 | version "4.4.1"
1725 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
1726 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
1727 | dependencies:
1728 | punycode "^2.1.0"
1729 |
1730 | use-subscription@1.5.1:
1731 | version "1.5.1"
1732 | resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.5.1.tgz#73501107f02fad84c6dd57965beb0b75c68c42d1"
1733 | integrity sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==
1734 | dependencies:
1735 | object-assign "^4.1.1"
1736 |
1737 | validate-npm-package-license@^3.0.1:
1738 | version "3.0.4"
1739 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
1740 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
1741 | dependencies:
1742 | spdx-correct "^3.0.0"
1743 | spdx-expression-parse "^3.0.0"
1744 |
1745 | which-boxed-primitive@^1.0.2:
1746 | version "1.0.2"
1747 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
1748 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
1749 | dependencies:
1750 | is-bigint "^1.0.1"
1751 | is-boolean-object "^1.1.0"
1752 | is-number-object "^1.0.4"
1753 | is-string "^1.0.5"
1754 | is-symbol "^1.0.3"
1755 |
1756 | which@^2.0.1:
1757 | version "2.0.2"
1758 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
1759 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
1760 | dependencies:
1761 | isexe "^2.0.0"
1762 |
1763 | word-wrap@^1.2.3:
1764 | version "1.2.3"
1765 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
1766 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
1767 |
1768 | wrappy@1:
1769 | version "1.0.2"
1770 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1771 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
1772 |
1773 | yallist@^4.0.0:
1774 | version "4.0.0"
1775 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
1776 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
1777 |
1778 | yocto-queue@^0.1.0:
1779 | version "0.1.0"
1780 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
1781 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
1782 |
--------------------------------------------------------------------------------
/global.d.ts:
--------------------------------------------------------------------------------
1 | interface Window {
2 | prefersDarkMode: boolean
3 | }
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "nextjs-color-mode",
3 | "version": "1.0.5",
4 | "description": "A helper for creating non-flickering and accessible themed applications",
5 | "source": "src/index.ts",
6 | "main": "./lib/next-color-mode.cjs",
7 | "module": "./lib/next-color-mode.module.js",
8 | "unpkg": "./lib/next-color-mode.umd.js",
9 | "types": "./lib/index.d.ts",
10 | "files": [
11 | "lib"
12 | ],
13 | "scripts": {
14 | "dev": "cd preview && npm run dev",
15 | "prepublishOnly": "npm run build",
16 | "prebuild": "rimraf lib",
17 | "build": "microbundle --jsx React.createElement",
18 | "build:watch": "microbundle watch --jsx React.createElement"
19 | },
20 | "repository": {
21 | "type": "git",
22 | "url": "git+https://github.com/bmstefanski/next-color-mode.git"
23 | },
24 | "keywords": [
25 | "nextjs",
26 | "nextjs-plugin"
27 | ],
28 | "author": "bmstefanski",
29 | "license": "MIT",
30 | "bugs": {
31 | "url": "https://github.com/bmstefanski/next-color-mode/issues"
32 | },
33 | "homepage": "https://github.com/bmstefanski/next-color-mode#readme",
34 | "peerDependencies": {
35 | "next": ">=9.0.0",
36 | "react": ">=16.0.0",
37 | "react-dom": ">=16.0.0"
38 | },
39 | "devDependencies": {
40 | "@types/next": "^9.0.0",
41 | "@types/node": "^18.0.0",
42 | "@types/react": "^17.0.18",
43 | "microbundle": "^0.15.0",
44 | "prettier": "^2.3.2",
45 | "react": ">=16.0.0",
46 | "react-dom": ">=16.0.0",
47 | "typescript": "^5.0.0"
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/renovate.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3 | "extends": [
4 | "config:base"
5 | ]
6 | }
7 |
--------------------------------------------------------------------------------
/src/ColorModeScript.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | export const initColorModeScript = `
4 | const selectedColorMode = localStorage.getItem("nextColorMode");
5 |
6 | if (!selectedColorMode) {
7 | setupPreferredColorMode();
8 | window.colorMode = window.prefersDarkMode ? "dark" : "light";
9 | } else {
10 | window.colorMode = selectedColorMode;
11 | }
12 |
13 | appendThemeClassName(window.colorMode)
14 |
15 | function setupPreferredColorMode() {
16 | const darkModeMediaQuery = window.matchMedia('(prefers-color-scheme: dark)');
17 | window.prefersDarkMode = darkModeMediaQuery.matches
18 | }
19 |
20 | function appendThemeClassName(colorMode) {
21 | window.document.querySelector('body').classList.remove("next-light-theme");
22 | window.document.querySelector('body').classList.remove("next-dark-theme");
23 | window.document.querySelector('body').classList.add("next-" + colorMode + "-theme")
24 | }
25 | `
26 |
27 | export function ColorModeScript() {
28 | return
29 | }
30 |
--------------------------------------------------------------------------------
/src/ColorModeStyles.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import Head from 'next/head'
3 |
4 | interface ColorModeStylesProps {
5 | styles: ColoredValue[]
6 | }
7 |
8 | type ColoredValue = { light: string; dark: string }
9 |
10 | export function ColorModeStyles({ styles }: ColorModeStylesProps) {
11 | return (
12 |
13 |
14 |
15 | )
16 | }
17 |
18 | function transformColorModeStyles(...styles: ColoredValue[]) {
19 | const lightStyles = styles.map((entry) => entry.light)
20 | const darkStyles = styles.map((entry) => entry.dark)
21 | return ['.next-light-theme {', lightStyles.join(''), '}', '.next-dark-theme {', darkStyles.join(''), '}']
22 | }
23 |
--------------------------------------------------------------------------------
/src/index.ts:
--------------------------------------------------------------------------------
1 | export * from './ColorModeScript'
2 | export * from './ColorModeStyles'
3 | export * from './useColorModeValue'
4 | export * from './useColorSwitcher'
5 |
--------------------------------------------------------------------------------
/src/useColorModeValue.tsx:
--------------------------------------------------------------------------------
1 | export function useColorModeValue(
2 | name: string,
3 | lightThemeValue: string,
4 | darkThemeValue: string,
5 | ): [string, { light: string; dark: string }] {
6 | return [`var(--${name})`, { light: `--${name}: ${lightThemeValue};`, dark: `--${name}: ${darkThemeValue};` }]
7 | }
8 |
--------------------------------------------------------------------------------
/src/useColorSwitcher.tsx:
--------------------------------------------------------------------------------
1 | import { useState, useCallback } from 'react'
2 |
3 | export function useColorSwitcher() {
4 | const [isLightMode, { toggle }] = useBoolean(() => {
5 | const colorMode = localStorage.getItem('nextColorMode')
6 | if (!colorMode) {
7 | return window.prefersDarkMode ? false : true
8 | }
9 | return colorMode === 'light'
10 | })
11 |
12 | function changeTheme(colorMode: 'light' | 'dark') {
13 | toggle()
14 | localStorage.setItem('nextColorMode', colorMode)
15 | const bodyElement = window.document.querySelector('body')
16 | bodyElement?.classList.remove('next-light-theme')
17 | bodyElement?.classList.remove('next-dark-theme')
18 | bodyElement?.classList.add('next-' + colorMode + '-theme')
19 | }
20 |
21 | function toggleTheme() {
22 | return changeTheme(isLightMode ? 'dark' : 'light')
23 | }
24 |
25 | return { colorMode: isLightMode ? 'light' : 'dark', changeTheme, toggleTheme }
26 | }
27 |
28 | function useBoolean(initialState: boolean | (() => boolean) = false) {
29 | const [value, setValue] = useState(initialState)
30 |
31 | const on = useCallback(() => {
32 | setValue(true)
33 | }, [])
34 |
35 | const off = useCallback(() => {
36 | setValue(false)
37 | }, [])
38 |
39 | const toggle = useCallback(() => {
40 | setValue((prev: boolean) => !prev)
41 | }, [])
42 |
43 | return [value, { on, off, toggle }] as const
44 | }
45 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "esnext",
4 | "module": "esnext",
5 | "jsx": "react",
6 | "declaration": true,
7 | "outDir": "lib",
8 | "strict": true,
9 | "noUnusedLocals": true,
10 | "noUnusedParameters": true,
11 | "noImplicitReturns": true,
12 | "noFallthroughCasesInSwitch": true,
13 | "allowSyntheticDefaultImports": true,
14 | "esModuleInterop": true,
15 | "moduleResolution": "node",
16 | "skipLibCheck": true,
17 | "baseUrl": "."
18 | },
19 | "include": ["src", "node_modules/next/types/global.d.ts", "global.d.ts"],
20 | "exclude": ["node_modules", "lib", "**/*.spec.ts", "example"]
21 | }
22 |
--------------------------------------------------------------------------------