From 8e4bb18f7b9a107410271112db523948839aa523 Mon Sep 17 00:00:00 2001 From: thinkinggis Date: Tue, 6 Apr 2021 18:00:53 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20centet=20=E5=A2=9E=E5=8A=A0padding=20?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .storybook/{config.ts => preview.ts} | 0 docs/api/component/control.en.md | 2 +- docs/api/component/popup.en.md | 1 + docs/api/component/popup.zh.md | 3 +- package.json | 6 +- packages/core/src/services/map/IMapService.ts | 15 +- packages/layers/package.json | 1 + packages/maps/src/amap/map.ts | 38 +- packages/maps/src/utils.ts | 49 + packages/scene/package.json | 1 + packages/scene/src/IMapController.ts | 13 +- packages/scene/src/index.ts | 9 +- stories/Layers/components/Point.tsx | 2 +- stories/Map/components/mapCenter.tsx | 142 + stories/Map/map.stories.tsx | 6 + tslint.test.json | 9 - yarn.lock | 2658 +++++++++++------ 17 files changed, 1943 insertions(+), 1012 deletions(-) rename .storybook/{config.ts => preview.ts} (100%) create mode 100644 packages/maps/src/utils.ts create mode 100644 stories/Map/components/mapCenter.tsx create mode 100644 stories/Map/map.stories.tsx delete mode 100644 tslint.test.json diff --git a/.storybook/config.ts b/.storybook/preview.ts similarity index 100% rename from .storybook/config.ts rename to .storybook/preview.ts diff --git a/docs/api/component/control.en.md b/docs/api/component/control.en.md index 672f3343ee..e03a19a87c 100644 --- a/docs/api/component/control.en.md +++ b/docs/api/component/control.en.md @@ -15,7 +15,7 @@ L7 目前支持 Control ## 构造函数 -#### option +### option position: `string` 控件位置支持是个方位 diff --git a/docs/api/component/popup.en.md b/docs/api/component/popup.en.md index d203a045ed..e14cf98717 100644 --- a/docs/api/component/popup.en.md +++ b/docs/api/component/popup.en.md @@ -12,6 +12,7 @@ order: 0 Popup ```javascript +const option = {}; const popup = new L7.Popup(option); ``` diff --git a/docs/api/component/popup.zh.md b/docs/api/component/popup.zh.md index a834887f5d..2d54bc7a97 100644 --- a/docs/api/component/popup.zh.md +++ b/docs/api/component/popup.zh.md @@ -12,10 +12,11 @@ order: 0 Popup ```javascript +const option = {}; const popup = new L7.Popup(option); ``` -#### option +### option - closeButton - closeOnClick diff --git a/package.json b/package.json index 50abd2abd3..1371bcda50 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "@rollup/plugin-commonjs": "11.0.2", "@rollup/plugin-json": "^4.0.0", "@rollup/plugin-node-resolve": "^6.0.0", - "@storybook/react": "^5.1.9", + "@storybook/react": "^6.2.2", "@turf/turf": "^5.1.6", "@types/dat.gui": "^0.7.1", "@types/enzyme": "^3.1.14", @@ -37,7 +37,7 @@ "@types/gl": "^4.1.0", "@types/jest": "^25.2.1", "@types/node": "13.11.1", - "@types/storybook__react": "^4.0.2", + "@types/storybook__react": "^5.2.1", "@types/supercluster": "^5.0.1", "antd": "^4.12.3", "awesome-typescript-loader": "^5.2.1", @@ -145,7 +145,7 @@ "fix": "run-p -c 'lint:ts-* --fix'", "lint:css": "stylelint 'packages/**/*.js{,x}'", "lint:ts-prod": "tslint --fix --config tslint.prod.json 'packages/**/*.ts{,x}'", - "lint:ts-test": "tslint --fix --config tslint.test.json 'packages/**/*.{spec,story}.ts{,x}'", + "lint:ts-test": "tslint --fix --config tslint.json 'packages/**/*.{spec,story}.ts{,x}'", "lint:ts": "run-p -c lint:ts-*", "lint": "run-p -c lint:*", "commit": "git-cz", diff --git a/packages/core/src/services/map/IMapService.ts b/packages/core/src/services/map/IMapService.ts index 952839a8ef..6207cbb9e9 100644 --- a/packages/core/src/services/map/IMapService.ts +++ b/packages/core/src/services/map/IMapService.ts @@ -51,7 +51,7 @@ export interface IMapService { // get map params getType(): string; getZoom(): number; - getCenter(): ILngLat; + getCenter(option?: ICameraOptions): ILngLat; getPitch(): number; getRotation(): number; getBounds(): Bounds; @@ -66,7 +66,7 @@ export interface IMapService { panBy(pixel: Point): void; fitBounds(bound: Bounds, fitBoundsOptions?: unknown): void; setZoomAndCenter(zoom: number, center: Point): void; - setCenter(center: [number, number]): void; + setCenter(center: [number, number], option?: ICameraOptions): void; setPitch(pitch: number): void; setZoom(zoom: number): void; setMapStyle(style: any): void; @@ -181,3 +181,14 @@ export interface IMapCamera { // 偏移原点,例如 P20 坐标系下 offsetOrigin: [number, number]; } +export interface ICameraOptions { + padding: + | number + | [number, number, number, number] + | { + top?: number; + bottom?: number; + right?: number; + left?: number; + }; +} diff --git a/packages/layers/package.json b/packages/layers/package.json index 29b4afe60e..0bae633b7d 100644 --- a/packages/layers/package.json +++ b/packages/layers/package.json @@ -25,6 +25,7 @@ "dependencies": { "@antv/async-hook": "^2.1.0", "@antv/l7-core": "2.3.9", + "@antv/l7-layers": "2.3.9", "@antv/l7-source": "2.3.9", "@antv/l7-utils": "2.3.9", "@babel/runtime": "^7.7.7", diff --git a/packages/maps/src/amap/map.ts b/packages/maps/src/amap/map.ts index d89779e7dc..76acb99243 100644 --- a/packages/maps/src/amap/map.ts +++ b/packages/maps/src/amap/map.ts @@ -5,6 +5,7 @@ import AMapLoader from '@amap/amap-jsapi-loader'; import { Bounds, CoordinateSystem, + ICameraOptions, ICoordinateSystemService, IGlobalConfigService, ILngLat, @@ -23,6 +24,7 @@ import { DOM } from '@antv/l7-utils'; import { mat4, vec2, vec3 } from 'gl-matrix'; import { inject, injectable } from 'inversify'; import { IAMapEvent, IAMapInstance } from '../../typings/index'; +import { toPaddingOptions } from '../utils'; import './logo.css'; import { MapTheme } from './theme'; import Viewport from './Viewport'; @@ -135,15 +137,45 @@ export default class AMapService return this.map.setZoom(zoom); } - public getCenter(): ILngLat { + public getCenter(options?: ICameraOptions): ILngLat { + if (options?.padding) { + const originCenter = this.getCenter(); + const [w, h] = this.getSize(); + const padding = toPaddingOptions(options.padding); + const px = this.lngLatToPixel([originCenter.lng, originCenter.lat]); + const offsetPx = [ + (padding.right - padding.left) / 2, + (padding.bottom - padding.top) / 2, + ]; + + const newCenter = this.pixelToLngLat([ + px.x - offsetPx[0], + px.y - offsetPx[1], + ]); + return newCenter; + } const center = this.map.getCenter(); return { lng: center.getLng(), lat: center.getLat(), }; } - public setCenter(lnglat: [number, number]): void { - this.map.setCenter(lnglat); + public setCenter(lnglat: [number, number], options?: ICameraOptions): void { + if (options?.padding) { + const padding = toPaddingOptions(options.padding); + const px = this.lngLatToPixel(lnglat); + const offsetPx = [ + (padding.right - padding.left) / 2, + (padding.bottom - padding.top) / 2, + ]; + const newCenter = this.pixelToLngLat([ + px.x + offsetPx[0], + px.y + offsetPx[1], + ]); + this.map.setCenter([newCenter.lng, newCenter.lat]); + } else { + this.map.setCenter(lnglat); + } } public getPitch(): number { return this.map.getPitch(); diff --git a/packages/maps/src/utils.ts b/packages/maps/src/utils.ts new file mode 100644 index 0000000000..9f1658928f --- /dev/null +++ b/packages/maps/src/utils.ts @@ -0,0 +1,49 @@ +export type IPadding = + | number + | [number, number, number, number] + | { + top?: number; + bottom?: number; + right?: number; + left?: number; + }; + +export function toPaddingOptions(padding: IPadding = {}) { + const defaultPadding = { + top: 0, + right: 0, + bottom: 0, + left: 0, + }; + if (typeof padding === 'number') { + return { + top: padding, + right: padding, + bottom: padding, + left: padding, + }; + } + if (Array.isArray(padding)) { + if (padding.length === 4) { + return { + top: padding[0], + right: padding[1], + bottom: padding[2], + left: padding[3], + }; + } + if (padding.length === 2) { + return { + top: padding[0], + right: padding[1], + bottom: padding[0], + left: padding[1], + }; + } + } + + return { + ...defaultPadding, + ...padding, + }; +} diff --git a/packages/scene/package.json b/packages/scene/package.json index f4b380a42d..6dadeb1d1b 100644 --- a/packages/scene/package.json +++ b/packages/scene/package.json @@ -27,6 +27,7 @@ "@antv/l7-core": "2.3.9", "@antv/l7-maps": "2.3.9", "@antv/l7-renderer": "2.3.9", + "@antv/l7-layers": "2.3.9", "@antv/l7-utils": "2.3.9", "@babel/runtime": "^7.7.7", "inversify": "^5.0.1", diff --git a/packages/scene/src/IMapController.ts b/packages/scene/src/IMapController.ts index 6930502c59..5d5f2dec4d 100644 --- a/packages/scene/src/IMapController.ts +++ b/packages/scene/src/IMapController.ts @@ -1,4 +1,11 @@ -import { Bounds, ILngLat, IPoint, IStatusOptions, Point } from '@antv/l7-core'; +import { + Bounds, + ICameraOptions, + ILngLat, + IPoint, + IStatusOptions, + Point, +} from '@antv/l7-core'; export default interface IMapController { /** @@ -9,7 +16,7 @@ export default interface IMapController { /** * 中心点经纬度 */ - getCenter(): ILngLat; + getCenter(options?: ICameraOptions): ILngLat; /** * 仰角 @@ -64,7 +71,7 @@ export default interface IMapController { // control with raw map setRotation(rotation: number): void; setZoomAndCenter(zoom: number, center: Point): void; - setCenter(center: [number, number]): void; + setCenter(center: [number, number], options?: ICameraOptions): void; setPitch(pitch: number): void; setZoom(zoom: number): void; setMapStyle(style: any): void; diff --git a/packages/scene/src/index.ts b/packages/scene/src/index.ts index b7c8538525..bfd00a0836 100644 --- a/packages/scene/src/index.ts +++ b/packages/scene/src/index.ts @@ -3,6 +3,7 @@ import { Bounds, createLayerContainer, createSceneContainer, + ICameraOptions, IControl, IControlService, IFontService, @@ -254,12 +255,12 @@ class Scene return this.mapService.getZoom(); } - public getCenter(): ILngLat { - return this.mapService.getCenter(); + public getCenter(options?: ICameraOptions): ILngLat { + return this.mapService.getCenter(options); } - public setCenter(center: [number, number]) { - return this.mapService.setCenter(center); + public setCenter(center: [number, number], options?: ICameraOptions) { + return this.mapService.setCenter(center, options); } public getPitch(): number { diff --git a/stories/Layers/components/Point.tsx b/stories/Layers/components/Point.tsx index 9e68de549c..2a4ace4783 100644 --- a/stories/Layers/components/Point.tsx +++ b/stories/Layers/components/Point.tsx @@ -29,7 +29,7 @@ export default class Point3D extends React.Component { .then((res) => res.text()) .then((data) => { const pointLayer = new PointLayer({}) - .source(data.slice(0,1000), { + .source(data.slice(0, 1000), { parser: { type: 'csv', x: 'Longitude', diff --git a/stories/Map/components/mapCenter.tsx b/stories/Map/components/mapCenter.tsx new file mode 100644 index 0000000000..1509dca603 --- /dev/null +++ b/stories/Map/components/mapCenter.tsx @@ -0,0 +1,142 @@ +// @ts-ignore +import { ILngLat, PointLayer, PolygonLayer, Scene } from '@antv/l7'; +import { GaodeMap } from '@antv/l7-maps'; +import * as React from 'react'; + +export default class GaodeMapComponent extends React.Component { + // @ts-ignore + private scene: Scene; + + public componentWillUnmount() { + this.scene.destroy(); + } + + public async componentDidMount() { + const scene = new Scene({ + id: 'map', + map: new GaodeMap({ + center: [121.107846, 30.267069], + pitch: 0, + style: 'normal', + zoom: 11, + animateEnable: false, + }), + }); + + const layer = new PointLayer() + .source( + [ + { + lng: 121.107846, + lat: 30.267069, + }, + ], + { + parser: { + type: 'json', + x: 'lng', + y: 'lat', + }, + }, + ) + .shape('circle') + .color('blue') + .size(10) + .style({ + stroke: '#fff', + storkeWidth: 2, + }); + scene.addLayer(layer); + scene.render(); + this.scene = scene; + + scene.on('loaded', () => { + const padding = { + top: 50, + right: 0, + bottom: 200, + left: 800, + }; + // const px = scene.lngLatToPixel([center.lng, center.lat]); + // const offsetPx = [ + // (padding.right - padding.left) / 2, + // (padding.bottom - padding.top) / 2, + // ]; + scene.setCenter([121.107846, 30.267069], { padding }); + // const newCenter = scene.pixelToLngLat([ + // px.x + offsetPx[0], + // px.y + offsetPx[1], + // ]); + // @ts-ignore + // scene.setCenter(); + + // get originCenter + + // const originCenter = scene.getCenter(); + // const originPx = scene.lngLatToPixel([ + // originCenter.lng, + // originCenter.lat, + // ]); + // const offsetPx2 = [ + // (-padding.right + padding.left) / 2, + // (-padding.bottom + padding.top) / 2, + // ]; + // const newCenter2 = scene.pixelToLngLat([ + // originPx.x - offsetPx[0], + // originPx.y - offsetPx[1], + // ]); + + // lngLatToContainer + // 获取当前地图像素坐标 + // console.log(originCenter, center, newCenter2); + // console.log(w,h); + }); + } + + public render() { + return ( + <> +
+
+
+
+ + ); + } +} diff --git a/stories/Map/map.stories.tsx b/stories/Map/map.stories.tsx new file mode 100644 index 0000000000..dca527ef51 --- /dev/null +++ b/stories/Map/map.stories.tsx @@ -0,0 +1,6 @@ +import { storiesOf } from '@storybook/react'; +import * as React from 'react'; +import MapCenter from './components/mapCenter'; + +// @ts-ignore +storiesOf('地图方法', module).add('地图中心点', () => ); diff --git a/tslint.test.json b/tslint.test.json deleted file mode 100644 index 803088eaf3..0000000000 --- a/tslint.test.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": ["./tslint.json"], - "rules": { - "no-implicit-dependencies": [false, "dev"] - }, - "linterOptions": { - "exclude": ["**/*.d.ts", "**/data/*.ts"] - } -} diff --git a/yarn.lock b/yarn.lock index 51fccac9cc..85f6fa95be 100644 --- a/yarn.lock +++ b/yarn.lock @@ -328,12 +328,12 @@ dependencies: "@babel/highlight" "7.0.0-beta.44" -"@babel/code-frame@7.5.5": - version "7.5.5" - resolved "https://registry.npm.alibaba-inc.com/@babel/code-frame/download/@babel/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" - integrity sha1-vAeC9tafe31JUxIZaZuYj2aaj50= +"@babel/code-frame@7.10.4": + version "7.10.4" + resolved "https://registry.npm.alibaba-inc.com/@babel/code-frame/download/@babel/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" + integrity sha1-Fo2ho26Q2miujUnA8bSMfGJJITo= dependencies: - "@babel/highlight" "^7.0.0" + "@babel/highlight" "^7.10.4" "@babel/code-frame@7.8.3": version "7.8.3" @@ -354,6 +354,11 @@ resolved "https://registry.npm.alibaba-inc.com/@babel/compat-data/download/@babel/compat-data-7.13.6.tgz#11972d07db4c2317afdbf41d6feb3a730301ef4e" integrity sha1-EZctB9tMIxev2/Qdb+s6cwMB704= +"@babel/compat-data@^7.13.12", "@babel/compat-data@^7.13.8": + version "7.13.12" + resolved "https://registry.npm.alibaba-inc.com/@babel/compat-data/download/@babel/compat-data-7.13.12.tgz#a8a5ccac19c200f9dd49624cac6e19d7be1236a1" + integrity sha1-qKXMrBnCAPndSWJMrG4Z174SNqE= + "@babel/core@7.10.5": version "7.10.5" resolved "https://registry.npm.alibaba-inc.com/@babel/core/download/@babel/core-7.10.5.tgz#1f15e2cca8ad9a1d78a38ddba612f5e7cdbbd330" @@ -420,6 +425,27 @@ semver "7.0.0" source-map "^0.5.0" +"@babel/core@^7.12.10": + version "7.13.14" + resolved "https://registry.npm.alibaba-inc.com/@babel/core/download/@babel/core-7.13.14.tgz#8e46ebbaca460a63497c797e574038ab04ae6d06" + integrity sha1-jkbruspGCmNJfHl+V0A4qwSubQY= + dependencies: + "@babel/code-frame" "^7.12.13" + "@babel/generator" "^7.13.9" + "@babel/helper-compilation-targets" "^7.13.13" + "@babel/helper-module-transforms" "^7.13.14" + "@babel/helpers" "^7.13.10" + "@babel/parser" "^7.13.13" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.13.13" + "@babel/types" "^7.13.14" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.1.2" + semver "^6.3.0" + source-map "^0.5.0" + "@babel/generator@7.0.0-beta.44": version "7.0.0-beta.44" resolved "https://registry.npm.alibaba-inc.com/@babel/generator/download/@babel/generator-7.0.0-beta.44.tgz#c7e67b9b5284afcf69b309b50d7d37f3e5033d42" @@ -440,6 +466,15 @@ jsesc "^2.5.1" source-map "^0.5.0" +"@babel/generator@^7.13.9": + version "7.13.9" + resolved "https://registry.npm.alibaba-inc.com/@babel/generator/download/@babel/generator-7.13.9.tgz#3a7aa96f9efb8e2be42d38d80e2ceb4c64d8de39" + integrity sha1-Onqpb577jivkLTjYDizrTGTY3jk= + dependencies: + "@babel/types" "^7.13.0" + jsesc "^2.5.1" + source-map "^0.5.0" + "@babel/helper-annotate-as-pure@^7.10.4", "@babel/helper-annotate-as-pure@^7.12.13": version "7.12.13" resolved "https://registry.npm.alibaba-inc.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab" @@ -465,6 +500,16 @@ browserslist "^4.14.5" semver "7.0.0" +"@babel/helper-compilation-targets@^7.13.10", "@babel/helper-compilation-targets@^7.13.13", "@babel/helper-compilation-targets@^7.13.8": + version "7.13.13" + resolved "https://registry.npm.alibaba-inc.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.13.13.tgz#2b2972a0926474853f41e4adbc69338f520600e5" + integrity sha1-KylyoJJkdIU/QeStvGkzj1IGAOU= + dependencies: + "@babel/compat-data" "^7.13.12" + "@babel/helper-validator-option" "^7.12.17" + browserslist "^4.14.5" + semver "^6.3.0" + "@babel/helper-create-class-features-plugin@^7.13.0", "@babel/helper-create-class-features-plugin@^7.8.3": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.13.0.tgz#28d04ad9cfbd1ed1d8b988c9ea7b945263365846" @@ -498,6 +543,20 @@ resolve "^1.14.2" semver "^6.1.2" +"@babel/helper-define-polyfill-provider@^0.1.5": + version "0.1.5" + resolved "https://registry.npm.alibaba-inc.com/@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.1.5.tgz#3c2f91b7971b9fc11fe779c945c014065dea340e" + integrity sha1-PC+Rt5cbn8Ef53nJRcAUBl3qNA4= + dependencies: + "@babel/helper-compilation-targets" "^7.13.0" + "@babel/helper-module-imports" "^7.12.13" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/traverse" "^7.13.0" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + semver "^6.1.2" + "@babel/helper-explode-assignable-expression@^7.12.13": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f" @@ -537,7 +596,7 @@ dependencies: "@babel/types" "^7.12.13" -"@babel/helper-hoist-variables@^7.12.13": +"@babel/helper-hoist-variables@^7.12.13", "@babel/helper-hoist-variables@^7.13.0": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.13.0.tgz#5d5882e855b5c5eda91e0cadc26c6e7a2c8593d8" integrity sha1-XViC6FW1xe2pHgytwmxueiyFk9g= @@ -552,6 +611,13 @@ dependencies: "@babel/types" "^7.13.0" +"@babel/helper-member-expression-to-functions@^7.13.12": + version "7.13.12" + resolved "https://registry.npm.alibaba-inc.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72" + integrity sha1-3+No8m1CagcpnY1lE4IXaCFubXI= + dependencies: + "@babel/types" "^7.13.12" + "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.8.3": version "7.12.13" resolved "https://registry.npm.alibaba-inc.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.12.13.tgz#ec67e4404f41750463e455cc3203f6a32e93fcb0" @@ -559,6 +625,13 @@ dependencies: "@babel/types" "^7.12.13" +"@babel/helper-module-imports@^7.13.12": + version "7.13.12" + resolved "https://registry.npm.alibaba-inc.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977" + integrity sha1-xqNppvNiHLJdoBQHhoTakZa2GXc= + dependencies: + "@babel/types" "^7.13.12" + "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.12.13", "@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.9.0": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.13.0.tgz#42eb4bd8eea68bab46751212c357bfed8b40f6f1" @@ -574,6 +647,20 @@ "@babel/types" "^7.13.0" lodash "^4.17.19" +"@babel/helper-module-transforms@^7.13.14": + version "7.13.14" + resolved "https://registry.npm.alibaba-inc.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.13.14.tgz#e600652ba48ccb1641775413cb32cfa4e8b495ef" + integrity sha1-5gBlK6SMyxZBd1QTyzLPpOi0le8= + dependencies: + "@babel/helper-module-imports" "^7.13.12" + "@babel/helper-replace-supers" "^7.13.12" + "@babel/helper-simple-access" "^7.13.12" + "@babel/helper-split-export-declaration" "^7.12.13" + "@babel/helper-validator-identifier" "^7.12.11" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.13.13" + "@babel/types" "^7.13.14" + "@babel/helper-optimise-call-expression@^7.12.13": version "7.12.13" resolved "https://registry.npm.alibaba-inc.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea" @@ -610,6 +697,16 @@ "@babel/traverse" "^7.13.0" "@babel/types" "^7.13.0" +"@babel/helper-replace-supers@^7.13.12": + version "7.13.12" + resolved "https://registry.npm.alibaba-inc.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.13.12.tgz#6442f4c1ad912502481a564a7386de0c77ff3804" + integrity sha1-ZEL0wa2RJQJIGlZKc4beDHf/OAQ= + dependencies: + "@babel/helper-member-expression-to-functions" "^7.13.12" + "@babel/helper-optimise-call-expression" "^7.12.13" + "@babel/traverse" "^7.13.0" + "@babel/types" "^7.13.12" + "@babel/helper-simple-access@^7.12.13": version "7.12.13" resolved "https://registry.npm.alibaba-inc.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.12.13.tgz#8478bcc5cacf6aa1672b251c1d2dde5ccd61a6c4" @@ -617,6 +714,13 @@ dependencies: "@babel/types" "^7.12.13" +"@babel/helper-simple-access@^7.13.12": + version "7.13.12" + resolved "https://registry.npm.alibaba-inc.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6" + integrity sha1-3WxTivthgZ0gWgEsMXkqOcel6vY= + dependencies: + "@babel/types" "^7.13.12" + "@babel/helper-skip-transparent-expression-wrappers@^7.12.1": version "7.12.1" resolved "https://registry.npm.alibaba-inc.com/@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" @@ -667,6 +771,15 @@ "@babel/traverse" "^7.13.0" "@babel/types" "^7.13.0" +"@babel/helpers@^7.13.10": + version "7.13.10" + resolved "https://registry.npm.alibaba-inc.com/@babel/helpers/download/@babel/helpers-7.13.10.tgz#fd8e2ba7488533cdeac45cc158e9ebca5e3c7df8" + integrity sha1-/Y4rp0iFM83qxFzBWOnryl48ffg= + dependencies: + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.13.0" + "@babel/types" "^7.13.0" + "@babel/highlight@7.0.0-beta.44": version "7.0.0-beta.44" resolved "https://registry.npm.alibaba-inc.com/@babel/highlight/download/@babel/highlight-7.0.0-beta.44.tgz#18c94ce543916a80553edcdcf681890b200747d5" @@ -676,7 +789,16 @@ esutils "^2.0.2" js-tokens "^3.0.0" -"@babel/highlight@^7.0.0", "@babel/highlight@^7.12.13", "@babel/highlight@^7.8.3": +"@babel/highlight@^7.10.4": + version "7.13.10" + resolved "https://registry.npm.alibaba-inc.com/@babel/highlight/download/@babel/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1" + integrity sha1-qLKmYUj1sn1maxXYF3Q0enMdUtE= + dependencies: + "@babel/helper-validator-identifier" "^7.12.11" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/highlight@^7.12.13", "@babel/highlight@^7.8.3": version "7.12.13" resolved "https://registry.npm.alibaba-inc.com/@babel/highlight/download/@babel/highlight-7.12.13.tgz#8ab538393e00370b26271b01fa08f7f27f2e795c" integrity sha1-irU4OT4ANwsmJxsB+gj38n8ueVw= @@ -690,6 +812,20 @@ resolved "https://registry.npm.alibaba-inc.com/@babel/parser/download/@babel/parser-7.13.4.tgz#340211b0da94a351a6f10e63671fa727333d13ab" integrity sha1-NAIRsNqUo1Gm8Q5jZx+nJzM9E6s= +"@babel/parser@^7.13.13": + version "7.13.13" + resolved "https://registry.npm.alibaba-inc.com/@babel/parser/download/@babel/parser-7.13.13.tgz#42f03862f4aed50461e543270916b47dd501f0df" + integrity sha1-QvA4YvSu1QRh5UMnCRa0fdUB8N8= + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12": + version "7.13.12" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/download/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz#a3484d84d0b549f3fc916b99ee4783f26fabad2a" + integrity sha1-o0hNhNC1SfP8kWuZ7keD8m+rrSo= + dependencies: + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" + "@babel/plugin-proposal-optional-chaining" "^7.13.12" + "@babel/plugin-proposal-async-generator-functions@^7.13.5", "@babel/plugin-proposal-async-generator-functions@^7.8.3": version "7.13.5" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.13.5.tgz#69e3fbb9958949b09036e27b26eba1aafa1ba3db" @@ -699,6 +835,15 @@ "@babel/helper-remap-async-to-generator" "^7.13.0" "@babel/plugin-syntax-async-generators" "^7.8.0" +"@babel/plugin-proposal-async-generator-functions@^7.13.8": + version "7.13.8" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.13.8.tgz#87aacb574b3bc4b5603f6fe41458d72a5a2ec4b1" + integrity sha1-h6rLV0s7xLVgP2/kFFjXKlouxLE= + dependencies: + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-remap-async-to-generator" "^7.13.0" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-proposal-class-properties@7.8.3": version "7.8.3" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e" @@ -707,7 +852,7 @@ "@babel/helper-create-class-features-plugin" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-proposal-class-properties@^7.10.4", "@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.7.0": +"@babel/plugin-proposal-class-properties@^7.10.4", "@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.13.0": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37" integrity sha1-FGN2AAuU79AB5XpAqIpSWvqrnzc= @@ -724,7 +869,7 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-decorators" "^7.8.3" -"@babel/plugin-proposal-decorators@^7.6.0": +"@babel/plugin-proposal-decorators@^7.12.12", "@babel/plugin-proposal-decorators@^7.6.0": version "7.13.5" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-decorators/download/@babel/plugin-proposal-decorators-7.13.5.tgz#d28071457a5ba8ee1394b23e38d5dcf32ea20ef7" integrity sha1-0oBxRXpbqO4TlLI+ONXc8y6iDvc= @@ -741,6 +886,22 @@ "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-syntax-dynamic-import" "^7.8.0" +"@babel/plugin-proposal-dynamic-import@^7.13.8": + version "7.13.8" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.13.8.tgz#876a1f6966e1dec332e8c9451afda3bebcdf2e1d" + integrity sha1-h2ofaWbh3sMy6MlFGv2jvrzfLh0= + dependencies: + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-proposal-export-default-from@^7.12.1": + version "7.12.13" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-export-default-from/download/@babel/plugin-proposal-export-default-from-7.12.13.tgz#f110284108a9b2b96f01b15b3be9e54c2610a989" + integrity sha1-8RAoQQipsrlvAbFbO+nlTCYQqYk= + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-export-default-from" "^7.12.13" + "@babel/plugin-proposal-export-namespace-from@^7.12.13": version "7.12.13" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-export-namespace-from/download/@babel/plugin-proposal-export-namespace-from-7.12.13.tgz#393be47a4acd03fa2af6e3cde9b06e33de1b446d" @@ -757,6 +918,14 @@ "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-syntax-json-strings" "^7.8.0" +"@babel/plugin-proposal-json-strings@^7.13.8": + version "7.13.8" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.13.8.tgz#bf1fb362547075afda3634ed31571c5901afef7b" + integrity sha1-vx+zYlRwda/aNjTtMVccWQGv73s= + dependencies: + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-proposal-logical-assignment-operators@^7.12.13": version "7.12.13" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-logical-assignment-operators/download/@babel/plugin-proposal-logical-assignment-operators-7.12.13.tgz#575b5d9a08d8299eeb4db6430da6e16e5cf14350" @@ -765,6 +934,14 @@ "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" +"@babel/plugin-proposal-logical-assignment-operators@^7.13.8": + version "7.13.8" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-logical-assignment-operators/download/@babel/plugin-proposal-logical-assignment-operators-7.13.8.tgz#93fa78d63857c40ce3c8c3315220fd00bfbb4e1a" + integrity sha1-k/p41jhXxAzjyMMxUiD9AL+7Tho= + dependencies: + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-proposal-nullish-coalescing-operator@7.8.3": version "7.8.3" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2" @@ -781,6 +958,14 @@ "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" +"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8": + version "7.13.8" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz#3730a31dafd3c10d8ccd10648ed80a2ac5472ef3" + integrity sha1-NzCjHa/TwQ2MzRBkjtgKKsVHLvM= + dependencies: + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-proposal-numeric-separator@7.8.3": version "7.8.3" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.8.3.tgz#5d6769409699ec9b3b68684cd8116cedff93bad8" @@ -806,7 +991,18 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.0" "@babel/plugin-transform-parameters" "^7.10.4" -"@babel/plugin-proposal-object-rest-spread@^7.13.0", "@babel/plugin-proposal-object-rest-spread@^7.6.2", "@babel/plugin-proposal-object-rest-spread@^7.7.4", "@babel/plugin-proposal-object-rest-spread@^7.9.0": +"@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.13.8": + version "7.13.8" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.13.8.tgz#5d210a4d727d6ce3b18f9de82cc99a3964eed60a" + integrity sha1-XSEKTXJ9bOOxj53oLMmaOWTu1go= + dependencies: + "@babel/compat-data" "^7.13.8" + "@babel/helper-compilation-targets" "^7.13.8" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.13.0" + +"@babel/plugin-proposal-object-rest-spread@^7.13.0", "@babel/plugin-proposal-object-rest-spread@^7.7.4", "@babel/plugin-proposal-object-rest-spread@^7.9.0": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.13.0.tgz#8f19ad247bb96bd5ad2d4107e6eddfe0a789937b" integrity sha1-jxmtJHu5a9WtLUEH5u3f4KeJk3s= @@ -823,6 +1019,14 @@ "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" +"@babel/plugin-proposal-optional-catch-binding@^7.13.8": + version "7.13.8" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.13.8.tgz#3ad6bd5901506ea996fc31bdcf3ccfa2bed71107" + integrity sha1-Ota9WQFQbqmW/DG9zzzPor7XEQc= + dependencies: + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-proposal-optional-chaining@7.9.0": version "7.9.0" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58" @@ -840,7 +1044,16 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" "@babel/plugin-syntax-optional-chaining" "^7.8.0" -"@babel/plugin-proposal-private-methods@^7.13.0": +"@babel/plugin-proposal-optional-chaining@^7.12.7", "@babel/plugin-proposal-optional-chaining@^7.13.12": + version "7.13.12" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.13.12.tgz#ba9feb601d422e0adea6760c2bd6bbb7bfec4866" + integrity sha1-up/rYB1CLgrepnYMK9a7t7/sSGY= + dependencies: + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-proposal-private-methods@^7.12.1", "@babel/plugin-proposal-private-methods@^7.13.0": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.13.0.tgz#04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787" integrity sha1-BL1MbUD25rv6L1fi2AlLrZAO94c= @@ -856,7 +1069,7 @@ "@babel/helper-create-regexp-features-plugin" "^7.12.13" "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-syntax-async-generators@^7.7.4", "@babel/plugin-syntax-async-generators@^7.8.0": +"@babel/plugin-syntax-async-generators@^7.7.4", "@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" integrity sha1-qYP7Gusuw/btBCohD2QOkOeG/g0= @@ -877,13 +1090,20 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-syntax-dynamic-import@^7.2.0", "@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": +"@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" integrity sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM= dependencies: "@babel/helper-plugin-utils" "^7.8.0" +"@babel/plugin-syntax-export-default-from@^7.12.13": + version "7.12.13" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-syntax-export-default-from/download/@babel/plugin-syntax-export-default-from-7.12.13.tgz#3c807d37efaf0a806f1deb556ccb3b2f562ae9c2" + integrity sha1-PIB9N++vCoBvHetVbMs7L1Yq6cI= + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-export-namespace-from@^7.8.3": version "7.8.3" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-syntax-export-namespace-from/download/@babel/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" @@ -898,7 +1118,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-syntax-json-strings@^7.8.0": +"@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" integrity sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo= @@ -926,7 +1146,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": version "7.8.3" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" integrity sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak= @@ -940,21 +1160,21 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0": +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": version "7.8.3" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" integrity sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE= dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-catch-binding@^7.8.0": +"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": version "7.8.3" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" integrity sha1-YRGiZbz7Ag6579D9/X0mQCue1sE= dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-chaining@^7.8.0": +"@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": version "7.8.3" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" integrity sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io= @@ -975,7 +1195,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-arrow-functions@^7.13.0", "@babel/plugin-transform-arrow-functions@^7.8.3": +"@babel/plugin-transform-arrow-functions@^7.12.1", "@babel/plugin-transform-arrow-functions@^7.13.0", "@babel/plugin-transform-arrow-functions@^7.8.3": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae" integrity sha1-EKWb661S1jegJ6+mkujVzv9ePa4= @@ -998,7 +1218,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-block-scoping@^7.12.13", "@babel/plugin-transform-block-scoping@^7.8.3": +"@babel/plugin-transform-block-scoping@^7.12.12", "@babel/plugin-transform-block-scoping@^7.12.13", "@babel/plugin-transform-block-scoping@^7.8.3": version "7.12.13" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.12.13.tgz#f36e55076d06f41dfd78557ea039c1b581642e61" integrity sha1-825VB20G9B39eFV+oDnBtYFkLmE= @@ -1025,7 +1245,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.13.0" -"@babel/plugin-transform-destructuring@^7.13.0", "@babel/plugin-transform-destructuring@^7.8.3": +"@babel/plugin-transform-destructuring@^7.12.1", "@babel/plugin-transform-destructuring@^7.13.0", "@babel/plugin-transform-destructuring@^7.8.3": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.13.0.tgz#c5dce270014d4e1ebb1d806116694c12b7028963" integrity sha1-xdzicAFNTh67HYBhFmlMErcCiWM= @@ -1063,7 +1283,7 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-flow" "^7.8.3" -"@babel/plugin-transform-flow-strip-types@^7.12.13": +"@babel/plugin-transform-flow-strip-types@^7.13.0": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-flow-strip-types/download/@babel/plugin-transform-flow-strip-types-7.13.0.tgz#58177a48c209971e8234e99906cb6bd1122addd3" integrity sha1-WBd6SMIJlx6CNOmZBstr0RIq3dM= @@ -1071,7 +1291,7 @@ "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-flow" "^7.12.13" -"@babel/plugin-transform-for-of@^7.13.0", "@babel/plugin-transform-for-of@^7.9.0": +"@babel/plugin-transform-for-of@^7.12.1", "@babel/plugin-transform-for-of@^7.13.0", "@babel/plugin-transform-for-of@^7.9.0": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.13.0.tgz#c799f881a8091ac26b54867a845c3e97d2696062" integrity sha1-x5n4gagJGsJrVIZ6hFw+l9JpYGI= @@ -1119,6 +1339,16 @@ "@babel/helper-simple-access" "^7.12.13" babel-plugin-dynamic-import-node "^2.3.3" +"@babel/plugin-transform-modules-commonjs@^7.13.8": + version "7.13.8" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.13.8.tgz#7b01ad7c2dcf2275b06fa1781e00d13d420b3e1b" + integrity sha1-ewGtfC3PInWwb6F4HgDRPUILPhs= + dependencies: + "@babel/helper-module-transforms" "^7.13.0" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-simple-access" "^7.12.13" + babel-plugin-dynamic-import-node "^2.3.3" + "@babel/plugin-transform-modules-systemjs@^7.12.13", "@babel/plugin-transform-modules-systemjs@^7.9.0": version "7.12.13" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.12.13.tgz#351937f392c7f07493fc79b2118201d50404a3c5" @@ -1130,6 +1360,17 @@ "@babel/helper-validator-identifier" "^7.12.11" babel-plugin-dynamic-import-node "^2.3.3" +"@babel/plugin-transform-modules-systemjs@^7.13.8": + version "7.13.8" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.13.8.tgz#6d066ee2bff3c7b3d60bf28dec169ad993831ae3" + integrity sha1-bQZu4r/zx7PWC/KN7Baa2ZODGuM= + dependencies: + "@babel/helper-hoist-variables" "^7.13.0" + "@babel/helper-module-transforms" "^7.13.0" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-validator-identifier" "^7.12.11" + babel-plugin-dynamic-import-node "^2.3.3" + "@babel/plugin-transform-modules-umd@^7.13.0", "@babel/plugin-transform-modules-umd@^7.2.0", "@babel/plugin-transform-modules-umd@^7.9.0": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.13.0.tgz#8a3d96a97d199705b9fd021580082af81c06e70b" @@ -1160,7 +1401,7 @@ "@babel/helper-plugin-utils" "^7.12.13" "@babel/helper-replace-supers" "^7.12.13" -"@babel/plugin-transform-parameters@^7.10.4", "@babel/plugin-transform-parameters@^7.13.0", "@babel/plugin-transform-parameters@^7.8.4", "@babel/plugin-transform-parameters@^7.8.7": +"@babel/plugin-transform-parameters@^7.10.4", "@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.13.0", "@babel/plugin-transform-parameters@^7.8.4", "@babel/plugin-transform-parameters@^7.8.7": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.13.0.tgz#8fa7603e3097f9c0b7ca1a4821bc2fb52e9e5007" integrity sha1-j6dgPjCX+cC3yhpIIbwvtS6eUAc= @@ -1174,7 +1415,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-react-constant-elements@^7.0.0", "@babel/plugin-transform-react-constant-elements@^7.2.0", "@babel/plugin-transform-react-constant-elements@^7.6.3": +"@babel/plugin-transform-react-constant-elements@^7.0.0": version "7.12.13" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-react-constant-elements/download/@babel/plugin-transform-react-constant-elements-7.12.13.tgz#f8ee56888545d53d80f766b3cc1563ab2c241f92" integrity sha1-+O5WiIVF1T2A92azzBVjqywkH5I= @@ -1195,7 +1436,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-react-jsx-development@^7.12.12", "@babel/plugin-transform-react-jsx-development@^7.9.0": +"@babel/plugin-transform-react-jsx-development@^7.12.12", "@babel/plugin-transform-react-jsx-development@^7.12.17", "@babel/plugin-transform-react-jsx-development@^7.9.0": version "7.12.17" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-react-jsx-development/download/@babel/plugin-transform-react-jsx-development-7.12.17.tgz#f510c0fa7cd7234153539f9a362ced41a5ca1447" integrity sha1-9RDA+nzXI0FTU5+aNiztQaXKFEc= @@ -1227,6 +1468,17 @@ "@babel/plugin-syntax-jsx" "^7.12.13" "@babel/types" "^7.12.17" +"@babel/plugin-transform-react-jsx@^7.13.12": + version "7.13.12" + resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-react-jsx/download/@babel/plugin-transform-react-jsx-7.13.12.tgz#1df5dfaf0f4b784b43e96da6f28d630e775f68b3" + integrity sha1-HfXfrw9LeEtD6W2m8o1jDndfaLM= + dependencies: + "@babel/helper-annotate-as-pure" "^7.12.13" + "@babel/helper-module-imports" "^7.13.12" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/plugin-syntax-jsx" "^7.12.13" + "@babel/types" "^7.13.12" + "@babel/plugin-transform-react-pure-annotations@^7.12.1": version "7.12.1" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-react-pure-annotations/download/@babel/plugin-transform-react-pure-annotations-7.12.1.tgz#05d46f0ab4d1339ac59adf20a1462c91b37a1a42" @@ -1271,7 +1523,7 @@ babel-plugin-polyfill-regenerator "^0.1.2" semver "7.0.0" -"@babel/plugin-transform-shorthand-properties@^7.12.13", "@babel/plugin-transform-shorthand-properties@^7.8.3": +"@babel/plugin-transform-shorthand-properties@^7.12.1", "@babel/plugin-transform-shorthand-properties@^7.12.13", "@babel/plugin-transform-shorthand-properties@^7.8.3": version "7.12.13" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad" integrity sha1-23VXMrcMU51QTGOQ2c6Q/mSv960= @@ -1293,7 +1545,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-template-literals@^7.13.0", "@babel/plugin-transform-template-literals@^7.8.3": +"@babel/plugin-transform-template-literals@^7.12.1", "@babel/plugin-transform-template-literals@^7.13.0", "@babel/plugin-transform-template-literals@^7.8.3": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.13.0.tgz#a36049127977ad94438dee7443598d1cefdf409d" integrity sha1-o2BJEnl3rZRDje50Q1mNHO/fQJ0= @@ -1471,15 +1723,91 @@ core-js-compat "^3.9.0" semver "7.0.0" -"@babel/preset-flow@^7.0.0": - version "7.12.13" - resolved "https://registry.npm.alibaba-inc.com/@babel/preset-flow/download/@babel/preset-flow-7.12.13.tgz#71ee7fe65a95b507ac12bcad65a4ced27d8dfc3e" - integrity sha1-ce5/5lqVtQesErytZaTO0n2N/D4= +"@babel/preset-env@^7.12.11": + version "7.13.12" + resolved "https://registry.npm.alibaba-inc.com/@babel/preset-env/download/@babel/preset-env-7.13.12.tgz#6dff470478290582ac282fb77780eadf32480237" + integrity sha1-bf9HBHgpBYKsKC+3d4Dq3zJIAjc= dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - "@babel/plugin-transform-flow-strip-types" "^7.12.13" + "@babel/compat-data" "^7.13.12" + "@babel/helper-compilation-targets" "^7.13.10" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-validator-option" "^7.12.17" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12" + "@babel/plugin-proposal-async-generator-functions" "^7.13.8" + "@babel/plugin-proposal-class-properties" "^7.13.0" + "@babel/plugin-proposal-dynamic-import" "^7.13.8" + "@babel/plugin-proposal-export-namespace-from" "^7.12.13" + "@babel/plugin-proposal-json-strings" "^7.13.8" + "@babel/plugin-proposal-logical-assignment-operators" "^7.13.8" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8" + "@babel/plugin-proposal-numeric-separator" "^7.12.13" + "@babel/plugin-proposal-object-rest-spread" "^7.13.8" + "@babel/plugin-proposal-optional-catch-binding" "^7.13.8" + "@babel/plugin-proposal-optional-chaining" "^7.13.12" + "@babel/plugin-proposal-private-methods" "^7.13.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.12.13" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-top-level-await" "^7.12.13" + "@babel/plugin-transform-arrow-functions" "^7.13.0" + "@babel/plugin-transform-async-to-generator" "^7.13.0" + "@babel/plugin-transform-block-scoped-functions" "^7.12.13" + "@babel/plugin-transform-block-scoping" "^7.12.13" + "@babel/plugin-transform-classes" "^7.13.0" + "@babel/plugin-transform-computed-properties" "^7.13.0" + "@babel/plugin-transform-destructuring" "^7.13.0" + "@babel/plugin-transform-dotall-regex" "^7.12.13" + "@babel/plugin-transform-duplicate-keys" "^7.12.13" + "@babel/plugin-transform-exponentiation-operator" "^7.12.13" + "@babel/plugin-transform-for-of" "^7.13.0" + "@babel/plugin-transform-function-name" "^7.12.13" + "@babel/plugin-transform-literals" "^7.12.13" + "@babel/plugin-transform-member-expression-literals" "^7.12.13" + "@babel/plugin-transform-modules-amd" "^7.13.0" + "@babel/plugin-transform-modules-commonjs" "^7.13.8" + "@babel/plugin-transform-modules-systemjs" "^7.13.8" + "@babel/plugin-transform-modules-umd" "^7.13.0" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13" + "@babel/plugin-transform-new-target" "^7.12.13" + "@babel/plugin-transform-object-super" "^7.12.13" + "@babel/plugin-transform-parameters" "^7.13.0" + "@babel/plugin-transform-property-literals" "^7.12.13" + "@babel/plugin-transform-regenerator" "^7.12.13" + "@babel/plugin-transform-reserved-words" "^7.12.13" + "@babel/plugin-transform-shorthand-properties" "^7.12.13" + "@babel/plugin-transform-spread" "^7.13.0" + "@babel/plugin-transform-sticky-regex" "^7.12.13" + "@babel/plugin-transform-template-literals" "^7.13.0" + "@babel/plugin-transform-typeof-symbol" "^7.12.13" + "@babel/plugin-transform-unicode-escapes" "^7.12.13" + "@babel/plugin-transform-unicode-regex" "^7.12.13" + "@babel/preset-modules" "^0.1.4" + "@babel/types" "^7.13.12" + babel-plugin-polyfill-corejs2 "^0.1.4" + babel-plugin-polyfill-corejs3 "^0.1.3" + babel-plugin-polyfill-regenerator "^0.1.2" + core-js-compat "^3.9.0" + semver "^6.3.0" -"@babel/preset-modules@^0.1.3": +"@babel/preset-flow@^7.12.1": + version "7.13.13" + resolved "https://registry.npm.alibaba-inc.com/@babel/preset-flow/download/@babel/preset-flow-7.13.13.tgz#a61a1c149b3f77589d795287744393444d5cdd9e" + integrity sha1-phocFJs/d1ideVKHdEOTRE1c3Z4= + dependencies: + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-validator-option" "^7.12.17" + "@babel/plugin-transform-flow-strip-types" "^7.13.0" + +"@babel/preset-modules@^0.1.3", "@babel/preset-modules@^0.1.4": version "0.1.4" resolved "https://registry.npm.alibaba-inc.com/@babel/preset-modules/download/@babel/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" integrity sha1-Ni8raMZihClw/bXiVP/I/BwuQV4= @@ -1513,6 +1841,18 @@ "@babel/plugin-transform-react-jsx-development" "^7.12.12" "@babel/plugin-transform-react-pure-annotations" "^7.12.1" +"@babel/preset-react@^7.12.10": + version "7.13.13" + resolved "https://registry.npm.alibaba-inc.com/@babel/preset-react/download/@babel/preset-react-7.13.13.tgz#fa6895a96c50763fe693f9148568458d5a839761" + integrity sha1-+miVqWxQdj/mk/kUhWhFjVqDl2E= + dependencies: + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/helper-validator-option" "^7.12.17" + "@babel/plugin-transform-react-display-name" "^7.12.13" + "@babel/plugin-transform-react-jsx" "^7.13.12" + "@babel/plugin-transform-react-jsx-development" "^7.12.17" + "@babel/plugin-transform-react-pure-annotations" "^7.12.1" + "@babel/preset-typescript@7.9.0": version "7.9.0" resolved "https://registry.npm.alibaba-inc.com/@babel/preset-typescript/download/@babel/preset-typescript-7.9.0.tgz#87705a72b1f0d59df21c179f7c3d2ef4b16ce192" @@ -1521,7 +1861,7 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-typescript" "^7.9.0" -"@babel/preset-typescript@^7.12.1", "@babel/preset-typescript@^7.3.3", "@babel/preset-typescript@^7.6.0": +"@babel/preset-typescript@^7.12.1", "@babel/preset-typescript@^7.12.7", "@babel/preset-typescript@^7.3.3", "@babel/preset-typescript@^7.6.0": version "7.13.0" resolved "https://registry.npm.alibaba-inc.com/@babel/preset-typescript/download/@babel/preset-typescript-7.13.0.tgz#ab107e5f050609d806fbb039bec553b33462c60a" integrity sha1-qxB+XwUGCdgG+7A5vsVTszRixgo= @@ -1530,6 +1870,17 @@ "@babel/helper-validator-option" "^7.12.17" "@babel/plugin-transform-typescript" "^7.13.0" +"@babel/register@^7.12.1": + version "7.13.14" + resolved "https://registry.npm.alibaba-inc.com/@babel/register/download/@babel/register-7.13.14.tgz#bbfa8f4f027c2ebc432e8e69e078b632605f2d9b" + integrity sha1-u/qPTwJ8LrxDLo5p4Hi2MmBfLZs= + dependencies: + find-cache-dir "^2.0.0" + lodash "^4.17.19" + make-dir "^2.1.0" + pirates "^4.0.0" + source-map-support "^0.5.16" + "@babel/runtime-corejs3@^7.10.2", "@babel/runtime-corejs3@^7.12.1": version "7.13.6" resolved "https://registry.npm.alibaba-inc.com/@babel/runtime-corejs3/download/@babel/runtime-corejs3-7.13.6.tgz#b7fea0fe5bb0ec92e78f2b5ed467a7bd30c53a84" @@ -1553,13 +1904,20 @@ dependencies: regenerator-runtime "^0.13.4" -"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.0", "@babel/runtime@^7.10.1", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.3.1", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.7.7", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.0", "@babel/runtime@^7.10.1", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.5", "@babel/runtime@^7.3.1", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.7.7", "@babel/runtime@^7.8.4": version "7.13.7" resolved "https://registry.npm.alibaba-inc.com/@babel/runtime/download/@babel/runtime-7.13.7.tgz#d494e39d198ee9ca04f4dcb76d25d9d7a1dc961a" integrity sha1-1JTjnRmO6coE9Ny3bSXZ16Hclho= dependencies: regenerator-runtime "^0.13.4" +"@babel/runtime@^7.13.10": + version "7.13.10" + resolved "https://registry.npm.alibaba-inc.com/@babel/runtime/download/@babel/runtime-7.13.10.tgz#47d42a57b6095f4468da440388fdbad8bebf0d7d" + integrity sha1-R9QqV7YJX0Ro2kQDiP262L6/DX0= + dependencies: + regenerator-runtime "^0.13.4" + "@babel/standalone@^7.12.6", "@babel/standalone@^7.6.4": version "7.13.6" resolved "https://registry.npm.alibaba-inc.com/@babel/standalone/download/@babel/standalone-7.13.6.tgz#889e1f31857af0bd4b16ed27fdd071461bd9a1f6" @@ -1615,6 +1973,20 @@ globals "^11.1.0" lodash "^4.17.19" +"@babel/traverse@^7.13.13": + version "7.13.13" + resolved "https://registry.npm.alibaba-inc.com/@babel/traverse/download/@babel/traverse-7.13.13.tgz#39aa9c21aab69f74d948a486dd28a2dbdbf5114d" + integrity sha1-OaqcIaq2n3TZSKSG3Sii29v1EU0= + dependencies: + "@babel/code-frame" "^7.12.13" + "@babel/generator" "^7.13.9" + "@babel/helper-function-name" "^7.12.13" + "@babel/helper-split-export-declaration" "^7.12.13" + "@babel/parser" "^7.13.13" + "@babel/types" "^7.13.13" + debug "^4.1.0" + globals "^11.1.0" + "@babel/types@7.0.0-beta.44": version "7.0.0-beta.44" resolved "https://registry.npm.alibaba-inc.com/@babel/types/download/@babel/types-7.0.0-beta.44.tgz#6b1b164591f77dec0a0342aca995f2d046b3a757" @@ -1633,6 +2005,15 @@ lodash "^4.17.19" to-fast-properties "^2.0.0" +"@babel/types@^7.13.12", "@babel/types@^7.13.13", "@babel/types@^7.13.14": + version "7.13.14" + resolved "https://registry.npm.alibaba-inc.com/@babel/types/download/@babel/types-7.13.14.tgz#c35a4abb15c7cd45a2746d78ab328e362cbace0d" + integrity sha1-w1pKuxXHzUWidG14qzKONiy6zg0= + dependencies: + "@babel/helper-validator-identifier" "^7.12.11" + lodash "^4.17.19" + to-fast-properties "^2.0.0" + "@cnakazawa/watch@^1.0.3": version "1.0.4" resolved "https://registry.npm.alibaba-inc.com/@cnakazawa/watch/download/@cnakazawa/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" @@ -1831,7 +2212,7 @@ "@emotion/utils" "0.11.3" "@emotion/weak-memoize" "0.2.5" -"@emotion/core@^10.0.20": +"@emotion/core@^10.1.1": version "10.1.1" resolved "https://registry.npm.alibaba-inc.com/@emotion/core/download/@emotion/core-10.1.1.tgz#c956c1365f2f2481960064bcb8c4732e5fb612c3" integrity sha1-yVbBNl8vJIGWAGS8uMRzLl+2EsM= @@ -1857,7 +2238,7 @@ resolved "https://registry.npm.alibaba-inc.com/@emotion/hash/download/@emotion/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" integrity sha1-u7/2iXj+/b5ozLUzvIy+HRr7VBM= -"@emotion/is-prop-valid@0.8.8": +"@emotion/is-prop-valid@0.8.8", "@emotion/is-prop-valid@^0.8.6": version "0.8.8" resolved "https://registry.npm.alibaba-inc.com/@emotion/is-prop-valid/download/@emotion/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" integrity sha1-2yixxDaKJZtgqXMR1qlS1P0BrBo= @@ -1895,7 +2276,7 @@ "@emotion/serialize" "^0.11.15" "@emotion/utils" "0.11.3" -"@emotion/styled@^10.0.17": +"@emotion/styled@^10.0.27": version "10.0.27" resolved "https://registry.npm.alibaba-inc.com/@emotion/styled/download/@emotion/styled-10.0.27.tgz#12cb67e91f7ad7431e1875b1d83a94b814133eaf" integrity sha1-Estn6R9610MeGHWx2DqUuBQTPq8= @@ -2193,14 +2574,6 @@ prop-types "^15.6.2" scheduler "^0.19.1" -"@hypnosphi/create-react-context@^0.3.1": - version "0.3.1" - resolved "https://registry.npm.alibaba-inc.com/@hypnosphi/create-react-context/download/@hypnosphi/create-react-context-0.3.1.tgz#f8bfebdc7665f5d426cba3753e0e9c7d3154d7c6" - integrity sha1-+L/r3HZl9dQmy6N1Pg6cfTFU18Y= - dependencies: - gud "^1.0.0" - warning "^4.0.3" - "@iarna/toml@2.2.5", "@iarna/toml@^2.2.5": version "2.2.5" resolved "https://registry.npm.alibaba-inc.com/@iarna/toml/download/@iarna/toml-2.2.5.tgz#b32366c89b43c6f8cefbdefac778b9c828e3ba8c" @@ -3258,6 +3631,14 @@ "@nodelib/fs.scandir" "2.1.4" fastq "^1.6.0" +"@npmcli/move-file@^1.0.1": + version "1.1.2" + resolved "https://registry.npm.alibaba-inc.com/@npmcli/move-file/download/@npmcli/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674" + integrity sha1-GoLD43L3yuklPrZtclQ9a4aFxnQ= + dependencies: + mkdirp "^1.0.4" + rimraf "^3.0.2" + "@octokit/auth-token@^2.4.0", "@octokit/auth-token@^2.4.4": version "2.4.5" resolved "https://registry.npm.alibaba-inc.com/@octokit/auth-token/download/@octokit/auth-token-2.4.5.tgz#568ccfb8cb46f36441fac094ce34f7a875b197f3" @@ -3428,7 +3809,7 @@ string-width "^2.0.0" strip-ansi "^3" -"@pmmmwh/react-refresh-webpack-plugin@^0.4.1": +"@pmmmwh/react-refresh-webpack-plugin@^0.4.1", "@pmmmwh/react-refresh-webpack-plugin@^0.4.3": version "0.4.3" resolved "https://registry.npm.alibaba-inc.com/@pmmmwh/react-refresh-webpack-plugin/download/@pmmmwh/react-refresh-webpack-plugin-0.4.3.tgz#1eec460596d200c0236bf195b078a5d1df89b766" integrity sha1-HuxGBZbSAMAja/GVsHil0d+Jt2Y= @@ -3440,6 +3821,11 @@ schema-utils "^2.6.5" source-map "^0.7.3" +"@popperjs/core@^2.5.4", "@popperjs/core@^2.6.0": + version "2.9.2" + resolved "https://registry.npm.alibaba-inc.com/@popperjs/core/download/@popperjs/core-2.9.2.tgz#adea7b6953cbb34651766b0548468e743c6a2353" + integrity sha1-rep7aVPLs0ZRdmsFSEaOdDxqI1M= + "@probe.gl/stats@3.3.1": version "3.3.1" resolved "https://registry.npm.alibaba-inc.com/@probe.gl/stats/download/@probe.gl/stats-3.3.1.tgz#6119c4ce978420ea08464aaf1773d983d4ad9c66" @@ -3447,7 +3833,7 @@ dependencies: "@babel/runtime" "^7.0.0" -"@reach/router@^1.2.1", "@reach/router@^1.3.4": +"@reach/router@^1.3.4": version "1.3.4" resolved "https://registry.npm.alibaba-inc.com/@reach/router/download/@reach/router-1.3.4.tgz#d2574b19370a70c80480ed91f3da840136d10f8c" integrity sha1-0ldLGTcKcMgEgO2R89qEATbRD4w= @@ -3601,205 +3987,356 @@ resolved "https://registry.npm.alibaba-inc.com/@stackblitz/sdk/download/@stackblitz/sdk-1.5.2.tgz#8589c4f6dd8df69bc82f67c2677754ef87ab16f3" integrity sha1-hYnE9t2N9pvIL2fCZ3dU74erFvM= -"@storybook/addons@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/addons/download/@storybook/addons-5.3.21.tgz#ee312c738c33e8c34dc11777ef93522c3c36e56a" - integrity sha1-7jEsc4wz6MNNwRd375NSLDw25Wo= +"@storybook/addons@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/addons/download/@storybook/addons-6.2.2.tgz#d0ad3fa05e1569264511b8f8fb1fd08324e776a2" + integrity sha1-0K0/oF4VaSZFEbj4+x/QgyTndqI= dependencies: - "@storybook/api" "5.3.21" - "@storybook/channels" "5.3.21" - "@storybook/client-logger" "5.3.21" - "@storybook/core-events" "5.3.21" - core-js "^3.0.1" - global "^4.3.2" + "@storybook/api" "6.2.2" + "@storybook/channels" "6.2.2" + "@storybook/client-logger" "6.2.2" + "@storybook/core-events" "6.2.2" + "@storybook/router" "6.2.2" + "@storybook/theming" "6.2.2" + core-js "^3.8.2" + global "^4.4.0" + regenerator-runtime "^0.13.7" + +"@storybook/api@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/api/download/@storybook/api-6.2.2.tgz#021a6d89bef42fb9ec49c3fca9293b8be47298fa" + integrity sha1-Ahptib70L7nsScP8qSk7i+RymPo= + dependencies: + "@reach/router" "^1.3.4" + "@storybook/channels" "6.2.2" + "@storybook/client-logger" "6.2.2" + "@storybook/core-events" "6.2.2" + "@storybook/csf" "0.0.1" + "@storybook/router" "6.2.2" + "@storybook/semver" "^7.3.2" + "@storybook/theming" "6.2.2" + "@types/reach__router" "^1.3.7" + core-js "^3.8.2" + fast-deep-equal "^3.1.3" + global "^4.4.0" + lodash "^4.17.20" + memoizerific "^1.11.3" + qs "^6.10.0" + regenerator-runtime "^0.13.7" + store2 "^2.12.0" + telejson "^5.1.0" + ts-dedent "^2.0.0" util-deprecate "^1.0.2" -"@storybook/api@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/api/download/@storybook/api-5.3.21.tgz#8f1772de53b65e1a65d2f0257463d621a8617c58" - integrity sha1-jxdy3lO2Xhpl0vAldGPWIahhfFg= +"@storybook/builder-webpack4@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/builder-webpack4/download/@storybook/builder-webpack4-6.2.2.tgz#7eb73d34f7b89df9c9d0035514aea8fd75ebc704" + integrity sha1-frc9NPe4nfnJ0ANVFK6o/XXrxwQ= dependencies: - "@reach/router" "^1.2.1" - "@storybook/channels" "5.3.21" - "@storybook/client-logger" "5.3.21" - "@storybook/core-events" "5.3.21" - "@storybook/csf" "0.0.1" - "@storybook/router" "5.3.21" - "@storybook/theming" "5.3.21" - "@types/reach__router" "^1.2.3" - core-js "^3.0.1" - fast-deep-equal "^2.0.1" - global "^4.3.2" - lodash "^4.17.15" - memoizerific "^1.11.3" - prop-types "^15.6.2" - react "^16.8.3" - semver "^6.0.0" - shallow-equal "^1.1.0" - store2 "^2.7.1" - telejson "^3.2.0" - util-deprecate "^1.0.2" - -"@storybook/channel-postmessage@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/channel-postmessage/download/@storybook/channel-postmessage-5.3.21.tgz#9c08bf1c108ff973dbca18e582680d25178db1d4" - integrity sha1-nAi/HBCP+XPbyhjlgmgNJReNsdQ= - dependencies: - "@storybook/channels" "5.3.21" - "@storybook/client-logger" "5.3.21" - core-js "^3.0.1" - global "^4.3.2" - telejson "^3.2.0" - -"@storybook/channels@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/channels/download/@storybook/channels-5.3.21.tgz#53ba622b171d68b3b102983a62aa05149a49497b" - integrity sha1-U7piKxcdaLOxApg6YqoFFJpJSXs= - dependencies: - core-js "^3.0.1" - -"@storybook/client-api@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/client-api/download/@storybook/client-api-5.3.21.tgz#5b218a28f24219c32ab4b92a6af2a3e452fb8089" - integrity sha1-WyGKKPJCGcMqtLkqavKj5FL7gIk= - dependencies: - "@storybook/addons" "5.3.21" - "@storybook/channel-postmessage" "5.3.21" - "@storybook/channels" "5.3.21" - "@storybook/client-logger" "5.3.21" - "@storybook/core-events" "5.3.21" - "@storybook/csf" "0.0.1" - "@types/webpack-env" "^1.15.0" - core-js "^3.0.1" - eventemitter3 "^4.0.0" - global "^4.3.2" - is-plain-object "^3.0.0" - lodash "^4.17.15" - memoizerific "^1.11.3" - qs "^6.6.0" + "@babel/core" "^7.12.10" + "@babel/plugin-proposal-class-properties" "^7.12.1" + "@babel/plugin-proposal-decorators" "^7.12.12" + "@babel/plugin-proposal-export-default-from" "^7.12.1" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1" + "@babel/plugin-proposal-object-rest-spread" "^7.12.1" + "@babel/plugin-proposal-optional-chaining" "^7.12.7" + "@babel/plugin-proposal-private-methods" "^7.12.1" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-transform-arrow-functions" "^7.12.1" + "@babel/plugin-transform-block-scoping" "^7.12.12" + "@babel/plugin-transform-classes" "^7.12.1" + "@babel/plugin-transform-destructuring" "^7.12.1" + "@babel/plugin-transform-for-of" "^7.12.1" + "@babel/plugin-transform-parameters" "^7.12.1" + "@babel/plugin-transform-shorthand-properties" "^7.12.1" + "@babel/plugin-transform-spread" "^7.12.1" + "@babel/plugin-transform-template-literals" "^7.12.1" + "@babel/preset-env" "^7.12.11" + "@babel/preset-react" "^7.12.10" + "@babel/preset-typescript" "^7.12.7" + "@storybook/addons" "6.2.2" + "@storybook/api" "6.2.2" + "@storybook/channel-postmessage" "6.2.2" + "@storybook/channels" "6.2.2" + "@storybook/client-api" "6.2.2" + "@storybook/client-logger" "6.2.2" + "@storybook/components" "6.2.2" + "@storybook/core-common" "6.2.2" + "@storybook/core-events" "6.2.2" + "@storybook/node-logger" "6.2.2" + "@storybook/router" "6.2.2" + "@storybook/semver" "^7.3.2" + "@storybook/theming" "6.2.2" + "@storybook/ui" "6.2.2" + "@types/node" "^14.0.10" + "@types/webpack" "^4.41.26" + autoprefixer "^9.8.6" + babel-loader "^8.2.2" + babel-plugin-macros "^2.8.0" + babel-plugin-polyfill-corejs3 "^0.1.0" + case-sensitive-paths-webpack-plugin "^2.3.0" + core-js "^3.8.2" + css-loader "^3.6.0" + dotenv-webpack "^1.8.0" + file-loader "^6.2.0" + find-up "^5.0.0" + fork-ts-checker-webpack-plugin "^4.1.6" + fs-extra "^9.0.1" + glob "^7.1.6" + glob-promise "^3.4.0" + global "^4.4.0" + html-webpack-plugin "^4.0.0" + pnp-webpack-plugin "1.6.4" + postcss "^7.0.35" + postcss-flexbugs-fixes "^4.2.1" + postcss-loader "^4.2.0" + raw-loader "^4.0.2" + react-dev-utils "^11.0.3" stable "^0.1.8" - ts-dedent "^1.1.0" + style-loader "^1.3.0" + terser-webpack-plugin "^3.1.0" + ts-dedent "^2.0.0" + url-loader "^4.1.1" + util-deprecate "^1.0.2" + webpack "4" + webpack-dev-middleware "^3.7.3" + webpack-filter-warnings-plugin "^1.2.1" + webpack-hot-middleware "^2.25.0" + webpack-virtual-modules "^0.2.2" + +"@storybook/channel-postmessage@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/channel-postmessage/download/@storybook/channel-postmessage-6.2.2.tgz#e7dc119d7f8937ac26ef4b5591e8ce9a28f8c9ed" + integrity sha1-59wRnX+JN6wm70tVkejOmij4ye0= + dependencies: + "@storybook/channels" "6.2.2" + "@storybook/client-logger" "6.2.2" + "@storybook/core-events" "6.2.2" + core-js "^3.8.2" + global "^4.4.0" + qs "^6.10.0" + telejson "^5.1.0" + +"@storybook/channels@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/channels/download/@storybook/channels-6.2.2.tgz#502d1fc083559f8ed39f499557523178572798c2" + integrity sha1-UC0fwINVn47Tn0mVV1IxeFcnmMI= + dependencies: + core-js "^3.8.2" + ts-dedent "^2.0.0" util-deprecate "^1.0.2" -"@storybook/client-logger@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/client-logger/download/@storybook/client-logger-5.3.21.tgz#912c83b0d358e70acad1ad4abe199de4c38b109f" - integrity sha1-kSyDsNNY5wrK0a1Kvhmd5MOLEJ8= +"@storybook/client-api@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/client-api/download/@storybook/client-api-6.2.2.tgz#cc96c08c8ac1959d37225a6657adc14e6f58f790" + integrity sha1-zJbAjIrBlZ03IlpmV63BTm9Y95A= dependencies: - core-js "^3.0.1" - -"@storybook/components@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/components/download/@storybook/components-5.3.21.tgz#17ee371a2455c6e807c3d3135a9266e63ad7651a" - integrity sha1-F+43GiRVxugHw9MTWpJm5jrXZRo= - dependencies: - "@storybook/client-logger" "5.3.21" - "@storybook/theming" "5.3.21" - "@types/react-syntax-highlighter" "11.0.4" - "@types/react-textarea-autosize" "^4.3.3" - core-js "^3.0.1" - global "^4.3.2" - lodash "^4.17.15" - markdown-to-jsx "^6.11.4" - memoizerific "^1.11.3" - polished "^3.3.1" - popper.js "^1.14.7" - prop-types "^15.7.2" - react "^16.8.3" - react-dom "^16.8.3" - react-focus-lock "^2.1.0" - react-helmet-async "^1.0.2" - react-popper-tooltip "^2.8.3" - react-syntax-highlighter "^11.0.2" - react-textarea-autosize "^7.1.0" - simplebar-react "^1.0.0-alpha.6" - ts-dedent "^1.1.0" - -"@storybook/core-events@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/core-events/download/@storybook/core-events-5.3.21.tgz#41d81c3f107302a032545fc86ff344230c04b9e9" - integrity sha1-QdgcPxBzAqAyVF/Ib/NEIwwEuek= - dependencies: - core-js "^3.0.1" - -"@storybook/core@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/core/download/@storybook/core-5.3.21.tgz#da963166ea24601f318266a3aa6bbc06fc8fb175" - integrity sha1-2pYxZuokYB8xgmajqmu8BvyPsXU= - dependencies: - "@babel/plugin-proposal-class-properties" "^7.7.0" - "@babel/plugin-proposal-object-rest-spread" "^7.6.2" - "@babel/plugin-syntax-dynamic-import" "^7.2.0" - "@babel/plugin-transform-react-constant-elements" "^7.2.0" - "@babel/preset-env" "^7.4.5" - "@storybook/addons" "5.3.21" - "@storybook/channel-postmessage" "5.3.21" - "@storybook/client-api" "5.3.21" - "@storybook/client-logger" "5.3.21" - "@storybook/core-events" "5.3.21" + "@storybook/addons" "6.2.2" + "@storybook/channel-postmessage" "6.2.2" + "@storybook/channels" "6.2.2" + "@storybook/client-logger" "6.2.2" + "@storybook/core-events" "6.2.2" "@storybook/csf" "0.0.1" - "@storybook/node-logger" "5.3.21" - "@storybook/router" "5.3.21" - "@storybook/theming" "5.3.21" - "@storybook/ui" "5.3.21" - airbnb-js-shims "^2.2.1" + "@types/qs" "^6.9.5" + "@types/webpack-env" "^1.16.0" + core-js "^3.8.2" + global "^4.4.0" + lodash "^4.17.20" + memoizerific "^1.11.3" + qs "^6.10.0" + regenerator-runtime "^0.13.7" + stable "^0.1.8" + store2 "^2.12.0" + ts-dedent "^2.0.0" + util-deprecate "^1.0.2" + +"@storybook/client-logger@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/client-logger/download/@storybook/client-logger-6.2.2.tgz#953cc977dd428e484db7e1f09f46505fa6567155" + integrity sha1-lTzJd91CjkhNt+Hwn0ZQX6ZWcVU= + dependencies: + core-js "^3.8.2" + global "^4.4.0" + +"@storybook/components@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/components/download/@storybook/components-6.2.2.tgz#e17a3723146e1f30d35ac6f9da7e70451a88c9c9" + integrity sha1-4Xo3IxRuHzDTWsb52n5wRRqIyck= + dependencies: + "@popperjs/core" "^2.6.0" + "@storybook/client-logger" "6.2.2" + "@storybook/csf" "0.0.1" + "@storybook/theming" "6.2.2" + "@types/color-convert" "^2.0.0" + "@types/overlayscrollbars" "^1.12.0" + "@types/react-syntax-highlighter" "11.0.5" + color-convert "^2.0.1" + core-js "^3.8.2" + fast-deep-equal "^3.1.3" + global "^4.4.0" + lodash "^4.17.20" + markdown-to-jsx "^7.1.0" + memoizerific "^1.11.3" + overlayscrollbars "^1.13.1" + polished "^4.0.5" + prop-types "^15.7.2" + react-colorful "^5.0.1" + react-popper-tooltip "^3.1.1" + react-syntax-highlighter "^13.5.3" + react-textarea-autosize "^8.3.0" + regenerator-runtime "^0.13.7" + ts-dedent "^2.0.0" + util-deprecate "^1.0.2" + +"@storybook/core-client@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/core-client/download/@storybook/core-client-6.2.2.tgz#69c161561ca8830162cee51032b7b384629da887" + integrity sha1-acFhVhyogwFizuUQMrezhGKdqIc= + dependencies: + "@storybook/addons" "6.2.2" + "@storybook/channel-postmessage" "6.2.2" + "@storybook/client-api" "6.2.2" + "@storybook/client-logger" "6.2.2" + "@storybook/core-events" "6.2.2" + "@storybook/csf" "0.0.1" + "@storybook/ui" "6.2.2" ansi-to-html "^0.6.11" - autoprefixer "^9.7.2" - babel-plugin-add-react-displayname "^0.0.5" - babel-plugin-emotion "^10.0.20" - babel-plugin-macros "^2.7.0" - babel-preset-minify "^0.5.0 || 0.6.0-alpha.5" - boxen "^4.1.0" - case-sensitive-paths-webpack-plugin "^2.2.0" - chalk "^3.0.0" - cli-table3 "0.5.1" - commander "^4.0.1" - core-js "^3.0.1" - corejs-upgrade-webpack-plugin "^2.2.0" - css-loader "^3.0.0" - detect-port "^1.3.0" - dotenv-webpack "^1.7.0" - ejs "^2.7.4" - express "^4.17.0" - file-loader "^4.2.0" + core-js "^3.8.2" + global "^4.4.0" + lodash "^4.17.20" + qs "^6.10.0" + regenerator-runtime "^0.13.7" + ts-dedent "^2.0.0" + unfetch "^4.2.0" + util-deprecate "^1.0.2" + +"@storybook/core-common@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/core-common/download/@storybook/core-common-6.2.2.tgz#965d2f2a19ede1ad5ed57a2815c1347ba7319e22" + integrity sha1-ll0vKhnt4a1e1XooFcE0e6cxniI= + dependencies: + "@babel/core" "^7.12.10" + "@babel/plugin-proposal-class-properties" "^7.12.1" + "@babel/plugin-proposal-decorators" "^7.12.12" + "@babel/plugin-proposal-export-default-from" "^7.12.1" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1" + "@babel/plugin-proposal-object-rest-spread" "^7.12.1" + "@babel/plugin-proposal-optional-chaining" "^7.12.7" + "@babel/plugin-proposal-private-methods" "^7.12.1" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-transform-arrow-functions" "^7.12.1" + "@babel/plugin-transform-block-scoping" "^7.12.12" + "@babel/plugin-transform-classes" "^7.12.1" + "@babel/plugin-transform-destructuring" "^7.12.1" + "@babel/plugin-transform-for-of" "^7.12.1" + "@babel/plugin-transform-parameters" "^7.12.1" + "@babel/plugin-transform-shorthand-properties" "^7.12.1" + "@babel/plugin-transform-spread" "^7.12.1" + "@babel/preset-env" "^7.12.11" + "@babel/preset-react" "^7.12.10" + "@babel/preset-typescript" "^7.12.7" + "@babel/register" "^7.12.1" + "@storybook/node-logger" "6.2.2" + "@storybook/semver" "^7.3.2" + "@types/glob-base" "^0.3.0" + "@types/micromatch" "^4.0.1" + "@types/node" "^14.0.10" + "@types/pretty-hrtime" "^1.0.0" + babel-loader "^8.2.2" + babel-plugin-macros "^3.0.1" + babel-plugin-polyfill-corejs3 "^0.1.0" + chalk "^4.1.0" + core-js "^3.8.2" + express "^4.17.1" file-system-cache "^1.0.5" - find-cache-dir "^3.0.0" - find-up "^4.1.0" - fs-extra "^8.0.1" + find-up "^5.0.0" + fork-ts-checker-webpack-plugin "^6.0.4" + glob "^7.1.6" glob-base "^0.3.0" - global "^4.3.2" - html-webpack-plugin "^4.0.0-beta.2" - inquirer "^7.0.0" - interpret "^2.0.0" - ip "^1.1.5" - json5 "^2.1.1" + interpret "^2.2.0" + json5 "^2.1.3" lazy-universal-dotenv "^3.0.1" micromatch "^4.0.2" - node-fetch "^2.6.0" - open "^7.0.0" - pnp-webpack-plugin "1.5.0" - postcss-flexbugs-fixes "^4.1.0" - postcss-loader "^3.0.0" + pkg-dir "^5.0.0" pretty-hrtime "^1.0.3" - qs "^6.6.0" - raw-loader "^3.1.0" - react-dev-utils "^9.0.0" - regenerator-runtime "^0.13.3" - resolve "^1.11.0" resolve-from "^5.0.0" - semver "^6.0.0" - serve-favicon "^2.5.0" - shelljs "^0.8.3" - style-loader "^1.0.0" - terser-webpack-plugin "^2.1.2" - ts-dedent "^1.1.0" - unfetch "^4.1.0" - url-loader "^2.0.1" + ts-dedent "^2.0.0" util-deprecate "^1.0.2" - webpack "^4.33.0" - webpack-dev-middleware "^3.7.0" - webpack-hot-middleware "^2.25.0" - webpack-virtual-modules "^0.2.0" + webpack "4" + +"@storybook/core-events@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/core-events/download/@storybook/core-events-6.2.2.tgz#9ecc42a645048ac386748ca659c196f2000146a7" + integrity sha1-nsxCpkUEisOGdIymWcGW8gABRqc= + dependencies: + core-js "^3.8.2" + +"@storybook/core-server@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/core-server/download/@storybook/core-server-6.2.2.tgz#af8b8dedaf428c587774a228f51a1f444fe1e97f" + integrity sha1-r4uN7a9CjFh3dKIo9RofRE/h6X8= + dependencies: + "@babel/core" "^7.12.10" + "@babel/plugin-transform-template-literals" "^7.12.1" + "@babel/preset-react" "^7.12.10" + "@storybook/addons" "6.2.2" + "@storybook/builder-webpack4" "6.2.2" + "@storybook/core-client" "6.2.2" + "@storybook/core-common" "6.2.2" + "@storybook/node-logger" "6.2.2" + "@storybook/semver" "^7.3.2" + "@storybook/theming" "6.2.2" + "@storybook/ui" "6.2.2" + "@types/node" "^14.0.10" + "@types/node-fetch" "^2.5.7" + "@types/pretty-hrtime" "^1.0.0" + "@types/webpack" "^4.41.26" + airbnb-js-shims "^2.2.1" + babel-loader "^8.2.2" + better-opn "^2.1.1" + boxen "^4.2.0" + case-sensitive-paths-webpack-plugin "^2.3.0" + chalk "^4.1.0" + cli-table3 "0.6.0" + commander "^6.2.1" + core-js "^3.8.2" + cpy "^8.1.1" + css-loader "^3.6.0" + detect-port "^1.3.0" + dotenv-webpack "^1.8.0" + express "^4.17.1" + file-loader "^6.2.0" + file-system-cache "^1.0.5" + find-up "^5.0.0" + fs-extra "^9.0.1" + global "^4.4.0" + html-webpack-plugin "^4.0.0" + ip "^1.1.5" + node-fetch "^2.6.1" + pnp-webpack-plugin "1.6.4" + pretty-hrtime "^1.0.3" + prompts "^2.4.0" + read-pkg-up "^7.0.1" + regenerator-runtime "^0.13.7" + resolve-from "^5.0.0" + serve-favicon "^2.5.0" + style-loader "^1.3.0" + telejson "^5.1.0" + terser-webpack-plugin "^3.1.0" + ts-dedent "^2.0.0" + url-loader "^4.1.1" + util-deprecate "^1.0.2" + webpack "4" + webpack-dev-middleware "^3.7.3" + webpack-virtual-modules "^0.2.2" + +"@storybook/core@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/core/download/@storybook/core-6.2.2.tgz#3a2d99ad3fed18e9d0b38e3a01c003bcd9b1920b" + integrity sha1-Oi2ZrT/tGOnQs446AcADvNmxkgs= + dependencies: + "@storybook/core-client" "6.2.2" + "@storybook/core-server" "6.2.2" "@storybook/csf@0.0.1": version "0.0.1" @@ -3808,117 +4345,122 @@ dependencies: lodash "^4.17.15" -"@storybook/node-logger@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/node-logger/download/@storybook/node-logger-5.3.21.tgz#f11d45042bd57dc69e9037d8f374d9fd0aad8071" - integrity sha1-8R1FBCvVfcaekDfY83TZ/QqtgHE= +"@storybook/node-logger@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/node-logger/download/@storybook/node-logger-6.2.2.tgz#248350f593bcf3bd0cf4835b3f30a33cfb0b0086" + integrity sha1-JINQ9ZO8870M9INbPzCjPPsLAIY= dependencies: "@types/npmlog" "^4.1.2" - chalk "^3.0.0" - core-js "^3.0.1" + chalk "^4.1.0" + core-js "^3.8.2" npmlog "^4.1.2" pretty-hrtime "^1.0.3" - regenerator-runtime "^0.13.3" -"@storybook/react@^5.1.9": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/react/download/@storybook/react-5.3.21.tgz#f7f364d3d3adc70746a12cf8b6614952f41d4bd0" - integrity sha1-9/Nk09OtxwdGoSz4tmFJUvQdS9A= +"@storybook/react@*", "@storybook/react@^6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/react/download/@storybook/react-6.2.2.tgz#994160f42d0240bb433b4f203d9093b99008f7ac" + integrity sha1-mUFg9C0CQLtDO08gPZCTuZAI96w= dependencies: - "@babel/plugin-transform-react-constant-elements" "^7.6.3" - "@babel/preset-flow" "^7.0.0" - "@babel/preset-react" "^7.0.0" - "@storybook/addons" "5.3.21" - "@storybook/core" "5.3.21" - "@storybook/node-logger" "5.3.21" - "@svgr/webpack" "^4.0.3" - "@types/webpack-env" "^1.15.0" + "@babel/preset-flow" "^7.12.1" + "@babel/preset-react" "^7.12.10" + "@pmmmwh/react-refresh-webpack-plugin" "^0.4.3" + "@storybook/addons" "6.2.2" + "@storybook/core" "6.2.2" + "@storybook/core-common" "6.2.2" + "@storybook/node-logger" "6.2.2" + "@storybook/semver" "^7.3.2" + "@types/webpack-env" "^1.16.0" babel-plugin-add-react-displayname "^0.0.5" babel-plugin-named-asset-import "^0.3.1" - babel-plugin-react-docgen "^4.0.0" - core-js "^3.0.1" - global "^4.3.2" - lodash "^4.17.15" - mini-css-extract-plugin "^0.7.0" + babel-plugin-react-docgen "^4.2.1" + core-js "^3.8.2" + global "^4.4.0" + lodash "^4.17.20" prop-types "^15.7.2" - react-dev-utils "^9.0.0" - regenerator-runtime "^0.13.3" - semver "^6.0.0" - ts-dedent "^1.1.0" - webpack "^4.33.0" + react-dev-utils "^11.0.3" + react-docgen-typescript-plugin "^0.6.2" + react-refresh "^0.8.3" + read-pkg-up "^7.0.1" + regenerator-runtime "^0.13.7" + ts-dedent "^2.0.0" + webpack "4" -"@storybook/router@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/router/download/@storybook/router-5.3.21.tgz#32b08e5daa90a6ffa024bb670b874525a712a901" - integrity sha1-MrCOXaqQpv+gJLtnC4dFJacSqQE= +"@storybook/router@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/router/download/@storybook/router-6.2.2.tgz#8e0983b8c7c9f777ea3d3c5467910c6f7202f3cb" + integrity sha1-jgmDuMfJ93fqPTxUZ5EMb3IC88s= dependencies: - "@reach/router" "^1.2.1" - "@storybook/csf" "0.0.1" - "@types/reach__router" "^1.2.3" - core-js "^3.0.1" - global "^4.3.2" - lodash "^4.17.15" + "@reach/router" "^1.3.4" + "@storybook/client-logger" "6.2.2" + "@types/reach__router" "^1.3.7" + core-js "^3.8.2" + fast-deep-equal "^3.1.3" + global "^4.4.0" + lodash "^4.17.20" memoizerific "^1.11.3" - qs "^6.6.0" - util-deprecate "^1.0.2" + qs "^6.10.0" + ts-dedent "^2.0.0" -"@storybook/theming@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/theming/download/@storybook/theming-5.3.21.tgz#ae2dc101aa57c3be4df1724ae729e11bad118e0b" - integrity sha1-ri3BAapXw75N8XJK5ynhG60Rjgs= +"@storybook/semver@^7.3.2": + version "7.3.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/semver/download/@storybook/semver-7.3.2.tgz#f3b9c44a1c9a0b933c04e66d0048fcf2fa10dac0" + integrity sha1-87nEShyaC5M8BOZtAEj88voQ2sA= dependencies: - "@emotion/core" "^10.0.20" - "@emotion/styled" "^10.0.17" - "@storybook/client-logger" "5.3.21" - core-js "^3.0.1" + core-js "^3.6.5" + find-up "^4.1.0" + +"@storybook/theming@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/theming/download/@storybook/theming-6.2.2.tgz#db44ab207f9109c697b8ea95dfab829279e2525a" + integrity sha1-20SrIH+RCcaXuOqV36uCknniUlo= + dependencies: + "@emotion/core" "^10.1.1" + "@emotion/is-prop-valid" "^0.8.6" + "@emotion/styled" "^10.0.27" + "@storybook/client-logger" "6.2.2" + core-js "^3.8.2" deep-object-diff "^1.1.0" - emotion-theming "^10.0.19" - global "^4.3.2" + emotion-theming "^10.0.27" + global "^4.4.0" memoizerific "^1.11.3" - polished "^3.3.1" - prop-types "^15.7.2" + polished "^4.0.5" resolve-from "^5.0.0" - ts-dedent "^1.1.0" + ts-dedent "^2.0.0" -"@storybook/ui@5.3.21": - version "5.3.21" - resolved "https://registry.npm.alibaba-inc.com/@storybook/ui/download/@storybook/ui-5.3.21.tgz#b42568e03353b47aaab1b6449311f38858585f81" - integrity sha1-tCVo4DNTtHqqsbZEkxHziFhYX4E= +"@storybook/ui@6.2.2": + version "6.2.2" + resolved "https://registry.npm.alibaba-inc.com/@storybook/ui/download/@storybook/ui-6.2.2.tgz#b66836e303c368ca25119ffbb333eff6901433ca" + integrity sha1-tmg24wPDaMolEZ/7szPv9pAUM8o= dependencies: - "@emotion/core" "^10.0.20" - "@storybook/addons" "5.3.21" - "@storybook/api" "5.3.21" - "@storybook/channels" "5.3.21" - "@storybook/client-logger" "5.3.21" - "@storybook/components" "5.3.21" - "@storybook/core-events" "5.3.21" - "@storybook/router" "5.3.21" - "@storybook/theming" "5.3.21" - copy-to-clipboard "^3.0.8" - core-js "^3.0.1" - core-js-pure "^3.0.1" - emotion-theming "^10.0.19" - fast-deep-equal "^2.0.1" - fuse.js "^3.4.6" - global "^4.3.2" - lodash "^4.17.15" + "@emotion/core" "^10.1.1" + "@storybook/addons" "6.2.2" + "@storybook/api" "6.2.2" + "@storybook/channels" "6.2.2" + "@storybook/client-logger" "6.2.2" + "@storybook/components" "6.2.2" + "@storybook/core-events" "6.2.2" + "@storybook/router" "6.2.2" + "@storybook/semver" "^7.3.2" + "@storybook/theming" "6.2.2" + "@types/markdown-to-jsx" "^6.11.3" + copy-to-clipboard "^3.3.1" + core-js "^3.8.2" + core-js-pure "^3.8.2" + downshift "^6.0.15" + emotion-theming "^10.0.27" + fuse.js "^3.6.1" + global "^4.4.0" + lodash "^4.17.20" markdown-to-jsx "^6.11.4" memoizerific "^1.11.3" - polished "^3.3.1" - prop-types "^15.7.2" - qs "^6.6.0" - react "^16.8.3" - react-dom "^16.8.3" - react-draggable "^4.0.3" - react-helmet-async "^1.0.2" - react-hotkeys "2.0.0" - react-sizeme "^2.6.7" - regenerator-runtime "^0.13.2" + polished "^4.0.5" + qs "^6.10.0" + react-draggable "^4.4.3" + react-helmet-async "^1.0.7" + react-sizeme "^3.0.1" + regenerator-runtime "^0.13.7" resolve-from "^5.0.0" - semver "^6.0.0" - store2 "^2.7.1" - telejson "^3.2.0" - util-deprecate "^1.0.2" + store2 "^2.12.0" "@svgr/babel-plugin-add-jsx-attribute@^4.2.0": version "4.2.0" @@ -4009,7 +4551,7 @@ merge-deep "^3.0.2" svgo "^1.2.2" -"@svgr/webpack@4.3.3", "@svgr/webpack@^4.0.3": +"@svgr/webpack@4.3.3": version "4.3.3" resolved "https://registry.npm.alibaba-inc.com/@svgr/webpack/download/@svgr/webpack-4.3.3.tgz#13cc2423bf3dff2d494f16b17eb7eacb86895017" integrity sha1-E8wkI789/y1JTxaxfrfqy4aJUBc= @@ -5285,6 +5827,11 @@ dependencies: "@babel/types" "^7.3.0" +"@types/braces@*": + version "3.0.0" + resolved "https://registry.npm.alibaba-inc.com/@types/braces/download/@types/braces-3.0.0.tgz#7da1c0d44ff1c7eb660a36ec078ea61ba7eb42cb" + integrity sha1-faHA1E/xx+tmCjbsB46mG6frQss= + "@types/cacheable-request@^6.0.1": version "6.0.1" resolved "https://registry.npm.alibaba-inc.com/@types/cacheable-request/download/@types/cacheable-request-6.0.1.tgz#5d22f3dded1fd3a84c0bbeb5039a7419c2c91976" @@ -5307,6 +5854,18 @@ resolved "https://registry.npm.alibaba-inc.com/@types/classnames/download/@types/classnames-2.2.11.tgz#2521cc86f69d15c5b90664e4829d84566052c1cf" integrity sha1-JSHMhvadFcW5BmTkgp2EVmBSwc8= +"@types/color-convert@^2.0.0": + version "2.0.0" + resolved "https://registry.npm.alibaba-inc.com/@types/color-convert/download/@types/color-convert-2.0.0.tgz#8f5ee6b9e863dcbee5703f5a517ffb13d3ea4e22" + integrity sha1-j17muehj3L7lcD9aUX/7E9PqTiI= + dependencies: + "@types/color-name" "*" + +"@types/color-name@*": + version "1.1.1" + resolved "https://registry.npm.alibaba-inc.com/@types/color-name/download/@types/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" + integrity sha1-HBJhu+qhCoBVu8XYq4S3sq/IRqA= + "@types/common-tags@^1.8.0": version "1.8.0" resolved "https://registry.npm.alibaba-inc.com/@types/common-tags/download/@types/common-tags-1.8.0.tgz#79d55e748d730b997be5b7fce4b74488d8b26a6b" @@ -5434,6 +5993,11 @@ resolved "https://registry.npm.alibaba-inc.com/@types/gl/download/@types/gl-4.1.0.tgz#44d48283f1ffb5e6698de145b805fa1bf80ca4aa" integrity sha1-RNSCg/H/teZpjeFFuAX6G/gMpKo= +"@types/glob-base@^0.3.0": + version "0.3.0" + resolved "https://registry.npm.alibaba-inc.com/@types/glob-base/download/@types/glob-base-0.3.0.tgz#a581d688347e10e50dd7c17d6f2880a10354319d" + integrity sha1-pYHWiDR+EOUN18F9byiAoQNUMZ0= + "@types/glob@*", "@types/glob@^7.1.1": version "7.1.3" resolved "https://registry.npm.alibaba-inc.com/@types/glob/download/@types/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183" @@ -5461,6 +6025,13 @@ resolved "https://registry.npm.alibaba-inc.com/@types/hammerjs/download/@types/hammerjs-2.0.39.tgz#4be64bbacf3813c79c0dab895c6b0fdc7d5e513f" integrity sha1-S+ZLus84E8ecDauJXGsP3H1eUT8= +"@types/hast@^2.0.0": + version "2.3.1" + resolved "https://registry.npm.alibaba-inc.com/@types/hast/download/@types/hast-2.3.1.tgz#b16872f2a6144c7025f296fb9636a667ebb79cd9" + integrity sha1-sWhy8qYUTHAl8pb7ljamZ+u3nNk= + dependencies: + "@types/unist" "*" + "@types/html-minifier-terser@^5.0.0": version "5.1.1" resolved "https://registry.npm.alibaba-inc.com/@types/html-minifier-terser/download/@types/html-minifier-terser-5.1.1.tgz#3c9ee980f1a10d6021ae6632ca3e79ca2ec4fb50" @@ -5531,7 +6102,7 @@ resolved "https://registry.npm.alibaba-inc.com/@types/js-cookie/download/@types/js-cookie-2.2.6.tgz#f1a1cb35aff47bc5cfb05cb0c441ca91e914c26f" integrity sha1-8aHLNa/0e8XPsFywxEHKkekUwm8= -"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6": +"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6": version "7.0.7" resolved "https://registry.npm.alibaba-inc.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" integrity sha1-mKmTUWyFnrDVxMjwmDF6nqaNua0= @@ -5574,6 +6145,13 @@ dependencies: "@types/geojson" "*" +"@types/markdown-to-jsx@^6.11.3": + version "6.11.3" + resolved "https://registry.npm.alibaba-inc.com/@types/markdown-to-jsx/download/@types/markdown-to-jsx-6.11.3.tgz#cdd1619308fecbc8be7e6a26f3751260249b020e" + integrity sha1-zdFhkwj+y8i+fmom83USYCSbAg4= + dependencies: + "@types/react" "*" + "@types/mdast@^3.0.3": version "3.0.3" resolved "https://registry.npm.alibaba-inc.com/@types/mdast/download/@types/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb" @@ -5581,6 +6159,13 @@ dependencies: "@types/unist" "*" +"@types/micromatch@^4.0.1": + version "4.0.1" + resolved "https://registry.npm.alibaba-inc.com/@types/micromatch/download/@types/micromatch-4.0.1.tgz#9381449dd659fc3823fd2a4190ceacc985083bc7" + integrity sha1-k4FEndZZ/Dgj/SpBkM6syYUIO8c= + dependencies: + "@types/braces" "*" + "@types/minimatch@*": version "3.0.3" resolved "https://registry.npm.alibaba-inc.com/@types/minimatch/download/@types/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" @@ -5606,6 +6191,14 @@ "@types/node" "*" form-data "^3.0.0" +"@types/node-fetch@^2.5.7": + version "2.5.9" + resolved "https://registry.npm.alibaba-inc.com/@types/node-fetch/download/@types/node-fetch-2.5.9.tgz#c04a12115aa436f189e39579272b305e477621b4" + integrity sha1-wEoSEVqkNvGJ45V5JyswXkd2IbQ= + dependencies: + "@types/node" "*" + form-data "^3.0.0" + "@types/node@*", "@types/node@>= 8": version "14.14.31" resolved "https://registry.npm.alibaba-inc.com/@types/node/download/@types/node-14.14.31.tgz#72286bd33d137aa0d152d47ec7c1762563d34055" @@ -5626,6 +6219,11 @@ resolved "https://registry.npm.alibaba-inc.com/@types/node/download/@types/node-10.17.54.tgz#a737488631aca3ec7bd9f6229d77f1079e444793" integrity sha1-pzdIhjGso+x72fYinXfxB55ER5M= +"@types/node@^14.0.10": + version "14.14.37" + resolved "https://registry.npm.alibaba-inc.com/@types/node/download/@types/node-14.14.37.tgz#a3dd8da4eb84a996c36e331df98d82abd76b516e" + integrity sha1-o92NpOuEqZbDbjMd+Y2Cq9drUW4= + "@types/node@^8.5.7": version "8.10.66" resolved "https://registry.npm.alibaba-inc.com/@types/node/download/@types/node-8.10.66.tgz#dd035d409df322acc83dff62a602f12a5783bbb3" @@ -5641,6 +6239,11 @@ resolved "https://registry.npm.alibaba-inc.com/@types/npmlog/download/@types/npmlog-4.1.2.tgz#d070fe6a6b78755d1092a3dc492d34c3d8f871c4" integrity sha1-0HD+amt4dV0QkqPcSS00w9j4ccQ= +"@types/overlayscrollbars@^1.12.0": + version "1.12.0" + resolved "https://registry.npm.alibaba-inc.com/@types/overlayscrollbars/download/@types/overlayscrollbars-1.12.0.tgz#98456caceca8ad73bd5bb572632a585074e70764" + integrity sha1-mEVsrOyorXO9W7VyYypYUHTnB2Q= + "@types/parse-github-url@^1.0.0": version "1.0.0" resolved "https://registry.npm.alibaba-inc.com/@types/parse-github-url/download/@types/parse-github-url-1.0.0.tgz#9e5f78297c42c717123bfcc39e1e9754a6099d0b" @@ -5653,6 +6256,11 @@ resolved "https://registry.npm.alibaba-inc.com/@types/parse-json/download/@types/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" integrity sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA= +"@types/pretty-hrtime@^1.0.0": + version "1.0.0" + resolved "https://registry.npm.alibaba-inc.com/@types/pretty-hrtime/download/@types/pretty-hrtime-1.0.0.tgz#c5a2d644a135e988b2932f99737e67b3c62528d0" + integrity sha1-xaLWRKE16Yiyky+Zc35ns8YlKNA= + "@types/prop-types@*": version "15.7.3" resolved "https://registry.npm.alibaba-inc.com/@types/prop-types/download/@types/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" @@ -5663,7 +6271,12 @@ resolved "https://registry.npm.alibaba-inc.com/@types/q/download/@types/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" integrity sha1-FZJUFOCtLNdlv+9YhC9+JqesyyQ= -"@types/reach__router@^1.2.3", "@types/reach__router@^1.3.7": +"@types/qs@^6.9.5": + version "6.9.6" + resolved "https://registry.npm.alibaba-inc.com/@types/qs/download/@types/qs-6.9.6.tgz#df9c3c8b31a247ec315e6996566be3171df4b3b1" + integrity sha1-35w8izGiR+wxXmmWVmvjFx30s7E= + +"@types/reach__router@^1.3.7": version "1.3.7" resolved "https://registry.npm.alibaba-inc.com/@types/reach__router/download/@types/reach__router-1.3.7.tgz#de8ab374259ae7f7499fc1373b9697a5f3cd6428" integrity sha1-3oqzdCWa5/dJn8E3O5aXpfPNZCg= @@ -5698,17 +6311,10 @@ dependencies: "@types/react" "*" -"@types/react-syntax-highlighter@11.0.4": - version "11.0.4" - resolved "https://registry.npm.alibaba-inc.com/@types/react-syntax-highlighter/download/@types/react-syntax-highlighter-11.0.4.tgz#d86d17697db62f98046874f62fdb3e53a0bbc4cd" - integrity sha1-2G0XaX22L5gEaHT2L9s+U6C7xM0= - dependencies: - "@types/react" "*" - -"@types/react-textarea-autosize@^4.3.3": - version "4.3.5" - resolved "https://registry.npm.alibaba-inc.com/@types/react-textarea-autosize/download/@types/react-textarea-autosize-4.3.5.tgz#6c4d2753fa1864c98c0b2b517f67bb1f6e4c46de" - integrity sha1-bE0nU/oYZMmMCytRf2e7H25MRt4= +"@types/react-syntax-highlighter@11.0.5": + version "11.0.5" + resolved "https://registry.npm.alibaba-inc.com/@types/react-syntax-highlighter/download/@types/react-syntax-highlighter-11.0.5.tgz#0d546261b4021e1f9d85b50401c0a42acb106087" + integrity sha1-DVRiYbQCHh+dhbUEAcCkKssQYIc= dependencies: "@types/react" "*" @@ -5780,13 +6386,12 @@ resolved "https://registry.npm.alibaba-inc.com/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" integrity sha1-CoUdO9lkmPolwzq3J47TvWXwbD4= -"@types/storybook__react@^4.0.2": - version "4.0.2" - resolved "https://registry.npm.alibaba-inc.com/@types/storybook__react/download/@types/storybook__react-4.0.2.tgz#f36fb399574c662e79c1a0cf6e429b6ff730da40" - integrity sha1-82+zmVdMZi55waDPbkKbb/cw2kA= +"@types/storybook__react@^5.2.1": + version "5.2.1" + resolved "https://registry.npm.alibaba-inc.com/@types/storybook__react/download/@types/storybook__react-5.2.1.tgz#b5fd1612f2e5846b2f441725ea946bafd7ab9edb" + integrity sha1-tf0WEvLlhGsvRBcl6pRrr9ernts= dependencies: - "@types/react" "*" - "@types/webpack-env" "*" + "@storybook/react" "*" "@types/supercluster@^5.0.1": version "5.0.2" @@ -5800,6 +6405,11 @@ resolved "https://registry.npm.alibaba-inc.com/@types/tapable/download/@types/tapable-1.0.6.tgz#a9ca4b70a18b270ccb2bc0aaafefd1d486b7ea74" integrity sha1-qcpLcKGLJwzLK8Cqr+/R1Ia36nQ= +"@types/tapable@^1": + version "1.0.7" + resolved "https://registry.npm.alibaba-inc.com/@types/tapable/download/@types/tapable-1.0.7.tgz#545158342f949e8fd3bfd813224971ecddc3fac4" + integrity sha1-VFFYNC+Uno/Tv9gTIklx7N3D+sQ= + "@types/tmp@^0.0.33": version "0.0.33" resolved "https://registry.npm.alibaba-inc.com/@types/tmp/download/@types/tmp-0.0.33.tgz#1073c4bc824754ae3d10cfab88ab0237ba964e4d" @@ -5840,7 +6450,7 @@ dependencies: gl-matrix "^3.2.0" -"@types/webpack-env@*", "@types/webpack-env@^1.15.0": +"@types/webpack-env@^1.16.0": version "1.16.0" resolved "https://registry.npm.alibaba-inc.com/@types/webpack-env/download/@types/webpack-env-1.16.0.tgz#8c0a9435dfa7b3b1be76562f3070efb3f92637b4" integrity sha1-jAqUNd+ns7G+dlYvMHDvs/kmN7Q= @@ -5866,6 +6476,18 @@ "@types/webpack-sources" "*" source-map "^0.6.0" +"@types/webpack@^4.41.26": + version "4.41.27" + resolved "https://registry.npm.alibaba-inc.com/@types/webpack/download/@types/webpack-4.41.27.tgz#f47da488c8037e7f1b2dbf2714fbbacb61ec0ffc" + integrity sha1-9H2kiMgDfn8bLb8nFPu6y2HsD/w= + dependencies: + "@types/anymatch" "*" + "@types/node" "*" + "@types/tapable" "^1" + "@types/uglify-js" "*" + "@types/webpack-sources" "*" + source-map "^0.6.0" + "@types/websocket@1.0.1": version "1.0.1" resolved "https://registry.npm.alibaba-inc.com/@types/websocket/download/@types/websocket-1.0.1.tgz#039272c196c2c0e4868a0d8a1a27bbb86e9e9138" @@ -6452,7 +7074,7 @@ ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: resolved "https://registry.npm.alibaba-inc.com/ajv-keywords/download/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" integrity sha1-MfKdpatuANHC0yms97WSlhTVAU0= -ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5: +ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5: version "6.12.6" resolved "https://registry.npm.alibaba-inc.com/ajv/download/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ= @@ -6900,6 +7522,11 @@ arrify@^1.0.1: resolved "https://registry.npm.alibaba-inc.com/arrify/download/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= +arrify@^2.0.1: + version "2.0.1" + resolved "https://registry.npm.alibaba-inc.com/arrify/download/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" + integrity sha1-yWVekzHgq81YjSp8rX6ZVvZnAfo= + as-number@^1.0.0: version "1.0.0" resolved "https://registry.npm.alibaba-inc.com/as-number/download/as-number-1.0.0.tgz#acb27e34f8f9d8ab0da9e376f3b8959860f80a66" @@ -7023,6 +7650,11 @@ asynckit@^0.4.0: resolved "https://registry.npm.alibaba-inc.com/asynckit/download/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.npm.alibaba-inc.com/at-least-node/download/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha1-YCzUtG6EStTv/JKoARo8RuAjjcI= + atob-lite@^2.0.0: version "2.0.0" resolved "https://registry.npm.alibaba-inc.com/atob-lite/download/atob-lite-2.0.0.tgz#0fef5ad46f1bd7a8502c65727f0367d5ee43d696" @@ -7052,7 +7684,7 @@ autoprefixer@8.4.0: postcss "^6.0.22" postcss-value-parser "^3.2.3" -autoprefixer@^9.0.0, autoprefixer@^9.6.1, autoprefixer@^9.7.2, autoprefixer@^9.8.4: +autoprefixer@^9.0.0, autoprefixer@^9.6.1, autoprefixer@^9.8.4, autoprefixer@^9.8.6: version "9.8.6" resolved "https://registry.npm.alibaba-inc.com/autoprefixer/download/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f" integrity sha1-O3NZTKG/kmYyDFrPFYjXTep0IQ8= @@ -7171,41 +7803,6 @@ babel-extract-comments@^1.0.0: dependencies: babylon "^6.18.0" -babel-helper-evaluate-path@^0.5.0: - version "0.5.0" - resolved "https://registry.npm.alibaba-inc.com/babel-helper-evaluate-path/download/babel-helper-evaluate-path-0.5.0.tgz#a62fa9c4e64ff7ea5cea9353174ef023a900a67c" - integrity sha1-pi+pxOZP9+pc6pNTF07wI6kApnw= - -babel-helper-flip-expressions@^0.4.3: - version "0.4.3" - resolved "https://registry.npm.alibaba-inc.com/babel-helper-flip-expressions/download/babel-helper-flip-expressions-0.4.3.tgz#3696736a128ac18bc25254b5f40a22ceb3c1d3fd" - integrity sha1-NpZzahKKwYvCUlS19AoizrPB0/0= - -babel-helper-is-nodes-equiv@^0.0.1: - version "0.0.1" - resolved "https://registry.npm.alibaba-inc.com/babel-helper-is-nodes-equiv/download/babel-helper-is-nodes-equiv-0.0.1.tgz#34e9b300b1479ddd98ec77ea0bbe9342dfe39684" - integrity sha1-NOmzALFHnd2Y7HfqC76TQt/jloQ= - -babel-helper-is-void-0@^0.4.3: - version "0.4.3" - resolved "https://registry.npm.alibaba-inc.com/babel-helper-is-void-0/download/babel-helper-is-void-0-0.4.3.tgz#7d9c01b4561e7b95dbda0f6eee48f5b60e67313e" - integrity sha1-fZwBtFYee5Xb2g9u7kj1tg5nMT4= - -babel-helper-mark-eval-scopes@^0.4.3: - version "0.4.3" - resolved "https://registry.npm.alibaba-inc.com/babel-helper-mark-eval-scopes/download/babel-helper-mark-eval-scopes-0.4.3.tgz#d244a3bef9844872603ffb46e22ce8acdf551562" - integrity sha1-0kSjvvmESHJgP/tG4izorN9VFWI= - -babel-helper-remove-or-void@^0.4.3: - version "0.4.3" - resolved "https://registry.npm.alibaba-inc.com/babel-helper-remove-or-void/download/babel-helper-remove-or-void-0.4.3.tgz#a4f03b40077a0ffe88e45d07010dee241ff5ae60" - integrity sha1-pPA7QAd6D/6I5F0HAQ3uJB/1rmA= - -babel-helper-to-multiple-sequence-expressions@^0.5.0: - version "0.5.0" - resolved "https://registry.npm.alibaba-inc.com/babel-helper-to-multiple-sequence-expressions/download/babel-helper-to-multiple-sequence-expressions-0.5.0.tgz#a3f924e3561882d42fcf48907aa98f7979a4588d" - integrity sha1-o/kk41YYgtQvz0iQeqmPeXmkWI0= - babel-jest@^24.9.0: version "24.9.0" resolved "https://registry.npm.alibaba-inc.com/babel-jest/download/babel-jest-24.9.0.tgz#3fc327cb8467b89d14d7bc70e315104a783ccd54" @@ -7230,7 +7827,7 @@ babel-loader@8.1.0: pify "^4.0.1" schema-utils "^2.6.5" -babel-loader@^8.0.6, babel-loader@^8.1.0: +babel-loader@^8.0.6, babel-loader@^8.1.0, babel-loader@^8.2.2: version "8.2.2" resolved "https://registry.npm.alibaba-inc.com/babel-loader/download/babel-loader-8.2.2.tgz#9363ce84c10c9a40e6c753748e1441b60c8a0b81" integrity sha1-k2POhMEMmkDmx1N0jhRBtgyKC4E= @@ -7280,7 +7877,7 @@ babel-plugin-dynamic-import-node@^2.3.3: dependencies: object.assign "^4.1.0" -babel-plugin-emotion@^10.0.20, babel-plugin-emotion@^10.0.27: +babel-plugin-emotion@^10.0.27: version "10.2.2" resolved "https://registry.npm.alibaba-inc.com/babel-plugin-emotion/download/babel-plugin-emotion-10.2.2.tgz#a1fe3503cff80abfd0bdda14abd2e8e57a79d17d" integrity sha1-of41A8/4Cr/QvdoUq9Lo5Xp50X0= @@ -7346,7 +7943,7 @@ babel-plugin-lodash@^3.3.4: lodash "^4.17.10" require-package-name "^2.0.1" -babel-plugin-macros@2.8.0, babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.7.0, babel-plugin-macros@^2.8.0: +babel-plugin-macros@2.8.0, babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.8.0: version "2.8.0" resolved "https://registry.npm.alibaba-inc.com/babel-plugin-macros/download/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" integrity sha1-D5WKfMZVax5lNERl2ZERoeXhATg= @@ -7355,81 +7952,14 @@ babel-plugin-macros@2.8.0, babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.7. cosmiconfig "^6.0.0" resolve "^1.12.0" -babel-plugin-minify-builtins@^0.5.0: - version "0.5.0" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-minify-builtins/download/babel-plugin-minify-builtins-0.5.0.tgz#31eb82ed1a0d0efdc31312f93b6e4741ce82c36b" - integrity sha1-MeuC7RoNDv3DExL5O25HQc6Cw2s= - -babel-plugin-minify-constant-folding@^0.5.0: - version "0.5.0" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-minify-constant-folding/download/babel-plugin-minify-constant-folding-0.5.0.tgz#f84bc8dbf6a561e5e350ff95ae216b0ad5515b6e" - integrity sha1-+EvI2/alYeXjUP+VriFrCtVRW24= +babel-plugin-macros@^3.0.1: + version "3.0.1" + resolved "https://registry.npm.alibaba-inc.com/babel-plugin-macros/download/babel-plugin-macros-3.0.1.tgz#0d412d68f5b3d1b64358f24ab099bd148724e2a9" + integrity sha1-DUEtaPWz0bZDWPJKsJm9FIck4qk= dependencies: - babel-helper-evaluate-path "^0.5.0" - -babel-plugin-minify-dead-code-elimination@^0.5.1: - version "0.5.1" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-minify-dead-code-elimination/download/babel-plugin-minify-dead-code-elimination-0.5.1.tgz#1a0c68e44be30de4976ca69ffc535e08be13683f" - integrity sha1-Ggxo5EvjDeSXbKaf/FNeCL4TaD8= - dependencies: - babel-helper-evaluate-path "^0.5.0" - babel-helper-mark-eval-scopes "^0.4.3" - babel-helper-remove-or-void "^0.4.3" - lodash "^4.17.11" - -babel-plugin-minify-flip-comparisons@^0.4.3: - version "0.4.3" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-minify-flip-comparisons/download/babel-plugin-minify-flip-comparisons-0.4.3.tgz#00ca870cb8f13b45c038b3c1ebc0f227293c965a" - integrity sha1-AMqHDLjxO0XAOLPB68DyJyk8llo= - dependencies: - babel-helper-is-void-0 "^0.4.3" - -babel-plugin-minify-guarded-expressions@^0.4.4: - version "0.4.4" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-minify-guarded-expressions/download/babel-plugin-minify-guarded-expressions-0.4.4.tgz#818960f64cc08aee9d6c75bec6da974c4d621135" - integrity sha1-gYlg9kzAiu6dbHW+xtqXTE1iETU= - dependencies: - babel-helper-evaluate-path "^0.5.0" - babel-helper-flip-expressions "^0.4.3" - -babel-plugin-minify-infinity@^0.4.3: - version "0.4.3" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-minify-infinity/download/babel-plugin-minify-infinity-0.4.3.tgz#dfb876a1b08a06576384ef3f92e653ba607b39ca" - integrity sha1-37h2obCKBldjhO8/kuZTumB7Oco= - -babel-plugin-minify-mangle-names@^0.5.0: - version "0.5.0" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-minify-mangle-names/download/babel-plugin-minify-mangle-names-0.5.0.tgz#bcddb507c91d2c99e138bd6b17a19c3c271e3fd3" - integrity sha1-vN21B8kdLJnhOL1rF6GcPCceP9M= - dependencies: - babel-helper-mark-eval-scopes "^0.4.3" - -babel-plugin-minify-numeric-literals@^0.4.3: - version "0.4.3" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-minify-numeric-literals/download/babel-plugin-minify-numeric-literals-0.4.3.tgz#8e4fd561c79f7801286ff60e8c5fd9deee93c0bc" - integrity sha1-jk/VYcefeAEob/YOjF/Z3u6TwLw= - -babel-plugin-minify-replace@^0.5.0: - version "0.5.0" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-minify-replace/download/babel-plugin-minify-replace-0.5.0.tgz#d3e2c9946c9096c070efc96761ce288ec5c3f71c" - integrity sha1-0+LJlGyQlsBw78lnYc4ojsXD9xw= - -babel-plugin-minify-simplify@^0.5.1: - version "0.5.1" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-minify-simplify/download/babel-plugin-minify-simplify-0.5.1.tgz#f21613c8b95af3450a2ca71502fdbd91793c8d6a" - integrity sha1-8hYTyLla80UKLKcVAv29kXk8jWo= - dependencies: - babel-helper-evaluate-path "^0.5.0" - babel-helper-flip-expressions "^0.4.3" - babel-helper-is-nodes-equiv "^0.0.1" - babel-helper-to-multiple-sequence-expressions "^0.5.0" - -babel-plugin-minify-type-constructors@^0.4.3: - version "0.4.3" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-minify-type-constructors/download/babel-plugin-minify-type-constructors-0.4.3.tgz#1bc6f15b87f7ab1085d42b330b717657a2156500" - integrity sha1-G8bxW4f3qxCF1CszC3F2V6IVZQA= - dependencies: - babel-helper-is-void-0 "^0.4.3" + "@babel/runtime" "^7.12.5" + cosmiconfig "^7.0.0" + resolve "^1.19.0" babel-plugin-named-asset-import@^0.3.1, babel-plugin-named-asset-import@^0.3.6: version "0.3.7" @@ -7445,6 +7975,14 @@ babel-plugin-polyfill-corejs2@^0.1.4: "@babel/helper-define-polyfill-provider" "^0.1.2" semver "^6.1.1" +babel-plugin-polyfill-corejs3@^0.1.0: + version "0.1.7" + resolved "https://registry.npm.alibaba-inc.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.1.7.tgz#80449d9d6f2274912e05d9e182b54816904befd0" + integrity sha1-gESdnW8idJEuBdnhgrVIFpBL79A= + dependencies: + "@babel/helper-define-polyfill-provider" "^0.1.5" + core-js-compat "^3.8.1" + babel-plugin-polyfill-corejs3@^0.1.3: version "0.1.4" resolved "https://registry.npm.alibaba-inc.com/babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.1.4.tgz#2ae290200e953bade30907b7a3bebcb696e6c59d" @@ -7460,7 +7998,7 @@ babel-plugin-polyfill-regenerator@^0.1.2: dependencies: "@babel/helper-define-polyfill-provider" "^0.1.2" -babel-plugin-react-docgen@^4.0.0: +babel-plugin-react-docgen@^4.2.1: version "4.2.1" resolved "https://registry.npm.alibaba-inc.com/babel-plugin-react-docgen/download/babel-plugin-react-docgen-4.2.1.tgz#7cc8e2f94e8dc057a06e953162f0810e4e72257b" integrity sha1-fMji+U6NwFegbpUxYvCBDk5yJXs= @@ -7495,31 +8033,11 @@ babel-plugin-transform-import-styles@^0.0.11: postcss "6.0.22" require-resolve "0.0.2" -babel-plugin-transform-inline-consecutive-adds@^0.4.3: - version "0.4.3" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-inline-consecutive-adds/download/babel-plugin-transform-inline-consecutive-adds-0.4.3.tgz#323d47a3ea63a83a7ac3c811ae8e6941faf2b0d1" - integrity sha1-Mj1Ho+pjqDp6w8gRro5pQfrysNE= - babel-plugin-transform-inline-environment-variables@^0.4.3: version "0.4.3" resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-inline-environment-variables/download/babel-plugin-transform-inline-environment-variables-0.4.3.tgz#a3b09883353be8b5e2336e3ff1ef8a5d93f9c489" integrity sha1-o7CYgzU76LXiM24/8e+KXZP5xIk= -babel-plugin-transform-member-expression-literals@^6.9.4: - version "6.9.4" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-member-expression-literals/download/babel-plugin-transform-member-expression-literals-6.9.4.tgz#37039c9a0c3313a39495faac2ff3a6b5b9d038bf" - integrity sha1-NwOcmgwzE6OUlfqsL/OmtbnQOL8= - -babel-plugin-transform-merge-sibling-variables@^6.9.4: - version "6.9.4" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-merge-sibling-variables/download/babel-plugin-transform-merge-sibling-variables-6.9.4.tgz#85b422fc3377b449c9d1cde44087203532401dae" - integrity sha1-hbQi/DN3tEnJ0c3kQIcgNTJAHa4= - -babel-plugin-transform-minify-booleans@^6.9.4: - version "6.9.4" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-minify-booleans/download/babel-plugin-transform-minify-booleans-6.9.4.tgz#acbb3e56a3555dd23928e4b582d285162dd2b198" - integrity sha1-rLs+VqNVXdI5KOS1gtKFFi3SsZg= - babel-plugin-transform-node-env-inline@^0.4.3: version "0.4.3" resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-node-env-inline/download/babel-plugin-transform-node-env-inline-0.4.3.tgz#8c84cd74d58f17b0fdf76144a3589f610c3c2497" @@ -7541,50 +8059,11 @@ babel-plugin-transform-postcss@^0.3.0: debug "^2.6.0" postcss-load-config "^1.1.0" -babel-plugin-transform-property-literals@^6.9.4: - version "6.9.4" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-property-literals/download/babel-plugin-transform-property-literals-6.9.4.tgz#98c1d21e255736573f93ece54459f6ce24985d39" - integrity sha1-mMHSHiVXNlc/k+zlRFn2ziSYXTk= - dependencies: - esutils "^2.0.2" - babel-plugin-transform-react-remove-prop-types@0.4.24, babel-plugin-transform-react-remove-prop-types@^0.4.24: version "0.4.24" resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-react-remove-prop-types/download/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a" integrity sha1-8u2vm0xqX75cHWeL+1MQeMFVXzo= -babel-plugin-transform-regexp-constructors@^0.4.3: - version "0.4.3" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-regexp-constructors/download/babel-plugin-transform-regexp-constructors-0.4.3.tgz#58b7775b63afcf33328fae9a5f88fbd4fb0b4965" - integrity sha1-WLd3W2OvzzMyj66aX4j71PsLSWU= - -babel-plugin-transform-remove-console@^6.9.4: - version "6.9.4" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-remove-console/download/babel-plugin-transform-remove-console-6.9.4.tgz#b980360c067384e24b357a588d807d3c83527780" - integrity sha1-uYA2DAZzhOJLNXpYjYB9PINSd4A= - -babel-plugin-transform-remove-debugger@^6.9.4: - version "6.9.4" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-remove-debugger/download/babel-plugin-transform-remove-debugger-6.9.4.tgz#42b727631c97978e1eb2d199a7aec84a18339ef2" - integrity sha1-QrcnYxyXl44estGZp67IShgznvI= - -babel-plugin-transform-remove-undefined@^0.5.0: - version "0.5.0" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-remove-undefined/download/babel-plugin-transform-remove-undefined-0.5.0.tgz#80208b31225766c630c97fa2d288952056ea22dd" - integrity sha1-gCCLMSJXZsYwyX+i0oiVIFbqIt0= - dependencies: - babel-helper-evaluate-path "^0.5.0" - -babel-plugin-transform-simplify-comparison-operators@^6.9.4: - version "6.9.4" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-simplify-comparison-operators/download/babel-plugin-transform-simplify-comparison-operators-6.9.4.tgz#f62afe096cab0e1f68a2d753fdf283888471ceb9" - integrity sha1-9ir+CWyrDh9ootdT/fKDiIRxzrk= - -babel-plugin-transform-undefined-to-void@^6.9.4: - version "6.9.4" - resolved "https://registry.npm.alibaba-inc.com/babel-plugin-transform-undefined-to-void/download/babel-plugin-transform-undefined-to-void-6.9.4.tgz#be241ca81404030678b748717322b89d0c8fe280" - integrity sha1-viQcqBQEAwZ4t0hxcyK4nQyP4oA= - babel-polyfill@6.26.0: version "6.26.0" resolved "https://registry.npm.alibaba-inc.com/babel-polyfill/download/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" @@ -7643,35 +8122,6 @@ babel-preset-jest@^24.9.0: "@babel/plugin-syntax-object-rest-spread" "^7.0.0" babel-plugin-jest-hoist "^24.9.0" -"babel-preset-minify@^0.5.0 || 0.6.0-alpha.5": - version "0.5.1" - resolved "https://registry.npm.alibaba-inc.com/babel-preset-minify/download/babel-preset-minify-0.5.1.tgz#25f5d0bce36ec818be80338d0e594106e21eaa9f" - integrity sha1-JfXQvONuyBi+gDONDllBBuIeqp8= - dependencies: - babel-plugin-minify-builtins "^0.5.0" - babel-plugin-minify-constant-folding "^0.5.0" - babel-plugin-minify-dead-code-elimination "^0.5.1" - babel-plugin-minify-flip-comparisons "^0.4.3" - babel-plugin-minify-guarded-expressions "^0.4.4" - babel-plugin-minify-infinity "^0.4.3" - babel-plugin-minify-mangle-names "^0.5.0" - babel-plugin-minify-numeric-literals "^0.4.3" - babel-plugin-minify-replace "^0.5.0" - babel-plugin-minify-simplify "^0.5.1" - babel-plugin-minify-type-constructors "^0.4.3" - babel-plugin-transform-inline-consecutive-adds "^0.4.3" - babel-plugin-transform-member-expression-literals "^6.9.4" - babel-plugin-transform-merge-sibling-variables "^6.9.4" - babel-plugin-transform-minify-booleans "^6.9.4" - babel-plugin-transform-property-literals "^6.9.4" - babel-plugin-transform-regexp-constructors "^0.4.3" - babel-plugin-transform-remove-console "^6.9.4" - babel-plugin-transform-remove-debugger "^6.9.4" - babel-plugin-transform-remove-undefined "^0.5.0" - babel-plugin-transform-simplify-comparison-operators "^6.9.4" - babel-plugin-transform-undefined-to-void "^6.9.4" - lodash "^4.17.11" - babel-preset-react-app@^9.1.2: version "9.1.2" resolved "https://registry.npm.alibaba-inc.com/babel-preset-react-app/download/babel-preset-react-app-9.1.2.tgz#54775d976588a8a6d1a99201a702befecaf48030" @@ -7824,7 +8274,7 @@ better-assert@~1.0.0: dependencies: callsite "1.0.0" -better-opn@^2.0.0: +better-opn@^2.0.0, better-opn@^2.1.1: version "2.1.1" resolved "https://registry.npm.alibaba-inc.com/better-opn/download/better-opn-2.1.1.tgz#94a55b4695dc79288f31d7d0e5f658320759f7c6" integrity sha1-lKVbRpXceSiPMdfQ5fZYMgdZ98Y= @@ -7972,7 +8422,7 @@ boxen@^1.2.1: term-size "^1.2.0" widest-line "^2.0.0" -boxen@^4.1.0, boxen@^4.2.0: +boxen@^4.2.0: version "4.2.0" resolved "https://registry.npm.alibaba-inc.com/boxen/download/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64" integrity sha1-5BG2I1fW1tNlh8isPV2XTaoHDmQ= @@ -8119,14 +8569,15 @@ browserslist@4.10.0: node-releases "^1.1.52" pkg-up "^3.1.0" -browserslist@4.7.0: - version "4.7.0" - resolved "https://registry.npm.alibaba-inc.com/browserslist/download/browserslist-4.7.0.tgz#9ee89225ffc07db03409f2fee524dc8227458a17" - integrity sha1-nuiSJf/AfbA0CfL+5STcgidFihc= +browserslist@4.14.2: + version "4.14.2" + resolved "https://registry.npm.alibaba-inc.com/browserslist/download/browserslist-4.14.2.tgz#1b3cec458a1ba87588cc5e9be62f19b6d48813ce" + integrity sha1-GzzsRYobqHWIzF6b5i8ZttSIE84= dependencies: - caniuse-lite "^1.0.30000989" - electron-to-chromium "^1.3.247" - node-releases "^1.1.29" + caniuse-lite "^1.0.30001125" + electron-to-chromium "^1.3.564" + escalade "^3.0.2" + node-releases "^1.1.61" browserslist@^3.2.6: version "3.2.8" @@ -8346,6 +8797,29 @@ cacache@^13.0.1: ssri "^7.0.0" unique-filename "^1.1.1" +cacache@^15.0.5: + version "15.0.6" + resolved "https://registry.npm.alibaba-inc.com/cacache/download/cacache-15.0.6.tgz#65a8c580fda15b59150fb76bf3f3a8e45d583099" + integrity sha1-ZajFgP2hW1kVD7dr8/Oo5F1YMJk= + dependencies: + "@npmcli/move-file" "^1.0.1" + chownr "^2.0.0" + fs-minipass "^2.0.0" + glob "^7.1.4" + infer-owner "^1.0.4" + lru-cache "^6.0.0" + minipass "^3.1.1" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.2" + mkdirp "^1.0.3" + p-map "^4.0.0" + promise-inflight "^1.0.1" + rimraf "^3.0.2" + ssri "^8.0.1" + tar "^6.0.2" + unique-filename "^1.1.1" + cacache@^9.2.9: version "9.3.0" resolved "https://registry.npm.alibaba-inc.com/cacache/download/cacache-9.3.0.tgz#9cd58f2dd0b8c8cacf685b7067b416d6d3cf9db1" @@ -8552,11 +9026,6 @@ camelize@^1.0.0: resolved "https://registry.npm.alibaba-inc.com/camelize/download/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs= -can-use-dom@^0.1.0: - version "0.1.0" - resolved "https://registry.npm.alibaba-inc.com/can-use-dom/download/can-use-dom-0.1.0.tgz#22cc4a34a0abc43950f42c6411024a3f6366b45a" - integrity sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo= - caniuse-api@^3.0.0: version "3.0.0" resolved "https://registry.npm.alibaba-inc.com/caniuse-api/download/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" @@ -8567,11 +9036,16 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000832, caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001035, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001181: +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000832, caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001035, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001181: version "1.0.30001192" resolved "https://registry.npm.alibaba-inc.com/caniuse-lite/download/caniuse-lite-1.0.30001192.tgz#b848ebc0ab230cf313d194a4775a30155d50ae40" integrity sha1-uEjrwKsjDPMT0ZSkd1owFV1QrkA= +caniuse-lite@^1.0.30001125: + version "1.0.30001207" + resolved "https://registry.npm.alibaba-inc.com/caniuse-lite/download/caniuse-lite-1.0.30001207.tgz#364d47d35a3007e528f69adb6fecb07c2bb2cc50" + integrity sha1-Nk1H01owB+Uo9prbb+ywfCuyzFA= + capture-exit@^2.0.0: version "2.0.0" resolved "https://registry.npm.alibaba-inc.com/capture-exit/download/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" @@ -8597,7 +9071,7 @@ case-sensitive-paths-webpack-plugin@2.3.0: resolved "https://registry.npm.alibaba-inc.com/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.3.0.tgz#23ac613cc9a856e4f88ff8bb73bbb5e989825cf7" integrity sha1-I6xhPMmoVuT4j/i7c7u16YmCXPc= -case-sensitive-paths-webpack-plugin@^2.2.0: +case-sensitive-paths-webpack-plugin@^2.3.0: version "2.4.0" resolved "https://registry.npm.alibaba-inc.com/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.4.0.tgz#db64066c6422eed2e08cc14b986ca43796dbc6d4" integrity sha1-22QGbGQi7tLgjMFLmGykN5bbxtQ= @@ -8715,7 +9189,7 @@ cheerio@^1.0.0-rc.3: parse5 "^6.0.0" parse5-htmlparser2-tree-adapter "^6.0.0" -chokidar@^2.0.4, chokidar@^2.1.8: +chokidar@^2.1.8: version "2.1.8" resolved "https://registry.npm.alibaba-inc.com/chokidar/download/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" integrity sha1-gEs6e2qZNYw8XGHnHYco8EHP+Rc= @@ -8858,13 +9332,13 @@ cli-spinners@^2.5.0: resolved "https://registry.npm.alibaba-inc.com/cli-spinners/download/cli-spinners-2.5.0.tgz#12763e47251bf951cb75c201dfa58ff1bcb2d047" integrity sha1-EnY+RyUb+VHLdcIB36WP8byy0Ec= -cli-table3@0.5.1: - version "0.5.1" - resolved "https://registry.npm.alibaba-inc.com/cli-table3/download/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202" - integrity sha1-AlI3LZTfxA29jfBgBfSPMfZW8gI= +cli-table3@0.6.0: + version "0.6.0" + resolved "https://registry.npm.alibaba-inc.com/cli-table3/download/cli-table3-0.6.0.tgz#b7b1bc65ca8e7b5cef9124e13dc2b21e2ce4faee" + integrity sha1-t7G8ZcqOe1zvkSThPcKyHizk+u4= dependencies: object-assign "^4.1.0" - string-width "^2.1.1" + string-width "^4.2.0" optionalDependencies: colors "^1.1.2" @@ -9148,6 +9622,11 @@ commander@^4.0.1, commander@^4.1.1: resolved "https://registry.npm.alibaba-inc.com/commander/download/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" integrity sha1-n9YCvZNilOnp70aj9NaWQESxgGg= +commander@^6.2.1: + version "6.2.1" + resolved "https://registry.npm.alibaba-inc.com/commander/download/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" + integrity sha1-B5LraC37wyWZm7K4T93duhEKxzw= + comment-parser@^0.5.4: version "0.5.5" resolved "https://registry.npm.alibaba-inc.com/comment-parser/download/comment-parser-0.5.5.tgz#c2584cae7c2f0afc773e96b2ee98f8c10cbd693d" @@ -9246,7 +9725,7 @@ compression@^1.7.4: safe-buffer "5.1.2" vary "~1.1.2" -compute-scroll-into-view@^1.0.16: +compute-scroll-into-view@^1.0.16, compute-scroll-into-view@^1.0.17: version "1.0.17" resolved "https://registry.npm.alibaba-inc.com/compute-scroll-into-view/download/compute-scroll-into-view-1.0.17.tgz#6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab" integrity sha1-aojxis2dQunPS6pr7H4FImB6t6s= @@ -9561,7 +10040,7 @@ copy-descriptor@^0.1.0: resolved "https://registry.npm.alibaba-inc.com/copy-descriptor/download/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= -copy-to-clipboard@^3.0.8, copy-to-clipboard@^3.2.0: +copy-to-clipboard@^3.2.0, copy-to-clipboard@^3.3.1: version "3.3.1" resolved "https://registry.npm.alibaba-inc.com/copy-to-clipboard/download/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae" integrity sha1-EVqhqZmP+rYZb5MHatbaO5E2Yq4= @@ -9607,12 +10086,17 @@ core-js-compat@^3.6.2, core-js-compat@^3.6.5, core-js-compat@^3.8.1, core-js-com browserslist "^4.16.3" semver "7.0.0" -core-js-pure@^3.0.0, core-js-pure@^3.0.1: +core-js-pure@^3.0.0: version "3.9.0" resolved "https://registry.npm.alibaba-inc.com/core-js-pure/download/core-js-pure-3.9.0.tgz#326cc74e1fef8b7443a6a793ddb0adfcd81f9efb" integrity sha1-MmzHTh/vi3RDpqeT3bCt/Ngfnvs= -core-js@3, core-js@^3.0.1, core-js@^3.0.4, core-js@^3.5.0, core-js@^3.6.5: +core-js-pure@^3.8.2: + version "3.9.1" + resolved "https://registry.npm.alibaba-inc.com/core-js-pure/download/core-js-pure-3.9.1.tgz#677b322267172bd490e4464696f790cbc355bec5" + integrity sha1-Z3syImcXK9SQ5EZGlveQy8NVvsU= + +core-js@3, core-js@^3.0.4, core-js@^3.5.0, core-js@^3.6.5: version "3.9.0" resolved "https://registry.npm.alibaba-inc.com/core-js/download/core-js-3.9.0.tgz#790b1bb11553a2272b36e2625c7179db345492f8" integrity sha1-eQsbsRVToicrNuJiXHF52zRUkvg= @@ -9627,19 +10111,16 @@ core-js@^2.4.0, core-js@^2.5.0, core-js@^2.5.7: resolved "https://registry.npm.alibaba-inc.com/core-js/download/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" integrity sha1-2TM9+nsGXjR8xWgiGdb2kIWcwuw= +core-js@^3.8.2: + version "3.10.0" + resolved "https://registry.npm.alibaba-inc.com/core-js/download/core-js-3.10.0.tgz#9a020547c8b6879f929306949e31496bbe2ae9b3" + integrity sha1-mgIFR8i2h5+SkwaUnjFJa74q6bM= + core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.npm.alibaba-inc.com/core-util-is/download/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= -corejs-upgrade-webpack-plugin@^2.2.0: - version "2.2.0" - resolved "https://registry.npm.alibaba-inc.com/corejs-upgrade-webpack-plugin/download/corejs-upgrade-webpack-plugin-2.2.0.tgz#503293bf1fdcb104918eb40d0294e4776ad6923a" - integrity sha1-UDKTvx/csQSRjrQNApTkd2rWkjo= - dependencies: - resolve-from "^5.0.0" - webpack "^4.38.0" - cors@^2.8.5: version "2.8.5" resolved "https://registry.npm.alibaba-inc.com/cors/download/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" @@ -9711,6 +10192,31 @@ coveralls@^3.0.7: minimist "^1.2.5" request "^2.88.2" +cp-file@^7.0.0: + version "7.0.0" + resolved "https://registry.npm.alibaba-inc.com/cp-file/download/cp-file-7.0.0.tgz#b9454cfd07fe3b974ab9ea0e5f29655791a9b8cd" + integrity sha1-uUVM/Qf+O5dKueoOXyllV5GpuM0= + dependencies: + graceful-fs "^4.1.2" + make-dir "^3.0.0" + nested-error-stacks "^2.0.0" + p-event "^4.1.0" + +cpy@^8.1.1: + version "8.1.2" + resolved "https://registry.npm.alibaba-inc.com/cpy/download/cpy-8.1.2.tgz#e339ea54797ad23f8e3919a5cffd37bfc3f25935" + integrity sha1-4znqVHl60j+OORmlz/03v8PyWTU= + dependencies: + arrify "^2.0.1" + cp-file "^7.0.0" + globby "^9.2.0" + has-glob "^1.0.0" + junk "^3.1.0" + nested-error-stacks "^2.1.0" + p-all "^2.1.0" + p-filter "^2.1.0" + p-map "^3.0.0" + create-ecdh@^4.0.0: version "4.0.4" resolved "https://registry.npm.alibaba-inc.com/create-ecdh/download/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" @@ -9798,17 +10304,6 @@ cross-spawn@5.1.0, cross-spawn@^5.0.1: shebang-command "^1.2.0" which "^1.2.9" -cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5: - version "6.0.5" - resolved "https://registry.npm.alibaba-inc.com/cross-spawn/download/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q= - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - cross-spawn@7.0.1: version "7.0.1" resolved "https://registry.npm.alibaba-inc.com/cross-spawn/download/cross-spawn-7.0.1.tgz#0ab56286e0f7c24e153d04cc2aa027e43a9a5d14" @@ -9818,6 +10313,15 @@ cross-spawn@7.0.1: shebang-command "^2.0.0" which "^2.0.1" +cross-spawn@7.0.3, cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npm.alibaba-inc.com/cross-spawn/download/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha1-9zqFudXUHQRVUcF34ogtSshXKKY= + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + cross-spawn@^3.0.0: version "3.0.1" resolved "https://registry.npm.alibaba-inc.com/cross-spawn/download/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" @@ -9826,14 +10330,16 @@ cross-spawn@^3.0.0: lru-cache "^4.0.1" which "^1.2.9" -cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.npm.alibaba-inc.com/cross-spawn/download/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha1-9zqFudXUHQRVUcF34ogtSshXKKY= +cross-spawn@^6.0.0, cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.npm.alibaba-inc.com/cross-spawn/download/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q= dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" crypto-browserify@^3.11.0: version "3.12.0" @@ -9939,7 +10445,7 @@ css-loader@^1.0.1: postcss-value-parser "^3.3.0" source-list-map "^2.0.0" -css-loader@^3.0.0, css-loader@^3.2.0: +css-loader@^3.2.0, css-loader@^3.6.0: version "3.6.0" resolved "https://registry.npm.alibaba-inc.com/css-loader/download/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645" integrity sha1-Lkssfm4tJ/jI8o9hv/zS5ske9kU= @@ -10574,6 +11080,11 @@ deep-object-diff@^1.1.0: resolved "https://registry.npm.alibaba-inc.com/deep-object-diff/download/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a" integrity sha1-1vq/R2wu0XUfyU1cppPS7YwYvFo= +deepmerge@^4.2.2: + version "4.2.2" + resolved "https://registry.npm.alibaba-inc.com/deepmerge/download/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" + integrity sha1-RNLqNnm49NT/ujPwPYZfwee/SVU= + default-gateway@^4.2.0: version "4.2.0" resolved "https://registry.npm.alibaba-inc.com/default-gateway/download/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b" @@ -10756,11 +11267,6 @@ detect-newline@^2.1.0: resolved "https://registry.npm.alibaba-inc.com/detect-newline/download/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= -detect-node-es@^1.0.0: - version "1.0.0" - resolved "https://registry.npm.alibaba-inc.com/detect-node-es/download/detect-node-es-1.0.0.tgz#c0318b9e539a5256ca780dd9575c9345af05b8ed" - integrity sha1-wDGLnlOaUlbKeA3ZV1yTRa8FuO0= - detect-node@^2.0.4: version "2.0.4" resolved "https://registry.npm.alibaba-inc.com/detect-node/download/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" @@ -11079,7 +11585,7 @@ dotenv-expand@5.1.0, dotenv-expand@^5.1.0: resolved "https://registry.npm.alibaba-inc.com/dotenv-expand/download/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" integrity sha1-P7rwIL/XlIhAcuomsel5HUWmKfA= -dotenv-webpack@^1.7.0: +dotenv-webpack@^1.8.0: version "1.8.0" resolved "https://registry.npm.alibaba-inc.com/dotenv-webpack/download/dotenv-webpack-1.8.0.tgz#7ca79cef2497dd4079d43e81e0796bc9d0f68a5e" integrity sha1-fKec7ySX3UB51D6B4HlrydD2il4= @@ -11103,6 +11609,16 @@ dotignore@~0.1.2: dependencies: minimatch "^3.0.4" +downshift@^6.0.15: + version "6.1.2" + resolved "https://registry.npm.alibaba-inc.com/downshift/download/downshift-6.1.2.tgz#99d9a03d4da4bf369df766effc3b70f7e789950e" + integrity sha1-mdmgPU2kvzad92bv/Dtw9+eJlQ4= + dependencies: + "@babel/runtime" "^7.13.10" + compute-scroll-into-view "^1.0.17" + prop-types "^15.7.2" + react-is "^17.0.2" + duplexer3@^0.1.4: version "0.1.4" resolved "https://registry.npm.alibaba-inc.com/duplexer3/download/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" @@ -11149,11 +11665,6 @@ ee-first@1.1.1: resolved "https://registry.npm.alibaba-inc.com/ee-first/download/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= -ejs@^2.7.4: - version "2.7.4" - resolved "https://registry.npm.alibaba-inc.com/ejs/download/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" - integrity sha1-SGYSh1c9zFPjZsehrlLDoSDuybo= - electron-download@^4.1.0: version "4.1.1" resolved "https://registry.npm.alibaba-inc.com/electron-download/download/electron-download-4.1.1.tgz#02e69556705cc456e520f9e035556ed5a015ebe8" @@ -11169,11 +11680,16 @@ electron-download@^4.1.0: semver "^5.4.1" sumchecker "^2.0.2" -electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.378, electron-to-chromium@^1.3.47, electron-to-chromium@^1.3.649: +electron-to-chromium@^1.3.378, electron-to-chromium@^1.3.47, electron-to-chromium@^1.3.649: version "1.3.672" resolved "https://registry.npm.alibaba-inc.com/electron-to-chromium/download/electron-to-chromium-1.3.672.tgz#3a6e335016dab4bc584d5292adc4f98f54541f6a" integrity sha1-Om4zUBbatLxYTVKSrcT5j1RUH2o= +electron-to-chromium@^1.3.564: + version "1.3.708" + resolved "https://registry.npm.alibaba-inc.com/electron-to-chromium/download/electron-to-chromium-1.3.708.tgz#127970d2fc665ab356be59e668f2914856419176" + integrity sha1-Enlw0vxmWrNWvlnmaPKRSFZBkXY= + electron@^6.0.7: version "6.1.12" resolved "https://registry.npm.alibaba-inc.com/electron/download/electron-6.1.12.tgz#a7aee6dfa75b57f32b3645ef8e14dcef6d5f31a9" @@ -11188,10 +11704,10 @@ elegant-spinner@^1.0.1: resolved "https://registry.npm.alibaba-inc.com/elegant-spinner/download/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4= -element-resize-detector@^1.2.1: - version "1.2.1" - resolved "https://registry.npm.alibaba-inc.com/element-resize-detector/download/element-resize-detector-1.2.1.tgz#b0305194447a4863155e58f13323a0aef30851d1" - integrity sha1-sDBRlER6SGMVXljxMyOgrvMIUdE= +element-resize-detector@^1.2.2: + version "1.2.2" + resolved "https://registry.npm.alibaba-inc.com/element-resize-detector/download/element-resize-detector-1.2.2.tgz#bf7c3ff915957e4e62e86241ed2f9c86b078892b" + integrity sha1-v3w/+RWVfk5i6GJB7S+chrB4iSs= dependencies: batch-processor "1.0.0" @@ -11248,7 +11764,7 @@ emojis-list@^3.0.0: resolved "https://registry.npm.alibaba-inc.com/emojis-list/download/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" integrity sha1-VXBmIEatKeLpFucariYKvf9Pang= -emotion-theming@^10.0.19: +emotion-theming@^10.0.27: version "10.0.27" resolved "https://registry.npm.alibaba-inc.com/emotion-theming/download/emotion-theming-10.0.27.tgz#1887baaec15199862c89b1b984b79806f2b9ab10" integrity sha1-GIe6rsFRmYYsibG5hLeYBvK5qxA= @@ -11276,6 +11792,15 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: dependencies: once "^1.4.0" +endent@^2.0.1: + version "2.0.1" + resolved "https://registry.npm.alibaba-inc.com/endent/download/endent-2.0.1.tgz#fb18383a3f37ae3213a5d9f6c4a880d1061eb4c5" + integrity sha1-+xg4Oj83rjITpdn2xKiA0QYetMU= + dependencies: + dedent "^0.7.0" + fast-json-parse "^1.0.3" + objectorarray "^1.0.4" + engine.io-client@~3.4.0: version "3.4.4" resolved "https://registry.npm.alibaba-inc.com/engine.io-client/download/engine.io-client-3.4.4.tgz#77d8003f502b0782dd792b073a4d2cf7ca5ab967" @@ -11600,7 +12125,7 @@ es6-weak-map@^2.0.3: es6-iterator "^2.0.3" es6-symbol "^3.1.1" -escalade@^3.1.1: +escalade@^3.0.2, escalade@^3.1.1: version "3.1.1" resolved "https://registry.npm.alibaba-inc.com/escalade/download/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA= @@ -12243,7 +12768,7 @@ express-graphql@^0.9.0: http-errors "^1.7.3" raw-body "^2.4.1" -express@^4.17.0, express@^4.17.1: +express@^4.17.1: version "4.17.1" resolved "https://registry.npm.alibaba-inc.com/express/download/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" integrity sha1-RJH8OGBc9R+GKdOcK10Cb5ikwTQ= @@ -12377,11 +12902,6 @@ fast-copy@^2.1.0: resolved "https://registry.npm.alibaba-inc.com/fast-copy/download/fast-copy-2.1.1.tgz#f5cbcf2df64215e59b8e43f0b2caabc19848083a" integrity sha1-9cvPLfZCFeWbjkPwssqrwZhICDo= -fast-deep-equal@^2.0.1: - version "2.0.1" - resolved "https://registry.npm.alibaba-inc.com/fast-deep-equal/download/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" - integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= - fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.npm.alibaba-inc.com/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -12416,6 +12936,11 @@ fast-glob@^3.0.3, fast-glob@^3.1.1: micromatch "^4.0.2" picomatch "^2.2.1" +fast-json-parse@^1.0.3: + version "1.0.3" + resolved "https://registry.npm.alibaba-inc.com/fast-json-parse/download/fast-json-parse-1.0.3.tgz#43e5c61ee4efa9265633046b770fb682a7577c4d" + integrity sha1-Q+XGHuTvqSZWMwRrdw+2gqdXfE0= + fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.npm.alibaba-inc.com/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" @@ -12453,7 +12978,7 @@ fastq@^1.10.0, fastq@^1.6.0: dependencies: reusify "^1.0.4" -fault@^1.0.2: +fault@^1.0.0: version "1.0.4" resolved "https://registry.npm.alibaba-inc.com/fault/download/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13" integrity sha1-6vz8Cm0hT8lGAeFw3ymVSk+ELxM= @@ -12552,7 +13077,7 @@ file-entry-cache@^5.0.1: dependencies: flat-cache "^2.0.1" -file-loader@4.3.0, file-loader@^4.2.0: +file-loader@4.3.0: version "4.3.0" resolved "https://registry.npm.alibaba-inc.com/file-loader/download/file-loader-4.3.0.tgz#780f040f729b3d18019f20605f723e844b8a58af" integrity sha1-eA8ED3KbPRgBnyBgX3I+hEuKWK8= @@ -12568,6 +13093,14 @@ file-loader@^1.1.11: loader-utils "^1.0.2" schema-utils "^0.4.5" +file-loader@^6.2.0: + version "6.2.0" + resolved "https://registry.npm.alibaba-inc.com/file-loader/download/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" + integrity sha1-uu98+OGEDfMl5DkLRISHlIDuvk0= + dependencies: + loader-utils "^2.0.0" + schema-utils "^3.0.0" + file-name@^0.1.0: version "0.1.0" resolved "https://registry.npm.alibaba-inc.com/file-name/download/file-name-0.1.0.tgz#12b122f120f9c34dbc176c1ab81a548aced6def7" @@ -12631,16 +13164,21 @@ filesize@3.5.11: resolved "https://registry.npm.alibaba-inc.com/filesize/download/filesize-3.5.11.tgz#1919326749433bb3cf77368bd158caabcc19e9ee" integrity sha1-GRkyZ0lDO7PPdzaL0VjKq8wZ6e4= -filesize@3.6.1, filesize@^3.6.1: - version "3.6.1" - resolved "https://registry.npm.alibaba-inc.com/filesize/download/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" - integrity sha1-CQuz7gG2+AGoqL6Z0xcQs0Irsxc= - filesize@6.0.1: version "6.0.1" resolved "https://registry.npm.alibaba-inc.com/filesize/download/filesize-6.0.1.tgz#f850b509909c7c86f7e450ea19006c31c2ed3d2f" integrity sha1-+FC1CZCcfIb35FDqGQBsMcLtPS8= +filesize@6.1.0: + version "6.1.0" + resolved "https://registry.npm.alibaba-inc.com/filesize/download/filesize-6.1.0.tgz#e81bdaa780e2451d714d71c0d7a4f3238d37ad00" + integrity sha1-6Bvap4DiRR1xTXHA16TzI403rQA= + +filesize@^3.6.1: + version "3.6.1" + resolved "https://registry.npm.alibaba-inc.com/filesize/download/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" + integrity sha1-CQuz7gG2+AGoqL6Z0xcQs0Irsxc= + fill-range@^4.0.0: version "4.0.0" resolved "https://registry.npm.alibaba-inc.com/fill-range/download/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" @@ -12685,7 +13223,7 @@ find-cache-dir@^0.1.1: mkdirp "^0.5.1" pkg-dir "^1.0.0" -find-cache-dir@^2.1.0: +find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: version "2.1.0" resolved "https://registry.npm.alibaba-inc.com/find-cache-dir/download/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" integrity sha1-jQ+UzRP+Q8bHwmGg2GEVypGMBfc= @@ -12694,7 +13232,7 @@ find-cache-dir@^2.1.0: make-dir "^2.0.0" pkg-dir "^3.0.0" -find-cache-dir@^3.0.0, find-cache-dir@^3.3.1: +find-cache-dir@^3.3.1: version "3.3.1" resolved "https://registry.npm.alibaba-inc.com/find-cache-dir/download/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" integrity sha1-ibM/rUpGcNqpT4Vff74x1thP6IA= @@ -12731,13 +13269,6 @@ find-root@1.1.0, find-root@^1.1.0: resolved "https://registry.npm.alibaba-inc.com/find-root/download/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" integrity sha1-q8/Iunb3CMQql7PWhbfpRQv7nOQ= -find-up@3.0.0, find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.npm.alibaba-inc.com/find-up/download/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha1-SRafHXmTQwZG2mHsxa41XCHJe3M= - dependencies: - locate-path "^3.0.0" - find-up@4.1.0, find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" resolved "https://registry.npm.alibaba-inc.com/find-up/download/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" @@ -12746,7 +13277,7 @@ find-up@4.1.0, find-up@^4.0.0, find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" -find-up@5.0.0: +find-up@5.0.0, find-up@^5.0.0: version "5.0.0" resolved "https://registry.npm.alibaba-inc.com/find-up/download/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" integrity sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw= @@ -12769,6 +13300,13 @@ find-up@^2.0.0, find-up@^2.1.0: dependencies: locate-path "^2.0.0" +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.npm.alibaba-inc.com/find-up/download/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha1-SRafHXmTQwZG2mHsxa41XCHJe3M= + dependencies: + locate-path "^3.0.0" + findup-sync@^3.0.0: version "3.0.0" resolved "https://registry.npm.alibaba-inc.com/findup-sync/download/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" @@ -12827,13 +13365,6 @@ fn-name@~1.0.1: resolved "https://registry.npm.alibaba-inc.com/fn-name/download/fn-name-1.0.1.tgz#de8d8a15388b33cbf2145782171f73770c6030f0" integrity sha1-3o2KFTiLM8vyFFeCFx9zdwxgMPA= -focus-lock@^0.8.1: - version "0.8.1" - resolved "https://registry.npm.alibaba-inc.com/focus-lock/download/focus-lock-0.8.1.tgz#bb36968abf77a2063fa173cb6c47b12ac8599d33" - integrity sha1-uzaWir93ogY/oXPLbEexKshZnTM= - dependencies: - tslib "^1.9.3" - folktale@^2.0.1: version "2.3.2" resolved "https://registry.npm.alibaba-inc.com/folktale/download/folktale-2.3.2.tgz#38231b039e5ef36989920cbf805bf6b227bf4fd4" @@ -12885,20 +13416,6 @@ forever-agent@~0.6.1: resolved "https://registry.npm.alibaba-inc.com/forever-agent/download/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= -fork-ts-checker-webpack-plugin@1.5.0: - version "1.5.0" - resolved "https://registry.npm.alibaba-inc.com/fork-ts-checker-webpack-plugin/download/fork-ts-checker-webpack-plugin-1.5.0.tgz#ce1d77190b44d81a761b10b6284a373795e41f0c" - integrity sha1-zh13GQtE2Bp2GxC2KEo3N5XkHww= - dependencies: - babel-code-frame "^6.22.0" - chalk "^2.4.1" - chokidar "^2.0.4" - micromatch "^3.1.10" - minimatch "^3.0.4" - semver "^5.6.0" - tapable "^1.0.0" - worker-rpc "^0.1.0" - fork-ts-checker-webpack-plugin@3.1.1: version "3.1.1" resolved "https://registry.npm.alibaba-inc.com/fork-ts-checker-webpack-plugin/download/fork-ts-checker-webpack-plugin-3.1.1.tgz#a1642c0d3e65f50c2cc1742e9c0a80f441f86b19" @@ -12913,6 +13430,37 @@ fork-ts-checker-webpack-plugin@3.1.1: tapable "^1.0.0" worker-rpc "^0.1.0" +fork-ts-checker-webpack-plugin@4.1.6, fork-ts-checker-webpack-plugin@^4.1.6: + version "4.1.6" + resolved "https://registry.npm.alibaba-inc.com/fork-ts-checker-webpack-plugin/download/fork-ts-checker-webpack-plugin-4.1.6.tgz#5055c703febcf37fa06405d400c122b905167fc5" + integrity sha1-UFXHA/6883+gZAXUAMEiuQUWf8U= + dependencies: + "@babel/code-frame" "^7.5.5" + chalk "^2.4.1" + micromatch "^3.1.10" + minimatch "^3.0.4" + semver "^5.6.0" + tapable "^1.0.0" + worker-rpc "^0.1.0" + +fork-ts-checker-webpack-plugin@^6.0.4: + version "6.2.0" + resolved "https://registry.npm.alibaba-inc.com/fork-ts-checker-webpack-plugin/download/fork-ts-checker-webpack-plugin-6.2.0.tgz#d13af02e24d1b17f769af6bdf41c1e849e1615cc" + integrity sha1-0TrwLiTRsX92mva99BwehJ4WFcw= + dependencies: + "@babel/code-frame" "^7.8.3" + "@types/json-schema" "^7.0.5" + chalk "^4.1.0" + chokidar "^3.4.2" + cosmiconfig "^6.0.0" + deepmerge "^4.2.2" + fs-extra "^9.0.0" + memfs "^3.1.2" + minimatch "^3.0.4" + schema-utils "2.7.0" + semver "^7.3.2" + tapable "^1.0.0" + form-data@4.0.0: version "4.0.0" resolved "https://registry.npm.alibaba-inc.com/form-data/download/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" @@ -12990,7 +13538,7 @@ fs-exists-sync@^0.1.0: resolved "https://registry.npm.alibaba-inc.com/fs-exists-sync/download/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" integrity sha1-mC1ok6+RjnLQjeyehnP/K1qNat0= -fs-extra@8.1.0, fs-extra@^8.0.1, fs-extra@^8.1.0: +fs-extra@8.1.0, fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.npm.alibaba-inc.com/fs-extra/download/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" integrity sha1-SdQ8RaiM2Wd2aMt74bRu/bjS4cA= @@ -13037,6 +13585,16 @@ fs-extra@^7.0.0, fs-extra@~7.0.1: jsonfile "^4.0.0" universalify "^0.1.0" +fs-extra@^9.0.0, fs-extra@^9.0.1: + version "9.1.0" + resolved "https://registry.npm.alibaba-inc.com/fs-extra/download/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha1-WVRGDHZKjaIJS6NVS/g55rmnyG0= + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + fs-minipass@^1.2.5: version "1.2.7" resolved "https://registry.npm.alibaba-inc.com/fs-minipass/download/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" @@ -13051,6 +13609,11 @@ fs-minipass@^2.0.0: dependencies: minipass "^3.0.0" +fs-monkey@1.0.3: + version "1.0.3" + resolved "https://registry.npm.alibaba-inc.com/fs-monkey/download/fs-monkey-1.0.3.tgz#ae3ac92d53bb328efe0e9a1d9541f6ad8d48e2d3" + integrity sha1-rjrJLVO7Mo7+DpodlUH2rY1I4tM= + fs-readdir-recursive@^1.1.0: version "1.1.0" resolved "https://registry.npm.alibaba-inc.com/fs-readdir-recursive/download/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" @@ -13124,7 +13687,7 @@ functions-have-names@^1.2.2: resolved "https://registry.npm.alibaba-inc.com/functions-have-names/download/functions-have-names-1.2.2.tgz#98d93991c39da9361f8e50b337c4f6e41f120e21" integrity sha1-mNk5kcOdqTYfjlCzN8T25B8SDiE= -fuse.js@^3.4.6: +fuse.js@^3.6.1: version "3.6.1" resolved "https://registry.npm.alibaba-inc.com/fuse.js/download/fuse.js-3.6.1.tgz#7de85fdd6e1b3377c23ce010892656385fd9b10c" integrity sha1-fehf3W4bM3fCPOAQiSZWOF/ZsQw= @@ -14131,6 +14694,13 @@ glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0: dependencies: is-glob "^4.0.1" +glob-promise@^3.4.0: + version "3.4.0" + resolved "https://registry.npm.alibaba-inc.com/glob-promise/download/glob-promise-3.4.0.tgz#b6b8f084504216f702dc2ce8c9bc9ac8866fdb20" + integrity sha1-trjwhFBCFvcC3CzoybyayIZv2yA= + dependencies: + "@types/glob" "*" + glob-to-regexp@^0.3.0: version "0.3.0" resolved "https://registry.npm.alibaba-inc.com/glob-to-regexp/download/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" @@ -14260,6 +14830,18 @@ globalthis@^1.0.0: dependencies: define-properties "^1.1.3" +globby@11.0.1: + version "11.0.1" + resolved "https://registry.npm.alibaba-inc.com/globby/download/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357" + integrity sha1-mivxB6Bo8//qvEmtcCx57ejP01c= + 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@11.0.2, globby@^11.0.2: version "11.0.2" resolved "https://registry.npm.alibaba-inc.com/globby/download/globby-11.0.2.tgz#1af538b766a3b540ebfb58a32b2e2d5897321d83" @@ -14706,6 +15288,13 @@ has-flag@^4.0.0: resolved "https://registry.npm.alibaba-inc.com/has-flag/download/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s= +has-glob@^1.0.0: + version "1.0.0" + resolved "https://registry.npm.alibaba-inc.com/has-glob/download/has-glob-1.0.0.tgz#9aaa9eedbffb1ba3990a7b0010fb678ee0081207" + integrity sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc= + dependencies: + is-glob "^3.0.0" + has-symbol-support-x@^1.4.1: version "1.4.2" resolved "https://registry.npm.alibaba-inc.com/has-symbol-support-x/download/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455" @@ -14898,11 +15487,12 @@ hastscript@^4.0.0: property-information "^4.0.0" space-separated-tokens "^1.0.0" -hastscript@^5.0.0: - version "5.1.2" - resolved "https://registry.npm.alibaba-inc.com/hastscript/download/hastscript-5.1.2.tgz#bde2c2e56d04c62dd24e8c5df288d050a355fb8a" - integrity sha1-veLC5W0Exi3SToxd8ojQUKNV+4o= +hastscript@^6.0.0: + version "6.0.0" + resolved "https://registry.npm.alibaba-inc.com/hastscript/download/hastscript-6.0.0.tgz#e8768d7eac56c3fdeac8a92830d58e811e5bf640" + integrity sha1-6HaNfqxWw/3qyKkoMNWOgR5b9kA= dependencies: + "@types/hast" "^2.0.0" comma-separated-tokens "^1.0.0" hast-util-parse-selector "^2.0.0" property-information "^5.0.0" @@ -14926,16 +15516,16 @@ hicat@^0.8.0: highlight.js "^10.4.1" minimist "^1.2.5" +highlight.js@^10.1.1, highlight.js@~10.7.0: + version "10.7.2" + resolved "https://registry.npm.alibaba-inc.com/highlight.js/download/highlight.js-10.7.2.tgz#89319b861edc66c48854ed1e6da21ea89f847360" + integrity sha1-iTGbhh7cZsSIVO0ebaIeqJ+Ec2A= + highlight.js@^10.4.1: version "10.6.0" resolved "https://registry.npm.alibaba-inc.com/highlight.js/download/highlight.js-10.6.0.tgz#0073aa71d566906965ba6e1b7be7b2682f5e18b6" integrity sha1-AHOqcdVmkGllum4be+eyaC9eGLY= -highlight.js@~9.13.0: - version "9.13.1" - resolved "https://registry.npm.alibaba-inc.com/highlight.js/download/highlight.js-9.13.1.tgz#054586d53a6863311168488a0f58d6c505ce641e" - integrity sha1-BUWG1TpoYzERaEiKD1jWxQXOZB4= - hmac-drbg@^1.0.1: version "1.0.1" resolved "https://registry.npm.alibaba-inc.com/hmac-drbg/download/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" @@ -15081,7 +15671,7 @@ html-webpack-plugin@4.0.0-beta.11: tapable "^1.1.3" util.promisify "1.0.0" -html-webpack-plugin@^4.0.0-beta.2, html-webpack-plugin@^4.3.0: +html-webpack-plugin@^4.0.0, html-webpack-plugin@^4.3.0: version "4.5.2" resolved "https://registry.npm.alibaba-inc.com/html-webpack-plugin/download/html-webpack-plugin-4.5.2.tgz#76fc83fa1a0f12dd5f7da0404a54e2699666bc12" integrity sha1-dvyD+hoPEt1ffaBASlTiaZZmvBI= @@ -15421,6 +16011,11 @@ immer@1.10.0: resolved "https://registry.npm.alibaba-inc.com/immer/download/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d" integrity sha1-utZ2BbqcgQJ12R4cKkfUWC6YKG0= +immer@8.0.1: + version "8.0.1" + resolved "https://registry.npm.alibaba-inc.com/immer/download/immer-8.0.1.tgz#9c73db683e2b3975c424fb0572af5889877ae656" + integrity sha1-nHPbaD4rOXXEJPsFcq9YiYd65lY= + import-cwd@3.0.0, import-cwd@^3.0.0: version "3.0.0" resolved "https://registry.npm.alibaba-inc.com/import-cwd/download/import-cwd-3.0.0.tgz#20845547718015126ea9b3676b7592fb8bd4cf92" @@ -15609,25 +16204,6 @@ inquirer@3.3.0: strip-ansi "^4.0.0" through "^2.3.6" -inquirer@6.5.0: - version "6.5.0" - resolved "https://registry.npm.alibaba-inc.com/inquirer/download/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42" - integrity sha1-IwMxfvyaTqfsLi32+GVptzSsz0I= - dependencies: - ansi-escapes "^3.2.0" - chalk "^2.4.2" - cli-cursor "^2.1.0" - cli-width "^2.0.0" - external-editor "^3.0.3" - figures "^2.0.0" - lodash "^4.17.12" - mute-stream "0.0.7" - run-async "^2.2.0" - rxjs "^6.4.0" - string-width "^2.1.0" - strip-ansi "^5.1.0" - through "^2.3.6" - inquirer@6.5.2, inquirer@^6.2.0, inquirer@^6.2.2: version "6.5.2" resolved "https://registry.npm.alibaba-inc.com/inquirer/download/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" @@ -15712,7 +16288,7 @@ interpret@^1.0.0, interpret@^1.4.0: resolved "https://registry.npm.alibaba-inc.com/interpret/download/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" integrity sha1-Zlq4vE2iendKQFhOgS4+D6RbGh4= -interpret@^2.0.0: +interpret@^2.2.0: version "2.2.0" resolved "https://registry.npm.alibaba-inc.com/interpret/download/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9" integrity sha1-GnigtZZcQKVBbQB61vUK0nxBffk= @@ -15993,7 +16569,7 @@ is-fullwidth-code-point@^3.0.0: resolved "https://registry.npm.alibaba-inc.com/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0= -is-function@^1.0.1: +is-function@^1.0.2: version "1.0.2" resolved "https://registry.npm.alibaba-inc.com/is-function/download/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08" integrity sha1-Twl/MKv2762smDOxfKXcA/gUTgg= @@ -16017,7 +16593,7 @@ is-glob@^2.0.0: dependencies: is-extglob "^1.0.0" -is-glob@^3.1.0: +is-glob@^3.0.0, is-glob@^3.1.0: version "3.1.0" resolved "https://registry.npm.alibaba-inc.com/is-glob/download/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= @@ -16169,11 +16745,6 @@ is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: dependencies: isobject "^3.0.1" -is-plain-object@^3.0.0: - version "3.0.1" - resolved "https://registry.npm.alibaba-inc.com/is-plain-object/download/is-plain-object-3.0.1.tgz#662d92d24c0aa4302407b0d45d21f2251c85f85b" - integrity sha1-Zi2S0kwKpDAkB7DUXSHyJRyF+Fs= - is-plain-object@^5.0.0: version "5.0.0" resolved "https://registry.npm.alibaba-inc.com/is-plain-object/download/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" @@ -16973,6 +17544,15 @@ jest-worker@^25.4.0: merge-stream "^2.0.0" supports-color "^7.0.0" +jest-worker@^26.2.1: + version "26.6.2" + resolved "https://registry.npm.alibaba-inc.com/jest-worker/download/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" + integrity sha1-f3LLxNZDw2Xie5/XdfnQ6qnHqO0= + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^7.0.0" + jest@24.9.0, jest@^24.9.0: version "24.9.0" resolved "https://registry.npm.alibaba-inc.com/jest/download/jest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171" @@ -17180,7 +17760,7 @@ json3@^3.3.2, json3@^3.3.3: resolved "https://registry.npm.alibaba-inc.com/json3/download/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" integrity sha1-f8EON1/FrkLEcFpcwKpvYr4wW4E= -json5@2.x, json5@^2.1.1, json5@^2.1.2: +json5@2.x, json5@^2.1.2, json5@^2.1.3: version "2.2.0" resolved "https://registry.npm.alibaba-inc.com/json5/download/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" integrity sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM= @@ -17220,6 +17800,15 @@ jsonfile@^4.0.0: optionalDependencies: graceful-fs "^4.1.6" +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.npm.alibaba-inc.com/jsonfile/download/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4= + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + jsonify@~0.0.0: version "0.0.0" resolved "https://registry.npm.alibaba-inc.com/jsonify/download/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" @@ -17256,6 +17845,11 @@ jsx-ast-utils@^2.2.1, jsx-ast-utils@^2.2.3: array-includes "^3.1.2" object.assign "^4.1.2" +junk@^3.1.0: + version "3.1.0" + resolved "https://registry.npm.alibaba-inc.com/junk/download/junk-3.1.0.tgz#31499098d902b7e98c5d9b9c80f43457a88abfa1" + integrity sha1-MUmQmNkCt+mMXZucgPQ0V6iKv6E= + kdbush@^3.0.0: version "3.0.0" resolved "https://registry.npm.alibaba-inc.com/kdbush/download/kdbush-3.0.0.tgz#f8484794d47004cc2d85ed3a79353dbe0abc2bf0" @@ -17330,6 +17924,11 @@ kleur@^3.0.3: resolved "https://registry.npm.alibaba-inc.com/kleur/download/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha1-p5yezIbuHOP6YgbRIWxQHxR/wH4= +klona@^2.0.4: + version "2.0.4" + resolved "https://registry.npm.alibaba-inc.com/klona/download/klona-2.0.4.tgz#7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0" + integrity sha1-e7Hjr/sMuGJFR+9+j2cI6i4538A= + known-css-properties@^0.11.0: version "0.11.0" resolved "https://registry.npm.alibaba-inc.com/known-css-properties/download/known-css-properties-0.11.0.tgz#0da784f115ea77c76b81536d7052e90ee6c86a8a" @@ -17646,6 +18245,15 @@ loader-utils@1.2.3: emojis-list "^2.0.0" json5 "^1.0.1" +loader-utils@2.0.0, loader-utils@^2.0.0: + version "2.0.0" + resolved "https://registry.npm.alibaba-inc.com/loader-utils/download/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" + integrity sha1-5MrOW4FtQloWa18JfhDNErNgZLA= + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + loader-utils@^0.2.16: version "0.2.17" resolved "https://registry.npm.alibaba-inc.com/loader-utils/download/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" @@ -17665,15 +18273,6 @@ loader-utils@^1.0.0, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2 emojis-list "^3.0.0" json5 "^1.0.1" -loader-utils@^2.0.0: - version "2.0.0" - resolved "https://registry.npm.alibaba-inc.com/loader-utils/download/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" - integrity sha1-5MrOW4FtQloWa18JfhDNErNgZLA= - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - locate-path@^2.0.0: version "2.0.0" resolved "https://registry.npm.alibaba-inc.com/locate-path/download/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" @@ -18006,13 +18605,13 @@ lowercase-keys@^2.0.0: resolved "https://registry.npm.alibaba-inc.com/lowercase-keys/download/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" integrity sha1-JgPni3tLAAbLyi+8yKMgJVislHk= -lowlight@~1.11.0: - version "1.11.0" - resolved "https://registry.npm.alibaba-inc.com/lowlight/download/lowlight-1.11.0.tgz#1304d83005126d4e8b1dc0f07981e9b689ec2efc" - integrity sha1-EwTYMAUSbU6LHcDweYHptonsLvw= +lowlight@^1.14.0: + version "1.20.0" + resolved "https://registry.npm.alibaba-inc.com/lowlight/download/lowlight-1.20.0.tgz#ddb197d33462ad0d93bf19d17b6c301aa3941888" + integrity sha1-3bGX0zRirQ2TvxnRe2wwGqOUGIg= dependencies: - fault "^1.0.2" - highlight.js "~9.13.0" + fault "^1.0.0" + highlight.js "~10.7.0" lru-cache@4.0.0: version "4.0.0" @@ -18232,6 +18831,11 @@ markdown-to-jsx@^6.11.4: prop-types "^15.6.2" unquote "^1.1.0" +markdown-to-jsx@^7.1.0: + version "7.1.2" + resolved "https://registry.npm.alibaba-inc.com/markdown-to-jsx/download/markdown-to-jsx-7.1.2.tgz#19d3da4cd8864045cdd13a0d179147fbd6a088d4" + integrity sha1-GdPaTNiGQEXN0ToNF5FH+9agiNQ= + matchmedia-polyfill@^0.3.2: version "0.3.2" resolved "https://registry.npm.alibaba-inc.com/matchmedia-polyfill/download/matchmedia-polyfill-0.3.2.tgz#4666e252aead72e8dd232a9fbde5d93fa50497d3" @@ -18357,6 +18961,13 @@ media-typer@0.3.0: resolved "https://registry.npm.alibaba-inc.com/media-typer/download/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= +memfs@^3.1.2: + version "3.2.2" + resolved "https://registry.npm.alibaba-inc.com/memfs/download/memfs-3.2.2.tgz#5de461389d596e3f23d48bb7c2afb6161f4df40e" + integrity sha1-XeRhOJ1Zbj8j1Iu3wq+2Fh9N9A4= + dependencies: + fs-monkey "1.0.3" + memoizee@^0.4.15: version "0.4.15" resolved "https://registry.npm.alibaba-inc.com/memoizee/download/memoizee-0.4.15.tgz#e6f3d2da863f318d02225391829a6c5956555b72" @@ -18552,6 +19163,11 @@ mime-db@1.46.0, "mime-db@>= 1.43.0 < 2": resolved "https://registry.npm.alibaba-inc.com/mime-db/download/mime-db-1.46.0.tgz#6267748a7f799594de3cbc8cde91def349661cee" integrity sha1-Ymd0in95lZTePLyM3pHe80lmHO4= +mime-db@1.47.0: + version "1.47.0" + resolved "https://registry.npm.alibaba-inc.com/mime-db/download/mime-db-1.47.0.tgz#8cb313e59965d3c05cfbf898915a267af46a335c" + integrity sha1-jLMT5Zll08Bc+/iYkVomevRqM1w= + mime-types@2.1.29, mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: version "2.1.29" resolved "https://registry.npm.alibaba-inc.com/mime-types/download/mime-types-2.1.29.tgz#1d4ab77da64b91f5f72489df29236563754bb1b2" @@ -18559,6 +19175,13 @@ mime-types@2.1.29, mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, m dependencies: mime-db "1.46.0" +mime-types@^2.1.27: + version "2.1.30" + resolved "https://registry.npm.alibaba-inc.com/mime-types/download/mime-types-2.1.30.tgz#6e7be8b4c479825f85ed6326695db73f9305d62d" + integrity sha1-bnvotMR5gl+F7WMmaV23P5MF1i0= + dependencies: + mime-db "1.47.0" + mime@1.6.0, mime@^1.4.1: version "1.6.0" resolved "https://registry.npm.alibaba-inc.com/mime/download/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" @@ -18631,16 +19254,6 @@ mini-css-extract-plugin@^0.11.2: schema-utils "^1.0.0" webpack-sources "^1.1.0" -mini-css-extract-plugin@^0.7.0: - version "0.7.0" - resolved "https://registry.npm.alibaba-inc.com/mini-css-extract-plugin/download/mini-css-extract-plugin-0.7.0.tgz#5ba8290fbb4179a43dd27cca444ba150bee743a0" - integrity sha1-W6gpD7tBeaQ90nzKREuhUL7nQ6A= - dependencies: - loader-utils "^1.1.0" - normalize-url "1.9.1" - schema-utils "^1.0.0" - webpack-sources "^1.1.0" - mini-store@^3.0.1: version "3.0.6" resolved "https://registry.npm.alibaba-inc.com/mini-store/download/mini-store-3.0.6.tgz#44b86be5b2877271224ce0689b3a35a2dffb1ca9" @@ -19048,6 +19661,11 @@ neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: resolved "https://registry.npm.alibaba-inc.com/neo-async/download/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha1-tKr7k+OustgXTKU88WOrfXMIMF8= +nested-error-stacks@^2.0.0, nested-error-stacks@^2.1.0: + version "2.1.0" + resolved "https://registry.npm.alibaba-inc.com/nested-error-stacks/download/nested-error-stacks-2.1.0.tgz#0fbdcf3e13fe4994781280524f8b96b0cdff9c61" + integrity sha1-D73PPhP+SZR4EoBST4uWsM3/nGE= + next-tick@1, next-tick@^1.1.0: version "1.1.0" resolved "https://registry.npm.alibaba-inc.com/next-tick/download/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" @@ -19114,7 +19732,7 @@ node-fetch@2.0.0: resolved "https://registry.npm.alibaba-inc.com/node-fetch/download/node-fetch-2.0.0.tgz#982bba43ecd4f2922a29cc186a6bbb0bb73fcba6" integrity sha1-mCu6Q+zU8pIqKcwYamu7C7c/y6Y= -node-fetch@2.6.1, node-fetch@^2.5.0, node-fetch@^2.6.0, node-fetch@^2.6.1: +node-fetch@2.6.1, node-fetch@^2.5.0, node-fetch@^2.6.1: version "2.6.1" resolved "https://registry.npm.alibaba-inc.com/node-fetch/download/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" integrity sha1-BFvTI2Mfdu0uK1VXM5RBa2OaAFI= @@ -19238,7 +19856,7 @@ node-object-hash@^2.0.0: resolved "https://registry.npm.alibaba-inc.com/node-object-hash/download/node-object-hash-2.3.0.tgz#32c4c10951dc5b5ef655884d7a13393cb765971c" integrity sha1-MsTBCVHcW172VYhNehM5PLdllxw= -node-releases@^1.1.29, node-releases@^1.1.52, node-releases@^1.1.70: +node-releases@^1.1.52, node-releases@^1.1.61, node-releases@^1.1.70: version "1.1.71" resolved "https://registry.npm.alibaba-inc.com/node-releases/download/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" integrity sha1-yxM0sXmJaxyJ7P3UtyX7e738fbs= @@ -19692,6 +20310,11 @@ object.values@^1.1.0, object.values@^1.1.1, object.values@^1.1.2: es-abstract "^1.18.0-next.2" has "^1.0.3" +objectorarray@^1.0.4: + version "1.0.4" + resolved "https://registry.npm.alibaba-inc.com/objectorarray/download/objectorarray-1.0.4.tgz#d69b2f0ff7dc2701903d308bb85882f4ddb49483" + integrity sha1-1psvD/fcJwGQPTCLuFiC9N20lIM= + observable-fns@^0.5.1: version "0.5.1" resolved "https://registry.npm.alibaba-inc.com/observable-fns/download/observable-fns-0.5.1.tgz#9b56478690dd0fa8603e3a7e7d2975d88bca0904" @@ -19752,7 +20375,7 @@ open@^6.3.0: dependencies: is-wsl "^1.1.0" -open@^7.0.0, open@^7.0.2, open@^7.0.3: +open@^7.0.2, open@^7.0.3: version "7.4.2" resolved "https://registry.npm.alibaba-inc.com/open/download/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" integrity sha1-uBR+Jtzz5CYxbHMAif1x7dKcIyE= @@ -19887,6 +20510,18 @@ osenv@0, osenv@^0.1.4, osenv@^0.1.5: os-homedir "^1.0.0" os-tmpdir "^1.0.0" +overlayscrollbars@^1.13.1: + version "1.13.1" + resolved "https://registry.npm.alibaba-inc.com/overlayscrollbars/download/overlayscrollbars-1.13.1.tgz#0b840a88737f43a946b9d87875a2f9e421d0338a" + integrity sha1-C4QKiHN/Q6lGudh4daL55CHQM4o= + +p-all@^2.1.0: + version "2.1.0" + resolved "https://registry.npm.alibaba-inc.com/p-all/download/p-all-2.1.0.tgz#91419be56b7dee8fe4c5db875d55e0da084244a0" + integrity sha1-kUGb5Wt97o/kxduHXVXg2ghCRKA= + dependencies: + p-map "^2.0.0" + p-cancelable@^0.4.0: version "0.4.1" resolved "https://registry.npm.alibaba-inc.com/p-cancelable/download/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0" @@ -19914,6 +20549,20 @@ p-each-series@^1.0.0: dependencies: p-reduce "^1.0.0" +p-event@^4.1.0: + version "4.2.0" + resolved "https://registry.npm.alibaba-inc.com/p-event/download/p-event-4.2.0.tgz#af4b049c8acd91ae81083ebd1e6f5cae2044c1b5" + integrity sha1-r0sEnIrNka6BCD69Hm9criBEwbU= + dependencies: + p-timeout "^3.1.0" + +p-filter@^2.1.0: + version "2.1.0" + resolved "https://registry.npm.alibaba-inc.com/p-filter/download/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c" + integrity sha1-GxRyVirnoPdC8PPT03GOpm/5wJw= + dependencies: + p-map "^2.0.0" + p-finally@^1.0.0: version "1.0.0" resolved "https://registry.npm.alibaba-inc.com/p-finally/download/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" @@ -19997,6 +20646,13 @@ p-map@^3.0.0: dependencies: aggregate-error "^3.0.0" +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.npm.alibaba-inc.com/p-map/download/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha1-uy+Vpe2i7BaOySdOBqdHw+KQTSs= + dependencies: + aggregate-error "^3.0.0" + p-pipe@^1.2.0: version "1.2.0" resolved "https://registry.npm.alibaba-inc.com/p-pipe/download/p-pipe-1.2.0.tgz#4b1a11399a11520a67790ee5a0c1d5881d6befe9" @@ -20036,7 +20692,7 @@ p-timeout@^2.0.1: dependencies: p-finally "^1.0.0" -p-timeout@^3.2.0: +p-timeout@^3.1.0, p-timeout@^3.2.0: version "3.2.0" resolved "https://registry.npm.alibaba-inc.com/p-timeout/download/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" integrity sha1-x+F6vJcdKnli74NiazXWNazyPf4= @@ -20157,7 +20813,7 @@ parse-english@^4.0.0: unist-util-modify-children "^2.0.0" unist-util-visit-children "^1.0.0" -parse-entities@^1.0.2, parse-entities@^1.1.0, parse-entities@^1.1.2: +parse-entities@^1.0.2, parse-entities@^1.1.0: version "1.2.2" resolved "https://registry.npm.alibaba-inc.com/parse-entities/download/parse-entities-1.2.2.tgz#c31bf0f653b6661354f8973559cb86dd1d5edf50" integrity sha1-wxvw9lO2ZhNU+Jc1WcuG3R1e31A= @@ -20533,7 +21189,7 @@ pinkie@^2.0.0: resolved "https://registry.npm.alibaba-inc.com/pinkie/download/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= -pirates@^4.0.1: +pirates@^4.0.0, pirates@^4.0.1: version "4.0.1" resolved "https://registry.npm.alibaba-inc.com/pirates/download/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" integrity sha1-ZDqSyviUVm+RsrmG0sZpUKji+4c= @@ -20568,12 +21224,12 @@ pkg-dir@^4.1.0, pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" -pkg-up@2.0.0: - version "2.0.0" - resolved "https://registry.npm.alibaba-inc.com/pkg-up/download/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" - integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= +pkg-dir@^5.0.0: + version "5.0.0" + resolved "https://registry.npm.alibaba-inc.com/pkg-dir/download/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760" + integrity sha1-oC1q6+a6EzqSj3Suwguv3+a452A= dependencies: - find-up "^2.1.0" + find-up "^5.0.0" pkg-up@3.1.0, pkg-up@^3.1.0: version "3.1.0" @@ -20594,13 +21250,6 @@ pn@^1.1.0: resolved "https://registry.npm.alibaba-inc.com/pn/download/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" integrity sha1-4vTO8OIZ9GPBeas3Rj5OHs3Muvs= -pnp-webpack-plugin@1.5.0: - version "1.5.0" - resolved "https://registry.npm.alibaba-inc.com/pnp-webpack-plugin/download/pnp-webpack-plugin-1.5.0.tgz#62a1cd3068f46d564bb33c56eb250e4d586676eb" - integrity sha1-YqHNMGj0bVZLszxW6yUOTVhmdus= - dependencies: - ts-pnp "^1.1.2" - pnp-webpack-plugin@1.6.4, pnp-webpack-plugin@^1.6.4: version "1.6.4" resolved "https://registry.npm.alibaba-inc.com/pnp-webpack-plugin/download/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149" @@ -20613,10 +21262,10 @@ point-in-polygon@^1.0.1: resolved "https://registry.npm.alibaba-inc.com/point-in-polygon/download/point-in-polygon-1.0.1.tgz#d59b64e8fee41c49458aac82b56718c5957b2af7" integrity sha1-1Ztk6P7kHElFiqyCtWcYxZV7Kvc= -polished@^3.3.1: - version "3.7.1" - resolved "https://registry.npm.alibaba-inc.com/polished/download/polished-3.7.1.tgz#d1addc87ee16eb5b413c6165eda37600cccb9c11" - integrity sha1-0a3ch+4W61tBPGFl7aN2AMzLnBE= +polished@^4.0.5: + version "4.1.1" + resolved "https://registry.npm.alibaba-inc.com/polished/download/polished-4.1.1.tgz#40442cc973348e466f2918cdf647531bb6c29bfb" + integrity sha1-QEQsyXM0jkZvKRjN9kdTG7bCm/s= dependencies: "@babel/runtime" "^7.12.5" @@ -20627,11 +21276,6 @@ polyline-miter-util@^1.0.1: dependencies: gl-vec2 "^1.0.0" -popper.js@^1.14.4, popper.js@^1.14.7: - version "1.16.1" - resolved "https://registry.npm.alibaba-inc.com/popper.js/download/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" - integrity sha1-KiI8s9x7YhPXQOQDcr5A3kPmWxs= - portfinder@^1.0.26: version "1.0.28" resolved "https://registry.npm.alibaba-inc.com/portfinder/download/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" @@ -20813,7 +21457,7 @@ postcss-flexbugs-fixes@4.1.0: dependencies: postcss "^7.0.0" -postcss-flexbugs-fixes@^4.1.0, postcss-flexbugs-fixes@^4.2.1: +postcss-flexbugs-fixes@^4.2.1: version "4.2.1" resolved "https://registry.npm.alibaba-inc.com/postcss-flexbugs-fixes/download/postcss-flexbugs-fixes-4.2.1.tgz#9218a65249f30897deab1033aced8578562a6690" integrity sha1-khimUknzCJfeqxAzrO2FeFYqZpA= @@ -20938,6 +21582,17 @@ postcss-loader@3.0.0, postcss-loader@^3.0.0: postcss-load-config "^2.0.0" schema-utils "^1.0.0" +postcss-loader@^4.2.0: + version "4.2.0" + resolved "https://registry.npm.alibaba-inc.com/postcss-loader/download/postcss-loader-4.2.0.tgz#f6993ea3e0f46600fb3ee49bbd010448123a7db4" + integrity sha1-9pk+o+D0ZgD7PuSbvQEESBI6fbQ= + dependencies: + cosmiconfig "^7.0.0" + klona "^2.0.4" + loader-utils "^2.0.0" + schema-utils "^3.0.0" + semver "^7.3.4" + postcss-logical@^3.0.0: version "3.0.0" resolved "https://registry.npm.alibaba-inc.com/postcss-logical/download/postcss-logical-3.0.0.tgz#2495d0f8b82e9f262725f75f9401b34e7b45d5b5" @@ -21511,7 +22166,7 @@ postcss@^6.0.1, postcss@^6.0.2, postcss@^6.0.22, postcss@^6.0.23, postcss@^6.0.8 source-map "^0.6.1" supports-color "^5.4.0" -postcss@^7, postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.13, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.18, postcss@^7.0.2, postcss@^7.0.23, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6, postcss@^7.0.7: +postcss@^7, postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.13, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.18, postcss@^7.0.2, postcss@^7.0.23, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.35, postcss@^7.0.5, postcss@^7.0.6, postcss@^7.0.7: version "7.0.35" resolved "https://registry.npm.alibaba-inc.com/postcss/download/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" integrity sha1-0r4AuZj38hHYonaXQHny6SuXDiQ= @@ -21653,20 +22308,13 @@ prism-themes@^1.2.0: resolved "https://registry.npm.alibaba-inc.com/prism-themes/download/prism-themes-1.5.0.tgz#92925e4aa0ab5e0afefcea1032df7d61bbcdc1a5" integrity sha1-kpJeSqCrXgr+/OoQMt99YbvNwaU= -prismjs@^1.17.1, prismjs@^1.8.4: +prismjs@^1.17.1, prismjs@^1.21.0, prismjs@~1.23.0: version "1.23.0" resolved "https://registry.npm.alibaba-inc.com/prismjs/download/prismjs-1.23.0.tgz#d3b3967f7d72440690497652a9d40ff046067f33" integrity sha1-07OWf31yRAaQSXZSqdQP8EYGfzM= optionalDependencies: clipboard "^2.0.0" -prismjs@~1.17.0: - version "1.17.1" - resolved "https://registry.npm.alibaba-inc.com/prismjs/download/prismjs-1.17.1.tgz#e669fcbd4cdd873c35102881c33b14d0d68519be" - integrity sha1-5mn8vUzdhzw1ECiBwzsU0NaFGb4= - optionalDependencies: - clipboard "^2.0.0" - probe.gl@^3.1.1: version "3.3.1" resolved "https://registry.npm.alibaba-inc.com/probe.gl/download/probe.gl-3.3.1.tgz#4d60d0e896aa7eee6a6b1bfe4d59120f7d247f7a" @@ -21751,7 +22399,7 @@ promise@^8.0.3: dependencies: asap "~2.0.6" -prompts@^2.0.1, prompts@^2.3.2: +prompts@2.4.0, prompts@^2.0.1, prompts@^2.3.2: version "2.4.0" resolved "https://registry.npm.alibaba-inc.com/prompts/download/prompts-2.4.0.tgz#4aa5de0723a231d1ee9121c40fdf663df73f61d7" integrity sha1-SqXeByOiMdHukSHED99mPfc/Ydc= @@ -21759,6 +22407,14 @@ prompts@^2.0.1, prompts@^2.3.2: kleur "^3.0.3" sisteransi "^1.0.5" +prompts@^2.4.0: + version "2.4.1" + resolved "https://registry.npm.alibaba-inc.com/prompts/download/prompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61" + integrity sha1-vv07EZW6BS+f0v3opIbE6C7nf2E= + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + promzard@^0.3.0: version "0.3.0" resolved "https://registry.npm.alibaba-inc.com/promzard/download/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee" @@ -21949,7 +22605,14 @@ qs@6.7.0: resolved "https://registry.npm.alibaba-inc.com/qs/download/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" integrity sha1-QdwaAV49WB8WIXdr4xr7KHapsbw= -qs@^6.6.0, qs@^6.9.4: +qs@^6.10.0: + version "6.10.1" + resolved "https://registry.npm.alibaba-inc.com/qs/download/qs-6.10.1.tgz#4931482fa8d647a5aab799c5271d2133b981fb6a" + integrity sha1-STFIL6jWR6Wqt5nFJx0hM7mB+2o= + dependencies: + side-channel "^1.0.4" + +qs@^6.9.4: version "6.9.6" resolved "https://registry.npm.alibaba-inc.com/qs/download/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee" integrity sha1-Ju08gkOkMbKSSsqEzJBHHzXVoO4= @@ -22111,15 +22774,7 @@ raw-loader@^0.5.1: resolved "https://registry.npm.alibaba-inc.com/raw-loader/download/raw-loader-0.5.1.tgz#0c3d0beaed8a01c966d9787bf778281252a979aa" integrity sha1-DD0L6u2KAclm2Xh793goElKpeao= -raw-loader@^3.1.0: - version "3.1.0" - resolved "https://registry.npm.alibaba-inc.com/raw-loader/download/raw-loader-3.1.0.tgz#5e9d399a5a222cc0de18f42c3bc5e49677532b3f" - integrity sha1-Xp05mloiLMDeGPQsO8XklndTKz8= - dependencies: - loader-utils "^1.1.0" - schema-utils "^2.0.1" - -raw-loader@^4.0.1: +raw-loader@^4.0.1, raw-loader@^4.0.2: version "4.0.2" resolved "https://registry.npm.alibaba-inc.com/raw-loader/download/raw-loader-4.0.2.tgz#1aac6b7d1ad1501e66efdac1522c73e59a584eb6" integrity sha1-GqxrfRrRUB5m79rBUixz5ZpYTrY= @@ -22522,13 +23177,6 @@ react-app-polyfill@^1.0.6: regenerator-runtime "^0.13.3" whatwg-fetch "^3.0.0" -react-clientside-effect@^1.2.2: - version "1.2.5" - resolved "https://registry.npm.alibaba-inc.com/react-clientside-effect/download/react-clientside-effect-1.2.5.tgz#e2c4dc3c9ee109f642fac4f5b6e9bf5bcd2219a3" - integrity sha1-4sTcPJ7hCfZC+sT1tum/W80iGaM= - dependencies: - "@babel/runtime" "^7.12.13" - react-color@^2.13.8: version "2.19.3" resolved "https://registry.npm.alibaba-inc.com/react-color/download/react-color-2.19.3.tgz#ec6c6b4568312a3c6a18420ab0472e146aa5683d" @@ -22542,6 +23190,11 @@ react-color@^2.13.8: reactcss "^1.2.0" tinycolor2 "^1.4.1" +react-colorful@^5.0.1: + version "5.1.1" + resolved "https://registry.npm.alibaba-inc.com/react-colorful/download/react-colorful-5.1.1.tgz#b242a3a59dc2e740fef9ee072c1d8b49d3465b62" + integrity sha1-skKjpZ3C50D++e4HLB2LSdNGW2I= + react-dat-gui@^4.0.3: version "4.0.3" resolved "https://registry.npm.alibaba-inc.com/react-dat-gui/download/react-dat-gui-4.0.3.tgz#d0ec02455b52ff260bbaeb4309237067128a9cbf" @@ -22587,6 +23240,36 @@ react-dev-utils@^10.2.1: strip-ansi "6.0.0" text-table "0.2.0" +react-dev-utils@^11.0.3: + version "11.0.4" + resolved "https://registry.npm.alibaba-inc.com/react-dev-utils/download/react-dev-utils-11.0.4.tgz#a7ccb60257a1ca2e0efe7a83e38e6700d17aa37a" + integrity sha1-p8y2Alehyi4O/nqD445nANF6o3o= + dependencies: + "@babel/code-frame" "7.10.4" + address "1.1.2" + browserslist "4.14.2" + chalk "2.4.2" + cross-spawn "7.0.3" + detect-port-alt "1.1.6" + escape-string-regexp "2.0.0" + filesize "6.1.0" + find-up "4.1.0" + fork-ts-checker-webpack-plugin "4.1.6" + global-modules "2.0.0" + globby "11.0.1" + gzip-size "5.1.1" + immer "8.0.1" + is-root "2.1.0" + loader-utils "2.0.0" + open "^7.0.2" + pkg-up "3.1.0" + prompts "2.4.0" + react-error-overlay "^6.0.9" + recursive-readdir "2.2.2" + shell-quote "1.7.2" + strip-ansi "6.0.0" + text-table "0.2.0" + react-dev-utils@^4.2.3: version "4.2.3" resolved "https://registry.npm.alibaba-inc.com/react-dev-utils/download/react-dev-utils-4.2.3.tgz#5b42d9ea58d5e9e017a2f57a40a8af408a3a46fb" @@ -22611,37 +23294,6 @@ react-dev-utils@^4.2.3: strip-ansi "3.0.1" text-table "0.2.0" -react-dev-utils@^9.0.0: - version "9.1.0" - resolved "https://registry.npm.alibaba-inc.com/react-dev-utils/download/react-dev-utils-9.1.0.tgz#3ad2bb8848a32319d760d0a84c56c14bdaae5e81" - integrity sha1-OtK7iEijIxnXYNCoTFbBS9quXoE= - dependencies: - "@babel/code-frame" "7.5.5" - address "1.1.2" - browserslist "4.7.0" - chalk "2.4.2" - cross-spawn "6.0.5" - detect-port-alt "1.1.6" - escape-string-regexp "1.0.5" - filesize "3.6.1" - find-up "3.0.0" - fork-ts-checker-webpack-plugin "1.5.0" - global-modules "2.0.0" - globby "8.0.2" - gzip-size "5.1.1" - immer "1.10.0" - inquirer "6.5.0" - is-root "2.1.0" - loader-utils "1.2.3" - open "^6.3.0" - pkg-up "2.0.0" - react-error-overlay "^6.0.3" - recursive-readdir "2.2.2" - shell-quote "1.7.2" - sockjs-client "1.4.0" - strip-ansi "5.2.0" - text-table "0.2.0" - react-docgen-typescript-loader@^3.1.0: version "3.7.2" resolved "https://registry.npm.alibaba-inc.com/react-docgen-typescript-loader/download/react-docgen-typescript-loader-3.7.2.tgz#45cb2305652c0602767242a8700ad1ebd66bbbbd" @@ -22651,11 +23303,27 @@ react-docgen-typescript-loader@^3.1.0: loader-utils "^1.2.3" react-docgen-typescript "^1.15.0" +react-docgen-typescript-plugin@^0.6.2: + version "0.6.3" + resolved "https://registry.npm.alibaba-inc.com/react-docgen-typescript-plugin/download/react-docgen-typescript-plugin-0.6.3.tgz#664b22601df083597ecb1e60bd21beca60125fdf" + integrity sha1-ZksiYB3wg1l+yx5gvSG+ymASX98= + dependencies: + debug "^4.1.1" + endent "^2.0.1" + micromatch "^4.0.2" + react-docgen-typescript "^1.20.5" + tslib "^2.0.0" + react-docgen-typescript@^1.15.0: version "1.21.0" resolved "https://registry.npm.alibaba-inc.com/react-docgen-typescript/download/react-docgen-typescript-1.21.0.tgz#3385dde81b63eb1d54f86a935bd4f65f96c821f6" integrity sha1-M4Xd6Btj6x1U+GqTW9T2X5bIIfY= +react-docgen-typescript@^1.20.5: + version "1.22.0" + resolved "https://registry.npm.alibaba-inc.com/react-docgen-typescript/download/react-docgen-typescript-1.22.0.tgz#00232c8e8e47f4437cac133b879b3e9437284bee" + integrity sha1-ACMsjo5H9EN8rBM7h5s+lDcoS+4= + react-docgen@^5.0.0: version "5.3.1" resolved "https://registry.npm.alibaba-inc.com/react-docgen/download/react-docgen-5.3.1.tgz#940b519646a6c285c2950b96512aed59e8f90934" @@ -22670,7 +23338,7 @@ react-docgen@^5.0.0: node-dir "^0.1.10" strip-indent "^3.0.0" -react-dom@^16.13.1, react-dom@^16.8.3, react-dom@^16.9.0: +react-dom@^16.13.1, react-dom@^16.9.0: version "16.14.0" resolved "https://registry.npm.alibaba-inc.com/react-dom/download/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89" integrity sha1-etg47Cmnd/s8dcOhkPZhz5Kri4k= @@ -22680,7 +23348,7 @@ react-dom@^16.13.1, react-dom@^16.8.3, react-dom@^16.9.0: prop-types "^15.6.2" scheduler "^0.19.1" -react-draggable@^4.0.3: +react-draggable@^4.4.3: version "4.4.3" resolved "https://registry.npm.alibaba-inc.com/react-draggable/download/react-draggable-4.4.3.tgz#0727f2cae5813e36b0e4962bf11b2f9ef2b406f3" integrity sha1-ByfyyuWBPjaw5JYr8RsvnvK0BvM= @@ -22693,28 +23361,16 @@ react-error-overlay@^3.0.0: resolved "https://registry.npm.alibaba-inc.com/react-error-overlay/download/react-error-overlay-3.0.0.tgz#c2bc8f4d91f1375b3dad6d75265d51cd5eeaf655" integrity sha1-wryPTZHxN1s9rW11Jl1RzV7q9lU= -react-error-overlay@^6.0.3, react-error-overlay@^6.0.7: +react-error-overlay@^6.0.7, react-error-overlay@^6.0.9: version "6.0.9" resolved "https://registry.npm.alibaba-inc.com/react-error-overlay/download/react-error-overlay-6.0.9.tgz#3c743010c9359608c375ecd6bc76f35d93995b0a" integrity sha1-PHQwEMk1lgjDdezWvHbzXZOZWwo= -react-fast-compare@^3.1.1, react-fast-compare@^3.2.0: +react-fast-compare@^3.0.1, react-fast-compare@^3.1.1, react-fast-compare@^3.2.0: version "3.2.0" resolved "https://registry.npm.alibaba-inc.com/react-fast-compare/download/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb" integrity sha1-ZBqdqBtqYyDycOiXJPtFoLOeQ7s= -react-focus-lock@^2.1.0: - version "2.5.0" - resolved "https://registry.npm.alibaba-inc.com/react-focus-lock/download/react-focus-lock-2.5.0.tgz#12e3a3940e897c26e2c2a0408cd25ea3c99b3709" - integrity sha1-EuOjlA6JfCbiwqBAjNJeo8mbNwk= - dependencies: - "@babel/runtime" "^7.0.0" - focus-lock "^0.8.1" - prop-types "^15.6.2" - react-clientside-effect "^1.2.2" - use-callback-ref "^1.2.1" - use-sidecar "^1.0.1" - react-github-button@^0.1.11: version "0.1.11" resolved "https://registry.npm.alibaba-inc.com/react-github-button/download/react-github-button-0.1.11.tgz#fc61e1f1e1371169d3618c1ba37306ba04081e56" @@ -22722,12 +23378,12 @@ react-github-button@^0.1.11: dependencies: prop-types "^15.5.10" -react-helmet-async@^1.0.2: - version "1.0.7" - resolved "https://registry.npm.alibaba-inc.com/react-helmet-async/download/react-helmet-async-1.0.7.tgz#b988fbc3abdc4b704982bb74b9cb4a08fcf062c1" - integrity sha1-uYj7w6vcS3BJgrt0uctKCPzwYsE= +react-helmet-async@^1.0.7: + version "1.0.9" + resolved "https://registry.npm.alibaba-inc.com/react-helmet-async/download/react-helmet-async-1.0.9.tgz#5b9ed2059de6b4aab47f769532f9fbcbce16c5ca" + integrity sha1-W57SBZ3mtKq0f3aVMvn7y84Wxco= dependencies: - "@babel/runtime" "^7.11.2" + "@babel/runtime" "^7.12.5" invariant "^2.2.4" prop-types "^15.7.2" react-fast-compare "^3.2.0" @@ -22757,13 +23413,6 @@ react-hot-loader@^4.12.21: shallowequal "^1.1.0" source-map "^0.7.3" -react-hotkeys@2.0.0: - version "2.0.0" - resolved "https://registry.npm.alibaba-inc.com/react-hotkeys/download/react-hotkeys-2.0.0.tgz#a7719c7340cbba888b0e9184f806a9ec0ac2c53f" - integrity sha1-p3Gcc0DLuoiLDpGE+Aap7ArCxT8= - dependencies: - prop-types "^15.6.1" - react-i18next@^11.0.1, react-i18next@^11.4.0: version "11.8.7" resolved "https://registry.npm.alibaba-inc.com/react-i18next/download/react-i18next-11.8.7.tgz#845f31e01e2aa92a3954c374ebcc4bd54df1cace" @@ -22782,6 +23431,11 @@ react-is@^17.0.1: resolved "https://registry.npm.alibaba-inc.com/react-is/download/react-is-17.0.1.tgz#5b3531bd76a645a4c9fb6e693ed36419e3301339" integrity sha1-WzUxvXamRaTJ+25pPtNkGeMwEzk= +react-is@^17.0.2: + version "17.0.2" + resolved "https://registry.npm.alibaba-inc.com/react-is/download/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha1-5pHUqOnHiTZWVVOas3J2Kw77VPA= + react-lifecycles-compat@^3.0.4: version "3.0.4" resolved "https://registry.npm.alibaba-inc.com/react-lifecycles-compat/download/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" @@ -22795,24 +23449,21 @@ react-monaco-editor@^0.40.0: monaco-editor "*" prop-types "^15.7.2" -react-popper-tooltip@^2.8.3: - version "2.11.1" - resolved "https://registry.npm.alibaba-inc.com/react-popper-tooltip/download/react-popper-tooltip-2.11.1.tgz#3c4bdfd8bc10d1c2b9a162e859bab8958f5b2644" - integrity sha1-PEvf2LwQ0cK5oWLoWbq4lY9bJkQ= +react-popper-tooltip@^3.1.1: + version "3.1.1" + resolved "https://registry.npm.alibaba-inc.com/react-popper-tooltip/download/react-popper-tooltip-3.1.1.tgz#329569eb7b287008f04fcbddb6370452ad3f9eac" + integrity sha1-MpVp63socAjwT8vdtjcEUq0/nqw= dependencies: - "@babel/runtime" "^7.9.2" - react-popper "^1.3.7" + "@babel/runtime" "^7.12.5" + "@popperjs/core" "^2.5.4" + react-popper "^2.2.4" -react-popper@^1.3.7: - version "1.3.10" - resolved "https://registry.npm.alibaba-inc.com/react-popper/download/react-popper-1.3.10.tgz#96fd88cc1bf45957e551c5053afea7adc0b1d4d8" - integrity sha1-lv2IzBv0WVflUcUFOv6nrcCx1Ng= +react-popper@^2.2.4: + version "2.2.5" + resolved "https://registry.npm.alibaba-inc.com/react-popper/download/react-popper-2.2.5.tgz#1214ef3cec86330a171671a4fbcbeeb65ee58e96" + integrity sha1-EhTvPOyGMwoXFnGk+8vutl7ljpY= dependencies: - "@babel/runtime" "^7.1.2" - "@hypnosphi/create-react-context" "^0.3.1" - popper.js "^1.14.4" - prop-types "^15.6.1" - typed-styles "^0.0.7" + react-fast-compare "^3.0.1" warning "^4.0.2" react-refresh@^0.8.3: @@ -22885,15 +23536,15 @@ react-side-effect@^2.1.0: resolved "https://registry.npm.alibaba-inc.com/react-side-effect/download/react-side-effect-2.1.1.tgz#66c5701c3e7560ab4822a4ee2742dee215d72eb3" integrity sha1-ZsVwHD51YKtIIqTuJ0Le4hXXLrM= -react-sizeme@^2.6.7: - version "2.6.12" - resolved "https://registry.npm.alibaba-inc.com/react-sizeme/download/react-sizeme-2.6.12.tgz#ed207be5476f4a85bf364e92042520499455453e" - integrity sha1-7SB75UdvSoW/Nk6SBCUgSZRVRT4= +react-sizeme@^3.0.1: + version "3.0.1" + resolved "https://registry.npm.alibaba-inc.com/react-sizeme/download/react-sizeme-3.0.1.tgz#4d12f4244e0e6a0fb97253e7af0314dc7c83a5a0" + integrity sha1-TRL0JE4Oag+5clPnrwMU3HyDpaA= dependencies: - element-resize-detector "^1.2.1" + element-resize-detector "^1.2.2" invariant "^2.2.4" shallowequal "^1.1.0" - throttle-debounce "^2.1.0" + throttle-debounce "^3.0.1" react-slick@^0.27.0: version "0.27.14" @@ -22922,16 +23573,16 @@ react-style-proptype@^3.2.2: dependencies: prop-types "^15.5.4" -react-syntax-highlighter@^11.0.2: - version "11.0.2" - resolved "https://registry.npm.alibaba-inc.com/react-syntax-highlighter/download/react-syntax-highlighter-11.0.2.tgz#4e3f376e752b20d2f54e4c55652fd663149e4029" - integrity sha1-Tj83bnUrINL1TkxVZS/WYxSeQCk= +react-syntax-highlighter@^13.5.3: + version "13.5.3" + resolved "https://registry.npm.alibaba-inc.com/react-syntax-highlighter/download/react-syntax-highlighter-13.5.3.tgz#9712850f883a3e19eb858cf93fad7bb357eea9c6" + integrity sha1-lxKFD4g6PhnrhYz5P617s1fuqcY= dependencies: "@babel/runtime" "^7.3.1" - highlight.js "~9.13.0" - lowlight "~1.11.0" - prismjs "^1.8.4" - refractor "^2.4.1" + highlight.js "^10.1.1" + lowlight "^1.14.0" + prismjs "^1.21.0" + refractor "^3.1.0" react-test-renderer@^16.0.0-0, react-test-renderer@^16.9.0: version "16.14.0" @@ -22943,13 +23594,14 @@ react-test-renderer@^16.0.0-0, react-test-renderer@^16.9.0: react-is "^16.8.6" scheduler "^0.19.1" -react-textarea-autosize@^7.1.0: - version "7.1.2" - resolved "https://registry.npm.alibaba-inc.com/react-textarea-autosize/download/react-textarea-autosize-7.1.2.tgz#70fdb333ef86bcca72717e25e623e90c336e2cda" - integrity sha1-cP2zM++GvMpycX4l5iPpDDNuLNo= +react-textarea-autosize@^8.3.0: + version "8.3.2" + resolved "https://registry.npm.alibaba-inc.com/react-textarea-autosize/download/react-textarea-autosize-8.3.2.tgz#4f9374d357b0a6f6469956726722549124a1b2db" + integrity sha1-T5N001ewpvZGmVZyZyJUkSShsts= dependencies: - "@babel/runtime" "^7.1.2" - prop-types "^15.6.0" + "@babel/runtime" "^7.10.2" + use-composed-ref "^1.0.0" + use-latest "^1.0.0" react-universal-interface@^0.6.2: version "0.6.2" @@ -22976,7 +23628,7 @@ react-use@^15.0.0: ts-easing "^0.2.0" tslib "^2.0.0" -react@^16.12.0, react@^16.13.1, react@^16.8.3, react@^16.9.0: +react@^16.12.0, react@^16.13.1, react@^16.9.0: version "16.14.0" resolved "https://registry.npm.alibaba-inc.com/react/download/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d" integrity sha1-lNd23dCqo32j7aj8W2sYpMmjEU0= @@ -23273,14 +23925,14 @@ reflect.ownkeys@^0.2.0: resolved "https://registry.npm.alibaba-inc.com/reflect.ownkeys/download/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460" integrity sha1-dJrO7H8/34tj+SegSAnpDFwLNGA= -refractor@^2.4.1: - version "2.10.1" - resolved "https://registry.npm.alibaba-inc.com/refractor/download/refractor-2.10.1.tgz#166c32f114ed16fd96190ad21d5193d3afc7d34e" - integrity sha1-Fmwy8RTtFv2WGQrSHVGT06/H004= +refractor@^3.1.0: + version "3.3.1" + resolved "https://registry.npm.alibaba-inc.com/refractor/download/refractor-3.3.1.tgz#ebbc04b427ea81dc25ad333f7f67a0b5f4f0be3a" + integrity sha1-67wEtCfqgdwlrTM/f2egtfTwvjo= dependencies: - hastscript "^5.0.0" - parse-entities "^1.1.2" - prismjs "~1.17.0" + hastscript "^6.0.0" + parse-entities "^2.0.0" + prismjs "~1.23.0" regenerate-unicode-properties@^8.2.0: version "8.2.0" @@ -23304,7 +23956,7 @@ regenerator-runtime@^0.11.0, regenerator-runtime@^0.11.1: resolved "https://registry.npm.alibaba-inc.com/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" integrity sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk= -regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: +regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.7: version "0.13.7" resolved "https://registry.npm.alibaba-inc.com/regenerator-runtime/download/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" integrity sha1-ysLazIoepnX+qrrriugziYrkb1U= @@ -23779,7 +24431,7 @@ resolve@1.15.0: dependencies: path-parse "^1.0.6" -resolve@1.x, resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.15.1, resolve@^1.16.0, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.3.2, resolve@^1.8.1: +resolve@1.x, resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.15.1, resolve@^1.16.0, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.19.0, resolve@^1.3.2, resolve@^1.8.1: version "1.20.0" resolved "https://registry.npm.alibaba-inc.com/resolve/download/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" integrity sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU= @@ -24230,6 +24882,15 @@ scheduler@^0.19.1: loose-envify "^1.1.0" object-assign "^4.1.1" +schema-utils@2.7.0: + version "2.7.0" + resolved "https://registry.npm.alibaba-inc.com/schema-utils/download/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" + integrity sha1-FxUfdtjq5n+793lgwzxnatn078c= + dependencies: + "@types/json-schema" "^7.0.4" + ajv "^6.12.2" + ajv-keywords "^3.4.1" + schema-utils@^0.4.0, schema-utils@^0.4.5: version "0.4.7" resolved "https://registry.npm.alibaba-inc.com/schema-utils/download/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187" @@ -24247,7 +24908,7 @@ schema-utils@^1.0.0: ajv-errors "^1.0.0" ajv-keywords "^3.1.0" -schema-utils@^2.0.1, schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.1, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0: +schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.1, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0: version "2.7.1" resolved "https://registry.npm.alibaba-inc.com/schema-utils/download/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" integrity sha1-HKTzLRskxZDCA7jnpQvw6kzTlNc= @@ -24491,11 +25152,6 @@ shallow-compare@^1.2.2: resolved "https://registry.npm.alibaba-inc.com/shallow-compare/download/shallow-compare-1.2.2.tgz#fa4794627bf455a47c4f56881d8a6132d581ffdb" integrity sha1-+keUYnv0VaR8T1aIHYphMtWB/9s= -shallow-equal@^1.1.0: - version "1.2.1" - resolved "https://registry.npm.alibaba-inc.com/shallow-equal/download/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da" - integrity sha1-TBar+lYEOqINBQMk76aJQLDaedo= - shallowequal@^1.0.2, shallowequal@^1.1.0: version "1.1.0" resolved "https://registry.npm.alibaba-inc.com/shallowequal/download/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" @@ -24577,7 +25233,7 @@ shell-quote@1.7.2, shell-quote@^1.6.1: resolved "https://registry.npm.alibaba-inc.com/shell-quote/download/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" integrity sha1-Z6fQLHbJ2iT5nSCAj8re0ODgS+I= -shelljs@0.8.4, shelljs@^0.8.3: +shelljs@0.8.4: version "0.8.4" resolved "https://registry.npm.alibaba-inc.com/shelljs/download/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" integrity sha1-3naE/ut2f4cWsyYHiooAh1iQ48I= @@ -24652,26 +25308,6 @@ simple-swizzle@^0.2.2: dependencies: is-arrayish "^0.3.1" -simplebar-react@^1.0.0-alpha.6: - version "1.2.3" - resolved "https://registry.npm.alibaba-inc.com/simplebar-react/download/simplebar-react-1.2.3.tgz#bd81fa9827628470e9470d06caef6ece15e1c882" - integrity sha1-vYH6mCdihHDpRw0Gyu9uzhXhyII= - dependencies: - prop-types "^15.6.1" - simplebar "^4.2.3" - -simplebar@^4.2.3: - version "4.2.3" - resolved "https://registry.npm.alibaba-inc.com/simplebar/download/simplebar-4.2.3.tgz#dac40aced299c17928329eab3d5e6e795fafc10c" - integrity sha1-2sQKztKZwXkoMp6rPV5ueV+vwQw= - dependencies: - can-use-dom "^0.1.0" - core-js "^3.0.1" - lodash.debounce "^4.0.8" - lodash.memoize "^4.1.2" - lodash.throttle "^4.1.1" - resize-observer-polyfill "^1.5.1" - simplify-geojson@^1.0.3: version "1.0.4" resolved "https://registry.npm.alibaba-inc.com/simplify-geojson/download/simplify-geojson-1.0.4.tgz#5f61bd90003f67a0ae575b40552b13868f45a325" @@ -24992,7 +25628,7 @@ source-map-support@^0.4.0: dependencies: source-map "^0.5.6" -source-map-support@^0.5.17, source-map-support@^0.5.19, source-map-support@^0.5.3, source-map-support@^0.5.6, source-map-support@~0.5.12: +source-map-support@^0.5.16, source-map-support@^0.5.17, source-map-support@^0.5.19, source-map-support@^0.5.3, source-map-support@^0.5.6, source-map-support@~0.5.12: version "0.5.19" resolved "https://registry.npm.alibaba-inc.com/source-map-support/download/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" integrity sha1-qYti+G3K9PZzmWSMCFKRq56P7WE= @@ -25207,6 +25843,13 @@ ssri@^7.0.0: figgy-pudding "^3.5.1" minipass "^3.1.1" +ssri@^8.0.1: + version "8.0.1" + resolved "https://registry.npm.alibaba-inc.com/ssri/download/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" + integrity sha1-Y45OQ54v+9LNKJd21cpFfE9Roq8= + dependencies: + minipass "^3.1.1" + st@^2.0.0: version "2.0.0" resolved "https://registry.npm.alibaba-inc.com/st/download/st-2.0.0.tgz#eabd11e7722863b8ee8cfbdd027cb25e76ff35e9" @@ -25296,7 +25939,7 @@ stealthy-require@^1.1.1: resolved "https://registry.npm.alibaba-inc.com/stealthy-require/download/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= -store2@^2.7.1: +store2@^2.12.0: version "2.12.0" resolved "https://registry.npm.alibaba-inc.com/store2/download/store2-2.12.0.tgz#e1f1b7e1a59b6083b2596a8d067f6ee88fd4d3cf" integrity sha1-4fG34aWbYIOyWWqNBn9u6I/U088= @@ -25553,13 +26196,6 @@ strip-ansi@3.0.1, strip-ansi@^3, strip-ansi@^3.0.0, strip-ansi@^3.0.1: dependencies: ansi-regex "^2.0.0" -strip-ansi@5.2.0, strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: - version "5.2.0" - resolved "https://registry.npm.alibaba-inc.com/strip-ansi/download/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4= - dependencies: - ansi-regex "^4.1.0" - strip-ansi@6.0.0, strip-ansi@^6.0.0: version "6.0.0" resolved "https://registry.npm.alibaba-inc.com/strip-ansi/download/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" @@ -25574,6 +26210,13 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" +strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.npm.alibaba-inc.com/strip-ansi/download/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4= + dependencies: + ansi-regex "^4.1.0" + strip-bom-string@^1.0.0: version "1.0.0" resolved "https://registry.npm.alibaba-inc.com/strip-bom-string/download/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" @@ -25691,7 +26334,7 @@ style-loader@0.23.1, style-loader@^0.23.1: loader-utils "^1.1.0" schema-utils "^1.0.0" -style-loader@^1.0.0: +style-loader@^1.0.0, style-loader@^1.3.0: version "1.3.0" resolved "https://registry.npm.alibaba-inc.com/style-loader/download/style-loader-1.3.0.tgz#828b4a3b3b7e7aa5847ce7bae9e874512114249e" integrity sha1-gotKOzt+eqWEfOe66eh0USEUJJ4= @@ -26098,18 +26741,18 @@ tar@^6.0.2: mkdirp "^1.0.3" yallist "^4.0.0" -telejson@^3.2.0: - version "3.3.0" - resolved "https://registry.npm.alibaba-inc.com/telejson/download/telejson-3.3.0.tgz#6d814f3c0d254d5c4770085aad063e266b56ad03" - integrity sha1-bYFPPA0lTVxHcAharQY+JmtWrQM= +telejson@^5.1.0: + version "5.1.0" + resolved "https://registry.npm.alibaba-inc.com/telejson/download/telejson-5.1.0.tgz#cc04e4c2a355f9eb6af557e37acd6449feb1d146" + integrity sha1-zATkwqNV+etq9Vfjes1kSf6x0UY= dependencies: "@types/is-function" "^1.0.0" global "^4.4.0" - is-function "^1.0.1" - is-regex "^1.0.4" + is-function "^1.0.2" + is-regex "^1.1.1" is-symbol "^1.0.3" isobject "^4.0.0" - lodash "^4.17.15" + lodash "^4.17.20" memoizerific "^1.11.3" temp-dir@^1.0.0: @@ -26141,7 +26784,7 @@ term-size@^2.1.0: resolved "https://registry.npm.alibaba-inc.com/term-size/download/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" integrity sha1-KmpUhAQywvtjIP6g9BVTHpAYn1Q= -terser-webpack-plugin@2.3.8, terser-webpack-plugin@^2.1.2, terser-webpack-plugin@^2.3.8: +terser-webpack-plugin@2.3.8, terser-webpack-plugin@^2.3.8: version "2.3.8" resolved "https://registry.npm.alibaba-inc.com/terser-webpack-plugin/download/terser-webpack-plugin-2.3.8.tgz#894764a19b0743f2f704e7c2a848c5283a696724" integrity sha1-iUdkoZsHQ/L3BOfCqEjFKDppZyQ= @@ -26171,7 +26814,22 @@ terser-webpack-plugin@^1.4.3: webpack-sources "^1.4.0" worker-farm "^1.7.0" -terser@^4.1.2, terser@^4.6.12, terser@^4.6.2, terser@^4.6.3: +terser-webpack-plugin@^3.1.0: + version "3.1.0" + resolved "https://registry.npm.alibaba-inc.com/terser-webpack-plugin/download/terser-webpack-plugin-3.1.0.tgz#91e6d39571460ed240c0cf69d295bcf30ebf98cb" + integrity sha1-kebTlXFGDtJAwM9p0pW88w6/mMs= + dependencies: + cacache "^15.0.5" + find-cache-dir "^3.3.1" + jest-worker "^26.2.1" + p-limit "^3.0.2" + schema-utils "^2.6.6" + serialize-javascript "^4.0.0" + source-map "^0.6.1" + terser "^4.8.0" + webpack-sources "^1.4.3" + +terser@^4.1.2, terser@^4.6.12, terser@^4.6.2, terser@^4.6.3, terser@^4.8.0: version "4.8.0" resolved "https://registry.npm.alibaba-inc.com/terser/download/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" integrity sha1-YwVjQ9fHC7KfOvZlhlpG/gOg3xc= @@ -26256,6 +26914,11 @@ throttle-debounce@^2.1.0: resolved "https://registry.npm.alibaba-inc.com/throttle-debounce/download/throttle-debounce-2.3.0.tgz#fd31865e66502071e411817e241465b3e9c372e2" integrity sha1-/TGGXmZQIHHkEYF+JBRls+nDcuI= +throttle-debounce@^3.0.1: + version "3.0.1" + resolved "https://registry.npm.alibaba-inc.com/throttle-debounce/download/throttle-debounce-3.0.1.tgz#32f94d84dfa894f786c9a1f290e7a645b6a19abb" + integrity sha1-MvlNhN+olPeGyaHykOemRbahmrs= + throttleit@0.0.2: version "0.0.2" resolved "https://registry.npm.alibaba-inc.com/throttleit/download/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" @@ -26574,16 +27237,21 @@ trough@^1.0.0: resolved "https://registry.npm.alibaba-inc.com/true-case-path/download/true-case-path-2.2.1.tgz#c5bf04a5bbec3fd118be4084461b3a27c4d796bf" integrity sha1-xb8EpbvsP9EYvkCERhs6J8TXlr8= -ts-dedent@^1.1.0: - version "1.2.0" - resolved "https://registry.npm.alibaba-inc.com/ts-dedent/download/ts-dedent-1.2.0.tgz#6aa2229d837159bb6d635b6b233002423b91e0b0" - integrity sha1-aqIinYNxWbttY1trIzACQjuR4LA= +ts-dedent@^2.0.0: + version "2.1.1" + resolved "https://registry.npm.alibaba-inc.com/ts-dedent/download/ts-dedent-2.1.1.tgz#6dd56870bb5493895171334fa5d7e929107e5bbc" + integrity sha1-bdVocLtUk4lRcTNPpdfpKRB+W7w= ts-easing@^0.2.0: version "0.2.0" resolved "https://registry.npm.alibaba-inc.com/ts-easing/download/ts-easing-0.2.0.tgz#c8a8a35025105566588d87dbda05dd7fbfa5a4ec" integrity sha1-yKijUCUQVWZYjYfb2gXdf7+lpOw= +ts-essentials@^2.0.3: + version "2.0.12" + resolved "https://registry.npm.alibaba-inc.com/ts-essentials/download/ts-essentials-2.0.12.tgz#c9303f3d74f75fa7528c3d49b80e089ab09d8745" + integrity sha1-yTA/PXT3X6dSjD1JuA4ImrCdh0U= + ts-jest@^24.0.2: version "24.3.0" resolved "https://registry.npm.alibaba-inc.com/ts-jest/download/ts-jest-24.3.0.tgz#b97814e3eab359ea840a1ac112deae68aa440869" @@ -26617,7 +27285,7 @@ ts-pnp@1.1.6: resolved "https://registry.npm.alibaba-inc.com/ts-pnp/download/ts-pnp-1.1.6.tgz#389a24396d425a0d3162e96d2b4638900fdc289a" integrity sha1-OJokOW1CWg0xYultK0Y4kA/cKJo= -ts-pnp@^1.1.2, ts-pnp@^1.1.6: +ts-pnp@^1.1.6: version "1.2.0" resolved "https://registry.npm.alibaba-inc.com/ts-pnp/download/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92" integrity sha1-pQCtCEsHmPHDBxrzkeZZEshrypI= @@ -26632,7 +27300,7 @@ tsconfig-paths@^3.9.0: minimist "^1.2.0" strip-bom "^3.0.0" -tslib@^1.10.0, tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: +tslib@^1.10.0, tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0: version "1.14.1" resolved "https://registry.npm.alibaba-inc.com/tslib/download/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha1-zy04vcNKE0vK8QkcQfZhni9nLQA= @@ -26794,11 +27462,6 @@ type@^2.0.0: resolved "https://registry.npm.alibaba-inc.com/type/download/type-2.3.0.tgz#ada7c045f07ead08abf9e2edd29be1a0c0661132" integrity sha1-rafARfB+rQir+eLt0pvhoMBmETI= -typed-styles@^0.0.7: - version "0.0.7" - resolved "https://registry.npm.alibaba-inc.com/typed-styles/download/typed-styles-0.0.7.tgz#93392a008794c4595119ff62dde6809dbc40a3d9" - integrity sha1-kzkqAIeUxFlRGf9i3eaAnbxAo9k= - typedarray-to-buffer@^3.1.5: version "3.1.5" resolved "https://registry.npm.alibaba-inc.com/typedarray-to-buffer/download/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" @@ -26879,7 +27542,7 @@ underscore@^1.7.0: resolved "https://registry.npm.alibaba-inc.com/underscore/download/underscore-1.12.0.tgz#4814940551fc80587cef7840d1ebb0f16453be97" integrity sha1-SBSUBVH8gFh873hA0euw8WRTvpc= -unfetch@^4.1.0: +unfetch@^4.2.0: version "4.2.0" resolved "https://registry.npm.alibaba-inc.com/unfetch/download/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be" integrity sha1-fiGw7302PY2a8PuSmlVV9u+Xo74= @@ -27142,6 +27805,11 @@ universalify@^0.1.0: resolved "https://registry.npm.alibaba-inc.com/universalify/download/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" integrity sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY= +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.npm.alibaba-inc.com/universalify/download/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc= + unixify@1.0.0: version "1.0.0" resolved "https://registry.npm.alibaba-inc.com/unixify/download/unixify-1.0.0.tgz#3a641c8c2ffbce4da683a5c70f03a462940c2090" @@ -27240,7 +27908,7 @@ url-join@^1.1.0: resolved "https://registry.npm.alibaba-inc.com/url-join/download/url-join-1.1.0.tgz#741c6c2f4596c4830d6718460920d0c92202dc78" integrity sha1-dBxsL0WWxIMNZxhGCSDQySIC3Hg= -url-loader@2.3.0, url-loader@^2.0.1: +url-loader@2.3.0: version "2.3.0" resolved "https://registry.npm.alibaba-inc.com/url-loader/download/url-loader-2.3.0.tgz#e0e2ef658f003efb8ca41b0f3ffbf76bab88658b" integrity sha1-4OLvZY8APvuMpBsPP/v3a6uIZYs= @@ -27258,6 +27926,15 @@ url-loader@^1.1.2: mime "^2.0.3" schema-utils "^1.0.0" +url-loader@^4.1.1: + version "4.1.1" + resolved "https://registry.npm.alibaba-inc.com/url-loader/download/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2" + integrity sha1-KFBekFyuFYzwfJLKYi1/I35wpOI= + dependencies: + loader-utils "^2.0.0" + mime-types "^2.1.27" + schema-utils "^3.0.0" + url-parse-lax@^1.0.0: version "1.0.0" resolved "https://registry.npm.alibaba-inc.com/url-parse-lax/download/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" @@ -27293,18 +27970,24 @@ url@^0.11.0: punycode "1.3.2" querystring "0.2.0" -use-callback-ref@^1.2.1: - version "1.2.5" - resolved "https://registry.npm.alibaba-inc.com/use-callback-ref/download/use-callback-ref-1.2.5.tgz#6115ed242cfbaed5915499c0a9842ca2912f38a5" - integrity sha1-YRXtJCz7rtWRVJnAqYQsopEvOKU= - -use-sidecar@^1.0.1: - version "1.0.4" - resolved "https://registry.npm.alibaba-inc.com/use-sidecar/download/use-sidecar-1.0.4.tgz#38398c3723727f9f924bed2343dfa3db6aaaee46" - integrity sha1-ODmMNyNyf5+SS+0jQ9+j22qq7kY= +use-composed-ref@^1.0.0: + version "1.1.0" + resolved "https://registry.npm.alibaba-inc.com/use-composed-ref/download/use-composed-ref-1.1.0.tgz#9220e4e94a97b7b02d7d27eaeab0b37034438bbc" + integrity sha1-kiDk6UqXt7AtfSfq6rCzcDRDi7w= dependencies: - detect-node-es "^1.0.0" - tslib "^1.9.3" + ts-essentials "^2.0.3" + +use-isomorphic-layout-effect@^1.0.0: + version "1.1.1" + resolved "https://registry.npm.alibaba-inc.com/use-isomorphic-layout-effect/download/use-isomorphic-layout-effect-1.1.1.tgz#7bb6589170cd2987a152042f9084f9effb75c225" + integrity sha1-e7ZYkXDNKYehUgQvkIT57/t1wiU= + +use-latest@^1.0.0: + version "1.2.0" + resolved "https://registry.npm.alibaba-inc.com/use-latest/download/use-latest-1.2.0.tgz#a44f6572b8288e0972ec411bdd0840ada366f232" + integrity sha1-pE9lcrgojgly7EEb3QhAraNm8jI= + dependencies: + use-isomorphic-layout-effect "^1.0.0" use@^3.1.0: version "3.1.1" @@ -27621,7 +28304,7 @@ webpack-cli@^3.1.0: v8-compile-cache "^2.1.1" yargs "^13.3.2" -webpack-dev-middleware@^3.7.0, webpack-dev-middleware@^3.7.2: +webpack-dev-middleware@^3.7.2, webpack-dev-middleware@^3.7.3: version "3.7.3" resolved "https://registry.npm.alibaba-inc.com/webpack-dev-middleware/download/webpack-dev-middleware-3.7.3.tgz#0639372b143262e2b84ab95d3b91a7597061c2c5" integrity sha1-Bjk3KxQyYuK4SrldO5GnWXBhwsU= @@ -27710,6 +28393,11 @@ webpack-dev-server@^3.1.7, webpack-dev-server@^3.11.2: ws "^6.2.1" yargs "^13.3.2" +webpack-filter-warnings-plugin@^1.2.1: + version "1.2.1" + resolved "https://registry.npm.alibaba-inc.com/webpack-filter-warnings-plugin/download/webpack-filter-warnings-plugin-1.2.1.tgz#dc61521cf4f9b4a336fbc89108a75ae1da951cdb" + integrity sha1-3GFSHPT5tKM2+8iRCKda4dqVHNs= + webpack-hot-middleware@^2.25.0: version "2.25.0" resolved "https://registry.npm.alibaba-inc.com/webpack-hot-middleware/download/webpack-hot-middleware-2.25.0.tgz#4528a0a63ec37f8f8ef565cf9e534d57d09fe706" @@ -27768,13 +28456,42 @@ webpack-stats-plugin@^0.3.2: resolved "https://registry.npm.alibaba-inc.com/webpack-stats-plugin/download/webpack-stats-plugin-0.3.2.tgz#c06b185aa5dcc93b3f0c3a7891d24a111f849740" integrity sha1-wGsYWqXcyTs/DDp4kdJKER+El0A= -webpack-virtual-modules@^0.2.0, webpack-virtual-modules@^0.2.2: +webpack-virtual-modules@^0.2.2: version "0.2.2" resolved "https://registry.npm.alibaba-inc.com/webpack-virtual-modules/download/webpack-virtual-modules-0.2.2.tgz#20863dc3cb6bb2104729fff951fbe14b18bd0299" integrity sha1-IIY9w8trshBHKf/5UfvhSxi9Apk= dependencies: debug "^3.0.0" +webpack@4, webpack@^4.17.1, webpack@^4.44.1: + version "4.46.0" + resolved "https://registry.npm.alibaba-inc.com/webpack/download/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542" + integrity sha1-v5tEBOogoHNgXgoBHRiNd8tq1UI= + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-module-context" "1.9.0" + "@webassemblyjs/wasm-edit" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + acorn "^6.4.1" + ajv "^6.10.2" + ajv-keywords "^3.4.1" + chrome-trace-event "^1.0.2" + enhanced-resolve "^4.5.0" + eslint-scope "^4.0.3" + json-parse-better-errors "^1.0.2" + loader-runner "^2.4.0" + loader-utils "^1.2.3" + memory-fs "^0.4.1" + micromatch "^3.1.10" + mkdirp "^0.5.3" + neo-async "^2.6.1" + node-libs-browser "^2.2.1" + schema-utils "^1.0.0" + tapable "^1.1.3" + terser-webpack-plugin "^1.4.3" + watchpack "^1.7.4" + webpack-sources "^1.4.1" + webpack@4.42.0: version "4.42.0" resolved "https://registry.npm.alibaba-inc.com/webpack/download/webpack-4.42.0.tgz#b901635dd6179391d90740a63c93f76f39883eb8" @@ -27804,35 +28521,6 @@ webpack@4.42.0: watchpack "^1.6.0" webpack-sources "^1.4.1" -webpack@^4.17.1, webpack@^4.33.0, webpack@^4.38.0, webpack@^4.44.1: - version "4.46.0" - resolved "https://registry.npm.alibaba-inc.com/webpack/download/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542" - integrity sha1-v5tEBOogoHNgXgoBHRiNd8tq1UI= - dependencies: - "@webassemblyjs/ast" "1.9.0" - "@webassemblyjs/helper-module-context" "1.9.0" - "@webassemblyjs/wasm-edit" "1.9.0" - "@webassemblyjs/wasm-parser" "1.9.0" - acorn "^6.4.1" - ajv "^6.10.2" - ajv-keywords "^3.4.1" - chrome-trace-event "^1.0.2" - enhanced-resolve "^4.5.0" - eslint-scope "^4.0.3" - json-parse-better-errors "^1.0.2" - loader-runner "^2.4.0" - loader-utils "^1.2.3" - memory-fs "^0.4.1" - micromatch "^3.1.10" - mkdirp "^0.5.3" - neo-async "^2.6.1" - node-libs-browser "^2.2.1" - schema-utils "^1.0.0" - tapable "^1.1.3" - terser-webpack-plugin "^1.4.3" - watchpack "^1.7.4" - webpack-sources "^1.4.1" - websocket-driver@0.6.5: version "0.6.5" resolved "https://registry.npm.alibaba-inc.com/websocket-driver/download/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36"