@@ -16,4 +16,4 @@ const AddOns = () => {
)
}
-export default React.memo(AddOns)
+export default memo(AddOns)
diff --git a/src/containers/unit/Header/ThreadsNav.tsx b/src/containers/unit/Header/ThreadsNav.tsx
index cf4f80b6a..8d1b20948 100755
--- a/src/containers/unit/Header/ThreadsNav.tsx
+++ b/src/containers/unit/Header/ThreadsNav.tsx
@@ -1,8 +1,7 @@
-import React, { FC } from 'react'
+import { FC, memo } from 'react'
import type { TCommunity, TThread } from '@/spec'
import { Trans } from '@/utils'
-// import { SIZE } from '@/constant'
// import { Tabs } from '@/components/Switcher'
import DotDivider from '@/components/DotDivider'
@@ -46,4 +45,4 @@ const ThreadsNav: FC = ({
)
}
-export default React.memo(ThreadsNav)
+export default memo(ThreadsNav)
diff --git a/src/containers/unit/Header/UserAccount.tsx b/src/containers/unit/Header/UserAccount.tsx
index c1f80216e..9d24c95ac 100755
--- a/src/containers/unit/Header/UserAccount.tsx
+++ b/src/containers/unit/Header/UserAccount.tsx
@@ -1,4 +1,4 @@
-import React, { FC } from 'react'
+import { Fragment, FC, memo } from 'react'
import { useRouter } from 'next/router'
import type { TAccount } from '@/spec'
@@ -33,7 +33,7 @@ const UserAccount: FC = ({ isLogin, accountInfo }) => {
const router = useRouter()
return (
-
+
{isLogin ? (
= ({ isLogin, accountInfo }) => {
升 级
-
+
)
}
-export default React.memo(UserAccount)
+export default memo(UserAccount)
diff --git a/src/containers/unit/Header/index.tsx b/src/containers/unit/Header/index.tsx
index 9b9ae608c..81ce5ccc8 100755
--- a/src/containers/unit/Header/index.tsx
+++ b/src/containers/unit/Header/index.tsx
@@ -4,8 +4,6 @@
*
*/
-import React from 'react'
-
import { ANCHOR } from '@/constant'
import { useDevice } from '@/hooks'
import { report } from '@/utils'
diff --git a/src/containers/unit/Sidebar/store.ts b/src/containers/unit/Sidebar/store.ts
index e3c34d2f2..ad4273757 100755
--- a/src/containers/unit/Sidebar/store.ts
+++ b/src/containers/unit/Sidebar/store.ts
@@ -6,7 +6,7 @@
import { types as T, getParent, Instance } from 'mobx-state-tree'
import { merge, prop, trim, filter, contains } from 'ramda'
-import type { TRootStore, TCommunity, TAccount } from '@/spec'
+import type { TRootStore, TCommunity, TAccount, TRoute } from '@/spec'
import { buildLog, markStates, stripMobx, sortByIndex, notEmpty } from '@/utils'
/* eslint-disable-next-line */
@@ -31,7 +31,7 @@ const SidebarStore = T.model('SidebarStore', {
forceRerender: T.optional(T.boolean, false),
})
.views((self) => ({
- get curRoute(): any {
+ get curRoute(): TRoute {
const root = getParent(self) as TRootStore
return root.curRoute
},
diff --git a/src/containers/unit/TagsBar/DesktopView/TagItem.js b/src/containers/unit/TagsBar/DesktopView/TagItem.js
index d07e48e7e..7078d308c 100644
--- a/src/containers/unit/TagsBar/DesktopView/TagItem.js
+++ b/src/containers/unit/TagsBar/DesktopView/TagItem.js
@@ -14,15 +14,15 @@ import {
const TagItem = ({ tag, active, activeid, inline, onSelect }) => {
return (
-
+
- onSelect(tag)}>
+ onSelect(tag)}>
{Trans(tag.title)}
diff --git a/src/containers/unit/TagsBar/styles/desktop_view/tag_item.ts b/src/containers/unit/TagsBar/styles/desktop_view/tag_item.ts
index 41a50b244..880477132 100644
--- a/src/containers/unit/TagsBar/styles/desktop_view/tag_item.ts
+++ b/src/containers/unit/TagsBar/styles/desktop_view/tag_item.ts
@@ -7,20 +7,20 @@ import { theme, css } from '@/utils'
import { TagsWrapper } from './index'
-type TTag = TActive & { inline: boolean }
+type TTag = TActive & { $inline: boolean }
export const Wrapper = styled.div`
${css.flex('align-center')};
- margin-bottom: ${({ inline }) => (!inline ? '3px' : 0)};
- padding: ${({ inline }) => (!inline ? '5px' : 0)};
+ margin-bottom: ${({ $inline }) => (!$inline ? '3px' : 0)};
+ padding: ${({ $inline }) => (!$inline ? '5px' : 0)};
max-width: 180px;
border-radius: 5px;
- background: ${({ active, inline }) =>
- !active || inline ? 'transparent' : '#0e303d'};
+ background: ${({ $active, $inline }) =>
+ !$active || $inline ? 'transparent' : '#0e303d'};
&:hover {
- background: ${({ inline }) => (!inline ? '#0e303d' : 'none')};
+ background: ${({ $inline }) => (!$inline ? '#0e303d' : 'none')};
}
`
export const AllTagIcon = styled(Img)`
@@ -29,30 +29,30 @@ export const AllTagIcon = styled(Img)`
${css.size(14)};
transform: rotate(17deg);
`
-const getActiveColor = (active, color, activeid) => {
- if (activeid !== null) return active ? color : '#497684'
+const getActiveColor = ($active, color, activeid) => {
+ if (activeid !== null) return $active ? color : '#497684'
- return !active ? color : '#497684'
+ return !$active ? color : '#497684'
}
-type THashSign = TActive & { color: string; activeid: string; inline: boolean }
+type THashSign = TActive & { color: string; activeid: string; $inline: boolean }
export const HashSign = styled(HashTagSVG)`
- fill: ${({ active, color, activeid }) =>
- getActiveColor(active, color, activeid)};
+ fill: ${({ $active, color, activeid }) =>
+ getActiveColor($active, color, activeid)};
${css.size(14)};
- margin-right: ${({ inline }) => (!inline ? '12px' : '3px')};
+ margin-right: ${({ $inline }) => (!$inline ? '12px' : '3px')};
opacity: ${theme('tags.dotOpacity')};
transform: rotate(18deg);
`
export const TagTitle = styled.div`
color: ${theme('tags.text')};
- font-size: ${({ inline }) => (!inline ? '14.5px' : '13px')};
+ font-size: ${({ $inline }) => (!$inline ? '14.5px' : '13px')};
opacity: 0.9;
letter-spacing: 2px;
- font-weight: ${({ active }) => (active ? 'bold' : 'normal')};
- opacity: ${({ active }) => (active ? 1 : 0.9)};
- ${({ inline }) => (!inline ? css.cutRest('120px') : css.cutRest('50px'))};
+ font-weight: ${({ $active }) => ($active ? 'bold' : 'normal')};
+ opacity: ${({ $active }) => ($active ? 1 : 0.9)};
+ ${({ $inline }) => (!$inline ? css.cutRest('120px') : css.cutRest('50px'))};
&:hover {
cursor: pointer;
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx
index 5849f307a..095d27406 100755
--- a/src/pages/_app.tsx
+++ b/src/pages/_app.tsx
@@ -1,4 +1,3 @@
-import React from 'react'
import Head from 'next/head'
import { DefaultSeo } from 'next-seo'
import * as Sentry from '@sentry/node'
diff --git a/src/pages/community.tsx b/src/pages/community.tsx
index d239aa8ec..8f591a4de 100755
--- a/src/pages/community.tsx
+++ b/src/pages/community.tsx
@@ -1,4 +1,3 @@
-import React from 'react'
import { Provider } from 'mobx-react'
import { GetServerSideProps } from 'next'
import { merge, pick, toLower } from 'ramda'
diff --git a/src/pages/help-center.tsx b/src/pages/help-center.tsx
index 0c7787353..0c4dedb04 100755
--- a/src/pages/help-center.tsx
+++ b/src/pages/help-center.tsx
@@ -1,4 +1,3 @@
-import React from 'react'
import { Provider } from 'mobx-react'
import { GetServerSideProps } from 'next'
diff --git a/src/schemas/pages/job.ts b/src/schemas/pages/job.ts
index 7e5d35d42..3d93d4045 100755
--- a/src/schemas/pages/job.ts
+++ b/src/schemas/pages/job.ts
@@ -42,7 +42,7 @@ export const pagedJobs = `
pagedJobs(filter: $filter) {
entries {
${F.job}
- isPinned
+ pin
author {
${F.author}
}
diff --git a/src/schemas/pages/post.ts b/src/schemas/pages/post.ts
index b02e25672..4aed5936c 100755
--- a/src/schemas/pages/post.ts
+++ b/src/schemas/pages/post.ts
@@ -48,7 +48,7 @@ export const pagedPosts = `
pagedPosts(filter: $filter) {
entries {
${F.post}
- isPinned
+ pin
digest
linkAddr
linkIcon
diff --git a/src/schemas/pages/repo.ts b/src/schemas/pages/repo.ts
index a851fb7da..80cf1e0d4 100755
--- a/src/schemas/pages/repo.ts
+++ b/src/schemas/pages/repo.ts
@@ -41,7 +41,7 @@ export const pagedRepos = `
pagedRepos(filter: $filter) {
entries {
${F.repo}
- isPinned
+ pin
views
releaseTag
author {
diff --git a/src/spec/article.ts b/src/spec/article.ts
index bf4287a1b..8913b41b3 100644
--- a/src/spec/article.ts
+++ b/src/spec/article.ts
@@ -6,7 +6,7 @@ export type TArticle = {
title?: string
body?: string
views?: number
- isPinned?: boolean
+ pin?: boolean
author?: {
id: string
login: string
diff --git a/src/spec/community.ts b/src/spec/community.ts
index 89ac82aa3..792ce8834 100644
--- a/src/spec/community.ts
+++ b/src/spec/community.ts
@@ -4,6 +4,7 @@ export type TCommunity = {
logo?: string
raw: string
subscribersCount?: number
+ viewerHasSubscribed?: boolean
desc?: string
threads?: {
title: string
diff --git a/src/spec/utils.ts b/src/spec/utils.ts
index 5e4410f7a..f4cf634e0 100644
--- a/src/spec/utils.ts
+++ b/src/spec/utils.ts
@@ -10,8 +10,10 @@ export type TTestable = {
export type TActive = {
active?: boolean
+ $active?: boolean
show?: boolean
visible?: boolean
+ $visible?: boolean
}
export type TSpace = {
diff --git a/src/stores/SharedModel/Job.ts b/src/stores/SharedModel/Job.ts
index 518e16084..a59faab1b 100755
--- a/src/stores/SharedModel/Job.ts
+++ b/src/stores/SharedModel/Job.ts
@@ -30,7 +30,7 @@ export const Job = T.model('Job', {
commentsParticipatorsCount: T.optional(T.number, 0),
commentsParticipators: T.optional(T.array(User), []),
views: T.optional(T.number, 0),
- isPinned: T.maybeNull(T.boolean),
+ pin: T.maybeNull(T.boolean),
length: T.optional(T.number, 0),
favoritedCount: T.optional(T.number, 0),
diff --git a/src/stores/SharedModel/Post.ts b/src/stores/SharedModel/Post.ts
index f59c4fdfe..d79d991b7 100755
--- a/src/stores/SharedModel/Post.ts
+++ b/src/stores/SharedModel/Post.ts
@@ -27,7 +27,7 @@ export const Post = T.model('Post', {
commentsParticipatorsCount: T.optional(T.number, 0),
commentsParticipators: T.optional(T.array(User), []),
views: T.optional(T.number, 0),
- isPinned: T.maybeNull(T.boolean),
+ pin: T.maybeNull(T.boolean),
length: T.optional(T.number, 0),
favoritedCount: T.optional(T.number, 0),
starredCount: T.optional(T.number, 0),
diff --git a/src/stores/SharedModel/Repo.ts b/src/stores/SharedModel/Repo.ts
index f95a6a227..f57e6ca07 100755
--- a/src/stores/SharedModel/Repo.ts
+++ b/src/stores/SharedModel/Repo.ts
@@ -41,7 +41,7 @@ export const Repo = T.model('Reop', {
author: T.maybeNull(User),
views: T.optional(T.number, 0),
- isPinned: T.maybeNull(T.boolean),
+ pin: T.maybeNull(T.boolean),
favoritedCount: T.optional(T.number, 0),
viewerHasFavorited: T.optional(T.boolean, false),
diff --git a/tsconfig.json b/tsconfig.json
index 46137bcdb..4a2a5ce54 100755
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,6 +1,6 @@
{
"compilerOptions": {
- "target": "es5",
+ "target": "ES2015",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
diff --git a/utils/scripts/generators/component/stateless.tsx.hbs b/utils/scripts/generators/component/stateless.tsx.hbs
index d2001d0f5..3472e63e7 100755
--- a/utils/scripts/generators/component/stateless.tsx.hbs
+++ b/utils/scripts/generators/component/stateless.tsx.hbs
@@ -4,7 +4,7 @@
*
*/
-import React, { FC } from 'react'
+import { FC } from 'react'
import { buildLog } from '@/utils'
{{#if wantI18n}}
diff --git a/utils/scripts/generators/container/hooks.tsx.hbs b/utils/scripts/generators/container/hooks.tsx.hbs
index 61286d63a..2d6c22c06 100755
--- a/utils/scripts/generators/container/hooks.tsx.hbs
+++ b/utils/scripts/generators/container/hooks.tsx.hbs
@@ -6,7 +6,7 @@
*
*/
-import React, { FC } from 'react'
+import { FC } from 'react'
import { pluggedIn, buildLog } from '@/utils'
{{#if wantI18n}}
diff --git a/yarn.lock b/yarn.lock
index 475c47ba0..a3808b636 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -251,6 +251,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
+"@babel/runtime-corejs3@^7.10.2":
+ version "7.14.7"
+ resolved "https://registry.nlark.com/@babel/runtime-corejs3/download/@babel/runtime-corejs3-7.14.7.tgz#0ef292bbce40ca00f874c9724ef175a12476465c"
+ dependencies:
+ core-js-pure "^3.15.0"
+ regenerator-runtime "^0.13.4"
+
"@babel/runtime-corejs3@^7.8.3":
version "7.10.2"
resolved "https://registry.npm.taobao.org/@babel/runtime-corejs3/download/@babel/runtime-corejs3-7.10.2.tgz#3511797ddf9a3d6f3ce46b99cc835184817eaa4e"
@@ -271,6 +278,12 @@
dependencies:
regenerator-runtime "^0.13.4"
+"@babel/runtime@^7.11.2", "@babel/runtime@^7.14.0":
+ version "7.14.6"
+ resolved "https://registry.nlark.com/@babel/runtime/download/@babel/runtime-7.14.6.tgz#535203bc0892efc7dec60bdc27b2ecf6e409062d"
+ dependencies:
+ regenerator-runtime "^0.13.4"
+
"@babel/template@^7.12.13", "@babel/template@^7.3.3":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327"
@@ -635,9 +648,9 @@
eslint-plugin-react-hooks "^1.6.0"
prettier "^1.18.2"
-"@hapi/accept@5.0.1":
- version "5.0.1"
- resolved "https://registry.npm.taobao.org/@hapi/accept/download/@hapi/accept-5.0.1.tgz#068553e867f0f63225a506ed74e899441af53e10"
+"@hapi/accept@5.0.2":
+ version "5.0.2"
+ resolved "https://registry.npm.taobao.org/@hapi/accept/download/@hapi/accept-5.0.2.tgz#ab7043b037e68b722f93f376afb05e85c0699523"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/hoek" "9.x.x"
@@ -940,17 +953,21 @@
dependencies:
webpack-bundle-analyzer "3.6.1"
-"@next/env@10.1.4-canary.16":
- version "10.1.4-canary.16"
- resolved "https://registry.nlark.com/@next/env/download/@next/env-10.1.4-canary.16.tgz#a602aff082786ce83fa97614f2ebb3a9a1d32c34"
+"@next/env@11.0.1":
+ version "11.0.1"
+ resolved "https://registry.nlark.com/@next/env/download/@next/env-11.0.1.tgz#6dc96ac76f1663ab747340e907e8933f190cc8fd"
-"@next/polyfill-module@10.1.4-canary.16":
- version "10.1.4-canary.16"
- resolved "https://registry.nlark.com/@next/polyfill-module/download/@next/polyfill-module-10.1.4-canary.16.tgz#8e713fe34b5d85c862afca987998be5ccf5b231a"
+"@next/eslint-plugin-next@11.0.1":
+ version "11.0.1"
+ resolved "https://registry.nlark.com/@next/eslint-plugin-next/download/@next/eslint-plugin-next-11.0.1.tgz#5dd3264a40fadcf28eba00d914d69103422bb7e6"
-"@next/react-dev-overlay@10.1.4-canary.16":
- version "10.1.4-canary.16"
- resolved "https://registry.nlark.com/@next/react-dev-overlay/download/@next/react-dev-overlay-10.1.4-canary.16.tgz#fe45455322be8b370cc83cdc8c6dbd40dc04a98d"
+"@next/polyfill-module@11.0.1":
+ version "11.0.1"
+ resolved "https://registry.nlark.com/@next/polyfill-module/download/@next/polyfill-module-11.0.1.tgz#ca2a110c1c44672cbcff6c2b983f0c0549d87291"
+
+"@next/react-dev-overlay@11.0.1":
+ version "11.0.1"
+ resolved "https://registry.nlark.com/@next/react-dev-overlay/download/@next/react-dev-overlay-11.0.1.tgz#3c481e83347255abd466dcf7e59ac8a79a0d7fd6"
dependencies:
"@babel/code-frame" "7.12.11"
anser "1.4.9"
@@ -964,9 +981,9 @@
stacktrace-parser "0.1.10"
strip-ansi "6.0.0"
-"@next/react-refresh-utils@10.1.4-canary.16":
- version "10.1.4-canary.16"
- resolved "https://registry.nlark.com/@next/react-refresh-utils/download/@next/react-refresh-utils-10.1.4-canary.16.tgz#df5c1bad650c844b0db4847a3db29acfc64f0d93"
+"@next/react-refresh-utils@11.0.1":
+ version "11.0.1"
+ resolved "https://registry.nlark.com/@next/react-refresh-utils/download/@next/react-refresh-utils-11.0.1.tgz#a7509f22b6f70c13101a26573afd295295f1c020"
"@nodelib/fs.scandir@2.1.4":
version "2.1.4"
@@ -986,20 +1003,14 @@
"@nodelib/fs.scandir" "2.1.4"
fastq "^1.6.0"
-"@opentelemetry/api@0.14.0":
- version "0.14.0"
- resolved "https://registry.npm.taobao.org/@opentelemetry/api/download/@opentelemetry/api-0.14.0.tgz#4e17d8d2f1da72b19374efa7b6526aa001267cae"
- dependencies:
- "@opentelemetry/context-base" "^0.14.0"
-
-"@opentelemetry/context-base@^0.14.0":
- version "0.14.0"
- resolved "https://registry.npm.taobao.org/@opentelemetry/context-base/download/@opentelemetry/context-base-0.14.0.tgz#c67fc20a4d891447ca1a855d7d70fa79a3533001"
-
"@popperjs/core@^2.4.4":
version "2.5.4"
resolved "https://registry.npm.taobao.org/@popperjs/core/download/@popperjs/core-2.5.4.tgz?cache=0&sync_timestamp=1604053905119&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40popperjs%2Fcore%2Fdownload%2F%40popperjs%2Fcore-2.5.4.tgz#de25b5da9f727985a3757fd59b5d028aba75841a"
+"@rushstack/eslint-patch@^1.0.6":
+ version "1.0.6"
+ resolved "https://registry.npm.taobao.org/@rushstack/eslint-patch/download/@rushstack/eslint-patch-1.0.6.tgz#023d72a5c4531b4ce204528971700a78a85a0c50"
+
"@samverschueren/stream-to-observable@^0.3.0":
version "0.3.0"
resolved "https://registry.npm.taobao.org/@samverschueren/stream-to-observable/download/@samverschueren/stream-to-observable-0.3.0.tgz#ecdf48d532c58ea477acfcab80348424f8d0662f"
@@ -1243,6 +1254,10 @@
version "7.0.7"
resolved "https://registry.npm.taobao.org/@types/json-schema/download/@types/json-schema-7.0.7.tgz?cache=0&sync_timestamp=1613378919536&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fjson-schema%2Fdownload%2F%40types%2Fjson-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad"
+"@types/json5@^0.0.29":
+ version "0.0.29"
+ resolved "https://registry.nlark.com/@types/json5/download/@types/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
+
"@types/jss@^9.5.6":
version "9.5.8"
resolved "https://registry.npm.taobao.org/@types/jss/download/@types/jss-9.5.8.tgz#258391f42211c042fc965508d505cbdc579baa5b"
@@ -1391,6 +1406,15 @@
"@typescript-eslint/typescript-estree" "4.20.0"
debug "^4.1.1"
+"@typescript-eslint/parser@^4.20.0":
+ version "4.28.0"
+ resolved "https://registry.nlark.com/@typescript-eslint/parser/download/@typescript-eslint/parser-4.28.0.tgz?cache=0&sync_timestamp=1624295997650&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fparser%2Fdownload%2F%40typescript-eslint%2Fparser-4.28.0.tgz#2404c16751a28616ef3abab77c8e51d680a12caa"
+ dependencies:
+ "@typescript-eslint/scope-manager" "4.28.0"
+ "@typescript-eslint/types" "4.28.0"
+ "@typescript-eslint/typescript-estree" "4.28.0"
+ debug "^4.3.1"
+
"@typescript-eslint/scope-manager@4.17.0":
version "4.17.0"
resolved "https://registry.npm.taobao.org/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-4.17.0.tgz#f4edf94eff3b52a863180f7f89581bf963e3d37d"
@@ -1405,6 +1429,13 @@
"@typescript-eslint/types" "4.20.0"
"@typescript-eslint/visitor-keys" "4.20.0"
+"@typescript-eslint/scope-manager@4.28.0":
+ version "4.28.0"
+ resolved "https://registry.nlark.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-4.28.0.tgz?cache=0&sync_timestamp=1624295994497&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fscope-manager%2Fdownload%2F%40typescript-eslint%2Fscope-manager-4.28.0.tgz#6a3009d2ab64a30fc8a1e257a1a320067f36a0ce"
+ dependencies:
+ "@typescript-eslint/types" "4.28.0"
+ "@typescript-eslint/visitor-keys" "4.28.0"
+
"@typescript-eslint/types@4.17.0":
version "4.17.0"
resolved "https://registry.npm.taobao.org/@typescript-eslint/types/download/@typescript-eslint/types-4.17.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40typescript-eslint%2Ftypes%2Fdownload%2F%40typescript-eslint%2Ftypes-4.17.0.tgz#f57d8fc7f31b348db946498a43050083d25f40ad"
@@ -1413,6 +1444,10 @@
version "4.20.0"
resolved "https://registry.npm.taobao.org/@typescript-eslint/types/download/@typescript-eslint/types-4.20.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40typescript-eslint%2Ftypes%2Fdownload%2F%40typescript-eslint%2Ftypes-4.20.0.tgz#c6cf5ef3c9b1c8f699a9bbdafb7a1da1ca781225"
+"@typescript-eslint/types@4.28.0":
+ version "4.28.0"
+ resolved "https://registry.nlark.com/@typescript-eslint/types/download/@typescript-eslint/types-4.28.0.tgz#a33504e1ce7ac51fc39035f5fe6f15079d4dafb0"
+
"@typescript-eslint/typescript-estree@4.17.0":
version "4.17.0"
resolved "https://registry.npm.taobao.org/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-4.17.0.tgz?cache=0&sync_timestamp=1617048645270&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40typescript-eslint%2Ftypescript-estree%2Fdownload%2F%40typescript-eslint%2Ftypescript-estree-4.17.0.tgz#b835d152804f0972b80dbda92477f9070a72ded1"
@@ -1437,6 +1472,18 @@
semver "^7.3.2"
tsutils "^3.17.1"
+"@typescript-eslint/typescript-estree@4.28.0":
+ version "4.28.0"
+ resolved "https://registry.nlark.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-4.28.0.tgz?cache=0&sync_timestamp=1624295995313&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Ftypescript-estree%2Fdownload%2F%40typescript-eslint%2Ftypescript-estree-4.28.0.tgz#e66d4e5aa2ede66fec8af434898fe61af10c71cf"
+ dependencies:
+ "@typescript-eslint/types" "4.28.0"
+ "@typescript-eslint/visitor-keys" "4.28.0"
+ debug "^4.3.1"
+ globby "^11.0.3"
+ is-glob "^4.0.1"
+ semver "^7.3.5"
+ tsutils "^3.21.0"
+
"@typescript-eslint/visitor-keys@4.17.0":
version "4.17.0"
resolved "https://registry.npm.taobao.org/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-4.17.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40typescript-eslint%2Fvisitor-keys%2Fdownload%2F%40typescript-eslint%2Fvisitor-keys-4.17.0.tgz#9c304cfd20287c14a31d573195a709111849b14d"
@@ -1451,6 +1498,13 @@
"@typescript-eslint/types" "4.20.0"
eslint-visitor-keys "^2.0.0"
+"@typescript-eslint/visitor-keys@4.28.0":
+ version "4.28.0"
+ resolved "https://registry.nlark.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-4.28.0.tgz#255c67c966ec294104169a6939d96f91c8a89434"
+ dependencies:
+ "@typescript-eslint/types" "4.28.0"
+ eslint-visitor-keys "^2.0.0"
+
"@webassemblyjs/ast@1.9.0":
version "1.9.0"
resolved "https://registry.npm.taobao.org/@webassemblyjs/ast/download/@webassemblyjs/ast-1.9.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40webassemblyjs%2Fast%2Fdownload%2F%40webassemblyjs%2Fast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
@@ -1898,6 +1952,13 @@ aria-query@^3.0.0:
ast-types-flow "0.0.7"
commander "^2.11.0"
+aria-query@^4.2.2:
+ version "4.2.2"
+ resolved "https://registry.npm.taobao.org/aria-query/download/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
+ dependencies:
+ "@babel/runtime" "^7.10.2"
+ "@babel/runtime-corejs3" "^7.10.2"
+
arr-diff@^2.0.0:
version "2.0.0"
resolved "https://registry.npm.taobao.org/arr-diff/download/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
@@ -1948,6 +2009,16 @@ array-includes@^3.0.3, array-includes@^3.1.1:
es-abstract "^1.17.0"
is-string "^1.0.5"
+array-includes@^3.1.2, array-includes@^3.1.3:
+ version "3.1.3"
+ resolved "https://registry.npm.taobao.org/array-includes/download/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a"
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ get-intrinsic "^1.1.1"
+ is-string "^1.0.5"
+
array-slice@^1.0.0:
version "1.1.0"
resolved "https://registry.npm.taobao.org/array-slice/download/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4"
@@ -1988,6 +2059,23 @@ array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3:
define-properties "^1.1.3"
es-abstract "^1.17.0-next.1"
+array.prototype.flat@^1.2.4:
+ version "1.2.4"
+ resolved "https://registry.npm.taobao.org/array.prototype.flat/download/array.prototype.flat-1.2.4.tgz?cache=0&sync_timestamp=1605688971975&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farray.prototype.flat%2Fdownload%2Farray.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123"
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.1"
+
+array.prototype.flatmap@^1.2.4:
+ version "1.2.4"
+ resolved "https://registry.npm.taobao.org/array.prototype.flatmap/download/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9"
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.1"
+ function-bind "^1.1.1"
+
arrify@^1.0.1:
version "1.0.1"
resolved "https://registry.npm.taobao.org/arrify/download/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
@@ -2094,6 +2182,10 @@ aws4@^1.8.0:
version "1.10.0"
resolved "https://registry.npm.taobao.org/aws4/download/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2"
+axe-core@^4.0.2:
+ version "4.2.3"
+ resolved "https://registry.nlark.com/axe-core/download/axe-core-4.2.3.tgz#2a3afc332f0031b42f602f4a3de03c211ca98f72"
+
axios@^0.19.0:
version "0.19.2"
resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.2.tgz#3ea36c5d8818d0d5f8a8a97a6d36b86cdc00cb27"
@@ -2110,6 +2202,10 @@ axobject-query@^2.0.2:
version "2.1.2"
resolved "https://registry.npm.taobao.org/axobject-query/download/axobject-query-2.1.2.tgz#2bdffc0371e643e5f03ba99065d5179b9ca79799"
+axobject-query@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.npm.taobao.org/axobject-query/download/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
+
babel-code-frame@^6.26.0:
version "6.26.0"
resolved "https://registry.npm.taobao.org/babel-code-frame/download/babel-code-frame-6.26.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-code-frame%2Fdownload%2Fbabel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
@@ -2552,15 +2648,15 @@ browserify-zlib@0.2.0, browserify-zlib@^0.2.0:
dependencies:
pako "~1.0.5"
-browserslist@4.16.1:
- version "4.16.1"
- resolved "https://registry.nlark.com/browserslist/download/browserslist-4.16.1.tgz#bf757a2da376b3447b800a16f0f1c96358138766"
+browserslist@4.16.6:
+ version "4.16.6"
+ resolved "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
dependencies:
- caniuse-lite "^1.0.30001173"
- colorette "^1.2.1"
- electron-to-chromium "^1.3.634"
+ caniuse-lite "^1.0.30001219"
+ colorette "^1.2.2"
+ electron-to-chromium "^1.3.723"
escalade "^3.1.1"
- node-releases "^1.1.69"
+ node-releases "^1.1.71"
browserslist@^4.14.5:
version "4.16.3"
@@ -2780,14 +2876,18 @@ camelize@^1.0.0:
version "1.0.0"
resolved "https://registry.npm.taobao.org/camelize/download/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b"
-caniuse-lite@^1.0.30001173, caniuse-lite@^1.0.30001179, caniuse-lite@^1.0.30001202:
- version "1.0.30001214"
- resolved "https://registry.nlark.com/caniuse-lite/download/caniuse-lite-1.0.30001214.tgz#70f153c78223515c6d37a9fde6cd69250da9d872"
-
caniuse-lite@^1.0.30001181:
version "1.0.30001205"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001205.tgz#d79bf6a6fb13196b4bb46e5143a22ca0242e0ef8"
+caniuse-lite@^1.0.30001202:
+ version "1.0.30001214"
+ resolved "https://registry.nlark.com/caniuse-lite/download/caniuse-lite-1.0.30001214.tgz#70f153c78223515c6d37a9fde6cd69250da9d872"
+
+caniuse-lite@^1.0.30001219, caniuse-lite@^1.0.30001228:
+ version "1.0.30001240"
+ resolved "https://registry.nlark.com/caniuse-lite/download/caniuse-lite-1.0.30001240.tgz?cache=0&sync_timestamp=1624686520179&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcaniuse-lite%2Fdownload%2Fcaniuse-lite-1.0.30001240.tgz#ec15d125b590602c8731545c5351ff054ad2d52f"
+
capture-exit@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
@@ -3498,6 +3598,10 @@ core-js-pure@^3.0.0:
version "3.6.5"
resolved "https://registry.npm.taobao.org/core-js-pure/download/core-js-pure-3.6.5.tgz#c79e75f5e38dbc85a662d91eea52b8256d53b813"
+core-js-pure@^3.15.0:
+ version "3.15.1"
+ resolved "https://registry.nlark.com/core-js-pure/download/core-js-pure-3.15.1.tgz#8356f6576fa2aa8e54ca6fe02620968ff010eed7"
+
core-js@3.6.5:
version "3.6.5"
resolved "https://registry.npm.taobao.org/core-js/download/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a"
@@ -3805,6 +3909,10 @@ damerau-levenshtein@^1.0.4:
version "1.0.6"
resolved "https://registry.npm.taobao.org/damerau-levenshtein/download/damerau-levenshtein-1.0.6.tgz?cache=0&sync_timestamp=1580134161761&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdamerau-levenshtein%2Fdownload%2Fdamerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791"
+damerau-levenshtein@^1.0.6:
+ version "1.0.7"
+ resolved "https://registry.nlark.com/damerau-levenshtein/download/damerau-levenshtein-1.0.7.tgz#64368003512a1a6992593741a09a9d31a836f55d"
+
dargs@^4.0.1:
version "4.1.0"
resolved "https://registry.npm.taobao.org/dargs/download/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17"
@@ -3875,7 +3983,7 @@ debug@4, debug@4.3.2, debug@^4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
dependencies:
ms "2.1.2"
-debug@4.3.1:
+debug@4.3.1, debug@^4.3.1:
version "4.3.1"
resolved "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz?cache=0&sync_timestamp=1607566580543&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
dependencies:
@@ -3893,6 +4001,12 @@ debug@^3.1.0:
dependencies:
ms "^2.1.1"
+debug@^3.2.7:
+ version "3.2.7"
+ resolved "https://registry.npm.taobao.org/debug/download/debug-3.2.7.tgz?cache=0&sync_timestamp=1614330710870&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
+ dependencies:
+ ms "^2.1.1"
+
decamelize-keys@^1.0.0, decamelize-keys@^1.1.0:
version "1.1.0"
resolved "https://registry.npm.taobao.org/decamelize-keys/download/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
@@ -4233,14 +4347,14 @@ ejs@^2.6.1:
version "2.7.4"
resolved "https://registry.npm.taobao.org/ejs/download/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba"
-electron-to-chromium@^1.3.634:
- version "1.3.720"
- resolved "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.720.tgz?cache=0&sync_timestamp=1619129624222&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.720.tgz#f5d66df8754d993006b7b2ded15ff7738c58bd94"
-
electron-to-chromium@^1.3.649:
version "1.3.704"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.704.tgz#894205a237cbe0097d63da8f6d19e605dd13ab51"
+electron-to-chromium@^1.3.723:
+ version "1.3.759"
+ resolved "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.759.tgz?cache=0&sync_timestamp=1624658727010&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.759.tgz#b0d652d376831470a4c230ba721da2427bfb996a"
+
elegant-spinner@^1.0.1:
version "1.0.1"
resolved "https://registry.npm.taobao.org/elegant-spinner/download/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e"
@@ -4275,6 +4389,10 @@ emoji-regex@^8.0.0:
version "8.0.0"
resolved "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+emoji-regex@^9.0.0:
+ version "9.2.2"
+ resolved "https://registry.nlark.com/emoji-regex/download/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
+
emojis-list@^2.0.0:
version "2.1.0"
resolved "https://registry.npm.taobao.org/emojis-list/download/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
@@ -4442,6 +4560,27 @@ es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2:
string.prototype.trimstart "^1.0.4"
unbox-primitive "^1.0.0"
+es-abstract@^1.18.2:
+ version "1.18.3"
+ resolved "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz#25c4c3380a27aa203c44b2b685bba94da31b63e0"
+ dependencies:
+ call-bind "^1.0.2"
+ es-to-primitive "^1.2.1"
+ function-bind "^1.1.1"
+ get-intrinsic "^1.1.1"
+ has "^1.0.3"
+ has-symbols "^1.0.2"
+ is-callable "^1.2.3"
+ is-negative-zero "^2.0.1"
+ is-regex "^1.1.3"
+ is-string "^1.0.6"
+ object-inspect "^1.10.3"
+ object-keys "^1.1.1"
+ object.assign "^4.1.2"
+ string.prototype.trimend "^1.0.4"
+ string.prototype.trimstart "^1.0.4"
+ unbox-primitive "^1.0.1"
+
es-to-primitive@^1.2.1:
version "1.2.1"
resolved "https://registry.npm.taobao.org/es-to-primitive/download/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
@@ -4529,6 +4668,20 @@ eslint-config-airbnb@^17.1.0:
object.assign "^4.1.0"
object.entries "^1.1.0"
+eslint-config-next@^11.0.1:
+ version "11.0.1"
+ resolved "https://registry.nlark.com/eslint-config-next/download/eslint-config-next-11.0.1.tgz#abdd2565a6fa5841556a89ba935f044bec173d0b"
+ dependencies:
+ "@next/eslint-plugin-next" "11.0.1"
+ "@rushstack/eslint-patch" "^1.0.6"
+ "@typescript-eslint/parser" "^4.20.0"
+ eslint-import-resolver-node "^0.3.4"
+ eslint-import-resolver-typescript "^2.4.0"
+ eslint-plugin-import "^2.22.1"
+ eslint-plugin-jsx-a11y "^6.4.1"
+ eslint-plugin-react "^7.23.1"
+ eslint-plugin-react-hooks "^4.2.0"
+
eslint-config-prettier@^5.0.0:
version "5.1.0"
resolved "https://registry.npm.taobao.org/eslint-config-prettier/download/eslint-config-prettier-5.1.0.tgz#bf29442e7c818236a77acfe2241ec991299f9bf1"
@@ -4556,6 +4709,23 @@ eslint-import-resolver-node@^0.3.2:
debug "^2.6.9"
resolve "^1.13.1"
+eslint-import-resolver-node@^0.3.4:
+ version "0.3.4"
+ resolved "https://registry.npm.taobao.org/eslint-import-resolver-node/download/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717"
+ dependencies:
+ debug "^2.6.9"
+ resolve "^1.13.1"
+
+eslint-import-resolver-typescript@^2.4.0:
+ version "2.4.0"
+ resolved "https://registry.npm.taobao.org/eslint-import-resolver-typescript/download/eslint-import-resolver-typescript-2.4.0.tgz#ec1e7063ebe807f0362a7320543aaed6fe1100e1"
+ dependencies:
+ debug "^4.1.1"
+ glob "^7.1.6"
+ is-glob "^4.0.1"
+ resolve "^1.17.0"
+ tsconfig-paths "^3.9.0"
+
eslint-module-utils@^2.4.1:
version "2.6.0"
resolved "https://registry.npm.taobao.org/eslint-module-utils/download/eslint-module-utils-2.6.0.tgz?cache=0&sync_timestamp=1585438056134&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-module-utils%2Fdownload%2Feslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6"
@@ -4563,6 +4733,13 @@ eslint-module-utils@^2.4.1:
debug "^2.6.9"
pkg-dir "^2.0.0"
+eslint-module-utils@^2.6.1:
+ version "2.6.1"
+ resolved "https://registry.nlark.com/eslint-module-utils/download/eslint-module-utils-2.6.1.tgz?cache=0&sync_timestamp=1620972121953&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-module-utils%2Fdownload%2Feslint-module-utils-2.6.1.tgz#b51be1e473dd0de1c5ea638e22429c2490ea8233"
+ dependencies:
+ debug "^3.2.7"
+ pkg-dir "^2.0.0"
+
eslint-plugin-cypress@^2.2.1:
version "2.11.1"
resolved "https://registry.npm.taobao.org/eslint-plugin-cypress/download/eslint-plugin-cypress-2.11.1.tgz#a945e2774b88211e2c706a059d431e262b5c2862"
@@ -4586,6 +4763,26 @@ eslint-plugin-import@^2.17.3:
read-pkg-up "^2.0.0"
resolve "^1.12.0"
+eslint-plugin-import@^2.22.1:
+ version "2.23.4"
+ resolved "https://registry.nlark.com/eslint-plugin-import/download/eslint-plugin-import-2.23.4.tgz#8dceb1ed6b73e46e50ec9a5bb2411b645e7d3d97"
+ dependencies:
+ array-includes "^3.1.3"
+ array.prototype.flat "^1.2.4"
+ debug "^2.6.9"
+ doctrine "^2.1.0"
+ eslint-import-resolver-node "^0.3.4"
+ eslint-module-utils "^2.6.1"
+ find-up "^2.0.0"
+ has "^1.0.3"
+ is-core-module "^2.4.0"
+ minimatch "^3.0.4"
+ object.values "^1.1.3"
+ pkg-up "^2.0.0"
+ read-pkg-up "^3.0.0"
+ resolve "^1.20.0"
+ tsconfig-paths "^3.9.0"
+
eslint-plugin-jsx-a11y@^6.2.1:
version "6.2.3"
resolved "https://registry.npm.taobao.org/eslint-plugin-jsx-a11y/download/eslint-plugin-jsx-a11y-6.2.3.tgz#b872a09d5de51af70a97db1eea7dc933043708aa"
@@ -4600,10 +4797,30 @@ eslint-plugin-jsx-a11y@^6.2.1:
has "^1.0.3"
jsx-ast-utils "^2.2.1"
+eslint-plugin-jsx-a11y@^6.4.1:
+ version "6.4.1"
+ resolved "https://registry.npm.taobao.org/eslint-plugin-jsx-a11y/download/eslint-plugin-jsx-a11y-6.4.1.tgz?cache=0&sync_timestamp=1603729445122&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-plugin-jsx-a11y%2Fdownload%2Feslint-plugin-jsx-a11y-6.4.1.tgz#a2d84caa49756942f42f1ffab9002436391718fd"
+ dependencies:
+ "@babel/runtime" "^7.11.2"
+ aria-query "^4.2.2"
+ array-includes "^3.1.1"
+ ast-types-flow "^0.0.7"
+ axe-core "^4.0.2"
+ axobject-query "^2.2.0"
+ damerau-levenshtein "^1.0.6"
+ emoji-regex "^9.0.0"
+ has "^1.0.3"
+ jsx-ast-utils "^3.1.0"
+ language-tags "^1.0.5"
+
eslint-plugin-react-hooks@^1.6.0:
version "1.7.0"
resolved "https://registry.npm.taobao.org/eslint-plugin-react-hooks/download/eslint-plugin-react-hooks-1.7.0.tgz#6210b6d5a37205f0b92858f895a4e827020a7d04"
+eslint-plugin-react-hooks@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.nlark.com/eslint-plugin-react-hooks/download/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556"
+
eslint-plugin-react@^7.13.0:
version "7.20.0"
resolved "https://registry.npm.taobao.org/eslint-plugin-react/download/eslint-plugin-react-7.20.0.tgz?cache=0&sync_timestamp=1589341526334&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-plugin-react%2Fdownload%2Feslint-plugin-react-7.20.0.tgz#f98712f0a5e57dfd3e5542ef0604b8739cd47be3"
@@ -4620,6 +4837,23 @@ eslint-plugin-react@^7.13.0:
string.prototype.matchall "^4.0.2"
xregexp "^4.3.0"
+eslint-plugin-react@^7.23.1:
+ version "7.24.0"
+ resolved "https://registry.nlark.com/eslint-plugin-react/download/eslint-plugin-react-7.24.0.tgz#eadedfa351a6f36b490aa17f4fa9b14e842b9eb4"
+ dependencies:
+ array-includes "^3.1.3"
+ array.prototype.flatmap "^1.2.4"
+ doctrine "^2.1.0"
+ has "^1.0.3"
+ jsx-ast-utils "^2.4.1 || ^3.0.0"
+ minimatch "^3.0.4"
+ object.entries "^1.1.4"
+ object.fromentries "^2.0.4"
+ object.values "^1.1.4"
+ prop-types "^15.7.2"
+ resolve "^2.0.0-next.3"
+ string.prototype.matchall "^4.0.5"
+
eslint-scope@^4.0.3:
version "4.0.3"
resolved "https://registry.npm.taobao.org/eslint-scope/download/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
@@ -5429,7 +5663,7 @@ get-caller-file@^2.0.1:
version "2.0.5"
resolved "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
-get-intrinsic@^1.0.2, get-intrinsic@^1.1.1:
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
version "1.1.1"
resolved "https://registry.npm.taobao.org/get-intrinsic/download/get-intrinsic-1.1.1.tgz?cache=0&sync_timestamp=1612364352840&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fget-intrinsic%2Fdownload%2Fget-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
dependencies:
@@ -5618,6 +5852,17 @@ glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.1.3:
once "^1.3.0"
path-is-absolute "^1.0.0"
+glob@^7.1.6:
+ version "7.1.7"
+ resolved "https://registry.nlark.com/glob/download/glob-7.1.7.tgz?cache=0&sync_timestamp=1620337382269&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob%2Fdownload%2Fglob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.0.4"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
global-dirs@^0.1.1:
version "0.1.1"
resolved "https://registry.npm.taobao.org/global-dirs/download/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
@@ -5680,6 +5925,17 @@ globby@^11.0.1:
merge2 "^1.3.0"
slash "^3.0.0"
+globby@^11.0.3:
+ version "11.0.4"
+ resolved "https://registry.nlark.com/globby/download/globby-11.0.4.tgz?cache=0&sync_timestamp=1623850192942&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobby%2Fdownload%2Fglobby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5"
+ dependencies:
+ array-union "^2.1.0"
+ dir-glob "^3.0.1"
+ fast-glob "^3.1.1"
+ ignore "^5.1.4"
+ merge2 "^1.3.0"
+ slash "^3.0.0"
+
globby@^7.1.1:
version "7.1.1"
resolved "https://registry.npm.taobao.org/globby/download/globby-7.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglobby%2Fdownload%2Fglobby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680"
@@ -6057,6 +6313,12 @@ ignore@^5.1.1, ignore@^5.1.4:
version "5.1.8"
resolved "https://registry.npm.taobao.org/ignore/download/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
+image-size@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npm.taobao.org/image-size/download/image-size-1.0.0.tgz?cache=0&sync_timestamp=1618424661730&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fimage-size%2Fdownload%2Fimage-size-1.0.0.tgz#58b31fe4743b1cec0a0ac26f5c914d3c5b2f0750"
+ dependencies:
+ queue "6.0.2"
+
imagesloaded@^4.0.0:
version "4.1.4"
resolved "https://registry.npm.taobao.org/imagesloaded/download/imagesloaded-4.1.4.tgz#1376efcd162bb768c34c3727ac89cc04051f3cc7"
@@ -6237,6 +6499,14 @@ internal-slot@^1.0.2:
has "^1.0.3"
side-channel "^1.0.2"
+internal-slot@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.nlark.com/internal-slot/download/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
+ dependencies:
+ get-intrinsic "^1.1.0"
+ has "^1.0.3"
+ side-channel "^1.0.4"
+
interpret@^1.0.0, interpret@^1.2.0:
version "1.2.0"
resolved "https://registry.npm.taobao.org/interpret/download/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296"
@@ -6334,6 +6604,12 @@ is-ci@^3.0.0:
dependencies:
ci-info "^3.1.1"
+is-core-module@^2.2.0, is-core-module@^2.4.0:
+ version "2.4.0"
+ resolved "https://registry.nlark.com/is-core-module/download/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1"
+ dependencies:
+ has "^1.0.3"
+
is-data-descriptor@^0.1.4:
version "0.1.4"
resolved "https://registry.npm.taobao.org/is-data-descriptor/download/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
@@ -6559,6 +6835,13 @@ is-regex@^1.1.2:
call-bind "^1.0.2"
has-symbols "^1.0.1"
+is-regex@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.nlark.com/is-regex/download/is-regex-1.1.3.tgz?cache=0&sync_timestamp=1620452285370&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f"
+ dependencies:
+ call-bind "^1.0.2"
+ has-symbols "^1.0.2"
+
is-regexp@^1.0.0:
version "1.0.0"
resolved "https://registry.npm.taobao.org/is-regexp/download/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
@@ -6581,6 +6864,10 @@ is-string@^1.0.5:
version "1.0.5"
resolved "https://registry.npm.taobao.org/is-string/download/is-string-1.0.5.tgz?cache=0&sync_timestamp=1576731545458&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-string%2Fdownload%2Fis-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"
+is-string@^1.0.6:
+ version "1.0.6"
+ resolved "https://registry.nlark.com/is-string/download/is-string-1.0.6.tgz?cache=0&sync_timestamp=1620448217105&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f"
+
is-subset@^0.1.1:
version "0.1.1"
resolved "https://registry.npm.taobao.org/is-subset/download/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6"
@@ -7295,6 +7582,13 @@ jsx-ast-utils@^2.2.1, jsx-ast-utils@^2.2.3:
array-includes "^3.1.1"
object.assign "^4.1.0"
+"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.1.0:
+ version "3.2.0"
+ resolved "https://registry.nlark.com/jsx-ast-utils/download/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82"
+ dependencies:
+ array-includes "^3.1.2"
+ object.assign "^4.1.2"
+
keyv@~4.0.0:
version "4.0.1"
resolved "https://registry.npm.taobao.org/keyv/download/keyv-4.0.1.tgz#9fe703cb4a94d6d11729d320af033307efd02ee6"
@@ -7325,6 +7619,16 @@ kleur@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
+language-subtag-registry@~0.3.2:
+ version "0.3.21"
+ resolved "https://registry.npm.taobao.org/language-subtag-registry/download/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a"
+
+language-tags@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.npm.taobao.org/language-tags/download/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
+ dependencies:
+ language-subtag-registry "~0.3.2"
+
lazy-ass@1.6.0, lazy-ass@^1.6.0:
version "1.6.0"
resolved "https://registry.npm.taobao.org/lazy-ass/download/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513"
@@ -8034,19 +8338,19 @@ mobx-react-lite@3.2.0, mobx-react-lite@^3.2.0:
version "3.2.0"
resolved "https://registry.npm.taobao.org/mobx-react-lite/download/mobx-react-lite-3.2.0.tgz#331d7365a6b053378dfe9c087315b4e41c5df69f"
-mobx-react@7.1.0:
- version "7.1.0"
- resolved "https://registry.npm.taobao.org/mobx-react/download/mobx-react-7.1.0.tgz#d947cada3cfad294b4b6f692e969c242b9c16eaf"
+mobx-react@7.2.0:
+ version "7.2.0"
+ resolved "https://registry.nlark.com/mobx-react/download/mobx-react-7.2.0.tgz#241e925e963bb83a31d269f65f9f379e37ecbaeb"
dependencies:
mobx-react-lite "^3.2.0"
-mobx-state-tree@5.0.1:
- version "5.0.1"
- resolved "https://registry.npm.taobao.org/mobx-state-tree/download/mobx-state-tree-5.0.1.tgz#d495725fe11075d8fde8f02ab65db6736b44e014"
+mobx-state-tree@5.0.2:
+ version "5.0.2"
+ resolved "https://registry.nlark.com/mobx-state-tree/download/mobx-state-tree-5.0.2.tgz#62c891eb34cf1cd07d758a933307ef5bce83721c"
-mobx@6.3.0:
- version "6.3.0"
- resolved "https://registry.nlark.com/mobx/download/mobx-6.3.0.tgz#a8fb693c3047bdfcb1eaff9aa48e36a7eb084f96"
+mobx@6.3.2:
+ version "6.3.2"
+ resolved "https://registry.nlark.com/mobx/download/mobx-6.3.2.tgz#125590961f702a572c139ab69392bea416d2e51b"
modify-values@^1.0.0:
version "1.0.1"
@@ -8221,23 +8525,22 @@ next-tick@~1.0.0:
version "1.0.0"
resolved "https://registry.npm.taobao.org/next-tick/download/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c"
-next@^10.1.4-canary.16:
- version "10.1.4-canary.16"
- resolved "https://registry.nlark.com/next/download/next-10.1.4-canary.16.tgz#af0c954f135ff096914749d2d8ad7daa5a225927"
+next@11.0.1:
+ version "11.0.1"
+ resolved "https://registry.nlark.com/next/download/next-11.0.1.tgz#b8e3914d153aaf7143cb98c09bcd3c8230eeb17a"
dependencies:
"@babel/runtime" "7.12.5"
- "@hapi/accept" "5.0.1"
- "@next/env" "10.1.4-canary.16"
- "@next/polyfill-module" "10.1.4-canary.16"
- "@next/react-dev-overlay" "10.1.4-canary.16"
- "@next/react-refresh-utils" "10.1.4-canary.16"
- "@opentelemetry/api" "0.14.0"
+ "@hapi/accept" "5.0.2"
+ "@next/env" "11.0.1"
+ "@next/polyfill-module" "11.0.1"
+ "@next/react-dev-overlay" "11.0.1"
+ "@next/react-refresh-utils" "11.0.1"
assert "2.0.0"
ast-types "0.13.2"
browserify-zlib "0.2.0"
- browserslist "4.16.1"
+ browserslist "4.16.6"
buffer "5.6.0"
- caniuse-lite "^1.0.30001179"
+ caniuse-lite "^1.0.30001228"
chalk "2.4.2"
chokidar "3.5.1"
constants-browserify "1.0.0"
@@ -8249,6 +8552,7 @@ next@^10.1.4-canary.16:
find-cache-dir "3.3.1"
get-orientation "1.1.2"
https-browserify "1.0.0"
+ image-size "1.0.0"
jest-worker "27.0.0-next.5"
native-url "0.3.4"
node-fetch "2.6.1"
@@ -8258,12 +8562,12 @@ next@^10.1.4-canary.16:
p-limit "3.1.0"
path-browserify "1.0.1"
pnp-webpack-plugin "1.6.4"
- postcss "8.2.10"
+ postcss "8.2.13"
process "0.11.10"
prop-types "15.7.2"
querystring-es3 "0.2.1"
raw-body "2.4.1"
- react-is "16.13.1"
+ react-is "17.0.2"
react-refresh "0.8.3"
stream-browserify "3.0.0"
stream-http "3.1.1"
@@ -8380,10 +8684,14 @@ node-plop@~0.26.2:
mkdirp "^0.5.1"
resolve "^1.12.0"
-node-releases@^1.1.69, node-releases@^1.1.70:
+node-releases@^1.1.70:
version "1.1.71"
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb"
+node-releases@^1.1.71:
+ version "1.1.73"
+ resolved "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20"
+
normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5, normalize-package-data@^2.5.0:
version "2.5.0"
resolved "https://registry.npm.taobao.org/normalize-package-data/download/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
@@ -8475,6 +8783,10 @@ object-copy@^0.1.0:
define-property "^0.2.5"
kind-of "^3.0.3"
+object-inspect@^1.10.3:
+ version "1.10.3"
+ resolved "https://registry.nlark.com/object-inspect/download/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369"
+
object-inspect@^1.7.0:
version "1.7.0"
resolved "https://registry.npm.taobao.org/object-inspect/download/object-inspect-1.7.0.tgz?cache=0&sync_timestamp=1573451929207&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fobject-inspect%2Fdownload%2Fobject-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"
@@ -8535,6 +8847,14 @@ object.entries@^1.1.0, object.entries@^1.1.1:
es-abstract "^1.17.5"
has "^1.0.3"
+object.entries@^1.1.4:
+ version "1.1.4"
+ resolved "https://registry.nlark.com/object.entries/download/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd"
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.2"
+
object.fromentries@^2.0.2:
version "2.0.2"
resolved "https://registry.npm.taobao.org/object.fromentries/download/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9"
@@ -8544,6 +8864,15 @@ object.fromentries@^2.0.2:
function-bind "^1.1.1"
has "^1.0.3"
+object.fromentries@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.nlark.com/object.fromentries/download/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8"
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ has "^1.0.3"
+
object.map@^1.0.0:
version "1.0.1"
resolved "https://registry.npm.taobao.org/object.map/download/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37"
@@ -8573,6 +8902,14 @@ object.values@^1.1.0, object.values@^1.1.1:
function-bind "^1.1.1"
has "^1.0.3"
+object.values@^1.1.3, object.values@^1.1.4:
+ version "1.1.4"
+ resolved "https://registry.nlark.com/object.values/download/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30"
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.2"
+
on-finished@~2.3.0:
version "2.3.0"
resolved "https://registry.npm.taobao.org/on-finished/download/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
@@ -9060,11 +9397,11 @@ pnp-webpack-plugin@1.6.4:
dependencies:
ts-pnp "^1.1.6"
-polished@4.1.1:
- version "4.1.1"
- resolved "https://registry.npm.taobao.org/polished/download/polished-4.1.1.tgz#40442cc973348e466f2918cdf647531bb6c29bfb"
+polished@4.1.3:
+ version "4.1.3"
+ resolved "https://registry.nlark.com/polished/download/polished-4.1.3.tgz#7a3abf2972364e7d97770b827eec9a9e64002cfc"
dependencies:
- "@babel/runtime" "^7.12.5"
+ "@babel/runtime" "^7.14.0"
popper.js@^1.14.1:
version "1.16.1"
@@ -9078,9 +9415,9 @@ postcss-value-parser@^4.0.2:
version "4.1.0"
resolved "https://registry.npm.taobao.org/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
-postcss@8.2.10:
- version "8.2.10"
- resolved "https://registry.nlark.com/postcss/download/postcss-8.2.10.tgz#ca7a042aa8aff494b334d0ff3e9e77079f6f702b"
+postcss@8.2.13:
+ version "8.2.13"
+ resolved "https://registry.nlark.com/postcss/download/postcss-8.2.13.tgz#dbe043e26e3c068e45113b1ed6375d2d37e2129f"
dependencies:
colorette "^1.2.2"
nanoid "^3.1.22"
@@ -9296,6 +9633,12 @@ queue-microtask@^1.2.2:
version "1.2.3"
resolved "https://registry.npm.taobao.org/queue-microtask/download/queue-microtask-1.2.3.tgz?cache=0&sync_timestamp=1616391510274&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqueue-microtask%2Fdownload%2Fqueue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
+queue@6.0.2:
+ version "6.0.2"
+ resolved "https://registry.npm.taobao.org/queue/download/queue-6.0.2.tgz?cache=0&sync_timestamp=1610235422329&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqueue%2Fdownload%2Fqueue-6.0.2.tgz#b91525283e2315c7553d2efa18d83e76432fed65"
+ dependencies:
+ inherits "~2.0.3"
+
quick-lru@^1.0.0:
version "1.1.0"
resolved "https://registry.npm.taobao.org/quick-lru/download/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8"
@@ -9394,14 +9737,13 @@ react-content-loader@3.4.2:
version "3.4.2"
resolved "https://registry.npm.taobao.org/react-content-loader/download/react-content-loader-3.4.2.tgz#187fbec2aa389635e4613faa046713f196173f40"
-react-dom@16.9.0:
- version "16.9.0"
- resolved "https://registry.npm.taobao.org/react-dom/download/react-dom-16.9.0.tgz#5e65527a5e26f22ae3701131bcccaee9fb0d3962"
+react-dom@17.0.2:
+ version "17.0.2"
+ resolved "https://registry.nlark.com/react-dom/download/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23"
dependencies:
loose-envify "^1.1.0"
object-assign "^4.1.1"
- prop-types "^15.6.2"
- scheduler "^0.15.0"
+ scheduler "^0.20.2"
react-event-listener@^0.6.2:
version "0.6.6"
@@ -9432,7 +9774,11 @@ react-input-autosize@^2.2.2:
dependencies:
prop-types "^15.5.8"
-react-is@16.13.1, react-is@^16.12.0, react-is@^16.6.3, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.6, react-is@^16.9.0:
+react-is@17.0.2:
+ version "17.0.2"
+ resolved "https://registry.nlark.com/react-is/download/react-is-17.0.2.tgz?cache=0&sync_timestamp=1624637851057&other_urls=https%3A%2F%2Fregistry.nlark.com%2Freact-is%2Fdownload%2Freact-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
+
+react-is@^16.12.0, react-is@^16.6.3, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.6, react-is@^16.9.0:
version "16.13.1"
resolved "https://registry.npm.taobao.org/react-is/download/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
@@ -9614,13 +9960,12 @@ react-waypoint@9.0.2:
prop-types "^15.0.0"
react-is "^16.6.3"
-react@16.9.0:
- version "16.9.0"
- resolved "https://registry.npm.taobao.org/react/download/react-16.9.0.tgz#40ba2f9af13bc1a38d75dbf2f4359a5185c4f7aa"
+react@17.0.2:
+ version "17.0.2"
+ resolved "https://registry.nlark.com/react/download/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
dependencies:
loose-envify "^1.1.0"
object-assign "^4.1.1"
- prop-types "^15.6.2"
read-pkg-up@^1.0.1:
version "1.0.1"
@@ -9798,6 +10143,13 @@ regexp.prototype.flags@^1.3.0:
define-properties "^1.1.3"
es-abstract "^1.17.0-next.1"
+regexp.prototype.flags@^1.3.1:
+ version "1.3.1"
+ resolved "https://registry.nlark.com/regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26"
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+
regexpp@^2.0.1:
version "2.0.1"
resolved "https://registry.npm.taobao.org/regexpp/download/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
@@ -9948,6 +10300,20 @@ resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.
dependencies:
path-parse "^1.0.6"
+resolve@^1.20.0:
+ version "1.20.0"
+ resolved "https://registry.npm.taobao.org/resolve/download/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
+ dependencies:
+ is-core-module "^2.2.0"
+ path-parse "^1.0.6"
+
+resolve@^2.0.0-next.3:
+ version "2.0.0-next.3"
+ resolved "https://registry.npm.taobao.org/resolve/download/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
+ dependencies:
+ is-core-module "^2.2.0"
+ path-parse "^1.0.6"
+
response-time@^2.3.2:
version "2.3.2"
resolved "https://registry.npm.taobao.org/response-time/download/response-time-2.3.2.tgz#ffa71bab952d62f7c1d49b7434355fbc68dffc5a"
@@ -10112,13 +10478,6 @@ saxes@^5.0.0:
dependencies:
xmlchars "^2.2.0"
-scheduler@^0.15.0:
- version "0.15.0"
- resolved "https://registry.npm.taobao.org/scheduler/download/scheduler-0.15.0.tgz?cache=0&sync_timestamp=1588782816669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fscheduler%2Fdownload%2Fscheduler-0.15.0.tgz#6bfcf80ff850b280fed4aeecc6513bc0b4f17f8e"
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
-
scheduler@^0.16.0:
version "0.16.2"
resolved "https://registry.npm.taobao.org/scheduler/download/scheduler-0.16.2.tgz?cache=0&sync_timestamp=1588782816669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fscheduler%2Fdownload%2Fscheduler-0.16.2.tgz#f74cd9d33eff6fc554edfb79864868e4819132c1"
@@ -10133,6 +10492,13 @@ scheduler@^0.19.1:
loose-envify "^1.1.0"
object-assign "^4.1.1"
+scheduler@^0.20.2:
+ version "0.20.2"
+ resolved "https://registry.nlark.com/scheduler/download/scheduler-0.20.2.tgz?cache=0&sync_timestamp=1624637814152&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fscheduler%2Fdownload%2Fscheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
+ dependencies:
+ loose-envify "^1.1.0"
+ object-assign "^4.1.1"
+
schema-utils@^1.0.0:
version "1.0.0"
resolved "https://registry.npm.taobao.org/schema-utils/download/schema-utils-1.0.0.tgz?cache=0&sync_timestamp=1587138453873&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fschema-utils%2Fdownload%2Fschema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
@@ -10167,7 +10533,7 @@ semver@6.3.0, semver@^6.0.0, semver@^6.1.2, semver@^6.3.0:
version "6.3.0"
resolved "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
-semver@^7.1.1, semver@^7.3.2:
+semver@^7.1.1, semver@^7.3.2, semver@^7.3.5:
version "7.3.5"
resolved "https://registry.npm.taobao.org/semver/download/semver-7.3.5.tgz?cache=0&sync_timestamp=1616463603361&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
dependencies:
@@ -10306,6 +10672,14 @@ side-channel@^1.0.2:
es-abstract "^1.17.0-next.1"
object-inspect "^1.7.0"
+side-channel@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.npm.taobao.org/side-channel/download/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
+ dependencies:
+ call-bind "^1.0.0"
+ get-intrinsic "^1.0.2"
+ object-inspect "^1.9.0"
+
signal-exit@^3.0.0, signal-exit@^3.0.2:
version "3.0.3"
resolved "https://registry.npm.taobao.org/signal-exit/download/signal-exit-3.0.3.tgz?cache=0&sync_timestamp=1585253750175&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsignal-exit%2Fdownload%2Fsignal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
@@ -10691,6 +11065,19 @@ string.prototype.matchall@^4.0.2:
regexp.prototype.flags "^1.3.0"
side-channel "^1.0.2"
+string.prototype.matchall@^4.0.5:
+ version "4.0.5"
+ resolved "https://registry.nlark.com/string.prototype.matchall/download/string.prototype.matchall-4.0.5.tgz?cache=0&sync_timestamp=1621973430160&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstring.prototype.matchall%2Fdownload%2Fstring.prototype.matchall-4.0.5.tgz#59370644e1db7e4c0c045277690cf7b01203c4da"
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.2"
+ get-intrinsic "^1.1.1"
+ has-symbols "^1.0.2"
+ internal-slot "^1.0.3"
+ regexp.prototype.flags "^1.3.1"
+ side-channel "^1.0.4"
+
string.prototype.padend@^3.0.0:
version "3.1.0"
resolved "https://registry.npm.taobao.org/string.prototype.padend/download/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3"
@@ -10865,9 +11252,9 @@ strip-json-comments@^3.0.1:
version "3.1.0"
resolved "https://registry.npm.taobao.org/strip-json-comments/download/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180"
-styled-components@5.2.3:
- version "5.2.3"
- resolved "https://registry.npm.taobao.org/styled-components/download/styled-components-5.2.3.tgz#752669fd694aac10de814d96efc287dde0d11385"
+styled-components@5.3.0:
+ version "5.3.0"
+ resolved "https://registry.nlark.com/styled-components/download/styled-components-5.3.0.tgz#e47c3d3e9ddfff539f118a3dd0fd4f8f4fb25727"
dependencies:
"@babel/helper-module-imports" "^7.0.0"
"@babel/traverse" "^7.4.5"
@@ -11249,6 +11636,15 @@ ts-toolbelt@^6.15.1:
version "6.15.5"
resolved "https://registry.npm.taobao.org/ts-toolbelt/download/ts-toolbelt-6.15.5.tgz?cache=0&sync_timestamp=1615048666537&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fts-toolbelt%2Fdownload%2Fts-toolbelt-6.15.5.tgz#cb3b43ed725cb63644782c64fbcad7d8f28c0a83"
+tsconfig-paths@^3.9.0:
+ version "3.9.0"
+ resolved "https://registry.npm.taobao.org/tsconfig-paths/download/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b"
+ dependencies:
+ "@types/json5" "^0.0.29"
+ json5 "^1.0.1"
+ minimist "^1.2.0"
+ strip-bom "^3.0.0"
+
tslib@^1.10.0, tslib@^1.9.0, tslib@^1.9.3:
version "1.13.0"
resolved "https://registry.npm.taobao.org/tslib/download/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043"
@@ -11261,7 +11657,7 @@ tslib@^2.0.0:
version "2.0.0"
resolved "https://registry.npm.taobao.org/tslib/download/tslib-2.0.0.tgz#18d13fc2dce04051e20f074cc8387fd8089ce4f3"
-tsutils@^3.17.1:
+tsutils@^3.17.1, tsutils@^3.21.0:
version "3.21.0"
resolved "https://registry.npm.taobao.org/tsutils/download/tsutils-3.21.0.tgz?cache=0&sync_timestamp=1615138205781&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftsutils%2Fdownload%2Ftsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
dependencies:
@@ -11358,7 +11754,7 @@ uglify-js@^3.1.4:
dependencies:
commander "~2.20.3"
-unbox-primitive@^1.0.0:
+unbox-primitive@^1.0.0, unbox-primitive@^1.0.1:
version "1.0.1"
resolved "https://registry.npm.taobao.org/unbox-primitive/download/unbox-primitive-1.0.1.tgz?cache=0&sync_timestamp=1616706391935&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Funbox-primitive%2Fdownload%2Funbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
dependencies: