diff --git a/packages/superset-ui-demo/package.json b/packages/superset-ui-demo/package.json
index 3a31c7fbf9..aa7e12e7b5 100644
--- a/packages/superset-ui-demo/package.json
+++ b/packages/superset-ui-demo/package.json
@@ -29,6 +29,7 @@
},
"homepage": "https://github.com/apache-superset/superset-ui#readme",
"dependencies": {
+ "@data-ui/event-flow": "^0.0.84",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
@@ -42,6 +43,7 @@
"@superset-ui/legacy-plugin-chart-calendar": "0.13.6",
"@superset-ui/legacy-plugin-chart-chord": "0.13.13",
"@superset-ui/legacy-plugin-chart-country-map": "0.13.3",
+ "@superset-ui/legacy-plugin-chart-event-flow": "^0.11.15",
"@superset-ui/legacy-plugin-chart-force-directed": "0.13.16",
"@superset-ui/legacy-plugin-chart-heatmap": "0.13.16",
"@superset-ui/legacy-plugin-chart-histogram": "0.13.16",
diff --git a/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx b/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx
new file mode 100644
index 0000000000..5c870e5d1f
--- /dev/null
+++ b/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx
@@ -0,0 +1,30 @@
+import React from 'react';
+import { SuperChart } from '@superset-ui/chart';
+import sampleEvents from '@data-ui/event-flow/build/sampleEvents';
+import EventFlowChartPlugin from '@superset-ui/legacy-plugin-chart-event-flow';
+
+new EventFlowChartPlugin().configure({ key: 'event-flow' }).register();
+
+export default {
+ title: 'Legacy Chart Plugins|legacy-plugin-chart-event-flow',
+};
+
+const data = sampleEvents.twentyUsers.allEvents.map(({ ENTITY_ID, EVENT_NAME, TS }) => ({
+ __timestamp: TS,
+ eventName: EVENT_NAME,
+ userId: ENTITY_ID,
+}));
+
+export const basic = () => (
+
+);
diff --git a/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/README.md b/plugins/legacy-plugin-chart-event-flow/README.md
similarity index 100%
rename from temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/README.md
rename to plugins/legacy-plugin-chart-event-flow/README.md
diff --git a/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/package.json b/plugins/legacy-plugin-chart-event-flow/package.json
similarity index 100%
rename from temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/package.json
rename to plugins/legacy-plugin-chart-event-flow/package.json
diff --git a/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/EventFlow.jsx b/plugins/legacy-plugin-chart-event-flow/src/EventFlow.jsx
similarity index 100%
rename from temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/EventFlow.jsx
rename to plugins/legacy-plugin-chart-event-flow/src/EventFlow.jsx
diff --git a/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/controlPanel.jsx b/plugins/legacy-plugin-chart-event-flow/src/controlPanel.jsx
similarity index 100%
rename from temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/controlPanel.jsx
rename to plugins/legacy-plugin-chart-event-flow/src/controlPanel.jsx
diff --git a/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/images/thumbnail.png b/plugins/legacy-plugin-chart-event-flow/src/images/thumbnail.png
similarity index 100%
rename from temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/images/thumbnail.png
rename to plugins/legacy-plugin-chart-event-flow/src/images/thumbnail.png
diff --git a/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/images/thumbnailLarge.png b/plugins/legacy-plugin-chart-event-flow/src/images/thumbnailLarge.png
similarity index 100%
rename from temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/images/thumbnailLarge.png
rename to plugins/legacy-plugin-chart-event-flow/src/images/thumbnailLarge.png
diff --git a/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/index.js b/plugins/legacy-plugin-chart-event-flow/src/index.js
similarity index 100%
rename from temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/index.js
rename to plugins/legacy-plugin-chart-event-flow/src/index.js
diff --git a/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/transformProps.js b/plugins/legacy-plugin-chart-event-flow/src/transformProps.js
similarity index 100%
rename from temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-event-flow/src/transformProps.js
rename to plugins/legacy-plugin-chart-event-flow/src/transformProps.js
diff --git a/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-event-flow/Stories.jsx b/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-event-flow/Stories.jsx
deleted file mode 100644
index f98eae0a5c..0000000000
--- a/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-event-flow/Stories.jsx
+++ /dev/null
@@ -1,30 +0,0 @@
-/* eslint-disable no-magic-numbers */
-import React from 'react';
-import { SuperChart } from '@superset-ui/chart';
-import sampleEvents from '@data-ui/event-flow/build/sampleEvents';
-
-const data = sampleEvents.twentyUsers.allEvents.map(({ ENTITY_ID, EVENT_NAME, TS }) => ({
- __timestamp: TS,
- eventName: EVENT_NAME,
- userId: ENTITY_ID,
-}));
-
-export default [
- {
- renderStory: () => (
-
- ),
- storyName: 'Basic',
- storyPath: 'legacy-|plugin-chart-event-flow|EventFlowChartPlugin',
- },
-];
diff --git a/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-event-flow/index.js b/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-event-flow/index.js
deleted file mode 100644
index 129a5fabed..0000000000
--- a/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-event-flow/index.js
+++ /dev/null
@@ -1,8 +0,0 @@
-import EventFlowChartPlugin from '../../../../superset-ui-legacy-plugin-chart-event-flow';
-import Stories from './Stories';
-
-new EventFlowChartPlugin().configure({ key: 'event-flow' }).register();
-
-export default {
- examples: [...Stories],
-};
diff --git a/yarn.lock b/yarn.lock
index 1895d79552..086f4f70d1 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -907,6 +907,14 @@
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
"@babel/helper-plugin-utils" "^7.8.3"
+"@babel/polyfill@^7.0.0":
+ version "7.8.7"
+ resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.8.7.tgz#151ec24c7135481336168c3bd8b8bf0cf91c032f"
+ integrity sha512-LeSfP9bNZH2UOZgcGcZ0PIHUt1ZuHub1L3CVmEyqLxCeDLm4C5Gi8jRH8ZX2PNpDhQCo0z6y/+DIs2JlliXW8w==
+ dependencies:
+ core-js "^2.6.5"
+ regenerator-runtime "^0.13.4"
+
"@babel/preset-env@^7.4.5", "@babel/preset-env@^7.9.0":
version "7.9.0"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.0.tgz#a5fc42480e950ae8f5d9f8f2bbc03f52722df3a8"
@@ -1012,7 +1020,7 @@
"@babel/helper-plugin-utils" "^7.8.3"
"@babel/plugin-transform-typescript" "^7.9.0"
-"@babel/runtime-corejs2@^7.0.0":
+"@babel/runtime-corejs2@^7.0.0", "@babel/runtime-corejs2@^7.1.5":
version "7.9.6"
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.9.6.tgz#acd5d6351384cc2828dc211aa5426a90476bf4a8"
integrity sha512-TcdM3xc7weMrwTawuG3BTjtVE3mQLXUPQ9CxTbSKOrhn3QAcqCJ2fz+IIv25wztzUnhNZat7hr655YJa61F3zg==
@@ -1408,6 +1416,50 @@
dependencies:
find-up "^2.1.0"
+"@data-ui/event-flow@^0.0.84":
+ version "0.0.84"
+ resolved "https://registry.yarnpkg.com/@data-ui/event-flow/-/event-flow-0.0.84.tgz#dbabdc4a397c8c63774424f0356a90ae7eff19b9"
+ integrity sha512-XOOYvpRMAT1r66dnGsrnQ+VEZVtY56np/wxzHcW7iqvvvxefvbkjGMUe0rAbMeSg17hjUfDQTBIBvf3uiVIQTA==
+ dependencies:
+ "@babel/polyfill" "^7.0.0"
+ "@babel/runtime-corejs2" "^7.1.5"
+ "@data-ui/forms" "^0.0.84"
+ "@data-ui/radial-chart" "^0.0.84"
+ "@data-ui/theme" "^0.0.84"
+ "@vx/axis" "0.0.140"
+ "@vx/bounds" "0.0.140"
+ "@vx/clip-path" "0.0.140"
+ "@vx/glyph" "0.0.140"
+ "@vx/gradient" "0.0.140"
+ "@vx/grid" "0.0.140"
+ "@vx/group" "0.0.140"
+ "@vx/legend" "0.0.140"
+ "@vx/pattern" "0.0.140"
+ "@vx/point" "0.0.136"
+ "@vx/responsive" "0.0.140"
+ "@vx/scale" "0.0.140"
+ "@vx/shape" "0.0.140"
+ "@vx/tooltip" "0.0.140"
+ aphrodite "^1.2.0"
+ d3-array "^1.2.0"
+ d3-format "^1.2.0"
+ d3-selection "^1.1.0"
+ d3-zoom "^1.3.0"
+ immutable "^3.8.1"
+ prop-types "^15.5.10"
+ react-split-pane "^0.1.63"
+ react-with-styles "^1.3.0"
+ react-with-styles-interface-aphrodite "^1.2.0"
+ recompose "^0.23.5"
+
+"@data-ui/forms@^0.0.84":
+ version "0.0.84"
+ resolved "https://registry.yarnpkg.com/@data-ui/forms/-/forms-0.0.84.tgz#d7b7b132b3f825700a4348a3905dd1e0a9711243"
+ integrity sha512-c6AEV4XDsIGT0+gwe8MNfRldtZfZaCs+ge2R1p9fkRwQd/nu8dJFVspuu0/EyHBtjm1F9y+6Drs3yyLFK3M+ug==
+ dependencies:
+ prop-types "^15.5.10"
+ react-select "^1.2.1"
+
"@data-ui/histogram@^0.0.84":
version "0.0.84"
resolved "https://registry.yarnpkg.com/@data-ui/histogram/-/histogram-0.0.84.tgz#07738698bbb62dc5845a954b3b547df3e1d3498e"
@@ -1431,6 +1483,20 @@
prop-types "^15.5.10"
react-move "^2.1.0"
+"@data-ui/radial-chart@^0.0.84":
+ version "0.0.84"
+ resolved "https://registry.yarnpkg.com/@data-ui/radial-chart/-/radial-chart-0.0.84.tgz#82edbcb0e722787a0004a33810159c90f0a38ad8"
+ integrity sha512-YKvcrtXD+RnZIngB398exuGICIwbQeVbV3Sbqg6txd4dVN9ixsvOFHCaNO5ugqMcyVeFGpMZAtGeau5kUZa73Q==
+ dependencies:
+ "@data-ui/shared" "^0.0.84"
+ "@data-ui/theme" "^0.0.84"
+ "@vx/event" "0.0.140"
+ "@vx/group" "0.0.140"
+ "@vx/scale" "0.0.140"
+ "@vx/shape" "0.0.140"
+ "@vx/tooltip" "0.0.140"
+ prop-types "^15.5.10"
+
"@data-ui/shared@^0.0.84":
version "0.0.84"
resolved "https://registry.yarnpkg.com/@data-ui/shared/-/shared-0.0.84.tgz#42bd025d677f9be2beada3e1a84a53d33ac0eb10"
@@ -3852,6 +3918,17 @@
semver "^6.3.0"
tsutils "^3.17.1"
+"@vx/axis@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/axis/-/axis-0.0.140.tgz#aad557c281c6cc21c1516977301552c7052e5224"
+ integrity sha1-qtVXwoHGzCHBUWl3MBVSxwUuUiQ=
+ dependencies:
+ "@vx/group" "0.0.140"
+ "@vx/point" "0.0.136"
+ "@vx/shape" "0.0.140"
+ classnames "^2.2.5"
+ prop-types "15.5.10"
+
"@vx/axis@^0.0.175":
version "0.0.175"
resolved "https://registry.yarnpkg.com/@vx/axis/-/axis-0.0.175.tgz#312c07b81e8b043876436cab3bd8e90f30a1f7ec"
@@ -3890,6 +3967,13 @@
classnames "^2.2.5"
prop-types "^15.6.0"
+"@vx/bounds@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/bounds/-/bounds-0.0.140.tgz#4ede9766aabb41b791a4fbf4c27fcc19ed83f910"
+ integrity sha1-Tt6XZqq7QbeRpPv0wn/MGe2D+RA=
+ dependencies:
+ prop-types "^15.5.10"
+
"@vx/bounds@0.0.165":
version "0.0.165"
resolved "https://registry.yarnpkg.com/@vx/bounds/-/bounds-0.0.165.tgz#75f107a6deb58223c6878db5053382eff3174567"
@@ -3897,11 +3981,23 @@
dependencies:
prop-types "^15.5.10"
+"@vx/clip-path@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/clip-path/-/clip-path-0.0.140.tgz#b2623d004dd5c3c8a6afe8d060de59df51472d94"
+ integrity sha1-smI9AE3Vw8imr+jQYN5Z31FHLZQ=
+
"@vx/clip-path@0.0.165":
version "0.0.165"
resolved "https://registry.yarnpkg.com/@vx/clip-path/-/clip-path-0.0.165.tgz#93cd65cc6a35319c7e403ce7b973ac1c8045b741"
integrity sha512-mBCbgguLMVyGvar5FbxqyyY4NQFlnXoSLF0TrhgWYkF/FCXdE1CzBC+Y4iXIJOY0ZTtluqL9XrNdIDpx49AmuA==
+"@vx/curve@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/curve/-/curve-0.0.140.tgz#29ef388e8b3718213d66a896d569dc1ebc8edf89"
+ integrity sha1-Ke84jos3GCE9ZqiW1WncHryO34k=
+ dependencies:
+ d3-shape "^1.0.6"
+
"@vx/curve@0.0.165", "@vx/curve@^0.0.165":
version "0.0.165"
resolved "https://registry.yarnpkg.com/@vx/curve/-/curve-0.0.165.tgz#330d1512dceae0af43dd3eb4c85523132030a3a0"
@@ -3917,6 +4013,13 @@
"@types/d3-shape" "^1.3.1"
d3-shape "^1.0.6"
+"@vx/event@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/event/-/event-0.0.140.tgz#658ec4de92cd61df40b883296168d4e0824015bf"
+ integrity sha1-ZY7E3pLNYd9AuIMpYWjU4IJAFb8=
+ dependencies:
+ "@vx/point" "0.0.136"
+
"@vx/event@^0.0.165":
version "0.0.165"
resolved "https://registry.yarnpkg.com/@vx/event/-/event-0.0.165.tgz#675d89fdfdc08d0c99c36ff1a381ea50fccfba2e"
@@ -3931,6 +4034,15 @@
dependencies:
"@vx/point" "0.0.165"
+"@vx/glyph@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/glyph/-/glyph-0.0.140.tgz#f8323f82aee22192b675bef25789bbb7d74691ba"
+ integrity sha1-+DI/gq7iIZK2db7yV4m7t9dGkbo=
+ dependencies:
+ "@vx/group" "0.0.140"
+ classnames "^2.2.5"
+ d3-shape "^1.2.0"
+
"@vx/glyph@^0.0.165":
version "0.0.165"
resolved "https://registry.yarnpkg.com/@vx/glyph/-/glyph-0.0.165.tgz#ba6fe31700dae852c60468e00dd732fa7521d1fc"
@@ -3950,6 +4062,14 @@
d3-shape "^1.2.0"
prop-types "^15.6.2"
+"@vx/gradient@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/gradient/-/gradient-0.0.140.tgz#56b421016cbae0dcb00190cfffb9e860a28febf4"
+ integrity sha1-VrQhAWy64NywAZDP/7noYKKP6/Q=
+ dependencies:
+ classnames "^2.2.5"
+ prop-types "^15.5.7"
+
"@vx/gradient@^0.0.165":
version "0.0.165"
resolved "https://registry.yarnpkg.com/@vx/gradient/-/gradient-0.0.165.tgz#0cc0fe873e6acded4943fa274f68601ad5a50a38"
@@ -3958,6 +4078,16 @@
classnames "^2.2.5"
prop-types "^15.5.7"
+"@vx/grid@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/grid/-/grid-0.0.140.tgz#9dfd3071bc5d90d4b457dd55d7f795699233b230"
+ integrity sha1-nf0wcbxdkNS0V91V1/eVaZIzsjA=
+ dependencies:
+ "@vx/group" "0.0.140"
+ "@vx/point" "0.0.136"
+ "@vx/shape" "0.0.140"
+ classnames "^2.2.5"
+
"@vx/grid@^0.0.180":
version "0.0.180"
resolved "https://registry.yarnpkg.com/@vx/grid/-/grid-0.0.180.tgz#31f2f73c9055d0ab2bf38f03a0c7dc47b9c12327"
@@ -3969,6 +4099,13 @@
classnames "^2.2.5"
prop-types "^15.6.2"
+"@vx/group@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/group/-/group-0.0.140.tgz#cba9b0b3f2f007e5be7346f3c86f73f70e038a23"
+ integrity sha1-y6mws/LwB+W+c0bzyG9z9w4DiiM=
+ dependencies:
+ classnames "^2.2.5"
+
"@vx/group@0.0.165", "@vx/group@^0.0.165":
version "0.0.165"
resolved "https://registry.yarnpkg.com/@vx/group/-/group-0.0.165.tgz#2342523225de94859b5be49c3072dc6bb6795e78"
@@ -3993,6 +4130,15 @@
classnames "^2.2.5"
prop-types "^15.6.2"
+"@vx/legend@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/legend/-/legend-0.0.140.tgz#4062c27d6bc9c4d607309d77eff12b844727ae99"
+ integrity sha1-QGLCfWvJxNYHMJ137/ErhEcnrpk=
+ dependencies:
+ "@vx/group" "0.0.140"
+ classnames "^2.2.5"
+ prop-types "^15.5.10"
+
"@vx/legend@^0.0.196":
version "0.0.196"
resolved "https://registry.yarnpkg.com/@vx/legend/-/legend-0.0.196.tgz#ff709fb283b8569f96015f3c52c9f8846779d5c7"
@@ -4005,6 +4151,14 @@
classnames "^2.2.5"
prop-types "^15.5.10"
+"@vx/pattern@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/pattern/-/pattern-0.0.140.tgz#f49f57c6f13cb5b3baaa5bbec174c5d3aa782da7"
+ integrity sha1-9J9XxvE8tbO6qlu+wXTF06p4Lac=
+ dependencies:
+ classnames "^2.2.5"
+ prop-types "^15.5.10"
+
"@vx/pattern@^0.0.165":
version "0.0.165"
resolved "https://registry.yarnpkg.com/@vx/pattern/-/pattern-0.0.165.tgz#0d317cb9a13205e35691f702442739ff0256711d"
@@ -4021,6 +4175,11 @@
classnames "^2.2.5"
prop-types "^15.5.10"
+"@vx/point@0.0.136":
+ version "0.0.136"
+ resolved "https://registry.yarnpkg.com/@vx/point/-/point-0.0.136.tgz#93b325b4b95c9d5b96df740f4204017f57396559"
+ integrity sha1-k7MltLlcnVuW33QPQgQBf1c5ZVk=
+
"@vx/point@0.0.165", "@vx/point@^0.0.165":
version "0.0.165"
resolved "https://registry.yarnpkg.com/@vx/point/-/point-0.0.165.tgz#7ebde5da3d86954fe31a56f923f31550f0b4b867"
@@ -4031,6 +4190,13 @@
resolved "https://registry.yarnpkg.com/@vx/point/-/point-0.0.196.tgz#68c3c18dd09a5254f67f8c4b245d554d2c5d4502"
integrity sha512-dya1cwMwqQtRP+oQwC5x0N2bCiKENGqDd6Y4IuAKwkWMvxpjOAPoOlglZ9QKLDPzftUqLFxrjrsT5RlHTxyKnw==
+"@vx/responsive@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/responsive/-/responsive-0.0.140.tgz#c73ec68b9e89a181605f1ac9ecc09f35216779a8"
+ integrity sha1-xz7Gi56JoYFgXxrJ7MCfNSFneag=
+ dependencies:
+ lodash "^4.0.8"
+
"@vx/responsive@^0.0.192":
version "0.0.192"
resolved "https://registry.yarnpkg.com/@vx/responsive/-/responsive-0.0.192.tgz#721d032bec38b9e3ff5fde2e4d5d8ee5a81cc517"
@@ -4051,6 +4217,13 @@
prop-types "^15.6.1"
resize-observer-polyfill "1.5.1"
+"@vx/scale@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/scale/-/scale-0.0.140.tgz#1eb087d11d0000b250c2cdc4061b9e2212edb10d"
+ integrity sha1-HrCH0R0AALJQws3EBhueIhLtsQ0=
+ dependencies:
+ d3-scale "^1.0.5"
+
"@vx/scale@0.0.165", "@vx/scale@^0.0.165":
version "0.0.165"
resolved "https://registry.yarnpkg.com/@vx/scale/-/scale-0.0.165.tgz#8575880c48296a80c0e9459057f826e8f903bc07"
@@ -4073,6 +4246,18 @@
"@types/d3-scale" "^2.1.1"
d3-scale "^2.2.2"
+"@vx/shape@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/shape/-/shape-0.0.140.tgz#6a282d5fdf3a5752b6e938bb3debe983e89ff6d3"
+ integrity sha1-aigtX986V1K26Ti7Pevpg+if9tM=
+ dependencies:
+ "@vx/curve" "0.0.140"
+ "@vx/group" "0.0.140"
+ "@vx/point" "0.0.136"
+ classnames "^2.2.5"
+ d3-shape "^1.2.0"
+ prop-types "^15.5.10"
+
"@vx/shape@0.0.170":
version "0.0.170"
resolved "https://registry.yarnpkg.com/@vx/shape/-/shape-0.0.170.tgz#55cf5968f7a6465484aac1a5541275b4813bb9a2"
@@ -4218,6 +4403,15 @@
classnames "^2.2.5"
prop-types "^15.5.10"
+"@vx/tooltip@0.0.140":
+ version "0.0.140"
+ resolved "https://registry.yarnpkg.com/@vx/tooltip/-/tooltip-0.0.140.tgz#c5c8306272877c1bbd4e8b478ea5291f1019ffe3"
+ integrity sha1-xcgwYnKHfBu9TotHjqUpHxAZ/+M=
+ dependencies:
+ "@vx/bounds" "0.0.140"
+ classnames "^2.2.5"
+ prop-types "^15.5.10"
+
"@vx/tooltip@0.0.165", "@vx/tooltip@^0.0.165":
version "0.0.165"
resolved "https://registry.yarnpkg.com/@vx/tooltip/-/tooltip-0.0.165.tgz#0d17a1b445a7bc70d7840e36593b780a6e7b40e2"
@@ -4669,6 +4863,15 @@ anymatch@^3.0.3:
normalize-path "^3.0.0"
picomatch "^2.0.4"
+aphrodite@^1.2.0:
+ version "1.2.5"
+ resolved "https://registry.yarnpkg.com/aphrodite/-/aphrodite-1.2.5.tgz#8358c36c80bb03aee9b97165aaa70186225b4983"
+ integrity sha1-g1jDbIC7A67puXFlqqcBhiJbSYM=
+ dependencies:
+ asap "^2.0.3"
+ inline-style-prefixer "^3.0.1"
+ string-hash "^1.1.3"
+
app-root-dir@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118"
@@ -4757,6 +4960,11 @@ array-flatten@1.1.1:
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
+array-flatten@^2.1.0:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
+ integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
+
array-ify@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
@@ -4838,7 +5046,7 @@ arrify@^2.0.1:
resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa"
integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
-asap@^2.0.0, asap@~2.0.3:
+asap@^2.0.0, asap@^2.0.3, asap@~2.0.3:
version "2.0.6"
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
@@ -5475,6 +5683,11 @@ bootstrap@^3.4.1:
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.4.1.tgz#c3a347d419e289ad11f4033e3c4132b87c081d72"
integrity sha512-yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA==
+bowser@^1.7.3:
+ version "1.9.4"
+ resolved "https://registry.yarnpkg.com/bowser/-/bowser-1.9.4.tgz#890c58a2813a9d3243704334fa81b96a5c150c9a"
+ integrity sha512-9IdMmj2KjigRq6oWhmwv1W36pDuA4STQZ8q6YO9um+x07xgYNCD3Oou+WP/3L1HNz7iqythGet3/p4wvc8AAwQ==
+
boxen@^4.1.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64"
@@ -5944,6 +6157,11 @@ change-case@^3.1.0:
upper-case "^1.1.1"
upper-case-first "^1.1.0"
+change-emitter@^0.1.2:
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/change-emitter/-/change-emitter-0.1.6.tgz#e8b2fe3d7f1ab7d69a32199aff91ea6931409515"
+ integrity sha1-6LL+PX8at9aaMhma/5HqaTFAlRU=
+
character-entities-legacy@^1.0.0:
version "1.1.4"
resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1"
@@ -6042,7 +6260,7 @@ class-utils@^0.3.5:
isobject "^3.0.0"
static-extend "^0.1.1"
-classnames@^2.2.5:
+classnames@^2.2.4, classnames@^2.2.5:
version "2.2.6"
resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce"
integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==
@@ -6836,6 +7054,14 @@ crypto-browserify@^3.11.0:
randombytes "^2.0.0"
randomfill "^1.0.3"
+css-in-js-utils@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/css-in-js-utils/-/css-in-js-utils-2.0.1.tgz#3b472b398787291b47cfe3e44fecfdd9e914ba99"
+ integrity sha512-PJF0SpJT+WdbVVt0AOYp9C8GnuruRlL/UFW7932nLWmFLQTaWEzTBQEx7/hn4BuV+WON75iAViSUJLiU3PKbpA==
+ dependencies:
+ hyphenate-style-name "^1.0.2"
+ isobject "^3.0.1"
+
css-loader@^3.0.0:
version "3.4.2"
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.4.2.tgz#d3fdb3358b43f233b78501c5ed7b1c6da6133202"
@@ -7011,6 +7237,14 @@ d3-dispatch@1, d3-dispatch@^1.0.3:
resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-1.0.6.tgz#00d37bcee4dd8cd97729dd893a0ac29caaba5d58"
integrity sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==
+d3-drag@1:
+ version "1.2.5"
+ resolved "https://registry.yarnpkg.com/d3-drag/-/d3-drag-1.2.5.tgz#2537f451acd39d31406677b7dc77c82f7d988f70"
+ integrity sha512-rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w==
+ dependencies:
+ d3-dispatch "1"
+ d3-selection "1"
+
d3-dsv@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-1.2.0.tgz#9d5f75c3a5f8abd611f74d3f5847b0d4338b885c"
@@ -7034,7 +7268,7 @@ d3-force@^2.0.1:
d3-quadtree "1"
d3-timer "1"
-d3-format@1, d3-format@^1.1.1, d3-format@^1.3.2, d3-format@^1.4.2, d3-format@^1.4.3:
+d3-format@1, d3-format@^1.1.1, d3-format@^1.2.0, d3-format@^1.3.2, d3-format@^1.4.2, d3-format@^1.4.3:
version "1.4.4"
resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.4.tgz#356925f28d0fd7c7983bfad593726fce46844030"
integrity sha512-TWks25e7t8/cqctxCmxpUuzZN11QxIA7YrMbram94zMQ0PXjE4LVIMe/f6a4+xxL8HQ3OsAFULOINQi1pE62Aw==
@@ -7118,7 +7352,7 @@ d3-sankey@^0.4.2:
d3-collection "1"
d3-interpolate "1"
-d3-scale@^1.0.6:
+d3-scale@^1.0.5, d3-scale@^1.0.6:
version "1.0.7"
resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-1.0.7.tgz#fa90324b3ea8a776422bd0472afab0b252a0945d"
integrity sha512-KvU92czp2/qse5tUfGms6Kjig0AhHOwkzXG0+PqIJB3ke0WUv088AHMZI0OssO9NCkXt4RP8yju9rpH8aGB7Lw==
@@ -7154,7 +7388,7 @@ d3-scale@^3.0.0, d3-scale@^3.0.1, d3-scale@^3.2.1:
d3-time "1"
d3-time-format "2"
-d3-selection@^1.0.3, d3-selection@^1.1.0, d3-selection@^1.3.0, d3-selection@^1.4.0:
+d3-selection@1, d3-selection@^1.0.3, d3-selection@^1.1.0, d3-selection@^1.3.0, d3-selection@^1.4.0:
version "1.4.1"
resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-1.4.1.tgz#98eedbbe085fbda5bafa2f9e3f3a2f4d7d622a98"
integrity sha512-BTIbRjv/m5rcVTfBs4AMBLKs4x8XaaLkwm28KWu9S2vKNqXkXt2AH2Qf0sdPZHjFxcWg/YL53zcqAz+3g4/7PA==
@@ -7196,7 +7430,7 @@ d3-tip@^0.9.1:
d3-collection "^1.0.4"
d3-selection "^1.3.0"
-d3-transition@^1.0.4:
+d3-transition@1, d3-transition@^1.0.4:
version "1.3.2"
resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-1.3.2.tgz#a98ef2151be8d8600543434c1ca80140ae23b398"
integrity sha512-sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA==
@@ -7213,6 +7447,17 @@ d3-voronoi@^1.1.2:
resolved "https://registry.yarnpkg.com/d3-voronoi/-/d3-voronoi-1.1.4.tgz#dd3c78d7653d2bb359284ae478645d95944c8297"
integrity sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==
+d3-zoom@^1.3.0:
+ version "1.8.3"
+ resolved "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-1.8.3.tgz#b6a3dbe738c7763121cd05b8a7795ffe17f4fc0a"
+ integrity sha512-VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ==
+ dependencies:
+ d3-dispatch "1"
+ d3-drag "1"
+ d3-interpolate "1"
+ d3-selection "1"
+ d3-transition "1"
+
d3@3, d3@^3.5.17, d3@^3.5.6:
version "3.5.17"
resolved "https://registry.yarnpkg.com/d3/-/d3-3.5.17.tgz#bc46748004378b21a360c9fc7cf5231790762fb8"
@@ -7368,6 +7613,11 @@ deep-object-diff@^1.1.0:
resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a"
integrity sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==
+deepmerge@^1.3.2:
+ version "1.5.2"
+ resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-1.5.2.tgz#10499d868844cdad4fee0842df8c7f6f0c95a753"
+ integrity sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==
+
deepmerge@^4.2.2:
version "4.2.2"
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
@@ -8764,7 +9014,7 @@ fb-watchman@^2.0.0:
dependencies:
bser "2.1.1"
-fbjs@^0.8.4:
+fbjs@^0.8.1, fbjs@^0.8.4, fbjs@^0.8.9:
version "0.8.17"
resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd"
integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=
@@ -9519,6 +9769,14 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, gl
once "^1.3.0"
path-is-absolute "^1.0.0"
+global-cache@^1.2.0:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/global-cache/-/global-cache-1.2.1.tgz#39ca020d3dd7b3f0934c52b75363f8d53312c16d"
+ integrity sha512-EOeUaup5DgWKlCMhA9YFqNRIlZwoxt731jCh47WBV9fQqHgXhr3Fa55hfgIUqilIcPsfdNKN7LHjrNY+Km40KA==
+ dependencies:
+ define-properties "^1.1.2"
+ is-symbol "^1.0.1"
+
global-dirs@^0.1.1:
version "0.1.1"
resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
@@ -9850,6 +10108,11 @@ hmac-drbg@^1.0.0:
minimalistic-assert "^1.0.0"
minimalistic-crypto-utils "^1.0.1"
+hoist-non-react-statics@^1.0.0, hoist-non-react-statics@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb"
+ integrity sha1-qkSM8JhtVcxAdzsXF0t90GbLfPs=
+
hoist-non-react-statics@^3.3.0:
version "3.3.2"
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
@@ -10048,6 +10311,11 @@ hygen@^5.0.3:
ts-jest "^24.1.0"
yargs-parser "^13.0.0"
+hyphenate-style-name@^1.0.2:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.3.tgz#097bb7fa0b8f1a9cf0bd5c734cf95899981a9b48"
+ integrity sha512-EcuixamT82oplpoJ2XU4pDtKGWQ7b00CD9f1ug9IaQ3p1bkHMiKCZ9ut9QDI6qsa6cpUuB+A/I+zLtdNK4n2DQ==
+
i18next@^19.3.3:
version "19.3.4"
resolved "https://registry.yarnpkg.com/i18next/-/i18next-19.3.4.tgz#512de50ee6075df825c646e1ce646a104f0938c9"
@@ -10113,7 +10381,7 @@ immer@1.10.0:
resolved "https://registry.yarnpkg.com/immer/-/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d"
integrity sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==
-immutable@^3.8.2:
+immutable@^3.8.1, immutable@^3.8.2:
version "3.8.2"
resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3"
integrity sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=
@@ -10255,6 +10523,14 @@ init-package-json@^1.10.3:
validate-npm-package-license "^3.0.1"
validate-npm-package-name "^3.0.0"
+inline-style-prefixer@^3.0.1:
+ version "3.0.8"
+ resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-3.0.8.tgz#8551b8e5b4d573244e66a34b04f7d32076a2b534"
+ integrity sha1-hVG45bTVcyROZqNLBPfTIHaitTQ=
+ dependencies:
+ bowser "^1.7.3"
+ css-in-js-utils "^2.0.0"
+
inquirer@6.2.0:
version "6.2.0"
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.0.tgz#51adcd776f661369dc1e894859c2560a224abdd8"
@@ -10717,7 +10993,7 @@ is-subset@^0.1.1:
resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6"
integrity sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=
-is-symbol@^1.0.2, is-symbol@^1.0.3:
+is-symbol@^1.0.1, is-symbol@^1.0.2, is-symbol@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
@@ -11822,7 +12098,7 @@ lodash@4.17.14:
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba"
integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==
-lodash@^4.0.1, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4, lodash@^4.2.1:
+lodash@^4.0.1, lodash@^4.0.8, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4, lodash@^4.2.1:
version "4.17.15"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
@@ -14037,7 +14313,15 @@ prop-types-extra@^1.0.1:
react-is "^16.3.2"
warning "^4.0.0"
-prop-types@^15.5.0, prop-types@^15.5.10, prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2:
+prop-types@15.5.10:
+ version "15.5.10"
+ resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154"
+ integrity sha1-J5ffwxJhguOpXj37suiT3ddFYVQ=
+ dependencies:
+ fbjs "^0.8.9"
+ loose-envify "^1.3.1"
+
+prop-types@^15.5.0, prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2:
version "15.7.2"
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
@@ -14442,7 +14726,7 @@ react-hotkeys@2.0.0:
dependencies:
prop-types "^15.6.1"
-react-input-autosize@^2.2.2:
+react-input-autosize@^2.1.2, react-input-autosize@^2.2.2:
version "2.2.2"
resolved "https://registry.yarnpkg.com/react-input-autosize/-/react-input-autosize-2.2.2.tgz#fcaa7020568ec206bc04be36f4eb68e647c4d8c2"
integrity sha512-jQJgYCA3S0j+cuOwzuCd1OjmBmnZLdqQdiLKRYrsMMzbjUrVDS5RvJUDwJqA7sKuksDuzFtm6hZGKFu7Mjk5aw==
@@ -14538,6 +14822,15 @@ react-prop-types@^0.4.0:
dependencies:
warning "^3.0.0"
+react-select@^1.2.1:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/react-select/-/react-select-1.3.0.tgz#1828ad5bf7f3e42a835c7e2d8cb13b5c20714876"
+ integrity sha512-g/QAU1HZrzSfxkwMAo/wzi6/ezdWye302RGZevsATec07hI/iSxcpB1hejFIp7V63DJ8mwuign6KmB3VjdlinQ==
+ dependencies:
+ classnames "^2.2.4"
+ prop-types "^15.5.8"
+ react-input-autosize "^2.1.2"
+
react-select@^3.0.8:
version "3.1.0"
resolved "https://registry.yarnpkg.com/react-select/-/react-select-3.1.0.tgz#ab098720b2e9fe275047c993f0d0caf5ded17c27"
@@ -14562,6 +14855,22 @@ react-sizeme@^2.6.7:
shallowequal "^1.1.0"
throttle-debounce "^2.1.0"
+react-split-pane@^0.1.63:
+ version "0.1.91"
+ resolved "https://registry.yarnpkg.com/react-split-pane/-/react-split-pane-0.1.91.tgz#18b9ef23b2ff225c957f77b6b096e458d85312ae"
+ integrity sha512-8U56HOKQGFlvXXT1PaHbijjYy2W8g0iQaHC99Q2aV4yYfvUURcRGyfPKN3scGkbYN2pvy3qyoEwHyewUmR1VbQ==
+ dependencies:
+ prop-types "^15.7.2"
+ react-lifecycles-compat "^3.0.4"
+ react-style-proptype "^3.2.2"
+
+react-style-proptype@^3.2.2:
+ version "3.2.2"
+ resolved "https://registry.yarnpkg.com/react-style-proptype/-/react-style-proptype-3.2.2.tgz#d8e998e62ce79ec35b087252b90f19f1c33968a0"
+ integrity sha512-ywYLSjNkxKHiZOqNlso9PZByNEY+FTyh3C+7uuziK0xFXu9xzdyfHwg4S9iyiRRoPCR4k2LqaBBsWVmSBwCWYQ==
+ dependencies:
+ prop-types "^15.5.4"
+
react-syntax-highlighter@^11.0.2:
version "11.0.2"
resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-11.0.2.tgz#4e3f376e752b20d2f54e4c55652fd663149e4029"
@@ -14616,6 +14925,24 @@ react-virtualized-auto-sizer@^1.0.2:
resolved "https://registry.yarnpkg.com/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.2.tgz#a61dd4f756458bbf63bd895a92379f9b70f803bd"
integrity sha512-MYXhTY1BZpdJFjUovvYHVBmkq79szK/k7V3MO+36gJkWGkrXKtyr4vCPtpphaTLRAdDNoYEYFZWE8LjN+PIHNg==
+react-with-styles-interface-aphrodite@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/react-with-styles-interface-aphrodite/-/react-with-styles-interface-aphrodite-1.2.0.tgz#22a0a7d392d8f91a891f722d4c992f4c80f5a129"
+ integrity sha1-IqCn05LY+RqJH3ItTJkvTID1oSk=
+ dependencies:
+ array-flatten "^2.1.0"
+ has "^1.0.1"
+
+react-with-styles@^1.3.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/react-with-styles/-/react-with-styles-1.4.0.tgz#a05b311e82b49b1e69b787af82d0a29c6e2b0731"
+ integrity sha1-oFsxHoK0mx5pt4evgtCinG4rBzE=
+ dependencies:
+ deepmerge "^1.3.2"
+ global-cache "^1.2.0"
+ hoist-non-react-statics "^1.2.0"
+ prop-types "^15.5.8"
+
react@^16.13.1, react@^16.8.3:
version "16.13.1"
resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e"
@@ -14821,6 +15148,16 @@ rechoir@^0.6.2:
dependencies:
resolve "^1.1.6"
+recompose@^0.23.5:
+ version "0.23.5"
+ resolved "https://registry.yarnpkg.com/recompose/-/recompose-0.23.5.tgz#72ac8261246bec378235d187467d02a721e8b1de"
+ integrity sha1-cqyCYSRr7DeCNdGHRn0CpyHosd4=
+ dependencies:
+ change-emitter "^0.1.2"
+ fbjs "^0.8.1"
+ hoist-non-react-statics "^1.0.0"
+ symbol-observable "^1.0.4"
+
recursive-readdir@2.2.2:
version "2.2.2"
resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f"
@@ -16073,6 +16410,11 @@ string-argv@0.3.1:
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
+string-hash@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
+ integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
+
string-length@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/string-length/-/string-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837"
@@ -16416,6 +16758,11 @@ swap-case@^1.1.0:
lower-case "^1.1.1"
upper-case "^1.1.1"
+symbol-observable@^1.0.4:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
+ integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
+
symbol-tree@^3.2.2:
version "3.2.4"
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"