diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 162878aa3..20f1a423e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -115,11 +115,13 @@ jobs: working-directory: dist - name: Install Galata - run: yarn install + run: | + yarn install + yarn playwright install chromium working-directory: ui-tests - name: Launch JupyterLab - run: yarn run start-jlab:detached + run: yarn run start:detached working-directory: ui-tests - name: Wait for JupyterLab @@ -137,7 +139,20 @@ jobs: uses: actions/upload-artifact@v2 with: name: ui-test-output - path: ui-tests/test-output + path: ui-tests/playwright-report + + - name: Update snapshots + if: failure() + run: | + cd ui-tests + yarn run test:update + + - name: Upload updated snapshots + if: failure() + uses: actions/upload-artifact@v2 + with: + name: ipywidgets-updated-snapshots + path: ui-tests/tests install: runs-on: ${{ matrix.os }}-latest diff --git a/.gitignore b/.gitignore index 32aee2c71..b0e4fec2b 100644 --- a/.gitignore +++ b/.gitignore @@ -26,7 +26,8 @@ pip-log.txt .coverage .tox nosetests.xml -ui-tests/test-output/* +ui-tests/test-results +ui-tests/playwright-report # Translations *.mo diff --git a/test-environment.yml b/test-environment.yml index 5f0c20f18..08dcddea0 100644 --- a/test-environment.yml +++ b/test-environment.yml @@ -12,8 +12,8 @@ dependencies: - pandas >=1.0.0,<2.0.0 - bqscales >=0.2.2,<0.3 - scipy - - jupyterlab=3.0.11 # to build the lab federated bundle - - jupyter-packaging # to build the wheel + - jupyterlab=3.2 + - jupyter-packaging - pytest - nbval - pytest-cov diff --git a/ui-tests/galata-config.json b/ui-tests/galata-config.json deleted file mode 100644 index add5f97da..000000000 --- a/ui-tests/galata-config.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "testId": "test" -} diff --git a/ui-tests/jupyter_server_config.py b/ui-tests/jupyter_server_config.py index 7cef023b8..b0da736ec 100644 --- a/ui-tests/jupyter_server_config.py +++ b/ui-tests/jupyter_server_config.py @@ -1,7 +1,10 @@ +from tempfile import mkdtemp + c.ServerApp.port = 8888 c.ServerApp.token = "" c.ServerApp.password = "" c.ServerApp.disable_check_xsrf = True c.ServerApp.open_browser = False -c.LabApp.open_browser = False +c.ServerApp.root_dir = mkdtemp(prefix='galata-test-') + c.LabApp.expose_app_in_browser = True diff --git a/ui-tests/package.json b/ui-tests/package.json index c74a534e9..a06bf8bbd 100644 --- a/ui-tests/package.json +++ b/ui-tests/package.json @@ -4,16 +4,17 @@ "description": "bqplot UI Tests", "private": true, "scripts": { - "start-jlab": "jupyter lab --config ./jupyter_server_config.py", - "start-jlab:detached": "yarn run start-jlab&", - "clean": "rimraf tests/notebooks/.ipynb_checkpoints && rimraf test-output", - "test": "yarn run clean && galata --image-match-threshold 0.33", - "update-references": "galata --update-references" + "start": "jupyter lab --config ./jupyter_server_config.py", + "start:detached": "yarn run start&", + "test": "playwright test", + "test:debug": "PWDEBUG=1 playwright test", + "test:report": "http-server ./playwright-report -a localhost -o", + "test:update": "playwright test --update-snapshots" }, "author": "bqplot", "license": "Apache-2.0", "dependencies": { - "@jupyterlab/galata": "3.0.11-2", + "@jupyterlab/galata": "~4.0.2", "klaw-sync": "^6.0.0", "rimraf": "^3.0.2" } diff --git a/ui-tests/playwright.config.js b/ui-tests/playwright.config.js new file mode 100644 index 000000000..6cf25a6fb --- /dev/null +++ b/ui-tests/playwright.config.js @@ -0,0 +1,7 @@ +const baseConfig = require('@jupyterlab/galata/lib/playwright-config'); + +module.exports = { + ...baseConfig, + timeout: 600000, + retries: 1, +}; diff --git a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_0.png deleted file mode 100644 index 7a506b7fb..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_1.png deleted file mode 100644 index b584739f9..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_2.png deleted file mode 100644 index 9a8b5dd7c..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_3.png deleted file mode 100644 index e95d00022..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_4.png deleted file mode 100644 index d31c71c66..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_5.png deleted file mode 100644 index dd29b734c..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_6.png deleted file mode 100644 index e5fcee02a..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_7.png deleted file mode 100644 index dd29b734c..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars2d_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_0.png deleted file mode 100644 index 11a0b1e87..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_1.png deleted file mode 100644 index 5863e3821..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_2.png deleted file mode 100644 index 59150efe6..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_3.png deleted file mode 100644 index 47d4a7ab5..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_4.png deleted file mode 100644 index 21d71f989..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_5.png deleted file mode 100644 index e987f66cc..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_0.png deleted file mode 100644 index b571b8c40..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_1.png deleted file mode 100644 index 8cb32741a..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_2.png deleted file mode 100644 index 89412806b..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_3.png deleted file mode 100644 index a2c96c529..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_4.png deleted file mode 100644 index b612681cd..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_5.png deleted file mode 100644 index 6c4d923ec..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_6.png deleted file mode 100644 index 4083a692e..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_7.png deleted file mode 100644 index f881b1da8..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_8.png deleted file mode 100644 index 4083a692e..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_bars_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_figure_pyplot_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_figure_pyplot_ipynb_cell_0.png deleted file mode 100644 index 3d77d2239..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_figure_pyplot_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_figure_pyplot_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_figure_pyplot_ipynb_cell_1.png deleted file mode 100644 index 118f6acce..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_figure_pyplot_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_figure_pyplot_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_figure_pyplot_ipynb_cell_2.png deleted file mode 100644 index a12ec21c6..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_figure_pyplot_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_graph_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_graph_ipynb_cell_0.png deleted file mode 100644 index b1b796123..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_graph_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_graph_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_graph_ipynb_cell_1.png deleted file mode 100644 index 3ad110388..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_graph_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_0.png deleted file mode 100644 index b0e3d0d7c..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_1.png deleted file mode 100644 index 13f440b89..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_2.png deleted file mode 100644 index 5bc56cc41..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_3.png deleted file mode 100644 index a2fc608cb..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_4.png deleted file mode 100644 index 42f6416a5..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_5.png deleted file mode 100644 index 9ac768de4..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_6.png deleted file mode 100644 index 9ac768de4..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_7.png deleted file mode 100644 index 9ac768de4..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_graph_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_0.png deleted file mode 100644 index 655c7c4ca..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_1.png deleted file mode 100644 index a9b354791..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_2.png deleted file mode 100644 index 51719b0fb..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_3.png deleted file mode 100644 index cea2ef544..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_4.png deleted file mode 100644 index 73682a398..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_0.png deleted file mode 100644 index 163e7a064..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_1.png deleted file mode 100644 index 199087eb9..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_2.png deleted file mode 100644 index 4f7a6886c..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_3.png deleted file mode 100644 index fa49c66a8..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_4.png deleted file mode 100644 index c8719bcae..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_5.png deleted file mode 100644 index 2b73e21b3..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_6.png deleted file mode 100644 index e7327bf19..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_7.png deleted file mode 100644 index 23ad41ed6..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_8.png deleted file mode 100644 index b269d3010..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_gridheatmap_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_0.png deleted file mode 100644 index bfb3bc837..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_1.png deleted file mode 100644 index 0af034409..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_2.png deleted file mode 100644 index f02197fbc..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_3.png deleted file mode 100644 index 71ecc63fd..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_4.png deleted file mode 100644 index c81cc813b..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_5.png deleted file mode 100644 index f51397764..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_6.png deleted file mode 100644 index d62e9aaac..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_7.png deleted file mode 100644 index f51397764..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_hist_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_lines_ipynb_cell_0.png deleted file mode 100644 index db5a82b1a..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_lines_ipynb_cell_1.png deleted file mode 100644 index 189551cb8..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_0.png deleted file mode 100644 index 133c1f3a6..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_1.png deleted file mode 100644 index 3e641dc9f..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_10.png b/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_10.png deleted file mode 100644 index a32c7a295..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_10.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_2.png deleted file mode 100644 index 0f984272e..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_3.png deleted file mode 100644 index c85e739e3..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_4.png deleted file mode 100644 index 1138ffe8a..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_5.png deleted file mode 100644 index 4a24a2484..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_6.png deleted file mode 100644 index f5aa76744..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_7.png deleted file mode 100644 index 0d500c0cf..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_8.png deleted file mode 100644 index ec2dd8120..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_9.png b/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_9.png deleted file mode 100644 index ba6860924..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_lines_update_ipynb_cell_9.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_map_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_map_ipynb_cell_0.png deleted file mode 100644 index 3215e12a1..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_map_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_0.png deleted file mode 100644 index 6fbc9f465..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_1.png deleted file mode 100644 index 0a25298e1..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_2.png deleted file mode 100644 index 27ea78dc7..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_3.png deleted file mode 100644 index 8fc9b6680..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_4.png deleted file mode 100644 index 8fc9b6680..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_5.png deleted file mode 100644 index f873a42a9..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_6.png deleted file mode 100644 index 2730439d2..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_7.png deleted file mode 100644 index 76332a377..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_8.png deleted file mode 100644 index 3684eae80..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_9.png b/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_9.png deleted file mode 100644 index c072acc7a..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ohlc_update_ipynb_cell_9.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_0.png deleted file mode 100644 index 2df5b04cb..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_1.png deleted file mode 100644 index f1c87e98f..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_2.png deleted file mode 100644 index 248257cb6..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_3.png deleted file mode 100644 index 2c78d5921..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ordinal_scale_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_0.png deleted file mode 100644 index ea0973ddf..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_1.png deleted file mode 100644 index 2bf599d17..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_10.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_10.png deleted file mode 100644 index 6408aa36a..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_10.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_11.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_11.png deleted file mode 100644 index 61c7346df..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_11.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_12.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_12.png deleted file mode 100644 index 3e026388e..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_12.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_13.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_13.png deleted file mode 100644 index 3efca4fef..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_13.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_14.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_14.png deleted file mode 100644 index 1d919d749..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_14.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_15.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_15.png deleted file mode 100644 index 7df202b6b..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_15.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_16.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_16.png deleted file mode 100644 index 478c730a3..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_16.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_17.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_17.png deleted file mode 100644 index 34eb7ce9b..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_17.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_18.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_18.png deleted file mode 100644 index 34eb7ce9b..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_18.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_19.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_19.png deleted file mode 100644 index 46a6d20d1..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_19.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_2.png deleted file mode 100644 index b808c3604..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_3.png deleted file mode 100644 index d8dc2f2f1..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_4.png deleted file mode 100644 index 9f7625436..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_5.png deleted file mode 100644 index cf832f744..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_6.png deleted file mode 100644 index 9f7625436..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_7.png deleted file mode 100644 index ebcb6e296..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_8.png deleted file mode 100644 index 2f96482d1..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_9.png b/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_9.png deleted file mode 100644 index 0bb3a23fe..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_pie_update_ipynb_cell_9.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_scatter_ipynb_cell_0.png deleted file mode 100644 index c9c6db401..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_scatter_ipynb_cell_1.png deleted file mode 100644 index f1c1c21c2..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_0.png deleted file mode 100644 index c9c6db401..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_1.png deleted file mode 100644 index 021471c87..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_10.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_10.png deleted file mode 100644 index 5ff6e0f10..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_10.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_11.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_11.png deleted file mode 100644 index c6f2df0e8..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_11.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_2.png deleted file mode 100644 index af630ec93..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_3.png deleted file mode 100644 index 783d017dc..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_4.png deleted file mode 100644 index af3e44e1d..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_5.png deleted file mode 100644 index 82d708534..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_6.png deleted file mode 100644 index 5411e4d7b..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_7.png deleted file mode 100644 index 3b8efd08c..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_8.png deleted file mode 100644 index 5411e4d7b..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_9.png b/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_9.png deleted file mode 100644 index c6f2df0e8..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_scatter_update_ipynb_cell_9.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_0.png deleted file mode 100644 index 3b126e2da..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_1.png deleted file mode 100644 index 8a28559a7..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_2.png deleted file mode 100644 index 0abf66552..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_3.png deleted file mode 100644 index e5526351d..000000000 Binary files a/ui-tests/reference-output/screenshots/dark_ticks_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_0.png deleted file mode 100644 index 8e2a6eea1..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_1.png deleted file mode 100644 index ef428e013..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_2.png deleted file mode 100644 index c973812a0..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_3.png deleted file mode 100644 index c4474b2cb..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_4.png deleted file mode 100644 index a32647616..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_5.png deleted file mode 100644 index c9d804bac..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_6.png deleted file mode 100644 index 29d8b1dc7..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_7.png deleted file mode 100644 index c9d804bac..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars2d_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_0.png deleted file mode 100644 index 1acbb7a23..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_1.png deleted file mode 100644 index 0bc2fd345..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_2.png deleted file mode 100644 index 5b37afd28..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_3.png deleted file mode 100644 index 58f2f6bf8..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_4.png deleted file mode 100644 index c3f784f81..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_5.png deleted file mode 100644 index a7487e751..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_0.png deleted file mode 100644 index b5c50a406..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_1.png deleted file mode 100644 index 3a7f7c222..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_2.png deleted file mode 100644 index 2d96ffe6b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_3.png deleted file mode 100644 index d2461d368..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_4.png deleted file mode 100644 index d94834705..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_5.png deleted file mode 100644 index f7b0eb40b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_6.png deleted file mode 100644 index 67219f8c1..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_7.png deleted file mode 100644 index ce6440a73..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_8.png deleted file mode 100644 index 67219f8c1..000000000 Binary files a/ui-tests/reference-output/screenshots/light_bars_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_figure_pyplot_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_figure_pyplot_ipynb_cell_0.png deleted file mode 100644 index fd8281cb2..000000000 Binary files a/ui-tests/reference-output/screenshots/light_figure_pyplot_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_figure_pyplot_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_figure_pyplot_ipynb_cell_1.png deleted file mode 100644 index 2a03f5a42..000000000 Binary files a/ui-tests/reference-output/screenshots/light_figure_pyplot_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_figure_pyplot_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_figure_pyplot_ipynb_cell_2.png deleted file mode 100644 index 5f1ecd36b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_figure_pyplot_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_graph_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_graph_ipynb_cell_0.png deleted file mode 100644 index 2024c1504..000000000 Binary files a/ui-tests/reference-output/screenshots/light_graph_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_graph_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_graph_ipynb_cell_1.png deleted file mode 100644 index b26a746d5..000000000 Binary files a/ui-tests/reference-output/screenshots/light_graph_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_0.png deleted file mode 100644 index c73a4d03d..000000000 Binary files a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_1.png deleted file mode 100644 index b697b20b2..000000000 Binary files a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_2.png deleted file mode 100644 index 62f1e89ff..000000000 Binary files a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_3.png deleted file mode 100644 index 4d4e76668..000000000 Binary files a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_4.png deleted file mode 100644 index 1090cdf84..000000000 Binary files a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_5.png deleted file mode 100644 index a49476f25..000000000 Binary files a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_6.png deleted file mode 100644 index a49476f25..000000000 Binary files a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_7.png deleted file mode 100644 index a49476f25..000000000 Binary files a/ui-tests/reference-output/screenshots/light_graph_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_0.png deleted file mode 100644 index 6329fc1dc..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_1.png deleted file mode 100644 index f3770f907..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_2.png deleted file mode 100644 index 3eeefef20..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_3.png deleted file mode 100644 index 5c52c9231..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_4.png deleted file mode 100644 index 6de518cc7..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_0.png deleted file mode 100644 index 0f1368e70..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_1.png deleted file mode 100644 index 0461f9576..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_2.png deleted file mode 100644 index d4692a750..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_3.png deleted file mode 100644 index 14348372a..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_4.png deleted file mode 100644 index 60ae06990..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_5.png deleted file mode 100644 index 61a9ffeb4..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_6.png deleted file mode 100644 index bdb64324a..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_7.png deleted file mode 100644 index 637b1a318..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_8.png deleted file mode 100644 index 7397d9602..000000000 Binary files a/ui-tests/reference-output/screenshots/light_gridheatmap_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_0.png deleted file mode 100644 index 880ab066d..000000000 Binary files a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_1.png deleted file mode 100644 index 035ce293d..000000000 Binary files a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_2.png deleted file mode 100644 index 040fae88e..000000000 Binary files a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_3.png deleted file mode 100644 index 4713eeedd..000000000 Binary files a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_4.png deleted file mode 100644 index 8cfc69e91..000000000 Binary files a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_5.png deleted file mode 100644 index 124624253..000000000 Binary files a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_6.png deleted file mode 100644 index 3a66d080a..000000000 Binary files a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_7.png deleted file mode 100644 index 124624253..000000000 Binary files a/ui-tests/reference-output/screenshots/light_hist_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_lines_ipynb_cell_0.png deleted file mode 100644 index 35f7edc4b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_lines_ipynb_cell_1.png deleted file mode 100644 index 7c53fafae..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_0.png deleted file mode 100644 index 328b89b10..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_1.png deleted file mode 100644 index dc5f6bed1..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_10.png b/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_10.png deleted file mode 100644 index 580aab289..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_10.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_2.png deleted file mode 100644 index 85f1d38d3..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_3.png deleted file mode 100644 index 6196f6189..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_4.png deleted file mode 100644 index b630f2e66..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_5.png deleted file mode 100644 index 492481808..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_6.png deleted file mode 100644 index 9a31ebd3c..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_7.png deleted file mode 100644 index 9f3bfabbc..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_8.png deleted file mode 100644 index aa986ab23..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_9.png b/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_9.png deleted file mode 100644 index 666c6a854..000000000 Binary files a/ui-tests/reference-output/screenshots/light_lines_update_ipynb_cell_9.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_map_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_map_ipynb_cell_0.png deleted file mode 100644 index 1a5102a05..000000000 Binary files a/ui-tests/reference-output/screenshots/light_map_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_0.png deleted file mode 100644 index f8bae822b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_1.png deleted file mode 100644 index 7094b6392..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_2.png deleted file mode 100644 index 31f50e72b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_3.png deleted file mode 100644 index 12a06a616..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_4.png deleted file mode 100644 index 12a06a616..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_5.png deleted file mode 100644 index 51cc17c09..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_6.png deleted file mode 100644 index 778528fc1..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_7.png deleted file mode 100644 index 650227343..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_8.png deleted file mode 100644 index 929aea1e5..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_9.png b/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_9.png deleted file mode 100644 index 4639070d8..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ohlc_update_ipynb_cell_9.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_0.png deleted file mode 100644 index 299885e1d..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_1.png deleted file mode 100644 index b6690e4b3..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_2.png deleted file mode 100644 index f1bd9cc56..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_3.png deleted file mode 100644 index 079af60e1..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ordinal_scale_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_0.png deleted file mode 100644 index 8cd12956b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_1.png deleted file mode 100644 index 82ee26f67..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_10.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_10.png deleted file mode 100644 index c144105b3..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_10.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_11.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_11.png deleted file mode 100644 index 965a2daa4..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_11.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_12.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_12.png deleted file mode 100644 index f72309a19..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_12.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_13.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_13.png deleted file mode 100644 index 052db86c2..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_13.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_14.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_14.png deleted file mode 100644 index 69f0d7e7d..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_14.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_15.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_15.png deleted file mode 100644 index 5211406db..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_15.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_16.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_16.png deleted file mode 100644 index 22c20a4da..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_16.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_17.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_17.png deleted file mode 100644 index c56162e10..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_17.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_18.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_18.png deleted file mode 100644 index c56162e10..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_18.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_19.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_19.png deleted file mode 100644 index 7c7c1261b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_19.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_2.png deleted file mode 100644 index 68bac45e8..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_3.png deleted file mode 100644 index 5c17fb6cc..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_4.png deleted file mode 100644 index c6410a563..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_5.png deleted file mode 100644 index dd6d20127..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_6.png deleted file mode 100644 index ef2c54d2b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_7.png deleted file mode 100644 index 94d3350df..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_8.png deleted file mode 100644 index 51f9bef6a..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_9.png b/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_9.png deleted file mode 100644 index f57e7711a..000000000 Binary files a/ui-tests/reference-output/screenshots/light_pie_update_ipynb_cell_9.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_scatter_ipynb_cell_0.png deleted file mode 100644 index 98e6ea2ae..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_scatter_ipynb_cell_1.png deleted file mode 100644 index 7332c644b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_0.png deleted file mode 100644 index 98e6ea2ae..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_1.png deleted file mode 100644 index 14b20f78c..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_10.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_10.png deleted file mode 100644 index 01cc93775..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_10.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_11.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_11.png deleted file mode 100644 index b93d297ac..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_11.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_2.png deleted file mode 100644 index e0085853b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_3.png deleted file mode 100644 index 2b902051f..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_4.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_4.png deleted file mode 100644 index 9284ae11c..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_4.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_5.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_5.png deleted file mode 100644 index b20f3c8df..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_5.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_6.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_6.png deleted file mode 100644 index 1f5dfbc3b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_6.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_7.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_7.png deleted file mode 100644 index c36d7b568..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_7.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_8.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_8.png deleted file mode 100644 index 1f5dfbc3b..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_8.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_9.png b/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_9.png deleted file mode 100644 index b93d297ac..000000000 Binary files a/ui-tests/reference-output/screenshots/light_scatter_update_ipynb_cell_9.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_0.png b/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_0.png deleted file mode 100644 index 93864e288..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_0.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_1.png b/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_1.png deleted file mode 100644 index 5d10c0a38..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_1.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_2.png b/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_2.png deleted file mode 100644 index 8e8529576..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_2.png and /dev/null differ diff --git a/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_3.png b/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_3.png deleted file mode 100644 index 1edd0a466..000000000 Binary files a/ui-tests/reference-output/screenshots/light_ticks_ipynb_cell_3.png and /dev/null differ diff --git a/ui-tests/tests/bqplot.test.ts b/ui-tests/tests/bqplot.test.ts index 4cdd635a2..025f2d795 100644 --- a/ui-tests/tests/bqplot.test.ts +++ b/ui-tests/tests/bqplot.test.ts @@ -1,171 +1,129 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { galata, describe, test } from '@jupyterlab/galata'; +import { IJupyterLabPageFixture, test } from '@jupyterlab/galata'; +import { expect } from '@playwright/test'; import * as path from 'path'; const klaw = require('klaw-sync'); -jest.setTimeout(600000); const filterUpdateNotebooks = item => { const basename = path.basename(item.path); return basename.includes('_update'); } -const testCellOutputs = async (theme: 'JupyterLab Light' | 'JupyterLab Dark') => { - const paths = klaw('tests/notebooks', {filter: item => !filterUpdateNotebooks(item), nodir: true}); +const testCellOutputs = async (page: IJupyterLabPageFixture, tmpPath: string, theme: 'JupyterLab Light' | 'JupyterLab Dark') => { + const paths = klaw(path.resolve(__dirname, './notebooks'), {filter: item => !filterUpdateNotebooks(item), nodir: true}); const notebooks = paths.map(item => path.basename(item.path)); - let results = []; - const contextPrefix = theme == 'JupyterLab Light' ? 'light_' : 'dark_'; - galata.theme.setTheme(theme); + page.theme.setTheme(theme); for (const notebook of notebooks) { - galata.context.capturePrefix = contextPrefix + notebook; + let results = []; - await galata.notebook.open(notebook); - expect(await galata.notebook.isOpen(notebook)).toBeTruthy(); - await galata.notebook.activate(notebook); - expect(await galata.notebook.isActive(notebook)).toBeTruthy(); + await page.notebook.openByPath(`${tmpPath}/${notebook}`); + await page.notebook.activate(notebook); let numCellImages = 0; - const getCaptureImageName = (id: number): string => { - return `cell-${id}`; + const getCaptureImageName = (contextPrefix: string, notebook: string, id: number): string => { + return `${contextPrefix}-${notebook}-cell-${id}.png`; }; - await galata.notebook.runCellByCell({ + await page.notebook.runCellByCell({ onAfterCellRun: async (cellIndex: number) => { - const cell = await galata.notebook.getCellOutput(cellIndex); + const cell = await page.notebook.getCellOutput(cellIndex); if (cell) { - if ( - await galata.capture.screenshot( - getCaptureImageName(numCellImages), - cell - ) - ) { - numCellImages++; - } + results.push(await cell.screenshot()); + numCellImages++; } } }); + await page.notebook.save(); + for (let c = 0; c < numCellImages; ++c) { - results.push(await galata.capture.compareScreenshot(getCaptureImageName(c))); + expect(results[c]).toMatchSnapshot(getCaptureImageName(contextPrefix, notebook, c)); } - await galata.notebook.close(true); - } - - for (const result of results) { - expect(result).toBe('same'); + await page.notebook.close(true); } } -const testPlotUpdates = async (theme: 'JupyterLab Light' | 'JupyterLab Dark') => { - const paths = klaw('tests/notebooks', {filter: item => filterUpdateNotebooks(item), nodir: true}); +const testPlotUpdates = async (page: IJupyterLabPageFixture, tmpPath: string, theme: 'JupyterLab Light' | 'JupyterLab Dark') => { + const paths = klaw(path.resolve(__dirname, './notebooks'), {filter: item => filterUpdateNotebooks(item), nodir: true}); const notebooks = paths.map(item => path.basename(item.path)); - let results = []; - const contextPrefix = theme == 'JupyterLab Light' ? 'light_' : 'dark_'; - galata.theme.setTheme(theme); + page.theme.setTheme(theme); for (const notebook of notebooks) { - galata.context.capturePrefix = contextPrefix + notebook; - - await galata.notebook.open(notebook); - expect(await galata.notebook.isOpen(notebook)).toBeTruthy(); - await galata.notebook.activate(notebook); - expect(await galata.notebook.isActive(notebook)).toBeTruthy(); + let results = []; - let numCellImages = 0; + await page.notebook.openByPath(`${tmpPath}/${notebook}`); + await page.notebook.activate(notebook); - const getCaptureImageName = (id: number): string => { - return `cell-${id}`; + const getCaptureImageName = (contextPrefix: string, notebook: string, id: number): string => { + return `${contextPrefix}-${notebook}-cell-${id}.png`; }; - await galata.notebook.runCellByCell({ + let cellCount = 0; + await page.notebook.runCellByCell({ onAfterCellRun: async (cellIndex: number) => { // Always get first cell output which must contain the plot - const cell = await galata.notebook.getCellOutput(0); + const cell = await page.notebook.getCellOutput(0); if (cell) { - if ( - await galata.capture.screenshot( - getCaptureImageName(numCellImages), - cell - ) - ) { - numCellImages++; - } + results.push(await cell.screenshot()); + cellCount++; } } }); - for (let c = 0; c < numCellImages; ++c) { - results.push(await galata.capture.compareScreenshot(getCaptureImageName(c))); - } + await page.notebook.save(); - await galata.notebook.close(true); - } + for (let i = 0; i < cellCount; i++) { + expect(results[i]).toMatchSnapshot(getCaptureImageName(contextPrefix, notebook, i)); + } - for (const result of results) { - expect(result).toBe('same'); + await page.notebook.close(true); } }; -describe('bqplot Visual Regression', () => { - beforeAll(async () => { - await galata.resetUI(); - }); - - afterAll(async () => { - galata.context.capturePrefix = ''; - }); - - test('Upload files to JupyterLab', async () => { - await galata.contents.moveDirectoryToServer( - path.resolve(__dirname, `./notebooks`), - 'uploaded' +test.describe('bqplot Visual Regression', () => { + test.beforeEach(async ({ page, tmpPath }) => { + await page.contents.uploadDirectory( + path.resolve(__dirname, './notebooks'), + tmpPath ); - expect( - await galata.contents.fileExists('uploaded/scatter.ipynb') - ).toBeTruthy(); - }); - - test('Refresh File Browser', async () => { - await galata.filebrowser.refresh(); - }); - - test('Open directory uploaded', async () => { - await galata.filebrowser.openDirectory('uploaded'); - expect( - await galata.filebrowser.isFileListedInBrowser('scatter.ipynb') - ).toBeTruthy(); - }); - - test('Light theme: Check bqplot first renders', async () => { - await testCellOutputs('JupyterLab Light'); - }); - - test('Dark theme: Check bqplot first renders', async () => { - await testCellOutputs('JupyterLab Dark'); + await page.filebrowser.openDirectory(tmpPath); }); - test('Light theme: Check bqplot update plot properties', async () => { - await testPlotUpdates('JupyterLab Light'); + test('Light theme: Check bqplot first renders', async ({ + page, + tmpPath, + }) => { + await testCellOutputs(page, tmpPath, 'JupyterLab Light'); }); - test('Dark theme: Check bqplot update plot properties', async () => { - await testPlotUpdates('JupyterLab Dark'); + test('Dark theme: Check bqplot first renders', async ({ + page, + tmpPath, + }) => { + await testCellOutputs(page, tmpPath, 'JupyterLab Dark'); }); - test('Open home directory', async () => { - await galata.filebrowser.openHomeDirectory(); + test('Light theme: Check bqplot update plot properties', async ({ + page, + tmpPath, + }) => { + await testPlotUpdates(page, tmpPath, 'JupyterLab Light'); }); - test('Delete uploaded directory', async () => { - await galata.contents.deleteDirectory('uploaded'); + test('Dark theme: Check bqplot update plot properties', async ({ + page, + tmpPath, + }) => { + await testPlotUpdates(page, tmpPath, 'JupyterLab Dark'); }); }); diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-0-linux.png new file mode 100644 index 000000000..9ac85ba48 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-1-linux.png new file mode 100644 index 000000000..dd1c68b3d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-2-linux.png new file mode 100644 index 000000000..5b797f8f1 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-3-linux.png new file mode 100644 index 000000000..a4165f651 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-4-linux.png new file mode 100644 index 000000000..253efb220 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-5-linux.png new file mode 100644 index 000000000..cd3162f76 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..a63c34cbf Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..119f06092 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..35c79e2ae Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..64c3a874f Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..6f3defeda Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..ed666895c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..2a1f5f6bf Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..72da1693e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..2a1f5f6bf Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..d5a6934de Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..acb62a650 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..e9dd3a367 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..7042f2fb0 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..99b8d9ac1 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..ee5b6239c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..62eca26b2 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..ee5b6239c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-bars2d-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-figure-pyplot-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-figure-pyplot-ipynb-cell-0-linux.png new file mode 100644 index 000000000..b8ac351ff Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-figure-pyplot-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-figure-pyplot-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-figure-pyplot-ipynb-cell-1-linux.png new file mode 100644 index 000000000..3dc6b9c56 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-figure-pyplot-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-figure-pyplot-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-figure-pyplot-ipynb-cell-2-linux.png new file mode 100644 index 000000000..337971081 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-figure-pyplot-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-ipynb-cell-0-linux.png new file mode 100644 index 000000000..d23d4f9bc Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-ipynb-cell-1-linux.png new file mode 100644 index 000000000..088c3c982 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..8136cebe4 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..1d7807b3d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..a0253bf67 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..272a24ce9 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..9d3d1a187 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..a83b812ea Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..a83b812ea Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..a83b812ea Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-graph-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-0-linux.png new file mode 100644 index 000000000..a2eb07c5e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-1-linux.png new file mode 100644 index 000000000..10c24cbfc Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-2-linux.png new file mode 100644 index 000000000..8eef33622 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-3-linux.png new file mode 100644 index 000000000..fdd451cfe Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-4-linux.png new file mode 100644 index 000000000..1e6d7f50b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..b973e0678 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..a31482f40 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..2b3159c46 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..3e89b732d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..6e1de490c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..1da52e877 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..f20a9c041 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..4b3ba4745 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..ff73014c6 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-gridheatmap-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..b1ef01008 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..2314113ce Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..e25cb9273 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..dd65b0129 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..83176d19e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..181e2335b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..ea80e2732 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..181e2335b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-hist-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-ipynb-cell-0-linux.png new file mode 100644 index 000000000..a0ea195d6 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-ipynb-cell-1-linux.png new file mode 100644 index 000000000..054d9d03c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..ac241934f Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..9e4401774 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-10-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-10-linux.png new file mode 100644 index 000000000..e512b7ae3 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-10-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..f1b41bb5d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..890a9b77d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..d77b7e8ea Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..04f1ced5c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..28cd6f329 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..c01406219 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..f36ede751 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-9-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-9-linux.png new file mode 100644 index 000000000..2dbcc41ae Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-lines-update-ipynb-cell-9-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-map-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-map-ipynb-cell-0-linux.png new file mode 100644 index 000000000..0f65cab56 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-map-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..00e6b8511 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..4646393a0 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..94d1df7e0 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..ec0b4ef99 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..ec0b4ef99 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..84a3d6698 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..a84a6eb92 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..10cd1c626 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..3797244fe Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-9-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-9-linux.png new file mode 100644 index 000000000..d318c3636 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ohlc-update-ipynb-cell-9-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-0-linux.png new file mode 100644 index 000000000..0b696f026 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-1-linux.png new file mode 100644 index 000000000..da27e18da Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-2-linux.png new file mode 100644 index 000000000..87c702774 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-3-linux.png new file mode 100644 index 000000000..f4f0b05df Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ordinal-scale-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..a69381e61 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..3be559a65 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-10-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-10-linux.png new file mode 100644 index 000000000..89913ce90 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-10-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-11-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-11-linux.png new file mode 100644 index 000000000..25f95acaf Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-11-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-12-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-12-linux.png new file mode 100644 index 000000000..11f557b4e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-12-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-13-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-13-linux.png new file mode 100644 index 000000000..1c1f08355 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-13-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-14-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-14-linux.png new file mode 100644 index 000000000..8958fc639 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-14-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-15-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-15-linux.png new file mode 100644 index 000000000..685352f81 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-15-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-16-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-16-linux.png new file mode 100644 index 000000000..def782834 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-16-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-17-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-17-linux.png new file mode 100644 index 000000000..c51e3ea6f Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-17-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-18-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-18-linux.png new file mode 100644 index 000000000..c51e3ea6f Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-18-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-19-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-19-linux.png new file mode 100644 index 000000000..a36cb6be4 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-19-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..10481c20f Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..99effaf1d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..b918c2ed7 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..238bb89a5 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..b918c2ed7 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..bb5b67afd Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..194cb9754 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-9-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-9-linux.png new file mode 100644 index 000000000..de1608b16 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-pie-update-ipynb-cell-9-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-ipynb-cell-0-linux.png new file mode 100644 index 000000000..85d854f23 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-ipynb-cell-1-linux.png new file mode 100644 index 000000000..095bee80e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..85d854f23 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..e016bcf5e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-10-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-10-linux.png new file mode 100644 index 000000000..7e773e16a Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-10-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-11-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-11-linux.png new file mode 100644 index 000000000..f08c5e8fc Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-11-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..095bee80e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..7fa06901d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..0e9bee1c2 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..9c1f4290d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..755dcd244 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..423ca6bb7 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..755dcd244 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-9-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-9-linux.png new file mode 100644 index 000000000..f08c5e8fc Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-scatter-update-ipynb-cell-9-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-0-linux.png new file mode 100644 index 000000000..594db10d5 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-1-linux.png new file mode 100644 index 000000000..f6727294f Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-2-linux.png new file mode 100644 index 000000000..1b6e5e17b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-3-linux.png new file mode 100644 index 000000000..4283f20d2 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/dark-ticks-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-0-linux.png new file mode 100644 index 000000000..614fe3db8 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-1-linux.png new file mode 100644 index 000000000..44a5cac49 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-2-linux.png new file mode 100644 index 000000000..2702ec144 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-3-linux.png new file mode 100644 index 000000000..63941a97d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-4-linux.png new file mode 100644 index 000000000..6f4d1b969 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-5-linux.png new file mode 100644 index 000000000..c16018cad Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..7f0065559 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..8ce2919fd Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..7bba3ec5d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..370708104 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..cd68e187e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..fd0923939 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..cbf946e6e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..e34e3eaaf Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..cbf946e6e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..306b44bf2 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..853bf5ca9 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..bd671f394 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..0eb876f44 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..e6754d305 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..a9daa212c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..40e596cc1 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..a9daa212c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-bars2d-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-figure-pyplot-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-figure-pyplot-ipynb-cell-0-linux.png new file mode 100644 index 000000000..dddc7796f Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-figure-pyplot-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-figure-pyplot-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-figure-pyplot-ipynb-cell-1-linux.png new file mode 100644 index 000000000..ed9731a52 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-figure-pyplot-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-figure-pyplot-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-figure-pyplot-ipynb-cell-2-linux.png new file mode 100644 index 000000000..062cbc7d3 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-figure-pyplot-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-ipynb-cell-0-linux.png new file mode 100644 index 000000000..4b9235b9f Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-ipynb-cell-1-linux.png new file mode 100644 index 000000000..53105fb35 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..e18554d0f Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..6b2670442 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..fbc12c197 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..e70dee97d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..e3d0f15bf Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..5ca3fd082 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..5ca3fd082 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..5ca3fd082 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-graph-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-0-linux.png new file mode 100644 index 000000000..78a435095 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-1-linux.png new file mode 100644 index 000000000..60ff787f7 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-2-linux.png new file mode 100644 index 000000000..05017d967 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-3-linux.png new file mode 100644 index 000000000..153a37d51 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-4-linux.png new file mode 100644 index 000000000..bfaf258f0 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..0d9c6f546 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..5490d62af Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..cb7ab6f86 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..fce4f99d6 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..009d126c0 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..5640bf573 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..cec958f32 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..ab6b02b19 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..deec78bfc Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-gridheatmap-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..76eed0863 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..6e9265b5b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..c6853e275 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..eb4cbace8 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..f71709f06 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..5dda37e03 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..a6dbb2be0 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..5dda37e03 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-hist-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-ipynb-cell-0-linux.png new file mode 100644 index 000000000..364e16ff2 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-ipynb-cell-1-linux.png new file mode 100644 index 000000000..bfcb10a92 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..345ccaa4b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..4ec9aace0 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-10-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-10-linux.png new file mode 100644 index 000000000..6bdcae42b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-10-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..c4ab156b9 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..ee3349791 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..8e57fa36f Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..01c56565d Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..bc2cb3519 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..ada9535dd Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..3b3745def Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-9-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-9-linux.png new file mode 100644 index 000000000..e1563d940 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-lines-update-ipynb-cell-9-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-map-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-map-ipynb-cell-0-linux.png new file mode 100644 index 000000000..e655c398b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-map-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..6b4c8969e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..46e4a3651 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..65305fd3c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..b8961eaa7 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..b8961eaa7 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..753948ea2 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..b931e46a5 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..dc7a83217 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..09a5f492e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-9-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-9-linux.png new file mode 100644 index 000000000..9ca33d6a5 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ohlc-update-ipynb-cell-9-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-0-linux.png new file mode 100644 index 000000000..010a99589 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-1-linux.png new file mode 100644 index 000000000..b0f2be57f Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-2-linux.png new file mode 100644 index 000000000..8e0de9021 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-3-linux.png new file mode 100644 index 000000000..697193adb Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ordinal-scale-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..0158afff6 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..a23ec27fd Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-10-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-10-linux.png new file mode 100644 index 000000000..dca811efe Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-10-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-11-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-11-linux.png new file mode 100644 index 000000000..c9672b520 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-11-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-12-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-12-linux.png new file mode 100644 index 000000000..1e0f7f6c7 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-12-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-13-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-13-linux.png new file mode 100644 index 000000000..7682ab4b6 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-13-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-14-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-14-linux.png new file mode 100644 index 000000000..9c82ba328 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-14-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-15-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-15-linux.png new file mode 100644 index 000000000..5e86f7cd8 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-15-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-16-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-16-linux.png new file mode 100644 index 000000000..20039f539 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-16-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-17-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-17-linux.png new file mode 100644 index 000000000..5b90716f2 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-17-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-18-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-18-linux.png new file mode 100644 index 000000000..5b90716f2 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-18-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-19-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-19-linux.png new file mode 100644 index 000000000..99667bb7e Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-19-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..04de05b68 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..5551802f5 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..46ae7fe29 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..e2bc76261 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..46ae7fe29 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..90425f914 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..dc8d2b1c8 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-9-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-9-linux.png new file mode 100644 index 000000000..5dea624e3 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-pie-update-ipynb-cell-9-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-ipynb-cell-0-linux.png new file mode 100644 index 000000000..a0eb1ba5b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-ipynb-cell-1-linux.png new file mode 100644 index 000000000..bc9c04126 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-0-linux.png new file mode 100644 index 000000000..a0eb1ba5b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-1-linux.png new file mode 100644 index 000000000..b000eb997 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-10-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-10-linux.png new file mode 100644 index 000000000..25a935fa2 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-10-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-11-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-11-linux.png new file mode 100644 index 000000000..4a785f41c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-11-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-2-linux.png new file mode 100644 index 000000000..bc9c04126 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-3-linux.png new file mode 100644 index 000000000..992cedd9c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-4-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-4-linux.png new file mode 100644 index 000000000..814221215 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-4-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-5-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-5-linux.png new file mode 100644 index 000000000..bc53068ec Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-5-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-6-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-6-linux.png new file mode 100644 index 000000000..0ae315b0b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-6-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-7-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-7-linux.png new file mode 100644 index 000000000..d79847d12 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-7-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-8-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-8-linux.png new file mode 100644 index 000000000..0ae315b0b Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-8-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-9-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-9-linux.png new file mode 100644 index 000000000..4a785f41c Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-scatter-update-ipynb-cell-9-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-0-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-0-linux.png new file mode 100644 index 000000000..f8763363a Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-0-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-1-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-1-linux.png new file mode 100644 index 000000000..ed50a12fd Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-1-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-2-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-2-linux.png new file mode 100644 index 000000000..c411b52d4 Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-2-linux.png differ diff --git a/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-3-linux.png b/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-3-linux.png new file mode 100644 index 000000000..b535c7ddc Binary files /dev/null and b/ui-tests/tests/bqplot.test.ts-snapshots/light-ticks-ipynb-cell-3-linux.png differ diff --git a/ui-tests/tests/notebooks/bars.ipynb b/ui-tests/tests/notebooks/bars.ipynb index d1f91f173..d58454f1f 100644 --- a/ui-tests/tests/notebooks/bars.ipynb +++ b/ui-tests/tests/notebooks/bars.ipynb @@ -3,39 +3,23 @@ { "cell_type": "code", "execution_count": null, - "id": "romance-heavy", + "id": "excellent-column", "metadata": {}, "outputs": [], "source": [ "from bqplot import *\n", "\n", "import numpy as np\n", - "import pandas as pd" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "physical-right", - "metadata": {}, - "outputs": [], - "source": [ + "import pandas as pd\n", + "\n", "size = 100\n", "np.random.seed(0)\n", "\n", "x_data = range(size)\n", "y_data = np.random.randn(size)\n", "y_data_2 = np.random.randn(size)\n", - "y_data_3 = np.cumsum(np.random.randn(size) * 100.)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "excellent-column", - "metadata": {}, - "outputs": [], - "source": [ + "y_data_3 = np.cumsum(np.random.randn(size) * 100.)\n", + "\n", "# Create Bar\n", "x_ord = OrdinalScale()\n", "y_sc = LinearScale()\n", @@ -161,7 +145,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -175,7 +159,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.5" + "version": "3.10.0" } }, "nbformat": 4, diff --git a/ui-tests/tests/notebooks/bars2d_update.ipynb b/ui-tests/tests/notebooks/bars2d_update.ipynb index 4f217bbed..a6d168a4b 100644 --- a/ui-tests/tests/notebooks/bars2d_update.ipynb +++ b/ui-tests/tests/notebooks/bars2d_update.ipynb @@ -109,7 +109,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -123,7 +123,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.2" + "version": "3.10.0" } }, "nbformat": 4, diff --git a/ui-tests/tests/notebooks/lines.ipynb b/ui-tests/tests/notebooks/lines.ipynb index f2cf96a24..6338fb5aa 100644 --- a/ui-tests/tests/notebooks/lines.ipynb +++ b/ui-tests/tests/notebooks/lines.ipynb @@ -3,7 +3,7 @@ { "cell_type": "code", "execution_count": null, - "id": "49969f7f", + "id": "da5f4803", "metadata": {}, "outputs": [], "source": [ @@ -12,16 +12,8 @@ "import numpy as np\n", "import pandas as pd\n", "\n", - "np.random.seed(0)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "da5f4803", - "metadata": {}, - "outputs": [], - "source": [ + "np.random.seed(0)\n", + "\n", "x = list(range(10))\n", "y = [10**i for i in range(10)]\n", "\n", @@ -60,7 +52,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -74,7 +66,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.5" + "version": "3.10.0" } }, "nbformat": 4, diff --git a/ui-tests/tests/notebooks/scatter.ipynb b/ui-tests/tests/notebooks/scatter.ipynb index 811ffc686..616471d52 100644 --- a/ui-tests/tests/notebooks/scatter.ipynb +++ b/ui-tests/tests/notebooks/scatter.ipynb @@ -3,23 +3,15 @@ { "cell_type": "code", "execution_count": null, - "id": "considered-injection", + "id": "juvenile-dialogue", "metadata": {}, "outputs": [], "source": [ "from bqplot import *\n", "\n", "import numpy as np\n", - "import pandas as pd" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "direct-desperate", - "metadata": {}, - "outputs": [], - "source": [ + "import pandas as pd\n", + "\n", "# Test data\n", "\n", "np.random.seed(0)\n", @@ -39,16 +31,8 @@ "log_sec1 = np.log(sec1_levels)\n", "sec1_returns = log_sec1[1:] - log_sec1[:-1]\n", "\n", - "sec2_levels = np.array(price_data[symbols[1]].values.flatten())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "juvenile-dialogue", - "metadata": {}, - "outputs": [], - "source": [ + "sec2_levels = np.array(price_data[symbols[1]].values.flatten())\n", + "\n", "# Create Scatter\n", "sc_x = DateScale()\n", "sc_y = LinearScale()\n", @@ -77,7 +61,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -91,7 +75,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.2" + "version": "3.10.0" } }, "nbformat": 4, diff --git a/ui-tests/yarn.lock b/ui-tests/yarn.lock index 9fc6d5222..eac365285 100644 --- a/ui-tests/yarn.lock +++ b/ui-tests/yarn.lock @@ -2,32 +2,39 @@ # yarn lockfile v1 -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.14.5": +"@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.0.tgz#0dfc80309beec8411e65e706461c408b0bb9b431" + integrity sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA== + dependencies: + "@babel/highlight" "^7.16.0" + +"@babel/code-frame@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb" integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw== dependencies: "@babel/highlight" "^7.14.5" -"@babel/compat-data@^7.14.5": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.7.tgz#7b047d7a3a89a67d2258dc61f604f098f1bc7e08" - integrity sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw== - -"@babel/core@^7.1.0", "@babel/core@^7.7.5": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.6.tgz#e0814ec1a950032ff16c13a2721de39a8416fcab" - integrity sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA== - dependencies: - "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.5" - "@babel/helper-compilation-targets" "^7.14.5" - "@babel/helper-module-transforms" "^7.14.5" - "@babel/helpers" "^7.14.6" - "@babel/parser" "^7.14.6" - "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" +"@babel/compat-data@^7.16.0": + version "7.16.4" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.16.4.tgz#081d6bbc336ec5c2435c6346b2ae1fb98b5ac68e" + integrity sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q== + +"@babel/core@^7.14.8": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.0.tgz#c4ff44046f5fe310525cc9eb4ef5147f0c5374d4" + integrity sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ== + dependencies: + "@babel/code-frame" "^7.16.0" + "@babel/generator" "^7.16.0" + "@babel/helper-compilation-targets" "^7.16.0" + "@babel/helper-module-transforms" "^7.16.0" + "@babel/helpers" "^7.16.0" + "@babel/parser" "^7.16.0" + "@babel/template" "^7.16.0" + "@babel/traverse" "^7.16.0" + "@babel/types" "^7.16.0" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" @@ -35,130 +42,161 @@ semver "^6.3.0" source-map "^0.5.0" -"@babel/generator@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785" - integrity sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA== +"@babel/generator@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.0.tgz#d40f3d1d5075e62d3500bccb67f3daa8a95265b2" + integrity sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew== dependencies: - "@babel/types" "^7.14.5" + "@babel/types" "^7.16.0" jsesc "^2.5.1" source-map "^0.5.0" -"@babel/helper-compilation-targets@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz#7a99c5d0967911e972fe2c3411f7d5b498498ecf" - integrity sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw== - dependencies: - "@babel/compat-data" "^7.14.5" - "@babel/helper-validator-option" "^7.14.5" - browserslist "^4.16.6" - semver "^6.3.0" - -"@babel/helper-function-name@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz#89e2c474972f15d8e233b52ee8c480e2cfcd50c4" - integrity sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ== - dependencies: - "@babel/helper-get-function-arity" "^7.14.5" - "@babel/template" "^7.14.5" - "@babel/types" "^7.14.5" - -"@babel/helper-get-function-arity@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815" - integrity sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-hoist-variables@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d" - integrity sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-member-expression-to-functions@^7.14.5": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz#97e56244beb94211fe277bd818e3a329c66f7970" - integrity sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-module-imports@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz#6d1a44df6a38c957aa7c312da076429f11b422f3" - integrity sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-module-transforms@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz#7de42f10d789b423eb902ebd24031ca77cb1e10e" - integrity sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA== +"@babel/helper-annotate-as-pure@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz#9a1f0ebcda53d9a2d00108c4ceace6a5d5f1f08d" + integrity sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg== dependencies: - "@babel/helper-module-imports" "^7.14.5" - "@babel/helper-replace-supers" "^7.14.5" - "@babel/helper-simple-access" "^7.14.5" - "@babel/helper-split-export-declaration" "^7.14.5" - "@babel/helper-validator-identifier" "^7.14.5" - "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" + "@babel/types" "^7.16.0" -"@babel/helper-optimise-call-expression@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c" - integrity sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA== +"@babel/helper-compilation-targets@^7.16.0": + version "7.16.3" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz#5b480cd13f68363df6ec4dc8ac8e2da11363cbf0" + integrity sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA== dependencies: - "@babel/types" "^7.14.5" + "@babel/compat-data" "^7.16.0" + "@babel/helper-validator-option" "^7.14.5" + browserslist "^4.17.5" + semver "^6.3.0" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.8.0": +"@babel/helper-create-class-features-plugin@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz#090d4d166b342a03a9fec37ef4fd5aeb9c7c6a4b" + integrity sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.16.0" + "@babel/helper-function-name" "^7.16.0" + "@babel/helper-member-expression-to-functions" "^7.16.0" + "@babel/helper-optimise-call-expression" "^7.16.0" + "@babel/helper-replace-supers" "^7.16.0" + "@babel/helper-split-export-declaration" "^7.16.0" + +"@babel/helper-function-name@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz#b7dd0797d00bbfee4f07e9c4ea5b0e30c8bb1481" + integrity sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog== + dependencies: + "@babel/helper-get-function-arity" "^7.16.0" + "@babel/template" "^7.16.0" + "@babel/types" "^7.16.0" + +"@babel/helper-get-function-arity@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz#0088c7486b29a9cb5d948b1a1de46db66e089cfa" + integrity sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ== + dependencies: + "@babel/types" "^7.16.0" + +"@babel/helper-hoist-variables@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz#4c9023c2f1def7e28ff46fc1dbcd36a39beaa81a" + integrity sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg== + dependencies: + "@babel/types" "^7.16.0" + +"@babel/helper-member-expression-to-functions@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz#29287040efd197c77636ef75188e81da8bccd5a4" + integrity sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ== + dependencies: + "@babel/types" "^7.16.0" + +"@babel/helper-module-imports@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz#90538e60b672ecf1b448f5f4f5433d37e79a3ec3" + integrity sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg== + dependencies: + "@babel/types" "^7.16.0" + +"@babel/helper-module-transforms@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz#1c82a8dd4cb34577502ebd2909699b194c3e9bb5" + integrity sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA== + dependencies: + "@babel/helper-module-imports" "^7.16.0" + "@babel/helper-replace-supers" "^7.16.0" + "@babel/helper-simple-access" "^7.16.0" + "@babel/helper-split-export-declaration" "^7.16.0" + "@babel/helper-validator-identifier" "^7.15.7" + "@babel/template" "^7.16.0" + "@babel/traverse" "^7.16.0" + "@babel/types" "^7.16.0" + +"@babel/helper-optimise-call-expression@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz#cecdb145d70c54096b1564f8e9f10cd7d193b338" + integrity sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw== + dependencies: + "@babel/types" "^7.16.0" + +"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9" integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ== -"@babel/helper-replace-supers@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz#0ecc0b03c41cd567b4024ea016134c28414abb94" - integrity sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow== +"@babel/helper-replace-supers@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz#73055e8d3cf9bcba8ddb55cad93fedc860f68f17" + integrity sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA== dependencies: - "@babel/helper-member-expression-to-functions" "^7.14.5" - "@babel/helper-optimise-call-expression" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" + "@babel/helper-member-expression-to-functions" "^7.16.0" + "@babel/helper-optimise-call-expression" "^7.16.0" + "@babel/traverse" "^7.16.0" + "@babel/types" "^7.16.0" -"@babel/helper-simple-access@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz#66ea85cf53ba0b4e588ba77fc813f53abcaa41c4" - integrity sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw== +"@babel/helper-simple-access@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz#21d6a27620e383e37534cf6c10bba019a6f90517" + integrity sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw== dependencies: - "@babel/types" "^7.14.5" + "@babel/types" "^7.16.0" -"@babel/helper-split-export-declaration@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a" - integrity sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA== +"@babel/helper-skip-transparent-expression-wrappers@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09" + integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw== + dependencies: + "@babel/types" "^7.16.0" + +"@babel/helper-split-export-declaration@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz#29672f43663e936df370aaeb22beddb3baec7438" + integrity sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw== dependencies: - "@babel/types" "^7.14.5" + "@babel/types" "^7.16.0" "@babel/helper-validator-identifier@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8" integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg== +"@babel/helper-validator-identifier@^7.15.7": + version "7.15.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" + integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== + "@babel/helper-validator-option@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== -"@babel/helpers@^7.14.6": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.6.tgz#5b58306b95f1b47e2a0199434fa8658fa6c21635" - integrity sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA== +"@babel/helpers@^7.16.0": + version "7.16.3" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.16.3.tgz#27fc64f40b996e7074dc73128c3e5c3e7f55c43c" + integrity sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w== dependencies: - "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" + "@babel/template" "^7.16.0" + "@babel/traverse" "^7.16.3" + "@babel/types" "^7.16.0" "@babel/highlight@^7.14.5": version "7.14.5" @@ -169,10 +207,94 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.5", "@babel/parser@^7.14.6", "@babel/parser@^7.14.7": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.7.tgz#6099720c8839ca865a2637e6c85852ead0bdb595" - integrity sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA== +"@babel/highlight@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz#6ceb32b2ca4b8f5f361fb7fd821e3fddf4a1725a" + integrity sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g== + dependencies: + "@babel/helper-validator-identifier" "^7.15.7" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@^7.16.0", "@babel/parser@^7.16.3": + version "7.16.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.4.tgz#d5f92f57cf2c74ffe9b37981c0e72fee7311372e" + integrity sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng== + +"@babel/plugin-proposal-class-properties@^7.14.5": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.0.tgz#c029618267ddebc7280fa286e0f8ca2a278a2d1a" + integrity sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.16.0" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-proposal-dynamic-import@^7.14.5": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.0.tgz#783eca61d50526202f9b296095453977e88659f1" + integrity sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-proposal-export-namespace-from@^7.14.5": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.0.tgz#9c01dee40b9d6b847b656aaf4a3976a71740f222" + integrity sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-proposal-logical-assignment-operators@^7.14.5": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.0.tgz#a711b8ceb3ffddd3ef88d3a49e86dbd3cc7db3fd" + integrity sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.0.tgz#44e1cce08fe2427482cf446a91bb451528ed0596" + integrity sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-proposal-numeric-separator@^7.14.5": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.0.tgz#5d418e4fbbf8b9b7d03125d3a52730433a373734" + integrity sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-optional-chaining@^7.14.5": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.0.tgz#56dbc3970825683608e9efb55ea82c2a2d6c8dc0" + integrity sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-proposal-private-methods@^7.14.5": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.0.tgz#b4dafb9c717e4301c5776b30d080d6383c89aff6" + integrity sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.16.0" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-proposal-private-property-in-object@^7.14.5": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.0.tgz#69e935b2c5c79d2488112d886f0c4e2790fee76f" + integrity sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.16.0" + "@babel/helper-create-class-features-plugin" "^7.16.0" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" @@ -181,26 +303,19 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-bigint@^7.8.3": +"@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" - integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-class-properties@^7.8.3": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-import-meta@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" @@ -209,7 +324,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== @@ -223,7 +338,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-numeric-separator@^7.8.3": +"@babel/plugin-syntax-numeric-separator@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== @@ -251,322 +366,799 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/template@^7.14.5", "@babel/template@^7.3.3": +"@babel/plugin-syntax-private-property-in-object@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4" - integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g== + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== dependencies: - "@babel/code-frame" "^7.14.5" - "@babel/parser" "^7.14.5" - "@babel/types" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.14.5": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.7.tgz#64007c9774cfdc3abd23b0780bc18a3ce3631753" - integrity sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ== +"@babel/plugin-syntax-typescript@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.0.tgz#2feeb13d9334cc582ea9111d3506f773174179bb" + integrity sha512-Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ== dependencies: - "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.5" - "@babel/helper-function-name" "^7.14.5" - "@babel/helper-hoist-variables" "^7.14.5" - "@babel/helper-split-export-declaration" "^7.14.5" - "@babel/parser" "^7.14.7" - "@babel/types" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-modules-commonjs@^7.14.5": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.0.tgz#add58e638c8ddc4875bd9a9ecb5c594613f6c922" + integrity sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ== + dependencies: + "@babel/helper-module-transforms" "^7.16.0" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-simple-access" "^7.16.0" + babel-plugin-dynamic-import-node "^2.3.3" + +"@babel/plugin-transform-typescript@^7.16.0": + version "7.16.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz#cc0670b2822b0338355bc1b3d2246a42b8166409" + integrity sha512-NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.16.0" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-typescript" "^7.16.0" + +"@babel/preset-typescript@^7.14.5": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.16.0.tgz#b0b4f105b855fb3d631ec036cdc9d1ffd1fa5eac" + integrity sha512-txegdrZYgO9DlPbv+9QOVpMnKbOtezsLHWsnsRF4AjbSIsVaujrq1qg8HK0mxQpWv0jnejt0yEoW1uWpvbrDTg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-validator-option" "^7.14.5" + "@babel/plugin-transform-typescript" "^7.16.0" + +"@babel/runtime@^7.1.2": + version "7.16.3" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.3.tgz#b86f0db02a04187a3c17caa77de69840165d42d5" + integrity sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/template@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.0.tgz#d16a35ebf4cd74e202083356fab21dd89363ddd6" + integrity sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A== + dependencies: + "@babel/code-frame" "^7.16.0" + "@babel/parser" "^7.16.0" + "@babel/types" "^7.16.0" + +"@babel/traverse@^7.16.0", "@babel/traverse@^7.16.3": + version "7.16.3" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.3.tgz#f63e8a938cc1b780f66d9ed3c54f532ca2d14787" + integrity sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag== + dependencies: + "@babel/code-frame" "^7.16.0" + "@babel/generator" "^7.16.0" + "@babel/helper-function-name" "^7.16.0" + "@babel/helper-hoist-variables" "^7.16.0" + "@babel/helper-split-export-declaration" "^7.16.0" + "@babel/parser" "^7.16.3" + "@babel/types" "^7.16.0" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.5.tgz#3bb997ba829a2104cedb20689c4a5b8121d383ff" - integrity sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg== +"@babel/types@^7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.0.tgz#db3b313804f96aadd0b776c4823e127ad67289ba" + integrity sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg== dependencies: - "@babel/helper-validator-identifier" "^7.14.5" + "@babel/helper-validator-identifier" "^7.15.7" to-fast-properties "^2.0.0" -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== +"@blueprintjs/colors@^4.0.0-alpha.1": + version "4.0.0-alpha.1" + resolved "https://registry.yarnpkg.com/@blueprintjs/colors/-/colors-4.0.0-alpha.1.tgz#370684b404e5400494169c54cc3a31385fc6db6a" + integrity sha512-i95xW/cAIijJAMIBDrXw1WLbGVXVaRDRG1Ga0CxOtMVwL20zvdXlQj7EMqhkgVEJo9LaKNIDliPI+jsh7h5Lag== + +"@blueprintjs/core@^3.36.0", "@blueprintjs/core@^3.51.3": + version "3.51.3" + resolved "https://registry.yarnpkg.com/@blueprintjs/core/-/core-3.51.3.tgz#d74dd9ac299c0d8f635f04a81c8bda7ef534f069" + integrity sha512-Z3xGWBMBuboKFx19uxWNAUjITsCmpm+594R/KEAM578uT6yoydT6s5S7N12APAsFe8w3H1Yu2hbWHlHTvRfOhA== + dependencies: + "@blueprintjs/colors" "^4.0.0-alpha.1" + "@blueprintjs/icons" "^3.31.0" + "@types/dom4" "^2.0.1" + classnames "^2.2" + dom4 "^2.1.5" + normalize.css "^8.0.1" + popper.js "^1.16.1" + react-lifecycles-compat "^3.0.4" + react-popper "^1.3.7" + react-transition-group "^2.9.0" + resize-observer-polyfill "^1.5.1" + tslib "~1.13.0" + +"@blueprintjs/icons@^3.31.0": + version "3.31.0" + resolved "https://registry.yarnpkg.com/@blueprintjs/icons/-/icons-3.31.0.tgz#9b3075a45e93dacaf4363390e9985263d2999c6e" + integrity sha512-6pXhHC8zEvoDKN5KNsIHNuCRKsemmRbXNv1jweB95VaFzR1M+Mik+Qi+13Wd+VtZrzes2ZcWttIeyuK91NoLCw== + dependencies: + classnames "^2.2" + tslib "~1.13.0" + +"@blueprintjs/select@^3.15.0": + version "3.18.10" + resolved "https://registry.yarnpkg.com/@blueprintjs/select/-/select-3.18.10.tgz#6f71a070da17e478701a0417f138e4b18e051b1f" + integrity sha512-0G3ZHTGi+FJeXdE7nn5UPxZyEWgRR/jE+LckHiq9Aqmh62JweLUDwMmofBP9o72k+zvMVtTyn78QLAxfHJN5Xw== + dependencies: + "@blueprintjs/core" "^3.51.3" + classnames "^2.2" + tslib "~1.13.0" + +"@fortawesome/fontawesome-free@^5.12.0": + version "5.15.4" + resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.4.tgz#ecda5712b61ac852c760d8b3c79c96adca5554e5" + integrity sha512-eYm8vijH/hpzr/6/1CJ/V/Eb1xQFW2nnUKArb3z+yUWv7HTwj6M7SP957oMjfZjAHU6qpoNc2wQvIxBLWYa/Jg== + +"@hypnosphi/create-react-context@^0.3.1": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz#f8bfebdc7665f5d426cba3753e0e9c7d3154d7c6" + integrity sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A== + dependencies: + gud "^1.0.0" + warning "^4.0.3" -"@cnakazawa/watch@^1.0.3": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" - integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== +"@jest/types@^27.2.5", "@jest/types@^27.4.0": + version "27.4.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.4.0.tgz#ac5c04d29ce47e0b96439dfd44ec3cd930fc9f86" + integrity sha512-jIsLdASXMf8GS7P7oGFGwobNse/6Ewq3GBPHoo0i6XRmja+NrUoDqJm4a1ffF2bHGleKJizxokcp1sCqSktP3g== dependencies: - exec-sh "^0.3.2" - minimist "^1.2.0" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^16.0.0" + chalk "^4.0.0" -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" - integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - get-package-type "^0.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - -"@jest/console@^25.5.0": - version "25.5.0" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-25.5.0.tgz#770800799d510f37329c508a9edd0b7b447d9abb" - integrity sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS/Udqg3Jj3jG/cHH+N/sLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw== - dependencies: - "@jest/types" "^25.5.0" - chalk "^3.0.0" - jest-message-util "^25.5.0" - jest-util "^25.5.0" - slash "^3.0.0" +"@jupyterlab/application@^3.2.3": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/application/-/application-3.2.4.tgz#3372febf790bbbbeca6700222ab590392b550767" + integrity sha512-/2RwT5UC6asT5YiCqIIXDk4bffrOP1NK1RInMuK/dvuGkiTX8EWw2+5VYM2hRG46lEqco/0IdS71WNvnN5SsIw== + dependencies: + "@fortawesome/fontawesome-free" "^5.12.0" + "@jupyterlab/apputils" "^3.2.4" + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/docregistry" "^3.2.4" + "@jupyterlab/rendermime" "^3.2.4" + "@jupyterlab/rendermime-interfaces" "^3.2.4" + "@jupyterlab/services" "^6.2.4" + "@jupyterlab/statedb" "^3.2.4" + "@jupyterlab/translation" "^3.2.4" + "@jupyterlab/ui-components" "^3.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/application" "^1.16.0" + "@lumino/commands" "^1.12.0" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/messaging" "^1.4.3" + "@lumino/polling" "^1.3.3" + "@lumino/properties" "^1.2.3" + "@lumino/signaling" "^1.4.3" + "@lumino/widgets" "^1.19.0" + +"@jupyterlab/apputils@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/apputils/-/apputils-3.2.4.tgz#b6e786ebd217530c5d9aa489fbc8a5b4dc957a9e" + integrity sha512-x+lWYhmwR4nLHSiODtMidr//AoYhr7G/qSK16aV/shn5mgp7FWFViPpTGcCT//TQkuj+82N+azbMOIysZ2wOEw== + dependencies: + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/services" "^6.2.4" + "@jupyterlab/settingregistry" "^3.2.4" + "@jupyterlab/statedb" "^3.2.4" + "@jupyterlab/translation" "^3.2.4" + "@jupyterlab/ui-components" "^3.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/commands" "^1.12.0" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/domutils" "^1.2.3" + "@lumino/messaging" "^1.4.3" + "@lumino/polling" "^1.3.3" + "@lumino/properties" "^1.2.3" + "@lumino/signaling" "^1.4.3" + "@lumino/virtualdom" "^1.8.0" + "@lumino/widgets" "^1.19.0" + "@types/react" "^17.0.0" + react "^17.0.1" + react-dom "^17.0.1" + sanitize-html "~2.3.3" + url "^0.11.0" + +"@jupyterlab/attachments@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/attachments/-/attachments-3.2.4.tgz#53ffc7e06b1cc8f6ba4c0ae965db23738ab1a032" + integrity sha512-ZNzlhgSBeoYbWzIzzI+yPxJY744RrkGS3EvYNW4SZBFUGP+S0xaTD0PKC75JQu0laCubagEaiRhovoCkfS+dLA== + dependencies: + "@jupyterlab/nbformat" "^3.2.4" + "@jupyterlab/observables" "^4.2.4" + "@jupyterlab/rendermime" "^3.2.4" + "@jupyterlab/rendermime-interfaces" "^3.2.4" + "@lumino/disposable" "^1.4.3" + "@lumino/signaling" "^1.4.3" -"@jest/core@^25.5.4": - version "25.5.4" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-25.5.4.tgz#3ef7412f7339210f003cdf36646bbca786efe7b4" - integrity sha512-3uSo7laYxF00Dg/DMgbn4xMJKmDdWvZnf89n8Xj/5/AeQ2dOQmn6b6Hkj/MleyzZWXpwv+WSdYWl4cLsy2JsoA== - dependencies: - "@jest/console" "^25.5.0" - "@jest/reporters" "^25.5.1" - "@jest/test-result" "^25.5.0" - "@jest/transform" "^25.5.1" - "@jest/types" "^25.5.0" - ansi-escapes "^4.2.1" - chalk "^3.0.0" - exit "^0.1.2" - graceful-fs "^4.2.4" - jest-changed-files "^25.5.0" - jest-config "^25.5.4" - jest-haste-map "^25.5.1" - jest-message-util "^25.5.0" - jest-regex-util "^25.2.6" - jest-resolve "^25.5.1" - jest-resolve-dependencies "^25.5.4" - jest-runner "^25.5.4" - jest-runtime "^25.5.4" - jest-snapshot "^25.5.1" - jest-util "^25.5.0" - jest-validate "^25.5.0" - jest-watcher "^25.5.0" - micromatch "^4.0.2" - p-each-series "^2.1.0" - realpath-native "^2.0.0" - rimraf "^3.0.0" - slash "^3.0.0" - strip-ansi "^6.0.0" +"@jupyterlab/cells@^3.2.3", "@jupyterlab/cells@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/cells/-/cells-3.2.4.tgz#7104f99c79a315f9a7aeead3c5df593ca36dbfbe" + integrity sha512-ttX83P2o7Vy5Lh4ohl/qWSn+exPo/rxmsD8itbqfFdonO2gqf4eQCNd20sHkunY+6WzA6eU6tqaMy7Ze9GKmdQ== + dependencies: + "@jupyterlab/apputils" "^3.2.4" + "@jupyterlab/attachments" "^3.2.4" + "@jupyterlab/codeeditor" "^3.2.4" + "@jupyterlab/codemirror" "^3.2.4" + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/filebrowser" "^3.2.4" + "@jupyterlab/nbformat" "^3.2.4" + "@jupyterlab/observables" "^4.2.4" + "@jupyterlab/outputarea" "^3.2.4" + "@jupyterlab/rendermime" "^3.2.4" + "@jupyterlab/services" "^6.2.4" + "@jupyterlab/shared-models" "^3.2.4" + "@jupyterlab/ui-components" "^3.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/coreutils" "^1.5.3" + "@lumino/domutils" "^1.2.3" + "@lumino/dragdrop" "^1.7.1" + "@lumino/messaging" "^1.4.3" + "@lumino/signaling" "^1.4.3" + "@lumino/virtualdom" "^1.8.0" + "@lumino/widgets" "^1.19.0" + marked "^2.0.0" + react "^17.0.1" + +"@jupyterlab/codeeditor@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/codeeditor/-/codeeditor-3.2.4.tgz#6190acfe08184c119273cd289eeec1bb9ebb48f3" + integrity sha512-h0PLQEuuth+y0Hz5jdj/aQSg3a4AFMnirTXIzbrP+YVLjLj7NzY12WKDukWayDd+SMQA+kHlbscO3lnWE7v89Q== + dependencies: + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/nbformat" "^3.2.4" + "@jupyterlab/observables" "^4.2.4" + "@jupyterlab/shared-models" "^3.2.4" + "@jupyterlab/translation" "^3.2.4" + "@jupyterlab/ui-components" "^3.2.4" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/dragdrop" "^1.7.1" + "@lumino/messaging" "^1.4.3" + "@lumino/signaling" "^1.4.3" + "@lumino/widgets" "^1.19.0" + +"@jupyterlab/codemirror@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/codemirror/-/codemirror-3.2.4.tgz#732163be94911c2bcbffda600af7c7d01abbbf93" + integrity sha512-6ocnfoQtFO70KfnJhneOVCcxqTZrO+9vBF+MdoISEPKK03MPwM/9tRs0rPEvzHUE4xEN+1KjFEb/3pcHB6WZiQ== + dependencies: + "@jupyterlab/apputils" "^3.2.4" + "@jupyterlab/codeeditor" "^3.2.4" + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/nbformat" "^3.2.4" + "@jupyterlab/observables" "^4.2.4" + "@jupyterlab/shared-models" "^3.2.4" + "@jupyterlab/statusbar" "^3.2.4" + "@jupyterlab/translation" "^3.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/commands" "^1.12.0" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/polling" "^1.3.3" + "@lumino/signaling" "^1.4.3" + "@lumino/widgets" "^1.19.0" + codemirror "~5.61.0" + react "^17.0.1" + y-codemirror "^3.0.1" + +"@jupyterlab/coreutils@^5.2.3", "@jupyterlab/coreutils@^5.2.4": + version "5.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/coreutils/-/coreutils-5.2.4.tgz#7cf858a35dc3076b77a7194c0abf1340564b1c39" + integrity sha512-0QXhg8R0bkb5LILhfphE/K5k4zJI8N+fNsmy/Nr4mDo8l8mB7km6OUcbSSNuJg1mYikOhEA+UxhqE0954UgxkQ== + dependencies: + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/signaling" "^1.4.3" + minimist "~1.2.0" + moment "^2.24.0" + path-browserify "^1.0.0" + url-parse "~1.5.1" + +"@jupyterlab/docmanager@^3.2.3", "@jupyterlab/docmanager@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/docmanager/-/docmanager-3.2.4.tgz#860f87465cf054882f44f38fc76cf4caf08d308e" + integrity sha512-FVmwek2Bn9aO5Q9lgK9abDBxgC/3LMhjokrP9PG0bwJ+vSrGngX+MoAE3UuFOxWxMhzBQ2d7zh90ToAUVTCBrQ== + dependencies: + "@jupyterlab/apputils" "^3.2.4" + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/docprovider" "^3.2.4" + "@jupyterlab/docregistry" "^3.2.4" + "@jupyterlab/services" "^6.2.4" + "@jupyterlab/statusbar" "^3.2.4" + "@jupyterlab/translation" "^3.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/messaging" "^1.4.3" + "@lumino/properties" "^1.2.3" + "@lumino/signaling" "^1.4.3" + "@lumino/widgets" "^1.19.0" + react "^17.0.1" + +"@jupyterlab/docprovider@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/docprovider/-/docprovider-3.2.4.tgz#c9a6513f12d88ea059e14d2a7e61ad3a760e10f7" + integrity sha512-7yh9lJslZb9/kgKD4Jta8XWhBrdZXN+/g2XKbRtgpESWboJ0/YAgglhxk2O+7pLVzs9vMdZmqAMCHbwui9+ltA== + dependencies: + "@jupyterlab/shared-models" "^3.2.4" + "@lumino/coreutils" "^1.5.3" + lib0 "^0.2.42" + y-websocket "^1.3.15" + yjs "^13.5.17" -"@jest/environment@^25.5.0": - version "25.5.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-25.5.0.tgz#aa33b0c21a716c65686638e7ef816c0e3a0c7b37" - integrity sha512-U2VXPEqL07E/V7pSZMSQCvV5Ea4lqOlT+0ZFijl/i316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA== - dependencies: - "@jest/fake-timers" "^25.5.0" - "@jest/types" "^25.5.0" - jest-mock "^25.5.0" - -"@jest/fake-timers@^25.5.0": - version "25.5.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-25.5.0.tgz#46352e00533c024c90c2bc2ad9f2959f7f114185" - integrity sha512-9y2+uGnESw/oyOI3eww9yaxdZyHq7XvprfP/eeoCsjqKYts2yRlsHS/SgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ== - dependencies: - "@jest/types" "^25.5.0" - jest-message-util "^25.5.0" - jest-mock "^25.5.0" - jest-util "^25.5.0" - lolex "^5.0.0" - -"@jest/globals@^25.5.2": - version "25.5.2" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-25.5.2.tgz#5e45e9de8d228716af3257eeb3991cc2e162ca88" - integrity sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA== - dependencies: - "@jest/environment" "^25.5.0" - "@jest/types" "^25.5.0" - expect "^25.5.0" - -"@jest/reporters@^25.5.1": - version "25.5.1" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-25.5.1.tgz#cb686bcc680f664c2dbaf7ed873e93aa6811538b" - integrity sha512-3jbd8pPDTuhYJ7vqiHXbSwTJQNavczPs+f1kRprRDxETeE3u6srJ+f0NPuwvOmk+lmunZzPkYWIFZDLHQPkviw== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^25.5.0" - "@jest/test-result" "^25.5.0" - "@jest/transform" "^25.5.1" - "@jest/types" "^25.5.0" - chalk "^3.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.2" - graceful-fs "^4.2.4" - istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^4.0.0" - istanbul-lib-report "^3.0.0" - istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.0.2" - jest-haste-map "^25.5.1" - jest-resolve "^25.5.1" - jest-util "^25.5.0" - jest-worker "^25.5.0" - slash "^3.0.0" - source-map "^0.6.0" - string-length "^3.1.0" - terminal-link "^2.0.0" - v8-to-istanbul "^4.1.3" - optionalDependencies: - node-notifier "^6.0.0" +"@jupyterlab/docregistry@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/docregistry/-/docregistry-3.2.4.tgz#edfccd2ff87ecb69aa8c56768fe8f43d2fb3a09a" + integrity sha512-3RVZrRgudrUqebz6FIgF8vD0nQsn7zzgy72XwB5YkYa7FBdLTf875ehUFXX4MdxqJC/uM/1th+0RPnnl8OwvaA== + dependencies: + "@jupyterlab/apputils" "^3.2.4" + "@jupyterlab/codeeditor" "^3.2.4" + "@jupyterlab/codemirror" "^3.2.4" + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/docprovider" "^3.2.4" + "@jupyterlab/observables" "^4.2.4" + "@jupyterlab/rendermime" "^3.2.4" + "@jupyterlab/rendermime-interfaces" "^3.2.4" + "@jupyterlab/services" "^6.2.4" + "@jupyterlab/shared-models" "^3.2.4" + "@jupyterlab/translation" "^3.2.4" + "@jupyterlab/ui-components" "^3.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/messaging" "^1.4.3" + "@lumino/signaling" "^1.4.3" + "@lumino/widgets" "^1.19.0" + yjs "^13.5.17" + +"@jupyterlab/filebrowser@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/filebrowser/-/filebrowser-3.2.4.tgz#cb226ef6181a7a6fba31e84f20e90c50557cb676" + integrity sha512-BF6nEO+ppUCrQdJur/JEzio+jRZqgTwdqk1KARmwtFYJMcbaCVMTnaInD//xopSwhcNRLDOfOlA45T1llkH3qQ== + dependencies: + "@jupyterlab/apputils" "^3.2.4" + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/docmanager" "^3.2.4" + "@jupyterlab/docregistry" "^3.2.4" + "@jupyterlab/services" "^6.2.4" + "@jupyterlab/statedb" "^3.2.4" + "@jupyterlab/statusbar" "^3.2.4" + "@jupyterlab/translation" "^3.2.4" + "@jupyterlab/ui-components" "^3.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/domutils" "^1.2.3" + "@lumino/dragdrop" "^1.7.1" + "@lumino/messaging" "^1.4.3" + "@lumino/polling" "^1.3.3" + "@lumino/signaling" "^1.4.3" + "@lumino/virtualdom" "^1.8.0" + "@lumino/widgets" "^1.19.0" + react "^17.0.1" + +"@jupyterlab/galata@~4.0.2": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@jupyterlab/galata/-/galata-4.0.3.tgz#ea5248dd49373de73bacd43adacf42dcc6fd820c" + integrity sha512-WeazxncK904mCuBBcL2+j8ryaOxGKCFNRI4xzfFdbCD6g5DE8zyXtUq7T6/u09g6ChG83NBrCIOqlZdps/TYag== + dependencies: + "@jupyterlab/application" "^3.2.3" + "@jupyterlab/cells" "^3.2.3" + "@jupyterlab/coreutils" "^5.2.3" + "@jupyterlab/docmanager" "^3.2.3" + "@jupyterlab/nbformat" "^3.2.3" + "@jupyterlab/notebook" "^3.2.3" + "@jupyterlab/services" "^6.2.3" + "@jupyterlab/settingregistry" "^3.2.3" + "@lumino/algorithm" "^1.3.3" + "@lumino/coreutils" "^1.5.3" + "@playwright/test" "^1.16.2" + canvas "^2.6.1" + fs-extra "^9.0.1" + http-server "^13.0.0" + json5 "^2.1.1" + node-fetch "^2.6.0" + path "~0.12.7" + systeminformation "^5.8.6" + vega "^5.20.0" + vega-lite "^5.1.0" + vega-statistics "^1.7.9" + +"@jupyterlab/nbformat@^3.2.3", "@jupyterlab/nbformat@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/nbformat/-/nbformat-3.2.4.tgz#dca9720804c949371d30227a8254de3b9feffc59" + integrity sha512-tEwt+vKAQEqj2smC8B5Myg693/5md3T9Nm3BM3Ix2NYqioCLlnGJ+aYQaOx1bsjyYWGLH/liW26O0NAUB3oEWg== + dependencies: + "@lumino/coreutils" "^1.5.3" -"@jest/source-map@^25.5.0": - version "25.5.0" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-25.5.0.tgz#df5c20d6050aa292c2c6d3f0d2c7606af315bd1b" - integrity sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ== +"@jupyterlab/notebook@^3.2.3": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/notebook/-/notebook-3.2.4.tgz#e3d946e601bf6df39fb00d69d3e7669eaa1fa15f" + integrity sha512-wth5JW5y90mZEhbYUY5WhWDNQ2kitNXiN6G4lPoA3V3alyAhax0N8WpRfOyd83CyCls9MtPhZM19ELWa0co4rg== + dependencies: + "@jupyterlab/apputils" "^3.2.4" + "@jupyterlab/cells" "^3.2.4" + "@jupyterlab/codeeditor" "^3.2.4" + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/docregistry" "^3.2.4" + "@jupyterlab/nbformat" "^3.2.4" + "@jupyterlab/observables" "^4.2.4" + "@jupyterlab/rendermime" "^3.2.4" + "@jupyterlab/services" "^6.2.4" + "@jupyterlab/shared-models" "^3.2.4" + "@jupyterlab/statusbar" "^3.2.4" + "@jupyterlab/translation" "^3.2.4" + "@jupyterlab/ui-components" "^3.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/coreutils" "^1.5.3" + "@lumino/domutils" "^1.2.3" + "@lumino/dragdrop" "^1.7.1" + "@lumino/messaging" "^1.4.3" + "@lumino/properties" "^1.2.3" + "@lumino/signaling" "^1.4.3" + "@lumino/virtualdom" "^1.8.0" + "@lumino/widgets" "^1.19.0" + react "^17.0.1" + +"@jupyterlab/observables@^4.2.4": + version "4.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/observables/-/observables-4.2.4.tgz#77be638b9a8b660576087151e275b9e08239dd4a" + integrity sha512-9b1a2+Tmda/Jr8oLMpMhQJAEpMRgILo8unjTnpMCb9RZgOZAwMRs+vItNqrjrapa4OO1vhIFVRWWqmxa5vz/6Q== + dependencies: + "@lumino/algorithm" "^1.3.3" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/messaging" "^1.4.3" + "@lumino/signaling" "^1.4.3" + +"@jupyterlab/outputarea@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/outputarea/-/outputarea-3.2.4.tgz#12e1ec4127bdbbad34326de2ac976bb914e69785" + integrity sha512-+JU3bu8SNAURf7orofVBUWiaNtC2b7SSi/Gd6KpJ/c7CnK2XaPZ1BdHD+ioMcAZsGEkymrFcmIvzXTZjpImJDQ== + dependencies: + "@jupyterlab/apputils" "^3.2.4" + "@jupyterlab/nbformat" "^3.2.4" + "@jupyterlab/observables" "^4.2.4" + "@jupyterlab/rendermime" "^3.2.4" + "@jupyterlab/rendermime-interfaces" "^3.2.4" + "@jupyterlab/services" "^6.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/messaging" "^1.4.3" + "@lumino/properties" "^1.2.3" + "@lumino/signaling" "^1.4.3" + "@lumino/widgets" "^1.19.0" + resize-observer-polyfill "^1.5.1" + +"@jupyterlab/rendermime-interfaces@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.2.4.tgz#671e52465fa4e8fba54faafb21642b9dffea45f5" + integrity sha512-/zVDeW2ZaRMzQW0EFj5v/hjpJNSDfhJfbx96rprYZC8d0qEvm3Bxyyda4CvsRhmaJKMTAQLW+oOEBn1kNbFTmg== dependencies: - callsites "^3.0.0" - graceful-fs "^4.2.4" - source-map "^0.6.0" + "@jupyterlab/translation" "^3.2.4" + "@lumino/coreutils" "^1.5.3" + "@lumino/widgets" "^1.19.0" + +"@jupyterlab/rendermime@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/rendermime/-/rendermime-3.2.4.tgz#b3826621eba13b280092e198dd1c896203a1c48d" + integrity sha512-G/CS2rMLM+rp5xrQ09Aq2Q2w+c3WN2XvLnEM091ELrfl7WGNytu9ms1bGSaM/ZCXw1o7FDRo1t4Yj066XtkB8A== + dependencies: + "@jupyterlab/apputils" "^3.2.4" + "@jupyterlab/codemirror" "^3.2.4" + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/nbformat" "^3.2.4" + "@jupyterlab/observables" "^4.2.4" + "@jupyterlab/rendermime-interfaces" "^3.2.4" + "@jupyterlab/services" "^6.2.4" + "@jupyterlab/translation" "^3.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/coreutils" "^1.5.3" + "@lumino/messaging" "^1.4.3" + "@lumino/signaling" "^1.4.3" + "@lumino/widgets" "^1.19.0" + lodash.escape "^4.0.1" + marked "^2.0.0" + +"@jupyterlab/services@^6.2.3", "@jupyterlab/services@^6.2.4": + version "6.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/services/-/services-6.2.4.tgz#bf6262f9807bbf341d02532736607c9fa085fd58" + integrity sha512-WpcKLDkwpq9jUQXUWJJn1cybxwwe8YMC8fdkVnI7RmCg5n0tGSV8+urfUv5Q8DdMdkAJnzSHEC6kIRbGoFpceQ== + dependencies: + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/nbformat" "^3.2.4" + "@jupyterlab/observables" "^4.2.4" + "@jupyterlab/settingregistry" "^3.2.4" + "@jupyterlab/statedb" "^3.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/polling" "^1.3.3" + "@lumino/signaling" "^1.4.3" + node-fetch "^2.6.0" + ws "^7.4.6" + +"@jupyterlab/settingregistry@^3.2.3", "@jupyterlab/settingregistry@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/settingregistry/-/settingregistry-3.2.4.tgz#6d863891702769769c4840435602206be06e84a6" + integrity sha512-kyr6y32YTD4S2XGthy17yRa6BdEQyuXqIl2hIKrn9oPdfM0OF3TDkAByB8W79KLQojsKcmGka19LvQov/N4+6A== + dependencies: + "@jupyterlab/statedb" "^3.2.4" + "@lumino/commands" "^1.12.0" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/signaling" "^1.4.3" + ajv "^6.12.3" + json5 "^2.1.1" -"@jest/test-result@^25.5.0": - version "25.5.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-25.5.0.tgz#139a043230cdeffe9ba2d8341b27f2efc77ce87c" - integrity sha512-oV+hPJgXN7IQf/fHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A== +"@jupyterlab/shared-models@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/shared-models/-/shared-models-3.2.4.tgz#979e000985e1cd3d3d6e96c71d010ec6aa61bb26" + integrity sha512-Jr2Yz5L0GneKhrFpomm3LW5eGDfRaxWt0c+MT/eFXWmqvVkOKW4N3qPEfP1HNIMqagcC1OoN2pvZAWkE3qQYjA== dependencies: - "@jest/console" "^25.5.0" - "@jest/types" "^25.5.0" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" + "@jupyterlab/nbformat" "^3.2.4" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/signaling" "^1.4.3" + y-protocols "^1.0.5" + yjs "^13.5.17" -"@jest/test-sequencer@^25.5.4": - version "25.5.4" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-25.5.4.tgz#9b4e685b36954c38d0f052e596d28161bdc8b737" - integrity sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA== +"@jupyterlab/statedb@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/statedb/-/statedb-3.2.4.tgz#6581223bf4aac29f2aa8c2fe99e6307c7b88a8a8" + integrity sha512-md9AlnrW1pzZTQiVUIJrZgijB3CsSs2J05V5cywo4/sgjwBTO1YGKQDEi6qtMAeO03gxfomGK7xLpoP+2Uaa2A== dependencies: - "@jest/test-result" "^25.5.0" - graceful-fs "^4.2.4" - jest-haste-map "^25.5.1" - jest-runner "^25.5.4" - jest-runtime "^25.5.4" - -"@jest/transform@^25.5.1": - version "25.5.1" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-25.5.1.tgz#0469ddc17699dd2bf985db55fa0fb9309f5c2db3" - integrity sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg== - dependencies: - "@babel/core" "^7.1.0" - "@jest/types" "^25.5.0" - babel-plugin-istanbul "^6.0.0" - chalk "^3.0.0" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.4" - jest-haste-map "^25.5.1" - jest-regex-util "^25.2.6" - jest-util "^25.5.0" - micromatch "^4.0.2" - pirates "^4.0.1" - realpath-native "^2.0.0" - slash "^3.0.0" - source-map "^0.6.1" - write-file-atomic "^3.0.0" + "@lumino/commands" "^1.12.0" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/properties" "^1.2.3" + "@lumino/signaling" "^1.4.3" -"@jest/types@^25.5.0": - version "25.5.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.5.0.tgz#4d6a4793f7b9599fc3680877b856a97dbccf2a9d" - integrity sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw== +"@jupyterlab/statusbar@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/statusbar/-/statusbar-3.2.4.tgz#0d44dcdb354e199c35de5664938dd41a2b276c4f" + integrity sha512-1oxNr926SJkxJ0b+hoHEWaFOnv+LVY6MWmv0wQvVzwCVDaQ3IjLXtOYheSXx7WtP4G3NjH2G/wM4mzqMs1JDbQ== + dependencies: + "@jupyterlab/apputils" "^3.2.4" + "@jupyterlab/codeeditor" "^3.2.4" + "@jupyterlab/services" "^6.2.4" + "@jupyterlab/translation" "^3.2.4" + "@jupyterlab/ui-components" "^3.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/messaging" "^1.4.3" + "@lumino/signaling" "^1.4.3" + "@lumino/widgets" "^1.19.0" + csstype "~3.0.3" + react "^17.0.1" + typestyle "^2.0.4" + +"@jupyterlab/translation@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/translation/-/translation-3.2.4.tgz#948c548f304c5d2d18878f2a578c8cee5ea43ef4" + integrity sha512-FTXhNw/KRmGGR/stWWyaeyyha3Y7k1jh/dVJIXMO5xlT+zzFHvquGCiMeMZR20P+xBDstrgX8Ei/LhG+gkx0yw== dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^1.1.1" - "@types/yargs" "^15.0.0" - chalk "^3.0.0" - -"@jupyterlab/galata@3.0.11-2": - version "3.0.11-2" - resolved "https://registry.yarnpkg.com/@jupyterlab/galata/-/galata-3.0.11-2.tgz#eeaf1a571a744718d664df7a3decc40907405bdc" - integrity sha512-i8jBhL0JUezAZ0Apa56Gy7lH6K0uuYhlkVwY0AYfrMJJw8ILLnd8yunt7QXAPto0m+QC3ud4VZ82KYck4W9+3w== - dependencies: - "@types/dateformat" "^3.0.1" - "@types/jest" "^25.1.2" - "@types/js-beautify" "^1.8.2" - "@types/node" "^13.1.1" - "@types/pixelmatch" "^5.0.0" - "@types/pngjs" "^3.4.1" - "@yarnpkg/lockfile" "^1.1.0" - ansi_up "^5.0.0" - axios "^0.21.1" - chalk "^4.0.0" - cross-spawn "^6.0.5" - dateformat "^3.0.3" - ejs "^3.0.1" - events "^3.0.0" - fs-extra "^8.1.0" - http-server "^0.12.1" - inquirer "^7.1.0" - jest "^25.1.0" - js-beautify "^1.10.3" - meow "^6.0.1" - open "^7.0.4" - pixelmatch "^5.1.0" - playwright "^1.9.1" - pngjs "^3.4.0" - semver "^7.3.2" - ts-jest "^25.2.0" - typescript "^3.7.4" - uuid "^3.4.0" - -"@sinonjs/commons@^1.7.0": - version "1.8.3" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" - integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== - dependencies: - type-detect "4.0.8" - -"@types/babel__core@^7.1.7": - version "7.1.15" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.15.tgz#2ccfb1ad55a02c83f8e0ad327cbc332f55eb1024" - integrity sha512-bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz#f456b4b2ce79137f768aa130d2423d2f0ccfaba5" - integrity sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.1" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" - integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.14.2" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43" - integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== - dependencies: - "@babel/types" "^7.3.0" - -"@types/dateformat@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/dateformat/-/dateformat-3.0.1.tgz#98d747a2e5e9a56070c6bf14e27bff56204e34cc" - integrity sha512-KlPPdikagvL6ELjWsljbyDIPzNCeliYkqRpI+zea99vBBbCIA5JNshZAwQKTON139c87y9qvTFVgkFd14rtS4g== + "@jupyterlab/coreutils" "^5.2.4" + "@jupyterlab/services" "^6.2.4" + "@jupyterlab/statedb" "^3.2.4" + "@lumino/coreutils" "^1.5.3" -"@types/graceful-fs@^4.1.2": - version "4.1.5" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" - integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== +"@jupyterlab/ui-components@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@jupyterlab/ui-components/-/ui-components-3.2.4.tgz#ed31720423e6430ab0d63201b1c944cc26f4ff36" + integrity sha512-uKxv8U/6TdAMbs0kBm142oAx9R4FcPk+CK5pbsBTInq+nvCmUlSYSAFEnuTbfNLeKQlWHdj8N2Q7upLFgfEs2w== + dependencies: + "@blueprintjs/core" "^3.36.0" + "@blueprintjs/select" "^3.15.0" + "@jupyterlab/coreutils" "^5.2.4" + "@lumino/algorithm" "^1.3.3" + "@lumino/commands" "^1.12.0" + "@lumino/coreutils" "^1.5.3" + "@lumino/disposable" "^1.4.3" + "@lumino/signaling" "^1.4.3" + "@lumino/virtualdom" "^1.8.0" + "@lumino/widgets" "^1.19.0" + react "^17.0.1" + react-dom "^17.0.1" + typestyle "^2.0.4" + +"@lumino/algorithm@^1.3.3", "@lumino/algorithm@^1.9.1": + version "1.9.1" + resolved "https://registry.yarnpkg.com/@lumino/algorithm/-/algorithm-1.9.1.tgz#a870598e031f5ee85e20e77ce7bfffbb0dffd7f5" + integrity sha512-d0rj7IYRzYj6WbWSrbJbKvrfO4H0NUnXT2yjSWS/sCklpTpSp0IGmndK/X4r6gG+ev5lb5+wBg9ofUDBvoAlAw== + +"@lumino/application@^1.16.0": + version "1.27.0" + resolved "https://registry.yarnpkg.com/@lumino/application/-/application-1.27.0.tgz#4d17725ed209e04e840102ff67c892d87ffac2a2" + integrity sha512-QSS2UG0s7n0gM80FTThl3Xax6CBuVxxyr4ex0LMoiM94lYUMmXHXvEkRp5D/FXfke6hhn2295hYE6mUJdGnXcw== + dependencies: + "@lumino/commands" "^1.19.0" + "@lumino/coreutils" "^1.11.1" + "@lumino/widgets" "^1.30.0" + +"@lumino/collections@^1.9.1": + version "1.9.1" + resolved "https://registry.yarnpkg.com/@lumino/collections/-/collections-1.9.1.tgz#268f1ec6850d5e131cfc8db232c7e1e106144aa0" + integrity sha512-5RaRGUY7BJ/1j173sc9DCfiVf70Z0hopRnBV8/AeAaK9bJJRAYjDhlZ9O8xTyouegh6krkOfiDyjl3pwogLrQw== + dependencies: + "@lumino/algorithm" "^1.9.1" + +"@lumino/commands@^1.12.0", "@lumino/commands@^1.19.0": + version "1.19.0" + resolved "https://registry.yarnpkg.com/@lumino/commands/-/commands-1.19.0.tgz#9349c34b900653ac9d654e47831e7204e0c3476f" + integrity sha512-DMX5TTvgmRAIhQpsSRgctYrnTNpIWgwmvmEjX37L+uKwUgZpBQUrprjfVblqv3kpwUugY2bQWy9Uza/P4muo1Q== + dependencies: + "@lumino/algorithm" "^1.9.1" + "@lumino/coreutils" "^1.11.1" + "@lumino/disposable" "^1.10.1" + "@lumino/domutils" "^1.8.1" + "@lumino/keyboard" "^1.8.1" + "@lumino/signaling" "^1.10.1" + "@lumino/virtualdom" "^1.14.1" + +"@lumino/coreutils@^1.11.1", "@lumino/coreutils@^1.5.3": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@lumino/coreutils/-/coreutils-1.11.1.tgz#6d89c6325d7adb5f2179dfe3660f0aec8f3c4546" + integrity sha512-TbXeYnUChSMN8SmuOwT+bADS3kMhsVaQC0sZie0ZeGaLYxVqvd7NEDRZATDtjdw7QGHK0TwH5+XzuSdNkAXpFw== + +"@lumino/disposable@^1.10.1", "@lumino/disposable@^1.4.3": + version "1.10.1" + resolved "https://registry.yarnpkg.com/@lumino/disposable/-/disposable-1.10.1.tgz#58fddc619cf89335802d168564b76ff5315d5a84" + integrity sha512-mZQILc8sVGZC7mJNOGVmehDRO9/u3sIRdjZ+pCYjDgXKcINLd6HoPhZDquKCWiRBfHTL1B3tOHjnBhahBc2N/Q== + dependencies: + "@lumino/algorithm" "^1.9.1" + "@lumino/signaling" "^1.10.1" + +"@lumino/domutils@^1.2.3", "@lumino/domutils@^1.8.1": + version "1.8.1" + resolved "https://registry.yarnpkg.com/@lumino/domutils/-/domutils-1.8.1.tgz#cf118e4eba90c3bf1e3edf7f19cce8846ec7875c" + integrity sha512-QUVXwmDMIfcHC3yslhmyGK4HYBKaJ3xX5MTwDrjsSX7J7AZ4jwL4zfsxyF9ntdqEKraoJhLQ6BaUBY+Ur1cnYw== + +"@lumino/dragdrop@^1.13.1", "@lumino/dragdrop@^1.7.1": + version "1.13.1" + resolved "https://registry.yarnpkg.com/@lumino/dragdrop/-/dragdrop-1.13.1.tgz#a8f8ae4262dcbba4ef85900f6081c90bd47df2b5" + integrity sha512-78tvTLwUkGbxrVentok7J4M1y+QHml3+Z+N5urxpXZMqVaLCeLxXfQO5QbWKiQjRWuPSoXhCB/PNBrlZeqzK+A== + dependencies: + "@lumino/coreutils" "^1.11.1" + "@lumino/disposable" "^1.10.1" + +"@lumino/keyboard@^1.8.1": + version "1.8.1" + resolved "https://registry.yarnpkg.com/@lumino/keyboard/-/keyboard-1.8.1.tgz#e7850e2fb973fbb4c6e737ca8d9307f2dc3eb74b" + integrity sha512-8x0y2ZQtEvOsblpI2gfTgf+gboftusP+5aukKEsgNQtzFl28RezQXEOSVd8iD3K6+Q1MaPQF0OALYP0ASqBjBg== + +"@lumino/messaging@^1.10.1", "@lumino/messaging@^1.4.3": + version "1.10.1" + resolved "https://registry.yarnpkg.com/@lumino/messaging/-/messaging-1.10.1.tgz#b29575cca46e2f23b84626b793ec8e2be46a53ba" + integrity sha512-XZSdt9ih94rdeeLL0cryUw6HHD51D7TP8c+MFf+YRF6VKwOFB9RoajfQWadeqpmH+schTs3EsrFfA9KHduzC7w== + dependencies: + "@lumino/algorithm" "^1.9.1" + "@lumino/collections" "^1.9.1" + +"@lumino/polling@^1.3.3": + version "1.9.1" + resolved "https://registry.yarnpkg.com/@lumino/polling/-/polling-1.9.1.tgz#38d5f31b16ecdf95af0f48b9b67f0444b3de2df8" + integrity sha512-eZbkLcEJmx+1ABekXchiWbZGKuaEfBvCYb0swWHFrHYi48dtmVsJtyLMDmLGPDZC7cOxoQ3YoSCYiCKmgSIQCA== + dependencies: + "@lumino/coreutils" "^1.11.1" + "@lumino/disposable" "^1.10.1" + "@lumino/signaling" "^1.10.1" + +"@lumino/properties@^1.2.3", "@lumino/properties@^1.8.1": + version "1.8.1" + resolved "https://registry.yarnpkg.com/@lumino/properties/-/properties-1.8.1.tgz#47eb8516e92c987dcb2c404db83a258159efec3d" + integrity sha512-O+CCcAqP64Di32DUZ4Jqq0DtUyE5RJREN5vbkgGZGu+WauJ/RYoiLDe1ubbAeSaHk71OrS60ZBV7QyC8ZaBVsA== + +"@lumino/signaling@^1.10.1", "@lumino/signaling@^1.4.3": + version "1.10.1" + resolved "https://registry.yarnpkg.com/@lumino/signaling/-/signaling-1.10.1.tgz#c8a1cb5b661b6744ea817c99c758fdc897847c26" + integrity sha512-GZVbX4cfk/ZqLwkemPD/NwqToaTL/6q7qdLpEhgkiPlaH1S5/V7fDpP7N1uFy4n3BDITId8cpYgH/Ds32Mdp3A== + dependencies: + "@lumino/algorithm" "^1.9.1" + +"@lumino/virtualdom@^1.14.1", "@lumino/virtualdom@^1.8.0": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@lumino/virtualdom/-/virtualdom-1.14.1.tgz#2551b146cbe87c48d23754f370c1331a60c9fe62" + integrity sha512-imIJd/wtRkoR1onEiG5nxPEaIrf70nn4PgD/56ri3/Lo6AJEX2CusF6iIA27GVB8yl/7CxgTHUnzzCwTFPypcA== + dependencies: + "@lumino/algorithm" "^1.9.1" + +"@lumino/widgets@^1.19.0", "@lumino/widgets@^1.30.0": + version "1.30.0" + resolved "https://registry.yarnpkg.com/@lumino/widgets/-/widgets-1.30.0.tgz#fdf96ffab9a018523b932afd5727317c3a360b4f" + integrity sha512-0nYFoaZrUzJHa1uWvPGHtRjz9TItwQIK0m2hT1IS6fyPv9QKdDELjEMBGUgXHX5Do5h3TWrou0tgdviKZ0KNrg== + dependencies: + "@lumino/algorithm" "^1.9.1" + "@lumino/commands" "^1.19.0" + "@lumino/coreutils" "^1.11.1" + "@lumino/disposable" "^1.10.1" + "@lumino/domutils" "^1.8.1" + "@lumino/dragdrop" "^1.13.1" + "@lumino/keyboard" "^1.8.1" + "@lumino/messaging" "^1.10.1" + "@lumino/properties" "^1.8.1" + "@lumino/signaling" "^1.10.1" + "@lumino/virtualdom" "^1.14.1" + +"@mapbox/node-pre-gyp@^1.0.0": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.7.tgz#a26919cac6595662703330d1820a0ca206f45521" + integrity sha512-PplSvl4pJ5N3BkVjAdDzpPhVUPdC73JgttkR+LnBx2OORC1GCQsBjUeEuipf9uOaAM1SbxcdZFfR3KDTKm2S0A== dependencies: - "@types/node" "*" + detect-libc "^1.0.3" + https-proxy-agent "^5.0.0" + make-dir "^3.1.0" + node-fetch "^2.6.5" + nopt "^5.0.0" + npmlog "^6.0.0" + rimraf "^3.0.2" + semver "^7.3.5" + tar "^6.1.11" + +"@playwright/test@^1.16.2": + version "1.16.3" + resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.16.3.tgz#99439d07af6a355586393b463fd88315f32d2a57" + integrity sha512-aJR6d6Fd/y6lq1RWWggcuiivM7offqddOW3te+NGGMxgF2P0xAxU0/xUurwIFnEp7iHwXILSZByzZ6W6fuKPIg== + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/core" "^7.14.8" + "@babel/plugin-proposal-class-properties" "^7.14.5" + "@babel/plugin-proposal-dynamic-import" "^7.14.5" + "@babel/plugin-proposal-export-namespace-from" "^7.14.5" + "@babel/plugin-proposal-logical-assignment-operators" "^7.14.5" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5" + "@babel/plugin-proposal-numeric-separator" "^7.14.5" + "@babel/plugin-proposal-optional-chaining" "^7.14.5" + "@babel/plugin-proposal-private-methods" "^7.14.5" + "@babel/plugin-proposal-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-transform-modules-commonjs" "^7.14.5" + "@babel/preset-typescript" "^7.14.5" + colors "^1.4.0" + commander "^8.2.0" + debug "^4.1.1" + expect "=27.2.5" + jest-matcher-utils "=27.2.5" + jpeg-js "^0.4.2" + minimatch "^3.0.3" + ms "^2.1.2" + open "^8.3.0" + pirates "^4.0.1" + pixelmatch "^5.2.1" + playwright-core "=1.16.3" + pngjs "^5.0.0" + rimraf "^3.0.2" + source-map-support "^0.4.18" + stack-utils "^2.0.3" + +"@types/clone@~2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@types/clone/-/clone-2.1.1.tgz#9b880d0ce9b1f209b5e0bd6d9caa38209db34024" + integrity sha512-BZIU34bSYye0j/BFcPraiDZ5ka6MJADjcDVELGf7glr9K+iE8NYVjFslJFVWzskSxkLLyCrSPScE82/UUoBSvg== + +"@types/dom4@^2.0.1": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@types/dom4/-/dom4-2.0.2.tgz#6495303f049689ce936ed328a3e5ede9c51408ee" + integrity sha512-Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g== + +"@types/estree@^0.0.50": + version "0.0.50" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz#1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83" + integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw== -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": version "2.0.3" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== @@ -578,80 +1170,51 @@ dependencies: "@types/istanbul-lib-coverage" "*" -"@types/istanbul-reports@^1.1.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2" - integrity sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw== +"@types/istanbul-reports@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" + integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== dependencies: - "@types/istanbul-lib-coverage" "*" "@types/istanbul-lib-report" "*" -"@types/jest@^25.1.2": - version "25.2.3" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-25.2.3.tgz#33d27e4c4716caae4eced355097a47ad363fdcaf" - integrity sha512-JXc1nK/tXHiDhV55dvfzqtmP4S3sy3T3ouV2tkViZgxY/zeUkcpQcQPGRlgF4KmWzWW5oiWYSZwtCB+2RsE4Fw== - dependencies: - jest-diff "^25.2.1" - pretty-format "^25.2.1" - -"@types/js-beautify@^1.8.2": - version "1.13.2" - resolved "https://registry.yarnpkg.com/@types/js-beautify/-/js-beautify-1.13.2.tgz#49783f6c6c68558738139e612b64b4f1a275383e" - integrity sha512-crV/441NhrynLIclg94i1wV6nX/6rU9ByUyn4muCrsL0HPd3nBzrt6kpQ9MQOB+HeYgLcRARteNJcbnYkp5OwA== - -"@types/minimist@^1.2.0": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" - integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== - "@types/node@*": version "16.3.2" resolved "https://registry.yarnpkg.com/@types/node/-/node-16.3.2.tgz#655432817f83b51ac869c2d51dd8305fb8342e16" integrity sha512-jJs9ErFLP403I+hMLGnqDRWT0RYKSvArxuBVh2veudHV7ifEC1WAmjJADacZ7mRbA2nWgHtn8xyECMAot0SkAw== -"@types/node@^13.1.1": - version "13.13.52" - resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.52.tgz#03c13be70b9031baaed79481c0c0cfb0045e53f7" - integrity sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ== - -"@types/normalize-package-data@^2.4.0": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" - integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== - -"@types/pixelmatch@^5.0.0": - version "5.2.4" - resolved "https://registry.yarnpkg.com/@types/pixelmatch/-/pixelmatch-5.2.4.tgz#ca145cc5ede1388c71c68edf2d1f5190e5ddd0f6" - integrity sha512-HDaSHIAv9kwpMN7zlmwfTv6gax0PiporJOipcrGsVNF3Ba+kryOZc0Pio5pn6NhisgWr7TaajlPEKTbTAypIBQ== - dependencies: - "@types/node" "*" +"@types/prop-types@*": + version "15.7.4" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11" + integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== -"@types/pngjs@^3.4.1": - version "3.4.2" - resolved "https://registry.yarnpkg.com/@types/pngjs/-/pngjs-3.4.2.tgz#8dc49b45fbcf18a5873179e3664f049388e39ecf" - integrity sha512-LJVPDraJ5YFEnMHnzxTN4psdWz1M61MtaAAWPn3qnDk5fvs7BAmmQ9pd3KPlrdrvozMyne4ktanD4pg0L7x1Pw== +"@types/react@^17.0.0": + version "17.0.37" + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.37.tgz#6884d0aa402605935c397ae689deed115caad959" + integrity sha512-2FS1oTqBGcH/s0E+CjrCCR9+JMpsu9b69RTFO+40ua43ZqP5MmQ4iUde/dMjWR909KxZwmOQIFq6AV6NjEG5xg== dependencies: - "@types/node" "*" + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" -"@types/prettier@^1.19.0": - version "1.19.1" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.19.1.tgz#33509849f8e679e4add158959fdb086440e9553f" - integrity sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ== +"@types/scheduler@*": + version "0.16.2" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" + integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== -"@types/stack-utils@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" - integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== +"@types/stack-utils@^2.0.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" + integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== "@types/yargs-parser@*": version "20.2.1" resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129" integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw== -"@types/yargs@^15.0.0": - version "15.0.14" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz#26d821ddb89e70492160b66d10a0eb6df8f6fb06" - integrity sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ== +"@types/yargs@^16.0.0": + version "16.0.4" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977" + integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== dependencies: "@types/yargs-parser" "*" @@ -662,45 +1225,34 @@ dependencies: "@types/node" "*" -"@yarnpkg/lockfile@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" - integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== - -abab@^2.0.0: - version "2.0.5" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" - integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== - abbrev@1: version "1.1.1" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== -acorn-globals@^4.3.2: - version "4.3.4" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" - integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== - dependencies: - acorn "^6.0.1" - acorn-walk "^6.0.1" - -acorn-walk@^6.0.1: - version "6.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" - integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== - -acorn@^6.0.1: - version "6.4.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" - integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== - -acorn@^7.1.0: - version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - -agent-base@6: +abstract-leveldown@^6.2.1: + version "6.3.0" + resolved "https://registry.yarnpkg.com/abstract-leveldown/-/abstract-leveldown-6.3.0.tgz#d25221d1e6612f820c35963ba4bd739928f6026a" + integrity sha512-TU5nlYgta8YrBMNpc9FwQzRbiXsj49gsALsXadbGHt9CROPzX5fB0rWDR5mtdpOOKa5XqRFpbj1QroPAoPzVjQ== + dependencies: + buffer "^5.5.0" + immediate "^3.2.3" + level-concat-iterator "~2.0.0" + level-supports "~1.0.0" + xtend "~4.0.0" + +abstract-leveldown@~6.2.1, abstract-leveldown@~6.2.3: + version "6.2.3" + resolved "https://registry.yarnpkg.com/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz#036543d87e3710f2528e47040bc3261b77a9a8eb" + integrity sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ== + dependencies: + buffer "^5.5.0" + immediate "^3.2.3" + level-concat-iterator "~2.0.0" + level-supports "~1.0.0" + xtend "~4.0.0" + +agent-base@6, agent-base@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== @@ -717,23 +1269,16 @@ ajv@^6.12.3: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ansi-escapes@^4.2.1: - version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-regex@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== - ansi-regex@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" @@ -748,90 +1293,33 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -ansi_up@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi_up/-/ansi_up-5.0.1.tgz#b66839dba408d3d2f8548904f1ae6fc62d6917ef" - integrity sha512-HGOTjFQECRKZM9fIlGhJfR2pcK8PMUWzFOqcPwqBEnNIa4P2r0Di+g2hxCX0hL0n1NUtAHGRA+fUyA/OajZYFw== +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== -anymatch@^2.0.0: +"aproba@^1.0.3 || ^2.0.0": version "2.0.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" - integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== - dependencies: - micromatch "^3.1.4" - normalize-path "^2.1.1" - -anymatch@^3.0.3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== +are-we-there-yet@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" + integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== dependencies: - sprintf-js "~1.0.2" + delegates "^1.0.0" + readable-stream "^3.6.0" -arr-diff@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= - -arr-flatten@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== - -arr-union@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= - -array-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" - integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= - -array-unique@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= - -arrify@^1.0.1: +array-flat-polyfill@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= - -asn1@~0.2.3: - version "0.2.4" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" - integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== - dependencies: - safer-buffer "~2.1.0" - -assert-plus@1.0.0, assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= - -assign-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= + resolved "https://registry.yarnpkg.com/array-flat-polyfill/-/array-flat-polyfill-1.0.1.tgz#1e3a4255be619dfbffbfd1d635c1cf357cd034e7" + integrity sha512-hfJmKupmQN0lwi0xG6FQ5U8Rd97RnIERplymOv/qpq8AoNKPPAnxJadjFA23FNWm88wykh9HmpLJUUwUtNU/iw== -astral-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" - integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== - -async@0.9.x: - version "0.9.2" - resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" - integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= +async-limiter@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== async@^2.6.2: version "2.6.3" @@ -840,122 +1328,33 @@ async@^2.6.2: dependencies: lodash "^4.17.14" -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= - -atob@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== - -aws-sign2@~0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= - -aws4@^1.8.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" - integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== - -axios@^0.21.1: - version "0.21.4" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" - integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== - dependencies: - follow-redirects "^1.14.0" - -babel-jest@^25.5.1: - version "25.5.1" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-25.5.1.tgz#bc2e6101f849d6f6aec09720ffc7bc5332e62853" - integrity sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ== - dependencies: - "@jest/transform" "^25.5.1" - "@jest/types" "^25.5.0" - "@types/babel__core" "^7.1.7" - babel-plugin-istanbul "^6.0.0" - babel-preset-jest "^25.5.0" - chalk "^3.0.0" - graceful-fs "^4.2.4" - slash "^3.0.0" - -babel-plugin-istanbul@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" - integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^4.0.0" - test-exclude "^6.0.0" - -babel-plugin-jest-hoist@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.5.0.tgz#129c80ba5c7fc75baf3a45b93e2e372d57ca2677" - integrity sha512-u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__traverse" "^7.0.6" - -babel-preset-current-node-syntax@^0.1.2: - version "0.1.4" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz#826f1f8e7245ad534714ba001f84f7e906c3b615" - integrity sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w== - dependencies: - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-bigint" "^7.8.3" - "@babel/plugin-syntax-class-properties" "^7.8.3" - "@babel/plugin-syntax-import-meta" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" - "@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" +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== -babel-preset-jest@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-25.5.0.tgz#c1d7f191829487a907764c65307faa0e66590b49" - integrity sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw== +babel-plugin-dynamic-import-node@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" + integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== dependencies: - babel-plugin-jest-hoist "^25.5.0" - babel-preset-current-node-syntax "^0.1.2" + object.assign "^4.1.0" balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base@^0.11.1: - version "0.11.2" - resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== - dependencies: - cache-base "^1.0.1" - class-utils "^0.3.5" - component-emitter "^1.2.1" - define-property "^1.0.0" - isobject "^3.0.1" - mixin-deep "^1.2.0" - pascalcase "^0.1.1" +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== basic-auth@^1.0.3: version "1.1.0" resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-1.1.0.tgz#45221ee429f7ee1e5035be3f51533f1cdfd29884" integrity sha1-RSIe5Cn37h5QNb4/UVM/HN/SmIQ= -bcrypt-pbkdf@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" - integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= - dependencies: - tweetnacl "^0.14.3" - brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -964,22 +1363,6 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" -braces@^2.3.1: - version "2.3.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== - dependencies: - arr-flatten "^1.1.0" - array-unique "^0.3.2" - extend-shallow "^2.0.1" - fill-range "^4.0.0" - isobject "^3.0.1" - repeat-element "^1.1.2" - snapdragon "^0.8.1" - snapdragon-node "^2.0.1" - split-string "^3.0.2" - to-regex "^3.0.1" - braces@^3.0.1: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" @@ -987,69 +1370,31 @@ braces@^3.0.1: dependencies: fill-range "^7.0.1" -browser-process-hrtime@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" - integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== - -browser-resolve@^1.11.3: - version "1.11.3" - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" - integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== +browserslist@^4.17.5: + version "4.18.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.18.1.tgz#60d3920f25b6860eb917c6c7b185576f4d8b017f" + integrity sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ== dependencies: - resolve "1.1.7" - -browserslist@^4.16.6: - version "4.16.6" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" - integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== - dependencies: - caniuse-lite "^1.0.30001219" - colorette "^1.2.2" - electron-to-chromium "^1.3.723" + caniuse-lite "^1.0.30001280" + electron-to-chromium "^1.3.896" escalade "^3.1.1" - node-releases "^1.1.71" - -bs-logger@0.x: - version "0.2.6" - resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" - integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== - dependencies: - fast-json-stable-stringify "2.x" - -bser@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" - integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== - dependencies: - node-int64 "^0.4.0" + node-releases "^2.0.1" + picocolors "^1.0.0" buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= -buffer-from@1.x, buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== +buffer@^5.5.0, buffer@^5.6.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" -cache-base@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== - dependencies: - collection-visit "^1.0.0" - component-emitter "^1.2.1" - get-value "^2.0.6" - has-value "^1.0.0" - isobject "^3.0.1" - set-value "^2.0.0" - to-object-path "^0.3.0" - union-value "^1.0.0" - unset-value "^1.0.0" - -call-bind@^1.0.0: +call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== @@ -1057,43 +1402,21 @@ call-bind@^1.0.0: function-bind "^1.1.1" get-intrinsic "^1.0.2" -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== +caniuse-lite@^1.0.30001280: + version "1.0.30001283" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001283.tgz#8573685bdae4d733ef18f78d44ba0ca5fe9e896b" + integrity sha512-9RoKo841j1GQFSJz/nCXOj0sD7tHBtlowjYlrqIUS812x9/emfBLBt6IyMz1zIaYc/eRL8Cs6HPUVi2Hzq4sIg== -camelcase-keys@^6.2.2: - version "6.2.2" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" - integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== +canvas@^2.6.1: + version "2.8.0" + resolved "https://registry.yarnpkg.com/canvas/-/canvas-2.8.0.tgz#f99ca7f25e6e26686661ffa4fec1239bbef74461" + integrity sha512-gLTi17X8WY9Cf5GZ2Yns8T5lfBOcGgFehDFb+JQwDqdOoBOcECS9ZWMEAqMSVcMYwXD659J8NyzjRY/2aE+C2Q== dependencies: - camelcase "^5.3.1" - map-obj "^4.0.0" - quick-lru "^4.0.1" - -camelcase@^5.0.0, camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -caniuse-lite@^1.0.30001219: - version "1.0.30001245" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001245.tgz#45b941bbd833cb0fa53861ff2bae746b3c6ca5d4" - integrity sha512-768fM9j1PKXpOCKws6eTo3RHmvTUsG9UrpT4WoREFeZgJBTi4/X9g565azS/rVUGtqb8nt7FjLeF5u4kukERnA== + "@mapbox/node-pre-gyp" "^1.0.0" + nan "^2.14.0" + simple-get "^3.0.3" -capture-exit@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" - integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== - dependencies: - rsvp "^4.8.4" - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= - -chalk@^2.0.0, chalk@^2.4.2: +chalk@^2.0.0: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -1102,15 +1425,7 @@ chalk@^2.0.0, chalk@^2.4.2: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^4.0.0, chalk@^4.1.0: +chalk@^4.0.0: version "4.1.1" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== @@ -1118,64 +1433,34 @@ chalk@^4.0.0, chalk@^4.1.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chardet@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== - -ci-info@^2.0.0: +chownr@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== - -class-utils@^0.3.5: - version "0.3.6" - resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== - dependencies: - arr-union "^3.1.0" - define-property "^0.2.5" - isobject "^3.0.0" - static-extend "^0.1.1" - -cli-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" - integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== - dependencies: - restore-cursor "^3.1.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== -cli-width@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" - integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== +classnames@^2.2: + version "2.3.1" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" + integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== -cliui@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" - integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== dependencies: string-width "^4.2.0" strip-ansi "^6.0.0" - wrap-ansi "^6.2.0" + wrap-ansi "^7.0.0" -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= +clone@~2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" + integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= -collect-v8-coverage@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" - integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== - -collection-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= - dependencies: - map-visit "^1.0.0" - object-visit "^1.0.0" +codemirror@~5.61.0: + version "5.61.1" + resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.61.1.tgz#ccfc8a43b8fcfb8b12e8e75b5ffde48d541406e0" + integrity sha512-+D1NZjAucuzE93vJGbAaXzvoBHwp9nJZWWWF9utjv25+5AZUiah6CIlfb4ikG4MoDsFsCG8niiJH5++OO2LgIQ== color-convert@^1.9.0: version "1.9.3" @@ -1201,130 +1486,180 @@ color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -colorette@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" - integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== +color-support@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== colors@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== -combined-stream@^1.0.6, combined-stream@~1.0.6: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -commander@^2.19.0: +commander@2: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== -commander@^6.1.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" - integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== - -component-emitter@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== +commander@^8.2.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" + integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= -config-chain@^1.1.12: - version "1.1.13" - resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" - integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== - dependencies: - ini "^1.3.4" - proto-list "~1.2.1" +console-control-strings@^1.0.0, console-control-strings@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= -convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: +convert-source-map@^1.7.0: version "1.8.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== dependencies: safe-buffer "~5.1.1" -copy-descriptor@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= - -core-util-is@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= - corser@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/corser/-/corser-2.0.1.tgz#8eda252ecaab5840dcd975ceb90d9370c819ff87" integrity sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c= -cross-spawn@^6.0.0, cross-spawn@^6.0.5: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - 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.0: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -cssom@^0.4.1: - version "0.4.4" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" - integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== - -cssom@~0.3.6: - version "0.3.8" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" - integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== - -cssstyle@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" - integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== +csstype@2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.9.tgz#05141d0cd557a56b8891394c1911c40c8a98d098" + integrity sha512-xz39Sb4+OaTsULgUERcCk+TJj8ylkL4aSVDQiX/ksxbELSqwkgt4d4RD7fovIdgJGSuNYqwZEiVjYY5l0ask+Q== + +csstype@^3.0.2, csstype@~3.0.3: + version "3.0.10" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.10.tgz#2ad3a7bed70f35b965707c092e5f30b327c290e5" + integrity sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA== + +"d3-array@1 - 2", d3-array@2, d3-array@^2.3.0, d3-array@^2.5.0, d3-array@^2.7.1: + version "2.12.1" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.12.1.tgz#e20b41aafcdffdf5d50928004ececf815a465e81" + integrity sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ== dependencies: - cssom "~0.3.6" + internmap "^1.0.0" -dashdash@^1.12.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= +"d3-color@1 - 2", d3-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-2.0.0.tgz#8d625cab42ed9b8f601a1760a389f7ea9189d62e" + integrity sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ== + +d3-delaunay@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-5.3.0.tgz#b47f05c38f854a4e7b3cea80e0bb12e57398772d" + integrity sha512-amALSrOllWVLaHTnDLHwMIiz0d1bBu9gZXd1FiLfXf8sHcX9jrcj81TVZOqD4UX7MgBZZ07c8GxzEgBpJqc74w== dependencies: - assert-plus "^1.0.0" + delaunator "4" -data-urls@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" - integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== +"d3-dispatch@1 - 2": + version "2.0.0" + resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-2.0.0.tgz#8a18e16f76dd3fcaef42163c97b926aa9b55e7cf" + integrity sha512-S/m2VsXI7gAti2pBoLClFFTMOO1HTtT0j99AuXLoGFKO6deHDdnv6ZGTxSTTUTgO1zVcv82fCOtDjYK4EECmWA== + +d3-dsv@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-2.0.0.tgz#b37b194b6df42da513a120d913ad1be22b5fe7c5" + integrity sha512-E+Pn8UJYx9mViuIUkoc93gJGGYut6mSDKy2+XaPwccwkRGlR+LO97L2VCCRjQivTwLHkSnAJG7yo00BWY6QM+w== dependencies: - abab "^2.0.0" - whatwg-mimetype "^2.2.0" - whatwg-url "^7.0.0" + commander "2" + iconv-lite "0.4" + rw "1" -dateformat@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" - integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== +d3-force@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-2.1.1.tgz#f20ccbf1e6c9e80add1926f09b51f686a8bc0937" + integrity sha512-nAuHEzBqMvpFVMf9OX75d00OxvOXdxY+xECIXjW6Gv8BRrXu6gAWbv/9XKrvfJ5i5DCokDW7RYE50LRoK092ew== + dependencies: + d3-dispatch "1 - 2" + d3-quadtree "1 - 2" + d3-timer "1 - 2" + +"d3-format@1 - 2", d3-format@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-2.0.0.tgz#a10bcc0f986c372b729ba447382413aabf5b0767" + integrity sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA== + +d3-geo-projection@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/d3-geo-projection/-/d3-geo-projection-3.0.0.tgz#45ad8ce756cdbfa8340b11b2988644d8e1fa42e4" + integrity sha512-1JE+filVbkEX2bT25dJdQ05iA4QHvUwev6o0nIQHOSrNlHCAKfVss/U10vEM3pA4j5v7uQoFdQ4KLbx9BlEbWA== + dependencies: + commander "2" + d3-array "1 - 2" + d3-geo "1.12.0 - 2" + resolve "^1.1.10" + +"d3-geo@1.12.0 - 2", d3-geo@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-2.0.2.tgz#c065c1b71fe8c5f1be657e5f43d9bdd010383c40" + integrity sha512-8pM1WGMLGFuhq9S+FpPURxic+gKzjluCD/CHTuUF3mXMeiCo0i6R0tO1s4+GArRFde96SLcW/kOFRjoAosPsFA== + dependencies: + d3-array "^2.5.0" + +d3-hierarchy@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-2.0.0.tgz#dab88a58ca3e7a1bc6cab390e89667fcc6d20218" + integrity sha512-SwIdqM3HxQX2214EG9GTjgmCc/mbSx4mQBn+DuEETubhOw6/U3fmnji4uCVrmzOydMHSO1nZle5gh6HB/wdOzw== + +"d3-interpolate@1.2.0 - 2", d3-interpolate@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-2.0.1.tgz#98be499cfb8a3b94d4ff616900501a64abc91163" + integrity sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ== + dependencies: + d3-color "1 - 2" + +"d3-path@1 - 2", d3-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-2.0.0.tgz#55d86ac131a0548adae241eebfb56b4582dd09d8" + integrity sha512-ZwZQxKhBnv9yHaiWd6ZU4x5BtCQ7pXszEV9CU6kRgwIQVQGLMv1oiL4M+MK/n79sYzsj+gcgpPQSctJUsLN7fA== + +"d3-quadtree@1 - 2": + version "2.0.0" + resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-2.0.0.tgz#edbad045cef88701f6fee3aee8e93fb332d30f9d" + integrity sha512-b0Ed2t1UUalJpc3qXzKi+cPGxeXRr4KU9YSlocN74aTzp6R/Ud43t79yLLqxHRWZfsvWXmbDWPpoENK1K539xw== + +d3-scale@^3.2.2: + version "3.3.0" + resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-3.3.0.tgz#28c600b29f47e5b9cd2df9749c206727966203f3" + integrity sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ== + dependencies: + d3-array "^2.3.0" + d3-format "1 - 2" + d3-interpolate "1.2.0 - 2" + d3-time "^2.1.1" + d3-time-format "2 - 3" + +d3-shape@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-2.1.0.tgz#3b6a82ccafbc45de55b57fcf956c584ded3b666f" + integrity sha512-PnjUqfM2PpskbSLTJvAzp2Wv4CZsnAgTfcVRTwW03QR3MkXF8Uo7B1y/lWkAsmbKwuecto++4NlsYcvYpXpTHA== + dependencies: + d3-path "1 - 2" + +"d3-time-format@2 - 3", d3-time-format@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-3.0.0.tgz#df8056c83659e01f20ac5da5fdeae7c08d5f1bb6" + integrity sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag== + dependencies: + d3-time "1 - 2" + +"d3-time@1 - 2", d3-time@^2.0.0, d3-time@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-2.1.1.tgz#e9d8a8a88691f4548e68ca085e5ff956724a6682" + integrity sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ== + dependencies: + d3-array "2" + +"d3-timer@1 - 2", d3-timer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-2.0.0.tgz#055edb1d170cfe31ab2da8968deee940b56623e6" + integrity sha512-TO4VLh0/420Y/9dO3+f9abDEFYeCUr2WZRlxJvbp4HPTQcSylXNiL6yZa9FIUvV1yRiFufl1bszTCLDqv9PWNA== debug@4, debug@^4.1.0, debug@^4.1.1: version "4.3.2" @@ -1333,13 +1668,6 @@ debug@4, debug@^4.1.0, debug@^4.1.1: dependencies: ms "2.1.2" -debug@^2.2.0, debug@^2.3.3: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - debug@^3.1.1: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" @@ -1347,123 +1675,139 @@ debug@^3.1.1: dependencies: ms "^2.1.1" -decamelize-keys@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" - integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= +debug@^4.3.1: + version "4.3.3" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== dependencies: - decamelize "^1.1.0" - map-obj "^1.0.0" - -decamelize@^1.1.0, decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + ms "2.1.2" -decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= +decompress-response@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" + integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== + dependencies: + mimic-response "^2.0.0" -deep-is@~0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= +deep-equal@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" + integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== + dependencies: + is-arguments "^1.0.4" + is-date-object "^1.0.1" + is-regex "^1.0.4" + object-is "^1.0.1" + object-keys "^1.1.1" + regexp.prototype.flags "^1.2.0" deepmerge@^4.2.2: version "4.2.2" resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== -define-property@^0.2.5: - version "0.2.5" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" - integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= +deferred-leveldown@~5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/deferred-leveldown/-/deferred-leveldown-5.3.0.tgz#27a997ad95408b61161aa69bd489b86c71b78058" + integrity sha512-a59VOT+oDy7vtAbLRCZwWgxu2BaCfd5Hk7wxJd48ei7I+nsg8Orlb9CLG0PMZienk9BSUKgeAqkO2+Lw+1+Ukw== dependencies: - is-descriptor "^0.1.0" + abstract-leveldown "~6.2.1" + inherits "^2.0.3" -define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" - integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= - dependencies: - is-descriptor "^1.0.0" +define-lazy-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== -define-property@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" - integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== +define-properties@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== dependencies: - is-descriptor "^1.0.2" - isobject "^3.0.1" + object-keys "^1.0.12" + +delaunator@4: + version "4.0.1" + resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-4.0.1.tgz#3d779687f57919a7a418f8ab947d3bddb6846957" + integrity sha512-WNPWi1IRKZfCt/qIDMfERkDp93+iZEmOxN2yy4Jg+Xhv8SLk2UTqqbe1sfiipn0and9QrE914/ihdx82Y/Giag== -delayed-stream@~1.0.0: +delegates@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= -detect-newline@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== +detect-libc@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= -diff-sequences@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" - integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg== +diff-sequences@^27.4.0: + version "27.4.0" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.4.0.tgz#d783920ad8d06ec718a060d00196dfef25b132a5" + integrity sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww== -domexception@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" - integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== +dom-helpers@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.4.0.tgz#e9b369700f959f62ecde5a6babde4bccd9169af8" + integrity sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA== dependencies: - webidl-conversions "^4.0.2" + "@babel/runtime" "^7.1.2" -ecc-jsbn@~0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" - integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= +dom-serializer@^1.0.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91" + integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== dependencies: - jsbn "~0.1.0" - safer-buffer "^2.1.0" + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" -ecstatic@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/ecstatic/-/ecstatic-3.3.2.tgz#6d1dd49814d00594682c652adb66076a69d46c48" - integrity sha512-fLf9l1hnwrHI2xn9mEDT7KIi22UDqA2jaCwyCbSUJh9a1V+LEUSL/JO/6TIz/QyuBURWUHrFL5Kg2TtO1bkkog== - dependencies: - he "^1.1.1" - mime "^1.6.0" - minimist "^1.1.0" - url-join "^2.0.5" +dom4@^2.1.5: + version "2.1.6" + resolved "https://registry.yarnpkg.com/dom4/-/dom4-2.1.6.tgz#c90df07134aa0dbd81ed4d6ba1237b36fc164770" + integrity sha512-JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA== + +domelementtype@^2.0.1, domelementtype@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" + integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== -editorconfig@^0.15.3: - version "0.15.3" - resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5" - integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g== +domhandler@^4.0.0, domhandler@^4.2.0: + version "4.2.2" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.2.tgz#e825d721d19a86b8c201a35264e226c678ee755f" + integrity sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w== dependencies: - commander "^2.19.0" - lru-cache "^4.1.5" - semver "^5.6.0" - sigmund "^1.0.1" + domelementtype "^2.2.0" -ejs@^3.0.1: - version "3.1.6" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.6.tgz#5bfd0a0689743bb5268b3550cceeebbc1702822a" - integrity sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw== +domutils@^2.5.2: + version "2.8.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== dependencies: - jake "^10.6.1" + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" -electron-to-chromium@^1.3.723: - version "1.3.776" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.776.tgz#33f6e2423b61f1bdaa8d2a103aae78a09764a75f" - integrity sha512-V0w7eFSBoFPpdw4xexjVPZ770UDZIevSwkkj4W97XbE3IsCsTRFpa7/yXGZ88EOQAUEA09JMMsWK0xsw0kRAYw== +electron-to-chromium@^1.3.896: + version "1.4.4" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.4.tgz#57311918524c1a26878c330537f967804d43788a" + integrity sha512-teHtgwcmVcL46jlFvAaqjyiTLWuMrUQO1JqV303JKB4ysXG6m8fXSFhbjal9st0r9mNskI22AraJZorb1VcLVg== emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== +encoding-down@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/encoding-down/-/encoding-down-6.3.0.tgz#b1c4eb0e1728c146ecaef8e32963c549e76d082b" + integrity sha512-QKrV0iKR6MZVJV08QY0wp1e7vF6QbhnbQhb07bwpEyuz4uZiZgPlEGdkCROuFkUwdxlFaiPIhjyarH1ee/3vhw== + dependencies: + abstract-leveldown "^6.2.1" + inherits "^2.0.3" + level-codec "^9.0.0" + level-errors "^2.0.0" + end-of-stream@^1.1.0: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" @@ -1471,12 +1815,17 @@ end-of-stream@^1.1.0: dependencies: once "^1.4.0" -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +errno@~0.1.1: + version "0.1.8" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" + integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== dependencies: - is-arrayish "^0.2.1" + prr "~1.0.1" escalade@^3.1.1: version "3.1.1" @@ -1493,149 +1842,27 @@ escape-string-regexp@^2.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== -escodegen@^1.11.1: - version "1.14.3" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" - integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== - dependencies: - esprima "^4.0.1" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -esprima@^4.0.0, esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -estraverse@^4.2.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== eventemitter3@^4.0.0: version "4.0.7" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== -events@^3.0.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== - -exec-sh@^0.3.2: - version "0.3.6" - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" - integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== - -execa@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - dependencies: - cross-spawn "^6.0.0" - get-stream "^4.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^3.2.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89" - integrity sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g== - dependencies: - cross-spawn "^7.0.0" - get-stream "^5.0.0" - human-signals "^1.1.1" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.0" - onetime "^5.1.0" - p-finally "^2.0.0" - signal-exit "^3.0.2" - strip-final-newline "^2.0.0" - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= - -expand-brackets@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" - integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= - dependencies: - debug "^2.3.3" - define-property "^0.2.5" - extend-shallow "^2.0.1" - posix-character-classes "^0.1.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -expect@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-25.5.0.tgz#f07f848712a2813bb59167da3fb828ca21f58bba" - integrity sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA== - dependencies: - "@jest/types" "^25.5.0" - ansi-styles "^4.0.0" - jest-get-type "^25.2.6" - jest-matcher-utils "^25.5.0" - jest-message-util "^25.5.0" - jest-regex-util "^25.2.6" - -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= - dependencies: - is-extendable "^0.1.0" - -extend-shallow@^3.0.0, extend-shallow@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= +expect@=27.2.5: + version "27.2.5" + resolved "https://registry.yarnpkg.com/expect/-/expect-27.2.5.tgz#16154aaa60b4d9a5b0adacfea3e4d6178f4b93fd" + integrity sha512-ZrO0w7bo8BgGoP/bLz+HDCI+0Hfei9jUSZs5yI/Wyn9VkG9w8oJ7rHRgYj+MA7yqqFa0IwHA3flJzZtYugShJA== dependencies: - assign-symbols "^1.0.0" - is-extendable "^1.0.1" - -extend@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -external-editor@^3.0.3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - dependencies: - chardet "^0.7.0" - iconv-lite "^0.4.24" - tmp "^0.0.33" - -extglob@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" - integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== - dependencies: - array-unique "^0.3.2" - define-property "^1.0.0" - expand-brackets "^2.1.4" - extend-shallow "^2.0.1" - fragment-cache "^0.2.1" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" + "@jest/types" "^27.2.5" + ansi-styles "^5.0.0" + jest-get-type "^27.0.6" + jest-matcher-utils "^27.2.5" + jest-message-util "^27.2.5" + jest-regex-util "^27.0.6" extract-zip@^2.0.1: version "2.0.1" @@ -1648,38 +1875,16 @@ extract-zip@^2.0.1: optionalDependencies: "@types/yauzl" "^2.9.1" -extsprintf@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= - -extsprintf@^1.2.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" - integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= - -fast-deep-equal@^3.1.1: +fast-deep-equal@^3.1.1, fast-deep-equal@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: +fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fast-levenshtein@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= - -fb-watchman@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" - integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== - dependencies: - bser "2.1.1" - fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" @@ -1687,30 +1892,6 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" -figures@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== - dependencies: - escape-string-regexp "^1.0.5" - -filelist@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.2.tgz#80202f21462d4d1c2e214119b1807c1bc0380e5b" - integrity sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ== - dependencies: - minimatch "^3.0.4" - -fill-range@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" - integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= - dependencies: - extend-shallow "^2.0.1" - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range "^2.1.0" - fill-range@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" @@ -1718,75 +1899,64 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -follow-redirects@^1.0.0, follow-redirects@^1.14.0: +follow-redirects@^1.0.0: version "1.14.4" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.4.tgz#838fdf48a8bbdd79e52ee51fb1c94e3ed98b9379" integrity sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g== -for-in@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= - -forever-agent@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= - -form-data@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" +free-style@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/free-style/-/free-style-3.1.0.tgz#4e2996029534e6b1731611d843437b9e2f473f08" + integrity sha512-vJujYSIyT30iDoaoeigNAxX4yB1RUrh+N2ZMhIElMr3BvCuGXOw7XNJMEEJkDUeamK2Rnb/IKFGKRKlTWIGRWA== -fragment-cache@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" - integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= +fs-extra@^9.0.1: + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== dependencies: - map-cache "^0.2.2" + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" -fs-extra@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== +fs-minipass@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== dependencies: - graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" + minipass "^3.0.0" fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= -fsevents@^2.1.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +gauge@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.0.tgz#afba07aa0374a93c6219603b1fb83eaa2264d8f8" + integrity sha512-F8sU45yQpjQjxKkm1UOAhf0U/O0aFt//Fl7hsrNVto+patMHjs7dPI9mFOGUKbhrgKm0S3EjW3scMFuQmWSROw== + dependencies: + ansi-regex "^5.0.1" + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.2" + console-control-strings "^1.0.0" + has-unicode "^2.0.1" + signal-exit "^3.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.2" + gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== -get-caller-file@^2.0.1: +get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== @@ -1800,38 +1970,14 @@ get-intrinsic@^1.0.2: has "^1.0.3" has-symbols "^1.0.1" -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-stream@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== - dependencies: - pump "^3.0.0" - -get-stream@^5.0.0, get-stream@^5.1.0: +get-stream@^5.1.0: version "5.2.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== dependencies: pump "^3.0.0" -get-value@^2.0.3, get-value@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= - -getpass@^0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= - dependencies: - assert-plus "^1.0.0" - -glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: +glob@^7.1.3: version "7.1.7" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== @@ -1853,28 +1999,10 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4: resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== -growly@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" - integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= - -har-schema@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" - integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= - -har-validator@~5.1.3: - version "5.1.5" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" - integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== - dependencies: - ajv "^6.12.3" - har-schema "^2.0.0" - -hard-rejection@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" - integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== +gud@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0" + integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw== has-flag@^3.0.0: version "3.0.0" @@ -1886,41 +2014,22 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-symbols@^1.0.1: +has-symbols@^1.0.1, has-symbols@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== -has-value@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" - integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= - dependencies: - get-value "^2.0.3" - has-values "^0.1.4" - isobject "^2.0.0" - -has-value@^1.0.0: +has-tostringtag@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" - integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== dependencies: - get-value "^2.0.6" - has-values "^1.0.0" - isobject "^3.0.0" + has-symbols "^1.0.2" -has-values@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" - integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= - -has-values@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" - integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= - dependencies: - is-number "^3.0.0" - kind-of "^4.0.0" +has-unicode@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= has@^1.0.3: version "1.0.3" @@ -1929,27 +2038,20 @@ has@^1.0.3: dependencies: function-bind "^1.1.1" -he@^1.1.1: +he@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== -hosted-git-info@^2.1.4: - version "2.8.9" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -html-encoding-sniffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" - integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== +htmlparser2@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" + integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== dependencies: - whatwg-encoding "^1.0.1" - -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.5.2" + entities "^2.0.0" http-proxy@^1.18.0: version "1.18.1" @@ -1960,30 +2062,23 @@ http-proxy@^1.18.0: follow-redirects "^1.0.0" requires-port "^1.0.0" -http-server@^0.12.1: - version "0.12.3" - resolved "https://registry.yarnpkg.com/http-server/-/http-server-0.12.3.tgz#ba0471d0ecc425886616cb35c4faf279140a0d37" - integrity sha512-be0dKG6pni92bRjq0kvExtj/NrrAd28/8fCXkaI/4piTwQMSDSLMhWyW0NI1V+DBI3aa1HMlQu46/HjVLfmugA== +http-server@^13.0.0: + version "13.0.2" + resolved "https://registry.yarnpkg.com/http-server/-/http-server-13.0.2.tgz#36f8a8ae0e1b78e7bf30a4dfb01ae89b904904ef" + integrity sha512-R8kvPT7qp11AMJWLZsRShvm6heIXdlR/+tL5oAWNG/86A/X+IAFX6q0F9SA2G+dR5aH/759+9PLH0V34Q6j4rg== dependencies: basic-auth "^1.0.3" colors "^1.4.0" corser "^2.0.1" - ecstatic "^3.3.2" + he "^1.1.0" http-proxy "^1.18.0" + mime "^1.6.0" minimist "^1.2.5" opener "^1.5.1" portfinder "^1.0.25" secure-compare "3.0.1" union "~0.5.0" - -http-signature@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" - integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= - dependencies: - assert-plus "^1.0.0" - jsprim "^1.2.2" - sshpk "^1.7.0" + url-join "^2.0.5" https-proxy-agent@^5.0.0: version "5.0.0" @@ -1993,35 +2088,22 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" -human-signals@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" - integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== - -iconv-lite@0.4.24, iconv-lite@^0.4.24: +iconv-lite@0.4: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" -import-local@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6" - integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== +immediate@^3.2.3: + version "3.3.0" + resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.3.0.tgz#1aef225517836bcdf7f2a2de2600c79ff0269266" + integrity sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q== inflight@^1.0.4: version "1.0.6" @@ -2031,70 +2113,33 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2: +inherits@2, inherits@^2.0.3, inherits@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -ini@^1.3.4: - version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -inquirer@^7.1.0: - version "7.3.3" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" - integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== - dependencies: - ansi-escapes "^4.2.1" - chalk "^4.1.0" - cli-cursor "^3.1.0" - cli-width "^3.0.0" - external-editor "^3.0.3" - figures "^3.0.0" - lodash "^4.17.19" - mute-stream "0.0.8" - run-async "^2.4.0" - rxjs "^6.6.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - through "^2.3.6" - -ip-regex@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" - integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= - -is-accessor-descriptor@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= - dependencies: - kind-of "^3.0.2" - -is-accessor-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== - dependencies: - kind-of "^6.0.0" +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= +internmap@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/internmap/-/internmap-1.0.1.tgz#0017cc8a3b99605f0302f2b198d272e015e5df95" + integrity sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw== -is-buffer@^1.1.5: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== +ip@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" + integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= -is-ci@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" - integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== dependencies: - ci-info "^2.0.0" + call-bind "^1.0.2" + has-tostringtag "^1.0.0" is-core-module@^2.2.0: version "2.5.0" @@ -2103,762 +2148,271 @@ is-core-module@^2.2.0: dependencies: has "^1.0.3" -is-data-descriptor@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= - dependencies: - kind-of "^3.0.2" - -is-data-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== - dependencies: - kind-of "^6.0.0" - -is-descriptor@^0.1.0: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== - dependencies: - is-accessor-descriptor "^0.1.6" - is-data-descriptor "^0.1.4" - kind-of "^5.0.0" - -is-descriptor@^1.0.0, is-descriptor@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== dependencies: - is-accessor-descriptor "^1.0.0" - is-data-descriptor "^1.0.0" - kind-of "^6.0.2" + has-tostringtag "^1.0.0" -is-docker@^2.0.0: +is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== -is-extendable@^0.1.0, is-extendable@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= - -is-extendable@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== - dependencies: - is-plain-object "^2.0.4" - is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - -is-number@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" - integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= - dependencies: - kind-of "^3.0.2" - is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= +is-plain-object@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== -is-plain-object@^2.0.3, is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== +is-regex@^1.0.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== dependencies: - isobject "^3.0.1" - -is-stream@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= - -is-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" - integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== - -is-typedarray@^1.0.0, is-typedarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + call-bind "^1.0.2" + has-tostringtag "^1.0.0" -is-windows@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - -is-wsl@^2.1.1: +is-wsl@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== dependencies: is-docker "^2.0.0" -isarray@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - -isobject@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= - dependencies: - isarray "1.0.0" - -isobject@^3.0.0, isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= - -istanbul-lib-coverage@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" - integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== - -istanbul-lib-instrument@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" - integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== - dependencies: - "@babel/core" "^7.7.5" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.0.0" - semver "^6.3.0" - -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" +isomorphic.js@^0.2.4: + version "0.2.4" + resolved "https://registry.yarnpkg.com/isomorphic.js/-/isomorphic.js-0.2.4.tgz#24ca374163ae54a7ce3b86ce63b701b91aa84969" + integrity sha512-Y4NjZceAwaPXctwsHgNsmfuPxR8lJ3f8X7QTAkhltrX4oGIv+eTlgHLXn4tWysC9zGTi929gapnPp+8F8cg7nA== -istanbul-lib-source-maps@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9" - integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg== +jest-diff@^27.2.5, jest-diff@^27.4.0: + version "27.4.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.4.0.tgz#d31269e4c070cd794cff756e39ecb4a4010be5cb" + integrity sha512-fdXgpnyQH4LNSnYgRfHN/g413bqbPspWIAZPlXrdNISehDih1VNDtuRvlzGQJ4Go+fur1HKB2IyI25t6cWi5EA== dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^3.0.0" - source-map "^0.6.1" + chalk "^4.0.0" + diff-sequences "^27.4.0" + jest-get-type "^27.4.0" + pretty-format "^27.4.0" -istanbul-reports@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b" - integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" +jest-get-type@^27.0.6, jest-get-type@^27.4.0: + version "27.4.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.4.0.tgz#7503d2663fffa431638337b3998d39c5e928e9b5" + integrity sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ== -jake@^10.6.1: - version "10.8.2" - resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.2.tgz#ebc9de8558160a66d82d0eadc6a2e58fbc500a7b" - integrity sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A== +jest-matcher-utils@=27.2.5: + version "27.2.5" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.2.5.tgz#4684faaa8eb32bf15e6edaead6834031897e2980" + integrity sha512-qNR/kh6bz0Dyv3m68Ck2g1fLW5KlSOUNcFQh87VXHZwWc/gY6XwnKofx76Qytz3x5LDWT09/2+yXndTkaG4aWg== dependencies: - async "0.9.x" - chalk "^2.4.2" - filelist "^1.0.1" - minimatch "^3.0.4" - -jest-changed-files@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-25.5.0.tgz#141cc23567ceb3f534526f8614ba39421383634c" - integrity sha512-EOw9QEqapsDT7mKF162m8HFzRPbmP8qJQny6ldVOdOVBz3ACgPm/1nAn5fPQ/NDaYhX/AHkrGwwkCncpAVSXcw== - dependencies: - "@jest/types" "^25.5.0" - execa "^3.2.0" - throat "^5.0.0" - -jest-cli@^25.5.4: - version "25.5.4" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-25.5.4.tgz#b9f1a84d1301a92c5c217684cb79840831db9f0d" - integrity sha512-rG8uJkIiOUpnREh1768/N3n27Cm+xPFkSNFO91tgg+8o2rXeVLStz+vkXkGr4UtzH6t1SNbjwoiswd7p4AhHTw== - dependencies: - "@jest/core" "^25.5.4" - "@jest/test-result" "^25.5.0" - "@jest/types" "^25.5.0" - chalk "^3.0.0" - exit "^0.1.2" - graceful-fs "^4.2.4" - import-local "^3.0.2" - is-ci "^2.0.0" - jest-config "^25.5.4" - jest-util "^25.5.0" - jest-validate "^25.5.0" - prompts "^2.0.1" - realpath-native "^2.0.0" - yargs "^15.3.1" - -jest-config@^25.5.4: - version "25.5.4" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-25.5.4.tgz#38e2057b3f976ef7309b2b2c8dcd2a708a67f02c" - integrity sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg== - dependencies: - "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^25.5.4" - "@jest/types" "^25.5.0" - babel-jest "^25.5.1" - chalk "^3.0.0" - deepmerge "^4.2.2" - glob "^7.1.1" - graceful-fs "^4.2.4" - jest-environment-jsdom "^25.5.0" - jest-environment-node "^25.5.0" - jest-get-type "^25.2.6" - jest-jasmine2 "^25.5.4" - jest-regex-util "^25.2.6" - jest-resolve "^25.5.1" - jest-util "^25.5.0" - jest-validate "^25.5.0" - micromatch "^4.0.2" - pretty-format "^25.5.0" - realpath-native "^2.0.0" - -jest-diff@^25.2.1, jest-diff@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9" - integrity sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A== - dependencies: - chalk "^3.0.0" - diff-sequences "^25.2.6" - jest-get-type "^25.2.6" - pretty-format "^25.5.0" - -jest-docblock@^25.3.0: - version "25.3.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-25.3.0.tgz#8b777a27e3477cd77a168c05290c471a575623ef" - integrity sha512-aktF0kCar8+zxRHxQZwxMy70stc9R1mOmrLsT5VO3pIT0uzGRSDAXxSlz4NqQWpuLjPpuMhPRl7H+5FRsvIQAg== - dependencies: - detect-newline "^3.0.0" - -jest-each@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-25.5.0.tgz#0c3c2797e8225cb7bec7e4d249dcd96b934be516" - integrity sha512-QBogUxna3D8vtiItvn54xXde7+vuzqRrEeaw8r1s+1TG9eZLVJE5ZkKoSUlqFwRjnlaA4hyKGiu9OlkFIuKnjA== - dependencies: - "@jest/types" "^25.5.0" - chalk "^3.0.0" - jest-get-type "^25.2.6" - jest-util "^25.5.0" - pretty-format "^25.5.0" - -jest-environment-jsdom@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-25.5.0.tgz#dcbe4da2ea997707997040ecf6e2560aec4e9834" - integrity sha512-7Jr02ydaq4jaWMZLY+Skn8wL5nVIYpWvmeatOHL3tOcV3Zw8sjnPpx+ZdeBfc457p8jCR9J6YCc+Lga0oIy62A== - dependencies: - "@jest/environment" "^25.5.0" - "@jest/fake-timers" "^25.5.0" - "@jest/types" "^25.5.0" - jest-mock "^25.5.0" - jest-util "^25.5.0" - jsdom "^15.2.1" - -jest-environment-node@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-25.5.0.tgz#0f55270d94804902988e64adca37c6ce0f7d07a1" - integrity sha512-iuxK6rQR2En9EID+2k+IBs5fCFd919gVVK5BeND82fYeLWPqvRcFNPKu9+gxTwfB5XwBGBvZ0HFQa+cHtIoslA== - dependencies: - "@jest/environment" "^25.5.0" - "@jest/fake-timers" "^25.5.0" - "@jest/types" "^25.5.0" - jest-mock "^25.5.0" - jest-util "^25.5.0" - semver "^6.3.0" - -jest-get-type@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877" - integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig== + chalk "^4.0.0" + jest-diff "^27.2.5" + jest-get-type "^27.0.6" + pretty-format "^27.2.5" -jest-haste-map@^25.5.1: - version "25.5.1" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-25.5.1.tgz#1df10f716c1d94e60a1ebf7798c9fb3da2620943" - integrity sha512-dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9/B0bIlZL+sWmvAQ== +jest-matcher-utils@^27.2.5: + version "27.4.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.4.0.tgz#0c9fee411f0450f045f9b49ec52aba231528b1fc" + integrity sha512-vBy1tEyuKiItYgV9x9ubccyadOy5xAAmDBgXk8dMppXBXG4glggrGcZvE+8l1r+te477bRcFLB/hRyGm5Tdxzw== dependencies: - "@jest/types" "^25.5.0" - "@types/graceful-fs" "^4.1.2" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.4" - jest-serializer "^25.5.0" - jest-util "^25.5.0" - jest-worker "^25.5.0" - micromatch "^4.0.2" - sane "^4.0.3" - walker "^1.0.7" - which "^2.0.2" - optionalDependencies: - fsevents "^2.1.2" - -jest-jasmine2@^25.5.4: - version "25.5.4" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-25.5.4.tgz#66ca8b328fb1a3c5364816f8958f6970a8526968" - integrity sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ== - dependencies: - "@babel/traverse" "^7.1.0" - "@jest/environment" "^25.5.0" - "@jest/source-map" "^25.5.0" - "@jest/test-result" "^25.5.0" - "@jest/types" "^25.5.0" - chalk "^3.0.0" - co "^4.6.0" - expect "^25.5.0" - is-generator-fn "^2.0.0" - jest-each "^25.5.0" - jest-matcher-utils "^25.5.0" - jest-message-util "^25.5.0" - jest-runtime "^25.5.4" - jest-snapshot "^25.5.1" - jest-util "^25.5.0" - pretty-format "^25.5.0" - throat "^5.0.0" - -jest-leak-detector@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-25.5.0.tgz#2291c6294b0ce404241bb56fe60e2d0c3e34f0bb" - integrity sha512-rV7JdLsanS8OkdDpZtgBf61L5xZ4NnYLBq72r6ldxahJWWczZjXawRsoHyXzibM5ed7C2QRjpp6ypgwGdKyoVA== - dependencies: - jest-get-type "^25.2.6" - pretty-format "^25.5.0" - -jest-matcher-utils@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.5.0.tgz#fbc98a12d730e5d2453d7f1ed4a4d948e34b7867" - integrity sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw== - dependencies: - chalk "^3.0.0" - jest-diff "^25.5.0" - jest-get-type "^25.2.6" - pretty-format "^25.5.0" - -jest-message-util@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-25.5.0.tgz#ea11d93204cc7ae97456e1d8716251185b8880ea" - integrity sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA== - dependencies: - "@babel/code-frame" "^7.0.0" - "@jest/types" "^25.5.0" - "@types/stack-utils" "^1.0.1" - chalk "^3.0.0" - graceful-fs "^4.2.4" - micromatch "^4.0.2" - slash "^3.0.0" - stack-utils "^1.0.1" - -jest-mock@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-25.5.0.tgz#a91a54dabd14e37ecd61665d6b6e06360a55387a" - integrity sha512-eXWuTV8mKzp/ovHc5+3USJMYsTBhyQ+5A1Mak35dey/RG8GlM4YWVylZuGgVXinaW6tpvk/RSecmF37FKUlpXA== - dependencies: - "@jest/types" "^25.5.0" - -jest-pnp-resolver@^1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" - integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== - -jest-regex-util@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-25.2.6.tgz#d847d38ba15d2118d3b06390056028d0f2fd3964" - integrity sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw== - -jest-resolve-dependencies@^25.5.4: - version "25.5.4" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-25.5.4.tgz#85501f53957c8e3be446e863a74777b5a17397a7" - integrity sha512-yFmbPd+DAQjJQg88HveObcGBA32nqNZ02fjYmtL16t1xw9bAttSn5UGRRhzMHIQbsep7znWvAvnD4kDqOFM0Uw== - dependencies: - "@jest/types" "^25.5.0" - jest-regex-util "^25.2.6" - jest-snapshot "^25.5.1" - -jest-resolve@^25.5.1: - version "25.5.1" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-25.5.1.tgz#0e6fbcfa7c26d2a5fe8f456088dc332a79266829" - integrity sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ== - dependencies: - "@jest/types" "^25.5.0" - browser-resolve "^1.11.3" - chalk "^3.0.0" - graceful-fs "^4.2.4" - jest-pnp-resolver "^1.2.1" - read-pkg-up "^7.0.1" - realpath-native "^2.0.0" - resolve "^1.17.0" - slash "^3.0.0" - -jest-runner@^25.5.4: - version "25.5.4" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-25.5.4.tgz#ffec5df3875da5f5c878ae6d0a17b8e4ecd7c71d" - integrity sha512-V/2R7fKZo6blP8E9BL9vJ8aTU4TH2beuqGNxHbxi6t14XzTb+x90B3FRgdvuHm41GY8ch4xxvf0ATH4hdpjTqg== - dependencies: - "@jest/console" "^25.5.0" - "@jest/environment" "^25.5.0" - "@jest/test-result" "^25.5.0" - "@jest/types" "^25.5.0" - chalk "^3.0.0" - exit "^0.1.2" - graceful-fs "^4.2.4" - jest-config "^25.5.4" - jest-docblock "^25.3.0" - jest-haste-map "^25.5.1" - jest-jasmine2 "^25.5.4" - jest-leak-detector "^25.5.0" - jest-message-util "^25.5.0" - jest-resolve "^25.5.1" - jest-runtime "^25.5.4" - jest-util "^25.5.0" - jest-worker "^25.5.0" - source-map-support "^0.5.6" - throat "^5.0.0" - -jest-runtime@^25.5.4: - version "25.5.4" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-25.5.4.tgz#dc981fe2cb2137abcd319e74ccae7f7eeffbfaab" - integrity sha512-RWTt8LeWh3GvjYtASH2eezkc8AehVoWKK20udV6n3/gC87wlTbE1kIA+opCvNWyyPeBs6ptYsc6nyHUb1GlUVQ== - dependencies: - "@jest/console" "^25.5.0" - "@jest/environment" "^25.5.0" - "@jest/globals" "^25.5.2" - "@jest/source-map" "^25.5.0" - "@jest/test-result" "^25.5.0" - "@jest/transform" "^25.5.1" - "@jest/types" "^25.5.0" - "@types/yargs" "^15.0.0" - chalk "^3.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.3" + chalk "^4.0.0" + jest-diff "^27.4.0" + jest-get-type "^27.4.0" + pretty-format "^27.4.0" + +jest-message-util@^27.2.5: + version "27.4.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.4.0.tgz#8961c47cf8974590fa1a94dbf30953e2cb047576" + integrity sha512-2KmfpnxFwt+5CF0YST6U1IwFomX9gx2dmcAV/ZjzF9/4tlmieExl7Ch7D36l94mIxWTXhDuPji4XOvxRBdswrQ== + dependencies: + "@babel/code-frame" "^7.12.13" + "@jest/types" "^27.4.0" + "@types/stack-utils" "^2.0.0" + chalk "^4.0.0" graceful-fs "^4.2.4" - jest-config "^25.5.4" - jest-haste-map "^25.5.1" - jest-message-util "^25.5.0" - jest-mock "^25.5.0" - jest-regex-util "^25.2.6" - jest-resolve "^25.5.1" - jest-snapshot "^25.5.1" - jest-util "^25.5.0" - jest-validate "^25.5.0" - realpath-native "^2.0.0" + micromatch "^4.0.4" + pretty-format "^27.4.0" slash "^3.0.0" - strip-bom "^4.0.0" - yargs "^15.3.1" - -jest-serializer@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-25.5.0.tgz#a993f484e769b4ed54e70e0efdb74007f503072b" - integrity sha512-LxD8fY1lByomEPflwur9o4e2a5twSQ7TaVNLlFUuToIdoJuBt8tzHfCsZ42Ok6LkKXWzFWf3AGmheuLAA7LcCA== - dependencies: - graceful-fs "^4.2.4" - -jest-snapshot@^25.5.1: - version "25.5.1" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-25.5.1.tgz#1a2a576491f9961eb8d00c2e5fd479bc28e5ff7f" - integrity sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ== - dependencies: - "@babel/types" "^7.0.0" - "@jest/types" "^25.5.0" - "@types/prettier" "^1.19.0" - chalk "^3.0.0" - expect "^25.5.0" - graceful-fs "^4.2.4" - jest-diff "^25.5.0" - jest-get-type "^25.2.6" - jest-matcher-utils "^25.5.0" - jest-message-util "^25.5.0" - jest-resolve "^25.5.1" - make-dir "^3.0.0" - natural-compare "^1.4.0" - pretty-format "^25.5.0" - semver "^6.3.0" + stack-utils "^2.0.3" -jest-util@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-25.5.0.tgz#31c63b5d6e901274d264a4fec849230aa3fa35b0" - integrity sha512-KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA== - dependencies: - "@jest/types" "^25.5.0" - chalk "^3.0.0" - graceful-fs "^4.2.4" - is-ci "^2.0.0" - make-dir "^3.0.0" - -jest-validate@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-25.5.0.tgz#fb4c93f332c2e4cf70151a628e58a35e459a413a" - integrity sha512-okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ== - dependencies: - "@jest/types" "^25.5.0" - camelcase "^5.3.1" - chalk "^3.0.0" - jest-get-type "^25.2.6" - leven "^3.1.0" - pretty-format "^25.5.0" - -jest-watcher@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-25.5.0.tgz#d6110d101df98badebe435003956fd4a465e8456" - integrity sha512-XrSfJnVASEl+5+bb51V0Q7WQx65dTSk7NL4yDdVjPnRNpM0hG+ncFmDYJo9O8jaSRcAitVbuVawyXCRoxGrT5Q== - dependencies: - "@jest/test-result" "^25.5.0" - "@jest/types" "^25.5.0" - ansi-escapes "^4.2.1" - chalk "^3.0.0" - jest-util "^25.5.0" - string-length "^3.1.0" - -jest-worker@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1" - integrity sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw== - dependencies: - merge-stream "^2.0.0" - supports-color "^7.0.0" - -jest@^25.1.0: - version "25.5.4" - resolved "https://registry.yarnpkg.com/jest/-/jest-25.5.4.tgz#f21107b6489cfe32b076ce2adcadee3587acb9db" - integrity sha512-hHFJROBTqZahnO+X+PMtT6G2/ztqAZJveGqz//FnWWHurizkD05PQGzRZOhF3XP6z7SJmL+5tCfW8qV06JypwQ== - dependencies: - "@jest/core" "^25.5.4" - import-local "^3.0.2" - jest-cli "^25.5.4" +jest-regex-util@^27.0.6: + version "27.4.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.4.0.tgz#e4c45b52653128843d07ad94aec34393ea14fbca" + integrity sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg== jpeg-js@^0.4.2: version "0.4.3" resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.3.tgz#6158e09f1983ad773813704be80680550eff977b" integrity sha512-ru1HWKek8octvUHFHvE5ZzQ1yAsJmIvRdGWvSoKV52XKyuyYA437QWDttXT8eZXDSbuMpHlLzPDZUPd6idIz+Q== -js-beautify@^1.10.3: - version "1.14.0" - resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.14.0.tgz#2ce790c555d53ce1e3d7363227acf5dc69024c2d" - integrity sha512-yuck9KirNSCAwyNJbqW+BxJqJ0NLJ4PwBUzQQACl5O3qHMBXVkXb/rD0ilh/Lat/tn88zSZ+CAHOlk0DsY7GuQ== - dependencies: - config-chain "^1.1.12" - editorconfig "^0.15.3" - glob "^7.1.3" - nopt "^5.0.0" - -js-tokens@^4.0.0: +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -jsbn@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= - -jsdom@^15.2.1: - version "15.2.1" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5" - integrity sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g== - dependencies: - abab "^2.0.0" - acorn "^7.1.0" - acorn-globals "^4.3.2" - array-equal "^1.0.0" - cssom "^0.4.1" - cssstyle "^2.0.0" - data-urls "^1.1.0" - domexception "^1.0.1" - escodegen "^1.11.1" - html-encoding-sniffer "^1.0.2" - nwsapi "^2.2.0" - parse5 "5.1.0" - pn "^1.1.0" - request "^2.88.0" - request-promise-native "^1.0.7" - saxes "^3.1.9" - symbol-tree "^3.2.2" - tough-cookie "^3.0.1" - w3c-hr-time "^1.0.1" - w3c-xmlserializer "^1.1.2" - webidl-conversions "^4.0.2" - whatwg-encoding "^1.0.5" - whatwg-mimetype "^2.3.0" - whatwg-url "^7.0.0" - ws "^7.0.0" - xml-name-validator "^3.0.0" - jsesc@^2.5.1: version "2.5.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== -json-schema@0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" - integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= - -json-stringify-safe@~5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= +json-stringify-pretty-compact@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz#f71ef9d82ef16483a407869556588e91b681d9ab" + integrity sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA== -json5@2.x, json5@^2.1.2: +json5@^2.1.1, json5@^2.1.2: version "2.2.0" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== dependencies: minimist "^1.2.5" -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" optionalDependencies: graceful-fs "^4.1.6" -jsprim@^1.2.2: - version "1.4.1" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" - integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= +klaw-sync@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" + integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ== dependencies: - assert-plus "1.0.0" - extsprintf "1.3.0" - json-schema "0.2.3" - verror "1.10.0" + graceful-fs "^4.1.11" + +klona@^2.0.3: + version "2.0.5" + resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc" + integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ== -kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= +level-codec@^9.0.0: + version "9.0.2" + resolved "https://registry.yarnpkg.com/level-codec/-/level-codec-9.0.2.tgz#fd60df8c64786a80d44e63423096ffead63d8cbc" + integrity sha512-UyIwNb1lJBChJnGfjmO0OR+ezh2iVu1Kas3nvBS/BzGnx79dv6g7unpKIDNPMhfdTEGoc7mC8uAu51XEtX+FHQ== dependencies: - is-buffer "^1.1.5" + buffer "^5.6.0" -kind-of@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" - integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= +level-concat-iterator@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/level-concat-iterator/-/level-concat-iterator-2.0.1.tgz#1d1009cf108340252cb38c51f9727311193e6263" + integrity sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw== + +level-errors@^2.0.0, level-errors@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/level-errors/-/level-errors-2.0.1.tgz#2132a677bf4e679ce029f517c2f17432800c05c8" + integrity sha512-UVprBJXite4gPS+3VznfgDSU8PTRuVX0NXwoWW50KLxd2yw4Y1t2JUR5In1itQnudZqRMT9DlAM3Q//9NCjCFw== dependencies: - is-buffer "^1.1.5" + errno "~0.1.1" -kind-of@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== +level-iterator-stream@~4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/level-iterator-stream/-/level-iterator-stream-4.0.2.tgz#7ceba69b713b0d7e22fcc0d1f128ccdc8a24f79c" + integrity sha512-ZSthfEqzGSOMWoUGhTXdX9jv26d32XJuHz/5YnuHZzH6wldfWMOVwI9TBtKcya4BKTyTt3XVA0A3cF3q5CY30Q== + dependencies: + inherits "^2.0.4" + readable-stream "^3.4.0" + xtend "^4.0.2" -kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== +level-js@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/level-js/-/level-js-5.0.2.tgz#5e280b8f93abd9ef3a305b13faf0b5397c969b55" + integrity sha512-SnBIDo2pdO5VXh02ZmtAyPP6/+6YTJg2ibLtl9C34pWvmtMEmRTWpra+qO/hifkUtBTOtfx6S9vLDjBsBK4gRg== + dependencies: + abstract-leveldown "~6.2.3" + buffer "^5.5.0" + inherits "^2.0.3" + ltgt "^2.1.2" -klaw-sync@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" - integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ== +level-packager@^5.1.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/level-packager/-/level-packager-5.1.1.tgz#323ec842d6babe7336f70299c14df2e329c18939" + integrity sha512-HMwMaQPlTC1IlcwT3+swhqf/NUO+ZhXVz6TY1zZIIZlIR0YSn8GtAAWmIvKjNY16ZkEg/JcpAuQskxsXqC0yOQ== dependencies: - graceful-fs "^4.1.11" + encoding-down "^6.3.0" + levelup "^4.3.2" -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== +level-supports@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/level-supports/-/level-supports-1.0.1.tgz#2f530a596834c7301622521988e2c36bb77d122d" + integrity sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg== + dependencies: + xtend "^4.0.2" -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== +level@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/level/-/level-6.0.1.tgz#dc34c5edb81846a6de5079eac15706334b0d7cd6" + integrity sha512-psRSqJZCsC/irNhfHzrVZbmPYXDcEYhA5TVNwr+V92jF44rbf86hqGp8fiT702FyiArScYIlPSBTDUASCVNSpw== + dependencies: + level-js "^5.0.0" + level-packager "^5.1.0" + leveldown "^5.4.0" -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= +leveldown@^5.4.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/leveldown/-/leveldown-5.6.0.tgz#16ba937bb2991c6094e13ac5a6898ee66d3eee98" + integrity sha512-iB8O/7Db9lPaITU1aA2txU/cBEXAt4vWwKQRrrWuS6XDgbP4QZGj9BL2aNbwb002atoQ/lIotJkfyzz+ygQnUQ== dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" + abstract-leveldown "~6.2.1" + napi-macros "~2.0.0" + node-gyp-build "~4.1.0" -lines-and-columns@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" - integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= +levelup@^4.3.2: + version "4.4.0" + resolved "https://registry.yarnpkg.com/levelup/-/levelup-4.4.0.tgz#f89da3a228c38deb49c48f88a70fb71f01cafed6" + integrity sha512-94++VFO3qN95cM/d6eBXvd894oJE0w3cInq9USsyQzzoJxmiYzPAocNcuGCPGGjoXqDVJcr3C1jzt1TSjyaiLQ== + dependencies: + deferred-leveldown "~5.3.0" + level-errors "~2.0.0" + level-iterator-stream "~4.0.0" + level-supports "~1.0.0" + xtend "~4.0.0" -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== +lib0@^0.2.31, lib0@^0.2.42, lib0@^0.2.43: + version "0.2.43" + resolved "https://registry.yarnpkg.com/lib0/-/lib0-0.2.43.tgz#1c2ed1fb2e9fe136e92abef7ca56875f2ee66b07" + integrity sha512-MJ1KLoz5p3gljIUBfdjjNuL/wlWHHK6+DrcIRhzSRLvtAu1XNdRtRGATYM51KSTI0P2nxJZFQM8rwCH6ga9KUw== dependencies: - p-locate "^4.1.0" + isomorphic.js "^0.2.4" -lodash.memoize@4.x: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= -lodash.sortby@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" - integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= +lodash.escape@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-4.0.1.tgz#c9044690c21e04294beaa517712fded1fa88de98" + integrity sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg= -lodash@^4.17.14, lodash@^4.17.19: +lodash@^4.17.14: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== -lolex@^5.0.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/lolex/-/lolex-5.1.2.tgz#953694d098ce7c07bc5ed6d0e42bc6c0c6d5a367" - integrity sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A== - dependencies: - "@sinonjs/commons" "^1.7.0" - -lru-cache@^4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" + js-tokens "^3.0.0 || ^4.0.0" lru-cache@^6.0.0: version "6.0.0" @@ -2867,70 +2421,24 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -make-dir@^3.0.0: +ltgt@^2.1.2: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ltgt/-/ltgt-2.2.1.tgz#f35ca91c493f7b73da0e07495304f17b31f87ee5" + integrity sha1-81ypHEk/e3PaDgdJUwTxezH4fuU= + +make-dir@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== dependencies: semver "^6.0.0" -make-error@1.x: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -makeerror@1.0.x: - version "1.0.11" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" - integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= - dependencies: - tmpl "1.0.x" - -map-cache@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= - -map-obj@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= - -map-obj@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.2.1.tgz#e4ea399dbc979ae735c83c863dd31bdf364277b7" - integrity sha512-+WA2/1sPmDj1dlvvJmB5G6JKfY9dpn7EVBUL06+y6PoljPkh+6V1QihwxNkbcGxCRjt2b0F9K0taiCuo7MbdFQ== - -map-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" - integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= - dependencies: - object-visit "^1.0.0" - -meow@^6.0.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/meow/-/meow-6.1.1.tgz#1ad64c4b76b2a24dfb2f635fddcadf320d251467" - integrity sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg== - dependencies: - "@types/minimist" "^1.2.0" - camelcase-keys "^6.2.2" - decamelize-keys "^1.1.0" - hard-rejection "^2.1.0" - minimist-options "^4.0.2" - normalize-package-data "^2.5.0" - read-pkg-up "^7.0.1" - redent "^3.0.0" - trim-newlines "^3.0.0" - type-fest "^0.13.1" - yargs-parser "^18.1.3" - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== +marked@^2.0.0: + version "2.1.3" + resolved "https://registry.yarnpkg.com/marked/-/marked-2.1.3.tgz#bd017cef6431724fd4b27e0657f5ceb14bff3753" + integrity sha512-/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA== -micromatch@4.x, micromatch@^4.0.2: +micromatch@^4.0.4: version "4.0.4" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== @@ -2938,37 +2446,6 @@ micromatch@4.x, micromatch@^4.0.2: braces "^3.0.1" picomatch "^2.2.3" -micromatch@^3.1.4: - version "3.1.10" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" - integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - braces "^2.3.1" - define-property "^2.0.2" - extend-shallow "^3.0.2" - extglob "^2.0.4" - fragment-cache "^0.2.1" - kind-of "^6.0.2" - nanomatch "^1.2.9" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.2" - -mime-db@1.48.0: - version "1.48.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d" - integrity sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ== - -mime-types@^2.1.12, mime-types@~2.1.19: - version "2.1.31" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.31.tgz#a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b" - integrity sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg== - dependencies: - mime-db "1.48.0" - mime@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" @@ -2979,124 +2456,101 @@ mime@^2.4.6: resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe" integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== -mimic-fn@^2.1.0: +mimic-response@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" + integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== - -minimatch@^3.0.4: +minimatch@^3.0.3, minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== dependencies: brace-expansion "^1.1.7" -minimist-options@^4.0.2: - version "4.1.0" - resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" - integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== - dependencies: - arrify "^1.0.1" - is-plain-obj "^1.1.0" - kind-of "^6.0.3" - -minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: +minimist@^1.2.5, minimist@~1.2.0: version "1.2.5" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== -mixin-deep@^1.2.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" - integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== +minipass@^3.0.0: + version "3.1.5" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.5.tgz#71f6251b0a33a49c01b3cf97ff77eda030dff732" + integrity sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw== dependencies: - for-in "^1.0.2" - is-extendable "^1.0.1" + yallist "^4.0.0" -mkdirp@0.x, mkdirp@^0.5.5: +minizlib@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + +mkdirp@^0.5.5: version "0.5.5" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== dependencies: minimist "^1.2.5" -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= +mkdirp@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +moment@^2.24.0: + version "2.29.1" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" + integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== ms@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@^2.1.1: +ms@^2.1.1, ms@^2.1.2: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -mute-stream@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" - integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== - -nanomatch@^1.2.9: - version "1.2.13" - resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" - integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - define-property "^2.0.2" - extend-shallow "^3.0.2" - fragment-cache "^0.2.1" - is-windows "^1.0.2" - kind-of "^6.0.2" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= +nan@^2.14.0: + version "2.15.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz#3f34a473ff18e15c1b5626b62903b5ad6e665fee" + integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ== -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== +nanoid@^3.1.30: + version "3.1.30" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.30.tgz#63f93cc548d2a113dc5dfbc63bfa09e2b9b64362" + integrity sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ== + +napi-macros@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/napi-macros/-/napi-macros-2.0.0.tgz#2b6bae421e7b96eb687aa6c77a7858640670001b" + integrity sha512-A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg== -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= +node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.5: + version "2.6.6" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.6.tgz#1751a7c01834e8e1697758732e9efb6eeadfaf89" + integrity sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA== + dependencies: + whatwg-url "^5.0.0" + +node-gyp-build@~4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.1.1.tgz#d7270b5d86717068d114cc57fff352f96d745feb" + integrity sha512-dSq1xmcPDKPZ2EED2S6zw/b9NKsqzXRE6dVr8TVQnI3FJOTteUMuqF3Qqs6LZg+mLGYJWqQzMbIjMtJqTv87nQ== node-modules-regexp@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= -node-notifier@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-6.0.0.tgz#cea319e06baa16deec8ce5cd7f133c4a46b68e12" - integrity sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw== - dependencies: - growly "^1.3.0" - is-wsl "^2.1.1" - semver "^6.3.0" - shellwords "^0.1.1" - which "^1.3.1" - -node-releases@^1.1.71: - version "1.1.73" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20" - integrity sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg== +node-releases@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.1.tgz#3d1d395f204f1f2f29a54358b9fb678765ad2fc5" + integrity sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA== nopt@^5.0.0: version "5.0.0" @@ -3105,79 +2559,53 @@ nopt@^5.0.0: dependencies: abbrev "1" -normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-path@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= - dependencies: - remove-trailing-separator "^1.0.1" - -normalize-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -npm-run-path@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" - integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= - dependencies: - path-key "^2.0.0" +normalize.css@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-8.0.1.tgz#9b98a208738b9cc2634caacbc42d131c97487bf3" + integrity sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg== -npm-run-path@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== +npmlog@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.0.tgz#ba9ef39413c3d936ea91553db7be49c34ad0520c" + integrity sha512-03ppFRGlsyUaQFbGC2C8QWJN/C/K7PsfyD9aQdhVKAQIH4sQBc8WASqFBP7O+Ut4d2oo5LoeoboB3cGdBZSp6Q== dependencies: - path-key "^3.0.0" - -nwsapi@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" - integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== - -oauth-sign@~0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" - integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + are-we-there-yet "^2.0.0" + console-control-strings "^1.1.0" + gauge "^4.0.0" + set-blocking "^2.0.0" -object-copy@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" - integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= - dependencies: - copy-descriptor "^0.1.0" - define-property "^0.2.5" - kind-of "^3.0.3" +object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= object-inspect@^1.9.0: version "1.11.0" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1" integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg== -object-visit@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" - integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== dependencies: - isobject "^3.0.0" + call-bind "^1.0.2" + define-properties "^1.1.3" -object.pick@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= +object-keys@^1.0.12, object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" + integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== dependencies: - isobject "^3.0.1" + call-bind "^1.0.0" + define-properties "^1.1.3" + has-symbols "^1.0.1" + object-keys "^1.1.1" once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" @@ -3186,133 +2614,59 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" -onetime@^5.1.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -open@^7.0.4: - version "7.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" - integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== +open@^8.3.0: + version "8.4.0" + resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" + integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== dependencies: - is-docker "^2.0.0" - is-wsl "^2.1.1" + define-lazy-prop "^2.0.0" + is-docker "^2.1.1" + is-wsl "^2.2.0" opener@^1.5.1: version "1.5.2" resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -os-tmpdir@~1.0.2: +parse-srcset@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1" + integrity sha1-8r0iH2zJcKk42IVWq8WJyqqiveE= -p-each-series@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" - integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA== - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= - -p-finally@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" - integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw== - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -parse-json@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parse5@5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" - integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== - -pascalcase@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" - integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== +path-browserify@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= -path-key@^2.0.0, path-key@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - path-parse@^1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== +path@~0.12.7: + version "0.12.7" + resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f" + integrity sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8= + dependencies: + process "^0.11.1" + util "^0.10.3" + pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= -performance-now@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -picomatch@^2.0.4, picomatch@^2.2.3: +picomatch@^2.2.3: version "2.3.0" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== @@ -3324,26 +2678,19 @@ pirates@^4.0.1: dependencies: node-modules-regexp "^1.0.0" -pixelmatch@^5.1.0: +pixelmatch@^5.2.1: version "5.2.1" resolved "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-5.2.1.tgz#9e4e4f4aa59648208a31310306a5bed5522b0d65" integrity sha512-WjcAdYSnKrrdDdqTcVEY7aB7UhhwjYQKYhHiBXdJef0MOaQeYpUdQ+iVyBLa5YBKS8MPVPPMX7rpOByISLpeEQ== dependencies: pngjs "^4.0.1" -pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -playwright@^1.9.1: - version "1.12.3" - resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.12.3.tgz#113afa2cba10fb56e9a5b307377343e32a155a99" - integrity sha512-eyhHvZV7dMAUltqjQsgJ9CjZM8dznzN1+rcfCI6W6lfQ7IlPvTFGLuKOCcI4ETbjfbxqaS5FKIkb1WDDzq2Nww== +playwright-core@=1.16.3: + version "1.16.3" + resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.16.3.tgz#f466be9acaffb698654adfb0a17a4906ba936895" + integrity sha512-16hF27IvQheJee+DbhC941AUZLjbJgfZFWi9YPS4LKEk/lKFhZI+9TiFD0sboYqb9eaEWvul47uR5xxTVbE4iw== dependencies: - commander "^6.1.0" + commander "^8.2.0" debug "^4.1.1" extract-zip "^2.0.1" https-proxy-agent "^5.0.0" @@ -3354,19 +2701,11 @@ playwright@^1.9.1: proper-lockfile "^4.1.1" proxy-from-env "^1.1.0" rimraf "^3.0.2" + socks-proxy-agent "^6.1.0" stack-utils "^2.0.3" - ws "^7.4.6" - yazl "^2.5.1" - -pn@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" - integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== - -pngjs@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f" - integrity sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w== + ws "^7.4.6" + yauzl "^2.10.0" + yazl "^2.5.1" pngjs@^4.0.1: version "4.0.1" @@ -3378,6 +2717,11 @@ pngjs@^5.0.0: resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-5.0.0.tgz#e79dd2b215767fd9c04561c01236df960bce7fbb" integrity sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw== +popper.js@^1.14.4, popper.js@^1.16.1: + version "1.16.1" + resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" + integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== + portfinder@^1.0.25: version "1.0.28" resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" @@ -3387,38 +2731,43 @@ portfinder@^1.0.25: debug "^3.1.1" mkdirp "^0.5.5" -posix-character-classes@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" - integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= +postcss@^8.0.2: + version "8.4.4" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.4.tgz#d53d4ec6a75fd62557a66bb41978bf47ff0c2869" + integrity sha512-joU6fBsN6EIer28Lj6GDFoC/5yOZzLCfn0zHAn/MYXI7aPt4m4hK5KC5ovEZXy+lnCjmYIbQWngvju2ddyEr8Q== + dependencies: + nanoid "^3.1.30" + picocolors "^1.0.0" + source-map-js "^1.0.1" -pretty-format@^25.2.1, pretty-format@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" - integrity sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ== +pretty-format@^27.2.5, pretty-format@^27.4.0: + version "27.4.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.4.0.tgz#440a7b86612a18b0865831a6d8585d989a5420e9" + integrity sha512-n0QR6hMREfp6nLzfVksXMAfIxk1ffOOfbb/FzKHFmRtn9iJKaZXB8WMzLr8a72IASShEAhqK06nlwp1gVWgqKg== dependencies: - "@jest/types" "^25.5.0" - ansi-regex "^5.0.0" - ansi-styles "^4.0.0" - react-is "^16.12.0" + "@jest/types" "^27.4.0" + ansi-regex "^5.0.1" + ansi-styles "^5.0.0" + react-is "^17.0.1" + +process@^0.11.1: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= progress@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -prompts@^2.0.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61" - integrity sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ== +prop-types@^15.6.1, prop-types@^15.6.2: + version "15.7.2" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" + integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.8.1" proper-lockfile@^4.1.1: version "4.1.2" @@ -3429,25 +2778,15 @@ proper-lockfile@^4.1.1: retry "^0.12.0" signal-exit "^3.0.2" -proto-list@~1.2.1: - version "1.2.4" - resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" - integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk= - proxy-from-env@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== -pseudomap@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= - -psl@^1.1.28: - version "1.8.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" - integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== +prr@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= pump@^3.0.0: version "3.0.0" @@ -3457,7 +2796,12 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -punycode@^2.1.0, punycode@^2.1.1: +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= + +punycode@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== @@ -3469,156 +2813,109 @@ qs@^6.4.0: dependencies: side-channel "^1.0.4" -qs@~6.5.2: - version "6.5.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" - integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= -quick-lru@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" - integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== +querystringify@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" + integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== -react-is@^16.12.0: +react-dom@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" + integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + scheduler "^0.20.2" + +react-is@^16.8.1: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -realpath-native@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866" - integrity sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q== - -redent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" - integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== - dependencies: - indent-string "^4.0.0" - strip-indent "^3.0.0" - -regex-not@^1.0.0, regex-not@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" - integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== - dependencies: - extend-shallow "^3.0.2" - safe-regex "^1.1.0" - -remove-trailing-separator@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= - -repeat-element@^1.1.2: - version "1.1.4" - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" - integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== - -repeat-string@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= +react-is@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== -request-promise-core@1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f" - integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== +react-lifecycles-compat@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" + integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== + +react-popper@^1.3.7: + version "1.3.11" + resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.11.tgz#a2cc3f0a67b75b66cfa62d2c409f9dd1fcc71ffd" + integrity sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg== + dependencies: + "@babel/runtime" "^7.1.2" + "@hypnosphi/create-react-context" "^0.3.1" + deep-equal "^1.1.1" + popper.js "^1.14.4" + prop-types "^15.6.1" + typed-styles "^0.0.7" + warning "^4.0.2" + +react-transition-group@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d" + integrity sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg== + dependencies: + dom-helpers "^3.4.0" + loose-envify "^1.4.0" + prop-types "^15.6.2" + react-lifecycles-compat "^3.0.4" + +react@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" + integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +readable-stream@^3.4.0, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +regexp.prototype.flags@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26" + integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== dependencies: - lodash "^4.17.19" - -request-promise-native@^1.0.7: - version "1.0.9" - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" - integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== - dependencies: - request-promise-core "1.1.4" - stealthy-require "^1.1.1" - tough-cookie "^2.3.3" - -request@^2.88.0: - version "2.88.2" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" - integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== - dependencies: - aws-sign2 "~0.7.0" - aws4 "^1.8.0" - caseless "~0.12.0" - combined-stream "~1.0.6" - extend "~3.0.2" - forever-agent "~0.6.1" - form-data "~2.3.2" - har-validator "~5.1.3" - http-signature "~1.2.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.19" - oauth-sign "~0.9.0" - performance-now "^2.1.0" - qs "~6.5.2" - safe-buffer "^5.1.2" - tough-cookie "~2.5.0" - tunnel-agent "^0.6.0" - uuid "^3.3.2" + call-bind "^1.0.2" + define-properties "^1.1.3" require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - requires-port@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve-url@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= +resize-observer-polyfill@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" + integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== -resolve@1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" - integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= - -resolve@^1.10.0, resolve@^1.17.0: +resolve@^1.1.10: version "1.20.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== @@ -3626,108 +2923,70 @@ resolve@^1.10.0, resolve@^1.17.0: is-core-module "^2.2.0" path-parse "^1.0.6" -restore-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" - integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - -ret@~0.1.10: - version "0.1.15" - resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" - integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== - retry@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= -rimraf@^3.0.0, rimraf@^3.0.2: +rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== dependencies: glob "^7.1.3" -rsvp@^4.8.4: - version "4.8.5" - resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" - integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== - -run-async@^2.4.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" - integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== - -rxjs@^6.6.0: - version "6.6.7" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" - integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== - dependencies: - tslib "^1.9.0" - -safe-buffer@^5.0.1, safe-buffer@^5.1.2: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +rw@1: + version "1.3.3" + resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" + integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= - dependencies: - ret "~0.1.10" +safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: +"safer-buffer@>= 2.1.2 < 3": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -sane@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" - integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== +sanitize-html@~2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-2.3.3.tgz#3db382c9a621cce4c46d90f10c64f1e9da9e8353" + integrity sha512-DCFXPt7Di0c6JUnlT90eIgrjs6TsJl/8HYU3KLdmrVclFN4O0heTcVbJiMa23OKVr6aR051XYtsgd8EWwEBwUA== dependencies: - "@cnakazawa/watch" "^1.0.3" - anymatch "^2.0.0" - capture-exit "^2.0.0" - exec-sh "^0.3.2" - execa "^1.0.0" - fb-watchman "^2.0.0" - micromatch "^3.1.4" - minimist "^1.1.1" - walker "~1.0.5" + deepmerge "^4.2.2" + escape-string-regexp "^4.0.0" + htmlparser2 "^6.0.0" + is-plain-object "^5.0.0" + klona "^2.0.3" + parse-srcset "^1.0.2" + postcss "^8.0.2" -saxes@^3.1.9: - version "3.1.11" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b" - integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g== +scheduler@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" + integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== dependencies: - xmlchars "^2.1.1" + loose-envify "^1.1.0" + object-assign "^4.1.1" secure-compare@3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/secure-compare/-/secure-compare-3.0.1.tgz#f1a0329b308b221fae37b9974f3d578d0ca999e3" integrity sha1-8aAymzCLIh+uN7mXTz1XjQypmeM= -"semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@6.x, semver@^6.0.0, semver@^6.3.0: +semver@^6.0.0, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.3.2: +semver@^7.3.5: version "7.3.5" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== @@ -3739,45 +2998,6 @@ set-blocking@^2.0.0: resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= -set-value@^2.0.0, set-value@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" - integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.3" - split-string "^3.0.1" - -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= - dependencies: - shebang-regex "^1.0.0" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shellwords@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" - integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== - side-channel@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" @@ -3787,155 +3007,69 @@ side-channel@^1.0.4: get-intrinsic "^1.0.2" object-inspect "^1.9.0" -sigmund@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" - integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA= - signal-exit@^3.0.0, signal-exit@^3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== +simple-concat@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" + integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== + +simple-get@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3" + integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA== + dependencies: + decompress-response "^4.2.0" + once "^1.3.1" + simple-concat "^1.0.0" slash@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -snapdragon-node@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" - integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== - dependencies: - define-property "^1.0.0" - isobject "^3.0.0" - snapdragon-util "^3.0.1" +smart-buffer@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" + integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== -snapdragon-util@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" - integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== +socks-proxy-agent@^6.1.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz#e664e8f1aaf4e1fb3df945f09e3d94f911137f87" + integrity sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew== dependencies: - kind-of "^3.2.0" + agent-base "^6.0.2" + debug "^4.3.1" + socks "^2.6.1" -snapdragon@^0.8.1: - version "0.8.2" - resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" - integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== +socks@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.6.1.tgz#989e6534a07cf337deb1b1c94aaa44296520d30e" + integrity sha512-kLQ9N5ucj8uIcxrDwjm0Jsqk06xdpBjGNQtpXy4Q8/QY2k+fY7nZH8CARy+hkbG+SGAovmzzuauCpBlb8FrnBA== dependencies: - base "^0.11.1" - debug "^2.2.0" - define-property "^0.2.5" - extend-shallow "^2.0.1" - map-cache "^0.2.2" - source-map "^0.5.6" - source-map-resolve "^0.5.0" - use "^3.1.0" + ip "^1.1.5" + smart-buffer "^4.1.0" -source-map-resolve@^0.5.0: - version "0.5.3" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" - integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== - dependencies: - atob "^2.1.2" - decode-uri-component "^0.2.0" - resolve-url "^0.2.1" - source-map-url "^0.4.0" - urix "^0.1.0" +source-map-js@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.1.tgz#a1741c131e3c77d048252adfa24e23b908670caf" + integrity sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA== -source-map-support@^0.5.6: - version "0.5.19" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" - integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== +source-map-support@^0.4.18: + version "0.4.18" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" + integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-url@^0.4.0: - version "0.4.1" - resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" - integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== + source-map "^0.5.6" source-map@^0.5.0, source-map@^0.5.6: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@^0.7.3: - version "0.7.3" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" - integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== - -spdx-correct@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" - integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.9" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz#8a595135def9592bda69709474f1cbeea7c2467f" - integrity sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ== - -split-string@^3.0.1, split-string@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== - dependencies: - extend-shallow "^3.0.0" - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= - -sshpk@^1.7.0: - version "1.16.1" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" - integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== - dependencies: - asn1 "~0.2.3" - assert-plus "^1.0.0" - bcrypt-pbkdf "^1.0.0" - dashdash "^1.12.0" - ecc-jsbn "~0.1.1" - getpass "^0.1.1" - jsbn "~0.1.0" - safer-buffer "^2.0.2" - tweetnacl "~0.14.0" - -stack-utils@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.5.tgz#a19b0b01947e0029c8e451d5d61a498f5bb1471b" - integrity sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ== - dependencies: - escape-string-regexp "^2.0.0" - stack-utils@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.3.tgz#cd5f030126ff116b78ccb3c027fe302713b61277" @@ -3943,26 +3077,14 @@ stack-utils@^2.0.3: dependencies: escape-string-regexp "^2.0.0" -static-extend@^0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: - define-property "^0.2.5" - object-copy "^0.1.0" - -stealthy-require@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" - integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= - -string-length@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837" - integrity sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA== - dependencies: - astral-regex "^1.0.0" - strip-ansi "^5.2.0" + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" string-width@^4.1.0, string-width@^4.2.0: version "4.2.2" @@ -3973,12 +3095,12 @@ string-width@^4.1.0, string-width@^4.2.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.0" -strip-ansi@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== dependencies: - ansi-regex "^4.1.0" + safe-buffer "~5.2.0" strip-ansi@^6.0.0: version "6.0.0" @@ -3987,27 +3109,12 @@ strip-ansi@^6.0.0: dependencies: ansi-regex "^5.0.0" -strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-eof@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== +strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: - min-indent "^1.0.0" + ansi-regex "^5.0.1" supports-color@^5.3.0: version "5.5.0" @@ -4016,85 +3123,35 @@ supports-color@^5.3.0: dependencies: has-flag "^3.0.0" -supports-color@^7.0.0, supports-color@^7.1.0: +supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" -supports-hyperlinks@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" - integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - -symbol-tree@^3.2.2: - version "3.2.4" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== - -terminal-link@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" - integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== - dependencies: - ansi-escapes "^4.2.1" - supports-hyperlinks "^2.0.0" - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - -throat@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" - integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== - -through@^2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= - -tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - -tmpl@1.0.x: - version "1.0.4" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" - integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= +systeminformation@^5.8.6: + version "5.9.15" + resolved "https://registry.yarnpkg.com/systeminformation/-/systeminformation-5.9.15.tgz#0f02fa6175cfe5c46b6b50618f851a046cf61cdb" + integrity sha512-0tUYPXffFEsme8n/iTAMk09jpGgqtaGf46QOx7oFmiON9zDUQCahfSymQaCRr4tsq9BkKolaOzp8nqMVNrKIqQ== + +tar@^6.1.11: + version "6.1.11" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" + integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^3.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= -to-object-path@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= - dependencies: - kind-of "^3.0.2" - -to-regex-range@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= - dependencies: - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" @@ -4102,131 +3159,40 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -to-regex@^3.0.1, to-regex@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" - integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== - dependencies: - define-property "^2.0.2" - extend-shallow "^3.0.2" - regex-not "^1.0.2" - safe-regex "^1.1.0" - -tough-cookie@^2.3.3, tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - dependencies: - psl "^1.1.28" - punycode "^2.1.1" - -tough-cookie@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2" - integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== - dependencies: - ip-regex "^2.1.0" - psl "^1.1.28" - punycode "^2.1.1" - -tr46@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" - integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= - dependencies: - punycode "^2.1.0" - -trim-newlines@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" - integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== - -ts-jest@^25.2.0: - version "25.5.1" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-25.5.1.tgz#2913afd08f28385d54f2f4e828be4d261f4337c7" - integrity sha512-kHEUlZMK8fn8vkxDjwbHlxXRB9dHYpyzqKIGDNxbzs+Rz+ssNDSDNusEK8Fk/sDd4xE6iKoQLfFkFVaskmTJyw== - dependencies: - bs-logger "0.x" - buffer-from "1.x" - fast-json-stable-stringify "2.x" - json5 "2.x" - lodash.memoize "4.x" - make-error "1.x" - micromatch "4.x" - mkdirp "0.x" - semver "6.x" - yargs-parser "18.x" - -tslib@^1.9.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= +topojson-client@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/topojson-client/-/topojson-client-3.1.0.tgz#22e8b1ed08a2b922feeb4af6f53b6ef09a467b99" + integrity sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw== dependencies: - safe-buffer "^5.0.1" + commander "2" -tweetnacl@^0.14.3, tweetnacl@~0.14.0: - version "0.14.5" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= - dependencies: - prelude-ls "~1.1.2" +tslib@~1.13.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" + integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== -type-detect@4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.13.1: - version "0.13.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" - integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -typedarray-to-buffer@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== - dependencies: - is-typedarray "^1.0.0" +tslib@~2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== -typescript@^3.7.4: - version "3.9.10" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" - integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== +typed-styles@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/typed-styles/-/typed-styles-0.0.7.tgz#93392a008794c4595119ff62dde6809dbc40a3d9" + integrity sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q== -union-value@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" - integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== +typestyle@^2.0.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/typestyle/-/typestyle-2.2.0.tgz#0b89231c405dda47e5acdcc2c33143ec7257134a" + integrity sha512-2lfoH6Wp0B2fhEwy+aXzRxAaLEz/JLKUKmlttYT2yYSZhoyI2MEgv5iQjvtIBu5q/EwyqTNuYcoL1Mioqv7dsA== dependencies: - arr-union "^3.1.0" - get-value "^2.0.6" - is-extendable "^0.1.1" - set-value "^2.0.1" + csstype "2.6.9" + free-style "3.1.0" union@~0.5.0: version "0.5.0" @@ -4235,18 +3201,10 @@ union@~0.5.0: dependencies: qs "^6.4.0" -universalify@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - -unset-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= - dependencies: - has-value "^0.3.1" - isobject "^3.0.0" +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== uri-js@^4.2.2: version "4.4.1" @@ -4255,129 +3213,400 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" -urix@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= - url-join@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/url-join/-/url-join-2.0.5.tgz#5af22f18c052a000a48d7b82c5e9c2e2feeda728" integrity sha1-WvIvGMBSoACkjXuCxenC4v7tpyg= -use@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" - integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== - -uuid@^3.3.2, uuid@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" - integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== - -v8-to-istanbul@^4.1.3: - version "4.1.4" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz#b97936f21c0e2d9996d4985e5c5156e9d4e49cd6" - integrity sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - source-map "^0.7.3" - -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== +url-parse@~1.5.1: + version "1.5.3" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.3.tgz#71c1303d38fb6639ade183c2992c8cc0686df862" + integrity sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ== dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" + querystringify "^2.1.1" + requires-port "^1.0.0" -verror@1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" + punycode "1.3.2" + querystring "0.2.0" -w3c-hr-time@^1.0.1: +util-deprecate@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" - integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== - dependencies: - browser-process-hrtime "^1.0.0" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +util@^0.10.3: + version "0.10.4" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" + integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== + dependencies: + inherits "2.0.3" + +vega-canvas@^1.2.5: + version "1.2.6" + resolved "https://registry.yarnpkg.com/vega-canvas/-/vega-canvas-1.2.6.tgz#55e032ce9a62acd17229f6bac66d99db3d6879cd" + integrity sha512-rgeYUpslYn/amIfnuv3Sw6n4BGns94OjjZNtUc9IDji6b+K8LGS/kW+Lvay8JX/oFqtulBp8RLcHN6QjqPLA9Q== + +vega-crossfilter@~4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/vega-crossfilter/-/vega-crossfilter-4.0.5.tgz#cf6a5fca60821928f976b32f22cf66cfd9cbeeae" + integrity sha512-yF+iyGP+ZxU7Tcj5yBsMfoUHTCebTALTXIkBNA99RKdaIHp1E690UaGVLZe6xde2n5WaYpho6I/I6wdAW3NXcg== + dependencies: + d3-array "^2.7.1" + vega-dataflow "^5.7.3" + vega-util "^1.15.2" + +vega-dataflow@^5.7.3, vega-dataflow@^5.7.4, vega-dataflow@~5.7.4: + version "5.7.4" + resolved "https://registry.yarnpkg.com/vega-dataflow/-/vega-dataflow-5.7.4.tgz#7cafc0a41b9d0b11dd2e34a513f8b7ca345dfd74" + integrity sha512-JGHTpUo8XGETH3b1V892we6hdjzCWB977ybycIu8DPqRoyrZuj6t1fCVImazfMgQD1LAfJlQybWP+alwKDpKig== + dependencies: + vega-format "^1.0.4" + vega-loader "^4.3.2" + vega-util "^1.16.1" + +vega-encode@~4.8.3: + version "4.8.3" + resolved "https://registry.yarnpkg.com/vega-encode/-/vega-encode-4.8.3.tgz#b3048fb39845d72f18d8dc302ad697f826e0ff83" + integrity sha512-JoRYtaV2Hs8spWLzTu/IjR7J9jqRmuIOEicAaWj6T9NSZrNWQzu2zF3IVsX85WnrIDIRUDaehXaFZvy9uv9RQg== + dependencies: + d3-array "^2.7.1" + d3-interpolate "^2.0.1" + vega-dataflow "^5.7.3" + vega-scale "^7.0.3" + vega-util "^1.15.2" + +vega-event-selector@^3.0.0, vega-event-selector@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/vega-event-selector/-/vega-event-selector-3.0.0.tgz#7b855ac0c3ddb59bc5b5caa0d96dbbc9fbd33a4c" + integrity sha512-Gls93/+7tEJGE3kUuUnxrBIxtvaNeF01VIFB2Q2Of2hBIBvtHX74jcAdDtkh5UhhoYGD8Q1J30P5cqEBEwtPoQ== -w3c-xmlserializer@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794" - integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg== +vega-expression@^5.0.0, vega-expression@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/vega-expression/-/vega-expression-5.0.0.tgz#938f26689693a1e0d26716030cdaed43ca7abdfb" + integrity sha512-y5+c2frq0tGwJ7vYXzZcfVcIRF/QGfhf2e+bV1Z0iQs+M2lI1II1GPDdmOcMKimpoCVp/D61KUJDIGE1DSmk2w== dependencies: - domexception "^1.0.1" - webidl-conversions "^4.0.2" - xml-name-validator "^3.0.0" + "@types/estree" "^0.0.50" + vega-util "^1.16.0" -walker@^1.0.7, walker@~1.0.5: - version "1.0.7" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" - integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= +vega-force@~4.0.7: + version "4.0.7" + resolved "https://registry.yarnpkg.com/vega-force/-/vega-force-4.0.7.tgz#6dc39ecb7889d9102661244d62fbc8d8714162ee" + integrity sha512-pyLKdwXSZ9C1dVIqdJOobvBY29rLvZjvRRTla9BU/nMwAiAGlGi6WKUFdRGdneyGe3zo2nSZDTZlZM/Z5VaQNA== dependencies: - makeerror "1.0.x" + d3-force "^2.1.1" + vega-dataflow "^5.7.3" + vega-util "^1.15.2" -webidl-conversions@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== +vega-format@^1.0.4, vega-format@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/vega-format/-/vega-format-1.0.4.tgz#40c0c252d11128738b845ee73d8173f8064d6626" + integrity sha512-oTAeub3KWm6nKhXoYCx1q9G3K43R6/pDMXvqDlTSUtjoY7b/Gixm8iLcir5S9bPjvH40n4AcbZsPmNfL/Up77A== + dependencies: + d3-array "^2.7.1" + d3-format "^2.0.0" + d3-time-format "^3.0.0" + vega-time "^2.0.3" + vega-util "^1.15.2" + +vega-functions@^5.10.0, vega-functions@^5.12.1, vega-functions@~5.12.1: + version "5.12.1" + resolved "https://registry.yarnpkg.com/vega-functions/-/vega-functions-5.12.1.tgz#b69f9ad4cd9f777dbc942587c02261b2f4cdba2c" + integrity sha512-7cHfcjXOj27qEbh2FTzWDl7FJK4xGcMFF7+oiyqa0fp7BU/wNT5YdNV0t5kCX9WjV7mfJWACKV74usLJbyM6GA== + dependencies: + d3-array "^2.7.1" + d3-color "^2.0.0" + d3-geo "^2.0.1" + vega-dataflow "^5.7.3" + vega-expression "^5.0.0" + vega-scale "^7.1.1" + vega-scenegraph "^4.9.3" + vega-selections "^5.3.1" + vega-statistics "^1.7.9" + vega-time "^2.0.4" + vega-util "^1.16.0" + +vega-geo@~4.3.8: + version "4.3.8" + resolved "https://registry.yarnpkg.com/vega-geo/-/vega-geo-4.3.8.tgz#5629d18327bb4f3700cdf05db4aced0a43abbf4a" + integrity sha512-fsGxV96Q/QRgPqOPtMBZdI+DneIiROKTG3YDZvGn0EdV16OG5LzFhbNgLT5GPzI+kTwgLpAsucBHklexlB4kfg== + dependencies: + d3-array "^2.7.1" + d3-color "^2.0.0" + d3-geo "^2.0.1" + vega-canvas "^1.2.5" + vega-dataflow "^5.7.3" + vega-projection "^1.4.5" + vega-statistics "^1.7.9" + vega-util "^1.15.2" + +vega-hierarchy@~4.0.9: + version "4.0.9" + resolved "https://registry.yarnpkg.com/vega-hierarchy/-/vega-hierarchy-4.0.9.tgz#4b4bafbc181a14a280ecdbee8874c0db7e369f47" + integrity sha512-4XaWK6V38/QOZ+vllKKTafiwL25m8Kd+ebHmDV+Q236ONHmqc/gv82wwn9nBeXPEfPv4FyJw2SRoqa2Jol6fug== + dependencies: + d3-hierarchy "^2.0.0" + vega-dataflow "^5.7.3" + vega-util "^1.15.2" + +vega-label@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/vega-label/-/vega-label-1.1.0.tgz#0a11ae3ba18d7aed909c51ec67c2a9dde4426c6f" + integrity sha512-LAThIiDEsZxYvbSkvPLJ93eJF+Ts8RXv1IpBh8gmew8XGmaLJvVkzdsMe7WJJwuaVEsK7ZZFyB/Inkp842GW6w== + dependencies: + vega-canvas "^1.2.5" + vega-dataflow "^5.7.3" + vega-scenegraph "^4.9.2" + vega-util "^1.15.2" -whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" - integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== +vega-lite@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/vega-lite/-/vega-lite-5.2.0.tgz#bc3c5c70a38d9de8f3fb9644c7dd52f3b9f47a1b" + integrity sha512-Yxcg8MvYfxHcG6BbkaKT0oVCIMIcE19UvqIsEwBmyd/7h2nzW7oRnID81T8UrY7hpDrIr6wa2JADOT2dhGNErw== + dependencies: + "@types/clone" "~2.1.1" + array-flat-polyfill "^1.0.1" + clone "~2.1.2" + fast-deep-equal "~3.1.3" + fast-json-stable-stringify "~2.1.0" + json-stringify-pretty-compact "~3.0.0" + tslib "~2.3.1" + vega-event-selector "~3.0.0" + vega-expression "~5.0.0" + vega-util "~1.17.0" + yargs "~17.2.1" + +vega-loader@^4.3.2, vega-loader@^4.3.3, vega-loader@~4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/vega-loader/-/vega-loader-4.4.1.tgz#8f9de46202f33659d1a2737f6e322a9fc3364275" + integrity sha512-dj65i4qlNhK0mOmjuchHgUrF5YUaWrYpx0A8kXA68lBk5Hkx8FNRztkcl07CZJ1+8V81ymEyJii9jzGbhEX0ag== + dependencies: + d3-dsv "^2.0.0" + node-fetch "^2.6.1" + topojson-client "^3.1.0" + vega-format "^1.0.4" + vega-util "^1.16.0" + +vega-parser@~6.1.4: + version "6.1.4" + resolved "https://registry.yarnpkg.com/vega-parser/-/vega-parser-6.1.4.tgz#4868e41af2c9645b6d7daeeb205cfad06b9d465c" + integrity sha512-tORdpWXiH/kkXcpNdbSVEvtaxBuuDtgYp9rBunVW9oLsjFvFXbSWlM1wvJ9ZFSaTfx6CqyTyGMiJemmr1QnTjQ== + dependencies: + vega-dataflow "^5.7.3" + vega-event-selector "^3.0.0" + vega-functions "^5.12.1" + vega-scale "^7.1.1" + vega-util "^1.16.0" + +vega-projection@^1.4.5, vega-projection@~1.4.5: + version "1.4.5" + resolved "https://registry.yarnpkg.com/vega-projection/-/vega-projection-1.4.5.tgz#020cb646b4eaae535359da25f4f48eef8d324af2" + integrity sha512-85kWcPv0zrrNfxescqHtSYpRknilrS0K3CVRZc7IYQxnLtL1oma9WEbrSr1LCmDoCP5hl2Z1kKbomPXkrQX5Ag== + dependencies: + d3-geo "^2.0.1" + d3-geo-projection "^3.0.0" + +vega-regression@~1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/vega-regression/-/vega-regression-1.0.9.tgz#f33da47fe457e03ad134782c11414bcef7b1da82" + integrity sha512-KSr3QbCF0vJEAWFVY2MA9X786oiJncTTr3gqRMPoaLr/Yo3f7OPKXRoUcw36RiWa0WCOEMgTYtM28iK6ZuSgaA== + dependencies: + d3-array "^2.7.1" + vega-dataflow "^5.7.3" + vega-statistics "^1.7.9" + vega-util "^1.15.2" + +vega-runtime@^6.1.3, vega-runtime@~6.1.3: + version "6.1.3" + resolved "https://registry.yarnpkg.com/vega-runtime/-/vega-runtime-6.1.3.tgz#01e18246f7a80cee034a96017ac30113b92c4034" + integrity sha512-gE+sO2IfxMUpV0RkFeQVnHdmPy3K7LjHakISZgUGsDI/ZFs9y+HhBf8KTGSL5pcZPtQsZh3GBQ0UonqL1mp9PA== + dependencies: + vega-dataflow "^5.7.3" + vega-util "^1.15.2" + +vega-scale@^7.0.3, vega-scale@^7.1.1, vega-scale@~7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/vega-scale/-/vega-scale-7.1.1.tgz#b69a38d1980f6fc1093390f796e556be63fdc808" + integrity sha512-yE0to0prA9E5PBJ/XP77TO0BMkzyUVyt7TH5PAwj+CZT7PMsMO6ozihelRhoIiVcP0Ae/ByCEQBUQkzN5zJ0ZA== + dependencies: + d3-array "^2.7.1" + d3-interpolate "^2.0.1" + d3-scale "^3.2.2" + vega-time "^2.0.4" + vega-util "^1.15.2" + +vega-scenegraph@^4.9.2, vega-scenegraph@^4.9.3, vega-scenegraph@^4.9.4, vega-scenegraph@~4.9.4: + version "4.9.4" + resolved "https://registry.yarnpkg.com/vega-scenegraph/-/vega-scenegraph-4.9.4.tgz#468408c1e89703fa9d3450445daabff623de2757" + integrity sha512-QaegQzbFE2yhYLNWAmHwAuguW3yTtQrmwvfxYT8tk0g+KKodrQ5WSmNrphWXhqwtsgVSvtdZkfp2IPeumcOQJg== + dependencies: + d3-path "^2.0.0" + d3-shape "^2.0.0" + vega-canvas "^1.2.5" + vega-loader "^4.3.3" + vega-scale "^7.1.1" + vega-util "^1.15.2" + +vega-selections@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/vega-selections/-/vega-selections-5.3.1.tgz#af5c3cc6532a55a5b692eb0fcc2a1d8d521605a4" + integrity sha512-cm4Srw1WHjcLGXX7GpxiUlfESv8XPu5b6Vh3mqMDPU94P2FO91SR9gei+EtRdt+KCFgIjr//MnRUjg/hAWwjkQ== dependencies: - iconv-lite "0.4.24" + vega-expression "^5.0.0" + vega-util "^1.16.0" -whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" - integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== +vega-statistics@^1.7.9, vega-statistics@~1.7.10: + version "1.7.10" + resolved "https://registry.yarnpkg.com/vega-statistics/-/vega-statistics-1.7.10.tgz#4353637402e5e96bff2ebd16bd58e2c15cac3018" + integrity sha512-QLb12gcfpDZ9K5h3TLGrlz4UXDH9wSPyg9LLfOJZacxvvJEPohacUQNrGEAVtFO9ccUCerRfH9cs25ZtHsOZrw== + dependencies: + d3-array "^2.7.1" -whatwg-url@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" - integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== +vega-time@^2.0.3, vega-time@^2.0.4, vega-time@~2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/vega-time/-/vega-time-2.0.4.tgz#ff308358a831de927caa44e281cdc96f0863ba08" + integrity sha512-U314UDR9+ZlWrD3KBaeH+j/c2WSMdvcZq5yJfFT0yTg1jsBKAQBYFGvl+orackD8Zx3FveHOxx3XAObaQeDX+Q== + dependencies: + d3-array "^2.7.1" + d3-time "^2.0.0" + vega-util "^1.15.2" + +vega-transforms@~4.9.4: + version "4.9.4" + resolved "https://registry.yarnpkg.com/vega-transforms/-/vega-transforms-4.9.4.tgz#5cf6b91bda9f184bbbaba63838be8e5e6a571235" + integrity sha512-JGBhm5Bf6fiGTUSB5Qr5ckw/KU9FJcSV5xIe/y4IobM/i/KNwI1i1fP45LzP4F4yZc0DMTwJod2UvFHGk9plKA== + dependencies: + d3-array "^2.7.1" + vega-dataflow "^5.7.4" + vega-statistics "^1.7.9" + vega-time "^2.0.4" + vega-util "^1.16.1" + +vega-typings@~0.22.0: + version "0.22.1" + resolved "https://registry.yarnpkg.com/vega-typings/-/vega-typings-0.22.1.tgz#287c646cfa93b1822d0fb6ea11d5543632f8b56e" + integrity sha512-88cIrjmoTxo/0nWTf+GuitkFhirHWVWCfymADiCUXt6s9arpQ6XPP5xjrN5KDc0LZd9xr7p4FIiEgADghgLTgw== + dependencies: + vega-event-selector "^3.0.0" + vega-expression "^5.0.0" + vega-util "^1.15.2" + +vega-util@^1.15.2, vega-util@^1.16.0, vega-util@^1.16.1, vega-util@~1.17.0: + version "1.17.0" + resolved "https://registry.yarnpkg.com/vega-util/-/vega-util-1.17.0.tgz#b72ae0baa97f943bf591f8f5bb27ceadf06834ac" + integrity sha512-HTaydZd9De3yf+8jH66zL4dXJ1d1p5OIFyoBzFiOli4IJbwkL1jrefCKz6AHDm1kYBzDJ0X4bN+CzZSCTvNk1w== + +vega-view-transforms@~4.5.8: + version "4.5.8" + resolved "https://registry.yarnpkg.com/vega-view-transforms/-/vega-view-transforms-4.5.8.tgz#c8dc42c3c7d4aa725d40b8775180c9f23bc98f4e" + integrity sha512-966m7zbzvItBL8rwmF2nKG14rBp7q+3sLCKWeMSUrxoG+M15Smg5gWEGgwTG3A/RwzrZ7rDX5M1sRaAngRH25g== + dependencies: + vega-dataflow "^5.7.3" + vega-scenegraph "^4.9.2" + vega-util "^1.15.2" + +vega-view@~5.10.1: + version "5.10.1" + resolved "https://registry.yarnpkg.com/vega-view/-/vega-view-5.10.1.tgz#b69348bb32a9845a1bd341fdd946df98684fadc3" + integrity sha512-4xvQ5KZcgKdZx1Z7jjenCUumvlyr/j4XcHLRf9gyeFrFvvS596dVpL92V8twhV6O++DmS2+fj+rHagO8Di4nMg== + dependencies: + d3-array "^2.7.1" + d3-timer "^2.0.0" + vega-dataflow "^5.7.3" + vega-format "^1.0.4" + vega-functions "^5.10.0" + vega-runtime "^6.1.3" + vega-scenegraph "^4.9.4" + vega-util "^1.16.1" + +vega-voronoi@~4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/vega-voronoi/-/vega-voronoi-4.1.5.tgz#e7af574d4c27fd9cb12d70082f12c6f59b80b445" + integrity sha512-950IkgCFLj0zG33EWLAm1hZcp+FMqWcNQliMYt+MJzOD5S4MSpZpZ7K4wp2M1Jktjw/CLKFL9n38JCI0i3UonA== + dependencies: + d3-delaunay "^5.3.0" + vega-dataflow "^5.7.3" + vega-util "^1.15.2" + +vega-wordcloud@~4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/vega-wordcloud/-/vega-wordcloud-4.1.3.tgz#ce90900333f4e0d3ee706ba4f36bb0905f8b4a9f" + integrity sha512-is4zYn9FMAyp9T4SAcz2P/U/wqc0Lx3P5YtpWKCbOH02a05vHjUQrQ2TTPOuvmMfAEDCSKvbMSQIJMOE018lJA== + dependencies: + vega-canvas "^1.2.5" + vega-dataflow "^5.7.3" + vega-scale "^7.1.1" + vega-statistics "^1.7.9" + vega-util "^1.15.2" + +vega@^5.20.0: + version "5.21.0" + resolved "https://registry.yarnpkg.com/vega/-/vega-5.21.0.tgz#f3d858d7544bfe4ffa3d8cd43d9ea978bf7391e8" + integrity sha512-yqqRa9nAqYoAxe7sVhRpsh0b001fly7Yx05klPkXmrvzjxXd07gClW1mOuGgSnVQqo7jTp/LYgbO1bD37FbEig== + dependencies: + vega-crossfilter "~4.0.5" + vega-dataflow "~5.7.4" + vega-encode "~4.8.3" + vega-event-selector "~3.0.0" + vega-expression "~5.0.0" + vega-force "~4.0.7" + vega-format "~1.0.4" + vega-functions "~5.12.1" + vega-geo "~4.3.8" + vega-hierarchy "~4.0.9" + vega-label "~1.1.0" + vega-loader "~4.4.1" + vega-parser "~6.1.4" + vega-projection "~1.4.5" + vega-regression "~1.0.9" + vega-runtime "~6.1.3" + vega-scale "~7.1.1" + vega-scenegraph "~4.9.4" + vega-statistics "~1.7.10" + vega-time "~2.0.4" + vega-transforms "~4.9.4" + vega-typings "~0.22.0" + vega-util "~1.17.0" + vega-view "~5.10.1" + vega-view-transforms "~4.5.8" + vega-voronoi "~4.1.5" + vega-wordcloud "~4.1.3" + +warning@^4.0.2, warning@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" + integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== dependencies: - lodash.sortby "^4.7.0" - tr46 "^1.0.1" - webidl-conversions "^4.0.2" + loose-envify "^1.0.0" -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= -which@^1.2.9, which@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= dependencies: - isexe "^2.0.0" + tr46 "~0.0.3" + webidl-conversions "^3.0.0" -which@^2.0.1, which@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== +wide-align@^1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== dependencies: - isexe "^2.0.0" - -word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + string-width "^1.0.2 || 2 || 3 || 4" -wrap-ansi@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" string-width "^4.1.0" @@ -4388,70 +3617,84 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= -write-file-atomic@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" - integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== +ws@^6.2.1: + version "6.2.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e" + integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== dependencies: - imurmurhash "^0.1.4" - is-typedarray "^1.0.0" - signal-exit "^3.0.2" - typedarray-to-buffer "^3.1.5" + async-limiter "~1.0.0" -ws@^7.0.0, ws@^7.4.6: +ws@^7.4.6: version "7.5.3" resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.3.tgz#160835b63c7d97bfab418fc1b8a9fced2ac01a74" integrity sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg== -xml-name-validator@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" - integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== +xtend@^4.0.2, xtend@~4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== -xmlchars@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" - integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== +y-codemirror@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/y-codemirror/-/y-codemirror-3.0.1.tgz#d8a4e43cf46b5b557e0f03b7bbb65773ff436278" + integrity sha512-TsLSoouAZxkxOKbmTj7qdwZNS0lZMVqIdp7/j9EgUUqYj0remZYDGl6VBABrmp9UX1QvX6RoXXqzbNhftgfCbA== + dependencies: + lib0 "^0.2.42" -y18n@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" - integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== +y-leveldb@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/y-leveldb/-/y-leveldb-0.1.0.tgz#8b60c1af020252445875ebc70d52666017bcb038" + integrity sha512-sMuitVrsAUNh+0b66I42nAuW3lCmez171uP4k0ePcTAJ+c+Iw9w4Yq3wwiyrDMFXBEyQSjSF86Inc23wEvWnxw== + dependencies: + level "^6.0.1" + lib0 "^0.2.31" -yallist@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= +y-protocols@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/y-protocols/-/y-protocols-1.0.5.tgz#91d574250060b29fcac8f8eb5e276fbad594245e" + integrity sha512-Wil92b7cGk712lRHDqS4T90IczF6RkcvCwAD0A2OPg+adKmOe+nOiT/N2hvpQIWS3zfjmtL4CPaH5sIW1Hkm/A== + dependencies: + lib0 "^0.2.42" + +y-websocket@^1.3.15: + version "1.3.18" + resolved "https://registry.yarnpkg.com/y-websocket/-/y-websocket-1.3.18.tgz#9398621f863a57bd01be7244be032166db359375" + integrity sha512-xdQhvq/iQ6lyrmQ0GhLWXVcpXXjyj7E+PEcC3d2IAShLbz0I8rAOKbq/tGrAQPy6g1oilRz6eb8M7EbqsJj6tg== + dependencies: + lib0 "^0.2.42" + lodash.debounce "^4.0.8" + y-protocols "^1.0.5" + optionalDependencies: + ws "^6.2.1" + y-leveldb "^0.1.0" + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yargs-parser@18.x, yargs-parser@^18.1.2, yargs-parser@^18.1.3: - version "18.1.3" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" - integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== -yargs@^15.3.1: - version "15.4.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" - integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== +yargs@~17.2.1: + version "17.2.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.2.1.tgz#e2c95b9796a0e1f7f3bf4427863b42e0418191ea" + integrity sha512-XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q== dependencies: - cliui "^6.0.0" - decamelize "^1.2.0" - find-up "^4.1.0" - get-caller-file "^2.0.1" + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" string-width "^4.2.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^18.1.2" + y18n "^5.0.5" + yargs-parser "^20.2.2" yauzl@^2.10.0: version "2.10.0" @@ -4467,3 +3710,10 @@ yazl@^2.5.1: integrity sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw== dependencies: buffer-crc32 "~0.2.3" + +yjs@^13.5.17: + version "13.5.22" + resolved "https://registry.yarnpkg.com/yjs/-/yjs-13.5.22.tgz#576a92ff2705736317a8b7a6b18d34fc8e6103f0" + integrity sha512-qxsVlu/E2dLUUtJyhDbwkhrw1gWbdE+UWzVI2VEeY6G1M8TYI51VvXSoPC/4QQMNIyEdsCOW2cWxPUyoCH43gw== + dependencies: + lib0 "^0.2.43"