diff --git a/README.md b/README.md index 0893a17a77e3..8ad4ed1404b6 100644 --- a/README.md +++ b/README.md @@ -123,8 +123,6 @@ JupyterLab is part of [Project Jupyter](http://jupyter.org/) and is developed by JupyterLab's current maintainers are listed in alphabetical order, with affiliation, and main areas of contribution: -- Chris Colbert, Project Jupyter (co-creator, application/low-level architecture, - technical leadership, vision, PhosphorJS) - Afshin Darian, Two Sigma (co-creator, application/high-level architecture, prolific contributions throughout the code base). - Jessica Forde, Project Jupyter (demo, documentation) @@ -141,6 +139,8 @@ JupyterLab's current maintainers are listed in alphabetical order, with affiliat Maintainer emeritus: +- Chris Colbert, Project Jupyter (co-creator, application/low-level architecture, + technical leadership, vision, PhosphorJS) - Cameron Oelsen, Cal Poly (UI/UX design). This list is provided to give the reader context on who we are and how our team functions. diff --git a/buildutils/package-lock.json b/buildutils/package-lock.json index 7fe713443475..2e17bd51c035 100644 --- a/buildutils/package-lock.json +++ b/buildutils/package-lock.json @@ -4,9 +4,9 @@ "lockfileVersion": 1, "requires": true, "dependencies": { - "@phosphor/coreutils": { + "@lumino/coreutils": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@phosphor/coreutils/-/coreutils-1.3.0.tgz", + "resolved": "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-1.3.0.tgz", "integrity": "sha1-YyktOBwBLFqw0Blug87YKbfgSkI=" }, "@sindresorhus/is": { diff --git a/buildutils/package.json b/buildutils/package.json index 7813eba2fa25..dbaf95e3e0d5 100644 --- a/buildutils/package.json +++ b/buildutils/package.json @@ -39,7 +39,7 @@ "watch": "tsc -w --listEmittedFiles" }, "dependencies": { - "@phosphor/coreutils": "^1.3.1", + "@lumino/coreutils": "^1.3.1", "@yarnpkg/lockfile": "^1.1.0", "child_process": "~1.0.2", "commander": "~2.20.0", diff --git a/buildutils/src/dependency-graph.ts b/buildutils/src/dependency-graph.ts index 5981ac0a7d3a..f9ff50a7f857 100644 --- a/buildutils/src/dependency-graph.ts +++ b/buildutils/src/dependency-graph.ts @@ -151,7 +151,7 @@ interface IMainOptions { lernaExclude: string; lernaInclude: string; path: string; - phosphor: boolean; + lumino: boolean; topLevel: boolean; } @@ -163,7 +163,7 @@ function main({ lernaExclude, lernaInclude, path, - phosphor, + lumino, topLevel }: IMainOptions) { let yarnData = readYarn(path); @@ -231,13 +231,13 @@ function main({ }); } - // Filter out *all* phosphor nodes - if (!phosphor) { + // Filter out *all* lumino nodes + if (!lumino) { Object.keys(sub).forEach(v => { - sub[v] = sub[v].filter(w => !w.startsWith('@phosphor/')); + sub[v] = sub[v].filter(w => !w.startsWith('@lumino/')); }); Object.keys(sub).forEach(v => { - if (v.startsWith('@phosphor/')) { + if (v.startsWith('@lumino/')) { delete sub[v]; } }); @@ -277,7 +277,7 @@ commander '--no-jupyterlab', 'Do not include dependency connections TO @jupyterlab org packages nor isolated @jupyterlab org packages' ) - .option('--no-phosphor', 'Do not include @phosphor org packages') + .option('--no-lumino', 'Do not include @lumino org packages') .option('--no-devDependencies', 'Do not include dev dependencies') .option('--no-dependencies', 'Do not include normal dependencies') .option('--no-top-level', 'Do not include the top-level packages') diff --git a/buildutils/src/utils.ts b/buildutils/src/utils.ts index 1d7535d93e29..7785de18a2af 100644 --- a/buildutils/src/utils.ts +++ b/buildutils/src/utils.ts @@ -4,7 +4,7 @@ import fs = require('fs-extra'); import childProcess = require('child_process'); import { DepGraph } from 'dependency-graph'; import sortPackageJson = require('sort-package-json'); -import coreutils = require('@phosphor/coreutils'); +import coreutils = require('@lumino/coreutils'); type Dict = { [key: string]: T }; diff --git a/dev_mode/package.json b/dev_mode/package.json index b1f9776c3bca..c65379bb569c 100644 --- a/dev_mode/package.json +++ b/dev_mode/package.json @@ -16,47 +16,47 @@ "watch": "webpack --watch" }, "dependencies": { - "@jupyterlab/application": "~2.0.0-alpha.1", - "@jupyterlab/application-extension": "~2.0.0-alpha.1", - "@jupyterlab/apputils-extension": "~2.0.0-alpha.1", - "@jupyterlab/codemirror-extension": "~2.0.0-alpha.1", - "@jupyterlab/completer-extension": "~2.0.0-alpha.1", - "@jupyterlab/console-extension": "~2.0.0-alpha.1", - "@jupyterlab/coreutils": "~4.0.0-alpha.1", - "@jupyterlab/csvviewer-extension": "~2.0.0-alpha.1", - "@jupyterlab/docmanager-extension": "~2.0.0-alpha.1", - "@jupyterlab/documentsearch-extension": "~2.0.0-alpha.1", - "@jupyterlab/extensionmanager-extension": "~2.0.0-alpha.1", - "@jupyterlab/filebrowser-extension": "~2.0.0-alpha.1", - "@jupyterlab/fileeditor-extension": "~2.0.0-alpha.1", - "@jupyterlab/help-extension": "~2.0.0-alpha.1", - "@jupyterlab/htmlviewer-extension": "~2.0.0-alpha.1", - "@jupyterlab/hub-extension": "~2.0.0-alpha.1", - "@jupyterlab/imageviewer-extension": "~2.0.0-alpha.1", - "@jupyterlab/inspector-extension": "~2.0.0-alpha.1", - "@jupyterlab/javascript-extension": "~2.0.0-alpha.1", - "@jupyterlab/json-extension": "~2.0.0-alpha.1", - "@jupyterlab/launcher-extension": "~2.0.0-alpha.1", - "@jupyterlab/logconsole-extension": "~1.0.0-alpha.1", - "@jupyterlab/mainmenu-extension": "~2.0.0-alpha.1", - "@jupyterlab/markdownviewer-extension": "~2.0.0-alpha.1", - "@jupyterlab/mathjax2-extension": "~2.0.0-alpha.1", - "@jupyterlab/notebook-extension": "~2.0.0-alpha.1", - "@jupyterlab/pdf-extension": "~2.0.0-alpha.1", - "@jupyterlab/rendermime-extension": "~2.0.0-alpha.1", - "@jupyterlab/running-extension": "~2.0.0-alpha.1", - "@jupyterlab/settingeditor-extension": "~2.0.0-alpha.1", - "@jupyterlab/shortcuts-extension": "~2.0.0-alpha.1", - "@jupyterlab/statusbar-extension": "~2.0.0-alpha.1", - "@jupyterlab/tabmanager-extension": "~2.0.0-alpha.1", - "@jupyterlab/terminal-extension": "~2.0.0-alpha.1", - "@jupyterlab/theme-dark-extension": "~2.0.0-alpha.1", - "@jupyterlab/theme-light-extension": "~2.0.0-alpha.1", - "@jupyterlab/tooltip-extension": "~2.0.0-alpha.1", - "@jupyterlab/ui-components-extension": "~2.0.0-alpha.1", - "@jupyterlab/vdom-extension": "~2.0.0-alpha.1", - "@jupyterlab/vega4-extension": "~2.0.0-alpha.1", - "@jupyterlab/vega5-extension": "~2.0.0-alpha.1" + "@jupyterlab/application": "^2.0.0-alpha.1", + "@jupyterlab/application-extension": "^2.0.0-alpha.1", + "@jupyterlab/apputils-extension": "^2.0.0-alpha.1", + "@jupyterlab/codemirror-extension": "^2.0.0-alpha.1", + "@jupyterlab/completer-extension": "^2.0.0-alpha.1", + "@jupyterlab/console-extension": "^2.0.0-alpha.1", + "@jupyterlab/coreutils": "^4.0.0-alpha.1", + "@jupyterlab/csvviewer-extension": "^2.0.0-alpha.1", + "@jupyterlab/docmanager-extension": "^2.0.0-alpha.1", + "@jupyterlab/documentsearch-extension": "^2.0.0-alpha.1", + "@jupyterlab/extensionmanager-extension": "^2.0.0-alpha.1", + "@jupyterlab/filebrowser-extension": "^2.0.0-alpha.1", + "@jupyterlab/fileeditor-extension": "^2.0.0-alpha.1", + "@jupyterlab/help-extension": "^2.0.0-alpha.1", + "@jupyterlab/htmlviewer-extension": "^2.0.0-alpha.1", + "@jupyterlab/hub-extension": "^2.0.0-alpha.1", + "@jupyterlab/imageviewer-extension": "^2.0.0-alpha.1", + "@jupyterlab/inspector-extension": "^2.0.0-alpha.1", + "@jupyterlab/javascript-extension": "^2.0.0-alpha.1", + "@jupyterlab/json-extension": "^2.0.0-alpha.1", + "@jupyterlab/launcher-extension": "^2.0.0-alpha.1", + "@jupyterlab/logconsole-extension": "^1.0.0-alpha.1", + "@jupyterlab/mainmenu-extension": "^2.0.0-alpha.1", + "@jupyterlab/markdownviewer-extension": "^2.0.0-alpha.1", + "@jupyterlab/mathjax2-extension": "^2.0.0-alpha.1", + "@jupyterlab/notebook-extension": "^2.0.0-alpha.1", + "@jupyterlab/pdf-extension": "^2.0.0-alpha.1", + "@jupyterlab/rendermime-extension": "^2.0.0-alpha.1", + "@jupyterlab/running-extension": "^2.0.0-alpha.1", + "@jupyterlab/settingeditor-extension": "^2.0.0-alpha.1", + "@jupyterlab/shortcuts-extension": "^2.0.0-alpha.1", + "@jupyterlab/statusbar-extension": "^2.0.0-alpha.1", + "@jupyterlab/tabmanager-extension": "^2.0.0-alpha.1", + "@jupyterlab/terminal-extension": "^2.0.0-alpha.1", + "@jupyterlab/theme-dark-extension": "^2.0.0-alpha.1", + "@jupyterlab/theme-light-extension": "^2.0.0-alpha.1", + "@jupyterlab/tooltip-extension": "^2.0.0-alpha.1", + "@jupyterlab/ui-components-extension": "^2.0.0-alpha.1", + "@jupyterlab/vdom-extension": "^2.0.0-alpha.1", + "@jupyterlab/vega4-extension": "^2.0.0-alpha.1", + "@jupyterlab/vega5-extension": "^2.0.0-alpha.1" }, "devDependencies": { "@jupyterlab/buildutils": "^2.0.0-alpha.1", diff --git a/docs/source/developer/css.rst b/docs/source/developer/css.rst index 43921b123333..46cbfa068676 100644 --- a/docs/source/developer/css.rst +++ b/docs/source/developer/css.rst @@ -112,7 +112,7 @@ CSS class naming conventions We have a fairly formal method for naming our CSS classes. First, CSS class names are associated with TypeScript classes that -extend ``phosphor.Widget``: +extend ``lumino.Widget``: The ``.node`` of each such widget should have a CSS class that matches the name of the TypeScript class: diff --git a/docs/source/developer/extension_dev.rst b/docs/source/developer/extension_dev.rst index d7fc8573e0cc..18e08c115096 100644 --- a/docs/source/developer/extension_dev.rst +++ b/docs/source/developer/extension_dev.rst @@ -101,19 +101,19 @@ In JupyterLab, the application shell consists of: - A ``bottom`` area for things like status bars. - A ``header`` area for custom elements. -Phosphor +Lumino ~~~~~~~~ -The Phosphor library is used as the underlying architecture of +The Lumino library is used as the underlying architecture of JupyterLab and provides many of the low level primitives and widget -structure used in the application. Phosphor provides a rich set of +structure used in the application. Lumino provides a rich set of widgets for developing desktop-like applications in the browser, as well as patterns and objects for writing clean, well-abstracted code. The -widgets in the application are primarily **Phosphor widgets**, and -Phosphor concepts, like message passing and signals, are used -throughout. **Phosphor messages** are a *many-to-one* interaction that +widgets in the application are primarily **Lumino widgets**, and +Lumino concepts, like message passing and signals, are used +throughout. **Lumino messages** are a *many-to-one* interaction that enables information like resize events to flow through the widget -hierarchy in the application. **Phosphor signals** are a *one-to-many* +hierarchy in the application. **Lumino signals** are a *one-to-many* interaction that enable listeners to react to changes in an observed object. @@ -579,14 +579,14 @@ Context Menus ^^^^^^^^^^^^^ JupyterLab has an application-wide context menu available as -``app.contextMenu``. See the Phosphor -`docs `__ +``app.contextMenu``. See the Lumino +`docs `__ for the item creation options. If you wish to preempt the application context menu, you can use a 'contextmenu' event listener and call ``event.stopPropagation`` to prevent the application context menu handler from being called (it is listening in the bubble phase on the -``document``). At this point you could show your own Phosphor -`contextMenu `__, +``document``). At this point you could show your own Lumino +`contextMenu `__, or simply stop propagation and let the system context menu be shown. This would look something like the following in a ``Widget`` subclass: diff --git a/docs/source/developer/extension_points.rst b/docs/source/developer/extension_points.rst index 3ecf4351c79d..9a26e937dd11 100644 --- a/docs/source/developer/extension_points.rst +++ b/docs/source/developer/extension_points.rst @@ -11,7 +11,7 @@ This is intended to be a guide for some of JupyterLab's most commonly-used exten However, it is not an exhaustive account of how to extend the application components, and more detailed descriptions of their public APIs may be found in the `JupyterLab `__ and -`Phosphor `__ API documentation. +`Lumino `__ API documentation. .. contents:: Table of contents :local: @@ -57,12 +57,12 @@ Each of ``isEnabled``, ``isToggled``, and ``isVisible`` can be either a boolean value or a function that returns a boolean value, in case you want to do some logic in order to determine those conditions. -Likewise, each of ``label`` and ``iconClass`` can be either +Likewise, each of ``label`` and ``iconClass`` can be either a string value or a function that returns a string value. There are several more options which can be passed into the command registry when -adding new commands. These are documented -`here `__. +adding new commands. These are documented +`here `__. After a command has been added to the application command registry you can add them to various places in the application user interface, @@ -110,7 +110,7 @@ Adding a New Menu ^^^^^^^^^^^^^^^^^ To add a new menu to the menu bar, you need to create a new -`Phosphor menu `__. +`Lumino menu `__. You can then add commands to the menu in a similar way to the command palette, and add that menu to the main menu bar: @@ -238,7 +238,7 @@ If you don't want the shortcuts to be user-configurable, you can add them directly to the application command registry: .. code:: typescript - + app.commands.addKeyBinding({ command: commandID, args: {}, @@ -254,7 +254,7 @@ the shortcut handler propagates up the DOM tree from the focused element and tests each element against the registered selectors. If a match is found, then that command is executed with the provided ``args``. Full documentation for the options for ``addKeyBinding`` can be found -`here `__. +`here `__. JupyterLab also provides integration with its settings system for keyboard shortcuts. Your extension can provide a settings schema with a ``jupyter.lab.shortcuts`` key, @@ -299,7 +299,7 @@ Left/Right Areas The left and right areas of JupyterLab are intended to host more persistent user interface elements than the main area. That being said, extension authors are free to add whatever components they like to these areas. The outermost-level of the object that you add is expected -to be a Phosphor ``Widget``, but that can host any content you like (such as React components). +to be a Lumino ``Widget``, but that can host any content you like (such as React components). As an example, the following code executes an application command to a terminal widget and then adds the terminal to the right area: @@ -317,7 +317,7 @@ Status Bar ~~~~~~~~~~ JupyterLab's status bar is intended to show small pieces of contextual information. -Like the left and right areas, it only expects a Phosphor ``Widget``, +Like the left and right areas, it only expects a Lumino ``Widget``, which might contain any kind of content. Since the status bar has limited space, you should endeavor to only add small widgets to it. diff --git a/docs/source/developer/extension_tutorial.rst b/docs/source/developer/extension_tutorial.rst index 8fa089e9070f..a3f3a78d79c5 100644 --- a/docs/source/developer/extension_tutorial.rst +++ b/docs/source/developer/extension_tutorial.rst @@ -216,15 +216,15 @@ you in JupyterLab. For your first addition, you're going to add a tab panel when invoked. Fire up your favorite text editor and open the ``src/index.ts`` file in -your extension project. Change the import at the top of the file to get +your extension project. Change the import at the top of the file to get a reference to the command palette interface and the Jupyter front end. .. code:: typescript - + import { JupyterFrontEnd, JupyterFrontEndPlugin } from '@jupyterlab/application'; - + import { ICommandPalette } from '@jupyterlab/apputils'; @@ -300,13 +300,13 @@ Now return to your editor. Modify the imports at the top of the file to add a fe import { Widget - } from '@phosphor/widgets'; + } from '@lumino/widgets'; Install this new dependency as well: .. code:: bash - jlpm add @phosphor/widgets + jlpm add @lumino/widgets Then modify the ``activate`` function again so that it has the following @@ -346,7 +346,7 @@ The first new block of code creates a ``MainAreaWidget`` instance with an empty content ``Widget`` as its child. It also assigns the main area widget a unique ID, gives it a label that will appear as its tab title, and makes the tab closable by the user. -The second block of code adds a new command with id ``apod:open`` and label *Random Astronomy Picture* +The second block of code adds a new command with id ``apod:open`` and label *Random Astronomy Picture* to JupyterLab. When the command executes, it attaches the widget to the main display area if it is not already present and then makes it the active tab. The last new line of code uses the command id to add @@ -591,13 +591,13 @@ Add the following additional import to the top of the file. import { Message - } from '@phosphor/messaging'; + } from '@lumino/messaging'; Install this dependency: .. code:: bash - jlpm add @phosphor/messaging + jlpm add @lumino/messaging Then add the class just below the import statements in the ``index.ts`` @@ -777,17 +777,17 @@ entire list of import statements looks like the following: import { Message - } from '@phosphor/messaging'; + } from '@lumino/messaging'; import { Widget - } from '@phosphor/widgets'; + } from '@lumino/widgets'; Install this dependency: .. code:: bash - jlpm add @phosphor/coreutils + jlpm add @lumino/coreutils Then add the ``ILayoutRestorer`` interface to the ``JupyterFrontEndPlugin`` definition. This addition passes the global ``LayoutRestorer`` as the diff --git a/docs/source/developer/notebook.rst b/docs/source/developer/notebook.rst index 6cc8afa77a0c..2a042121c0ec 100644 --- a/docs/source/developer/notebook.rst +++ b/docs/source/developer/notebook.rst @@ -165,7 +165,7 @@ released npm packages, not the development versions. :: - npm install --save @jupyterlab/notebook @jupyterlab/application @jupyterlab/apputils @jupyterlab/docregistry @phosphor/disposable + npm install --save @jupyterlab/notebook @jupyterlab/application @jupyterlab/apputils @jupyterlab/docregistry @lumino/disposable Copy the following to ``src/index.ts``: @@ -173,7 +173,7 @@ Copy the following to ``src/index.ts``: import { IDisposable, DisposableDelegate - } from '@phosphor/disposable'; + } from '@lumino/disposable'; import { JupyterFrontEnd, JupyterFrontEndPlugin @@ -256,9 +256,9 @@ The *ipywidgets* third party extension ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This discussion will be a bit confusing since we've been using the term -*widget* to refer to *phosphor widgets*. In the discussion below, +*widget* to refer to *lumino widgets*. In the discussion below, *ipython widgets* will be referred to as *ipywidgets*. There is no -intrinsic relation between *phosphor widgets* and *ipython widgets*. +intrinsic relation between *lumino widgets* and *ipython widgets*. The *ipywidgets* extension registers a factory for a notebook *widget* extension using the `Document @@ -277,7 +277,7 @@ a ``display_data`` output is sent to the browser with the ipywidget model id. The renderer registered in that notebook's rendermime is asked to render the output. The renderer asks the ipywidget manager instance to render the corresponding model, which returns a JavaScript promise. -The renderer creates a container *phosphor widget* which it hands back +The renderer creates a container *lumino widget* which it hands back synchronously to the OutputArea, and then fills the container with the rendered *ipywidget* when the promise resolves. diff --git a/docs/source/developer/terminology.rst b/docs/source/developer/terminology.rst index da70e816beef..913b4226e69e 100644 --- a/docs/source/developer/terminology.rst +++ b/docs/source/developer/terminology.rst @@ -15,7 +15,7 @@ Terms be used to extend JupyterLab's functionality. - *Plugin* - An object that provides a service and or extends the application. -- *Phosphor* - The JavaScript library that provides the foundation of +- *Lumino* - The JavaScript library that provides the foundation of JupyterLab, enabling desktop-like applications in the browser. - *Standalone example* - An example in the ``examples/`` directory that demonstrates the usage of one or more components of JupyterLab. diff --git a/docs/source/developer/virtualdom.create.tsx b/docs/source/developer/virtualdom.create.tsx index 3e8938284eab..3e048976d0c3 100644 --- a/docs/source/developer/virtualdom.create.tsx +++ b/docs/source/developer/virtualdom.create.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { ReactWidget } from '@jupyterlab/apputils'; function MyComponent() { diff --git a/docs/source/developer/virtualdom.reactwidget.tsx b/docs/source/developer/virtualdom.reactwidget.tsx index 83609bd373c9..fda9908ab2a0 100644 --- a/docs/source/developer/virtualdom.reactwidget.tsx +++ b/docs/source/developer/virtualdom.reactwidget.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { ReactWidget } from '@jupyterlab/apputils'; function MyComponent() { diff --git a/docs/source/developer/virtualdom.rst b/docs/source/developer/virtualdom.rst index 6f0230d1fdfe..1687ff5c4d6d 100644 --- a/docs/source/developer/virtualdom.rst +++ b/docs/source/developer/virtualdom.rst @@ -4,15 +4,15 @@ React ----- -Many JupyterLab APIs require `Phosphor `__ -`Widgets `__ +Many JupyterLab APIs require `Lumino` +`Widgets `__ which have some additional features over native DOM elements, including: - Resize events that propagate down the Widget hierarchy. - Lifecycle events (``onBeforeDetach``, ``onAfterAttach``, etc.). - Both CSS-based and absolutely positioned layouts. -We support wrapping React components to turn them into Phosphor +We support wrapping React components to turn them into Lumino widgets using the ``ReactWidget`` class from ``@jupyterlab/apputils``: .. literalinclude:: virtualdom.create.tsx @@ -20,10 +20,10 @@ widgets using the ``ReactWidget`` class from ``@jupyterlab/apputils``: Here we use the ``create`` static method to transform a React element -into a Phosphor widget. Whenever the widget is mounted, the React +into a Lumino widget. Whenever the widget is mounted, the React element will be rendered on the page. -If you need to handle other life cycle events on the Phosphor widget +If you need to handle other life cycle events on the Lumino widget or add other methods to it, you can subbclass ``ReactWidget`` and override the ``render`` method to return a React element: @@ -32,7 +32,7 @@ override the ``render`` method to return a React element: :force: -We use Phosphor `Signals `__ to represent +We use Lumino `Signals `__ to represent data that changes over time in JupyterLab. To have your React element change in response to a signal event, use the ``UseSignal`` component from ``@jupyterlab/apputils``, which implements the `"render props" `__: @@ -46,7 +46,7 @@ The `running component `__ use both of these features and serve as a good reference for best practices. -We currently do not have a way of embedding Phosphor widgets inside of React components. If you find yourself trying to do this, we would recommend either converting the Phosphor widget to a React component or using a Phosphor widget for the outer layer component. +We currently do not have a way of embedding Lumino widgets inside of React components. If you find yourself trying to do this, we would recommend either converting the Lumino widget to a React component or using a Lumino widget for the outer layer component. We follow the `React documentation `__ and `"React & Redux in TypeScript - Static Typing Guide" `__ diff --git a/docs/source/developer/virtualdom.usesignal.tsx b/docs/source/developer/virtualdom.usesignal.tsx index f0138e1c838c..eaedb879b782 100644 --- a/docs/source/developer/virtualdom.usesignal.tsx +++ b/docs/source/developer/virtualdom.usesignal.tsx @@ -2,9 +2,9 @@ import * as React from 'react'; import { ReactWidget, UseSignal } from '@jupyterlab/apputils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; function MyComponent() { return
My Widget
; diff --git a/examples/cell/package.json b/examples/cell/package.json index b7c0050bf4b1..28c62ae7d7da 100644 --- a/examples/cell/package.json +++ b/examples/cell/package.json @@ -15,8 +15,8 @@ "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/theme-light-extension": "^2.0.0-alpha.1", - "@phosphor/commands": "^1.7.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/commands": "^1.7.0", + "@lumino/widgets": "^1.9.0", "es6-promise": "~4.2.6" }, "devDependencies": { diff --git a/examples/cell/src/index.ts b/examples/cell/src/index.ts index eaf225cfe14a..c6fb0d9d4b46 100755 --- a/examples/cell/src/index.ts +++ b/examples/cell/src/index.ts @@ -30,9 +30,9 @@ import { import { SessionManager } from '@jupyterlab/services'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { BoxPanel, Widget } from '@phosphor/widgets'; +import { BoxPanel, Widget } from '@lumino/widgets'; function main(): void { const manager = new SessionManager(); diff --git a/examples/console/package.json b/examples/console/package.json index 0b2c208db5a4..c25d36c956a7 100644 --- a/examples/console/package.json +++ b/examples/console/package.json @@ -13,8 +13,8 @@ "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/theme-light-extension": "^2.0.0-alpha.1", - "@phosphor/commands": "^1.7.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/commands": "^1.7.0", + "@lumino/widgets": "^1.9.0", "es6-promise": "~4.2.6" }, "devDependencies": { diff --git a/examples/console/src/index.ts b/examples/console/src/index.ts index 33988b360471..43c8cf275915 100644 --- a/examples/console/src/index.ts +++ b/examples/console/src/index.ts @@ -10,9 +10,9 @@ import '@jupyterlab/console/style/index.css'; import '@jupyterlab/theme-light-extension/style/index.css'; import '../index.css'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { CommandPalette, SplitPanel, Widget } from '@phosphor/widgets'; +import { CommandPalette, SplitPanel, Widget } from '@lumino/widgets'; import { ServiceManager } from '@jupyterlab/services'; diff --git a/examples/filebrowser/package.json b/examples/filebrowser/package.json index 8afde003fd01..355accb35dcb 100644 --- a/examples/filebrowser/package.json +++ b/examples/filebrowser/package.json @@ -17,9 +17,9 @@ "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/theme-light-extension": "^2.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/widgets": "^1.9.0", "es6-promise": "~4.2.6" }, "devDependencies": { diff --git a/examples/filebrowser/src/index.ts b/examples/filebrowser/src/index.ts index d93c4e493a64..6c60b39c8bff 100644 --- a/examples/filebrowser/src/index.ts +++ b/examples/filebrowser/src/index.ts @@ -11,11 +11,11 @@ import '@jupyterlab/filebrowser/style/index.css'; import '@jupyterlab/theme-light-extension/style/index.css'; import '../index.css'; -import { each } from '@phosphor/algorithm'; +import { each } from '@lumino/algorithm'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { DockPanel, Menu, SplitPanel, Widget } from '@phosphor/widgets'; +import { DockPanel, Menu, SplitPanel, Widget } from '@lumino/widgets'; import { ServiceManager } from '@jupyterlab/services'; diff --git a/examples/notebook/package.json b/examples/notebook/package.json index b01867ceddba..8771623f6b31 100644 --- a/examples/notebook/package.json +++ b/examples/notebook/package.json @@ -18,8 +18,8 @@ "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/theme-light-extension": "^2.0.0-alpha.1", - "@phosphor/commands": "^1.7.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/commands": "^1.7.0", + "@lumino/widgets": "^1.9.0", "es6-promise": "~4.2.6" }, "devDependencies": { diff --git a/examples/notebook/src/commands.ts b/examples/notebook/src/commands.ts index 30ba8608b1c0..22b3e7158adb 100644 --- a/examples/notebook/src/commands.ts +++ b/examples/notebook/src/commands.ts @@ -1,14 +1,14 @@ /** * Set up keyboard shortcuts & commands for notebook */ -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; import { CompletionHandler } from '@jupyterlab/completer'; import { NotebookPanel, NotebookActions } from '@jupyterlab/notebook'; import { SearchInstance, NotebookSearchProvider } from '@jupyterlab/documentsearch'; -import { CommandPalette } from '@phosphor/widgets'; +import { CommandPalette } from '@lumino/widgets'; /** * The map of command ids used by the notebook. diff --git a/examples/notebook/src/index.ts b/examples/notebook/src/index.ts index 0e02eee300bc..7789ab1020c3 100755 --- a/examples/notebook/src/index.ts +++ b/examples/notebook/src/index.ts @@ -11,9 +11,9 @@ import '@jupyterlab/notebook/style/index.css'; import '@jupyterlab/theme-light-extension/style/index.css'; import '../index.css'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { CommandPalette, SplitPanel, Widget } from '@phosphor/widgets'; +import { CommandPalette, SplitPanel, Widget } from '@lumino/widgets'; import { ServiceManager } from '@jupyterlab/services'; import { MathJaxTypesetter } from '@jupyterlab/mathjax2'; diff --git a/examples/terminal/package.json b/examples/terminal/package.json index 8dbd9902ea87..e07cdb3695e6 100644 --- a/examples/terminal/package.json +++ b/examples/terminal/package.json @@ -11,7 +11,7 @@ "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/terminal": "^2.0.0-alpha.1", "@jupyterlab/theme-light-extension": "^2.0.0-alpha.1", - "@phosphor/widgets": "^1.9.0", + "@lumino/widgets": "^1.9.0", "es6-promise": "~4.2.6" }, "devDependencies": { diff --git a/examples/terminal/src/index.ts b/examples/terminal/src/index.ts index 4f674dad5d4a..a8d93e98096b 100644 --- a/examples/terminal/src/index.ts +++ b/examples/terminal/src/index.ts @@ -10,7 +10,7 @@ import '@jupyterlab/terminal/style/index.css'; import '@jupyterlab/theme-light-extension/style/index.css'; import '../index.css'; -import { DockPanel, Widget } from '@phosphor/widgets'; +import { DockPanel, Widget } from '@lumino/widgets'; import { TerminalSession } from '@jupyterlab/services'; diff --git a/jupyterlab/coreconfig.py b/jupyterlab/coreconfig.py index af08f6cdd45b..5268cd36e522 100644 --- a/jupyterlab/coreconfig.py +++ b/jupyterlab/coreconfig.py @@ -33,7 +33,7 @@ def _only_nonlab(collection): This is useful to take the default values of e.g. singletons and filter away the '@jupyterlab/' namespace packages, but leave any others (e.g. - phosphor and react). + lumino and react). """ if isinstance(collection, dict): return dict( diff --git a/jupyterlab/tests/mock_packages/mimeextension/index.js b/jupyterlab/tests/mock_packages/mimeextension/index.js index f1f2b7b60cdc..861820cf3418 100644 --- a/jupyterlab/tests/mock_packages/mimeextension/index.js +++ b/jupyterlab/tests/mock_packages/mimeextension/index.js @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -var Widget = require('@phosphor/widgets').Widget; +var Widget = require('@lumino/widgets').Widget; var factory = { safe: true, diff --git a/jupyterlab/tests/mock_packages/mimeextension/package.json b/jupyterlab/tests/mock_packages/mimeextension/package.json index c21201b5930f..053525cabb42 100644 --- a/jupyterlab/tests/mock_packages/mimeextension/package.json +++ b/jupyterlab/tests/mock_packages/mimeextension/package.json @@ -3,7 +3,7 @@ "version": "0.3.0", "private": true, "dependencies": { - "@phosphor/widgets": "^1.9.0" + "@lumino/widgets": "^1.9.0" }, "jupyterlab": { "mimeExtension": true diff --git a/jupyterlab/tests/test_app.py b/jupyterlab/tests/test_app.py index 1912c2ec5129..ec42c90680b0 100644 --- a/jupyterlab/tests/test_app.py +++ b/jupyterlab/tests/test_app.py @@ -312,7 +312,7 @@ def get_command(self): with open(karma_inject_file, 'w') as fid: fid.write(""" require('es6-promise/dist/es6-promise.js'); - require('@phosphor/widgets/style/index.css'); + require('@lumino/widgets/style/index.css'); var node = document.createElement('script'); node.id = 'jupyter-config-data'; diff --git a/packages/application-extension/package.json b/packages/application-extension/package.json index 21ce8492d061..4ea77eced5a5 100644 --- a/packages/application-extension/package.json +++ b/packages/application-extension/package.json @@ -39,8 +39,8 @@ "@jupyterlab/application": "^2.0.0-alpha.1", "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/coreutils": "^4.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4" }, "devDependencies": { diff --git a/packages/application-extension/src/index.tsx b/packages/application-extension/src/index.tsx index 3f9d62f929b8..8bde8d83747a 100644 --- a/packages/application-extension/src/index.tsx +++ b/packages/application-extension/src/index.tsx @@ -31,9 +31,9 @@ import { URLExt } from '@jupyterlab/coreutils'; -import { each, iter, toArray } from '@phosphor/algorithm'; +import { each, iter, toArray } from '@lumino/algorithm'; -import { Widget, DockLayout } from '@phosphor/widgets'; +import { Widget, DockLayout } from '@lumino/widgets'; import * as React from 'react'; diff --git a/packages/application/package.json b/packages/application/package.json index f5b621f8ce47..26a810277e34 100644 --- a/packages/application/package.json +++ b/packages/application/package.json @@ -43,15 +43,15 @@ "@jupyterlab/rendermime-interfaces": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/application": "^1.7.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/properties": "^1.1.3", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/application": "^1.7.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/properties": "^1.1.3", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "font-awesome": "~4.7.0" }, "devDependencies": { diff --git a/packages/application/src/frontend.ts b/packages/application/src/frontend.ts index 7027b5a9cd2d..52b4e6ea94b4 100644 --- a/packages/application/src/frontend.ts +++ b/packages/application/src/frontend.ts @@ -7,13 +7,13 @@ import { DocumentRegistry } from '@jupyterlab/docregistry'; import { ServiceManager } from '@jupyterlab/services'; -import { IIterator } from '@phosphor/algorithm'; +import { IIterator } from '@lumino/algorithm'; -import { Application, IPlugin } from '@phosphor/application'; +import { Application, IPlugin } from '@lumino/application'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * The type for all JupyterFrontEnd application plugins. diff --git a/packages/application/src/lab.ts b/packages/application/src/lab.ts index 37f4a97848db..a2de106baddb 100644 --- a/packages/application/src/lab.ts +++ b/packages/application/src/lab.ts @@ -7,7 +7,7 @@ import { Base64ModelFactory } from '@jupyterlab/docregistry'; import { IRenderMime } from '@jupyterlab/rendermime-interfaces'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; import { JupyterFrontEnd, JupyterFrontEndPlugin } from './frontend'; diff --git a/packages/application/src/layoutrestorer.ts b/packages/application/src/layoutrestorer.ts index da544b204c97..5938b99e5bda 100644 --- a/packages/application/src/layoutrestorer.ts +++ b/packages/application/src/layoutrestorer.ts @@ -7,7 +7,7 @@ import { WidgetTracker } from '@jupyterlab/apputils'; import { IDataConnector, IRestorer } from '@jupyterlab/coreutils'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; import { JSONExt, @@ -15,11 +15,11 @@ import { PromiseDelegate, ReadonlyJSONValue, Token -} from '@phosphor/coreutils'; +} from '@lumino/coreutils'; -import { AttachedProperty } from '@phosphor/properties'; +import { AttachedProperty } from '@lumino/properties'; -import { DockPanel, Widget } from '@phosphor/widgets'; +import { DockPanel, Widget } from '@lumino/widgets'; import { ILabShell } from './shell'; diff --git a/packages/application/src/mimerenderers.ts b/packages/application/src/mimerenderers.ts index 07fd8347a911..a35ba039b9a9 100644 --- a/packages/application/src/mimerenderers.ts +++ b/packages/application/src/mimerenderers.ts @@ -13,9 +13,9 @@ import { IRenderMimeRegistry } from '@jupyterlab/rendermime'; import { IRenderMime } from '@jupyterlab/rendermime-interfaces'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { AttachedProperty } from '@phosphor/properties'; +import { AttachedProperty } from '@lumino/properties'; import { JupyterFrontEnd, JupyterFrontEndPlugin } from './index'; diff --git a/packages/application/src/router.ts b/packages/application/src/router.ts index ef2b134b9f42..d7b3aef2450f 100644 --- a/packages/application/src/router.ts +++ b/packages/application/src/router.ts @@ -5,13 +5,13 @@ import { URLExt } from '@jupyterlab/coreutils'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { PromiseDelegate, Token } from '@phosphor/coreutils'; +import { PromiseDelegate, Token } from '@lumino/coreutils'; -import { DisposableDelegate, IDisposable } from '@phosphor/disposable'; +import { DisposableDelegate, IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { IRouter } from './tokens'; diff --git a/packages/application/src/shell.ts b/packages/application/src/shell.ts index 0df26660ce87..96c9d203bbb6 100644 --- a/packages/application/src/shell.ts +++ b/packages/application/src/shell.ts @@ -7,13 +7,13 @@ import { DocumentRegistry } from '@jupyterlab/docregistry'; import { DockPanelSvg, TabBarSvg } from '@jupyterlab/ui-components'; -import { ArrayExt, find, IIterator, iter, toArray } from '@phosphor/algorithm'; +import { ArrayExt, find, IIterator, iter, toArray } from '@lumino/algorithm'; -import { PromiseDelegate, Token } from '@phosphor/coreutils'; +import { PromiseDelegate, Token } from '@lumino/coreutils'; -import { Message, MessageLoop, IMessageHandler } from '@phosphor/messaging'; +import { Message, MessageLoop, IMessageHandler } from '@lumino/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { BoxLayout, @@ -27,7 +27,7 @@ import { TabBar, Title, Widget -} from '@phosphor/widgets'; +} from '@lumino/widgets'; import { JupyterFrontEnd } from './frontend'; diff --git a/packages/application/src/status.ts b/packages/application/src/status.ts index 2fb4a081cadb..8f82663eccaf 100644 --- a/packages/application/src/status.ts +++ b/packages/application/src/status.ts @@ -1,11 +1,11 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { DisposableDelegate, IDisposable } from '@phosphor/disposable'; +import { DisposableDelegate, IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { JupyterFrontEnd } from './frontend'; diff --git a/packages/application/src/tokens.ts b/packages/application/src/tokens.ts index c1178f9a8889..ba0a34280603 100644 --- a/packages/application/src/tokens.ts +++ b/packages/application/src/tokens.ts @@ -1,15 +1,15 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; import { ServerConnection, ServiceManager } from '@jupyterlab/services'; -import { ReadonlyJSONObject, Token } from '@phosphor/coreutils'; +import { ReadonlyJSONObject, Token } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; /** * A token for which a plugin can provide to respond to connection failures diff --git a/packages/application/style/index.css b/packages/application/style/index.css index 6ece208121b6..532b4815aab1 100644 --- a/packages/application/style/index.css +++ b/packages/application/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/ui-components/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/docregistry/style/index.css'); diff --git a/packages/apputils-extension/package.json b/packages/apputils-extension/package.json index d77f23f9a16f..171bd235d919 100644 --- a/packages/apputils-extension/package.json +++ b/packages/apputils-extension/package.json @@ -42,11 +42,11 @@ "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/mainmenu": "^2.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/widgets": "^1.9.0", "es6-promise": "~4.2.6" }, "devDependencies": { diff --git a/packages/apputils-extension/src/index.ts b/packages/apputils-extension/src/index.ts index 415803d8b710..91fead4e32df 100644 --- a/packages/apputils-extension/src/index.ts +++ b/packages/apputils-extension/src/index.ts @@ -32,9 +32,9 @@ import { import { defaultIconRegistry } from '@jupyterlab/ui-components'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { DisposableDelegate } from '@phosphor/disposable'; +import { DisposableDelegate } from '@lumino/disposable'; import { Palette } from './palette'; diff --git a/packages/apputils-extension/src/palette.ts b/packages/apputils-extension/src/palette.ts index 02d31cdf5828..421bc3a11935 100644 --- a/packages/apputils-extension/src/palette.ts +++ b/packages/apputils-extension/src/palette.ts @@ -3,12 +3,12 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { find } from '@phosphor/algorithm'; +import { find } from '@lumino/algorithm'; -import { CommandRegistry } from '@phosphor/commands'; -import { DisposableDelegate, IDisposable } from '@phosphor/disposable'; +import { CommandRegistry } from '@lumino/commands'; +import { DisposableDelegate, IDisposable } from '@lumino/disposable'; -import { CommandPalette } from '@phosphor/widgets'; +import { CommandPalette } from '@lumino/widgets'; import { ILayoutRestorer, JupyterFrontEnd } from '@jupyterlab/application'; diff --git a/packages/apputils-extension/src/themeplugins.ts b/packages/apputils-extension/src/themeplugins.ts index 6ee4d3458aec..b04f2c11804b 100644 --- a/packages/apputils-extension/src/themeplugins.ts +++ b/packages/apputils-extension/src/themeplugins.ts @@ -19,7 +19,7 @@ import { ISettingRegistry, URLExt } from '@jupyterlab/coreutils'; import { IMainMenu } from '@jupyterlab/mainmenu'; -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; namespace CommandIDs { export const changeTheme = 'apputils:change-theme'; diff --git a/packages/apputils-extension/style/index.css b/packages/apputils-extension/style/index.css index 0f1065092855..6e2d63cbf032 100644 --- a/packages/apputils-extension/style/index.css +++ b/packages/apputils-extension/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/ui-components/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/application/style/index.css'); diff --git a/packages/apputils/package.json b/packages/apputils/package.json index f1bafda136ef..c887d6471202 100644 --- a/packages/apputils/package.json +++ b/packages/apputils/package.json @@ -38,16 +38,16 @@ "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/domutils": "^1.1.3", - "@phosphor/messaging": "^1.3.0", - "@phosphor/properties": "^1.1.3", - "@phosphor/signaling": "^1.3.0", - "@phosphor/virtualdom": "^1.2.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/domutils": "^1.1.3", + "@lumino/messaging": "^1.3.0", + "@lumino/properties": "^1.1.3", + "@lumino/signaling": "^1.3.0", + "@lumino/virtualdom": "^1.2.0", + "@lumino/widgets": "^1.9.0", "@types/react": "~16.8.18", "react": "~16.8.4", "react-dom": "~16.8.4", diff --git a/packages/apputils/src/clientsession.tsx b/packages/apputils/src/clientsession.tsx index 6a25be3a53cc..2eeb6825b917 100644 --- a/packages/apputils/src/clientsession.tsx +++ b/packages/apputils/src/clientsession.tsx @@ -3,7 +3,7 @@ import { PathExt } from '@jupyterlab/coreutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { Kernel, @@ -12,15 +12,15 @@ import { Session } from '@jupyterlab/services'; -import { IterableOrArrayLike, each, find } from '@phosphor/algorithm'; +import { IterableOrArrayLike, each, find } from '@lumino/algorithm'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import * as React from 'react'; diff --git a/packages/apputils/src/clipboard.ts b/packages/apputils/src/clipboard.ts index 7bbbfa79d4dc..57387a6baf34 100644 --- a/packages/apputils/src/clipboard.ts +++ b/packages/apputils/src/clipboard.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { MimeData } from '@phosphor/coreutils'; +import { MimeData } from '@lumino/coreutils'; // 'string' is allowed so as to make it non-breaking for any 1.x releases export type ClipboardData = string | MimeData; diff --git a/packages/apputils/src/collapse.ts b/packages/apputils/src/collapse.ts index 3ffb66428631..761a41a5c209 100644 --- a/packages/apputils/src/collapse.ts +++ b/packages/apputils/src/collapse.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Message } from '@phosphor/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; -import { Widget, Panel, PanelLayout, Title } from '@phosphor/widgets'; +import { Message } from '@lumino/messaging'; +import { ISignal, Signal } from '@lumino/signaling'; +import { Widget, Panel, PanelLayout, Title } from '@lumino/widgets'; /** * A panel that supports a collapsible header made from the widget's title. diff --git a/packages/apputils/src/commandlinker.ts b/packages/apputils/src/commandlinker.ts index c6adaabe2b60..db22bdd75c26 100644 --- a/packages/apputils/src/commandlinker.ts +++ b/packages/apputils/src/commandlinker.ts @@ -3,13 +3,13 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { JSONExt, JSONObject } from '@phosphor/coreutils'; +import { JSONExt, JSONObject } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { ElementDataset } from '@phosphor/virtualdom'; +import { ElementDataset } from '@lumino/virtualdom'; /** * The command data attribute added to nodes that are connected. diff --git a/packages/apputils/src/commandpalette.ts b/packages/apputils/src/commandpalette.ts index f1adc6f40dfd..2b65aaab457b 100644 --- a/packages/apputils/src/commandpalette.ts +++ b/packages/apputils/src/commandpalette.ts @@ -3,11 +3,11 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { CommandPalette } from '@phosphor/widgets'; +import { CommandPalette } from '@lumino/widgets'; /* tslint:disable */ /** diff --git a/packages/apputils/src/dialog.ts b/packages/apputils/src/dialog.ts index affbddfbd2b5..889625250d6c 100644 --- a/packages/apputils/src/dialog.ts +++ b/packages/apputils/src/dialog.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { ArrayExt, each, map, toArray } from '@phosphor/algorithm'; +import { ArrayExt, each, map, toArray } from '@lumino/algorithm'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { PanelLayout, Panel, Widget } from '@phosphor/widgets'; +import { PanelLayout, Panel, Widget } from '@lumino/widgets'; import * as React from 'react'; diff --git a/packages/apputils/src/domutils.ts b/packages/apputils/src/domutils.ts index ee14f99fdc98..09851c018631 100644 --- a/packages/apputils/src/domutils.ts +++ b/packages/apputils/src/domutils.ts @@ -1,11 +1,11 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { ArrayExt } from '@phosphor/algorithm'; +import { ArrayExt } from '@lumino/algorithm'; -import { ElementExt } from '@phosphor/domutils'; +import { ElementExt } from '@lumino/domutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; /** * The namespace for DOM utilities. diff --git a/packages/apputils/src/iframe.ts b/packages/apputils/src/iframe.ts index 40c1f66161e9..672d9b78f7b8 100644 --- a/packages/apputils/src/iframe.ts +++ b/packages/apputils/src/iframe.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * A phosphor widget which wraps an IFrame. diff --git a/packages/apputils/src/inputdialog.ts b/packages/apputils/src/inputdialog.ts index 503b2d26b291..0ac05315eb0c 100644 --- a/packages/apputils/src/inputdialog.ts +++ b/packages/apputils/src/inputdialog.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { Dialog, showDialog } from './dialog'; import { Styling } from './styling'; diff --git a/packages/apputils/src/mainareawidget.ts b/packages/apputils/src/mainareawidget.ts index 92ab005c38b5..882bd2bba1bf 100644 --- a/packages/apputils/src/mainareawidget.ts +++ b/packages/apputils/src/mainareawidget.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { BoxLayout, Widget } from '@phosphor/widgets'; +import { BoxLayout, Widget } from '@lumino/widgets'; import { Spinner } from './spinner'; diff --git a/packages/apputils/src/printing.ts b/packages/apputils/src/printing.ts index 26f61dc56f3b..94a5be94acd0 100644 --- a/packages/apputils/src/printing.ts +++ b/packages/apputils/src/printing.ts @@ -10,7 +10,7 @@ * Another way to print is to use the `printURL` function, which takes a URL and prints that page. */ -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { ServerConnection } from '@jupyterlab/services'; export namespace Printing { diff --git a/packages/apputils/src/spinner.ts b/packages/apputils/src/spinner.ts index e0563f1b96ff..52483cee61ba 100644 --- a/packages/apputils/src/spinner.ts +++ b/packages/apputils/src/spinner.ts @@ -3,9 +3,9 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * The spinner class. diff --git a/packages/apputils/src/splash.ts b/packages/apputils/src/splash.ts index 47f70d2df700..00645aeccba4 100644 --- a/packages/apputils/src/splash.ts +++ b/packages/apputils/src/splash.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; /* tslint:disable */ /** diff --git a/packages/apputils/src/thememanager.ts b/packages/apputils/src/thememanager.ts index 93efd944b623..65437370a24d 100644 --- a/packages/apputils/src/thememanager.ts +++ b/packages/apputils/src/thememanager.ts @@ -3,13 +3,13 @@ import { IChangedArgs, ISettingRegistry, URLExt } from '@jupyterlab/coreutils'; -import { each } from '@phosphor/algorithm'; +import { each } from '@lumino/algorithm'; -import { DisposableDelegate, IDisposable } from '@phosphor/disposable'; +import { DisposableDelegate, IDisposable } from '@lumino/disposable'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { Dialog, showDialog } from './dialog'; diff --git a/packages/apputils/src/tokens.ts b/packages/apputils/src/tokens.ts index 718bf38667d7..ee5ff1a4dce0 100644 --- a/packages/apputils/src/tokens.ts +++ b/packages/apputils/src/tokens.ts @@ -3,11 +3,11 @@ import { IChangedArgs } from '@jupyterlab/coreutils'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; /* tslint:disable */ /** diff --git a/packages/apputils/src/toolbar.tsx b/packages/apputils/src/toolbar.tsx index 1ae570991a79..be5d80976a16 100644 --- a/packages/apputils/src/toolbar.tsx +++ b/packages/apputils/src/toolbar.tsx @@ -7,20 +7,20 @@ import { Kernel } from '@jupyterlab/services'; import { Button, DefaultIconReact } from '@jupyterlab/ui-components'; -import { IIterator, find, map, some } from '@phosphor/algorithm'; +import { IIterator, find, map, some } from '@lumino/algorithm'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { AttachedProperty } from '@phosphor/properties'; +import { AttachedProperty } from '@lumino/properties'; -import { PanelLayout, Widget } from '@phosphor/widgets'; +import { PanelLayout, Widget } from '@lumino/widgets'; import { IClientSession } from './clientsession'; import * as React from 'react'; -import { ReadonlyJSONObject } from '@phosphor/coreutils'; +import { ReadonlyJSONObject } from '@lumino/coreutils'; /** * The class name added to toolbars. diff --git a/packages/apputils/src/vdom.ts b/packages/apputils/src/vdom.ts index 2e88fcae810d..ce996af9280c 100644 --- a/packages/apputils/src/vdom.ts +++ b/packages/apputils/src/vdom.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import * as React from 'react'; diff --git a/packages/apputils/src/widgettracker.ts b/packages/apputils/src/widgettracker.ts index 47bd96effd95..34fe5d0623b1 100644 --- a/packages/apputils/src/widgettracker.ts +++ b/packages/apputils/src/widgettracker.ts @@ -3,11 +3,11 @@ import { IRestorable, RestorablePool } from '@jupyterlab/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { FocusTracker, Widget } from '@phosphor/widgets'; +import { FocusTracker, Widget } from '@lumino/widgets'; /** * A tracker that tracks widgets. diff --git a/packages/apputils/src/windowresolver.ts b/packages/apputils/src/windowresolver.ts index c1d981e7fa3d..96d8521b0488 100644 --- a/packages/apputils/src/windowresolver.ts +++ b/packages/apputils/src/windowresolver.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { PromiseDelegate, Token } from '@phosphor/coreutils'; +import { PromiseDelegate, Token } from '@lumino/coreutils'; /* tslint:disable */ /** diff --git a/packages/apputils/style/index.css b/packages/apputils/style/index.css index 38810a9cb009..bd9f8cebad79 100644 --- a/packages/apputils/style/index.css +++ b/packages/apputils/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/ui-components/style/index.css'); @import url('./base.css'); diff --git a/packages/attachments/package.json b/packages/attachments/package.json index fb46e2c90248..869d4a913e4f 100644 --- a/packages/attachments/package.json +++ b/packages/attachments/package.json @@ -39,8 +39,8 @@ "@jupyterlab/observables": "^3.0.0-alpha.1", "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/rendermime-interfaces": "^2.0.0-alpha.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/signaling": "^1.3.0" + "@lumino/disposable": "^1.3.0", + "@lumino/signaling": "^1.3.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/attachments/src/model.ts b/packages/attachments/src/model.ts index 5c8c7bb31d51..d741611457d9 100644 --- a/packages/attachments/src/model.ts +++ b/packages/attachments/src/model.ts @@ -19,9 +19,9 @@ import { import { IRenderMime } from '@jupyterlab/rendermime-interfaces'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; /** * The model for attachments. diff --git a/packages/cells/package.json b/packages/cells/package.json index 7b722e60dd95..af3315eec62e 100644 --- a/packages/cells/package.json +++ b/packages/cells/package.json @@ -45,13 +45,13 @@ "@jupyterlab/outputarea": "^2.0.0-alpha.1", "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/dragdrop": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/virtualdom": "^1.2.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/dragdrop": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/virtualdom": "^1.2.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4" }, "devDependencies": { diff --git a/packages/cells/src/celldragutils.ts b/packages/cells/src/celldragutils.ts index d67bd588df2f..3c1daff5648f 100644 --- a/packages/cells/src/celldragutils.ts +++ b/packages/cells/src/celldragutils.ts @@ -9,10 +9,10 @@ * Notebook widgets. */ -import { each, IterableOrArrayLike } from '@phosphor/algorithm'; +import { each, IterableOrArrayLike } from '@lumino/algorithm'; import { ICodeCellModel } from './model'; import { Cell } from './widget'; -import { h, VirtualDOM } from '@phosphor/virtualdom'; +import { h, VirtualDOM } from '@lumino/virtualdom'; import { nbformat } from '@jupyterlab/coreutils'; /** diff --git a/packages/cells/src/headerfooter.ts b/packages/cells/src/headerfooter.ts index d60e6705b0d2..45ab296926d6 100644 --- a/packages/cells/src/headerfooter.ts +++ b/packages/cells/src/headerfooter.ts @@ -3,7 +3,7 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * The CSS class added to the cell header. diff --git a/packages/cells/src/inputarea.ts b/packages/cells/src/inputarea.ts index ecbf82225d98..536625647743 100644 --- a/packages/cells/src/inputarea.ts +++ b/packages/cells/src/inputarea.ts @@ -3,9 +3,9 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { PanelLayout } from '@phosphor/widgets'; +import { PanelLayout } from '@lumino/widgets'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { CodeEditor, CodeEditorWrapper } from '@jupyterlab/codeeditor'; diff --git a/packages/cells/src/model.ts b/packages/cells/src/model.ts index 6fdfb7b479af..ef5143dff1bc 100644 --- a/packages/cells/src/model.ts +++ b/packages/cells/src/model.ts @@ -3,9 +3,9 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { JSONExt, JSONObject, JSONValue } from '@phosphor/coreutils'; +import { JSONExt, JSONObject, JSONValue } from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { IAttachmentsModel, AttachmentsModel } from '@jupyterlab/attachments'; @@ -13,7 +13,7 @@ import { CodeEditor } from '@jupyterlab/codeeditor'; import { IChangedArgs, nbformat } from '@jupyterlab/coreutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { IObservableJSON, diff --git a/packages/cells/src/widget.ts b/packages/cells/src/widget.ts index bb56dc8931e7..ead8e1431e1c 100644 --- a/packages/cells/src/widget.ts +++ b/packages/cells/src/widget.ts @@ -43,15 +43,15 @@ import { PromiseDelegate, JSONObject, UUID -} from '@phosphor/coreutils'; +} from '@lumino/coreutils'; -import { some, filter, toArray } from '@phosphor/algorithm'; +import { some, filter, toArray } from '@lumino/algorithm'; -import { IDragEvent } from '@phosphor/dragdrop'; +import { IDragEvent } from '@lumino/dragdrop'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { PanelLayout, Panel, Widget } from '@phosphor/widgets'; +import { PanelLayout, Panel, Widget } from '@lumino/widgets'; import { InputCollapser, OutputCollapser } from './collapser'; diff --git a/packages/cells/style/index.css b/packages/cells/style/index.css index 3d5756601445..65e9066c1033 100644 --- a/packages/cells/style/index.css +++ b/packages/cells/style/index.css @@ -4,9 +4,9 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); -@import url('~@phosphor/dragdrop/style/index.css'); +@import url('~@lumino/dragdrop/style/index.css'); @import url('~@jupyterlab/codeeditor/style/index.css'); @import url('~@jupyterlab/codemirror/style/index.css'); @import url('~@jupyterlab/rendermime/style/index.css'); diff --git a/packages/codeeditor/package.json b/packages/codeeditor/package.json index f380b9da22c3..6032f723f1c0 100644 --- a/packages/codeeditor/package.json +++ b/packages/codeeditor/package.json @@ -37,12 +37,12 @@ "dependencies": { "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/observables": "^3.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/dragdrop": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/dragdrop": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/codeeditor/src/editor.ts b/packages/codeeditor/src/editor.ts index 5b9e48c31876..a7eaed221033 100644 --- a/packages/codeeditor/src/editor.ts +++ b/packages/codeeditor/src/editor.ts @@ -1,11 +1,11 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { IChangedArgs } from '@jupyterlab/coreutils'; diff --git a/packages/codeeditor/src/jsoneditor.ts b/packages/codeeditor/src/jsoneditor.ts index 8f34fe73c9be..031c8daa516f 100644 --- a/packages/codeeditor/src/jsoneditor.ts +++ b/packages/codeeditor/src/jsoneditor.ts @@ -3,11 +3,11 @@ import { IObservableJSON } from '@jupyterlab/observables'; -import { JSONExt, JSONObject } from '@phosphor/coreutils'; +import { JSONExt, JSONObject } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { CodeEditor } from './editor'; diff --git a/packages/codeeditor/src/tokens.ts b/packages/codeeditor/src/tokens.ts index a80e991fe7df..083302829a18 100644 --- a/packages/codeeditor/src/tokens.ts +++ b/packages/codeeditor/src/tokens.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; import { IEditorFactoryService } from './factory'; diff --git a/packages/codeeditor/src/widget.ts b/packages/codeeditor/src/widget.ts index 270f1126db99..9d53e4197061 100644 --- a/packages/codeeditor/src/widget.ts +++ b/packages/codeeditor/src/widget.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { MimeData } from '@phosphor/coreutils'; +import { MimeData } from '@lumino/coreutils'; -import { IDragEvent } from '@phosphor/dragdrop'; +import { IDragEvent } from '@lumino/dragdrop'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { CodeEditor } from './'; diff --git a/packages/codeeditor/style/index.css b/packages/codeeditor/style/index.css index 3a518cc0b3fc..3c8d75eb9a50 100644 --- a/packages/codeeditor/style/index.css +++ b/packages/codeeditor/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/dragdrop/style/index.css'); -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/dragdrop/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('./base.css'); diff --git a/packages/codemirror-extension/package.json b/packages/codemirror-extension/package.json index 5506bc72671b..f859e8bb2f94 100644 --- a/packages/codemirror-extension/package.json +++ b/packages/codemirror-extension/package.json @@ -44,7 +44,7 @@ "@jupyterlab/fileeditor": "^2.0.0-alpha.1", "@jupyterlab/mainmenu": "^2.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", - "@phosphor/widgets": "^1.9.0", + "@lumino/widgets": "^1.9.0", "codemirror": "~5.47.0" }, "devDependencies": { diff --git a/packages/codemirror-extension/src/index.ts b/packages/codemirror-extension/src/index.ts index f07a96c45419..28dcadaaac16 100644 --- a/packages/codemirror-extension/src/index.ts +++ b/packages/codemirror-extension/src/index.ts @@ -3,7 +3,7 @@ import CodeMirror from 'codemirror'; -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; import { ILabShell, diff --git a/packages/codemirror/package.json b/packages/codemirror/package.json index 42bc7ee87694..e7fdf24568d7 100644 --- a/packages/codemirror/package.json +++ b/packages/codemirror/package.json @@ -38,12 +38,12 @@ "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/observables": "^3.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "codemirror": "~5.47.0", "react": "~16.8.4" }, diff --git a/packages/codemirror/src/editor.ts b/packages/codemirror/src/editor.ts index 8c8ae190a1a3..f6be986f3e20 100644 --- a/packages/codemirror/src/editor.ts +++ b/packages/codemirror/src/editor.ts @@ -5,13 +5,13 @@ import CodeMirror from 'codemirror'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; -import { ArrayExt } from '@phosphor/algorithm'; +import { ArrayExt } from '@lumino/algorithm'; -import { IDisposable, DisposableDelegate } from '@phosphor/disposable'; +import { IDisposable, DisposableDelegate } from '@lumino/disposable'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; import { showDialog } from '@jupyterlab/apputils'; @@ -19,7 +19,7 @@ import { Poll } from '@jupyterlab/coreutils'; import { CodeEditor } from '@jupyterlab/codeeditor'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { IObservableMap, diff --git a/packages/codemirror/src/mode.ts b/packages/codemirror/src/mode.ts index f3c180510719..b25ce1af3ae7 100644 --- a/packages/codemirror/src/mode.ts +++ b/packages/codemirror/src/mode.ts @@ -1,8 +1,8 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { ArrayExt } from '@phosphor/algorithm'; -import { JSONValue } from '@phosphor/coreutils'; +import { ArrayExt } from '@lumino/algorithm'; +import { JSONValue } from '@lumino/coreutils'; import { IEditorMimeTypeService } from '@jupyterlab/codeeditor'; diff --git a/packages/codemirror/src/syntaxstatus.tsx b/packages/codemirror/src/syntaxstatus.tsx index 888747cfb404..9e950c418af4 100644 --- a/packages/codemirror/src/syntaxstatus.tsx +++ b/packages/codemirror/src/syntaxstatus.tsx @@ -15,11 +15,11 @@ import { import { Mode } from '.'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; /** * A namespace for `EditorSyntaxComponentStatics`. diff --git a/packages/codemirror/style/index.css b/packages/codemirror/style/index.css index 57ce0e097ea3..2549bf7ea554 100644 --- a/packages/codemirror/style/index.css +++ b/packages/codemirror/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/codeeditor/style/index.css'); @import url('~@jupyterlab/statusbar/style/index.css'); diff --git a/packages/completer-extension/package.json b/packages/completer-extension/package.json index ba3bdd7121ab..a0cb79daa5fe 100644 --- a/packages/completer-extension/package.json +++ b/packages/completer-extension/package.json @@ -42,8 +42,8 @@ "@jupyterlab/fileeditor": "^2.0.0-alpha.1", "@jupyterlab/notebook": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/completer-extension/src/index.ts b/packages/completer-extension/src/index.ts index f29b4b41c138..42597a392135 100644 --- a/packages/completer-extension/src/index.ts +++ b/packages/completer-extension/src/index.ts @@ -23,9 +23,9 @@ import { INotebookTracker } from '@jupyterlab/notebook'; import { Session } from '@jupyterlab/services'; -import { find } from '@phosphor/algorithm'; +import { find } from '@lumino/algorithm'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * The command IDs used by the completer plugin. diff --git a/packages/completer/package.json b/packages/completer/package.json index f78132ba1aa0..decf9a165fc9 100644 --- a/packages/completer/package.json +++ b/packages/completer/package.json @@ -39,13 +39,13 @@ "@jupyterlab/codeeditor": "^2.0.0-alpha.1", "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/domutils": "^1.1.3", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/domutils": "^1.1.3", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/completer/src/handler.ts b/packages/completer/src/handler.ts index 4e783d85072e..13a66acf421b 100644 --- a/packages/completer/src/handler.ts +++ b/packages/completer/src/handler.ts @@ -5,13 +5,13 @@ import { CodeEditor } from '@jupyterlab/codeeditor'; import { IDataConnector, Text } from '@jupyterlab/coreutils'; -import { ReadonlyJSONObject, JSONObject, JSONArray } from '@phosphor/coreutils'; +import { ReadonlyJSONObject, JSONObject, JSONArray } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; import { Completer } from './widget'; diff --git a/packages/completer/src/model.ts b/packages/completer/src/model.ts index 0fc9dab12062..fbec6b26a914 100644 --- a/packages/completer/src/model.ts +++ b/packages/completer/src/model.ts @@ -7,13 +7,13 @@ import { iter, map, toArray -} from '@phosphor/algorithm'; +} from '@lumino/algorithm'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; -import { StringExt } from '@phosphor/algorithm'; +import { StringExt } from '@lumino/algorithm'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { Completer } from './widget'; diff --git a/packages/completer/src/tokens.ts b/packages/completer/src/tokens.ts index 9d3e9f79f86e..8579725199d6 100644 --- a/packages/completer/src/tokens.ts +++ b/packages/completer/src/tokens.ts @@ -5,9 +5,9 @@ import { CodeEditor } from '@jupyterlab/codeeditor'; import { IDataConnector } from '@jupyterlab/coreutils'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { CompletionHandler } from './handler'; diff --git a/packages/completer/src/widget.ts b/packages/completer/src/widget.ts index 9a1b06066407..dc612aac4dc1 100644 --- a/packages/completer/src/widget.ts +++ b/packages/completer/src/widget.ts @@ -5,19 +5,19 @@ import { HoverBox, defaultSanitizer } from '@jupyterlab/apputils'; import { CodeEditor } from '@jupyterlab/codeeditor'; -import { IIterator, IterableOrArrayLike, toArray } from '@phosphor/algorithm'; +import { IIterator, IterableOrArrayLike, toArray } from '@lumino/algorithm'; -import { JSONObject, JSONExt } from '@phosphor/coreutils'; +import { JSONObject, JSONExt } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ElementExt } from '@phosphor/domutils'; +import { ElementExt } from '@lumino/domutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * The class name added to completer menu items. diff --git a/packages/completer/style/index.css b/packages/completer/style/index.css index 546e18daa8a5..a0544f8765dc 100644 --- a/packages/completer/style/index.css +++ b/packages/completer/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('./base.css'); diff --git a/packages/console-extension/package.json b/packages/console-extension/package.json index a2653623fe60..217ff4d25d37 100644 --- a/packages/console-extension/package.json +++ b/packages/console-extension/package.json @@ -45,11 +45,11 @@ "@jupyterlab/launcher": "^2.0.0-alpha.1", "@jupyterlab/mainmenu": "^2.0.0-alpha.1", "@jupyterlab/rendermime": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/properties": "^1.1.3", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/properties": "^1.1.3", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/console-extension/src/foreign.ts b/packages/console-extension/src/foreign.ts index b89ddd6ff1ea..c3ec306d66dd 100644 --- a/packages/console-extension/src/foreign.ts +++ b/packages/console-extension/src/foreign.ts @@ -15,9 +15,9 @@ import { ForeignHandler } from '@jupyterlab/console'; -import { AttachedProperty } from '@phosphor/properties'; +import { AttachedProperty } from '@lumino/properties'; -import { ReadonlyJSONObject } from '@phosphor/coreutils'; +import { ReadonlyJSONObject } from '@lumino/coreutils'; /** * The console widget tracker provider. diff --git a/packages/console-extension/src/index.ts b/packages/console-extension/src/index.ts index 748d177cc566..424325156d66 100644 --- a/packages/console-extension/src/index.ts +++ b/packages/console-extension/src/index.ts @@ -37,13 +37,13 @@ import { import { IRenderMimeRegistry } from '@jupyterlab/rendermime'; -import { find } from '@phosphor/algorithm'; +import { find } from '@lumino/algorithm'; -import { ReadonlyJSONObject, JSONObject } from '@phosphor/coreutils'; +import { ReadonlyJSONObject, JSONObject } from '@lumino/coreutils'; -import { DisposableSet } from '@phosphor/disposable'; +import { DisposableSet } from '@lumino/disposable'; -import { DockLayout, Menu } from '@phosphor/widgets'; +import { DockLayout, Menu } from '@lumino/widgets'; import foreign from './foreign'; diff --git a/packages/console/package.json b/packages/console/package.json index d7a1c4414aa0..d7d67335a86c 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -42,13 +42,13 @@ "@jupyterlab/observables": "^3.0.0-alpha.1", "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/dragdrop": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/dragdrop": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/console/src/foreign.ts b/packages/console/src/foreign.ts index 090a376b28d9..e8ea68c51f05 100644 --- a/packages/console/src/foreign.ts +++ b/packages/console/src/foreign.ts @@ -9,9 +9,9 @@ import { nbformat } from '@jupyterlab/coreutils'; import { KernelMessage } from '@jupyterlab/services'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; const FOREIGN_CELL_CLASS = 'jp-CodeConsole-foreignCell'; diff --git a/packages/console/src/history.ts b/packages/console/src/history.ts index 390010270267..39a7aa374376 100644 --- a/packages/console/src/history.ts +++ b/packages/console/src/history.ts @@ -3,9 +3,9 @@ import { KernelMessage } from '@jupyterlab/services'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; import { IClientSession } from '@jupyterlab/apputils'; diff --git a/packages/console/src/panel.ts b/packages/console/src/panel.ts index a3e8f34fc725..d72b21a1813c 100644 --- a/packages/console/src/panel.ts +++ b/packages/console/src/panel.ts @@ -7,7 +7,7 @@ import { IEditorMimeTypeService } from '@jupyterlab/codeeditor'; import { PathExt, Time } from '@jupyterlab/coreutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { IRenderMimeRegistry, @@ -16,14 +16,14 @@ import { import { ServiceManager } from '@jupyterlab/services'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Panel } from '@phosphor/widgets'; +import { Panel } from '@lumino/widgets'; import { CodeConsole } from './widget'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; /** * The class name added to console panels. diff --git a/packages/console/src/tokens.ts b/packages/console/src/tokens.ts index c41cb2d0a19d..c5089716e6ca 100644 --- a/packages/console/src/tokens.ts +++ b/packages/console/src/tokens.ts @@ -3,7 +3,7 @@ import { IWidgetTracker } from '@jupyterlab/apputils'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; import { ConsolePanel } from './panel'; diff --git a/packages/console/src/widget.ts b/packages/console/src/widget.ts index 199845174a65..4bd455a59fa8 100644 --- a/packages/console/src/widget.ts +++ b/packages/console/src/widget.ts @@ -26,17 +26,17 @@ import { IRenderMimeRegistry } from '@jupyterlab/rendermime'; import { KernelMessage } from '@jupyterlab/services'; -import { each } from '@phosphor/algorithm'; +import { each } from '@lumino/algorithm'; -import { MimeData, JSONObject } from '@phosphor/coreutils'; +import { MimeData, JSONObject } from '@lumino/coreutils'; -import { Drag } from '@phosphor/dragdrop'; +import { Drag } from '@lumino/dragdrop'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Panel, PanelLayout, Widget } from '@phosphor/widgets'; +import { Panel, PanelLayout, Widget } from '@lumino/widgets'; import { ConsoleHistory, IConsoleHistory } from './history'; diff --git a/packages/console/style/index.css b/packages/console/style/index.css index 192a269ffd7d..b8d31572100f 100644 --- a/packages/console/style/index.css +++ b/packages/console/style/index.css @@ -4,9 +4,9 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); -@import url('~@phosphor/dragdrop/style/index.css'); +@import url('~@lumino/dragdrop/style/index.css'); @import url('~@jupyterlab/codeeditor/style/index.css'); @import url('~@jupyterlab/rendermime/style/index.css'); @import url('~@jupyterlab/cells/style/index.css'); diff --git a/packages/coreutils/package.json b/packages/coreutils/package.json index 7481d240fbcc..970501f8e2ac 100644 --- a/packages/coreutils/package.json +++ b/packages/coreutils/package.json @@ -32,11 +32,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/properties": "^1.1.3", - "@phosphor/signaling": "^1.3.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/properties": "^1.1.3", + "@lumino/signaling": "^1.3.0", "ajv": "^6.5.5", "json5": "^2.1.0", "minimist": "~1.2.0", diff --git a/packages/coreutils/src/activitymonitor.ts b/packages/coreutils/src/activitymonitor.ts index 0862c40c2a4c..7760ed2730f9 100644 --- a/packages/coreutils/src/activitymonitor.ts +++ b/packages/coreutils/src/activitymonitor.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; /** * A class that monitors activity on a signal. diff --git a/packages/coreutils/src/interfaces.ts b/packages/coreutils/src/interfaces.ts index c30b06dc0641..36df41b2de49 100644 --- a/packages/coreutils/src/interfaces.ts +++ b/packages/coreutils/src/interfaces.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { ReadonlyJSONObject, ReadonlyJSONValue } from '@phosphor/coreutils'; +import { ReadonlyJSONObject, ReadonlyJSONValue } from '@lumino/coreutils'; -import { IDisposable, IObservableDisposable } from '@phosphor/disposable'; +import { IDisposable, IObservableDisposable } from '@lumino/disposable'; -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; /** * A generic interface for change emitter payloads. diff --git a/packages/coreutils/src/nbformat.ts b/packages/coreutils/src/nbformat.ts index 5542a11988de..a199638bac02 100644 --- a/packages/coreutils/src/nbformat.ts +++ b/packages/coreutils/src/nbformat.ts @@ -5,7 +5,7 @@ // https://nbformat.readthedocs.io/en/latest/format_description.html // https://github.com/jupyter/nbformat/blob/master/nbformat/v4/nbformat.v4.schema.json -import { JSONObject, JSONExt } from '@phosphor/coreutils'; +import { JSONObject, JSONExt } from '@lumino/coreutils'; /** * A namespace for nbformat interfaces. diff --git a/packages/coreutils/src/pageconfig.ts b/packages/coreutils/src/pageconfig.ts index 3d85754de1a0..3e9fe03605a8 100644 --- a/packages/coreutils/src/pageconfig.ts +++ b/packages/coreutils/src/pageconfig.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; import minimist from 'minimist'; diff --git a/packages/coreutils/src/poll.ts b/packages/coreutils/src/poll.ts index ab59b1d056bb..8742ed2e428f 100644 --- a/packages/coreutils/src/poll.ts +++ b/packages/coreutils/src/poll.ts @@ -1,11 +1,11 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { JSONExt, PromiseDelegate } from '@phosphor/coreutils'; +import { JSONExt, PromiseDelegate } from '@lumino/coreutils'; -import { IObservableDisposable } from '@phosphor/disposable'; +import { IObservableDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { IPoll } from './interfaces'; diff --git a/packages/coreutils/src/ratelimiter.ts b/packages/coreutils/src/ratelimiter.ts index 7c334b645e39..199f7ff4e1e1 100644 --- a/packages/coreutils/src/ratelimiter.ts +++ b/packages/coreutils/src/ratelimiter.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; import { IRateLimiter } from './interfaces'; diff --git a/packages/coreutils/src/restorablepool.ts b/packages/coreutils/src/restorablepool.ts index c47e146fe408..591b4375f304 100644 --- a/packages/coreutils/src/restorablepool.ts +++ b/packages/coreutils/src/restorablepool.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { IObservableDisposable } from '@phosphor/disposable'; +import { IObservableDisposable } from '@lumino/disposable'; -import { AttachedProperty } from '@phosphor/properties'; +import { AttachedProperty } from '@lumino/properties'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { IObjectPool, IRestorable } from './interfaces'; diff --git a/packages/coreutils/src/settingregistry.ts b/packages/coreutils/src/settingregistry.ts index e8a7a9f54791..963f2796f180 100644 --- a/packages/coreutils/src/settingregistry.ts +++ b/packages/coreutils/src/settingregistry.ts @@ -11,11 +11,11 @@ import { JSONValue, ReadonlyJSONObject, ReadonlyJSONValue -} from '@phosphor/coreutils'; +} from '@lumino/coreutils'; -import { DisposableDelegate, IDisposable } from '@phosphor/disposable'; +import { DisposableDelegate, IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { IDataConnector } from './interfaces'; diff --git a/packages/coreutils/src/statedb.ts b/packages/coreutils/src/statedb.ts index 1d6ff5c719e1..9624e08bcb64 100644 --- a/packages/coreutils/src/statedb.ts +++ b/packages/coreutils/src/statedb.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { ReadonlyJSONObject, ReadonlyJSONValue } from '@phosphor/coreutils'; +import { ReadonlyJSONObject, ReadonlyJSONValue } from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { IDataConnector } from './interfaces'; diff --git a/packages/coreutils/src/tokens.ts b/packages/coreutils/src/tokens.ts index 408386e43289..ab7cf480cdb5 100644 --- a/packages/coreutils/src/tokens.ts +++ b/packages/coreutils/src/tokens.ts @@ -7,11 +7,11 @@ import { ReadonlyJSONObject, ReadonlyJSONValue, Token -} from '@phosphor/coreutils'; +} from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; import { ISchemaValidator } from './settingregistry'; diff --git a/packages/coreutils/src/url.ts b/packages/coreutils/src/url.ts index 235e49e00206..3b476dcd941e 100644 --- a/packages/coreutils/src/url.ts +++ b/packages/coreutils/src/url.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; import urlparse from 'url-parse'; diff --git a/packages/csvviewer-extension/package.json b/packages/csvviewer-extension/package.json index 2b4b1af426b0..20b5cd968543 100644 --- a/packages/csvviewer-extension/package.json +++ b/packages/csvviewer-extension/package.json @@ -41,9 +41,9 @@ "@jupyterlab/docregistry": "^2.0.0-alpha.1", "@jupyterlab/documentsearch": "^2.0.0-alpha.1", "@jupyterlab/mainmenu": "^2.0.0-alpha.1", - "@phosphor/datagrid": "^0.1.11", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/datagrid": "^0.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/csvviewer-extension/src/index.ts b/packages/csvviewer-extension/src/index.ts index a8f21c14b66c..ad5845f50306 100644 --- a/packages/csvviewer-extension/src/index.ts +++ b/packages/csvviewer-extension/src/index.ts @@ -20,7 +20,7 @@ import { import { IDocumentWidget } from '@jupyterlab/docregistry'; import { ISearchProviderRegistry } from '@jupyterlab/documentsearch'; import { IEditMenu, IMainMenu } from '@jupyterlab/mainmenu'; -import { DataGrid } from '@phosphor/datagrid'; +import { DataGrid } from '@lumino/datagrid'; import { CSVSearchProvider } from './searchprovider'; /** @@ -105,7 +105,7 @@ function activateCsv( }); // The current styles for the data grids. - let style: DataGrid.IStyle = Private.LIGHT_STYLE; + let style: DataGrid.Style = Private.LIGHT_STYLE; let rendererConfig: TextRenderConfig = Private.LIGHT_TEXT_CONFIG; if (restorer) { @@ -184,7 +184,7 @@ function activateTsv( }); // The current styles for the data grids. - let style: DataGrid.IStyle = Private.LIGHT_STYLE; + let style: DataGrid.Style = Private.LIGHT_STYLE; let rendererConfig: TextRenderConfig = Private.LIGHT_TEXT_CONFIG; if (restorer) { @@ -255,7 +255,7 @@ namespace Private { /** * The light theme for the data grid. */ - export const LIGHT_STYLE: DataGrid.IStyle = { + export const LIGHT_STYLE: DataGrid.Style = { ...DataGrid.defaultStyle, voidColor: '#F3F3F3', backgroundColor: 'white', @@ -268,7 +268,7 @@ namespace Private { /** * The dark theme for the data grid. */ - export const DARK_STYLE: DataGrid.IStyle = { + export const DARK_STYLE: DataGrid.Style = { voidColor: 'black', backgroundColor: '#111111', headerBackgroundColor: '#424242', diff --git a/packages/csvviewer-extension/src/searchprovider.ts b/packages/csvviewer-extension/src/searchprovider.ts index a456b2f5f72b..1b81a3e3e3f0 100644 --- a/packages/csvviewer-extension/src/searchprovider.ts +++ b/packages/csvviewer-extension/src/searchprovider.ts @@ -3,8 +3,8 @@ import { ISearchProvider, ISearchMatch } from '@jupyterlab/documentsearch'; import { CSVViewer } from '@jupyterlab/csvviewer'; import { DocumentWidget } from '@jupyterlab/docregistry'; -import { Signal, ISignal } from '@phosphor/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Signal, ISignal } from '@lumino/signaling'; +import { Widget } from '@lumino/widgets'; // The type for which canSearchFor returns true export type CSVDocumentWidget = DocumentWidget; diff --git a/packages/csvviewer/package.json b/packages/csvviewer/package.json index 18ecd4fb5eb7..4de8a49df12e 100644 --- a/packages/csvviewer/package.json +++ b/packages/csvviewer/package.json @@ -38,13 +38,13 @@ "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/docregistry": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/datagrid": "^0.1.11", - "@phosphor/disposable": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/datagrid": "^0.3.0", + "@lumino/disposable": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/csvviewer/src/model.ts b/packages/csvviewer/src/model.ts index ad2f137a52ba..8569be610054 100644 --- a/packages/csvviewer/src/model.ts +++ b/packages/csvviewer/src/model.ts @@ -1,11 +1,11 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { DataModel } from '@phosphor/datagrid'; +import { DataModel } from '@lumino/datagrid'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; import { parseDSV, parseDSVNoQuotes, IParser } from './parse'; diff --git a/packages/csvviewer/src/toolbar.ts b/packages/csvviewer/src/toolbar.ts index d7a8caeebea5..df0e220290ed 100644 --- a/packages/csvviewer/src/toolbar.ts +++ b/packages/csvviewer/src/toolbar.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { each, zip } from '@phosphor/algorithm'; +import { each, zip } from '@lumino/algorithm'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { Styling } from '@jupyterlab/apputils'; diff --git a/packages/csvviewer/src/widget.ts b/packages/csvviewer/src/widget.ts index 152fd1a553af..2d3fc4630ac6 100644 --- a/packages/csvviewer/src/widget.ts +++ b/packages/csvviewer/src/widget.ts @@ -10,13 +10,22 @@ import { DocumentWidget } from '@jupyterlab/docregistry'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { DataGrid, TextRenderer, CellRenderer } from '@phosphor/datagrid'; +import { + BasicKeyHandler, + BasicMouseHandler, + BasicSelectionModel, + DataGrid, + TextRenderer, + CellRenderer +} from '@lumino/datagrid'; + +import { Message } from '@lumino/messaging'; -import { Message } from '@phosphor/messaging'; +import { ISignal, Signal } from '@lumino/signaling'; -import { PanelLayout, Widget } from '@phosphor/widgets'; +import { PanelLayout, Widget } from '@lumino/widgets'; import { CSVDelimiter } from './toolbar'; @@ -73,6 +82,13 @@ export class GridSearchService { this._column = -1; } + /** + * A signal fired when the grid changes. + */ + get changed(): ISignal { + return this._changed; + } + /** * Returns a cellrenderer config function to render each cell background. * If cell match, background is matchBackgroundColor, if it's the current @@ -100,14 +116,14 @@ export class GridSearchService { this._query = null; this._row = 0; this._column = -1; - this._grid.repaint(); + this._changed.emit(undefined); } /** * incrementally look for searchText. */ find(query: RegExp, reverse = false): boolean { - const model = this._grid.model; + const model = this._grid.dataModel; const rowCount = model.rowCount('body'); const columnCount = model.columnCount('body'); @@ -119,12 +135,16 @@ export class GridSearchService { this._query = query; // check if the match is in current viewport - const minRow = this._grid.scrollY / this._grid.baseRowSize; + + const minRow = this._grid.scrollY / this._grid.defaultSizes.rowHeight; const maxRow = - (this._grid.scrollY + this._grid.pageHeight) / this._grid.baseRowSize; - const minColumn = this._grid.scrollX / this._grid.baseColumnSize; + (this._grid.scrollY + this._grid.pageHeight) / + this._grid.defaultSizes.rowHeight; + const minColumn = + this._grid.scrollX / this._grid.defaultSizes.columnHeaderHeight; const maxColumn = - (this._grid.scrollX + this._grid.pageWidth) / this._grid.baseColumnSize; + (this._grid.scrollX + this._grid.pageWidth) / + this._grid.defaultSizes.columnHeaderHeight; const isInViewport = (row: number, column: number) => { return ( row >= minRow && @@ -152,20 +172,10 @@ export class GridSearchService { // TODO: we only really need to invalidate the previous and current // cell rects, not the entire grid. - this._grid.repaint(); + this._changed.emit(undefined); if (!isInViewport(row, col)) { - // scroll the matching cell into view - let scrollX = 0; - let scrollY = 0; - /* see also https://github.com/jupyterlab/jupyterlab/pull/5523#issuecomment-432621391 */ - for (let i = 0; i < row - 1; i++) { - scrollY += this._grid.sectionSize('row', i); - } - for (let j = 0; j < col - 1; j++) { - scrollX += this._grid.sectionSize('column', j); - } - this._grid.scrollTo(scrollX, scrollY); + this._grid.scrollToRow(row); } this._row = row; this._column = col; @@ -194,7 +204,7 @@ export class GridSearchService { * Wrap indices if needed to just before the start or just after the end. */ private _wrapRows(reverse = false) { - const model = this._grid.model; + const model = this._grid.dataModel; const rowCount = model.rowCount('body'); const columnCount = model.columnCount('body'); @@ -218,6 +228,7 @@ export class GridSearchService { private _row: number; private _column: number; private _looping = true; + private _changed = new Signal(this); } /** @@ -236,16 +247,28 @@ export class CSVViewer extends Widget { this.addClass(CSV_CLASS); this._grid = new DataGrid({ - baseRowSize: 24, - baseColumnSize: 144, - baseColumnHeaderSize: 36, - baseRowHeaderSize: 64 + defaultSizes: { + rowHeight: 24, + columnWidth: 144, + rowHeaderWidth: 64, + columnHeaderHeight: 36 + } }); this._grid.addClass(CSV_GRID_CLASS); this._grid.headerVisibility = 'all'; + this._grid.keyHandler = new BasicKeyHandler(); + this._grid.mouseHandler = new BasicMouseHandler(); + this._grid.copyConfig = { + separator: '\t', + format: DataGrid.copyFormatGeneric, + headers: 'all', + warningThreshold: 1e6 + }; + layout.addWidget(this._grid); this._searchService = new GridSearchService(this._grid); + this._searchService.changed.connect(this._updateRenderer, this); void this._context.ready.then(() => { this._updateGrid(); @@ -290,10 +313,10 @@ export class CSVViewer extends Widget { /** * The style used by the data grid. */ - get style(): DataGrid.IStyle { + get style(): DataGrid.Style { return this._grid.style; } - set style(value: DataGrid.IStyle) { + set style(value: DataGrid.Style) { this._grid.style = value; } @@ -301,13 +324,8 @@ export class CSVViewer extends Widget { * The config used to create text renderer. */ set rendererConfig(rendererConfig: TextRenderConfig) { - this._grid.defaultRenderer = new TextRenderer({ - textColor: rendererConfig.textColor, - horizontalAlignment: rendererConfig.horizontalAlignment, - backgroundColor: this._searchService.cellBackgroundColorRendererFunc( - rendererConfig - ) - }); + this._baseRenderer = rendererConfig; + this._updateRenderer(); } /** @@ -331,15 +349,7 @@ export class CSVViewer extends Widget { * Go to line */ goToLine(lineNumber: number) { - let scrollY = 0; - /* The lines might not all have uniform height, so we can't just scroll to lineNumber * this._grid.baseRowSize - see https://github.com/jupyterlab/jupyterlab/pull/5523#issuecomment-432621391 for discussions around - this. It would be nice if DataGrid had a method to scroll to cell, which could be implemented more efficiently - because datagrid knows more about the shape of the cells. */ - for (let i = 0; i < lineNumber - 1; i++) { - scrollY += this._grid.sectionSize('row', i); - } - this._grid.scrollTo(this._grid.scrollX, scrollY); + this._grid.scrollToRow(lineNumber); } /** @@ -356,13 +366,36 @@ export class CSVViewer extends Widget { private _updateGrid(): void { let data: string = this._context.model.toString(); let delimiter = this._delimiter; - let oldModel = this._grid.model as DSVModel; - this._grid.model = new DSVModel({ data, delimiter }); + let oldModel = this._grid.dataModel as DSVModel; + const dataModel = (this._grid.dataModel = new DSVModel({ + data, + delimiter + })); + this._grid.selectionModel = new BasicSelectionModel({ dataModel }); if (oldModel) { oldModel.dispose(); } } + /** + * Update the renderer for the grid. + */ + private _updateRenderer(): void { + if (this._baseRenderer === null) { + return; + } + const rendererConfig = this._baseRenderer; + this._grid.cellRenderers.update({ + body: new TextRenderer({ + textColor: rendererConfig.textColor, + horizontalAlignment: rendererConfig.horizontalAlignment, + backgroundColor: this._searchService.cellBackgroundColorRendererFunc( + rendererConfig + ) + }) + }); + } + private _context: DocumentRegistry.Context; private _grid: DataGrid; private _searchService: GridSearchService; @@ -372,6 +405,7 @@ export class CSVViewer extends Widget { > | null = null; private _delimiter = ','; private _revealed = new PromiseDelegate(); + private _baseRenderer: TextRenderConfig | null = null; } /** diff --git a/packages/csvviewer/style/index.css b/packages/csvviewer/style/index.css index a9b584044e11..a634b5e5550b 100644 --- a/packages/csvviewer/style/index.css +++ b/packages/csvviewer/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/docregistry/style/index.css'); diff --git a/packages/docmanager-extension/package.json b/packages/docmanager-extension/package.json index 03b589afd6a5..3da6a23e3633 100644 --- a/packages/docmanager-extension/package.json +++ b/packages/docmanager-extension/package.json @@ -44,10 +44,10 @@ "@jupyterlab/mainmenu": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/docmanager-extension/src/index.ts b/packages/docmanager-extension/src/index.ts index 45d52dd6da57..d78d71b1a9a5 100644 --- a/packages/docmanager-extension/src/index.ts +++ b/packages/docmanager-extension/src/index.ts @@ -33,13 +33,13 @@ import { Contents, Kernel } from '@jupyterlab/services'; import { IStatusBar } from '@jupyterlab/statusbar'; -import { each, map, some, toArray } from '@phosphor/algorithm'; +import { each, map, some, toArray } from '@lumino/algorithm'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * The command IDs used by the document manager plugin. diff --git a/packages/docmanager/package.json b/packages/docmanager/package.json index af5c96ee3eaa..0290de955401 100644 --- a/packages/docmanager/package.json +++ b/packages/docmanager/package.json @@ -40,13 +40,13 @@ "@jupyterlab/docregistry": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/properties": "^1.1.3", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/properties": "^1.1.3", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4" }, "devDependencies": { diff --git a/packages/docmanager/src/dialogs.ts b/packages/docmanager/src/dialogs.ts index 338bf05e9fb2..c4b98a32cc6f 100644 --- a/packages/docmanager/src/dialogs.ts +++ b/packages/docmanager/src/dialogs.ts @@ -7,9 +7,9 @@ import { PathExt } from '@jupyterlab/coreutils'; import { Contents } from '@jupyterlab/services'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { IDocumentManager } from './'; diff --git a/packages/docmanager/src/manager.ts b/packages/docmanager/src/manager.ts index c17b68213e1f..5dfdc133881e 100644 --- a/packages/docmanager/src/manager.ts +++ b/packages/docmanager/src/manager.ts @@ -5,7 +5,7 @@ import { IClientSession } from '@jupyterlab/apputils'; import { PathExt } from '@jupyterlab/coreutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { DocumentRegistry, @@ -15,15 +15,15 @@ import { import { Contents, Kernel, ServiceManager } from '@jupyterlab/services'; -import { ArrayExt, find } from '@phosphor/algorithm'; +import { ArrayExt, find } from '@lumino/algorithm'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { AttachedProperty } from '@phosphor/properties'; +import { AttachedProperty } from '@lumino/properties'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { SaveHandler } from './savehandler'; diff --git a/packages/docmanager/src/pathstatus.tsx b/packages/docmanager/src/pathstatus.tsx index 9be33563ef07..924b7a244acd 100644 --- a/packages/docmanager/src/pathstatus.tsx +++ b/packages/docmanager/src/pathstatus.tsx @@ -13,7 +13,7 @@ import { DocumentRegistry } from '@jupyterlab/docregistry'; import { TextItem } from '@jupyterlab/statusbar'; -import { Widget, Title } from '@phosphor/widgets'; +import { Widget, Title } from '@lumino/widgets'; /** * A namespace for PathStatusComponent statics. diff --git a/packages/docmanager/src/savehandler.ts b/packages/docmanager/src/savehandler.ts index 402887111ce0..b577996407fe 100644 --- a/packages/docmanager/src/savehandler.ts +++ b/packages/docmanager/src/savehandler.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; import { DocumentRegistry } from '@jupyterlab/docregistry'; diff --git a/packages/docmanager/src/savingstatus.tsx b/packages/docmanager/src/savingstatus.tsx index bb78be4d7da0..6e669cdcfa06 100644 --- a/packages/docmanager/src/savingstatus.tsx +++ b/packages/docmanager/src/savingstatus.tsx @@ -11,7 +11,7 @@ import { DocumentRegistry } from '@jupyterlab/docregistry'; import { TextItem } from '@jupyterlab/statusbar'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * A namespace for SavingStatusComponent statics. diff --git a/packages/docmanager/src/tokens.ts b/packages/docmanager/src/tokens.ts index cbeebf0a23e6..35466fa9e2d9 100644 --- a/packages/docmanager/src/tokens.ts +++ b/packages/docmanager/src/tokens.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { DocumentRegistry, IDocumentWidget } from '@jupyterlab/docregistry'; diff --git a/packages/docmanager/src/widgetmanager.ts b/packages/docmanager/src/widgetmanager.ts index 2507a0127653..b25ee0fc3399 100644 --- a/packages/docmanager/src/widgetmanager.ts +++ b/packages/docmanager/src/widgetmanager.ts @@ -1,24 +1,17 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { - ArrayExt, - each, - map, - find, - filter, - toArray -} from '@phosphor/algorithm'; +import { ArrayExt, each, map, find, filter, toArray } from '@lumino/algorithm'; -import { DisposableSet, IDisposable } from '@phosphor/disposable'; +import { DisposableSet, IDisposable } from '@lumino/disposable'; -import { IMessageHandler, Message, MessageLoop } from '@phosphor/messaging'; +import { IMessageHandler, Message, MessageLoop } from '@lumino/messaging'; -import { AttachedProperty } from '@phosphor/properties'; +import { AttachedProperty } from '@lumino/properties'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { Time } from '@jupyterlab/coreutils'; diff --git a/packages/docregistry/package.json b/packages/docregistry/package.json index 58e457d9d9b6..b40cd9a35126 100644 --- a/packages/docregistry/package.json +++ b/packages/docregistry/package.json @@ -43,12 +43,12 @@ "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/rendermime-interfaces": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/docregistry/src/context.ts b/packages/docregistry/src/context.ts index dd59a5c66cc2..0817354a0993 100644 --- a/packages/docregistry/src/context.ts +++ b/packages/docregistry/src/context.ts @@ -7,13 +7,13 @@ import { ServerConnection } from '@jupyterlab/services'; -import { JSONValue, PromiseDelegate } from '@phosphor/coreutils'; +import { JSONValue, PromiseDelegate } from '@lumino/coreutils'; -import { IDisposable, DisposableDelegate } from '@phosphor/disposable'; +import { IDisposable, DisposableDelegate } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { showDialog, diff --git a/packages/docregistry/src/default.ts b/packages/docregistry/src/default.ts index fcb9cc3718a1..a3f1f2273403 100644 --- a/packages/docregistry/src/default.ts +++ b/packages/docregistry/src/default.ts @@ -5,11 +5,11 @@ import { Mode } from '@jupyterlab/codemirror'; import { Contents } from '@jupyterlab/services'; -import { JSONValue } from '@phosphor/coreutils'; +import { JSONValue } from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { MainAreaWidget } from '@jupyterlab/apputils'; diff --git a/packages/docregistry/src/mimedocument.ts b/packages/docregistry/src/mimedocument.ts index 7b6c097270e1..600255cfd71d 100644 --- a/packages/docregistry/src/mimedocument.ts +++ b/packages/docregistry/src/mimedocument.ts @@ -11,11 +11,11 @@ import { MimeModel } from '@jupyterlab/rendermime'; -import { JSONObject, PromiseDelegate, JSONExt } from '@phosphor/coreutils'; +import { JSONObject, PromiseDelegate, JSONExt } from '@lumino/coreutils'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { StackedLayout, Widget } from '@phosphor/widgets'; +import { StackedLayout, Widget } from '@lumino/widgets'; import { ABCWidgetFactory, DocumentWidget } from './default'; diff --git a/packages/docregistry/src/registry.ts b/packages/docregistry/src/registry.ts index e18bca497806..845c067c192c 100644 --- a/packages/docregistry/src/registry.ts +++ b/packages/docregistry/src/registry.ts @@ -11,15 +11,15 @@ import { empty, find, map -} from '@phosphor/algorithm'; +} from '@lumino/algorithm'; -import { JSONValue } from '@phosphor/coreutils'; +import { JSONValue } from '@lumino/coreutils'; -import { IDisposable, DisposableDelegate } from '@phosphor/disposable'; +import { IDisposable, DisposableDelegate } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { DockLayout, Widget } from '@phosphor/widgets'; +import { DockLayout, Widget } from '@lumino/widgets'; import { IClientSession, Toolbar } from '@jupyterlab/apputils'; diff --git a/packages/docregistry/style/index.css b/packages/docregistry/style/index.css index 546e18daa8a5..a0544f8765dc 100644 --- a/packages/docregistry/style/index.css +++ b/packages/docregistry/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('./base.css'); diff --git a/packages/documentsearch-extension/package.json b/packages/documentsearch-extension/package.json index 5a77f784c71b..cba56690a86d 100644 --- a/packages/documentsearch-extension/package.json +++ b/packages/documentsearch-extension/package.json @@ -37,7 +37,7 @@ "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/documentsearch": "^2.0.0-alpha.1", "@jupyterlab/mainmenu": "^2.0.0-alpha.1", - "@phosphor/widgets": "^1.9.0" + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/documentsearch-extension/src/index.ts b/packages/documentsearch-extension/src/index.ts index 3655cce2f5b2..69a287dd9250 100644 --- a/packages/documentsearch-extension/src/index.ts +++ b/packages/documentsearch-extension/src/index.ts @@ -18,7 +18,7 @@ import { } from '@jupyterlab/documentsearch'; import { IMainMenu } from '@jupyterlab/mainmenu'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; const SEARCHABLE_CLASS = 'jp-mod-searchable'; diff --git a/packages/documentsearch/package.json b/packages/documentsearch/package.json index dafae53fd9cd..4bc22d8381ee 100644 --- a/packages/documentsearch/package.json +++ b/packages/documentsearch/package.json @@ -39,10 +39,10 @@ "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/fileeditor": "^2.0.0-alpha.1", "@jupyterlab/notebook": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "codemirror": "~5.47.0", "react": "~16.8.4" }, diff --git a/packages/documentsearch/src/interfaces.ts b/packages/documentsearch/src/interfaces.ts index e79efa7a5bf6..b09d652a839c 100644 --- a/packages/documentsearch/src/interfaces.ts +++ b/packages/documentsearch/src/interfaces.ts @@ -1,8 +1,8 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { ISignal } from '@phosphor/signaling'; -import { Widget } from '@phosphor/widgets'; +import { ISignal } from '@lumino/signaling'; +import { Widget } from '@lumino/widgets'; export interface IDisplayState { /** diff --git a/packages/documentsearch/src/providers/codemirrorsearchprovider.ts b/packages/documentsearch/src/providers/codemirrorsearchprovider.ts index 45331da41459..04fcfab19e52 100644 --- a/packages/documentsearch/src/providers/codemirrorsearchprovider.ts +++ b/packages/documentsearch/src/providers/codemirrorsearchprovider.ts @@ -39,8 +39,8 @@ import { FileEditor } from '@jupyterlab/fileeditor'; import * as CodeMirror from 'codemirror'; -import { ISignal, Signal } from '@phosphor/signaling'; -import { Widget } from '@phosphor/widgets'; +import { ISignal, Signal } from '@lumino/signaling'; +import { Widget } from '@lumino/widgets'; // The type for which canSearchFor returns true export type CMMainAreaWidget = MainAreaWidget & { diff --git a/packages/documentsearch/src/providers/notebooksearchprovider.ts b/packages/documentsearch/src/providers/notebooksearchprovider.ts index ab7abb59a310..c59e7229d0aa 100644 --- a/packages/documentsearch/src/providers/notebooksearchprovider.ts +++ b/packages/documentsearch/src/providers/notebooksearchprovider.ts @@ -7,8 +7,8 @@ import { NotebookPanel } from '@jupyterlab/notebook'; import { CodeMirrorEditor } from '@jupyterlab/codemirror'; import { Cell, MarkdownCell } from '@jupyterlab/cells'; -import { Signal, ISignal } from '@phosphor/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Signal, ISignal } from '@lumino/signaling'; +import { Widget } from '@lumino/widgets'; import CodeMirror from 'codemirror'; diff --git a/packages/documentsearch/src/searchinstance.ts b/packages/documentsearch/src/searchinstance.ts index 009291a5c61b..47e9ecc4bf02 100644 --- a/packages/documentsearch/src/searchinstance.ts +++ b/packages/documentsearch/src/searchinstance.ts @@ -5,9 +5,9 @@ import { IDisplayState, ISearchProvider } from './interfaces'; import { createSearchOverlay } from './searchoverlay'; import { MainAreaWidget } from '@jupyterlab/apputils'; -import { IDisposable } from '@phosphor/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; -import { Widget } from '@phosphor/widgets'; +import { IDisposable } from '@lumino/disposable'; +import { ISignal, Signal } from '@lumino/signaling'; +import { Widget } from '@lumino/widgets'; /** * Represents a search on a single widget. diff --git a/packages/documentsearch/src/searchoverlay.tsx b/packages/documentsearch/src/searchoverlay.tsx index 50e509e7a453..6f8e5ce75e7d 100644 --- a/packages/documentsearch/src/searchoverlay.tsx +++ b/packages/documentsearch/src/searchoverlay.tsx @@ -5,8 +5,8 @@ import { SearchInstance } from './searchinstance'; import { ReactWidget, UseSignal } from '@jupyterlab/apputils'; import { Debouncer } from '@jupyterlab/coreutils'; -import { Signal } from '@phosphor/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Signal } from '@lumino/signaling'; +import { Widget } from '@lumino/widgets'; import * as React from 'react'; const OVERLAY_CLASS = 'jp-DocumentSearch-overlay'; diff --git a/packages/documentsearch/src/searchproviderregistry.ts b/packages/documentsearch/src/searchproviderregistry.ts index 122ec461ed90..73a3bb4887db 100644 --- a/packages/documentsearch/src/searchproviderregistry.ts +++ b/packages/documentsearch/src/searchproviderregistry.ts @@ -4,9 +4,9 @@ import { ISearchProvider, ISearchProviderConstructor } from './interfaces'; import { ISearchProviderRegistry } from './tokens'; -import { IDisposable, DisposableDelegate } from '@phosphor/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; -import { Widget } from '@phosphor/widgets'; +import { IDisposable, DisposableDelegate } from '@lumino/disposable'; +import { ISignal, Signal } from '@lumino/signaling'; +import { Widget } from '@lumino/widgets'; export class SearchProviderRegistry implements ISearchProviderRegistry { /** diff --git a/packages/documentsearch/src/tokens.ts b/packages/documentsearch/src/tokens.ts index 6c386e9febdd..6a0c9904d5b1 100644 --- a/packages/documentsearch/src/tokens.ts +++ b/packages/documentsearch/src/tokens.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Token } from '@phosphor/coreutils'; -import { IDisposable } from '@phosphor/disposable'; -import { ISignal } from '@phosphor/signaling'; +import { Token } from '@lumino/coreutils'; +import { IDisposable } from '@lumino/disposable'; +import { ISignal } from '@lumino/signaling'; import { ISearchProvider, ISearchProviderConstructor } from './interfaces'; diff --git a/packages/documentsearch/style/index.css b/packages/documentsearch/style/index.css index 1ec8e44faf92..589bf07253e5 100644 --- a/packages/documentsearch/style/index.css +++ b/packages/documentsearch/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~codemirror/lib/codemirror.css'); diff --git a/packages/extensionmanager/package.json b/packages/extensionmanager/package.json index b8868f5b8cb7..0673e4d5a492 100644 --- a/packages/extensionmanager/package.json +++ b/packages/extensionmanager/package.json @@ -38,7 +38,7 @@ "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/messaging": "^1.3.0", + "@lumino/messaging": "^1.3.0", "react": "~16.8.4", "react-paginate": "^6.3.0", "semver": "^6.1.0" diff --git a/packages/extensionmanager/src/widget.tsx b/packages/extensionmanager/src/widget.tsx index d38ef5dc22a5..f15b3056face 100644 --- a/packages/extensionmanager/src/widget.tsx +++ b/packages/extensionmanager/src/widget.tsx @@ -5,7 +5,7 @@ import { VDomRenderer, ToolbarButtonComponent } from '@jupyterlab/apputils'; import { ServiceManager } from '@jupyterlab/services'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; import { Button, InputGroup, Collapse } from '@jupyterlab/ui-components'; diff --git a/packages/filebrowser-extension/package.json b/packages/filebrowser-extension/package.json index a94e99cdb91d..5c6942b302d3 100644 --- a/packages/filebrowser-extension/package.json +++ b/packages/filebrowser-extension/package.json @@ -46,10 +46,10 @@ "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/filebrowser-extension/src/index.ts b/packages/filebrowser-extension/src/index.ts index 398d01d1f265..8204eb906d1f 100644 --- a/packages/filebrowser-extension/src/index.ts +++ b/packages/filebrowser-extension/src/index.ts @@ -45,13 +45,13 @@ import { IStatusBar } from '@jupyterlab/statusbar'; import { IIconRegistry } from '@jupyterlab/ui-components'; -import { IIterator, map, reduce, toArray } from '@phosphor/algorithm'; +import { IIterator, map, reduce, toArray } from '@lumino/algorithm'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; /** * The command IDs used by the file browser plugin. @@ -651,7 +651,7 @@ function addCommands( const { model: { path } } = browser; - commands.execute('docmanager:new-untitled', { + void commands.execute('docmanager:new-untitled', { path, type: 'file', ext: 'txt' @@ -666,7 +666,7 @@ function addCommands( const { model: { path } } = browser; - commands.execute('docmanager:new-untitled', { + void commands.execute('docmanager:new-untitled', { path, type: 'file', ext: 'md' diff --git a/packages/filebrowser/package.json b/packages/filebrowser/package.json index 09aaadba8128..5110984070a8 100644 --- a/packages/filebrowser/package.json +++ b/packages/filebrowser/package.json @@ -42,14 +42,14 @@ "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/domutils": "^1.1.3", - "@phosphor/dragdrop": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/domutils": "^1.1.3", + "@lumino/dragdrop": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4" }, "devDependencies": { diff --git a/packages/filebrowser/src/browser.ts b/packages/filebrowser/src/browser.ts index 0b1c06fd9644..c40c4facd8dd 100644 --- a/packages/filebrowser/src/browser.ts +++ b/packages/filebrowser/src/browser.ts @@ -7,9 +7,9 @@ import { IDocumentManager } from '@jupyterlab/docmanager'; import { Contents, ServerConnection } from '@jupyterlab/services'; -import { IIterator } from '@phosphor/algorithm'; +import { IIterator } from '@lumino/algorithm'; -import { PanelLayout, Widget } from '@phosphor/widgets'; +import { PanelLayout, Widget } from '@lumino/widgets'; import { BreadCrumbs } from './crumbs'; diff --git a/packages/filebrowser/src/crumbs.ts b/packages/filebrowser/src/crumbs.ts index 7aa2989c45d1..96851c48b5d2 100644 --- a/packages/filebrowser/src/crumbs.ts +++ b/packages/filebrowser/src/crumbs.ts @@ -1,15 +1,15 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { ArrayExt } from '@phosphor/algorithm'; +import { ArrayExt } from '@lumino/algorithm'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { IDragEvent } from '@phosphor/dragdrop'; +import { IDragEvent } from '@lumino/dragdrop'; -import { ElementExt } from '@phosphor/domutils'; +import { ElementExt } from '@lumino/domutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { DOMUtils, showErrorMessage } from '@jupyterlab/apputils'; diff --git a/packages/filebrowser/src/listing.ts b/packages/filebrowser/src/listing.ts index cc2fd02f0e09..f2184e0edb88 100644 --- a/packages/filebrowser/src/listing.ts +++ b/packages/filebrowser/src/listing.ts @@ -31,19 +31,19 @@ import { IIterator, map, toArray -} from '@phosphor/algorithm'; +} from '@lumino/algorithm'; -import { MimeData, PromiseDelegate } from '@phosphor/coreutils'; +import { MimeData, PromiseDelegate } from '@lumino/coreutils'; -import { ElementExt } from '@phosphor/domutils'; +import { ElementExt } from '@lumino/domutils'; -import { Drag, IDragEvent } from '@phosphor/dragdrop'; +import { Drag, IDragEvent } from '@lumino/dragdrop'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { FileBrowserModel } from './model'; diff --git a/packages/filebrowser/src/model.ts b/packages/filebrowser/src/model.ts index 78fd2621bf63..faa7c799120e 100644 --- a/packages/filebrowser/src/model.ts +++ b/packages/filebrowser/src/model.ts @@ -25,13 +25,13 @@ import { IterableOrArrayLike, ArrayExt, filter -} from '@phosphor/algorithm'; +} from '@lumino/algorithm'; -import { PromiseDelegate, ReadonlyJSONObject } from '@phosphor/coreutils'; +import { PromiseDelegate, ReadonlyJSONObject } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; /** * The default duration of the auto-refresh in ms diff --git a/packages/filebrowser/src/opendialog.ts b/packages/filebrowser/src/opendialog.ts index 3c777fc3445b..b0a6a03ed75e 100644 --- a/packages/filebrowser/src/opendialog.ts +++ b/packages/filebrowser/src/opendialog.ts @@ -1,8 +1,8 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { toArray } from '@phosphor/algorithm'; -import { PanelLayout, Widget } from '@phosphor/widgets'; +import { toArray } from '@lumino/algorithm'; +import { PanelLayout, Widget } from '@lumino/widgets'; import { PathExt } from '@jupyterlab/coreutils'; import { Dialog } from '@jupyterlab/apputils'; diff --git a/packages/filebrowser/src/tokens.ts b/packages/filebrowser/src/tokens.ts index 7cd08ff9cf40..94daab96c4a0 100644 --- a/packages/filebrowser/src/tokens.ts +++ b/packages/filebrowser/src/tokens.ts @@ -5,7 +5,7 @@ import { WidgetTracker } from '@jupyterlab/apputils'; import { IStateDB } from '@jupyterlab/coreutils'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; import { FileBrowser } from './browser'; diff --git a/packages/filebrowser/src/uploadstatus.tsx b/packages/filebrowser/src/uploadstatus.tsx index 9255b0e9d1c8..43c26d3b6578 100644 --- a/packages/filebrowser/src/uploadstatus.tsx +++ b/packages/filebrowser/src/uploadstatus.tsx @@ -8,7 +8,7 @@ import { IChangedArgs } from '@jupyterlab/coreutils'; import { GroupItem, ProgressBar, TextItem } from '@jupyterlab/statusbar'; -import { ArrayExt } from '@phosphor/algorithm'; +import { ArrayExt } from '@lumino/algorithm'; import { IUploadModel, FileBrowserModel, FileBrowser } from '.'; diff --git a/packages/filebrowser/style/index.css b/packages/filebrowser/style/index.css index edbcab7a21dd..e39296467136 100644 --- a/packages/filebrowser/style/index.css +++ b/packages/filebrowser/style/index.css @@ -4,10 +4,10 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/ui-components/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); -@import url('~@phosphor/dragdrop/style/index.css'); +@import url('~@lumino/dragdrop/style/index.css'); @import url('~@jupyterlab/docregistry/style/index.css'); @import url('~@jupyterlab/docmanager/style/index.css'); diff --git a/packages/fileeditor-extension/package.json b/packages/fileeditor-extension/package.json index 9d58d89cf1e9..5e20f0ac6855 100644 --- a/packages/fileeditor-extension/package.json +++ b/packages/fileeditor-extension/package.json @@ -47,9 +47,9 @@ "@jupyterlab/launcher": "^2.0.0-alpha.1", "@jupyterlab/mainmenu": "^2.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/widgets": "^1.9.0" + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/fileeditor-extension/src/commands.ts b/packages/fileeditor-extension/src/commands.ts index fdd9562a18f9..3152dfc9f3db 100644 --- a/packages/fileeditor-extension/src/commands.ts +++ b/packages/fileeditor-extension/src/commands.ts @@ -31,11 +31,11 @@ import { IViewMenu } from '@jupyterlab/mainmenu'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { JSONObject, ReadonlyJSONObject } from '@phosphor/coreutils'; +import { JSONObject, ReadonlyJSONObject } from '@lumino/coreutils'; -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; /** * The command IDs used by the fileeditor plugin. diff --git a/packages/fileeditor-extension/src/index.ts b/packages/fileeditor-extension/src/index.ts index 7c0d15c51ec1..87b9aed0b7ad 100644 --- a/packages/fileeditor-extension/src/index.ts +++ b/packages/fileeditor-extension/src/index.ts @@ -32,9 +32,9 @@ import { IMainMenu } from '@jupyterlab/mainmenu'; import { IStatusBar } from '@jupyterlab/statusbar'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; import { Commands, EDITOR_ICON_CLASS, FACTORY } from './commands'; diff --git a/packages/fileeditor/package.json b/packages/fileeditor/package.json index cf5c6c9de70b..a519a31b0686 100644 --- a/packages/fileeditor/package.json +++ b/packages/fileeditor/package.json @@ -39,9 +39,9 @@ "@jupyterlab/codeeditor": "^2.0.0-alpha.1", "@jupyterlab/docregistry": "^2.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4" }, "devDependencies": { diff --git a/packages/fileeditor/src/tabspacestatus.tsx b/packages/fileeditor/src/tabspacestatus.tsx index f4a6419e2e36..249ba7765aea 100644 --- a/packages/fileeditor/src/tabspacestatus.tsx +++ b/packages/fileeditor/src/tabspacestatus.tsx @@ -15,7 +15,7 @@ import { TextItem } from '@jupyterlab/statusbar'; -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; /** * A namespace for TabSpaceComponent statics. diff --git a/packages/fileeditor/src/tokens.ts b/packages/fileeditor/src/tokens.ts index 47763cae2115..ab924c94ee64 100644 --- a/packages/fileeditor/src/tokens.ts +++ b/packages/fileeditor/src/tokens.ts @@ -5,7 +5,7 @@ import { IWidgetTracker } from '@jupyterlab/apputils'; import { IDocumentWidget } from '@jupyterlab/docregistry'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; import { FileEditor } from './widget'; diff --git a/packages/fileeditor/src/widget.ts b/packages/fileeditor/src/widget.ts index 84a7de4c9069..c6b4a25662dd 100644 --- a/packages/fileeditor/src/widget.ts +++ b/packages/fileeditor/src/widget.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { StackedLayout, Widget } from '@phosphor/widgets'; +import { StackedLayout, Widget } from '@lumino/widgets'; import { ABCWidgetFactory, @@ -17,9 +17,9 @@ import { CodeEditorWrapper } from '@jupyterlab/codeeditor'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; /** * The data attribute added to a widget that can run code. diff --git a/packages/fileeditor/style/index.css b/packages/fileeditor/style/index.css index bbef4d14e750..44ff11ffcf90 100644 --- a/packages/fileeditor/style/index.css +++ b/packages/fileeditor/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/codeeditor/style/index.css'); @import url('~@jupyterlab/docregistry/style/index.css'); diff --git a/packages/help-extension/package.json b/packages/help-extension/package.json index 9fe5069b2547..a2d93ebe50b3 100644 --- a/packages/help-extension/package.json +++ b/packages/help-extension/package.json @@ -42,7 +42,7 @@ "@jupyterlab/inspector": "^2.0.0-alpha.1", "@jupyterlab/mainmenu": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/widgets": "^1.9.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4" }, "devDependencies": { diff --git a/packages/help-extension/src/index.tsx b/packages/help-extension/src/index.tsx index 3c5c6a630fc8..d025130e7e40 100644 --- a/packages/help-extension/src/index.tsx +++ b/packages/help-extension/src/index.tsx @@ -24,7 +24,7 @@ import { IMainMenu } from '@jupyterlab/mainmenu'; import { KernelMessage } from '@jupyterlab/services'; -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; import * as React from 'react'; diff --git a/packages/help-extension/style/index.css b/packages/help-extension/style/index.css index c065903f0e3f..bf014bab6161 100644 --- a/packages/help-extension/style/index.css +++ b/packages/help-extension/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/inspector/style/index.css'); @import url('~@jupyterlab/mainmenu/style/index.css'); diff --git a/packages/htmlviewer/package.json b/packages/htmlviewer/package.json index 13625109bab9..47c6579b031b 100644 --- a/packages/htmlviewer/package.json +++ b/packages/htmlviewer/package.json @@ -35,8 +35,8 @@ "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/docregistry": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/signaling": "^1.3.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/signaling": "^1.3.0", "react": "~16.8.4" }, "devDependencies": { diff --git a/packages/htmlviewer/src/index.tsx b/packages/htmlviewer/src/index.tsx index 6f18e6b772ff..55d21eeab630 100644 --- a/packages/htmlviewer/src/index.tsx +++ b/packages/htmlviewer/src/index.tsx @@ -21,9 +21,9 @@ import { IDocumentWidget } from '@jupyterlab/docregistry'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import * as React from 'react'; diff --git a/packages/imageviewer/package.json b/packages/imageviewer/package.json index 9ec622d56b26..7edf0319c9a8 100644 --- a/packages/imageviewer/package.json +++ b/packages/imageviewer/package.json @@ -38,9 +38,9 @@ "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/docregistry": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/imageviewer/src/tokens.ts b/packages/imageviewer/src/tokens.ts index 45b069f5d063..81b216ba006f 100644 --- a/packages/imageviewer/src/tokens.ts +++ b/packages/imageviewer/src/tokens.ts @@ -5,7 +5,7 @@ import { IWidgetTracker } from '@jupyterlab/apputils'; import { IDocumentWidget } from '@jupyterlab/docregistry'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; import { ImageViewer } from './widget'; diff --git a/packages/imageviewer/src/widget.ts b/packages/imageviewer/src/widget.ts index d54080dbf257..ed59794b019f 100644 --- a/packages/imageviewer/src/widget.ts +++ b/packages/imageviewer/src/widget.ts @@ -12,11 +12,11 @@ import { DocumentWidget } from '@jupyterlab/docregistry'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * The class name added to a imageviewer. diff --git a/packages/imageviewer/style/index.css b/packages/imageviewer/style/index.css index a9b584044e11..a634b5e5550b 100644 --- a/packages/imageviewer/style/index.css +++ b/packages/imageviewer/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/docregistry/style/index.css'); diff --git a/packages/inspector/package.json b/packages/inspector/package.json index 4a5e8b1c3004..a65d5d779aa5 100644 --- a/packages/inspector/package.json +++ b/packages/inspector/package.json @@ -40,10 +40,10 @@ "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/inspector/src/handler.ts b/packages/inspector/src/handler.ts index e3c91aecd77b..03301f680670 100644 --- a/packages/inspector/src/handler.ts +++ b/packages/inspector/src/handler.ts @@ -7,11 +7,11 @@ import { IDataConnector, Text, Debouncer } from '@jupyterlab/coreutils'; import { MimeModel, IRenderMimeRegistry } from '@jupyterlab/rendermime'; -import { ReadonlyJSONObject } from '@phosphor/coreutils'; +import { ReadonlyJSONObject } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { IInspector } from './tokens'; diff --git a/packages/inspector/src/inspector.ts b/packages/inspector/src/inspector.ts index 90a8629ba87e..4385f5c47492 100644 --- a/packages/inspector/src/inspector.ts +++ b/packages/inspector/src/inspector.ts @@ -3,7 +3,7 @@ import { Printing } from '@jupyterlab/apputils'; -import { Panel, PanelLayout, Widget } from '@phosphor/widgets'; +import { Panel, PanelLayout, Widget } from '@lumino/widgets'; import { IInspector } from './tokens'; diff --git a/packages/inspector/src/tokens.ts b/packages/inspector/src/tokens.ts index fe77a226762b..a5ae2f354b74 100644 --- a/packages/inspector/src/tokens.ts +++ b/packages/inspector/src/tokens.ts @@ -1,11 +1,11 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /* tslint:disable */ /** diff --git a/packages/inspector/style/index.css b/packages/inspector/style/index.css index 633cb093efac..eb7f17bbda79 100644 --- a/packages/inspector/style/index.css +++ b/packages/inspector/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/codeeditor/style/index.css'); @import url('~@jupyterlab/rendermime/style/index.css'); diff --git a/packages/json-extension/package.json b/packages/json-extension/package.json index a11b79b204ac..e291ae8c2d9b 100644 --- a/packages/json-extension/package.json +++ b/packages/json-extension/package.json @@ -37,9 +37,9 @@ "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/rendermime-interfaces": "^2.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4", "react-dom": "~16.8.4", "react-highlighter": "^0.4.0", diff --git a/packages/json-extension/src/component.tsx b/packages/json-extension/src/component.tsx index 9c7e68c92f56..68390d1e3ff4 100644 --- a/packages/json-extension/src/component.tsx +++ b/packages/json-extension/src/component.tsx @@ -7,7 +7,7 @@ import Highlight from 'react-highlighter'; import JSONTree from 'react-json-tree'; -import { JSONArray, JSONObject, JSONValue } from '@phosphor/coreutils'; +import { JSONArray, JSONObject, JSONValue } from '@lumino/coreutils'; import { InputGroup } from '@jupyterlab/ui-components'; diff --git a/packages/json-extension/src/index.tsx b/packages/json-extension/src/index.tsx index e9a32d4608fc..ac5a475447b8 100644 --- a/packages/json-extension/src/index.tsx +++ b/packages/json-extension/src/index.tsx @@ -5,9 +5,9 @@ import { IRenderMime } from '@jupyterlab/rendermime-interfaces'; import { Printing } from '@jupyterlab/apputils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import * as React from 'react'; diff --git a/packages/json-extension/style/index.css b/packages/json-extension/style/index.css index bacc5f067317..4f80f4f9b81e 100644 --- a/packages/json-extension/style/index.css +++ b/packages/json-extension/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/ui-components/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); diff --git a/packages/launcher-extension/package.json b/packages/launcher-extension/package.json index c49e50256dad..3544a9387464 100644 --- a/packages/launcher-extension/package.json +++ b/packages/launcher-extension/package.json @@ -39,9 +39,9 @@ "@jupyterlab/application": "^2.0.0-alpha.1", "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/launcher": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/launcher-extension/src/index.ts b/packages/launcher-extension/src/index.ts index e4db8f7d82b9..75fd590d6930 100644 --- a/packages/launcher-extension/src/index.ts +++ b/packages/launcher-extension/src/index.ts @@ -11,11 +11,11 @@ import { ICommandPalette, MainAreaWidget } from '@jupyterlab/apputils'; import { ILauncher, LauncherModel, Launcher } from '@jupyterlab/launcher'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * The command IDs used by the launcher plugin. diff --git a/packages/launcher/package.json b/packages/launcher/package.json index 2b89a091e357..4ea79e6881c2 100644 --- a/packages/launcher/package.json +++ b/packages/launcher/package.json @@ -37,12 +37,12 @@ "dependencies": { "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/properties": "^1.1.3", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/properties": "^1.1.3", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4" }, "devDependencies": { diff --git a/packages/launcher/src/index.tsx b/packages/launcher/src/index.tsx index 0e0f2abb029c..d201fcf00795 100644 --- a/packages/launcher/src/index.tsx +++ b/packages/launcher/src/index.tsx @@ -20,17 +20,17 @@ import { map, each, toArray -} from '@phosphor/algorithm'; +} from '@lumino/algorithm'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Token, ReadonlyJSONObject } from '@phosphor/coreutils'; +import { Token, ReadonlyJSONObject } from '@lumino/coreutils'; -import { DisposableDelegate, IDisposable } from '@phosphor/disposable'; +import { DisposableDelegate, IDisposable } from '@lumino/disposable'; -import { AttachedProperty } from '@phosphor/properties'; +import { AttachedProperty } from '@lumino/properties'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import * as React from 'react'; diff --git a/packages/launcher/style/index.css b/packages/launcher/style/index.css index bacc5f067317..4f80f4f9b81e 100644 --- a/packages/launcher/style/index.css +++ b/packages/launcher/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/ui-components/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); diff --git a/packages/logconsole-extension/package.json b/packages/logconsole-extension/package.json index 91aa4cb261c1..760f14457268 100644 --- a/packages/logconsole-extension/package.json +++ b/packages/logconsole-extension/package.json @@ -43,9 +43,9 @@ "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4" }, "devDependencies": { diff --git a/packages/logconsole-extension/src/index.tsx b/packages/logconsole-extension/src/index.tsx index 73d35cd566c9..bc1bcc0648d5 100644 --- a/packages/logconsole-extension/src/index.tsx +++ b/packages/logconsole-extension/src/index.tsx @@ -35,9 +35,9 @@ import { IStatusBar } from '@jupyterlab/statusbar'; import { HTMLSelect } from '@jupyterlab/ui-components'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { DockLayout, Widget } from '@phosphor/widgets'; +import { DockLayout, Widget } from '@lumino/widgets'; import * as React from 'react'; diff --git a/packages/logconsole-extension/src/status.tsx b/packages/logconsole-extension/src/status.tsx index b51b8c1dd8bf..a052077b5b18 100644 --- a/packages/logconsole-extension/src/status.tsx +++ b/packages/logconsole-extension/src/status.tsx @@ -13,7 +13,7 @@ import { GroupItem, TextItem, interactiveItem } from '@jupyterlab/statusbar'; import { DefaultIconReact } from '@jupyterlab/ui-components'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; import React from 'react'; diff --git a/packages/logconsole-extension/style/index.css b/packages/logconsole-extension/style/index.css index 9524ff42cade..69d604200dc9 100644 --- a/packages/logconsole-extension/style/index.css +++ b/packages/logconsole-extension/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/ui-components/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/statusbar/style/index.css'); diff --git a/packages/logconsole/package.json b/packages/logconsole/package.json index 474f248c6402..44c57f733af8 100644 --- a/packages/logconsole/package.json +++ b/packages/logconsole/package.json @@ -36,11 +36,11 @@ "@jupyterlab/outputarea": "^2.0.0-alpha.1", "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/logconsole/src/logger.ts b/packages/logconsole/src/logger.ts index d6ea1c3f80e6..341c12c92c10 100644 --- a/packages/logconsole/src/logger.ts +++ b/packages/logconsole/src/logger.ts @@ -11,7 +11,7 @@ import { OutputModel } from '@jupyterlab/rendermime'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { ILogger, diff --git a/packages/logconsole/src/registry.ts b/packages/logconsole/src/registry.ts index 341e4f8a723e..db4acc3663b3 100644 --- a/packages/logconsole/src/registry.ts +++ b/packages/logconsole/src/registry.ts @@ -3,7 +3,7 @@ import { IRenderMimeRegistry } from '@jupyterlab/rendermime'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { Logger } from './logger'; diff --git a/packages/logconsole/src/tokens.ts b/packages/logconsole/src/tokens.ts index 99a11a5b7d9d..3fd5f33536d0 100644 --- a/packages/logconsole/src/tokens.ts +++ b/packages/logconsole/src/tokens.ts @@ -7,10 +7,10 @@ import { IRenderMimeRegistry } from '@jupyterlab/rendermime'; import { IOutputAreaModel } from '@jupyterlab/outputarea'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { ISignal } from '@phosphor/signaling'; -import { IDisposable } from '@phosphor/disposable'; +import { ISignal } from '@lumino/signaling'; +import { IDisposable } from '@lumino/disposable'; /* tslint:disable */ /** diff --git a/packages/logconsole/src/widget.ts b/packages/logconsole/src/widget.ts index ecfaba92f705..f8df08be0568 100644 --- a/packages/logconsole/src/widget.ts +++ b/packages/logconsole/src/widget.ts @@ -9,11 +9,11 @@ import { IRenderMimeRegistry } from '@jupyterlab/rendermime'; import { Kernel, KernelMessage } from '@jupyterlab/services'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget, Panel, PanelLayout, StackedPanel } from '@phosphor/widgets'; +import { Widget, Panel, PanelLayout, StackedPanel } from '@lumino/widgets'; import { LogOutputModel, LoggerOutputAreaModel } from './logger'; diff --git a/packages/logconsole/style/index.css b/packages/logconsole/style/index.css index 56b230cd2ffb..ee78600639b5 100644 --- a/packages/logconsole/style/index.css +++ b/packages/logconsole/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/rendermime/style/index.css'); @import url('~@jupyterlab/outputarea/style/index.css'); diff --git a/packages/mainmenu-extension/package.json b/packages/mainmenu-extension/package.json index 89ad0cbe681d..f85c7ecaf905 100644 --- a/packages/mainmenu-extension/package.json +++ b/packages/mainmenu-extension/package.json @@ -41,9 +41,9 @@ "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/mainmenu": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/disposable": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/disposable": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/mainmenu-extension/src/index.ts b/packages/mainmenu-extension/src/index.ts index 43946b8c6cc3..41e1f23b25a5 100644 --- a/packages/mainmenu-extension/src/index.ts +++ b/packages/mainmenu-extension/src/index.ts @@ -1,11 +1,11 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { each, find } from '@phosphor/algorithm'; +import { each, find } from '@lumino/algorithm'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { Menu, Widget } from '@phosphor/widgets'; +import { Menu, Widget } from '@lumino/widgets'; import { ILabShell, diff --git a/packages/mainmenu/package.json b/packages/mainmenu/package.json index 8954a03dd170..da7bcbc5c340 100644 --- a/packages/mainmenu/package.json +++ b/packages/mainmenu/package.json @@ -37,11 +37,11 @@ "dependencies": { "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/mainmenu/src/edit.ts b/packages/mainmenu/src/edit.ts index c8013a32f05a..435ce9ad1b6a 100644 --- a/packages/mainmenu/src/edit.ts +++ b/packages/mainmenu/src/edit.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Menu, Widget } from '@phosphor/widgets'; +import { Menu, Widget } from '@lumino/widgets'; import { IJupyterLabMenu, IMenuExtender, JupyterLabMenu } from './labmenu'; diff --git a/packages/mainmenu/src/file.ts b/packages/mainmenu/src/file.ts index 29ceeadcf26b..ae4933a919a7 100644 --- a/packages/mainmenu/src/file.ts +++ b/packages/mainmenu/src/file.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Menu, Widget } from '@phosphor/widgets'; +import { Menu, Widget } from '@lumino/widgets'; import { IJupyterLabMenu, IMenuExtender, JupyterLabMenu } from './labmenu'; diff --git a/packages/mainmenu/src/help.ts b/packages/mainmenu/src/help.ts index a4ec7e775ace..a9098dc32791 100644 --- a/packages/mainmenu/src/help.ts +++ b/packages/mainmenu/src/help.ts @@ -3,7 +3,7 @@ import { Kernel } from '@jupyterlab/services'; -import { Menu, Widget } from '@phosphor/widgets'; +import { Menu, Widget } from '@lumino/widgets'; import { IJupyterLabMenu, IMenuExtender, JupyterLabMenu } from './labmenu'; diff --git a/packages/mainmenu/src/kernel.ts b/packages/mainmenu/src/kernel.ts index b38df7fa8fdc..84158ea33bf2 100644 --- a/packages/mainmenu/src/kernel.ts +++ b/packages/mainmenu/src/kernel.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Menu, Widget } from '@phosphor/widgets'; +import { Menu, Widget } from '@lumino/widgets'; import { IJupyterLabMenu, JupyterLabMenu, IMenuExtender } from './labmenu'; diff --git a/packages/mainmenu/src/labmenu.ts b/packages/mainmenu/src/labmenu.ts index 45e66540cd24..c043e74a4a5d 100644 --- a/packages/mainmenu/src/labmenu.ts +++ b/packages/mainmenu/src/labmenu.ts @@ -3,11 +3,11 @@ import { IWidgetTracker } from '@jupyterlab/apputils'; -import { ArrayExt } from '@phosphor/algorithm'; +import { ArrayExt } from '@lumino/algorithm'; -import { DisposableDelegate, IDisposable } from '@phosphor/disposable'; +import { DisposableDelegate, IDisposable } from '@lumino/disposable'; -import { Menu, Widget } from '@phosphor/widgets'; +import { Menu, Widget } from '@lumino/widgets'; /** * A common interface for extensible JupyterLab application menus. diff --git a/packages/mainmenu/src/mainmenu.ts b/packages/mainmenu/src/mainmenu.ts index 187276ee5d81..c400f12ee257 100644 --- a/packages/mainmenu/src/mainmenu.ts +++ b/packages/mainmenu/src/mainmenu.ts @@ -1,11 +1,11 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { ArrayExt } from '@phosphor/algorithm'; +import { ArrayExt } from '@lumino/algorithm'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Menu, MenuBar } from '@phosphor/widgets'; +import { Menu, MenuBar } from '@lumino/widgets'; import { FileMenu } from './file'; diff --git a/packages/mainmenu/src/run.ts b/packages/mainmenu/src/run.ts index c9c4328c4a64..251ab87dc093 100644 --- a/packages/mainmenu/src/run.ts +++ b/packages/mainmenu/src/run.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Menu, Widget } from '@phosphor/widgets'; +import { Menu, Widget } from '@lumino/widgets'; import { IJupyterLabMenu, IMenuExtender, JupyterLabMenu } from './labmenu'; diff --git a/packages/mainmenu/src/settings.ts b/packages/mainmenu/src/settings.ts index 4aad1dc7dd6f..414d176f7cec 100644 --- a/packages/mainmenu/src/settings.ts +++ b/packages/mainmenu/src/settings.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; import { IJupyterLabMenu, JupyterLabMenu } from './labmenu'; diff --git a/packages/mainmenu/src/tabs.ts b/packages/mainmenu/src/tabs.ts index 6dd44f7e7031..fb34a98baacf 100644 --- a/packages/mainmenu/src/tabs.ts +++ b/packages/mainmenu/src/tabs.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; import { IJupyterLabMenu, JupyterLabMenu } from './labmenu'; diff --git a/packages/mainmenu/src/tokens.ts b/packages/mainmenu/src/tokens.ts index 110342e10b89..2ebed247e7a2 100644 --- a/packages/mainmenu/src/tokens.ts +++ b/packages/mainmenu/src/tokens.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; import { IFileMenu } from './file'; diff --git a/packages/mainmenu/src/view.ts b/packages/mainmenu/src/view.ts index d8797402d083..f0b7ca691525 100644 --- a/packages/mainmenu/src/view.ts +++ b/packages/mainmenu/src/view.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Menu, Widget } from '@phosphor/widgets'; +import { Menu, Widget } from '@lumino/widgets'; import { IJupyterLabMenu, IMenuExtender, JupyterLabMenu } from './labmenu'; diff --git a/packages/markdownviewer/package.json b/packages/markdownviewer/package.json index eb14daeafaa7..0c0126eb3ac6 100644 --- a/packages/markdownviewer/package.json +++ b/packages/markdownviewer/package.json @@ -39,9 +39,9 @@ "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/docregistry": "^2.0.0-alpha.1", "@jupyterlab/rendermime": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/markdownviewer/src/tokens.ts b/packages/markdownviewer/src/tokens.ts index 30b7432df457..6e89c9720798 100644 --- a/packages/markdownviewer/src/tokens.ts +++ b/packages/markdownviewer/src/tokens.ts @@ -3,7 +3,7 @@ import { IWidgetTracker } from '@jupyterlab/apputils'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; import { MarkdownDocument } from './widget'; diff --git a/packages/markdownviewer/src/widget.ts b/packages/markdownviewer/src/widget.ts index 1769efca4212..fd1adec008f0 100644 --- a/packages/markdownviewer/src/widget.ts +++ b/packages/markdownviewer/src/widget.ts @@ -17,13 +17,13 @@ import { MimeModel } from '@jupyterlab/rendermime'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { StackedLayout, Widget } from '@phosphor/widgets'; +import { StackedLayout, Widget } from '@lumino/widgets'; /** * The class name added to a markdown viewer. diff --git a/packages/markdownviewer/style/index.css b/packages/markdownviewer/style/index.css index 887c289db14c..ccaf12b59f82 100644 --- a/packages/markdownviewer/style/index.css +++ b/packages/markdownviewer/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/rendermime/style/index.css'); @import url('~@jupyterlab/docregistry/style/index.css'); diff --git a/packages/mathjax2/package.json b/packages/mathjax2/package.json index 817a89baed8d..0c92724bb7a4 100644 --- a/packages/mathjax2/package.json +++ b/packages/mathjax2/package.json @@ -34,7 +34,7 @@ }, "dependencies": { "@jupyterlab/rendermime-interfaces": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1" + "@lumino/coreutils": "^1.3.1" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/mathjax2/src/index.ts b/packages/mathjax2/src/index.ts index 58d2149e83ce..de19ccb1eae4 100644 --- a/packages/mathjax2/src/index.ts +++ b/packages/mathjax2/src/index.ts @@ -5,7 +5,7 @@ import { IRenderMime } from '@jupyterlab/rendermime-interfaces'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; // Stub for window MathJax. declare var MathJax: any; diff --git a/packages/notebook-extension/package.json b/packages/notebook-extension/package.json index 8bfbb77c21e0..9e8d4f09491f 100644 --- a/packages/notebook-extension/package.json +++ b/packages/notebook-extension/package.json @@ -49,12 +49,12 @@ "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/notebook-extension/src/index.ts b/packages/notebook-extension/src/index.ts index 2dc2c0bdeacc..7ec182d5c4bd 100644 --- a/packages/notebook-extension/src/index.ts +++ b/packages/notebook-extension/src/index.ts @@ -30,11 +30,11 @@ import { import { IDocumentManager } from '@jupyterlab/docmanager'; -import { ArrayExt } from '@phosphor/algorithm'; +import { ArrayExt } from '@lumino/algorithm'; -import { UUID, JSONObject } from '@phosphor/coreutils'; +import { UUID, JSONObject } from '@lumino/coreutils'; -import { DisposableSet } from '@phosphor/disposable'; +import { DisposableSet } from '@lumino/disposable'; import { IFileBrowserFactory } from '@jupyterlab/filebrowser'; @@ -70,12 +70,12 @@ import { ServiceManager } from '@jupyterlab/services'; import { IStatusBar } from '@jupyterlab/statusbar'; -import { ReadonlyJSONObject, JSONValue } from '@phosphor/coreutils'; +import { ReadonlyJSONObject, JSONValue } from '@lumino/coreutils'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { Panel, Menu } from '@phosphor/widgets'; -import { CommandRegistry } from '@phosphor/commands'; +import { Panel, Menu } from '@lumino/widgets'; +import { CommandRegistry } from '@lumino/commands'; /** * The command IDs used by the notebook plugin. diff --git a/packages/notebook/package.json b/packages/notebook/package.json index 597c04860f3e..9190f7a3bc3d 100644 --- a/packages/notebook/package.json +++ b/packages/notebook/package.json @@ -45,15 +45,15 @@ "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/domutils": "^1.1.3", - "@phosphor/dragdrop": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/properties": "^1.1.3", - "@phosphor/signaling": "^1.3.0", - "@phosphor/virtualdom": "^1.2.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/domutils": "^1.1.3", + "@lumino/dragdrop": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/properties": "^1.1.3", + "@lumino/signaling": "^1.3.0", + "@lumino/virtualdom": "^1.2.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4" }, "devDependencies": { diff --git a/packages/notebook/src/actions.tsx b/packages/notebook/src/actions.tsx index 97f70bb82291..9a27b5f63008 100644 --- a/packages/notebook/src/actions.tsx +++ b/packages/notebook/src/actions.tsx @@ -20,13 +20,13 @@ import { MarkdownCell } from '@jupyterlab/cells'; -import { ArrayExt, each, toArray } from '@phosphor/algorithm'; +import { ArrayExt, each, toArray } from '@lumino/algorithm'; -import { JSONObject, JSONExt } from '@phosphor/coreutils'; +import { JSONObject, JSONExt } from '@lumino/coreutils'; -import { ElementExt } from '@phosphor/domutils'; +import { ElementExt } from '@lumino/domutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import * as React from 'react'; diff --git a/packages/notebook/src/celllist.ts b/packages/notebook/src/celllist.ts index 72c0793040b2..d7a7d0791f49 100644 --- a/packages/notebook/src/celllist.ts +++ b/packages/notebook/src/celllist.ts @@ -8,9 +8,9 @@ import { each, toArray, ArrayIterator -} from '@phosphor/algorithm'; +} from '@lumino/algorithm'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { ICellModel } from '@jupyterlab/cells'; diff --git a/packages/notebook/src/default-toolbar.tsx b/packages/notebook/src/default-toolbar.tsx index 7435d40ded6c..2bbc11cae35b 100644 --- a/packages/notebook/src/default-toolbar.tsx +++ b/packages/notebook/src/default-toolbar.tsx @@ -5,7 +5,7 @@ import * as React from 'react'; import { DocumentRegistry } from '@jupyterlab/docregistry'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { NotebookActions } from './actions'; diff --git a/packages/notebook/src/model.ts b/packages/notebook/src/model.ts index 402067313246..710452c05f4b 100644 --- a/packages/notebook/src/model.ts +++ b/packages/notebook/src/model.ts @@ -16,7 +16,7 @@ import { import { nbformat } from '@jupyterlab/coreutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { IObservableJSON, diff --git a/packages/notebook/src/notebooktools.ts b/packages/notebook/src/notebooktools.ts index 421166e002b1..c33c47216f3d 100644 --- a/packages/notebook/src/notebooktools.ts +++ b/packages/notebook/src/notebooktools.ts @@ -1,15 +1,15 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { ArrayExt, each, chain } from '@phosphor/algorithm'; +import { ArrayExt, each, chain } from '@lumino/algorithm'; -import { JSONObject, JSONValue } from '@phosphor/coreutils'; +import { JSONObject, JSONValue } from '@lumino/coreutils'; -import { ConflatableMessage, Message, MessageLoop } from '@phosphor/messaging'; +import { ConflatableMessage, Message, MessageLoop } from '@lumino/messaging'; -import { h, VirtualDOM, VirtualNode } from '@phosphor/virtualdom'; +import { h, VirtualDOM, VirtualNode } from '@lumino/virtualdom'; -import { PanelLayout, Widget } from '@phosphor/widgets'; +import { PanelLayout, Widget } from '@lumino/widgets'; import { Collapse, Styling } from '@jupyterlab/apputils'; diff --git a/packages/notebook/src/panel.ts b/packages/notebook/src/panel.ts index 92cbad7cac87..f768bbd84a66 100644 --- a/packages/notebook/src/panel.ts +++ b/packages/notebook/src/panel.ts @@ -5,13 +5,13 @@ import { isMarkdownCellModel } from '@jupyterlab/cells'; import { Kernel, KernelMessage, Session } from '@jupyterlab/services'; -import { each } from '@phosphor/algorithm'; +import { each } from '@lumino/algorithm'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { IClientSession, diff --git a/packages/notebook/src/tokens.ts b/packages/notebook/src/tokens.ts index 1f26a0f9e5ec..46e7693fc23b 100644 --- a/packages/notebook/src/tokens.ts +++ b/packages/notebook/src/tokens.ts @@ -3,9 +3,9 @@ import { IWidgetTracker } from '@jupyterlab/apputils'; import { Cell } from '@jupyterlab/cells'; -import { Token } from '@phosphor/coreutils'; -import { ISignal } from '@phosphor/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Token } from '@lumino/coreutils'; +import { ISignal } from '@lumino/signaling'; +import { Widget } from '@lumino/widgets'; import { NotebookPanel } from './panel'; import { NotebookTools } from './notebooktools'; diff --git a/packages/notebook/src/tracker.ts b/packages/notebook/src/tracker.ts index 4197d40b6a92..b74a04e41a43 100644 --- a/packages/notebook/src/tracker.ts +++ b/packages/notebook/src/tracker.ts @@ -4,7 +4,7 @@ import { WidgetTracker } from '@jupyterlab/apputils'; import { Cell } from '@jupyterlab/cells'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { INotebookTracker } from './tokens'; import { NotebookPanel } from './panel'; diff --git a/packages/notebook/src/truststatus.tsx b/packages/notebook/src/truststatus.tsx index e6761424c35f..0de139e23253 100644 --- a/packages/notebook/src/truststatus.tsx +++ b/packages/notebook/src/truststatus.tsx @@ -8,7 +8,7 @@ import { Cell } from '@jupyterlab/cells'; import { DefaultIconReact } from '@jupyterlab/ui-components'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; /** * Determine the notebook trust status message. diff --git a/packages/notebook/src/widget.ts b/packages/notebook/src/widget.ts index d1c3e1edae5a..cde0eaca575c 100644 --- a/packages/notebook/src/widget.ts +++ b/packages/notebook/src/widget.ts @@ -1,23 +1,23 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { ArrayExt, each } from '@phosphor/algorithm'; +import { ArrayExt, each } from '@lumino/algorithm'; -import { JSONValue } from '@phosphor/coreutils'; +import { JSONValue } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { MimeData } from '@phosphor/coreutils'; +import { MimeData } from '@lumino/coreutils'; -import { AttachedProperty } from '@phosphor/properties'; +import { AttachedProperty } from '@lumino/properties'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Drag, IDragEvent } from '@phosphor/dragdrop'; +import { Drag, IDragEvent } from '@lumino/dragdrop'; -import { PanelLayout, Widget } from '@phosphor/widgets'; +import { PanelLayout, Widget } from '@lumino/widgets'; -import { h, VirtualDOM } from '@phosphor/virtualdom'; +import { h, VirtualDOM } from '@lumino/virtualdom'; import { ICellModel, diff --git a/packages/notebook/style/index.css b/packages/notebook/style/index.css index 15b230ad567a..f15f966a351a 100644 --- a/packages/notebook/style/index.css +++ b/packages/notebook/style/index.css @@ -4,10 +4,10 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/ui-components/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); -@import url('~@phosphor/dragdrop/style/index.css'); +@import url('~@lumino/dragdrop/style/index.css'); @import url('~@jupyterlab/codeeditor/style/index.css'); @import url('~@jupyterlab/statusbar/style/index.css'); @import url('~@jupyterlab/rendermime/style/index.css'); diff --git a/packages/observables/package.json b/packages/observables/package.json index fcaac7b43550..bdbd9a13fa92 100644 --- a/packages/observables/package.json +++ b/packages/observables/package.json @@ -32,11 +32,11 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/observables/src/modeldb.ts b/packages/observables/src/modeldb.ts index 2593339fe7f4..f5694d67345e 100644 --- a/packages/observables/src/modeldb.ts +++ b/packages/observables/src/modeldb.ts @@ -1,11 +1,11 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { IDisposable, DisposableSet } from '@phosphor/disposable'; +import { IDisposable, DisposableSet } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { JSONExt, JSONValue, JSONObject } from '@phosphor/coreutils'; +import { JSONExt, JSONValue, JSONObject } from '@lumino/coreutils'; import { ObservableMap } from './observablemap'; diff --git a/packages/observables/src/observablejson.ts b/packages/observables/src/observablejson.ts index 03a298f59d1d..8303d4fcf8b3 100644 --- a/packages/observables/src/observablejson.ts +++ b/packages/observables/src/observablejson.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { JSONExt, JSONObject, JSONValue } from '@phosphor/coreutils'; +import { JSONExt, JSONObject, JSONValue } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; import { IObservableMap, ObservableMap } from './observablemap'; diff --git a/packages/observables/src/observablelist.ts b/packages/observables/src/observablelist.ts index e1aed85b7bad..8c06c05c3824 100644 --- a/packages/observables/src/observablelist.ts +++ b/packages/observables/src/observablelist.ts @@ -8,11 +8,11 @@ import { IterableOrArrayLike, each, toArray -} from '@phosphor/algorithm'; +} from '@lumino/algorithm'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; /** * A list which can be observed for changes. diff --git a/packages/observables/src/observablemap.ts b/packages/observables/src/observablemap.ts index 8fe7a4030197..7ea8794b6006 100644 --- a/packages/observables/src/observablemap.ts +++ b/packages/observables/src/observablemap.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { IObservable } from './modeldb'; diff --git a/packages/observables/src/observablestring.ts b/packages/observables/src/observablestring.ts index 19ed4a08e214..e4234cc12033 100644 --- a/packages/observables/src/observablestring.ts +++ b/packages/observables/src/observablestring.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { IObservable } from './modeldb'; diff --git a/packages/observables/src/undoablelist.ts b/packages/observables/src/undoablelist.ts index aac0c7b57ff9..e08c65ddf82d 100644 --- a/packages/observables/src/undoablelist.ts +++ b/packages/observables/src/undoablelist.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { JSONValue } from '@phosphor/coreutils'; +import { JSONValue } from '@lumino/coreutils'; -import { each } from '@phosphor/algorithm'; +import { each } from '@lumino/algorithm'; import { IObservableList, ObservableList } from './observablelist'; diff --git a/packages/outputarea/package.json b/packages/outputarea/package.json index a365296359b2..141b8570d9e4 100644 --- a/packages/outputarea/package.json +++ b/packages/outputarea/package.json @@ -41,13 +41,13 @@ "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/rendermime-interfaces": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/properties": "^1.1.3", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/properties": "^1.1.3", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/outputarea/src/model.ts b/packages/outputarea/src/model.ts index 4b543dbefdee..3dc5e6cb91b4 100644 --- a/packages/outputarea/src/model.ts +++ b/packages/outputarea/src/model.ts @@ -1,18 +1,18 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { each, map, toArray } from '@phosphor/algorithm'; +import { each, map, toArray } from '@lumino/algorithm'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { nbformat } from '@jupyterlab/coreutils'; import { IObservableList, ObservableList } from '@jupyterlab/observables'; import { IOutputModel, OutputModel } from '@jupyterlab/rendermime'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; /** * The model for an output area. diff --git a/packages/outputarea/src/widget.ts b/packages/outputarea/src/widget.ts index 74ea3203f508..ac0a425f37a4 100644 --- a/packages/outputarea/src/widget.ts +++ b/packages/outputarea/src/widget.ts @@ -5,17 +5,17 @@ import { JSONObject, PromiseDelegate, ReadonlyJSONObject -} from '@phosphor/coreutils'; +} from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { AttachedProperty } from '@phosphor/properties'; +import { AttachedProperty } from '@lumino/properties'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; -import { Panel, PanelLayout } from '@phosphor/widgets'; +import { Panel, PanelLayout } from '@lumino/widgets'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { IClientSession } from '@jupyterlab/apputils'; diff --git a/packages/outputarea/style/index.css b/packages/outputarea/style/index.css index 0bc55abb670a..6b77e5b7639d 100644 --- a/packages/outputarea/style/index.css +++ b/packages/outputarea/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/rendermime/style/index.css'); diff --git a/packages/pdf-extension/package.json b/packages/pdf-extension/package.json index 5ef6d9b3178b..e63e079a2ce8 100644 --- a/packages/pdf-extension/package.json +++ b/packages/pdf-extension/package.json @@ -36,9 +36,9 @@ }, "dependencies": { "@jupyterlab/rendermime-interfaces": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/pdf-extension/src/index.ts b/packages/pdf-extension/src/index.ts index 9d720b62da33..88572ce3487e 100644 --- a/packages/pdf-extension/src/index.ts +++ b/packages/pdf-extension/src/index.ts @@ -3,11 +3,11 @@ import { IRenderMime } from '@jupyterlab/rendermime-interfaces'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { DisposableDelegate } from '@phosphor/disposable'; +import { DisposableDelegate } from '@lumino/disposable'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * The MIME type for PDF. diff --git a/packages/pdf-extension/style/index.css b/packages/pdf-extension/style/index.css index f4505e03ab05..8fe68ab59e76 100644 --- a/packages/pdf-extension/style/index.css +++ b/packages/pdf-extension/style/index.css @@ -4,6 +4,6 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('./base.css'); diff --git a/packages/rendermime-interfaces/package.json b/packages/rendermime-interfaces/package.json index 6d31f14432d7..83e3ff2da50d 100644 --- a/packages/rendermime-interfaces/package.json +++ b/packages/rendermime-interfaces/package.json @@ -31,8 +31,8 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@phosphor/coreutils": "^1.3.1", - "@phosphor/widgets": "^1.9.0" + "@lumino/coreutils": "^1.3.1", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/rendermime-interfaces/src/index.ts b/packages/rendermime-interfaces/src/index.ts index 43dd2f094115..042cb1a3ebf8 100644 --- a/packages/rendermime-interfaces/src/index.ts +++ b/packages/rendermime-interfaces/src/index.ts @@ -2,9 +2,9 @@ | Copyright (c) Jupyter Development Team. | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { ReadonlyJSONObject } from '@phosphor/coreutils'; +import { ReadonlyJSONObject } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * A namespace for rendermime associated interfaces. diff --git a/packages/rendermime/package.json b/packages/rendermime/package.json index ddb67b6a1525..68123cb64854 100644 --- a/packages/rendermime/package.json +++ b/packages/rendermime/package.json @@ -41,11 +41,11 @@ "@jupyterlab/observables": "^3.0.0-alpha.1", "@jupyterlab/rendermime-interfaces": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "lodash.escape": "^4.0.1", "marked": "^0.7.0" }, diff --git a/packages/rendermime/src/attachmentmodel.ts b/packages/rendermime/src/attachmentmodel.ts index ec99a5b8cc37..8570f485683d 100644 --- a/packages/rendermime/src/attachmentmodel.ts +++ b/packages/rendermime/src/attachmentmodel.ts @@ -14,9 +14,9 @@ import { JSONObject, JSONValue, ReadonlyJSONObject -} from '@phosphor/coreutils'; +} from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { MimeModel } from './mimemodel'; diff --git a/packages/rendermime/src/mimemodel.ts b/packages/rendermime/src/mimemodel.ts index 5626811b7f32..16cd51dfa78a 100644 --- a/packages/rendermime/src/mimemodel.ts +++ b/packages/rendermime/src/mimemodel.ts @@ -2,7 +2,7 @@ | Copyright (c) Jupyter Development Team. | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { ReadonlyJSONObject } from '@phosphor/coreutils'; +import { ReadonlyJSONObject } from '@lumino/coreutils'; import { IRenderMime } from '@jupyterlab/rendermime-interfaces'; diff --git a/packages/rendermime/src/outputmodel.ts b/packages/rendermime/src/outputmodel.ts index cfb91e378ffc..769b55c04dfc 100644 --- a/packages/rendermime/src/outputmodel.ts +++ b/packages/rendermime/src/outputmodel.ts @@ -7,9 +7,9 @@ import { JSONObject, JSONValue, ReadonlyJSONObject -} from '@phosphor/coreutils'; +} from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { nbformat } from '@jupyterlab/coreutils'; diff --git a/packages/rendermime/src/registry.ts b/packages/rendermime/src/registry.ts index 3ceab1e2810f..938402d1d7ff 100644 --- a/packages/rendermime/src/registry.ts +++ b/packages/rendermime/src/registry.ts @@ -14,7 +14,7 @@ import { defaultSanitizer } from '@jupyterlab/apputils'; -import { ReadonlyJSONObject } from '@phosphor/coreutils'; +import { ReadonlyJSONObject } from '@lumino/coreutils'; import { MimeModel } from './mimemodel'; diff --git a/packages/rendermime/src/renderers.ts b/packages/rendermime/src/renderers.ts index 29e42f11e2e4..4cf573c277fc 100644 --- a/packages/rendermime/src/renderers.ts +++ b/packages/rendermime/src/renderers.ts @@ -13,7 +13,7 @@ import { URLExt } from '@jupyterlab/coreutils'; import { IRenderMime } from '@jupyterlab/rendermime-interfaces'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; import escape from 'lodash.escape'; diff --git a/packages/rendermime/src/tokens.ts b/packages/rendermime/src/tokens.ts index a002dd19236a..bc43ecca41cb 100644 --- a/packages/rendermime/src/tokens.ts +++ b/packages/rendermime/src/tokens.ts @@ -3,7 +3,7 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { Token, ReadonlyJSONObject } from '@phosphor/coreutils'; +import { Token, ReadonlyJSONObject } from '@lumino/coreutils'; import { ISanitizer } from '@jupyterlab/apputils'; diff --git a/packages/rendermime/src/widgets.ts b/packages/rendermime/src/widgets.ts index 8a1b7c9f168e..87a9978425c8 100644 --- a/packages/rendermime/src/widgets.ts +++ b/packages/rendermime/src/widgets.ts @@ -4,11 +4,11 @@ |----------------------------------------------------------------------------*/ import { IRenderMime } from '@jupyterlab/rendermime-interfaces'; -import { ReadonlyJSONObject } from '@phosphor/coreutils'; +import { ReadonlyJSONObject } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import * as renderers from './renderers'; diff --git a/packages/rendermime/style/index.css b/packages/rendermime/style/index.css index 4d99190b12a1..c74afd1d6617 100644 --- a/packages/rendermime/style/index.css +++ b/packages/rendermime/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/codemirror/style/index.css'); diff --git a/packages/running-extension/package.json b/packages/running-extension/package.json index 44d127d8927f..b1ca392e869e 100644 --- a/packages/running-extension/package.json +++ b/packages/running-extension/package.json @@ -39,7 +39,7 @@ "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/running": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0" + "@lumino/algorithm": "^1.2.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/running-extension/src/index.ts b/packages/running-extension/src/index.ts index 7bc373997450..f2f30fd8ddf4 100644 --- a/packages/running-extension/src/index.ts +++ b/packages/running-extension/src/index.ts @@ -15,7 +15,7 @@ import { import { Session } from '@jupyterlab/services'; import { PathExt } from '@jupyterlab/coreutils'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; /** * The class name added to a notebook icon. diff --git a/packages/running/package.json b/packages/running/package.json index f173ab2625b8..269cb126e492 100644 --- a/packages/running/package.json +++ b/packages/running/package.json @@ -36,9 +36,9 @@ }, "dependencies": { "@jupyterlab/apputils": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/signaling": "^1.3.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/signaling": "^1.3.0", "react": "~16.8.4" }, "devDependencies": { diff --git a/packages/running/src/index.tsx b/packages/running/src/index.tsx index 4297f1b8960f..67f2f0c32471 100644 --- a/packages/running/src/index.tsx +++ b/packages/running/src/index.tsx @@ -3,7 +3,7 @@ import * as React from 'react'; -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; import { ReactWidget, UseSignal } from '@jupyterlab/apputils'; import { @@ -12,9 +12,9 @@ import { ToolbarButtonComponent } from '@jupyterlab/apputils'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { DisposableDelegate, IDisposable } from '@phosphor/disposable'; +import { DisposableDelegate, IDisposable } from '@lumino/disposable'; /** * The class name added to a running widget. diff --git a/packages/services/package.json b/packages/services/package.json index 161e2dd1c365..9d81314fde05 100644 --- a/packages/services/package.json +++ b/packages/services/package.json @@ -43,10 +43,10 @@ "dependencies": { "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/observables": "^3.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/signaling": "^1.3.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/signaling": "^1.3.0", "node-fetch": "^2.6.0", "ws": "^7.0.0" }, diff --git a/packages/services/src/config/index.ts b/packages/services/src/config/index.ts index db1984d2465e..507a7082024a 100644 --- a/packages/services/src/config/index.ts +++ b/packages/services/src/config/index.ts @@ -3,7 +3,7 @@ import { URLExt } from '@jupyterlab/coreutils'; -import { JSONObject, JSONValue } from '@phosphor/coreutils'; +import { JSONObject, JSONValue } from '@lumino/coreutils'; import { ServerConnection } from '..'; diff --git a/packages/services/src/contents/index.ts b/packages/services/src/contents/index.ts index 72986e7bc542..2859b895d853 100644 --- a/packages/services/src/contents/index.ts +++ b/packages/services/src/contents/index.ts @@ -5,13 +5,13 @@ import { URLExt, PathExt } from '@jupyterlab/coreutils'; import { ModelDB } from '@jupyterlab/observables'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { each } from '@phosphor/algorithm'; +import { each } from '@lumino/algorithm'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { ServerConnection } from '..'; diff --git a/packages/services/src/kernel/comm.ts b/packages/services/src/kernel/comm.ts index 92355d17e4d6..eee7f8f4f8cf 100644 --- a/packages/services/src/kernel/comm.ts +++ b/packages/services/src/kernel/comm.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { DisposableDelegate } from '@phosphor/disposable'; +import { DisposableDelegate } from '@lumino/disposable'; import { Kernel } from './kernel'; diff --git a/packages/services/src/kernel/default.ts b/packages/services/src/kernel/default.ts index ed264601e0e7..27e8f85795b1 100644 --- a/packages/services/src/kernel/default.ts +++ b/packages/services/src/kernel/default.ts @@ -3,13 +3,13 @@ import { URLExt } from '@jupyterlab/coreutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { ArrayExt, each, find, some } from '@phosphor/algorithm'; +import { ArrayExt, each, find, some } from '@lumino/algorithm'; -import { JSONExt, JSONObject, PromiseDelegate } from '@phosphor/coreutils'; +import { JSONExt, JSONObject, PromiseDelegate } from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { ServerConnection } from '..'; diff --git a/packages/services/src/kernel/future.ts b/packages/services/src/kernel/future.ts index ed52240cdc84..5803806cdff0 100644 --- a/packages/services/src/kernel/future.ts +++ b/packages/services/src/kernel/future.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { DisposableDelegate } from '@phosphor/disposable'; +import { DisposableDelegate } from '@lumino/disposable'; import { Kernel } from './kernel'; diff --git a/packages/services/src/kernel/kernel.ts b/packages/services/src/kernel/kernel.ts index 0744e5fd9b75..2cdc10d81b26 100644 --- a/packages/services/src/kernel/kernel.ts +++ b/packages/services/src/kernel/kernel.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { IIterator } from '@phosphor/algorithm'; +import { IIterator } from '@lumino/algorithm'; -import { JSONObject, JSONValue } from '@phosphor/coreutils'; +import { JSONObject, JSONValue } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; import { ServerConnection } from '..'; diff --git a/packages/services/src/kernel/manager.ts b/packages/services/src/kernel/manager.ts index ec2c407a3b66..9974f6f69875 100644 --- a/packages/services/src/kernel/manager.ts +++ b/packages/services/src/kernel/manager.ts @@ -3,11 +3,11 @@ import { Poll } from '@jupyterlab/coreutils'; -import { ArrayExt, IIterator, iter } from '@phosphor/algorithm'; +import { ArrayExt, IIterator, iter } from '@lumino/algorithm'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { ServerConnection } from '..'; diff --git a/packages/services/src/kernel/messages.ts b/packages/services/src/kernel/messages.ts index e1746e2e5f16..c0886596f9cc 100644 --- a/packages/services/src/kernel/messages.ts +++ b/packages/services/src/kernel/messages.ts @@ -3,9 +3,9 @@ import { nbformat } from '@jupyterlab/coreutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; import { Kernel } from './kernel'; diff --git a/packages/services/src/manager.ts b/packages/services/src/manager.ts index 111e092313f6..a2368a7cec2c 100644 --- a/packages/services/src/manager.ts +++ b/packages/services/src/manager.ts @@ -3,9 +3,9 @@ import { Poll } from '@jupyterlab/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { Builder, BuildManager } from './builder'; diff --git a/packages/services/src/session/default.ts b/packages/services/src/session/default.ts index cba292bf0fd9..17c77191b2ce 100644 --- a/packages/services/src/session/default.ts +++ b/packages/services/src/session/default.ts @@ -3,9 +3,9 @@ import { URLExt } from '@jupyterlab/coreutils'; -import { ArrayExt, each, find } from '@phosphor/algorithm'; +import { ArrayExt, each, find } from '@lumino/algorithm'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { Kernel, KernelMessage } from '../kernel'; diff --git a/packages/services/src/session/manager.ts b/packages/services/src/session/manager.ts index 529a28f3f7a5..74b513e8a3b6 100644 --- a/packages/services/src/session/manager.ts +++ b/packages/services/src/session/manager.ts @@ -3,11 +3,11 @@ import { Poll } from '@jupyterlab/coreutils'; -import { ArrayExt, IIterator, iter } from '@phosphor/algorithm'; +import { ArrayExt, IIterator, iter } from '@lumino/algorithm'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { Kernel } from '../kernel'; diff --git a/packages/services/src/session/session.ts b/packages/services/src/session/session.ts index 029e6a6e4ded..85f78fd6a0b4 100644 --- a/packages/services/src/session/session.ts +++ b/packages/services/src/session/session.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { IIterator } from '@phosphor/algorithm'; +import { IIterator } from '@lumino/algorithm'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; import { Kernel, KernelMessage } from '../kernel'; diff --git a/packages/services/src/terminal/default.ts b/packages/services/src/terminal/default.ts index 5b8afab78b86..05663484869f 100644 --- a/packages/services/src/terminal/default.ts +++ b/packages/services/src/terminal/default.ts @@ -3,11 +3,11 @@ import { PageConfig, URLExt } from '@jupyterlab/coreutils'; -import { ArrayExt, each, map, toArray } from '@phosphor/algorithm'; +import { ArrayExt, each, map, toArray } from '@lumino/algorithm'; -import { JSONPrimitive } from '@phosphor/coreutils'; +import { JSONPrimitive } from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { ServerConnection } from '..'; diff --git a/packages/services/src/terminal/manager.ts b/packages/services/src/terminal/manager.ts index f04cace1ef45..1ae6c9096f9a 100644 --- a/packages/services/src/terminal/manager.ts +++ b/packages/services/src/terminal/manager.ts @@ -3,11 +3,11 @@ import { Poll } from '@jupyterlab/coreutils'; -import { ArrayExt, IIterator, iter } from '@phosphor/algorithm'; +import { ArrayExt, IIterator, iter } from '@lumino/algorithm'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { ServerConnection } from '..'; diff --git a/packages/services/src/terminal/terminal.ts b/packages/services/src/terminal/terminal.ts index bd1acf7a90bc..04c1a5ebbd05 100644 --- a/packages/services/src/terminal/terminal.ts +++ b/packages/services/src/terminal/terminal.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { IIterator } from '@phosphor/algorithm'; +import { IIterator } from '@lumino/algorithm'; -import { JSONPrimitive, JSONObject } from '@phosphor/coreutils'; +import { JSONPrimitive, JSONObject } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; import { ServerConnection } from '..'; diff --git a/packages/services/src/workspace/index.ts b/packages/services/src/workspace/index.ts index b5553511b14a..c62c148dd209 100644 --- a/packages/services/src/workspace/index.ts +++ b/packages/services/src/workspace/index.ts @@ -3,7 +3,7 @@ import { DataConnector, URLExt } from '@jupyterlab/coreutils'; -import { ReadonlyJSONObject } from '@phosphor/coreutils'; +import { ReadonlyJSONObject } from '@lumino/coreutils'; import { ServerConnection } from '../serverconnection'; diff --git a/packages/settingeditor/package.json b/packages/settingeditor/package.json index 9e9531b7d339..0bf1855587dc 100644 --- a/packages/settingeditor/package.json +++ b/packages/settingeditor/package.json @@ -41,11 +41,11 @@ "@jupyterlab/inspector": "^2.0.0-alpha.1", "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4", "react-dom": "~16.8.4" }, diff --git a/packages/settingeditor/src/inspector.ts b/packages/settingeditor/src/inspector.ts index 0856a9599c0a..4179b6b7d219 100644 --- a/packages/settingeditor/src/inspector.ts +++ b/packages/settingeditor/src/inspector.ts @@ -13,7 +13,7 @@ import { standardRendererFactories } from '@jupyterlab/rendermime'; -import { ReadonlyJSONObject } from '@phosphor/coreutils'; +import { ReadonlyJSONObject } from '@lumino/coreutils'; import { RawEditor } from './raweditor'; diff --git a/packages/settingeditor/src/plugineditor.ts b/packages/settingeditor/src/plugineditor.ts index 15a1a8601169..e1a4f3ccc036 100644 --- a/packages/settingeditor/src/plugineditor.ts +++ b/packages/settingeditor/src/plugineditor.ts @@ -11,15 +11,15 @@ import { ISettingRegistry } from '@jupyterlab/coreutils'; import { IRenderMimeRegistry } from '@jupyterlab/rendermime'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget, StackedLayout } from '@phosphor/widgets'; +import { Widget, StackedLayout } from '@lumino/widgets'; import { RawEditor } from './raweditor'; diff --git a/packages/settingeditor/src/pluginlist.tsx b/packages/settingeditor/src/pluginlist.tsx index 5daada29c4d2..e2a639c8acf7 100644 --- a/packages/settingeditor/src/pluginlist.tsx +++ b/packages/settingeditor/src/pluginlist.tsx @@ -11,11 +11,11 @@ import { defaultIconRegistry } from '@jupyterlab/ui-components'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import * as React from 'react'; diff --git a/packages/settingeditor/src/raweditor.ts b/packages/settingeditor/src/raweditor.ts index d88ea31c2643..4be2a71ad786 100644 --- a/packages/settingeditor/src/raweditor.ts +++ b/packages/settingeditor/src/raweditor.ts @@ -9,13 +9,13 @@ import { ISettingRegistry } from '@jupyterlab/coreutils'; import { IRenderMimeRegistry } from '@jupyterlab/rendermime'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; -import { BoxLayout, Widget } from '@phosphor/widgets'; +import { BoxLayout, Widget } from '@lumino/widgets'; import { createInspector } from './inspector'; diff --git a/packages/settingeditor/src/settingeditor.tsx b/packages/settingeditor/src/settingeditor.tsx index aa6e4c9002e8..3d0fa56ce30c 100644 --- a/packages/settingeditor/src/settingeditor.tsx +++ b/packages/settingeditor/src/settingeditor.tsx @@ -9,15 +9,15 @@ import { ISettingRegistry, IStateDB } from '@jupyterlab/coreutils'; import { IRenderMimeRegistry } from '@jupyterlab/rendermime'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { JSONExt, JSONObject, JSONValue } from '@phosphor/coreutils'; +import { JSONExt, JSONObject, JSONValue } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; -import { PanelLayout, Widget } from '@phosphor/widgets'; +import { PanelLayout, Widget } from '@lumino/widgets'; import * as React from 'react'; diff --git a/packages/settingeditor/src/splitpanel.ts b/packages/settingeditor/src/splitpanel.ts index c401435028b7..485bf3d84963 100644 --- a/packages/settingeditor/src/splitpanel.ts +++ b/packages/settingeditor/src/splitpanel.ts @@ -3,9 +3,9 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { SplitPanel as SPanel } from '@phosphor/widgets'; +import { SplitPanel as SPanel } from '@lumino/widgets'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; /** * A deprecated split panel that will be removed when the phosphor split panel diff --git a/packages/settingeditor/src/tokens.ts b/packages/settingeditor/src/tokens.ts index 2c7e81a6032a..ca3869d1c7cb 100644 --- a/packages/settingeditor/src/tokens.ts +++ b/packages/settingeditor/src/tokens.ts @@ -3,7 +3,7 @@ import { IWidgetTracker, MainAreaWidget } from '@jupyterlab/apputils'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; import { SettingEditor } from './settingeditor'; diff --git a/packages/settingeditor/style/index.css b/packages/settingeditor/style/index.css index fd84f4f05eda..cf05a54dc6bf 100644 --- a/packages/settingeditor/style/index.css +++ b/packages/settingeditor/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/ui-components/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/codeeditor/style/index.css'); diff --git a/packages/shortcuts-extension/package.json b/packages/shortcuts-extension/package.json index 1d6915c7b370..bd5c57562d4b 100644 --- a/packages/shortcuts-extension/package.json +++ b/packages/shortcuts-extension/package.json @@ -34,9 +34,9 @@ "dependencies": { "@jupyterlab/application": "^2.0.0-alpha.1", "@jupyterlab/coreutils": "^4.0.0-alpha.1", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0" + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/shortcuts-extension/src/index.ts b/packages/shortcuts-extension/src/index.ts index 4d36730ae032..fa4269e46e80 100644 --- a/packages/shortcuts-extension/src/index.ts +++ b/packages/shortcuts-extension/src/index.ts @@ -8,15 +8,15 @@ import { import { ISettingRegistry, SettingRegistry } from '@jupyterlab/coreutils'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; import { JSONExt, ReadonlyJSONObject, ReadonlyJSONValue -} from '@phosphor/coreutils'; +} from '@lumino/coreutils'; -import { DisposableSet, IDisposable } from '@phosphor/disposable'; +import { DisposableSet, IDisposable } from '@lumino/disposable'; /** * The ASCII record separator character. diff --git a/packages/statusbar-extension/package.json b/packages/statusbar-extension/package.json index 049ddaa8ddb7..cf7ff8c91867 100644 --- a/packages/statusbar-extension/package.json +++ b/packages/statusbar-extension/package.json @@ -46,7 +46,7 @@ "@jupyterlab/mainmenu": "^2.0.0-alpha.1", "@jupyterlab/notebook": "^2.0.0-alpha.1", "@jupyterlab/statusbar": "^2.0.0-alpha.1", - "@phosphor/widgets": "^1.9.0" + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "@types/react": "~16.8.18", diff --git a/packages/statusbar-extension/src/index.ts b/packages/statusbar-extension/src/index.ts index 0628a1b61735..f38bf9ad2818 100644 --- a/packages/statusbar-extension/src/index.ts +++ b/packages/statusbar-extension/src/index.ts @@ -40,7 +40,7 @@ import { ISettingRegistry } from '@jupyterlab/coreutils'; import { IMainMenu } from '@jupyterlab/mainmenu'; -import { Title, Widget } from '@phosphor/widgets'; +import { Title, Widget } from '@lumino/widgets'; export const STATUSBAR_PLUGIN_ID = '@jupyterlab/statusbar-extension:plugin'; diff --git a/packages/statusbar-extension/style/index.css b/packages/statusbar-extension/style/index.css index ccd1da2b939c..a2fa13b60377 100644 --- a/packages/statusbar-extension/style/index.css +++ b/packages/statusbar-extension/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/statusbar/style/index.css'); @import url('~@jupyterlab/docregistry/style/index.css'); diff --git a/packages/statusbar/package.json b/packages/statusbar/package.json index 527fa99fb2fd..76ff2b11f145 100644 --- a/packages/statusbar/package.json +++ b/packages/statusbar/package.json @@ -36,12 +36,12 @@ "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4", "typestyle": "^2.0.1" }, diff --git a/packages/statusbar/src/components/hover.tsx b/packages/statusbar/src/components/hover.tsx index 1495250d3cc3..71375b0cf20a 100644 --- a/packages/statusbar/src/components/hover.tsx +++ b/packages/statusbar/src/components/hover.tsx @@ -3,9 +3,9 @@ import { HoverBox } from '@jupyterlab/apputils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget, PanelLayout } from '@phosphor/widgets'; +import { Widget, PanelLayout } from '@lumino/widgets'; import { style } from 'typestyle/lib'; diff --git a/packages/statusbar/src/defaults/kernelStatus.tsx b/packages/statusbar/src/defaults/kernelStatus.tsx index 0d76fa145d87..d43efaccbf4a 100644 --- a/packages/statusbar/src/defaults/kernelStatus.tsx +++ b/packages/statusbar/src/defaults/kernelStatus.tsx @@ -11,7 +11,7 @@ import { Kernel, Session } from '@jupyterlab/services'; import { interactiveItem, TextItem } from '..'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; /** * A pure functional component for rendering kernel status. diff --git a/packages/statusbar/src/statusbar.ts b/packages/statusbar/src/statusbar.ts index 89585ebad2ab..382c4179b474 100644 --- a/packages/statusbar/src/statusbar.ts +++ b/packages/statusbar/src/statusbar.ts @@ -1,17 +1,17 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { ArrayExt } from '@phosphor/algorithm'; +import { ArrayExt } from '@lumino/algorithm'; import { DisposableDelegate, DisposableSet, IDisposable -} from '@phosphor/disposable'; +} from '@lumino/disposable'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget, Panel, PanelLayout } from '@phosphor/widgets'; +import { Widget, Panel, PanelLayout } from '@lumino/widgets'; import { statusBar as barStyle, diff --git a/packages/statusbar/src/tokens.ts b/packages/statusbar/src/tokens.ts index 896b1b97083d..ef0d36b440bf 100644 --- a/packages/statusbar/src/tokens.ts +++ b/packages/statusbar/src/tokens.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { ISignal } from '@phosphor/signaling'; +import { ISignal } from '@lumino/signaling'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { IDisposable } from '@phosphor/disposable'; +import { IDisposable } from '@lumino/disposable'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; // tslint:disable-next-line:variable-name export const IStatusBar = new Token( diff --git a/packages/statusbar/style/index.css b/packages/statusbar/style/index.css index 72560bdaed74..38c4177544d8 100644 --- a/packages/statusbar/style/index.css +++ b/packages/statusbar/style/index.css @@ -3,6 +3,6 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/ui-components/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); diff --git a/packages/tabmanager-extension/package.json b/packages/tabmanager-extension/package.json index bfd8d493ba3e..65663ef1f360 100644 --- a/packages/tabmanager-extension/package.json +++ b/packages/tabmanager-extension/package.json @@ -37,8 +37,8 @@ "dependencies": { "@jupyterlab/application": "^2.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/tabmanager-extension/src/index.ts b/packages/tabmanager-extension/src/index.ts index bb009ca7be93..567965d3f6e0 100644 --- a/packages/tabmanager-extension/src/index.ts +++ b/packages/tabmanager-extension/src/index.ts @@ -10,9 +10,9 @@ import { import { TabBarSvg } from '@jupyterlab/ui-components'; -import { each } from '@phosphor/algorithm'; +import { each } from '@lumino/algorithm'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * The default tab manager extension. diff --git a/packages/tabmanager-extension/style/index.css b/packages/tabmanager-extension/style/index.css index 38810a9cb009..bd9f8cebad79 100644 --- a/packages/tabmanager-extension/style/index.css +++ b/packages/tabmanager-extension/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/ui-components/style/index.css'); @import url('./base.css'); diff --git a/packages/terminal-extension/package.json b/packages/terminal-extension/package.json index e4e1f7487096..ff245b49e9d9 100644 --- a/packages/terminal-extension/package.json +++ b/packages/terminal-extension/package.json @@ -44,8 +44,8 @@ "@jupyterlab/running": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/terminal": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "@types/webpack-env": "^1.13.9", diff --git a/packages/terminal-extension/src/index.ts b/packages/terminal-extension/src/index.ts index 2811eafab8d7..74f3e4ab5d5e 100644 --- a/packages/terminal-extension/src/index.ts +++ b/packages/terminal-extension/src/index.ts @@ -28,9 +28,9 @@ import { IRunningSessionManagers, IRunningSessions } from '@jupyterlab/running'; // Name-only import so as to not trigger inclusion in main bundle import * as WidgetModuleType from '@jupyterlab/terminal/lib/widget'; -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; /** * The command IDs used by the terminal plugin. diff --git a/packages/terminal/package.json b/packages/terminal/package.json index d86e88187d66..3923bb9325d2 100644 --- a/packages/terminal/package.json +++ b/packages/terminal/package.json @@ -37,10 +37,10 @@ "dependencies": { "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/domutils": "^1.1.3", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/domutils": "^1.1.3", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "xterm": "~3.13.2" }, "devDependencies": { diff --git a/packages/terminal/src/tokens.ts b/packages/terminal/src/tokens.ts index ec86eb50f30a..addb6196834d 100644 --- a/packages/terminal/src/tokens.ts +++ b/packages/terminal/src/tokens.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; import { IWidgetTracker, MainAreaWidget } from '@jupyterlab/apputils'; diff --git a/packages/terminal/src/widget.ts b/packages/terminal/src/widget.ts index 9c20339f35dc..2e0d72d08b43 100644 --- a/packages/terminal/src/widget.ts +++ b/packages/terminal/src/widget.ts @@ -3,11 +3,11 @@ import { TerminalSession } from '@jupyterlab/services'; -import { Platform } from '@phosphor/domutils'; +import { Platform } from '@lumino/domutils'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { Terminal as Xterm } from 'xterm'; diff --git a/packages/terminal/style/index.css b/packages/terminal/style/index.css index 01fab08482ca..8d2bbcfc20db 100644 --- a/packages/terminal/style/index.css +++ b/packages/terminal/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~xterm/src/xterm.css'); diff --git a/packages/tooltip-extension/package.json b/packages/tooltip-extension/package.json index 57e85a60f5a3..ce76e543711c 100644 --- a/packages/tooltip-extension/package.json +++ b/packages/tooltip-extension/package.json @@ -45,9 +45,9 @@ "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/tooltip": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/widgets": "^1.9.0" + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/tooltip-extension/src/index.ts b/packages/tooltip-extension/src/index.ts index e1360b310b74..8f52052b5120 100644 --- a/packages/tooltip-extension/src/index.ts +++ b/packages/tooltip-extension/src/index.ts @@ -3,11 +3,11 @@ import { Kernel, KernelMessage, Session } from '@jupyterlab/services'; -import { find } from '@phosphor/algorithm'; +import { find } from '@lumino/algorithm'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { Text } from '@jupyterlab/coreutils'; diff --git a/packages/tooltip/package.json b/packages/tooltip/package.json index 55a06de134bd..ae1822e5d4f6 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -39,9 +39,9 @@ "@jupyterlab/codeeditor": "^2.0.0-alpha.1", "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0" + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "rimraf": "~2.6.2", diff --git a/packages/tooltip/src/tokens.ts b/packages/tooltip/src/tokens.ts index b7582f317d8a..02dd9a3f53d5 100644 --- a/packages/tooltip/src/tokens.ts +++ b/packages/tooltip/src/tokens.ts @@ -3,9 +3,9 @@ import { Kernel } from '@jupyterlab/services'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { CodeEditor } from '@jupyterlab/codeeditor'; diff --git a/packages/tooltip/src/widget.ts b/packages/tooltip/src/widget.ts index afb78fc22693..74a5278617f7 100644 --- a/packages/tooltip/src/widget.ts +++ b/packages/tooltip/src/widget.ts @@ -1,13 +1,13 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { PanelLayout } from '@phosphor/widgets'; +import { PanelLayout } from '@lumino/widgets'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { CodeEditor } from '@jupyterlab/codeeditor'; diff --git a/packages/tooltip/style/index.css b/packages/tooltip/style/index.css index 633cb093efac..eb7f17bbda79 100644 --- a/packages/tooltip/style/index.css +++ b/packages/tooltip/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/codeeditor/style/index.css'); @import url('~@jupyterlab/rendermime/style/index.css'); diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index a9ea3ad9e40c..fb50fc34e002 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -36,10 +36,10 @@ "@blueprintjs/core": "^3.9.0", "@blueprintjs/select": "^3.3.0", "@jupyterlab/coreutils": "^4.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/virtualdom": "^1.2.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/virtualdom": "^1.2.0", + "@lumino/widgets": "^1.9.0", "react": "~16.8.4", "typestyle": "^2.0.1" }, diff --git a/packages/ui-components/src/icon/interfaces.ts b/packages/ui-components/src/icon/interfaces.ts index 00a3be9724a5..58014eeb9fa2 100644 --- a/packages/ui-components/src/icon/interfaces.ts +++ b/packages/ui-components/src/icon/interfaces.ts @@ -1,4 +1,4 @@ -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; import { IIconStyle } from '../style/icon'; import React from 'react'; diff --git a/packages/ui-components/src/icon/tabbarsvg.ts b/packages/ui-components/src/icon/tabbarsvg.ts index 1a1f38493c2f..c267d962a513 100644 --- a/packages/ui-components/src/icon/tabbarsvg.ts +++ b/packages/ui-components/src/icon/tabbarsvg.ts @@ -1,8 +1,8 @@ -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { h, VirtualElement } from '@phosphor/virtualdom'; +import { h, VirtualElement } from '@lumino/virtualdom'; -import { DockPanel, TabBar, Widget } from '@phosphor/widgets'; +import { DockPanel, TabBar, Widget } from '@lumino/widgets'; import { IconKindType } from '../style/icon'; import { defaultIconRegistry } from './iconregistry'; diff --git a/packages/ui-components/style/index.css b/packages/ui-components/style/index.css index f7e375acb680..964b452eec12 100644 --- a/packages/ui-components/style/index.css +++ b/packages/ui-components/style/index.css @@ -6,6 +6,6 @@ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ @import url('~@blueprintjs/core/lib/css/blueprint.css'); @import url('~@blueprintjs/select/lib/css/blueprint-select.css'); -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('./base.css'); diff --git a/packages/vdom/package.json b/packages/vdom/package.json index dbfe742b97b1..895495620ae1 100644 --- a/packages/vdom/package.json +++ b/packages/vdom/package.json @@ -38,10 +38,10 @@ "@jupyterlab/docregistry": "^2.0.0-alpha.1", "@jupyterlab/rendermime-interfaces": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "@nteract/transform-vdom": "^4.0.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", "react": "~16.8.4", "react-dom": "~16.8.4" }, diff --git a/packages/vdom/src/index.tsx b/packages/vdom/src/index.tsx index 51d4e0f14a86..89c51b83d2c7 100644 --- a/packages/vdom/src/index.tsx +++ b/packages/vdom/src/index.tsx @@ -15,11 +15,11 @@ import { Kernel } from '@jupyterlab/services'; import VDOM, { SerializedEvent } from '@nteract/transform-vdom'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * The CSS class to add to the VDOM Widget. diff --git a/packages/vdom/style/index.css b/packages/vdom/style/index.css index a9b584044e11..a634b5e5550b 100644 --- a/packages/vdom/style/index.css +++ b/packages/vdom/style/index.css @@ -4,7 +4,7 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('~@jupyterlab/apputils/style/index.css'); @import url('~@jupyterlab/docregistry/style/index.css'); diff --git a/packages/vega4-extension/package.json b/packages/vega4-extension/package.json index be408d9cfdfa..8969ebf38c24 100644 --- a/packages/vega4-extension/package.json +++ b/packages/vega4-extension/package.json @@ -35,8 +35,8 @@ }, "dependencies": { "@jupyterlab/rendermime-interfaces": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/widgets": "^1.9.0" + "@lumino/coreutils": "^1.3.1", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "@types/webpack-env": "^1.13.9", diff --git a/packages/vega4-extension/src/index.ts b/packages/vega4-extension/src/index.ts index 32dac6854fd9..17cc220fc39f 100644 --- a/packages/vega4-extension/src/index.ts +++ b/packages/vega4-extension/src/index.ts @@ -3,9 +3,9 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { IRenderMime } from '@jupyterlab/rendermime-interfaces'; diff --git a/packages/vega4-extension/style/index.css b/packages/vega4-extension/style/index.css index f4505e03ab05..8fe68ab59e76 100644 --- a/packages/vega4-extension/style/index.css +++ b/packages/vega4-extension/style/index.css @@ -4,6 +4,6 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('./base.css'); diff --git a/packages/vega5-extension/package.json b/packages/vega5-extension/package.json index dfefbf059792..ebcbb97d27d1 100644 --- a/packages/vega5-extension/package.json +++ b/packages/vega5-extension/package.json @@ -35,8 +35,8 @@ }, "dependencies": { "@jupyterlab/rendermime-interfaces": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/widgets": "^1.9.0" + "@lumino/coreutils": "^1.3.1", + "@lumino/widgets": "^1.9.0" }, "devDependencies": { "@types/webpack-env": "^1.13.9", diff --git a/packages/vega5-extension/src/index.ts b/packages/vega5-extension/src/index.ts index 9c7e3be24ca3..4d0bb4e7fc74 100644 --- a/packages/vega5-extension/src/index.ts +++ b/packages/vega5-extension/src/index.ts @@ -3,9 +3,9 @@ | Distributed under the terms of the Modified BSD License. |----------------------------------------------------------------------------*/ -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { IRenderMime } from '@jupyterlab/rendermime-interfaces'; diff --git a/packages/vega5-extension/style/index.css b/packages/vega5-extension/style/index.css index f4505e03ab05..8fe68ab59e76 100644 --- a/packages/vega5-extension/style/index.css +++ b/packages/vega5-extension/style/index.css @@ -4,6 +4,6 @@ |----------------------------------------------------------------------------*/ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */ -@import url('~@phosphor/widgets/style/index.css'); +@import url('~@lumino/widgets/style/index.css'); @import url('./base.css'); diff --git a/tests/package.json b/tests/package.json index 4198df23e991..1bbfbe8931ef 100644 --- a/tests/package.json +++ b/tests/package.json @@ -27,15 +27,15 @@ "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/terminal": "^2.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/domutils": "^1.1.3", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/virtualdom": "^1.2.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/domutils": "^1.1.3", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/virtualdom": "^1.2.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "expect.js": "~0.3.1", "json-to-html": "~0.1.2", diff --git a/tests/test-application/package.json b/tests/test-application/package.json index 732c89ceac83..919f875dbed5 100644 --- a/tests/test-application/package.json +++ b/tests/test-application/package.json @@ -16,11 +16,11 @@ "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-application/src/layoutrestorer.spec.ts b/tests/test-application/src/layoutrestorer.spec.ts index 7e8018367eb7..6658035c6421 100644 --- a/tests/test-application/src/layoutrestorer.spec.ts +++ b/tests/test-application/src/layoutrestorer.spec.ts @@ -9,11 +9,11 @@ import { WidgetTracker } from '@jupyterlab/apputils'; import { StateDB } from '@jupyterlab/coreutils'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { DockPanel, Widget } from '@phosphor/widgets'; +import { DockPanel, Widget } from '@lumino/widgets'; describe('apputils', () => { describe('LayoutRestorer', () => { diff --git a/tests/test-application/src/router.spec.ts b/tests/test-application/src/router.spec.ts index 68b9fd45e060..9ea4c2872ed1 100644 --- a/tests/test-application/src/router.spec.ts +++ b/tests/test-application/src/router.spec.ts @@ -5,9 +5,9 @@ import { expect } from 'chai'; import { Router } from '@jupyterlab/application'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Token } from '@phosphor/coreutils'; +import { Token } from '@lumino/coreutils'; import { signalToPromise } from '@jupyterlab/testutils'; diff --git a/tests/test-application/src/shell.spec.ts b/tests/test-application/src/shell.spec.ts index c5b5e71c640b..94586292ad2f 100644 --- a/tests/test-application/src/shell.spec.ts +++ b/tests/test-application/src/shell.spec.ts @@ -5,11 +5,11 @@ import { expect } from 'chai'; import { framePromise } from '@jupyterlab/testutils'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { simulate } from 'simulate-event'; diff --git a/tests/test-apputils/package.json b/tests/test-apputils/package.json index bdad8220baff..3a204042f99b 100644 --- a/tests/test-apputils/package.json +++ b/tests/test-apputils/package.json @@ -15,12 +15,12 @@ "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/virtualdom": "^1.2.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/virtualdom": "^1.2.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-apputils/src/clientsession.spec.ts b/tests/test-apputils/src/clientsession.spec.ts index 69564309fc4b..82118ccaabce 100644 --- a/tests/test-apputils/src/clientsession.spec.ts +++ b/tests/test-apputils/src/clientsession.spec.ts @@ -7,7 +7,7 @@ import { SessionManager } from '@jupyterlab/services'; import { ClientSession, Dialog, IClientSession } from '@jupyterlab/apputils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { acceptDialog, diff --git a/tests/test-apputils/src/commandlinker.spec.ts b/tests/test-apputils/src/commandlinker.spec.ts index d1da67cb9e51..70e536a3b993 100644 --- a/tests/test-apputils/src/commandlinker.spec.ts +++ b/tests/test-apputils/src/commandlinker.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { h, VirtualNode, VirtualDOM } from '@phosphor/virtualdom'; +import { h, VirtualNode, VirtualDOM } from '@lumino/virtualdom'; import { simulate } from 'simulate-event'; diff --git a/tests/test-apputils/src/dialog.spec.tsx b/tests/test-apputils/src/dialog.spec.tsx index 806de9c744f7..2d0654e6fb1f 100644 --- a/tests/test-apputils/src/dialog.spec.tsx +++ b/tests/test-apputils/src/dialog.spec.tsx @@ -5,11 +5,11 @@ import { Dialog, showDialog } from '@jupyterlab/apputils'; -import { each } from '@phosphor/algorithm'; +import { each } from '@lumino/algorithm'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { generate, simulate } from 'simulate-event'; diff --git a/tests/test-apputils/src/mainareawidget.spec.ts b/tests/test-apputils/src/mainareawidget.spec.ts index c5dbda973e16..3584275aea35 100644 --- a/tests/test-apputils/src/mainareawidget.spec.ts +++ b/tests/test-apputils/src/mainareawidget.spec.ts @@ -5,9 +5,9 @@ import { expect } from 'chai'; import { MainAreaWidget, Toolbar } from '@jupyterlab/apputils'; -import { MessageLoop } from '@phosphor/messaging'; +import { MessageLoop } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; describe('@jupyterlab/apputils', () => { describe('MainAreaWidget', () => { diff --git a/tests/test-apputils/src/styling.spec.ts b/tests/test-apputils/src/styling.spec.ts index c4fd1357f311..5113a57829af 100644 --- a/tests/test-apputils/src/styling.spec.ts +++ b/tests/test-apputils/src/styling.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { VirtualDOM, h } from '@phosphor/virtualdom'; +import { VirtualDOM, h } from '@lumino/virtualdom'; import { simulate } from 'simulate-event'; diff --git a/tests/test-apputils/src/toolbar.spec.ts b/tests/test-apputils/src/toolbar.spec.ts index 8ff2347957ea..3c6972e10f84 100644 --- a/tests/test-apputils/src/toolbar.spec.ts +++ b/tests/test-apputils/src/toolbar.spec.ts @@ -10,13 +10,13 @@ import { CommandToolbarButton } from '@jupyterlab/apputils'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { ReadonlyJSONObject } from '@phosphor/coreutils'; +import { ReadonlyJSONObject } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { simulate } from 'simulate-event'; diff --git a/tests/test-apputils/src/vdom.spec.ts b/tests/test-apputils/src/vdom.spec.ts index 791d64a456fb..dd16cf98b238 100644 --- a/tests/test-apputils/src/vdom.spec.ts +++ b/tests/test-apputils/src/vdom.spec.ts @@ -7,7 +7,7 @@ import { VDomModel, VDomRenderer } from '@jupyterlab/apputils'; import { framePromise } from '@jupyterlab/testutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import * as React from 'react'; diff --git a/tests/test-apputils/src/widgettracker.spec.ts b/tests/test-apputils/src/widgettracker.spec.ts index ceac8cd00492..ed4fff89226f 100644 --- a/tests/test-apputils/src/widgettracker.spec.ts +++ b/tests/test-apputils/src/widgettracker.spec.ts @@ -7,7 +7,7 @@ import { WidgetTracker } from '@jupyterlab/apputils'; import { signalToPromise, testEmission } from '@jupyterlab/testutils'; -import { Panel, Widget } from '@phosphor/widgets'; +import { Panel, Widget } from '@lumino/widgets'; import { simulate } from 'simulate-event'; diff --git a/tests/test-cells/package.json b/tests/test-cells/package.json index eb614ec742e5..225b148f8a2c 100644 --- a/tests/test-cells/package.json +++ b/tests/test-cells/package.json @@ -18,10 +18,10 @@ "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/outputarea": "^2.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-cells/src/inputarea.spec.ts b/tests/test-cells/src/inputarea.spec.ts index 66009b3c70ae..38c5105e4e82 100644 --- a/tests/test-cells/src/inputarea.spec.ts +++ b/tests/test-cells/src/inputarea.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { CodeEditorWrapper } from '@jupyterlab/codeeditor'; diff --git a/tests/test-cells/src/model.spec.ts b/tests/test-cells/src/model.spec.ts index 1f416ac3942e..1dd84b8f8713 100644 --- a/tests/test-cells/src/model.spec.ts +++ b/tests/test-cells/src/model.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; import { IChangedArgs, nbformat } from '@jupyterlab/coreutils'; @@ -17,7 +17,7 @@ import { import { OutputAreaModel } from '@jupyterlab/outputarea'; import { NBTestUtils } from '@jupyterlab/testutils'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; class TestModel extends CellModel { get type(): 'raw' { diff --git a/tests/test-cells/src/widget.spec.ts b/tests/test-cells/src/widget.spec.ts index b39e777e862a..2fa79bb2bd1c 100644 --- a/tests/test-cells/src/widget.spec.ts +++ b/tests/test-cells/src/widget.spec.ts @@ -1,9 +1,9 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { ClientSession, IClientSession } from '@jupyterlab/apputils'; diff --git a/tests/test-codeeditor/package.json b/tests/test-codeeditor/package.json index a34dcba7219c..ded6b911ef22 100644 --- a/tests/test-codeeditor/package.json +++ b/tests/test-codeeditor/package.json @@ -16,8 +16,8 @@ "@jupyterlab/codemirror": "^2.0.0-alpha.1", "@jupyterlab/observables": "^3.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-codeeditor/src/jsoneditor.spec.ts b/tests/test-codeeditor/src/jsoneditor.spec.ts index aed3d8d391aa..f64aff63e076 100644 --- a/tests/test-codeeditor/src/jsoneditor.spec.ts +++ b/tests/test-codeeditor/src/jsoneditor.spec.ts @@ -11,9 +11,9 @@ import { JSONEditor } from '@jupyterlab/codeeditor'; import { framePromise } from '@jupyterlab/testutils'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { simulate } from 'simulate-event'; diff --git a/tests/test-codeeditor/src/widget.spec.ts b/tests/test-codeeditor/src/widget.spec.ts index b4c716748785..76582c8726d8 100644 --- a/tests/test-codeeditor/src/widget.spec.ts +++ b/tests/test-codeeditor/src/widget.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { simulate } from 'simulate-event'; diff --git a/tests/test-completer/package.json b/tests/test-completer/package.json index 4d5851d02335..e22158c9ffa5 100644 --- a/tests/test-completer/package.json +++ b/tests/test-completer/package.json @@ -17,10 +17,10 @@ "@jupyterlab/codemirror": "^2.0.0-alpha.1", "@jupyterlab/completer": "^2.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-completer/src/model.spec.ts b/tests/test-completer/src/model.spec.ts index 8976ad78e7b8..27f6e3f1078f 100644 --- a/tests/test-completer/src/model.spec.ts +++ b/tests/test-completer/src/model.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; import { CodeEditor } from '@jupyterlab/codeeditor'; diff --git a/tests/test-completer/src/widget.spec.ts b/tests/test-completer/src/widget.spec.ts index f8ad6355e734..f6d200eb60b9 100644 --- a/tests/test-completer/src/widget.spec.ts +++ b/tests/test-completer/src/widget.spec.ts @@ -3,11 +3,11 @@ import { expect } from 'chai'; -import { MessageLoop, Message } from '@phosphor/messaging'; +import { MessageLoop, Message } from '@lumino/messaging'; -import { Panel } from '@phosphor/widgets'; +import { Panel } from '@lumino/widgets'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { simulate } from 'simulate-event'; diff --git a/tests/test-console/package.json b/tests/test-console/package.json index c220fcbc9e1a..4300661f29e2 100644 --- a/tests/test-console/package.json +++ b/tests/test-console/package.json @@ -23,10 +23,10 @@ "@jupyterlab/console": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0" }, "devDependencies": { diff --git a/tests/test-console/src/foreign.spec.ts b/tests/test-console/src/foreign.spec.ts index 56f16c10c860..94130251aa32 100644 --- a/tests/test-console/src/foreign.spec.ts +++ b/tests/test-console/src/foreign.spec.ts @@ -3,13 +3,13 @@ import { expect } from 'chai'; -import { PromiseDelegate, UUID } from '@phosphor/coreutils'; +import { PromiseDelegate, UUID } from '@lumino/coreutils'; import { KernelMessage, Session } from '@jupyterlab/services'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; -import { Panel } from '@phosphor/widgets'; +import { Panel } from '@lumino/widgets'; import { ClientSession, IClientSession } from '@jupyterlab/apputils'; diff --git a/tests/test-console/src/panel.spec.ts b/tests/test-console/src/panel.spec.ts index 2800ffa8d735..4b72d27d0ec5 100644 --- a/tests/test-console/src/panel.spec.ts +++ b/tests/test-console/src/panel.spec.ts @@ -5,9 +5,9 @@ import { expect } from 'chai'; import { ServiceManager } from '@jupyterlab/services'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { CodeConsole, ConsolePanel } from '@jupyterlab/console'; diff --git a/tests/test-console/src/widget.spec.ts b/tests/test-console/src/widget.spec.ts index 5900cfc3d3f0..ca97a02d6d67 100644 --- a/tests/test-console/src/widget.spec.ts +++ b/tests/test-console/src/widget.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { ClientSession } from '@jupyterlab/apputils'; diff --git a/tests/test-coreutils/package.json b/tests/test-coreutils/package.json index 85f203e9f631..9783d1cce35e 100644 --- a/tests/test-coreutils/package.json +++ b/tests/test-coreutils/package.json @@ -14,9 +14,9 @@ "dependencies": { "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/signaling": "^1.3.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/signaling": "^1.3.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-coreutils/src/activitymonitor.spec.ts b/tests/test-coreutils/src/activitymonitor.spec.ts index 4dfab6c70761..12ee17c2ad36 100644 --- a/tests/test-coreutils/src/activitymonitor.spec.ts +++ b/tests/test-coreutils/src/activitymonitor.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; import { ActivityMonitor } from '@jupyterlab/coreutils'; diff --git a/tests/test-coreutils/src/restorablepool.spec.ts b/tests/test-coreutils/src/restorablepool.spec.ts index 389c521fc5d9..f7533edf8d0c 100644 --- a/tests/test-coreutils/src/restorablepool.spec.ts +++ b/tests/test-coreutils/src/restorablepool.spec.ts @@ -7,9 +7,9 @@ import { RestorablePool } from '@jupyterlab/coreutils'; import { signalToPromise } from '@jupyterlab/testutils'; -import { IObservableDisposable } from '@phosphor/disposable'; +import { IObservableDisposable } from '@lumino/disposable'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; const namespace = 'restorable-pool-test'; diff --git a/tests/test-coreutils/src/settingregistry.spec.ts b/tests/test-coreutils/src/settingregistry.spec.ts index 34142198ffe9..50b68fb46397 100644 --- a/tests/test-coreutils/src/settingregistry.spec.ts +++ b/tests/test-coreutils/src/settingregistry.spec.ts @@ -13,7 +13,7 @@ import { import { signalToPromise } from '@jupyterlab/testutils'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; class TestConnector extends StateDB { schemas: { [key: string]: ISettingRegistry.ISchema } = {}; diff --git a/tests/test-coreutils/src/statedb.spec.ts b/tests/test-coreutils/src/statedb.spec.ts index c121ddd9080c..615db791f964 100644 --- a/tests/test-coreutils/src/statedb.spec.ts +++ b/tests/test-coreutils/src/statedb.spec.ts @@ -5,7 +5,7 @@ import { expect } from 'chai'; import { StateDB } from '@jupyterlab/coreutils'; -import { PromiseDelegate, ReadonlyJSONObject } from '@phosphor/coreutils'; +import { PromiseDelegate, ReadonlyJSONObject } from '@lumino/coreutils'; describe('StateDB', () => { describe('#constructor()', () => { diff --git a/tests/test-csvviewer/package.json b/tests/test-csvviewer/package.json index ff1c43430b92..a3b2b8d85ce3 100644 --- a/tests/test-csvviewer/package.json +++ b/tests/test-csvviewer/package.json @@ -20,9 +20,9 @@ "@jupyterlab/docregistry": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/datagrid": "^0.1.11", - "@phosphor/widgets": "^1.9.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/datagrid": "^0.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "csv-spectrum": "~1.0.0", "simulate-event": "~1.4.0" diff --git a/tests/test-csvviewer/src/toolbar.spec.ts b/tests/test-csvviewer/src/toolbar.spec.ts index 520e2a116066..d4985f21fc9a 100644 --- a/tests/test-csvviewer/src/toolbar.spec.ts +++ b/tests/test-csvviewer/src/toolbar.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { simulate } from 'simulate-event'; diff --git a/tests/test-csvviewer/src/widget.spec.ts b/tests/test-csvviewer/src/widget.spec.ts index 6f3850ab94e7..983e6455beff 100644 --- a/tests/test-csvviewer/src/widget.spec.ts +++ b/tests/test-csvviewer/src/widget.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { ServiceManager } from '@jupyterlab/services'; @@ -14,7 +14,7 @@ import { DocumentRegistry, TextModelFactory } from '@jupyterlab/docregistry'; -import { JSONModel, DataGrid, CellRenderer } from '@phosphor/datagrid'; +import { JSONModel, DataGrid, CellRenderer } from '@lumino/datagrid'; function createContext(): Context { const factory = new TextModelFactory(); @@ -80,7 +80,7 @@ describe('csvviewer/widget', () => { } function createGridSearchService(model: JSONModel): GridSearchService { const grid = new DataGrid(); - grid.model = model; + grid.dataModel = model; return new GridSearchService(grid); } @@ -103,7 +103,7 @@ describe('csvviewer/widget', () => { value: model.data('body', row, column), row, column - } as CellRenderer.ICellConfig; + } as CellRenderer.CellConfig; return cellRenderer(cellConfig); } diff --git a/tests/test-docmanager/package.json b/tests/test-docmanager/package.json index 34fec4596bb8..574a4a8da2e2 100644 --- a/tests/test-docmanager/package.json +++ b/tests/test-docmanager/package.json @@ -20,9 +20,9 @@ "@jupyterlab/docregistry": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0" }, "devDependencies": { diff --git a/tests/test-docmanager/src/manager.spec.ts b/tests/test-docmanager/src/manager.spec.ts index 8caac512fdd5..f088b4bd8f38 100644 --- a/tests/test-docmanager/src/manager.spec.ts +++ b/tests/test-docmanager/src/manager.spec.ts @@ -5,7 +5,7 @@ import { expect } from 'chai'; import { ServiceManager } from '@jupyterlab/services'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { DocumentManager } from '@jupyterlab/docmanager'; diff --git a/tests/test-docmanager/src/savehandler.spec.ts b/tests/test-docmanager/src/savehandler.spec.ts index 5da41197cad8..a196e6b960b2 100644 --- a/tests/test-docmanager/src/savehandler.spec.ts +++ b/tests/test-docmanager/src/savehandler.spec.ts @@ -13,7 +13,7 @@ import { import { SaveHandler } from '@jupyterlab/docmanager'; -import { PromiseDelegate, UUID } from '@phosphor/coreutils'; +import { PromiseDelegate, UUID } from '@lumino/coreutils'; import { acceptDialog, diff --git a/tests/test-docmanager/src/widgetmanager.spec.ts b/tests/test-docmanager/src/widgetmanager.spec.ts index 615f111daefc..bcaae968b25c 100644 --- a/tests/test-docmanager/src/widgetmanager.spec.ts +++ b/tests/test-docmanager/src/widgetmanager.spec.ts @@ -16,11 +16,11 @@ import { IDocumentWidget } from '@jupyterlab/docregistry'; -import { PromiseDelegate, UUID } from '@phosphor/coreutils'; +import { PromiseDelegate, UUID } from '@lumino/coreutils'; -import { IMessageHandler, Message, MessageLoop } from '@phosphor/messaging'; +import { IMessageHandler, Message, MessageLoop } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { acceptDialog, dismissDialog } from '@jupyterlab/testutils'; diff --git a/tests/test-docregistry/package.json b/tests/test-docregistry/package.json index ff95ca6a9bba..dc253d763608 100644 --- a/tests/test-docregistry/package.json +++ b/tests/test-docregistry/package.json @@ -16,11 +16,11 @@ "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/disposable": "^1.3.0", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/disposable": "^1.3.0", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-docregistry/src/context.spec.ts b/tests/test-docregistry/src/context.spec.ts index 35332d077487..a44a7e6fd513 100644 --- a/tests/test-docregistry/src/context.spec.ts +++ b/tests/test-docregistry/src/context.spec.ts @@ -3,11 +3,11 @@ import { expect } from 'chai'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { Contents, ServiceManager } from '@jupyterlab/services'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { Context, diff --git a/tests/test-docregistry/src/default.spec.ts b/tests/test-docregistry/src/default.spec.ts index 25712e3cbe0c..3350884db224 100644 --- a/tests/test-docregistry/src/default.spec.ts +++ b/tests/test-docregistry/src/default.spec.ts @@ -3,11 +3,11 @@ import { expect } from 'chai'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { ABCWidgetFactory, diff --git a/tests/test-docregistry/src/mimedocument.spec.ts b/tests/test-docregistry/src/mimedocument.spec.ts index d99c1d66182d..4c7febe03fd9 100644 --- a/tests/test-docregistry/src/mimedocument.spec.ts +++ b/tests/test-docregistry/src/mimedocument.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { BoxLayout } from '@phosphor/widgets'; +import { BoxLayout } from '@lumino/widgets'; import { DocumentRegistry, diff --git a/tests/test-docregistry/src/registry.spec.ts b/tests/test-docregistry/src/registry.spec.ts index 6384c63392c2..98351bf2ab57 100644 --- a/tests/test-docregistry/src/registry.spec.ts +++ b/tests/test-docregistry/src/registry.spec.ts @@ -3,13 +3,13 @@ import { expect } from 'chai'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; -import { DisposableDelegate, IDisposable } from '@phosphor/disposable'; +import { DisposableDelegate, IDisposable } from '@lumino/disposable'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { ABCWidgetFactory, diff --git a/tests/test-filebrowser/package.json b/tests/test-filebrowser/package.json index 1fa70006cb94..0a9a2eb1eca7 100644 --- a/tests/test-filebrowser/package.json +++ b/tests/test-filebrowser/package.json @@ -23,10 +23,10 @@ "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", "@jupyterlab/ui-components": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "simulate-event": "~1.4.0" }, diff --git a/tests/test-filebrowser/src/crumbs.spec.ts b/tests/test-filebrowser/src/crumbs.spec.ts index 8ce03e54c59a..e0db5f6e2ec2 100644 --- a/tests/test-filebrowser/src/crumbs.spec.ts +++ b/tests/test-filebrowser/src/crumbs.spec.ts @@ -15,9 +15,9 @@ import { framePromise, signalToPromise } from '@jupyterlab/testutils'; import { defaultIconRegistry, IIconRegistry } from '@jupyterlab/ui-components'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { simulate } from 'simulate-event'; diff --git a/tests/test-filebrowser/src/model.spec.ts b/tests/test-filebrowser/src/model.spec.ts index cd2542ba0c79..74385354403e 100644 --- a/tests/test-filebrowser/src/model.spec.ts +++ b/tests/test-filebrowser/src/model.spec.ts @@ -5,7 +5,7 @@ import { expect } from 'chai'; import { StateDB, PageConfig } from '@jupyterlab/coreutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { DocumentManager, IDocumentManager } from '@jupyterlab/docmanager'; @@ -32,7 +32,7 @@ import { import { defaultIconRegistry, IIconRegistry } from '@jupyterlab/ui-components'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; /** * A contents manager that delays requests by less each time it is called diff --git a/tests/test-filebrowser/src/openfiledialog.spec.ts b/tests/test-filebrowser/src/openfiledialog.spec.ts index 0e53d212c8dd..6442f1e5762f 100644 --- a/tests/test-filebrowser/src/openfiledialog.spec.ts +++ b/tests/test-filebrowser/src/openfiledialog.spec.ts @@ -1,7 +1,7 @@ // Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; import { DocumentManager, IDocumentManager } from '@jupyterlab/docmanager'; import { DocumentRegistry, TextModelFactory } from '@jupyterlab/docregistry'; diff --git a/tests/test-fileeditor/package.json b/tests/test-fileeditor/package.json index 8432c03f84b4..75175e592044 100644 --- a/tests/test-fileeditor/package.json +++ b/tests/test-fileeditor/package.json @@ -17,9 +17,9 @@ "@jupyterlab/fileeditor": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-fileeditor/src/widget.spec.ts b/tests/test-fileeditor/src/widget.spec.ts index 09d38c8a4938..9cb741ca867e 100644 --- a/tests/test-fileeditor/src/widget.spec.ts +++ b/tests/test-fileeditor/src/widget.spec.ts @@ -3,13 +3,13 @@ import { expect } from 'chai'; -import { MessageLoop, Message } from '@phosphor/messaging'; +import { MessageLoop, Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { simulate } from 'simulate-event'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { ServiceManager } from '@jupyterlab/services'; diff --git a/tests/test-imageviewer/package.json b/tests/test-imageviewer/package.json index 7077a3c6f89d..ea52e9081226 100644 --- a/tests/test-imageviewer/package.json +++ b/tests/test-imageviewer/package.json @@ -16,9 +16,9 @@ "@jupyterlab/imageviewer": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-imageviewer/src/widget.spec.ts b/tests/test-imageviewer/src/widget.spec.ts index bbefadd6684b..98b150481813 100644 --- a/tests/test-imageviewer/src/widget.spec.ts +++ b/tests/test-imageviewer/src/widget.spec.ts @@ -3,13 +3,13 @@ import { expect } from 'chai'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { Contents, ServiceManager } from '@jupyterlab/services'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { Base64ModelFactory, diff --git a/tests/test-inspector/package.json b/tests/test-inspector/package.json index 5c3e302b9820..76118e85aedb 100644 --- a/tests/test-inspector/package.json +++ b/tests/test-inspector/package.json @@ -14,8 +14,8 @@ "dependencies": { "@jupyterlab/inspector": "^2.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-inspector/src/inspector.spec.ts b/tests/test-inspector/src/inspector.spec.ts index 47002113d82c..e8a4de6c1f3e 100644 --- a/tests/test-inspector/src/inspector.spec.ts +++ b/tests/test-inspector/src/inspector.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { IInspector, InspectorPanel } from '@jupyterlab/inspector'; diff --git a/tests/test-logconsole/package.json b/tests/test-logconsole/package.json index 0aaf548b7848..4dab42e9f30a 100644 --- a/tests/test-logconsole/package.json +++ b/tests/test-logconsole/package.json @@ -15,8 +15,8 @@ "@jupyterlab/logconsole": "^1.0.0-alpha.1", "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", "ts-jest": "^24.0.2" diff --git a/tests/test-logconsole/src/logger.spec.ts b/tests/test-logconsole/src/logger.spec.ts index d6f68eac62c2..ab1fdcdec0d3 100644 --- a/tests/test-logconsole/src/logger.spec.ts +++ b/tests/test-logconsole/src/logger.spec.ts @@ -10,7 +10,7 @@ import { import { RenderMimeRegistry } from '@jupyterlab/rendermime'; -import { Signal, ISignal } from '@phosphor/signaling'; +import { Signal, ISignal } from '@lumino/signaling'; class SignalLogger { constructor(signal: ISignal) { diff --git a/tests/test-logconsole/src/registry.spec.ts b/tests/test-logconsole/src/registry.spec.ts index ffc5d709dcca..6668fb7bca9f 100644 --- a/tests/test-logconsole/src/registry.spec.ts +++ b/tests/test-logconsole/src/registry.spec.ts @@ -8,7 +8,7 @@ import { IRenderMimeRegistry } from '@jupyterlab/rendermime'; -import { Signal, ISignal } from '@phosphor/signaling'; +import { Signal, ISignal } from '@lumino/signaling'; class SignalLogger { constructor(signal: ISignal) { diff --git a/tests/test-logconsole/src/widget.spec.ts b/tests/test-logconsole/src/widget.spec.ts index 169f117ec03b..985769c499b3 100644 --- a/tests/test-logconsole/src/widget.spec.ts +++ b/tests/test-logconsole/src/widget.spec.ts @@ -9,8 +9,8 @@ import { standardRendererFactories as initialFactories } from '@jupyterlab/rendermime'; -import { Signal, ISignal } from '@phosphor/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Signal, ISignal } from '@lumino/signaling'; +import { Widget } from '@lumino/widgets'; class SignalLogger { constructor(signal: ISignal) { @@ -44,7 +44,7 @@ function anyAncestor(el: Element, test: (el: Element) => boolean) { return false; } -function isHiddenPhosphor(el: Element) { +function isHiddenLumino(el: Element) { return el.classList.contains('p-mod-hidden'); } @@ -103,13 +103,13 @@ describe('LogConsolePanel', () => { const nodeA = logConsole.node.querySelector('#A'); const nodeB = logConsole.node.querySelector('#B'); expect(nodeA).not.toBeNull(); - expect(anyAncestor(nodeA, isHiddenPhosphor)).toBe(false); + expect(anyAncestor(nodeA, isHiddenLumino)).toBe(false); expect(nodeB).not.toBeNull(); - expect(anyAncestor(nodeB, isHiddenPhosphor)).toBe(true); + expect(anyAncestor(nodeB, isHiddenLumino)).toBe(true); logConsole.source = 'B'; - expect(anyAncestor(nodeA, isHiddenPhosphor)).toBe(true); - expect(anyAncestor(nodeB, isHiddenPhosphor)).toBe(false); + expect(anyAncestor(nodeA, isHiddenLumino)).toBe(true); + expect(anyAncestor(nodeB, isHiddenLumino)).toBe(false); }); it('emits a source changed signal if changed', () => { diff --git a/tests/test-mainmenu/package.json b/tests/test-mainmenu/package.json index 50a49ffcb074..fca2d321ae35 100644 --- a/tests/test-mainmenu/package.json +++ b/tests/test-mainmenu/package.json @@ -15,9 +15,9 @@ "@jupyterlab/apputils": "^2.0.0-alpha.1", "@jupyterlab/mainmenu": "^2.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/commands": "^1.7.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/commands": "^1.7.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-mainmenu/src/edit.spec.ts b/tests/test-mainmenu/src/edit.spec.ts index 93bdf5026952..768e6eb1d229 100644 --- a/tests/test-mainmenu/src/edit.spec.ts +++ b/tests/test-mainmenu/src/edit.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { WidgetTracker } from '@jupyterlab/apputils'; diff --git a/tests/test-mainmenu/src/file.spec.ts b/tests/test-mainmenu/src/file.spec.ts index 0bb66fdb5fb7..ea274bb26f80 100644 --- a/tests/test-mainmenu/src/file.spec.ts +++ b/tests/test-mainmenu/src/file.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { WidgetTracker } from '@jupyterlab/apputils'; diff --git a/tests/test-mainmenu/src/help.spec.ts b/tests/test-mainmenu/src/help.spec.ts index 69417825b5cc..411aa61ac3b2 100644 --- a/tests/test-mainmenu/src/help.spec.ts +++ b/tests/test-mainmenu/src/help.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; import { HelpMenu } from '@jupyterlab/mainmenu'; diff --git a/tests/test-mainmenu/src/kernel.spec.ts b/tests/test-mainmenu/src/kernel.spec.ts index 42c7c5e1b17e..55796f849358 100644 --- a/tests/test-mainmenu/src/kernel.spec.ts +++ b/tests/test-mainmenu/src/kernel.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { WidgetTracker } from '@jupyterlab/apputils'; diff --git a/tests/test-mainmenu/src/labmenu.spec.ts b/tests/test-mainmenu/src/labmenu.spec.ts index 9b71628988af..bd1ddbe5f1c8 100644 --- a/tests/test-mainmenu/src/labmenu.spec.ts +++ b/tests/test-mainmenu/src/labmenu.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { ArrayExt } from '@phosphor/algorithm'; +import { ArrayExt } from '@lumino/algorithm'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; import { JupyterLabMenu } from '@jupyterlab/mainmenu'; diff --git a/tests/test-mainmenu/src/mainmenu.spec.ts b/tests/test-mainmenu/src/mainmenu.spec.ts index 2d42ccc34ce6..facbdd4435a7 100644 --- a/tests/test-mainmenu/src/mainmenu.spec.ts +++ b/tests/test-mainmenu/src/mainmenu.spec.ts @@ -3,11 +3,11 @@ import { expect } from 'chai'; -import { find, ArrayExt } from '@phosphor/algorithm'; +import { find, ArrayExt } from '@lumino/algorithm'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Menu } from '@phosphor/widgets'; +import { Menu } from '@lumino/widgets'; import { MainMenu, diff --git a/tests/test-mainmenu/src/run.spec.ts b/tests/test-mainmenu/src/run.spec.ts index 2a9f2aa8b7d1..316c5cf85d86 100644 --- a/tests/test-mainmenu/src/run.spec.ts +++ b/tests/test-mainmenu/src/run.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { WidgetTracker } from '@jupyterlab/apputils'; diff --git a/tests/test-mainmenu/src/util.ts b/tests/test-mainmenu/src/util.ts index 175980e2c2a9..3a2fb787f45c 100644 --- a/tests/test-mainmenu/src/util.ts +++ b/tests/test-mainmenu/src/util.ts @@ -3,7 +3,7 @@ import { IMenuExtender } from '@jupyterlab/mainmenu'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; /** * Given a widget and a set containing IMenuExtenders, diff --git a/tests/test-mainmenu/src/view.spec.ts b/tests/test-mainmenu/src/view.spec.ts index b301e52a206f..96243d258fe0 100644 --- a/tests/test-mainmenu/src/view.spec.ts +++ b/tests/test-mainmenu/src/view.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { CommandRegistry } from '@phosphor/commands'; +import { CommandRegistry } from '@lumino/commands'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { WidgetTracker } from '@jupyterlab/apputils'; diff --git a/tests/test-notebook/package.json b/tests/test-notebook/package.json index c04b4ddcd3f4..58ecac1c99fa 100644 --- a/tests/test-notebook/package.json +++ b/tests/test-notebook/package.json @@ -26,10 +26,10 @@ "@jupyterlab/notebook": "^2.0.0-alpha.1", "@jupyterlab/observables": "^3.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "simulate-event": "~1.4.0" }, diff --git a/tests/test-notebook/src/actions.spec.ts b/tests/test-notebook/src/actions.spec.ts index 1db0cb575cf7..58914311ffed 100644 --- a/tests/test-notebook/src/actions.spec.ts +++ b/tests/test-notebook/src/actions.spec.ts @@ -5,7 +5,7 @@ import { expect } from 'chai'; import { ClientSession } from '@jupyterlab/apputils'; -import { each } from '@phosphor/algorithm'; +import { each } from '@lumino/algorithm'; import { CodeCell, MarkdownCell, RawCell } from '@jupyterlab/cells'; @@ -22,7 +22,7 @@ import { sleep, NBTestUtils } from '@jupyterlab/testutils'; -import { JSONObject, JSONArray } from '@phosphor/coreutils'; +import { JSONObject, JSONArray } from '@lumino/coreutils'; const ERROR_INPUT = 'a = foo'; diff --git a/tests/test-notebook/src/default-toolbar.spec.ts b/tests/test-notebook/src/default-toolbar.spec.ts index 9de28dffcb38..89cf06781ab4 100644 --- a/tests/test-notebook/src/default-toolbar.spec.ts +++ b/tests/test-notebook/src/default-toolbar.spec.ts @@ -5,9 +5,9 @@ import { expect } from 'chai'; import { simulate } from 'simulate-event'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { Context } from '@jupyterlab/docregistry'; diff --git a/tests/test-notebook/src/model.spec.ts b/tests/test-notebook/src/model.spec.ts index 6c8a8686e1ae..f1f318517a67 100644 --- a/tests/test-notebook/src/model.spec.ts +++ b/tests/test-notebook/src/model.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { ArrayExt, toArray } from '@phosphor/algorithm'; +import { ArrayExt, toArray } from '@lumino/algorithm'; import { CodeCellModel } from '@jupyterlab/cells'; diff --git a/tests/test-notebook/src/notebooktools.spec.ts b/tests/test-notebook/src/notebooktools.spec.ts index 08151d03c33b..dabe0e05384e 100644 --- a/tests/test-notebook/src/notebooktools.spec.ts +++ b/tests/test-notebook/src/notebooktools.spec.ts @@ -3,11 +3,11 @@ import { expect } from 'chai'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { TabPanel, Widget } from '@phosphor/widgets'; +import { TabPanel, Widget } from '@lumino/widgets'; -import { JSONValue } from '@phosphor/coreutils'; +import { JSONValue } from '@lumino/coreutils'; import { simulate } from 'simulate-event'; diff --git a/tests/test-notebook/src/widget.spec.ts b/tests/test-notebook/src/widget.spec.ts index 6a1139cd8046..c670f096e4fb 100644 --- a/tests/test-notebook/src/widget.spec.ts +++ b/tests/test-notebook/src/widget.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { MessageLoop, Message } from '@phosphor/messaging'; +import { MessageLoop, Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { generate, simulate } from 'simulate-event'; diff --git a/tests/test-notebook/src/widgetfactory.spec.ts b/tests/test-notebook/src/widgetfactory.spec.ts index b45aed716843..438715936b1e 100644 --- a/tests/test-notebook/src/widgetfactory.spec.ts +++ b/tests/test-notebook/src/widgetfactory.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; import { ToolbarButton } from '@jupyterlab/apputils'; diff --git a/tests/test-observables/package.json b/tests/test-observables/package.json index c60cf4ebc0a7..e08883ed180e 100644 --- a/tests/test-observables/package.json +++ b/tests/test-observables/package.json @@ -14,8 +14,8 @@ "dependencies": { "@jupyterlab/observables": "^3.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-observables/src/modeldb.spec.ts b/tests/test-observables/src/modeldb.spec.ts index 695f77c02c21..cd097539a67f 100644 --- a/tests/test-observables/src/modeldb.spec.ts +++ b/tests/test-observables/src/modeldb.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; import { ModelDB, diff --git a/tests/test-observables/src/observablelist.spec.ts b/tests/test-observables/src/observablelist.spec.ts index e6f990536fff..0ea896d45d3c 100644 --- a/tests/test-observables/src/observablelist.spec.ts +++ b/tests/test-observables/src/observablelist.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; import { ObservableList } from '@jupyterlab/observables'; diff --git a/tests/test-observables/src/undoablelist.spec.ts b/tests/test-observables/src/undoablelist.spec.ts index e6c3b8992092..6cf0c19befd0 100644 --- a/tests/test-observables/src/undoablelist.spec.ts +++ b/tests/test-observables/src/undoablelist.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; import { ObservableUndoableList, ISerializer } from '@jupyterlab/observables'; diff --git a/tests/test-outputarea/package.json b/tests/test-outputarea/package.json index e640c6dc56e0..2534e2c64d3c 100644 --- a/tests/test-outputarea/package.json +++ b/tests/test-outputarea/package.json @@ -17,8 +17,8 @@ "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-outputarea/src/widget.spec.ts b/tests/test-outputarea/src/widget.spec.ts index 2dafbbfbf10f..022868eadaf4 100644 --- a/tests/test-outputarea/src/widget.spec.ts +++ b/tests/test-outputarea/src/widget.spec.ts @@ -7,9 +7,9 @@ import { ClientSession } from '@jupyterlab/apputils'; import { Kernel } from '@jupyterlab/services'; -import { Message } from '@phosphor/messaging'; +import { Message } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { IOutputAreaModel, diff --git a/tests/test-rendermime/package.json b/tests/test-rendermime/package.json index d9352fcf5e4d..093b8061b8af 100644 --- a/tests/test-rendermime/package.json +++ b/tests/test-rendermime/package.json @@ -22,9 +22,9 @@ "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/widgets": "^1.9.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0" }, "devDependencies": { diff --git a/tests/test-rendermime/src/factories.spec.ts b/tests/test-rendermime/src/factories.spec.ts index b846dc02bd3c..58a72ed90421 100644 --- a/tests/test-rendermime/src/factories.spec.ts +++ b/tests/test-rendermime/src/factories.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { JSONObject, JSONValue } from '@phosphor/coreutils'; +import { JSONObject, JSONValue } from '@lumino/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { defaultSanitizer } from '@jupyterlab/apputils'; diff --git a/tests/test-rendermime/src/registry.spec.ts b/tests/test-rendermime/src/registry.spec.ts index 22b5fb825e07..5b8b3af77e71 100644 --- a/tests/test-rendermime/src/registry.spec.ts +++ b/tests/test-rendermime/src/registry.spec.ts @@ -3,15 +3,15 @@ import { expect } from 'chai'; -import { UUID, JSONObject } from '@phosphor/coreutils'; +import { UUID, JSONObject } from '@lumino/coreutils'; import { Contents, Drive, ServiceManager, Session } from '@jupyterlab/services'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; import { PageConfig } from '@jupyterlab/coreutils'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { MathJaxTypesetter } from '@jupyterlab/mathjax2'; diff --git a/tests/test-services/package.json b/tests/test-services/package.json index 6de18913b08b..4830515b9d42 100644 --- a/tests/test-services/package.json +++ b/tests/test-services/package.json @@ -15,9 +15,9 @@ "@jupyterlab/coreutils": "^4.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/algorithm": "^1.2.0", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/signaling": "^1.3.0", + "@lumino/algorithm": "^1.2.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/signaling": "^1.3.0", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^6.3.0", diff --git a/tests/test-services/src/config/config.spec.ts b/tests/test-services/src/config/config.spec.ts index 50ecb63e514b..fee0ca1e8ac4 100644 --- a/tests/test-services/src/config/config.spec.ts +++ b/tests/test-services/src/config/config.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; import { ConfigSection, ConfigWithDefaults } from '@jupyterlab/services'; diff --git a/tests/test-services/src/kernel/comm.spec.ts b/tests/test-services/src/kernel/comm.spec.ts index 346ca807eb78..c77369d76532 100644 --- a/tests/test-services/src/kernel/comm.spec.ts +++ b/tests/test-services/src/kernel/comm.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; import { KernelMessage, Kernel } from '@jupyterlab/services'; diff --git a/tests/test-services/src/kernel/ikernel.spec.ts b/tests/test-services/src/kernel/ikernel.spec.ts index 313630a85bdf..50ef737fe200 100644 --- a/tests/test-services/src/kernel/ikernel.spec.ts +++ b/tests/test-services/src/kernel/ikernel.spec.ts @@ -5,9 +5,9 @@ import { expect } from 'chai'; import { PageConfig } from '@jupyterlab/coreutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; import { Kernel, KernelMessage } from '@jupyterlab/services'; diff --git a/tests/test-services/src/kernel/kernel.spec.ts b/tests/test-services/src/kernel/kernel.spec.ts index a8d3a29d6785..5a0ad236d626 100644 --- a/tests/test-services/src/kernel/kernel.spec.ts +++ b/tests/test-services/src/kernel/kernel.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; import { Kernel } from '@jupyterlab/services'; diff --git a/tests/test-services/src/kernel/manager.spec.ts b/tests/test-services/src/kernel/manager.spec.ts index 077257ef2f00..f4771b2bd5b3 100644 --- a/tests/test-services/src/kernel/manager.spec.ts +++ b/tests/test-services/src/kernel/manager.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; import { KernelManager, Kernel } from '@jupyterlab/services'; diff --git a/tests/test-services/src/kernel/validate.spec.ts b/tests/test-services/src/kernel/validate.spec.ts index 15a7fbdc1d93..eb21cc088e23 100644 --- a/tests/test-services/src/kernel/validate.spec.ts +++ b/tests/test-services/src/kernel/validate.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { JSONObject } from '@phosphor/coreutils'; +import { JSONObject } from '@lumino/coreutils'; import { Kernel, KernelMessage } from '@jupyterlab/services'; diff --git a/tests/test-services/src/session/isession.spec.ts b/tests/test-services/src/session/isession.spec.ts index 6bde03d648d1..8f51cb8f97b3 100644 --- a/tests/test-services/src/session/isession.spec.ts +++ b/tests/test-services/src/session/isession.spec.ts @@ -5,9 +5,9 @@ import { expect } from 'chai'; import { PageConfig } from '@jupyterlab/coreutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; import { Kernel, KernelMessage } from '@jupyterlab/services'; diff --git a/tests/test-services/src/session/manager.spec.ts b/tests/test-services/src/session/manager.spec.ts index ff3c31b02810..16335c54c467 100644 --- a/tests/test-services/src/session/manager.spec.ts +++ b/tests/test-services/src/session/manager.spec.ts @@ -3,11 +3,11 @@ import { expect } from 'chai'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; -import { JSONExt } from '@phosphor/coreutils'; +import { JSONExt } from '@lumino/coreutils'; import { Kernel, diff --git a/tests/test-services/src/session/session.spec.ts b/tests/test-services/src/session/session.spec.ts index a98d55200ab9..e30378258502 100644 --- a/tests/test-services/src/session/session.spec.ts +++ b/tests/test-services/src/session/session.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; import { ServerConnection } from '@jupyterlab/services'; diff --git a/tests/test-services/src/terminal/manager.spec.ts b/tests/test-services/src/terminal/manager.spec.ts index 7e6195890a0b..ccfb48ec8da6 100644 --- a/tests/test-services/src/terminal/manager.spec.ts +++ b/tests/test-services/src/terminal/manager.spec.ts @@ -3,7 +3,7 @@ import { expect } from 'chai'; -import { toArray } from '@phosphor/algorithm'; +import { toArray } from '@lumino/algorithm'; import { ServerConnection, diff --git a/tests/test-services/src/terminal/terminal.spec.ts b/tests/test-services/src/terminal/terminal.spec.ts index 5ad865a5f9ea..5807d1741b44 100644 --- a/tests/test-services/src/terminal/terminal.spec.ts +++ b/tests/test-services/src/terminal/terminal.spec.ts @@ -5,7 +5,7 @@ import { expect } from 'chai'; import { PageConfig } from '@jupyterlab/coreutils'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; import { TerminalSession } from '@jupyterlab/services'; diff --git a/tests/test-services/src/utils.spec.ts b/tests/test-services/src/utils.spec.ts index 03b58ba2aeb8..715c63c3cfb0 100644 --- a/tests/test-services/src/utils.spec.ts +++ b/tests/test-services/src/utils.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { PromiseDelegate } from '@phosphor/coreutils'; +import { PromiseDelegate } from '@lumino/coreutils'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; import { expectFailure, diff --git a/tests/test-services/src/utils.ts b/tests/test-services/src/utils.ts index 081d19d6490c..f136caec5801 100644 --- a/tests/test-services/src/utils.ts +++ b/tests/test-services/src/utils.ts @@ -5,13 +5,9 @@ import encoding from 'text-encoding'; import WebSocket from 'ws'; -import { UUID } from '@phosphor/coreutils'; +import { UUID } from '@lumino/coreutils'; -import { - JSONObject, - JSONPrimitive, - PromiseDelegate -} from '@phosphor/coreutils'; +import { JSONObject, JSONPrimitive, PromiseDelegate } from '@lumino/coreutils'; import { Response } from 'node-fetch'; diff --git a/tests/test-statusbar/package.json b/tests/test-statusbar/package.json index aa5fc75f9da2..765ab27a30a2 100644 --- a/tests/test-statusbar/package.json +++ b/tests/test-statusbar/package.json @@ -14,8 +14,8 @@ "dependencies": { "@jupyterlab/statusbar": "^2.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/signaling": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/signaling": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0", "jest": "^24.7.1", "ts-jest": "^24.0.2" diff --git a/tests/test-statusbar/src/statusbar.spec.ts b/tests/test-statusbar/src/statusbar.spec.ts index 1cddb79aa428..1ed876b84e55 100644 --- a/tests/test-statusbar/src/statusbar.spec.ts +++ b/tests/test-statusbar/src/statusbar.spec.ts @@ -3,9 +3,9 @@ import { expect } from 'chai'; -import { Signal } from '@phosphor/signaling'; +import { Signal } from '@lumino/signaling'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { StatusBar } from '@jupyterlab/statusbar'; diff --git a/tests/test-terminal/package.json b/tests/test-terminal/package.json index c09c8e87e942..432f8ba21d91 100644 --- a/tests/test-terminal/package.json +++ b/tests/test-terminal/package.json @@ -19,8 +19,8 @@ "@jupyterlab/services": "^5.0.0-alpha.1", "@jupyterlab/terminal": "^2.0.0-alpha.1", "@jupyterlab/testutils": "^2.0.0-alpha.1", - "@phosphor/messaging": "^1.3.0", - "@phosphor/widgets": "^1.9.0", + "@lumino/messaging": "^1.3.0", + "@lumino/widgets": "^1.9.0", "chai": "^4.2.0" }, "devDependencies": { diff --git a/tests/test-terminal/src/terminal.spec.ts b/tests/test-terminal/src/terminal.spec.ts index ef30b626ee16..462dc581b1b3 100644 --- a/tests/test-terminal/src/terminal.spec.ts +++ b/tests/test-terminal/src/terminal.spec.ts @@ -5,9 +5,9 @@ import { expect } from 'chai'; import { TerminalSession } from '@jupyterlab/services'; -import { Message, MessageLoop } from '@phosphor/messaging'; +import { Message, MessageLoop } from '@lumino/messaging'; -import { Widget } from '@phosphor/widgets'; +import { Widget } from '@lumino/widgets'; import { Terminal } from '@jupyterlab/terminal'; diff --git a/testutils/package.json b/testutils/package.json index c35c6ef3e9d3..a2c9c81ada09 100644 --- a/testutils/package.json +++ b/testutils/package.json @@ -40,8 +40,8 @@ "@jupyterlab/notebook": "^2.0.0-alpha.1", "@jupyterlab/rendermime": "^2.0.0-alpha.1", "@jupyterlab/services": "^5.0.0-alpha.1", - "@phosphor/coreutils": "^1.3.1", - "@phosphor/signaling": "^1.3.0", + "@lumino/coreutils": "^1.3.1", + "@lumino/signaling": "^1.3.0", "fs-extra": "^8.0.1", "identity-obj-proxy": "^3.0.0", "json-to-html": "~0.1.2", diff --git a/testutils/src/index.ts b/testutils/src/index.ts index 3dc36ccfd3bd..f98a4094edf6 100644 --- a/testutils/src/index.ts +++ b/testutils/src/index.ts @@ -7,9 +7,9 @@ import { ServiceManager } from '@jupyterlab/services'; import { ClientSession } from '@jupyterlab/apputils'; -import { PromiseDelegate, UUID } from '@phosphor/coreutils'; +import { PromiseDelegate, UUID } from '@lumino/coreutils'; -import { ISignal, Signal } from '@phosphor/signaling'; +import { ISignal, Signal } from '@lumino/signaling'; import { TextModelFactory, DocumentRegistry, diff --git a/yarn.lock b/yarn.lock index ab9fdbb88242..69b0c4f4e5be 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,140 +2,147 @@ # yarn lockfile v1 -"@babel/code-frame@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" - integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" + integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== dependencies: "@babel/highlight" "^7.0.0" "@babel/core@^7.1.0": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.5.tgz#081f97e8ffca65a9b4b0fdc7e274e703f000c06a" - integrity sha512-OvjIh6aqXtlsA8ujtGKfC7LYWksYSX8yQcM8Ay3LuvVeQ63lcOKgoZWVqcpFwkd29aYU9rVx7jxhfhiEDV9MZA== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.4.4" - "@babel/helpers" "^7.4.4" - "@babel/parser" "^7.4.5" - "@babel/template" "^7.4.4" - "@babel/traverse" "^7.4.5" - "@babel/types" "^7.4.4" - convert-source-map "^1.1.0" + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.4.tgz#37e864532200cb6b50ee9a4045f5f817840166ab" + integrity sha512-+bYbx56j4nYBmpsWtnPUsKW3NdnYxbqyfrP2w9wILBuHzdfIKz9prieZK0DFPyIzkjYVUe4QkusGL07r5pXznQ== + dependencies: + "@babel/code-frame" "^7.5.5" + "@babel/generator" "^7.7.4" + "@babel/helpers" "^7.7.4" + "@babel/parser" "^7.7.4" + "@babel/template" "^7.7.4" + "@babel/traverse" "^7.7.4" + "@babel/types" "^7.7.4" + convert-source-map "^1.7.0" debug "^4.1.0" json5 "^2.1.0" - lodash "^4.17.11" + lodash "^4.17.13" resolve "^1.3.2" semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.4.0", "@babel/generator@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.4.tgz#174a215eb843fc392c7edcaabeaa873de6e8f041" - integrity sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ== +"@babel/generator@^7.4.0", "@babel/generator@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.4.tgz#db651e2840ca9aa66f327dcec1dc5f5fa9611369" + integrity sha512-m5qo2WgdOJeyYngKImbkyQrnUN1mPceaG5BV+G0E3gWsa4l/jCSryWJdM2x8OuGAOyh+3d5pVYfZWCiNFtynxg== dependencies: - "@babel/types" "^7.4.4" + "@babel/types" "^7.7.4" jsesc "^2.5.1" - lodash "^4.17.11" + lodash "^4.17.13" source-map "^0.5.0" - trim-right "^1.0.1" -"@babel/helper-annotate-as-pure@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" - integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q== +"@babel/helper-annotate-as-pure@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.7.4.tgz#bb3faf1e74b74bd547e867e48f551fa6b098b6ce" + integrity sha512-2BQmQgECKzYKFPpiycoF9tlb5HA4lrVyAmLLVK177EcQAqjVLciUb2/R+n1boQ9y5ENV3uz2ZqiNw7QMBBw1Og== dependencies: - "@babel/types" "^7.0.0" + "@babel/types" "^7.7.4" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" - integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w== +"@babel/helper-builder-binary-assignment-operator-visitor@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.7.4.tgz#5f73f2b28580e224b5b9bd03146a4015d6217f5f" + integrity sha512-Biq/d/WtvfftWZ9Uf39hbPBYDUo986m5Bb4zhkeYDGUllF43D+nUe5M6Vuo6/8JDK/0YX/uBdeoQpyaNhNugZQ== dependencies: - "@babel/helper-explode-assignable-expression" "^7.1.0" - "@babel/types" "^7.0.0" + "@babel/helper-explode-assignable-expression" "^7.7.4" + "@babel/types" "^7.7.4" -"@babel/helper-call-delegate@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" - integrity sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ== +"@babel/helper-call-delegate@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.7.4.tgz#621b83e596722b50c0066f9dc37d3232e461b801" + integrity sha512-8JH9/B7J7tCYJ2PpWVpw9JhPuEVHztagNVuQAFBVFYluRMlpG7F1CgKEgGeL6KFqcsIa92ZYVj6DSc0XwmN1ZA== dependencies: - "@babel/helper-hoist-variables" "^7.4.4" - "@babel/traverse" "^7.4.4" - "@babel/types" "^7.4.4" + "@babel/helper-hoist-variables" "^7.7.4" + "@babel/traverse" "^7.7.4" + "@babel/types" "^7.7.4" -"@babel/helper-define-map@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz#6969d1f570b46bdc900d1eba8e5d59c48ba2c12a" - integrity sha512-IX3Ln8gLhZpSuqHJSnTNBWGDE9kdkTEWl21A/K7PQ00tseBwbqCHTvNLHSBd9M0R5rER4h5Rsvj9vw0R5SieBg== +"@babel/helper-create-regexp-features-plugin@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.4.tgz#6d5762359fd34f4da1500e4cff9955b5299aaf59" + integrity sha512-Mt+jBKaxL0zfOIWrfQpnfYCN7/rS6GKx6CCCfuoqVVd+17R8zNDlzVYmIi9qyb2wOk002NsmSTDymkIygDUH7A== dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/types" "^7.4.4" - lodash "^4.17.11" + "@babel/helper-regex" "^7.4.4" + regexpu-core "^4.6.0" -"@babel/helper-explode-assignable-expression@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" - integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA== +"@babel/helper-define-map@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.7.4.tgz#2841bf92eb8bd9c906851546fe6b9d45e162f176" + integrity sha512-v5LorqOa0nVQUvAUTUF3KPastvUt/HzByXNamKQ6RdJRTV7j8rLL+WB5C/MzzWAwOomxDhYFb1wLLxHqox86lg== dependencies: - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.0.0" + "@babel/helper-function-name" "^7.7.4" + "@babel/types" "^7.7.4" + lodash "^4.17.13" -"@babel/helper-function-name@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" - integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== +"@babel/helper-explode-assignable-expression@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.7.4.tgz#fa700878e008d85dc51ba43e9fb835cddfe05c84" + integrity sha512-2/SicuFrNSXsZNBxe5UGdLr+HZg+raWBLE9vC98bdYOKX/U6PY0mdGlYUJdtTDPSU0Lw0PNbKKDpwYHJLn2jLg== dependencies: - "@babel/helper-get-function-arity" "^7.0.0" - "@babel/template" "^7.1.0" - "@babel/types" "^7.0.0" + "@babel/traverse" "^7.7.4" + "@babel/types" "^7.7.4" -"@babel/helper-get-function-arity@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" - integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== +"@babel/helper-function-name@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz#ab6e041e7135d436d8f0a3eca15de5b67a341a2e" + integrity sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ== dependencies: - "@babel/types" "^7.0.0" + "@babel/helper-get-function-arity" "^7.7.4" + "@babel/template" "^7.7.4" + "@babel/types" "^7.7.4" -"@babel/helper-hoist-variables@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" - integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w== +"@babel/helper-get-function-arity@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz#cb46348d2f8808e632f0ab048172130e636005f0" + integrity sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA== dependencies: - "@babel/types" "^7.4.4" + "@babel/types" "^7.7.4" -"@babel/helper-member-expression-to-functions@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" - integrity sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg== +"@babel/helper-hoist-variables@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.7.4.tgz#612384e3d823fdfaaf9fce31550fe5d4db0f3d12" + integrity sha512-wQC4xyvc1Jo/FnLirL6CEgPgPCa8M74tOdjWpRhQYapz5JC7u3NYU1zCVoVAGCE3EaIP9T1A3iW0WLJ+reZlpQ== dependencies: - "@babel/types" "^7.0.0" + "@babel/types" "^7.7.4" -"@babel/helper-module-imports@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" - integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== +"@babel/helper-member-expression-to-functions@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.7.4.tgz#356438e2569df7321a8326644d4b790d2122cb74" + integrity sha512-9KcA1X2E3OjXl/ykfMMInBK+uVdfIVakVe7W7Lg3wfXUNyS3Q1HWLFRwZIjhqiCGbslummPDnmb7vIekS0C1vw== dependencies: - "@babel/types" "^7.0.0" + "@babel/types" "^7.7.4" -"@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz#96115ea42a2f139e619e98ed46df6019b94414b8" - integrity sha512-3Z1yp8TVQf+B4ynN7WoHPKS8EkdTbgAEy0nU0rs/1Kw4pDgmvYH3rz3aI11KgxKCba2cn7N+tqzV1mY2HMN96w== +"@babel/helper-module-imports@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.7.4.tgz#e5a92529f8888bf319a6376abfbd1cebc491ad91" + integrity sha512-dGcrX6K9l8258WFjyDLJwuVKxR4XZfU0/vTUgOQYWEnRD8mgr+p4d6fCUMq/ys0h4CCt/S5JhbvtyErjWouAUQ== dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-simple-access" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/template" "^7.4.4" - "@babel/types" "^7.4.4" - lodash "^4.17.11" + "@babel/types" "^7.7.4" -"@babel/helper-optimise-call-expression@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" - integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== +"@babel/helper-module-transforms@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.7.4.tgz#8d7cdb1e1f8ea3d8c38b067345924ac4f8e0879a" + integrity sha512-ehGBu4mXrhs0FxAqN8tWkzF8GSIGAiEumu4ONZ/hD9M88uHcD+Yu2ttKfOCgwzoesJOJrtQh7trI5YPbRtMmnA== dependencies: - "@babel/types" "^7.0.0" + "@babel/helper-module-imports" "^7.7.4" + "@babel/helper-simple-access" "^7.7.4" + "@babel/helper-split-export-declaration" "^7.7.4" + "@babel/template" "^7.7.4" + "@babel/types" "^7.7.4" + lodash "^4.17.13" + +"@babel/helper-optimise-call-expression@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.7.4.tgz#034af31370d2995242aa4df402c3b7794b2dcdf2" + integrity sha512-VB7gWZ2fDkSuqW6b1AKXkJWO5NyNI3bFL/kK79/30moK57blr6NbH8xcl2XcKCwOmJosftWunZqfO84IGq3ZZg== + dependencies: + "@babel/types" "^7.7.4" "@babel/helper-plugin-utils@^7.0.0": version "7.0.0" @@ -143,442 +150,467 @@ integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== "@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.4.4.tgz#a47e02bc91fb259d2e6727c2a30013e3ac13c4a2" - integrity sha512-Y5nuB/kESmR3tKjU8Nkn1wMGEx1tjJX076HBMeL3XLQCu6vA/YRzuTW0bbb+qRnXvQGn+d6Rx953yffl8vEy7Q== - dependencies: - lodash "^4.17.11" + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.5.5.tgz#0aa6824f7100a2e0e89c1527c23936c152cab351" + integrity sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw== + dependencies: + lodash "^4.17.13" + +"@babel/helper-remap-async-to-generator@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.7.4.tgz#c68c2407350d9af0e061ed6726afb4fff16d0234" + integrity sha512-Sk4xmtVdM9sA/jCI80f+KS+Md+ZHIpjuqmYPk1M7F/upHou5e4ReYmExAiu6PVe65BhJPZA2CY9x9k4BqE5klw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.7.4" + "@babel/helper-wrap-function" "^7.7.4" + "@babel/template" "^7.7.4" + "@babel/traverse" "^7.7.4" + "@babel/types" "^7.7.4" + +"@babel/helper-replace-supers@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.7.4.tgz#3c881a6a6a7571275a72d82e6107126ec9e2cdd2" + integrity sha512-pP0tfgg9hsZWo5ZboYGuBn/bbYT/hdLPVSS4NMmiRJdwWhP0IznPwN9AE1JwyGsjSPLC364I0Qh5p+EPkGPNpg== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.7.4" + "@babel/helper-optimise-call-expression" "^7.7.4" + "@babel/traverse" "^7.7.4" + "@babel/types" "^7.7.4" + +"@babel/helper-simple-access@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.7.4.tgz#a169a0adb1b5f418cfc19f22586b2ebf58a9a294" + integrity sha512-zK7THeEXfan7UlWsG2A6CI/L9jVnI5+xxKZOdej39Y0YtDYKx9raHk5F2EtK9K8DHRTihYwg20ADt9S36GR78A== + dependencies: + "@babel/template" "^7.7.4" + "@babel/types" "^7.7.4" + +"@babel/helper-split-export-declaration@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz#57292af60443c4a3622cf74040ddc28e68336fd8" + integrity sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug== + dependencies: + "@babel/types" "^7.7.4" + +"@babel/helper-wrap-function@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.7.4.tgz#37ab7fed5150e22d9d7266e830072c0cdd8baace" + integrity sha512-VsfzZt6wmsocOaVU0OokwrIytHND55yvyT4BPB9AIIgwr8+x7617hetdJTsuGwygN5RC6mxA9EJztTjuwm2ofg== + dependencies: + "@babel/helper-function-name" "^7.7.4" + "@babel/template" "^7.7.4" + "@babel/traverse" "^7.7.4" + "@babel/types" "^7.7.4" + +"@babel/helpers@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.7.4.tgz#62c215b9e6c712dadc15a9a0dcab76c92a940302" + integrity sha512-ak5NGZGJ6LV85Q1Zc9gn2n+ayXOizryhjSUBTdu5ih1tlVCJeuQENzc4ItyCVhINVXvIT/ZQ4mheGIsfBkpskg== + dependencies: + "@babel/template" "^7.7.4" + "@babel/traverse" "^7.7.4" + "@babel/types" "^7.7.4" -"@babel/helper-remap-async-to-generator@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" - integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-wrap-function" "^7.1.0" - "@babel/template" "^7.1.0" - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz#aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27" - integrity sha512-04xGEnd+s01nY1l15EuMS1rfKktNF+1CkKmHoErDppjAAZL+IUBZpzT748x262HF7fibaQPhbvWUl5HeSt1EXg== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.0.0" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/traverse" "^7.4.4" - "@babel/types" "^7.4.4" - -"@babel/helper-simple-access@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" - integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w== +"@babel/highlight@^7.0.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" + integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== dependencies: - "@babel/template" "^7.1.0" - "@babel/types" "^7.0.0" + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^4.0.0" -"@babel/helper-split-export-declaration@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" - integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== - dependencies: - "@babel/types" "^7.4.4" +"@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.4.tgz#75ab2d7110c2cf2fa949959afb05fa346d2231bb" + integrity sha512-jIwvLO0zCL+O/LmEJQjWA75MQTWwx3c3u2JOTDK5D3/9egrWRRA0/0hk9XXywYnXZVVpzrBYeIQTmhwUaePI9g== -"@babel/helper-wrap-function@^7.1.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" - integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ== +"@babel/plugin-proposal-async-generator-functions@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.7.4.tgz#0351c5ac0a9e927845fffd5b82af476947b7ce6d" + integrity sha512-1ypyZvGRXriY/QP668+s8sFr2mqinhkRDMPSQLNghCQE+GAkFtp+wkHVvg2+Hdki8gwP+NFzJBJ/N1BfzCCDEw== dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/template" "^7.1.0" - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.2.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-remap-async-to-generator" "^7.7.4" + "@babel/plugin-syntax-async-generators" "^7.7.4" -"@babel/helpers@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.4.tgz#868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5" - integrity sha512-igczbR/0SeuPR8RFfC7tGrbdTbFL3QTvH6D+Z6zNxnTe//GyqmtHmDkzrqDmyZ3eSwPqB/LhyKoU5DXsp+Vp2A== +"@babel/plugin-proposal-dynamic-import@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.7.4.tgz#dde64a7f127691758cbfed6cf70de0fa5879d52d" + integrity sha512-StH+nGAdO6qDB1l8sZ5UBV8AC3F2VW2I8Vfld73TMKyptMU9DY5YsJAS8U81+vEtxcH3Y/La0wG0btDrhpnhjQ== dependencies: - "@babel/template" "^7.4.4" - "@babel/traverse" "^7.4.4" - "@babel/types" "^7.4.4" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-dynamic-import" "^7.7.4" -"@babel/highlight@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" - integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== +"@babel/plugin-proposal-json-strings@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.7.4.tgz#7700a6bfda771d8dc81973249eac416c6b4c697d" + integrity sha512-wQvt3akcBTfLU/wYoqm/ws7YOAQKu8EVJEvHip/mzkNtjaclQoCCIqKXFP5/eyfnfbQCDV3OLRIK3mIVyXuZlw== dependencies: - chalk "^2.0.0" - esutils "^2.0.2" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.4.4", "@babel/parser@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.5.tgz#04af8d5d5a2b044a2a1bffacc1e5e6673544e872" - integrity sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew== + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-json-strings" "^7.7.4" -"@babel/plugin-proposal-async-generator-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" - integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ== +"@babel/plugin-proposal-object-rest-spread@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.7.4.tgz#cc57849894a5c774214178c8ab64f6334ec8af71" + integrity sha512-rnpnZR3/iWKmiQyJ3LKJpSwLDcX/nSXhdLk4Aq/tXOApIvyu7qoabrige0ylsAJffaUC51WiBu209Q0U+86OWQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-remap-async-to-generator" "^7.1.0" - "@babel/plugin-syntax-async-generators" "^7.2.0" + "@babel/plugin-syntax-object-rest-spread" "^7.7.4" -"@babel/plugin-proposal-json-strings@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" - integrity sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg== +"@babel/plugin-proposal-optional-catch-binding@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.7.4.tgz#ec21e8aeb09ec6711bc0a39ca49520abee1de379" + integrity sha512-DyM7U2bnsQerCQ+sejcTNZh8KQEUuC3ufzdnVnSiUv/qoGJp2Z3hanKL18KDhsBT5Wj6a7CMT5mdyCNJsEaA9w== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-json-strings" "^7.2.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.7.4" -"@babel/plugin-proposal-object-rest-spread@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.4.tgz#1ef173fcf24b3e2df92a678f027673b55e7e3005" - integrity sha512-dMBG6cSPBbHeEBdFXeQ2QLc5gUpg4Vkaz8octD4aoW/ISO+jBOcsuxYL7bsb5WSu8RLP6boxrBIALEHgoHtO9g== +"@babel/plugin-proposal-unicode-property-regex@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.4.tgz#7c239ccaf09470dbe1d453d50057460e84517ebb" + integrity sha512-cHgqHgYvffluZk85dJ02vloErm3Y6xtH+2noOBOJ2kXOJH3aVCDnj5eR/lVNlTnYu4hndAPJD3rTFjW3qee0PA== dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" -"@babel/plugin-proposal-optional-catch-binding@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" - integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g== +"@babel/plugin-syntax-async-generators@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.7.4.tgz#331aaf310a10c80c44a66b238b6e49132bd3c889" + integrity sha512-Li4+EjSpBgxcsmeEF8IFcfV/+yJGxHXDirDkEoyFjumuwbmfCVHUt0HuowD/iGM7OhIRyXJH9YXxqiH6N815+g== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" -"@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78" - integrity sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA== +"@babel/plugin-syntax-dynamic-import@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.7.4.tgz#29ca3b4415abfe4a5ec381e903862ad1a54c3aec" + integrity sha512-jHQW0vbRGvwQNgyVxwDh4yuXu4bH1f5/EICJLAhl1SblLs2CDhrsmCk+v5XLdE9wxtAFRyxx+P//Iw+a5L/tTg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.5.4" -"@babel/plugin-syntax-async-generators@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" - integrity sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg== +"@babel/plugin-syntax-json-strings@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.7.4.tgz#86e63f7d2e22f9e27129ac4e83ea989a382e86cc" + integrity sha512-QpGupahTQW1mHRXddMG5srgpHWqRLwJnJZKXTigB9RPFCCGbDGCgBeM/iC82ICXp414WeYx/tD54w7M2qRqTMg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-syntax-json-strings@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" - integrity sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg== +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.7.4.tgz#47cf220d19d6d0d7b154304701f468fc1cc6ff46" + integrity sha512-mObR+r+KZq0XhRVS2BrBKBpr5jqrqzlPvS9C9vuOf5ilSwzloAl7RPWLrgKdWS6IreaVrjHxTjtyqFiOisaCwg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" - integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== +"@babel/plugin-syntax-optional-catch-binding@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.7.4.tgz#a3e38f59f4b6233867b4a92dcb0ee05b2c334aa6" + integrity sha512-4ZSuzWgFxqHRE31Glu+fEr/MirNZOMYmD/0BhBWyLyOOQz/gTAl7QmWm2hX1QxEIXsr2vkdlwxIzTyiYRC4xcQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-syntax-optional-catch-binding@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" - integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w== +"@babel/plugin-syntax-top-level-await@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.4.tgz#bd7d8fa7b9fee793a36e4027fd6dd1aa32f946da" + integrity sha512-wdsOw0MvkL1UIgiQ/IFr3ETcfv1xb8RMM0H9wbiDyLaJFyiDg5oZvDLCXosIXmFeIlweML5iOBXAkqddkYNizg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-arrow-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" - integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg== +"@babel/plugin-transform-arrow-functions@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.7.4.tgz#76309bd578addd8aee3b379d809c802305a98a12" + integrity sha512-zUXy3e8jBNPiffmqkHRNDdZM2r8DWhCB7HhcoyZjiK1TxYEluLHAvQuYnTT+ARqRpabWqy/NHkO6e3MsYB5YfA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-async-to-generator@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.4.tgz#a3f1d01f2f21cadab20b33a82133116f14fb5894" - integrity sha512-YiqW2Li8TXmzgbXw+STsSqPBPFnGviiaSp6CYOq55X8GQ2SGVLrXB6pNid8HkqkZAzOH6knbai3snhP7v0fNwA== +"@babel/plugin-transform-async-to-generator@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.7.4.tgz#694cbeae6d613a34ef0292713fa42fb45c4470ba" + integrity sha512-zpUTZphp5nHokuy8yLlyafxCJ0rSlFoSHypTUWgpdwoDXWQcseaect7cJ8Ppk6nunOM6+5rPMkod4OYKPR5MUg== dependencies: - "@babel/helper-module-imports" "^7.0.0" + "@babel/helper-module-imports" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-remap-async-to-generator" "^7.1.0" + "@babel/helper-remap-async-to-generator" "^7.7.4" -"@babel/plugin-transform-block-scoped-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" - integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w== +"@babel/plugin-transform-block-scoped-functions@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.7.4.tgz#d0d9d5c269c78eaea76227ace214b8d01e4d837b" + integrity sha512-kqtQzwtKcpPclHYjLK//3lH8OFsCDuDJBaFhVwf8kqdnF6MN4l618UDlcA7TfRs3FayrHj+svYnSX8MC9zmUyQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-block-scoping@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz#c13279fabf6b916661531841a23c4b7dae29646d" - integrity sha512-jkTUyWZcTrwxu5DD4rWz6rDB5Cjdmgz6z7M7RLXOJyCUkFBawssDGcGh8M/0FTSB87avyJI1HsTwUXp9nKA1PA== +"@babel/plugin-transform-block-scoping@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.7.4.tgz#200aad0dcd6bb80372f94d9e628ea062c58bf224" + integrity sha512-2VBe9u0G+fDt9B5OV5DQH4KBf5DoiNkwFKOz0TCvBWvdAN2rOykCTkrL+jTLxfCAm76l9Qo5OqL7HBOx2dWggg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - lodash "^4.17.11" + lodash "^4.17.13" -"@babel/plugin-transform-classes@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz#0ce4094cdafd709721076d3b9c38ad31ca715eb6" - integrity sha512-/e44eFLImEGIpL9qPxSRat13I5QNRgBLu2hOQJCF7VLy/otSM/sypV1+XaIw5+502RX/+6YaSAPmldk+nhHDPw== +"@babel/plugin-transform-classes@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.7.4.tgz#c92c14be0a1399e15df72667067a8f510c9400ec" + integrity sha512-sK1mjWat7K+buWRuImEzjNf68qrKcrddtpQo3swi9j7dUcG6y6R6+Di039QN2bD1dykeswlagupEmpOatFHHUg== dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-define-map" "^7.4.4" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-optimise-call-expression" "^7.0.0" + "@babel/helper-annotate-as-pure" "^7.7.4" + "@babel/helper-define-map" "^7.7.4" + "@babel/helper-function-name" "^7.7.4" + "@babel/helper-optimise-call-expression" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.4.4" - "@babel/helper-split-export-declaration" "^7.4.4" + "@babel/helper-replace-supers" "^7.7.4" + "@babel/helper-split-export-declaration" "^7.7.4" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" - integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA== +"@babel/plugin-transform-computed-properties@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.7.4.tgz#e856c1628d3238ffe12d668eb42559f79a81910d" + integrity sha512-bSNsOsZnlpLLyQew35rl4Fma3yKWqK3ImWMSC/Nc+6nGjC9s5NFWAer1YQ899/6s9HxO2zQC1WoFNfkOqRkqRQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-destructuring@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz#9d964717829cc9e4b601fc82a26a71a4d8faf20f" - integrity sha512-/aOx+nW0w8eHiEHm+BTERB2oJn5D127iye/SUQl7NjHy0lf+j7h4MKMMSOwdazGq9OxgiNADncE+SRJkCxjZpQ== +"@babel/plugin-transform-destructuring@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.7.4.tgz#2b713729e5054a1135097b6a67da1b6fe8789267" + integrity sha512-4jFMXI1Cu2aXbcXXl8Lr6YubCn6Oc7k9lLsu8v61TZh+1jny2BWmdtvY9zSUlLdGUvcy9DMAWyZEOqjsbeg/wA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3" - integrity sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg== +"@babel/plugin-transform-dotall-regex@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.7.4.tgz#f7ccda61118c5b7a2599a72d5e3210884a021e96" + integrity sha512-mk0cH1zyMa/XHeb6LOTXTbG7uIJ8Rrjlzu91pUx/KS3JpcgaTDwMS8kM+ar8SLOvlL2Lofi4CGBAjCo3a2x+lw== dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.5.4" -"@babel/plugin-transform-duplicate-keys@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3" - integrity sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw== +"@babel/plugin-transform-duplicate-keys@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.7.4.tgz#3d21731a42e3f598a73835299dd0169c3b90ac91" + integrity sha512-g1y4/G6xGWMD85Tlft5XedGaZBCIVN+/P0bs6eabmcPP9egFleMAo65OOjlhcz1njpwagyY3t0nsQC9oTFegJA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-exponentiation-operator@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" - integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A== +"@babel/plugin-transform-exponentiation-operator@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.7.4.tgz#dd30c0191e3a1ba19bcc7e389bdfddc0729d5db9" + integrity sha512-MCqiLfCKm6KEA1dglf6Uqq1ElDIZwFuzz1WH5mTf8k2uQSxEJMbOIEh7IZv7uichr7PMfi5YVSrr1vz+ipp7AQ== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-for-of@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" - integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ== +"@babel/plugin-transform-for-of@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.7.4.tgz#248800e3a5e507b1f103d8b4ca998e77c63932bc" + integrity sha512-zZ1fD1B8keYtEcKF+M1TROfeHTKnijcVQm0yO/Yu1f7qoDoxEIc/+GX6Go430Bg84eM/xwPFp0+h4EbZg7epAA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-function-name@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" - integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA== +"@babel/plugin-transform-function-name@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.7.4.tgz#75a6d3303d50db638ff8b5385d12451c865025b1" + integrity sha512-E/x09TvjHNhsULs2IusN+aJNRV5zKwxu1cpirZyRPw+FyyIKEHPXTsadj48bVpc1R5Qq1B5ZkzumuFLytnbT6g== dependencies: - "@babel/helper-function-name" "^7.1.0" + "@babel/helper-function-name" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" - integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg== +"@babel/plugin-transform-literals@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.7.4.tgz#27fe87d2b5017a2a5a34d1c41a6b9f6a6262643e" + integrity sha512-X2MSV7LfJFm4aZfxd0yLVFrEXAgPqYoDG53Br/tCKiKYfX0MjVjQeWPIhPHHsCqzwQANq+FLN786fF5rgLS+gw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-member-expression-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" - integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA== +"@babel/plugin-transform-member-expression-literals@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.7.4.tgz#aee127f2f3339fc34ce5e3055d7ffbf7aa26f19a" + integrity sha512-9VMwMO7i69LHTesL0RdGy93JU6a+qOPuvB4F4d0kR0zyVjJRVJRaoaGjhtki6SzQUu8yen/vxPKN6CWnCUw6bA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-modules-amd@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6" - integrity sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw== +"@babel/plugin-transform-modules-amd@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.7.4.tgz#276b3845ca2b228f2995e453adc2e6f54d72fb71" + integrity sha512-/542/5LNA18YDtg1F+QHvvUSlxdvjZoD/aldQwkq+E3WCkbEjNSN9zdrOXaSlfg3IfGi22ijzecklF/A7kVZFQ== dependencies: - "@babel/helper-module-transforms" "^7.1.0" + "@babel/helper-module-transforms" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" + babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-commonjs@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.4.tgz#0bef4713d30f1d78c2e59b3d6db40e60192cac1e" - integrity sha512-4sfBOJt58sEo9a2BQXnZq+Q3ZTSAUXyK3E30o36BOGnJ+tvJ6YSxF0PG6kERvbeISgProodWuI9UVG3/FMY6iw== +"@babel/plugin-transform-modules-commonjs@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.7.4.tgz#bee4386e550446343dd52a571eda47851ff857a3" + integrity sha512-k8iVS7Jhc367IcNF53KCwIXtKAH7czev866ThsTgy8CwlXjnKZna2VHwChglzLleYrcHz1eQEIJlGRQxB53nqA== dependencies: - "@babel/helper-module-transforms" "^7.4.4" + "@babel/helper-module-transforms" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-simple-access" "^7.1.0" + "@babel/helper-simple-access" "^7.7.4" + babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-systemjs@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.4.tgz#dc83c5665b07d6c2a7b224c00ac63659ea36a405" - integrity sha512-MSiModfILQc3/oqnG7NrP1jHaSPryO6tA2kOMmAQApz5dayPxWiHqmq4sWH2xF5LcQK56LlbKByCd8Aah/OIkQ== +"@babel/plugin-transform-modules-systemjs@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.7.4.tgz#cd98152339d3e763dfe838b7d4273edaf520bb30" + integrity sha512-y2c96hmcsUi6LrMqvmNDPBBiGCiQu0aYqpHatVVu6kD4mFEXKjyNxd/drc18XXAf9dv7UXjrZwBVmTTGaGP8iw== dependencies: - "@babel/helper-hoist-variables" "^7.4.4" + "@babel/helper-hoist-variables" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" + babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-umd@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" - integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw== +"@babel/plugin-transform-modules-umd@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.7.4.tgz#1027c355a118de0aae9fee00ad7813c584d9061f" + integrity sha512-u2B8TIi0qZI4j8q4C51ktfO7E3cQ0qnaXFI1/OXITordD40tt17g/sXqgNNCcMTcBFKrUPcGDx+TBJuZxLx7tw== dependencies: - "@babel/helper-module-transforms" "^7.1.0" + "@babel/helper-module-transforms" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-named-capturing-groups-regex@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz#9d269fd28a370258199b4294736813a60bbdd106" - integrity sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg== +"@babel/plugin-transform-named-capturing-groups-regex@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.7.4.tgz#fb3bcc4ee4198e7385805007373d6b6f42c98220" + integrity sha512-jBUkiqLKvUWpv9GLSuHUFYdmHg0ujC1JEYoZUfeOOfNydZXp1sXObgyPatpcwjWgsdBGsagWW0cdJpX/DO2jMw== dependencies: - regexp-tree "^0.1.6" + "@babel/helper-create-regexp-features-plugin" "^7.7.4" -"@babel/plugin-transform-new-target@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" - integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA== +"@babel/plugin-transform-new-target@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.7.4.tgz#4a0753d2d60639437be07b592a9e58ee00720167" + integrity sha512-CnPRiNtOG1vRodnsyGX37bHQleHE14B9dnnlgSeEs3ek3fHN1A1SScglTCg1sfbe7sRQ2BUcpgpTpWSfMKz3gg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-object-super@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598" - integrity sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg== +"@babel/plugin-transform-object-super@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.7.4.tgz#48488937a2d586c0148451bf51af9d7dda567262" + integrity sha512-ho+dAEhC2aRnff2JCA0SAK7V2R62zJd/7dmtoe7MHcso4C2mS+vZjn1Pb1pCVZvJs1mgsvv5+7sT+m3Bysb6eg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.1.0" + "@babel/helper-replace-supers" "^7.7.4" -"@babel/plugin-transform-parameters@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" - integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw== +"@babel/plugin-transform-parameters@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.7.4.tgz#da4555c97f39b51ac089d31c7380f03bca4075ce" + integrity sha512-VJwhVePWPa0DqE9vcfptaJSzNDKrWU/4FbYCjZERtmqEs05g3UMXnYMZoXja7JAJ7Y7sPZipwm/pGApZt7wHlw== dependencies: - "@babel/helper-call-delegate" "^7.4.4" - "@babel/helper-get-function-arity" "^7.0.0" + "@babel/helper-call-delegate" "^7.7.4" + "@babel/helper-get-function-arity" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-property-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" - integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ== +"@babel/plugin-transform-property-literals@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.7.4.tgz#2388d6505ef89b266103f450f9167e6bd73f98c2" + integrity sha512-MatJhlC4iHsIskWYyawl53KuHrt+kALSADLQQ/HkhTjX954fkxIEh4q5slL4oRAnsm/eDoZ4q0CIZpcqBuxhJQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-regenerator@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" - integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA== +"@babel/plugin-transform-regenerator@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.4.tgz#d18eac0312a70152d7d914cbed2dc3999601cfc0" + integrity sha512-e7MWl5UJvmPEwFJTwkBlPmqixCtr9yAASBqff4ggXTNicZiwbF8Eefzm6NVgfiBp7JdAGItecnctKTgH44q2Jw== dependencies: regenerator-transform "^0.14.0" -"@babel/plugin-transform-reserved-words@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" - integrity sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw== +"@babel/plugin-transform-reserved-words@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.7.4.tgz#6a7cf123ad175bb5c69aec8f6f0770387ed3f1eb" + integrity sha512-OrPiUB5s5XvkCO1lS7D8ZtHcswIC57j62acAnJZKqGGnHP+TIc/ljQSrgdX/QyOTdEK5COAhuc820Hi1q2UgLQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-shorthand-properties@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" - integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg== +"@babel/plugin-transform-shorthand-properties@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.7.4.tgz#74a0a9b2f6d67a684c6fbfd5f0458eb7ba99891e" + integrity sha512-q+suddWRfIcnyG5YiDP58sT65AJDZSUhXQDZE3r04AuqD6d/XLaQPPXSBzP2zGerkgBivqtQm9XKGLuHqBID6Q== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-spread@^7.2.0": - version "7.2.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" - integrity sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w== +"@babel/plugin-transform-spread@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.7.4.tgz#aa673b356fe6b7e70d69b6e33a17fef641008578" + integrity sha512-8OSs0FLe5/80cndziPlg4R0K6HcWSM0zyNhHhLsmw/Nc5MaA49cAsnoJ/t/YZf8qkG7fD+UjTRaApVDB526d7Q== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-sticky-regex@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" - integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw== +"@babel/plugin-transform-sticky-regex@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.7.4.tgz#ffb68c05090c30732076b1285dc1401b404a123c" + integrity sha512-Ls2NASyL6qtVe1H1hXts9yuEeONV2TJZmplLONkMPUG158CtmnrzW5Q5teibM5UVOFjG0D3IC5mzXR6pPpUY7A== dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-regex" "^7.0.0" -"@babel/plugin-transform-template-literals@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" - integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g== +"@babel/plugin-transform-template-literals@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.7.4.tgz#1eb6411736dd3fe87dbd20cc6668e5121c17d604" + integrity sha512-sA+KxLwF3QwGj5abMHkHgshp9+rRz+oY9uoRil4CyLtgEuE/88dpkeWgNk5qKVsJE9iSfly3nvHapdRiIS2wnQ== dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" + "@babel/helper-annotate-as-pure" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-typeof-symbol@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" - integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw== +"@babel/plugin-transform-typeof-symbol@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.7.4.tgz#3174626214f2d6de322882e498a38e8371b2140e" + integrity sha512-KQPUQ/7mqe2m0B8VecdyaW5XcQYaePyl9R7IsKd+irzj6jvbhoGnRE+M0aNkyAzI07VfUQ9266L5xMARitV3wg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-unicode-regex@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f" - integrity sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA== +"@babel/plugin-transform-unicode-regex@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.7.4.tgz#a3c0f65b117c4c81c5b6484f2a5e7b95346b83ae" + integrity sha512-N77UUIV+WCvE+5yHw+oks3m18/umd7y392Zv7mYTpFqHtkpcc+QUz+gLJNTWVlWROIWeLqY0f3OjZxV5TcXnRw== dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.5.4" "@babel/preset-env@^7.4.3": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.4.5.tgz#2fad7f62983d5af563b5f3139242755884998a58" - integrity sha512-f2yNVXM+FsR5V8UwcFeIHzHWgnhXg3NpRmy0ADvALpnhB0SLbCvrCRr4BLOUYbQNLS+Z0Yer46x9dJXpXewI7w== + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.7.4.tgz#ccaf309ae8d1ee2409c85a4e2b5e280ceee830f8" + integrity sha512-Dg+ciGJjwvC1NIe/DGblMbcGq1HOtKbw8RLl4nIjlfcILKEOkWT/vRqPpumswABEBVudii6dnVwrBtzD7ibm4g== dependencies: - "@babel/helper-module-imports" "^7.0.0" + "@babel/helper-module-imports" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-async-generator-functions" "^7.2.0" - "@babel/plugin-proposal-json-strings" "^7.2.0" - "@babel/plugin-proposal-object-rest-spread" "^7.4.4" - "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-syntax-async-generators" "^7.2.0" - "@babel/plugin-syntax-json-strings" "^7.2.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" - "@babel/plugin-transform-arrow-functions" "^7.2.0" - "@babel/plugin-transform-async-to-generator" "^7.4.4" - "@babel/plugin-transform-block-scoped-functions" "^7.2.0" - "@babel/plugin-transform-block-scoping" "^7.4.4" - "@babel/plugin-transform-classes" "^7.4.4" - "@babel/plugin-transform-computed-properties" "^7.2.0" - "@babel/plugin-transform-destructuring" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/plugin-transform-duplicate-keys" "^7.2.0" - "@babel/plugin-transform-exponentiation-operator" "^7.2.0" - "@babel/plugin-transform-for-of" "^7.4.4" - "@babel/plugin-transform-function-name" "^7.4.4" - "@babel/plugin-transform-literals" "^7.2.0" - "@babel/plugin-transform-member-expression-literals" "^7.2.0" - "@babel/plugin-transform-modules-amd" "^7.2.0" - "@babel/plugin-transform-modules-commonjs" "^7.4.4" - "@babel/plugin-transform-modules-systemjs" "^7.4.4" - "@babel/plugin-transform-modules-umd" "^7.2.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.4.5" - "@babel/plugin-transform-new-target" "^7.4.4" - "@babel/plugin-transform-object-super" "^7.2.0" - "@babel/plugin-transform-parameters" "^7.4.4" - "@babel/plugin-transform-property-literals" "^7.2.0" - "@babel/plugin-transform-regenerator" "^7.4.5" - "@babel/plugin-transform-reserved-words" "^7.2.0" - "@babel/plugin-transform-shorthand-properties" "^7.2.0" - "@babel/plugin-transform-spread" "^7.2.0" - "@babel/plugin-transform-sticky-regex" "^7.2.0" - "@babel/plugin-transform-template-literals" "^7.4.4" - "@babel/plugin-transform-typeof-symbol" "^7.2.0" - "@babel/plugin-transform-unicode-regex" "^7.4.4" - "@babel/types" "^7.4.4" + "@babel/plugin-proposal-async-generator-functions" "^7.7.4" + "@babel/plugin-proposal-dynamic-import" "^7.7.4" + "@babel/plugin-proposal-json-strings" "^7.7.4" + "@babel/plugin-proposal-object-rest-spread" "^7.7.4" + "@babel/plugin-proposal-optional-catch-binding" "^7.7.4" + "@babel/plugin-proposal-unicode-property-regex" "^7.7.4" + "@babel/plugin-syntax-async-generators" "^7.7.4" + "@babel/plugin-syntax-dynamic-import" "^7.7.4" + "@babel/plugin-syntax-json-strings" "^7.7.4" + "@babel/plugin-syntax-object-rest-spread" "^7.7.4" + "@babel/plugin-syntax-optional-catch-binding" "^7.7.4" + "@babel/plugin-syntax-top-level-await" "^7.7.4" + "@babel/plugin-transform-arrow-functions" "^7.7.4" + "@babel/plugin-transform-async-to-generator" "^7.7.4" + "@babel/plugin-transform-block-scoped-functions" "^7.7.4" + "@babel/plugin-transform-block-scoping" "^7.7.4" + "@babel/plugin-transform-classes" "^7.7.4" + "@babel/plugin-transform-computed-properties" "^7.7.4" + "@babel/plugin-transform-destructuring" "^7.7.4" + "@babel/plugin-transform-dotall-regex" "^7.7.4" + "@babel/plugin-transform-duplicate-keys" "^7.7.4" + "@babel/plugin-transform-exponentiation-operator" "^7.7.4" + "@babel/plugin-transform-for-of" "^7.7.4" + "@babel/plugin-transform-function-name" "^7.7.4" + "@babel/plugin-transform-literals" "^7.7.4" + "@babel/plugin-transform-member-expression-literals" "^7.7.4" + "@babel/plugin-transform-modules-amd" "^7.7.4" + "@babel/plugin-transform-modules-commonjs" "^7.7.4" + "@babel/plugin-transform-modules-systemjs" "^7.7.4" + "@babel/plugin-transform-modules-umd" "^7.7.4" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.7.4" + "@babel/plugin-transform-new-target" "^7.7.4" + "@babel/plugin-transform-object-super" "^7.7.4" + "@babel/plugin-transform-parameters" "^7.7.4" + "@babel/plugin-transform-property-literals" "^7.7.4" + "@babel/plugin-transform-regenerator" "^7.7.4" + "@babel/plugin-transform-reserved-words" "^7.7.4" + "@babel/plugin-transform-shorthand-properties" "^7.7.4" + "@babel/plugin-transform-spread" "^7.7.4" + "@babel/plugin-transform-sticky-regex" "^7.7.4" + "@babel/plugin-transform-template-literals" "^7.7.4" + "@babel/plugin-transform-typeof-symbol" "^7.7.4" + "@babel/plugin-transform-unicode-regex" "^7.7.4" + "@babel/types" "^7.7.4" browserslist "^4.6.0" core-js-compat "^3.1.1" invariant "^2.2.2" @@ -586,77 +618,78 @@ semver "^5.5.0" "@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.4.5.tgz#582bb531f5f9dc67d2fcb682979894f75e253f12" - integrity sha512-TuI4qpWZP6lGOGIuGWtp9sPluqYICmbk8T/1vpSysqJxRPkudh/ofFWyqdcMsDf2s7KvDL4/YHgKyvcS3g9CJQ== + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.4.tgz#b23a856751e4bf099262f867767889c0e3fe175b" + integrity sha512-r24eVUUr0QqNZa+qrImUk8fn5SPhHq+IfYvIoIMg0do3GdK9sMdiLKP3GYVVaxpPKORgm8KRKaNTEhAjgIpLMw== dependencies: regenerator-runtime "^0.13.2" -"@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" - integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw== +"@babel/template@^7.4.0", "@babel/template@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.7.4.tgz#428a7d9eecffe27deac0a98e23bf8e3675d2a77b" + integrity sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw== dependencies: "@babel/code-frame" "^7.0.0" - "@babel/parser" "^7.4.4" - "@babel/types" "^7.4.4" - -"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.5.tgz#4e92d1728fd2f1897dafdd321efbff92156c3216" - integrity sha512-Vc+qjynwkjRmIFGxy0KYoPj4FdVDxLej89kMHFsWScq999uX+pwcX4v9mWRjW0KcAYTPAuVQl2LKP1wEVLsp+A== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.4.4" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/parser" "^7.4.5" - "@babel/types" "^7.4.4" + "@babel/parser" "^7.7.4" + "@babel/types" "^7.7.4" + +"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.4.tgz#9c1e7c60fb679fe4fcfaa42500833333c2058558" + integrity sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw== + dependencies: + "@babel/code-frame" "^7.5.5" + "@babel/generator" "^7.7.4" + "@babel/helper-function-name" "^7.7.4" + "@babel/helper-split-export-declaration" "^7.7.4" + "@babel/parser" "^7.7.4" + "@babel/types" "^7.7.4" debug "^4.1.0" globals "^11.1.0" - lodash "^4.17.11" + lodash "^4.17.13" -"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.4.4.tgz#8db9e9a629bb7c29370009b4b779ed93fe57d5f0" - integrity sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ== +"@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.7.4": + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.4.tgz#516570d539e44ddf308c07569c258ff94fde9193" + integrity sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA== dependencies: esutils "^2.0.2" - lodash "^4.17.11" + lodash "^4.17.13" to-fast-properties "^2.0.0" -"@blueprintjs/core@^3.15.0", "@blueprintjs/core@^3.9.0": - version "3.16.2" - resolved "https://registry.yarnpkg.com/@blueprintjs/core/-/core-3.16.2.tgz#c232e44f14d0352b90335c32ca0c2f5fea032517" - integrity sha512-u+mSITWaNDwbdaPrbKx9XyxGsF4725SCAidWjd367ysX7AxCo4PK4SsFQVfXNylXpVWHQhJZekuo7+hdksc9lA== +"@blueprintjs/core@^3.20.0", "@blueprintjs/core@^3.9.0": + version "3.22.0" + resolved "https://registry.yarnpkg.com/@blueprintjs/core/-/core-3.22.0.tgz#6c7e7562a7e5fb7d2924ee3cd0832734eeb24470" + integrity sha512-CzKRY/ZmwmRPoybHFS4HI2GWuphMzIMuBQttaQi3OYQx28vyczKlmhlZPXhbX5pEn4RFajRJvMx086iuJXlnOw== dependencies: - "@blueprintjs/icons" "^3.8.0" + "@blueprintjs/icons" "^3.12.0" "@types/dom4" "^2.0.1" classnames "^2.2" - dom4 "^2.0.1" - normalize.css "^8.0.0" - popper.js "^1.14.1" - react-popper "^1.0.0" - react-transition-group "^2.2.1" - resize-observer-polyfill "^1.5.0" - tslib "^1.9.0" + dom4 "^2.1.5" + normalize.css "^8.0.1" + popper.js "^1.15.0" + react-lifecycles-compat "^3.0.4" + react-popper "^1.3.3" + react-transition-group "^2.9.0" + resize-observer-polyfill "^1.5.1" + tslib "~1.9.0" -"@blueprintjs/icons@^3.8.0": - version "3.9.0" - resolved "https://registry.yarnpkg.com/@blueprintjs/icons/-/icons-3.9.0.tgz#173f70b0d6a573d2a97066c54b4d110ffadeee51" - integrity sha512-kq1Bh6PtOF4PcuxcDme8NmnSlkfO0IV89FriZGo6zSA1+OOzSwzvoKqa6S7vJe8xCPPLO5r7lE9AjeOuGeH97g== +"@blueprintjs/icons@^3.12.0": + version "3.12.0" + resolved "https://registry.yarnpkg.com/@blueprintjs/icons/-/icons-3.12.0.tgz#cea6a6434d9d469e26d87b055e6b6aa5768135b3" + integrity sha512-ERIODstzjBzRIHNqAqyXu4gVsdLyvxAZ0Cp7Dr4+d5BdgDbZYzMYf9ll05daQPOBWaFjLh3lhCRhbfk6MXdD7A== dependencies: classnames "^2.2" - tslib "^1.9.0" + tslib "~1.9.0" "@blueprintjs/select@^3.3.0": - version "3.8.1" - resolved "https://registry.yarnpkg.com/@blueprintjs/select/-/select-3.8.1.tgz#e3a27746731b9cbaa9179620fdf3f3883a176ab9" - integrity sha512-CUWqdikGY04yzEWBFGpHRUfKc2kKP/w9ExXv7hrknuRZDJU8mQwzbPpxMqf/97/2m93vb1nYbjWN+QkSmDgOzQ== + version "3.11.2" + resolved "https://registry.yarnpkg.com/@blueprintjs/select/-/select-3.11.2.tgz#3324db0de44a9f386b957aac1ba3ec774b3eb1e7" + integrity sha512-fU0Km6QI/ayWhzYeu9N1gTj0+L0XUO4KB3u2LfJXgj648UGY8F4HX2ETdJ+XPdtsu6TesrIL7ghMQhtLcvafBg== dependencies: - "@blueprintjs/core" "^3.15.0" + "@blueprintjs/core" "^3.20.0" classnames "^2.2" - tslib "^1.9.0" + tslib "~1.9.0" "@cnakazawa/watch@^1.0.3": version "1.0.3" @@ -666,23 +699,23 @@ exec-sh "^0.3.2" minimist "^1.2.0" -"@evocateur/libnpmaccess@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@evocateur/libnpmaccess/-/libnpmaccess-3.1.0.tgz#e546ee4e4bedca54ed9303948ec54c985cec33e4" - integrity sha512-bfrqZ0v+Il5TJBsgF2oyepeJg34K2pBItapzP+UT1QMIGpUh/Zc1pQql4jrafamZTqP3ZvdJxaElat8B5K3ICA== +"@evocateur/libnpmaccess@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@evocateur/libnpmaccess/-/libnpmaccess-3.1.2.tgz#ecf7f6ce6b004e9f942b098d92200be4a4b1c845" + integrity sha512-KSCAHwNWro0CF2ukxufCitT9K5LjL/KuMmNzSu8wuwN2rjyKHD8+cmOsiybK+W5hdnwc5M1SmRlVCaMHQo+3rg== dependencies: - "@evocateur/npm-registry-fetch" "^3.9.1" + "@evocateur/npm-registry-fetch" "^4.0.0" aproba "^2.0.0" figgy-pudding "^3.5.1" get-stream "^4.0.0" npm-package-arg "^6.1.0" -"@evocateur/libnpmpublish@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@evocateur/libnpmpublish/-/libnpmpublish-1.2.0.tgz#3e0d79fdc0a75f212adabb7c7e341b017effeac2" - integrity sha512-sezhX9FSnPIyrBBvxVocVJVO1uIWPczf6rOmUZSntCWfQMraO8pWTFlDJbroFqPbEqFFHf3eyw8NQ0Eb7OLd1g== +"@evocateur/libnpmpublish@^1.2.2": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@evocateur/libnpmpublish/-/libnpmpublish-1.2.2.tgz#55df09d2dca136afba9c88c759ca272198db9f1a" + integrity sha512-MJrrk9ct1FeY9zRlyeoyMieBjGDG9ihyyD9/Ft6MMrTxql9NyoEx2hw9casTIP4CdqEVu+3nQ2nXxoJ8RCXyFg== dependencies: - "@evocateur/npm-registry-fetch" "^3.9.1" + "@evocateur/npm-registry-fetch" "^4.0.0" aproba "^2.0.0" figgy-pudding "^3.5.1" get-stream "^4.0.0" @@ -692,122 +725,125 @@ semver "^5.5.1" ssri "^6.0.1" -"@evocateur/npm-registry-fetch@^3.9.1": - version "3.9.1" - resolved "https://registry.yarnpkg.com/@evocateur/npm-registry-fetch/-/npm-registry-fetch-3.9.1.tgz#75b3917320e559f6c91e26af17e62b085ec457a2" - integrity sha512-6v1bHbcAypQ+te/1RGSNL4JkK6mcMtcZrUusqo5iKRtYSAig9UJXlOaCcBR+eLywt2DQMNpEwAj24jwWDX5G/w== +"@evocateur/npm-registry-fetch@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@evocateur/npm-registry-fetch/-/npm-registry-fetch-4.0.0.tgz#8c4c38766d8d32d3200fcb0a83f064b57365ed66" + integrity sha512-k1WGfKRQyhJpIr+P17O5vLIo2ko1PFLKwoetatdduUSt/aQ4J2sJrJwwatdI5Z3SiYk/mRH9S3JpdmMFd/IK4g== dependencies: JSONStream "^1.3.4" bluebird "^3.5.1" figgy-pudding "^3.4.1" - lru-cache "^4.1.3" - make-fetch-happen "^4.0.1" + lru-cache "^5.1.1" + make-fetch-happen "^5.0.0" npm-package-arg "^6.1.0" safe-buffer "^5.1.2" -"@evocateur/pacote@^9.6.0": - version "9.6.0" - resolved "https://registry.yarnpkg.com/@evocateur/pacote/-/pacote-9.6.0.tgz#3f0d08fb81c572289a2dfa981e7f97b6dd83cef2" - integrity sha512-nKx8EPxXhzqNfePbqC6603z7Kkf6GBS2q+SNGtBS/bCgS5Q+p3OVR6MXKOkpvC3WHse98W2WLu8QaV9axtfxyw== +"@evocateur/pacote@^9.6.3": + version "9.6.5" + resolved "https://registry.yarnpkg.com/@evocateur/pacote/-/pacote-9.6.5.tgz#33de32ba210b6f17c20ebab4d497efc6755f4ae5" + integrity sha512-EI552lf0aG2nOV8NnZpTxNo2PcXKPmDbF9K8eCBFQdIZwHNGN/mi815fxtmUMa2wTa1yndotICIDt/V0vpEx2w== dependencies: - "@evocateur/npm-registry-fetch" "^3.9.1" + "@evocateur/npm-registry-fetch" "^4.0.0" bluebird "^3.5.3" - cacache "^11.3.2" + cacache "^12.0.3" + chownr "^1.1.2" figgy-pudding "^3.5.1" get-stream "^4.1.0" - glob "^7.1.3" + glob "^7.1.4" + infer-owner "^1.0.4" lru-cache "^5.1.1" - make-fetch-happen "^4.0.1" + make-fetch-happen "^5.0.0" minimatch "^3.0.4" minipass "^2.3.5" mississippi "^3.0.0" mkdirp "^0.5.1" - normalize-package-data "^2.4.0" + normalize-package-data "^2.5.0" npm-package-arg "^6.1.0" - npm-packlist "^1.1.12" - npm-pick-manifest "^2.2.3" + npm-packlist "^1.4.4" + npm-pick-manifest "^3.0.0" osenv "^0.1.5" promise-inflight "^1.0.1" promise-retry "^1.1.1" protoduck "^5.0.1" - rimraf "^2.6.2" - safe-buffer "^5.1.2" - semver "^5.6.0" + rimraf "^2.6.3" + safe-buffer "^5.2.0" + semver "^5.7.0" ssri "^6.0.1" - tar "^4.4.8" + tar "^4.4.10" unique-filename "^1.1.1" which "^1.3.1" -"@jest/console@^24.7.1": - version "24.7.1" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.7.1.tgz#32a9e42535a97aedfe037e725bd67e954b459545" - integrity sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg== +"@jest/console@^24.7.1", "@jest/console@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0" + integrity sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ== dependencies: - "@jest/source-map" "^24.3.0" + "@jest/source-map" "^24.9.0" chalk "^2.0.1" slash "^2.0.0" -"@jest/core@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.8.0.tgz#fbbdcd42a41d0d39cddbc9f520c8bab0c33eed5b" - integrity sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A== +"@jest/core@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.9.0.tgz#2ceccd0b93181f9c4850e74f2a9ad43d351369c4" + integrity sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A== dependencies: "@jest/console" "^24.7.1" - "@jest/reporters" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/reporters" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" ansi-escapes "^3.0.0" chalk "^2.0.1" exit "^0.1.2" graceful-fs "^4.1.15" - jest-changed-files "^24.8.0" - jest-config "^24.8.0" - jest-haste-map "^24.8.0" - jest-message-util "^24.8.0" + jest-changed-files "^24.9.0" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" jest-regex-util "^24.3.0" - jest-resolve-dependencies "^24.8.0" - jest-runner "^24.8.0" - jest-runtime "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" - jest-watcher "^24.8.0" + jest-resolve "^24.9.0" + jest-resolve-dependencies "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + jest-watcher "^24.9.0" micromatch "^3.1.10" p-each-series "^1.0.0" - pirates "^4.0.1" realpath-native "^1.1.0" rimraf "^2.5.4" + slash "^2.0.0" strip-ansi "^5.0.0" -"@jest/environment@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.8.0.tgz#0342261383c776bdd652168f68065ef144af0eac" - integrity sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw== - dependencies: - "@jest/fake-timers" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - -"@jest/fake-timers@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.8.0.tgz#2e5b80a4f78f284bcb4bd5714b8e10dd36a8d3d1" - integrity sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw== - dependencies: - "@jest/types" "^24.8.0" - jest-message-util "^24.8.0" - jest-mock "^24.8.0" - -"@jest/reporters@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.8.0.tgz#075169cd029bddec54b8f2c0fc489fd0b9e05729" - integrity sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw== - dependencies: - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" +"@jest/environment@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.9.0.tgz#21e3afa2d65c0586cbd6cbefe208bafade44ab18" + integrity sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ== + dependencies: + "@jest/fake-timers" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + +"@jest/fake-timers@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.9.0.tgz#ba3e6bf0eecd09a636049896434d306636540c93" + integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A== + dependencies: + "@jest/types" "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" + +"@jest/reporters@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.9.0.tgz#86660eff8e2b9661d042a8e98a028b8d631a5b43" + integrity sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" exit "^0.1.2" glob "^7.1.2" @@ -815,314 +851,308 @@ istanbul-lib-instrument "^3.0.1" istanbul-lib-report "^2.0.4" istanbul-lib-source-maps "^3.0.1" - istanbul-reports "^2.1.1" - jest-haste-map "^24.8.0" - jest-resolve "^24.8.0" - jest-runtime "^24.8.0" - jest-util "^24.8.0" + istanbul-reports "^2.2.6" + jest-haste-map "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" jest-worker "^24.6.0" - node-notifier "^5.2.1" + node-notifier "^5.4.2" slash "^2.0.0" source-map "^0.6.0" string-length "^2.0.0" -"@jest/source-map@^24.3.0": - version "24.3.0" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.3.0.tgz#563be3aa4d224caf65ff77edc95cd1ca4da67f28" - integrity sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag== +"@jest/source-map@^24.3.0", "@jest/source-map@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.9.0.tgz#0e263a94430be4b41da683ccc1e6bffe2a191714" + integrity sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg== dependencies: callsites "^3.0.0" graceful-fs "^4.1.15" source-map "^0.6.0" -"@jest/test-result@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.8.0.tgz#7675d0aaf9d2484caa65e048d9b467d160f8e9d3" - integrity sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng== +"@jest/test-result@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.9.0.tgz#11796e8aa9dbf88ea025757b3152595ad06ba0ca" + integrity sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA== dependencies: - "@jest/console" "^24.7.1" - "@jest/types" "^24.8.0" + "@jest/console" "^24.9.0" + "@jest/types" "^24.9.0" "@types/istanbul-lib-coverage" "^2.0.0" -"@jest/test-sequencer@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz#2f993bcf6ef5eb4e65e8233a95a3320248cf994b" - integrity sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg== +"@jest/test-sequencer@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz#f8f334f35b625a4f2f355f2fe7e6036dad2e6b31" + integrity sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A== dependencies: - "@jest/test-result" "^24.8.0" - jest-haste-map "^24.8.0" - jest-runner "^24.8.0" - jest-runtime "^24.8.0" + "@jest/test-result" "^24.9.0" + jest-haste-map "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" -"@jest/transform@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.8.0.tgz#628fb99dce4f9d254c6fd9341e3eea262e06fef5" - integrity sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA== +"@jest/transform@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.9.0.tgz#4ae2768b296553fadab09e9ec119543c90b16c56" + integrity sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ== dependencies: "@babel/core" "^7.1.0" - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" babel-plugin-istanbul "^5.1.0" chalk "^2.0.1" convert-source-map "^1.4.0" fast-json-stable-stringify "^2.0.0" graceful-fs "^4.1.15" - jest-haste-map "^24.8.0" - jest-regex-util "^24.3.0" - jest-util "^24.8.0" + jest-haste-map "^24.9.0" + jest-regex-util "^24.9.0" + jest-util "^24.9.0" micromatch "^3.1.10" + pirates "^4.0.1" realpath-native "^1.1.0" slash "^2.0.0" source-map "^0.6.1" write-file-atomic "2.4.1" -"@jest/types@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.8.0.tgz#f31e25948c58f0abd8c845ae26fcea1491dea7ad" - integrity sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg== +"@jest/types@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" + integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== dependencies: "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^1.1.1" - "@types/yargs" "^12.0.9" - -"@lerna/add@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/add/-/add-3.15.0.tgz#10be562f43cde59b60f299083d54ac39520ec60a" - integrity sha512-+KrG4GFy/6FISZ+DwWf5Fj5YB4ESa4VTnSn/ujf3VEda6dxngHPN629j+TcPbsdOxUYVah+HuZbC/B8NnkrKpQ== - dependencies: - "@evocateur/pacote" "^9.6.0" - "@lerna/bootstrap" "3.15.0" - "@lerna/command" "3.15.0" - "@lerna/filter-options" "3.14.2" - "@lerna/npm-conf" "3.13.0" + "@types/yargs" "^13.0.0" + +"@lerna/add@3.19.0": + version "3.19.0" + resolved "https://registry.yarnpkg.com/@lerna/add/-/add-3.19.0.tgz#33b6251c669895f842c14f05961432d464166249" + integrity sha512-qzhxPyoczvvT1W0wwCK9I0iJ4B9WR+HzYsusmRuzM3mEhWjowhbuvKEl5BjGYuXc9AvEErM/S0Fm5K0RcuS39Q== + dependencies: + "@evocateur/pacote" "^9.6.3" + "@lerna/bootstrap" "3.18.5" + "@lerna/command" "3.18.5" + "@lerna/filter-options" "3.18.4" + "@lerna/npm-conf" "3.16.0" "@lerna/validation-error" "3.13.0" dedent "^0.7.0" npm-package-arg "^6.1.0" - p-map "^1.2.0" - semver "^5.5.0" - -"@lerna/batch-packages@3.14.0": - version "3.14.0" - resolved "https://registry.yarnpkg.com/@lerna/batch-packages/-/batch-packages-3.14.0.tgz#0208663bab3ddbf57956b370aaec4c9ebee6c800" - integrity sha512-RlBkQVNTqk1qvn6PFWiWNiskllUHh6tXbTVm43mZRNd+vhAyvrQC8RWJxH0ECVvnFAt9rSNGRIVbEJ31WnNQLg== - dependencies: - "@lerna/package-graph" "3.14.0" - npmlog "^4.1.2" - -"@lerna/bootstrap@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-3.15.0.tgz#f53e0bbbbfb8367e609a06378409bfc673ff2930" - integrity sha512-4AxsPKKbgj2Ju03qDddQTpOHvpqnwd0yaiEU/aCcWv/4tDTe79NqUne2Z3+P2WZY0Zzb8+nUKcskwYBMTeq+Mw== - dependencies: - "@lerna/batch-packages" "3.14.0" - "@lerna/command" "3.15.0" - "@lerna/filter-options" "3.14.2" - "@lerna/has-npm-version" "3.14.2" - "@lerna/npm-install" "3.14.2" - "@lerna/package-graph" "3.14.0" + p-map "^2.1.0" + semver "^6.2.0" + +"@lerna/bootstrap@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-3.18.5.tgz#cc22a750d6b0402e136926e8b214148dfc2e1390" + integrity sha512-9vD/BfCz8YSF2Dx7sHaMVo6Cy33WjLEmoN1yrHgNkHjm7ykWbLHG5wru0f4Y4pvwa0s5Hf76rvT8aJWzGHk9IQ== + dependencies: + "@lerna/command" "3.18.5" + "@lerna/filter-options" "3.18.4" + "@lerna/has-npm-version" "3.16.5" + "@lerna/npm-install" "3.16.5" + "@lerna/package-graph" "3.18.5" "@lerna/pulse-till-done" "3.13.0" - "@lerna/rimraf-dir" "3.14.2" - "@lerna/run-lifecycle" "3.14.0" - "@lerna/run-parallel-batches" "3.13.0" - "@lerna/symlink-binary" "3.14.2" - "@lerna/symlink-dependencies" "3.14.2" + "@lerna/rimraf-dir" "3.16.5" + "@lerna/run-lifecycle" "3.16.2" + "@lerna/run-topologically" "3.18.5" + "@lerna/symlink-binary" "3.17.0" + "@lerna/symlink-dependencies" "3.17.0" "@lerna/validation-error" "3.13.0" dedent "^0.7.0" - get-port "^3.2.0" - multimatch "^2.1.0" + get-port "^4.2.0" + multimatch "^3.0.0" npm-package-arg "^6.1.0" npmlog "^4.1.2" p-finally "^1.0.0" - p-map "^1.2.0" + p-map "^2.1.0" p-map-series "^1.0.0" p-waterfall "^1.0.0" read-package-tree "^5.1.6" - semver "^5.5.0" + semver "^6.2.0" -"@lerna/changed@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-3.15.0.tgz#20db9d992d697e4288c260aa38b989dcb93f4b40" - integrity sha512-Hns1ssI9T9xOTGVc7PT2jUaqzsSkxV3hV/Y7iFO0uKTk+fduyTwGTHU9A/ybQ/xi/9iaJbvaXyjxKiGoEnzmhg== +"@lerna/changed@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-3.18.5.tgz#ef2c460f5497b8b4cfac7e5165fe46d7181fcdf5" + integrity sha512-IXS7VZ5VDQUfCsgK56WYxd42luMBxL456cNUf1yBgQ1cy1U2FPVMitIdLN4AcP7bJizdPWeG8yDptf47jN/xVw== dependencies: - "@lerna/collect-updates" "3.14.2" - "@lerna/command" "3.15.0" - "@lerna/listable" "3.14.0" + "@lerna/collect-updates" "3.18.0" + "@lerna/command" "3.18.5" + "@lerna/listable" "3.18.5" "@lerna/output" "3.13.0" - "@lerna/version" "3.15.0" -"@lerna/check-working-tree@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-3.14.2.tgz#5ce007722180a69643a8456766ed8a91fc7e9ae1" - integrity sha512-7safqxM/MYoAoxZxulUDtIJIbnBIgo0PB/FHytueG+9VaX7GMnDte2Bt1EKa0dz2sAyQdmQ3Q8ZXpf/6JDjaeg== +"@lerna/check-working-tree@3.16.5": + version "3.16.5" + resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-3.16.5.tgz#b4f8ae61bb4523561dfb9f8f8d874dd46bb44baa" + integrity sha512-xWjVBcuhvB8+UmCSb5tKVLB5OuzSpw96WEhS2uz6hkWVa/Euh1A0/HJwn2cemyK47wUrCQXtczBUiqnq9yX5VQ== dependencies: - "@lerna/collect-uncommitted" "3.14.2" - "@lerna/describe-ref" "3.14.2" + "@lerna/collect-uncommitted" "3.16.5" + "@lerna/describe-ref" "3.16.5" "@lerna/validation-error" "3.13.0" -"@lerna/child-process@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-3.14.2.tgz#950240cba83f7dfe25247cfa6c9cebf30b7d94f6" - integrity sha512-xnq+W5yQb6RkwI0p16ZQnrn6HkloH/MWTw4lGE1nKsBLAUbmSU5oTE93W1nrG0X3IMF/xWc9UYvNdUGMWvZZ4w== +"@lerna/child-process@3.16.5": + version "3.16.5" + resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-3.16.5.tgz#38fa3c18064aa4ac0754ad80114776a7b36a69b2" + integrity sha512-vdcI7mzei9ERRV4oO8Y1LHBZ3A5+ampRKg1wq5nutLsUA4mEBN6H7JqjWOMY9xZemv6+kATm2ofjJ3lW5TszQg== dependencies: chalk "^2.3.1" execa "^1.0.0" strong-log-transformer "^2.0.0" -"@lerna/clean@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-3.15.0.tgz#a94da50908a80ba443a0a682706aca79ac2ecf27" - integrity sha512-D1BN7BnJk6YjrSR7E7RiCmWiFVWDo3L+OSe6zDq6rNNYexPBtSi2JOCeF/Dibi3jd2luVu0zkVpUtuEEdPiD+A== +"@lerna/clean@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-3.18.5.tgz#44b4a6db68ae369778f2921c85ec6961bdd86072" + integrity sha512-tHxOj9frTIhB/H2gtgMU3xpIc4IJEhXcUlReko6RJt8TTiDZGPDudCcgjg6i7n15v9jXMOc1y4F+y5/1089bfA== dependencies: - "@lerna/command" "3.15.0" - "@lerna/filter-options" "3.14.2" - "@lerna/prompt" "3.13.0" + "@lerna/command" "3.18.5" + "@lerna/filter-options" "3.18.4" + "@lerna/prompt" "3.18.5" "@lerna/pulse-till-done" "3.13.0" - "@lerna/rimraf-dir" "3.14.2" - p-map "^1.2.0" + "@lerna/rimraf-dir" "3.16.5" + p-map "^2.1.0" p-map-series "^1.0.0" p-waterfall "^1.0.0" -"@lerna/cli@3.13.0": - version "3.13.0" - resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-3.13.0.tgz#3d7b357fdd7818423e9681a7b7f2abd106c8a266" - integrity sha512-HgFGlyCZbYaYrjOr3w/EsY18PdvtsTmDfpUQe8HwDjXlPeCCUgliZjXLOVBxSjiOvPeOSwvopwIHKWQmYbwywg== +"@lerna/cli@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-3.18.5.tgz#c90c461542fcd35b6d5b015a290fb0dbfb41d242" + integrity sha512-erkbxkj9jfc89vVs/jBLY/fM0I80oLmJkFUV3Q3wk9J3miYhP14zgVEBsPZY68IZlEjT6T3Xlq2xO1AVaatHsA== dependencies: "@lerna/global-options" "3.13.0" dedent "^0.7.0" npmlog "^4.1.2" - yargs "^12.0.1" + yargs "^14.2.2" -"@lerna/collect-uncommitted@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/collect-uncommitted/-/collect-uncommitted-3.14.2.tgz#b5ed00d800bea26bb0d18404432b051eee8d030e" - integrity sha512-4EkQu4jIOdNL2BMzy/N0ydHB8+Z6syu6xiiKXOoFl0WoWU9H1jEJCX4TH7CmVxXL1+jcs8FIS2pfQz4oew99Eg== +"@lerna/collect-uncommitted@3.16.5": + version "3.16.5" + resolved "https://registry.yarnpkg.com/@lerna/collect-uncommitted/-/collect-uncommitted-3.16.5.tgz#a494d61aac31cdc7aec4bbe52c96550274132e63" + integrity sha512-ZgqnGwpDZiWyzIQVZtQaj9tRizsL4dUOhuOStWgTAw1EMe47cvAY2kL709DzxFhjr6JpJSjXV5rZEAeU3VE0Hg== dependencies: - "@lerna/child-process" "3.14.2" + "@lerna/child-process" "3.16.5" chalk "^2.3.1" figgy-pudding "^3.5.1" npmlog "^4.1.2" -"@lerna/collect-updates@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-3.14.2.tgz#396201f6568ec5916bf2c11e7a29b0931fcd3e5b" - integrity sha512-+zSQ2ZovH8Uc0do5dR+sk8VvRJc6Xl+ZnJJGESIl17KSpEw/lVjcOyt6f3BP+WHn+iSOjMWcGvUVA601FIEdZw== +"@lerna/collect-updates@3.18.0": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-3.18.0.tgz#6086c64df3244993cc0a7f8fc0ddd6a0103008a6" + integrity sha512-LJMKgWsE/var1RSvpKDIxS8eJ7POADEc0HM3FQiTpEczhP6aZfv9x3wlDjaHpZm9MxJyQilqxZcasRANmRcNgw== dependencies: - "@lerna/child-process" "3.14.2" - "@lerna/describe-ref" "3.14.2" + "@lerna/child-process" "3.16.5" + "@lerna/describe-ref" "3.16.5" minimatch "^3.0.4" npmlog "^4.1.2" - slash "^1.0.0" + slash "^2.0.0" -"@lerna/command@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/command/-/command-3.15.0.tgz#e1dc1319054f1cf0b135aa0c5730f3335641a0ca" - integrity sha512-dZqr4rKFN+veuXakIQ1DcGUpzBgcWKaYFNN4O6/skOdVQaEfGefzo1sZET+q7k/BkypxkhXHXpv5UqqSuL/EHQ== +"@lerna/command@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/command/-/command-3.18.5.tgz#14c6d2454adbfd365f8027201523e6c289cd3cd9" + integrity sha512-36EnqR59yaTU4HrR1C9XDFti2jRx0BgpIUBeWn129LZZB8kAB3ov1/dJNa1KcNRKp91DncoKHLY99FZ6zTNpMQ== dependencies: - "@lerna/child-process" "3.14.2" - "@lerna/package-graph" "3.14.0" - "@lerna/project" "3.15.0" + "@lerna/child-process" "3.16.5" + "@lerna/package-graph" "3.18.5" + "@lerna/project" "3.18.0" "@lerna/validation-error" "3.13.0" "@lerna/write-log-file" "3.13.0" + clone-deep "^4.0.1" dedent "^0.7.0" execa "^1.0.0" - is-ci "^1.0.10" - lodash "^4.17.5" + is-ci "^2.0.0" npmlog "^4.1.2" -"@lerna/conventional-commits@3.14.0": - version "3.14.0" - resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-3.14.0.tgz#24f643550dc29d4f1249cc26d0eb453d7a1c513d" - integrity sha512-hGZ2qQZ9uEGf2eeIiIpEodSs9Qkkf/2uYEtNT7QN1RYISPUh6/lKGBssc5dpbCF64aEuxmemWLdlDf1ogG6++w== +"@lerna/conventional-commits@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-3.18.5.tgz#08efd2e5b45acfaf3f151a53a3ec7ecade58a7bc" + integrity sha512-qcvXIEJ3qSgalxXnQ7Yxp5H9Ta5TVyai6vEor6AAEHc20WiO7UIdbLDCxBtiiHMdGdpH85dTYlsoYUwsCJu3HQ== dependencies: "@lerna/validation-error" "3.13.0" conventional-changelog-angular "^5.0.3" conventional-changelog-core "^3.1.6" - conventional-recommended-bump "^4.0.4" - fs-extra "^7.0.0" + conventional-recommended-bump "^5.0.0" + fs-extra "^8.1.0" get-stream "^4.0.0" + lodash.template "^4.5.0" npm-package-arg "^6.1.0" npmlog "^4.1.2" - pify "^3.0.0" - semver "^5.5.0" + pify "^4.0.1" + semver "^6.2.0" -"@lerna/create-symlink@3.14.0": - version "3.14.0" - resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-3.14.0.tgz#f40ae06e8cebe70c694368ebf9a4af5ab380fbea" - integrity sha512-Kw51HYOOi6UfCKncqkgEU1k/SYueSBXgkNL91FR8HAZH7EPSRTEtp9mnJo568g0+Hog5C+3cOaWySwhHpRG29A== +"@lerna/create-symlink@3.16.2": + version "3.16.2" + resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-3.16.2.tgz#412cb8e59a72f5a7d9463e4e4721ad2070149967" + integrity sha512-pzXIJp6av15P325sgiIRpsPXLFmkisLhMBCy4764d+7yjf2bzrJ4gkWVMhsv4AdF0NN3OyZ5jjzzTtLNqfR+Jw== dependencies: - cmd-shim "^2.0.2" - fs-extra "^7.0.0" + "@zkochan/cmd-shim" "^3.1.0" + fs-extra "^8.1.0" npmlog "^4.1.2" -"@lerna/create@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/create/-/create-3.15.0.tgz#27bfadcbdf71d34226aa82432293f5290f7ab1aa" - integrity sha512-doXGt0HTwTQl8GkC2tOrraA/5OWbz35hJqi7Dsl3Fl0bAxiv9XmF3LykHFJ+YTDHfGpdoJ8tKu66f/VKP16G0w== +"@lerna/create@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/create/-/create-3.18.5.tgz#11ac539f069248eaf7bc4c42e237784330f4fc47" + integrity sha512-cHpjocbpKmLopCuZFI7cKEM3E/QY8y+yC7VtZ4FQRSaLU8D8i2xXtXmYaP1GOlVNavji0iwoXjuNpnRMInIr2g== dependencies: - "@evocateur/pacote" "^9.6.0" - "@lerna/child-process" "3.14.2" - "@lerna/command" "3.15.0" - "@lerna/npm-conf" "3.13.0" + "@evocateur/pacote" "^9.6.3" + "@lerna/child-process" "3.16.5" + "@lerna/command" "3.18.5" + "@lerna/npm-conf" "3.16.0" "@lerna/validation-error" "3.13.0" camelcase "^5.0.0" dedent "^0.7.0" - fs-extra "^7.0.0" - globby "^8.0.1" + fs-extra "^8.1.0" + globby "^9.2.0" init-package-json "^1.10.3" npm-package-arg "^6.1.0" p-reduce "^1.0.0" - pify "^3.0.0" - semver "^5.5.0" - slash "^1.0.0" + pify "^4.0.1" + semver "^6.2.0" + slash "^2.0.0" validate-npm-package-license "^3.0.3" validate-npm-package-name "^3.0.0" whatwg-url "^7.0.0" -"@lerna/describe-ref@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-3.14.2.tgz#edc3c973f5ca9728d23358c4f4d3b55a21f65be5" - integrity sha512-qa5pzDRK2oBQXNjyRmRnN7E8a78NMYfQjjlRFB0KNHMsT6mCiL9+8kIS39sSE2NqT8p7xVNo2r2KAS8R/m3CoQ== +"@lerna/describe-ref@3.16.5": + version "3.16.5" + resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-3.16.5.tgz#a338c25aaed837d3dc70b8a72c447c5c66346ac0" + integrity sha512-c01+4gUF0saOOtDBzbLMFOTJDHTKbDFNErEY6q6i9QaXuzy9LNN62z+Hw4acAAZuJQhrVWncVathcmkkjvSVGw== dependencies: - "@lerna/child-process" "3.14.2" + "@lerna/child-process" "3.16.5" npmlog "^4.1.2" -"@lerna/diff@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-3.15.0.tgz#573d6f58f6809d16752dcfab74c5e286b6678371" - integrity sha512-N1Pr0M554Bt+DlVoD+DXWGh92gcq6G9icn8sH5GSqfwi0XCpPNJ2i1BNEZpUQ6ulLWOMa1YHR4PypPxecRGBjA== +"@lerna/diff@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-3.18.5.tgz#e9e2cb882f84d5b84f0487c612137305f07accbc" + integrity sha512-u90lGs+B8DRA9Z/2xX4YaS3h9X6GbypmGV6ITzx9+1Ga12UWGTVlKaCXBgONMBjzJDzAQOK8qPTwLA57SeBLgA== dependencies: - "@lerna/child-process" "3.14.2" - "@lerna/command" "3.15.0" + "@lerna/child-process" "3.16.5" + "@lerna/command" "3.18.5" "@lerna/validation-error" "3.13.0" npmlog "^4.1.2" -"@lerna/exec@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-3.15.0.tgz#b31510f47255367eb0d3e4a4f7b6ef8f7e41b985" - integrity sha512-YuXPd64TNG9wbb3lRvyMARQbdlbMZ1bJZ+GCm0enivnIWUyg0qtBDcfPY2dWpIgOif04zx+K/gmOX4lCaGM4UQ== +"@lerna/exec@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-3.18.5.tgz#50f1bd6b8f88f2ec02c0768b8b1d9024feb1a96a" + integrity sha512-Q1nz95MeAxctS9bF+aG8FkjixzqEjRpg6ujtnDW84J42GgxedkPtNcJ2o/MBqLd/mxAlr+fW3UZ6CPC/zgoyCg== dependencies: - "@lerna/child-process" "3.14.2" - "@lerna/command" "3.15.0" - "@lerna/filter-options" "3.14.2" - "@lerna/run-topologically" "3.14.0" + "@lerna/child-process" "3.16.5" + "@lerna/command" "3.18.5" + "@lerna/filter-options" "3.18.4" + "@lerna/run-topologically" "3.18.5" "@lerna/validation-error" "3.13.0" - p-map "^1.2.0" + p-map "^2.1.0" -"@lerna/filter-options@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-3.14.2.tgz#7ba91cb54ff3fd9f4650ad8d7c40bc1075e44c2d" - integrity sha512-Ct8oYvRttbYB9JalngHhirb8o9ZVyLm5a9MpXNevXoHiu6j0vNhI19BQCwNnrL6wZvEHJnzPuUl/jO23tWxemg== +"@lerna/filter-options@3.18.4": + version "3.18.4" + resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-3.18.4.tgz#f5476a7ee2169abed27ad433222e92103f56f9f1" + integrity sha512-4giVQD6tauRwweO/322LP2gfVDOVrt/xN4khkXyfkJDfcsZziFXq+668otD9KSLL8Ps+To4Fah3XbK0MoNuEvA== dependencies: - "@lerna/collect-updates" "3.14.2" - "@lerna/filter-packages" "3.13.0" + "@lerna/collect-updates" "3.18.0" + "@lerna/filter-packages" "3.18.0" dedent "^0.7.0" + figgy-pudding "^3.5.1" + npmlog "^4.1.2" -"@lerna/filter-packages@3.13.0": - version "3.13.0" - resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-3.13.0.tgz#f5371249e7e1a15928e5e88c544a242e0162c21c" - integrity sha512-RWiZWyGy3Mp7GRVBn//CacSnE3Kw82PxE4+H6bQ3pDUw/9atXn7NRX+gkBVQIYeKamh7HyumJtyOKq3Pp9BADQ== +"@lerna/filter-packages@3.18.0": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-3.18.0.tgz#6a7a376d285208db03a82958cfb8172e179b4e70" + integrity sha512-6/0pMM04bCHNATIOkouuYmPg6KH3VkPCIgTfQmdkPJTullERyEQfNUKikrefjxo1vHOoCACDpy65JYyKiAbdwQ== dependencies: "@lerna/validation-error" "3.13.0" - multimatch "^2.1.0" + multimatch "^3.0.0" npmlog "^4.1.2" "@lerna/get-npm-exec-opts@3.13.0": @@ -1132,23 +1162,23 @@ dependencies: npmlog "^4.1.2" -"@lerna/get-packed@3.13.0": - version "3.13.0" - resolved "https://registry.yarnpkg.com/@lerna/get-packed/-/get-packed-3.13.0.tgz#335e40d77f3c1855aa248587d3e0b2d8f4b06e16" - integrity sha512-EgSim24sjIjqQDC57bgXD9l22/HCS93uQBbGpkzEOzxAVzEgpZVm7Fm1t8BVlRcT2P2zwGnRadIvxTbpQuDPTg== +"@lerna/get-packed@3.16.0": + version "3.16.0" + resolved "https://registry.yarnpkg.com/@lerna/get-packed/-/get-packed-3.16.0.tgz#1b316b706dcee86c7baa55e50b087959447852ff" + integrity sha512-AjsFiaJzo1GCPnJUJZiTW6J1EihrPkc2y3nMu6m3uWFxoleklsSCyImumzVZJssxMi3CPpztj8LmADLedl9kXw== dependencies: - fs-extra "^7.0.0" + fs-extra "^8.1.0" ssri "^6.0.1" tar "^4.4.8" -"@lerna/github-client@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/github-client/-/github-client-3.14.2.tgz#a743792b51cd9bdfb785186e429568827a6372eb" - integrity sha512-+2Xh7t4qVmXiXE2utPnh5T7YwSltG74JP7c+EiooRY5+3zjh9MpPOcTKxVY3xKclzpsyXMohk2KpTF4tzA5rrg== +"@lerna/github-client@3.16.5": + version "3.16.5" + resolved "https://registry.yarnpkg.com/@lerna/github-client/-/github-client-3.16.5.tgz#2eb0235c3bf7a7e5d92d73e09b3761ab21f35c2e" + integrity sha512-rHQdn8Dv/CJrO3VouOP66zAcJzrHsm+wFuZ4uGAai2At2NkgKH+tpNhQy2H1PSC0Ezj9LxvdaHYrUzULqVK5Hw== dependencies: - "@lerna/child-process" "3.14.2" - "@octokit/plugin-enterprise-rest" "^2.1.1" - "@octokit/rest" "^16.16.0" + "@lerna/child-process" "3.16.5" + "@octokit/plugin-enterprise-rest" "^3.6.1" + "@octokit/rest" "^16.28.4" git-url-parse "^11.1.2" npmlog "^4.1.2" @@ -1166,141 +1196,141 @@ resolved "https://registry.yarnpkg.com/@lerna/global-options/-/global-options-3.13.0.tgz#217662290db06ad9cf2c49d8e3100ee28eaebae1" integrity sha512-SlZvh1gVRRzYLVluz9fryY1nJpZ0FHDGB66U9tFfvnnxmueckRQxLopn3tXj3NU1kc3QANT2I5BsQkOqZ4TEFQ== -"@lerna/has-npm-version@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-3.14.2.tgz#ac17f7c68e92114b8332b95ae6cffec9c0d67a7b" - integrity sha512-cG+z5bB8JPd5f+nT2eLN2LmKg06O11AxlnUxgw2W7cLyc7cnsmMSp/rxt2JBMwW2r4Yn+CLLJIRwJZ2Es8jFSw== +"@lerna/has-npm-version@3.16.5": + version "3.16.5" + resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-3.16.5.tgz#ab83956f211d8923ea6afe9b979b38cc73b15326" + integrity sha512-WL7LycR9bkftyqbYop5rEGJ9sRFIV55tSGmbN1HLrF9idwOCD7CLrT64t235t3t4O5gehDnwKI5h2U3oxTrF8Q== dependencies: - "@lerna/child-process" "3.14.2" - semver "^5.5.0" + "@lerna/child-process" "3.16.5" + semver "^6.2.0" -"@lerna/import@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/import/-/import-3.15.0.tgz#47f2da52059a96bb08a4c09e18d985258fce9ce1" - integrity sha512-4GKQgeTXBTwMbZNkYyPdQIVA41HIISD7D6XRNrDaG0falUfvoPsknijQPCBmGqeh66u1Fcn2+4lkL3OCTj2FMg== +"@lerna/import@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/import/-/import-3.18.5.tgz#a9c7d8601870729851293c10abd18b3707f7ba5e" + integrity sha512-PH0WVLEgp+ORyNKbGGwUcrueW89K3Iuk/DDCz8mFyG2IG09l/jOF0vzckEyGyz6PO5CMcz4TI1al/qnp3FrahQ== dependencies: - "@lerna/child-process" "3.14.2" - "@lerna/command" "3.15.0" - "@lerna/prompt" "3.13.0" + "@lerna/child-process" "3.16.5" + "@lerna/command" "3.18.5" + "@lerna/prompt" "3.18.5" "@lerna/pulse-till-done" "3.13.0" "@lerna/validation-error" "3.13.0" dedent "^0.7.0" - fs-extra "^7.0.0" + fs-extra "^8.1.0" p-map-series "^1.0.0" -"@lerna/init@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/init/-/init-3.15.0.tgz#bda36de44c365972f87cbd287fe85b6fb7bb1070" - integrity sha512-VOqH6kFbFtfUbXxhSqXKY6bjnVp9nLuLRI6x9tVHOANX2LmSlXm17OUGBnNt+eM4uJLuiUsAR8nTlpCiz//lPQ== +"@lerna/init@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/init/-/init-3.18.5.tgz#86dd0b2b3290755a96975069b5cb007f775df9f5" + integrity sha512-oCwipWrha98EcJAHm8AGd2YFFLNI7AW9AWi0/LbClj1+XY9ah+uifXIgYGfTk63LbgophDd8936ZEpHMxBsbAg== dependencies: - "@lerna/child-process" "3.14.2" - "@lerna/command" "3.15.0" - fs-extra "^7.0.0" - p-map "^1.2.0" - write-json-file "^2.3.0" - -"@lerna/link@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/link/-/link-3.15.0.tgz#718b4116a8eacb3fc73414ae8d97f8fdaf8125da" - integrity sha512-yKHuifADINobvDOLljBGkVGpVwy6J3mg5p9lQXBdOLXBoIKC8o/UKBR9JvZMFvT/Iy6zn6FPy1v5lz9iU1Ib0Q== - dependencies: - "@lerna/command" "3.15.0" - "@lerna/package-graph" "3.14.0" - "@lerna/symlink-dependencies" "3.14.2" - p-map "^1.2.0" - slash "^1.0.0" + "@lerna/child-process" "3.16.5" + "@lerna/command" "3.18.5" + fs-extra "^8.1.0" + p-map "^2.1.0" + write-json-file "^3.2.0" + +"@lerna/link@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/link/-/link-3.18.5.tgz#f24347e4f0b71d54575bd37cfa1794bc8ee91b18" + integrity sha512-xTN3vktJpkT7Nqc3QkZRtHO4bT5NvuLMtKNIBDkks0HpGxC9PRyyqwOoCoh1yOGbrWIuDezhfMg3Qow+6I69IQ== + dependencies: + "@lerna/command" "3.18.5" + "@lerna/package-graph" "3.18.5" + "@lerna/symlink-dependencies" "3.17.0" + p-map "^2.1.0" + slash "^2.0.0" -"@lerna/list@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/list/-/list-3.15.0.tgz#4e401c1ad990bb12bd38298cb61d21136420ff68" - integrity sha512-8SvxnlfAnbEzQDf2NL0IxWyUuqWTykF9cHt5/f5TOzgESClpaOkDtqwh/UlE8nVTzWMnxnQUPQi3UTKyJD3i3g== +"@lerna/list@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/list/-/list-3.18.5.tgz#58863f17c81e24e2c38018eb8619fc99d7cc5c82" + integrity sha512-qIeomm28C2OCM8TMjEe/chTnQf6XLN54wPVQ6kZy+axMYxANFNt/uhs6GZEmhem7GEVawzkyHSz5ZJPsfH3IFg== dependencies: - "@lerna/command" "3.15.0" - "@lerna/filter-options" "3.14.2" - "@lerna/listable" "3.14.0" + "@lerna/command" "3.18.5" + "@lerna/filter-options" "3.18.4" + "@lerna/listable" "3.18.5" "@lerna/output" "3.13.0" -"@lerna/listable@3.14.0": - version "3.14.0" - resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-3.14.0.tgz#08f4c78e0466568e8e8a57d4ad09537f2bb7bbb9" - integrity sha512-ZK44Mo8xf/N97eQZ236SPSq0ek6+gk4HqHIx05foEMZVV1iIDH4a/nblLsJNjGQVsIdMYFPaqNJ0z+ZQfiJazQ== +"@lerna/listable@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-3.18.5.tgz#e82798405b5ed8fc51843c8ef1e7a0e497388a1a" + integrity sha512-Sdr3pVyaEv5A7ZkGGYR7zN+tTl2iDcinryBPvtuv20VJrXBE8wYcOks1edBTcOWsPjCE/rMP4bo1pseyk3UTsg== dependencies: - "@lerna/query-graph" "3.14.0" + "@lerna/query-graph" "3.18.5" chalk "^2.3.1" columnify "^1.5.4" -"@lerna/log-packed@3.13.0": - version "3.13.0" - resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-3.13.0.tgz#497b5f692a8d0e3f669125da97b0dadfd9e480f3" - integrity sha512-Rmjrcz+6aM6AEcEVWmurbo8+AnHOvYtDpoeMMJh9IZ9SmZr2ClXzmD7wSvjTQc8BwOaiWjjC/ukcT0UYA2m7wg== +"@lerna/log-packed@3.16.0": + version "3.16.0" + resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-3.16.0.tgz#f83991041ee77b2495634e14470b42259fd2bc16" + integrity sha512-Fp+McSNBV/P2mnLUYTaSlG8GSmpXM7krKWcllqElGxvAqv6chk2K3c2k80MeVB4WvJ9tRjUUf+i7HUTiQ9/ckQ== dependencies: - byte-size "^4.0.3" + byte-size "^5.0.1" columnify "^1.5.4" has-unicode "^2.0.1" npmlog "^4.1.2" -"@lerna/npm-conf@3.13.0": - version "3.13.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-3.13.0.tgz#6b434ed75ff757e8c14381b9bbfe5d5ddec134a7" - integrity sha512-Jg2kANsGnhg+fbPEzE0X9nX5oviEAvWj0nYyOkcE+cgWuT7W0zpnPXC4hA4C5IPQGhwhhh0IxhWNNHtjTuw53g== +"@lerna/npm-conf@3.16.0": + version "3.16.0" + resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-3.16.0.tgz#1c10a89ae2f6c2ee96962557738685300d376827" + integrity sha512-HbO3DUrTkCAn2iQ9+FF/eisDpWY5POQAOF1m7q//CZjdC2HSW3UYbKEGsSisFxSfaF9Z4jtrV+F/wX6qWs3CuA== dependencies: config-chain "^1.1.11" - pify "^3.0.0" + pify "^4.0.1" -"@lerna/npm-dist-tag@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-3.15.0.tgz#262dd1e67a4cf82ae78fadfe02622ebce4add078" - integrity sha512-lnbdwc4Ebs7/EI9fTIgbH3dxXnP+SuCcGhG7P5ZjOqo67SY09sRZGcygEzabpvIwXvKpBF8vCd4xxzjnF2u+PA== +"@lerna/npm-dist-tag@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-3.18.5.tgz#9ef9abb7c104077b31f6fab22cc73b314d54ac55" + integrity sha512-xw0HDoIG6HreVsJND9/dGls1c+lf6vhu7yJoo56Sz5bvncTloYGLUppIfDHQr4ZvmPCK8rsh0euCVh2giPxzKQ== dependencies: - "@evocateur/npm-registry-fetch" "^3.9.1" - "@lerna/otplease" "3.14.0" + "@evocateur/npm-registry-fetch" "^4.0.0" + "@lerna/otplease" "3.18.5" figgy-pudding "^3.5.1" npm-package-arg "^6.1.0" npmlog "^4.1.2" -"@lerna/npm-install@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-3.14.2.tgz#fd22ff432f8b7cbe05bedfd36b0506482f1a4732" - integrity sha512-JYJJRtLETrGpcQZa8Rj16vbye399RqnaXmJlZuZ2twjJ2DYVYtwkfsGEOdvdaKw5KVOEpWcAxBA9OMmKQtCLQw== +"@lerna/npm-install@3.16.5": + version "3.16.5" + resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-3.16.5.tgz#d6bfdc16f81285da66515ae47924d6e278d637d3" + integrity sha512-hfiKk8Eku6rB9uApqsalHHTHY+mOrrHeWEs+gtg7+meQZMTS3kzv4oVp5cBZigndQr3knTLjwthT/FX4KvseFg== dependencies: - "@lerna/child-process" "3.14.2" + "@lerna/child-process" "3.16.5" "@lerna/get-npm-exec-opts" "3.13.0" - fs-extra "^7.0.0" + fs-extra "^8.1.0" npm-package-arg "^6.1.0" npmlog "^4.1.2" signal-exit "^3.0.2" write-pkg "^3.1.0" -"@lerna/npm-publish@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-3.15.0.tgz#89126d74ec97186475767b852954a5f55b732a71" - integrity sha512-G7rcNcSGjG0La8eHPXDvCvoNXbwNnP6XJ+GPh3CH5xiR/nikfLOa+Bfm4ytdjVWWxnKfCT4qyMTCoV1rROlqQQ== +"@lerna/npm-publish@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-3.18.5.tgz#240e4039959fd9816b49c5b07421e11b5cb000af" + integrity sha512-3etLT9+2L8JAx5F8uf7qp6iAtOLSMj+ZYWY6oUgozPi/uLqU0/gsMsEXh3F0+YVW33q0M61RpduBoAlOOZnaTg== dependencies: - "@evocateur/libnpmpublish" "^1.2.0" - "@lerna/otplease" "3.14.0" - "@lerna/run-lifecycle" "3.14.0" + "@evocateur/libnpmpublish" "^1.2.2" + "@lerna/otplease" "3.18.5" + "@lerna/run-lifecycle" "3.16.2" figgy-pudding "^3.5.1" - fs-extra "^7.0.0" + fs-extra "^8.1.0" npm-package-arg "^6.1.0" npmlog "^4.1.2" - pify "^3.0.0" + pify "^4.0.1" read-package-json "^2.0.13" -"@lerna/npm-run-script@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-3.14.2.tgz#8c518ea9d241a641273e77aad6f6fddc16779c3f" - integrity sha512-LbVFv+nvAoRTYLMrJlJ8RiakHXrLslL7Jp/m1R18vYrB8LYWA3ey+nz5Tel2OELzmjUiemAKZsD9h6i+Re5egg== +"@lerna/npm-run-script@3.16.5": + version "3.16.5" + resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-3.16.5.tgz#9c2ec82453a26c0b46edc0bb7c15816c821f5c15" + integrity sha512-1asRi+LjmVn3pMjEdpqKJZFT/3ZNpb+VVeJMwrJaV/3DivdNg7XlPK9LTrORuKU4PSvhdEZvJmSlxCKyDpiXsQ== dependencies: - "@lerna/child-process" "3.14.2" + "@lerna/child-process" "3.16.5" "@lerna/get-npm-exec-opts" "3.13.0" npmlog "^4.1.2" -"@lerna/otplease@3.14.0": - version "3.14.0" - resolved "https://registry.yarnpkg.com/@lerna/otplease/-/otplease-3.14.0.tgz#b539fd3e7a08452fc0db3b10010ca3cf0e4a73e7" - integrity sha512-rYAWzaYZ81bwnrmTkYWGgcc13bl/6DlG7pjWQWNGAJNLzO5zzj0xmXN5sMFJnNvDpSiS/ZS1sIuPvb4xnwLUkg== +"@lerna/otplease@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/otplease/-/otplease-3.18.5.tgz#b77b8e760b40abad9f7658d988f3ea77d4fd0231" + integrity sha512-S+SldXAbcXTEDhzdxYLU0ZBKuYyURP/ND2/dK6IpKgLxQYh/z4ScljPDMyKymmEvgiEJmBsPZAAPfmNPEzxjog== dependencies: - "@lerna/prompt" "3.13.0" + "@lerna/prompt" "3.18.5" figgy-pudding "^3.5.1" "@lerna/output@3.13.0": @@ -1310,107 +1340,108 @@ dependencies: npmlog "^4.1.2" -"@lerna/pack-directory@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/pack-directory/-/pack-directory-3.14.2.tgz#577b8ebf867c9b636a2e4659a27552ee24d83b9d" - integrity sha512-b3LnJEmIml3sDj94TQT8R+kVyrDlmE7Su0WwcBYZDySXPMSZ38WA2/2Xjy/EWhXlFxp/nUJKyUG78nDrZ/00Uw== +"@lerna/pack-directory@3.16.4": + version "3.16.4" + resolved "https://registry.yarnpkg.com/@lerna/pack-directory/-/pack-directory-3.16.4.tgz#3eae5f91bdf5acfe0384510ed53faddc4c074693" + integrity sha512-uxSF0HZeGyKaaVHz5FroDY9A5NDDiCibrbYR6+khmrhZtY0Bgn6hWq8Gswl9iIlymA+VzCbshWIMX4o2O8C8ng== dependencies: - "@lerna/get-packed" "3.13.0" - "@lerna/package" "3.14.2" - "@lerna/run-lifecycle" "3.14.0" + "@lerna/get-packed" "3.16.0" + "@lerna/package" "3.16.0" + "@lerna/run-lifecycle" "3.16.2" figgy-pudding "^3.5.1" - npm-packlist "^1.4.1" + npm-packlist "^1.4.4" npmlog "^4.1.2" - tar "^4.4.8" + tar "^4.4.10" temp-write "^3.4.0" -"@lerna/package-graph@3.14.0": - version "3.14.0" - resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-3.14.0.tgz#4ccdf446dccedfbbeb4efff3eb720cb6fcb109fc" - integrity sha512-dNpA/64STD5YXhaSlg4gT6Z474WPJVCHoX1ibsVIFu0fVgH609Y69bsdmbvTRdI7r6Dcu4ZfGxdR636RTrH+Eg== +"@lerna/package-graph@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-3.18.5.tgz#c740e2ea3578d059e551633e950690831b941f6b" + integrity sha512-8QDrR9T+dBegjeLr+n9WZTVxUYUhIUjUgZ0gvNxUBN8S1WB9r6H5Yk56/MVaB64tA3oGAN9IIxX6w0WvTfFudA== dependencies: - "@lerna/prerelease-id-from-version" "3.14.0" + "@lerna/prerelease-id-from-version" "3.16.0" "@lerna/validation-error" "3.13.0" npm-package-arg "^6.1.0" npmlog "^4.1.2" - semver "^5.5.0" + semver "^6.2.0" -"@lerna/package@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/package/-/package-3.14.2.tgz#f893cb42e26c869df272dafbe1dd5a3473b0bd4d" - integrity sha512-YR/+CzYdufJYfsUlrfuhTjA35iSZpXK7mVOZmeR9iRWhSaqesm4kq2zfxm9vCpZV2oAQQZOwi4eo5h0rQBtdiw== +"@lerna/package@3.16.0": + version "3.16.0" + resolved "https://registry.yarnpkg.com/@lerna/package/-/package-3.16.0.tgz#7e0a46e4697ed8b8a9c14d59c7f890e0d38ba13c" + integrity sha512-2lHBWpaxcBoiNVbtyLtPUuTYEaB/Z+eEqRS9duxpZs6D+mTTZMNy6/5vpEVSCBmzvdYpyqhqaYjjSLvjjr5Riw== dependencies: - load-json-file "^4.0.0" + load-json-file "^5.3.0" npm-package-arg "^6.1.0" write-pkg "^3.1.0" -"@lerna/prerelease-id-from-version@3.14.0": - version "3.14.0" - resolved "https://registry.yarnpkg.com/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-3.14.0.tgz#d5da9c26ac4a0d0ecde09018f06e41ca4dd444c2" - integrity sha512-Ap3Z/dNhqQuSrKmK+JmzYvQYI2vowxHvUVxZJiDVilW8dyNnxkCsYFmkuZytk5sxVz4VeGLNPS2RSsU5eeSS+Q== +"@lerna/prerelease-id-from-version@3.16.0": + version "3.16.0" + resolved "https://registry.yarnpkg.com/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-3.16.0.tgz#b24bfa789f5e1baab914d7b08baae9b7bd7d83a1" + integrity sha512-qZyeUyrE59uOK8rKdGn7jQz+9uOpAaF/3hbslJVFL1NqF9ELDTqjCPXivuejMX/lN4OgD6BugTO4cR7UTq/sZA== dependencies: - semver "^5.5.0" + semver "^6.2.0" -"@lerna/project@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/project/-/project-3.15.0.tgz#733b0993a849dcf5b68fcd0ec11d8f7de38a6999" - integrity sha512-eNGUWiMbQ9kh9kGkomtMnsLypS0rfLqxKgZP2+VnNVtIXjnLv4paeTm+1lkL+naNJUwhnpMk2NSLEeoxT/20QA== +"@lerna/project@3.18.0": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@lerna/project/-/project-3.18.0.tgz#56feee01daeb42c03cbdf0ed8a2a10cbce32f670" + integrity sha512-+LDwvdAp0BurOAWmeHE3uuticsq9hNxBI0+FMHiIai8jrygpJGahaQrBYWpwbshbQyVLeQgx3+YJdW2TbEdFWA== dependencies: - "@lerna/package" "3.14.2" + "@lerna/package" "3.16.0" "@lerna/validation-error" "3.13.0" cosmiconfig "^5.1.0" dedent "^0.7.0" dot-prop "^4.2.0" - glob-parent "^3.1.0" - globby "^8.0.1" - load-json-file "^4.0.0" + glob-parent "^5.0.0" + globby "^9.2.0" + load-json-file "^5.3.0" npmlog "^4.1.2" - p-map "^1.2.0" + p-map "^2.1.0" resolve-from "^4.0.0" - write-json-file "^2.3.0" + write-json-file "^3.2.0" -"@lerna/prompt@3.13.0": - version "3.13.0" - resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-3.13.0.tgz#53571462bb3f5399cc1ca6d335a411fe093426a5" - integrity sha512-P+lWSFokdyvYpkwC3it9cE0IF2U5yy2mOUbGvvE4iDb9K7TyXGE+7lwtx2thtPvBAfIb7O13POMkv7df03HJeA== +"@lerna/prompt@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-3.18.5.tgz#628cd545f225887d060491ab95df899cfc5218a1" + integrity sha512-rkKj4nm1twSbBEb69+Em/2jAERK8htUuV8/xSjN0NPC+6UjzAwY52/x9n5cfmpa9lyKf/uItp7chCI7eDmNTKQ== dependencies: inquirer "^6.2.0" npmlog "^4.1.2" -"@lerna/publish@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-3.15.0.tgz#54f93f8f0820d2d419d0b65df1eb55d8277090c9" - integrity sha512-6tRRBJ8olLSXfrUsR4f7vSfx0cT1oPi6/v06yI3afDSsUX6eQ3ooZh7gMY4RWmd+nM/IJHTUzhlKF6WhTvo+9g== - dependencies: - "@evocateur/libnpmaccess" "^3.1.0" - "@evocateur/npm-registry-fetch" "^3.9.1" - "@evocateur/pacote" "^9.6.0" - "@lerna/check-working-tree" "3.14.2" - "@lerna/child-process" "3.14.2" - "@lerna/collect-updates" "3.14.2" - "@lerna/command" "3.15.0" - "@lerna/describe-ref" "3.14.2" - "@lerna/log-packed" "3.13.0" - "@lerna/npm-conf" "3.13.0" - "@lerna/npm-dist-tag" "3.15.0" - "@lerna/npm-publish" "3.15.0" +"@lerna/publish@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-3.18.5.tgz#8cc708d83a4cb7ab1c4cc020a02e7ebc4b6b0b0e" + integrity sha512-ifYqLX6mvw95T8vYRlhT68UC7Al0flQvnf5uF9lDgdrgR5Bs+BTwzk3D+0ctdqMtfooekrV6pqfW0R3gtwRffQ== + dependencies: + "@evocateur/libnpmaccess" "^3.1.2" + "@evocateur/npm-registry-fetch" "^4.0.0" + "@evocateur/pacote" "^9.6.3" + "@lerna/check-working-tree" "3.16.5" + "@lerna/child-process" "3.16.5" + "@lerna/collect-updates" "3.18.0" + "@lerna/command" "3.18.5" + "@lerna/describe-ref" "3.16.5" + "@lerna/log-packed" "3.16.0" + "@lerna/npm-conf" "3.16.0" + "@lerna/npm-dist-tag" "3.18.5" + "@lerna/npm-publish" "3.18.5" + "@lerna/otplease" "3.18.5" "@lerna/output" "3.13.0" - "@lerna/pack-directory" "3.14.2" - "@lerna/prerelease-id-from-version" "3.14.0" - "@lerna/prompt" "3.13.0" + "@lerna/pack-directory" "3.16.4" + "@lerna/prerelease-id-from-version" "3.16.0" + "@lerna/prompt" "3.18.5" "@lerna/pulse-till-done" "3.13.0" - "@lerna/run-lifecycle" "3.14.0" - "@lerna/run-topologically" "3.14.0" + "@lerna/run-lifecycle" "3.16.2" + "@lerna/run-topologically" "3.18.5" "@lerna/validation-error" "3.13.0" - "@lerna/version" "3.15.0" + "@lerna/version" "3.18.5" figgy-pudding "^3.5.1" - fs-extra "^7.0.0" + fs-extra "^8.1.0" npm-package-arg "^6.1.0" npmlog "^4.1.2" p-finally "^1.0.0" - p-map "^1.2.0" + p-map "^2.1.0" p-pipe "^1.2.0" - semver "^5.5.0" + semver "^6.2.0" "@lerna/pulse-till-done@3.13.0": version "3.13.0" @@ -1419,95 +1450,87 @@ dependencies: npmlog "^4.1.2" -"@lerna/query-graph@3.14.0": - version "3.14.0" - resolved "https://registry.yarnpkg.com/@lerna/query-graph/-/query-graph-3.14.0.tgz#2abb36f445bd924d0f85ac7aec1445e9ef1e2c6c" - integrity sha512-6YTh3vDMW2hUxHdKeRvx4bosc9lZClKaN+DzC1XKTkwDbWrsjmEzLcemKL6QnyyeuryN2f/eto7P9iSe3z3pQQ== +"@lerna/query-graph@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/query-graph/-/query-graph-3.18.5.tgz#df4830bb5155273003bf35e8dda1c32d0927bd86" + integrity sha512-50Lf4uuMpMWvJ306be3oQDHrWV42nai9gbIVByPBYJuVW8dT8O8pA3EzitNYBUdLL9/qEVbrR0ry1HD7EXwtRA== dependencies: - "@lerna/package-graph" "3.14.0" + "@lerna/package-graph" "3.18.5" figgy-pudding "^3.5.1" -"@lerna/resolve-symlink@3.13.0": - version "3.13.0" - resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-3.13.0.tgz#3e6809ef53b63fe914814bfa071cd68012e22fbb" - integrity sha512-Lc0USSFxwDxUs5JvIisS8JegjA6SHSAWJCMvi2osZx6wVRkEDlWG2B1JAfXUzCMNfHoZX0/XX9iYZ+4JIpjAtg== +"@lerna/resolve-symlink@3.16.0": + version "3.16.0" + resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-3.16.0.tgz#37fc7095fabdbcf317c26eb74e0d0bde8efd2386" + integrity sha512-Ibj5e7njVHNJ/NOqT4HlEgPFPtPLWsO7iu59AM5bJDcAJcR96mLZ7KGVIsS2tvaO7akMEJvt2P+ErwCdloG3jQ== dependencies: - fs-extra "^7.0.0" + fs-extra "^8.1.0" npmlog "^4.1.2" read-cmd-shim "^1.0.1" -"@lerna/rimraf-dir@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-3.14.2.tgz#103a49882abd85d42285d05cc76869b89f21ffd2" - integrity sha512-eFNkZsy44Bu9v1Hrj5Zk6omzg8O9h/7W6QYK1TTUHeyrjTEwytaNQlqF0lrTLmEvq55sviV42NC/8P3M2cvq8Q== +"@lerna/rimraf-dir@3.16.5": + version "3.16.5" + resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-3.16.5.tgz#04316ab5ffd2909657aaf388ea502cb8c2f20a09" + integrity sha512-bQlKmO0pXUsXoF8lOLknhyQjOZsCc0bosQDoX4lujBXSWxHVTg1VxURtWf2lUjz/ACsJVDfvHZbDm8kyBk5okA== dependencies: - "@lerna/child-process" "3.14.2" + "@lerna/child-process" "3.16.5" npmlog "^4.1.2" path-exists "^3.0.0" rimraf "^2.6.2" -"@lerna/run-lifecycle@3.14.0": - version "3.14.0" - resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-3.14.0.tgz#0499eca0e7f393faf4e24e6c8737302a9059c22b" - integrity sha512-GUM3L9MzGRSW0WQ8wbLW1+SYStU1OFjW0GBzShhBnFrO4nGRrU7VchsLpcLu0hk2uCzyhsrDKzifEdOdUyMoEQ== +"@lerna/run-lifecycle@3.16.2": + version "3.16.2" + resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-3.16.2.tgz#67b288f8ea964db9ea4fb1fbc7715d5bbb0bce00" + integrity sha512-RqFoznE8rDpyyF0rOJy3+KjZCeTkO8y/OB9orPauR7G2xQ7PTdCpgo7EO6ZNdz3Al+k1BydClZz/j78gNCmL2A== dependencies: - "@lerna/npm-conf" "3.13.0" + "@lerna/npm-conf" "3.16.0" figgy-pudding "^3.5.1" - npm-lifecycle "^2.1.1" + npm-lifecycle "^3.1.2" npmlog "^4.1.2" -"@lerna/run-parallel-batches@3.13.0": - version "3.13.0" - resolved "https://registry.yarnpkg.com/@lerna/run-parallel-batches/-/run-parallel-batches-3.13.0.tgz#0276bb4e7cd0995297db82d134ca2bd08d63e311" - integrity sha512-bICFBR+cYVF1FFW+Tlm0EhWDioTUTM6dOiVziDEGE1UZha1dFkMYqzqdSf4bQzfLS31UW/KBd/2z8jy2OIjEjg== - dependencies: - p-map "^1.2.0" - p-map-series "^1.0.0" - -"@lerna/run-topologically@3.14.0": - version "3.14.0" - resolved "https://registry.yarnpkg.com/@lerna/run-topologically/-/run-topologically-3.14.0.tgz#2a560cb657f0ef1565c680b6001b4b01b872dc07" - integrity sha512-y+KBpC1YExFzGynovt9MY4O/bc3RrJaKeuXieiPfKGKxrdtmZe/r33oj/xePTXZq65jnw3SaU3H8S5CrrdkwDg== +"@lerna/run-topologically@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/run-topologically/-/run-topologically-3.18.5.tgz#3cd639da20e967d7672cb88db0f756b92f2fdfc3" + integrity sha512-6N1I+6wf4hLOnPW+XDZqwufyIQ6gqoPfHZFkfWlvTQ+Ue7CuF8qIVQ1Eddw5HKQMkxqN10thKOFfq/9NQZ4NUg== dependencies: - "@lerna/query-graph" "3.14.0" + "@lerna/query-graph" "3.18.5" figgy-pudding "^3.5.1" p-queue "^4.0.0" -"@lerna/run@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/run/-/run-3.15.0.tgz#465028b5b561a050bd760924e4a0749de3f43172" - integrity sha512-KQBkzZYoEKmzILKjbjsm1KKVWFBXwAdwzqJWj/lfxxd3V5LRF8STASk8aiw8bSpB0bUL9TU/pbXakRxiNzjDwQ== +"@lerna/run@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/run/-/run-3.18.5.tgz#09ae809b16445d3621249c24596cf4ae8e250d5d" + integrity sha512-1S0dZccNJO8+gT5ztYE4rHTEnbXVwThHOfDnlVt2KDxl9cbnBALk3xprGLW7lSzJsxegS849hxrAPUh0UorMgw== dependencies: - "@lerna/command" "3.15.0" - "@lerna/filter-options" "3.14.2" - "@lerna/npm-run-script" "3.14.2" + "@lerna/command" "3.18.5" + "@lerna/filter-options" "3.18.4" + "@lerna/npm-run-script" "3.16.5" "@lerna/output" "3.13.0" - "@lerna/run-topologically" "3.14.0" + "@lerna/run-topologically" "3.18.5" "@lerna/timer" "3.13.0" "@lerna/validation-error" "3.13.0" - p-map "^1.2.0" - -"@lerna/symlink-binary@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-3.14.2.tgz#a832fdc6c4b1e5aaf9e6ac9c7e6c322746965eb0" - integrity sha512-tqMwuWi6z1da0AFFbleWyu3H9fqayiV50rjj4anFTfayel9jSjlA1xPG+56sGIP6zUUNuUSc9kLh7oRRmlauoA== - dependencies: - "@lerna/create-symlink" "3.14.0" - "@lerna/package" "3.14.2" - fs-extra "^7.0.0" - p-map "^1.2.0" - -"@lerna/symlink-dependencies@3.14.2": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-3.14.2.tgz#e6b2a9544ff26addc1f4324734595e2f71dfc795" - integrity sha512-Ox7WKXnHZ7IwWlejcCq3n0Hd/yMLv8AwIryhvWxM/RauAge+ML4wg578SsdCyKob8ecgm/R0ytHiU06j81iL1w== - dependencies: - "@lerna/create-symlink" "3.14.0" - "@lerna/resolve-symlink" "3.13.0" - "@lerna/symlink-binary" "3.14.2" - fs-extra "^7.0.0" + p-map "^2.1.0" + +"@lerna/symlink-binary@3.17.0": + version "3.17.0" + resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-3.17.0.tgz#8f8031b309863814883d3f009877f82e38aef45a" + integrity sha512-RLpy9UY6+3nT5J+5jkM5MZyMmjNHxZIZvXLV+Q3MXrf7Eaa1hNqyynyj4RO95fxbS+EZc4XVSk25DGFQbcRNSQ== + dependencies: + "@lerna/create-symlink" "3.16.2" + "@lerna/package" "3.16.0" + fs-extra "^8.1.0" + p-map "^2.1.0" + +"@lerna/symlink-dependencies@3.17.0": + version "3.17.0" + resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-3.17.0.tgz#48d6360e985865a0e56cd8b51b308a526308784a" + integrity sha512-KmjU5YT1bpt6coOmdFueTJ7DFJL4H1w5eF8yAQ2zsGNTtZ+i5SGFBWpb9AQaw168dydc3s4eu0W0Sirda+F59Q== + dependencies: + "@lerna/create-symlink" "3.16.2" + "@lerna/resolve-symlink" "3.16.0" + "@lerna/symlink-binary" "3.17.0" + fs-extra "^8.1.0" p-finally "^1.0.0" - p-map "^1.2.0" + p-map "^2.1.0" p-map-series "^1.0.0" "@lerna/timer@3.13.0": @@ -1522,35 +1545,37 @@ dependencies: npmlog "^4.1.2" -"@lerna/version@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@lerna/version/-/version-3.15.0.tgz#3c65d223d94f211312995266abb07ee6606d5f73" - integrity sha512-vReYX1NMXZ9PwzTZm97wAl/k3bmRnRZhnQi3mq/m49xTnDavq7p4sbUdFpvu8cVZNKnYS02pNIVGHrQw+K8ZCw== - dependencies: - "@lerna/check-working-tree" "3.14.2" - "@lerna/child-process" "3.14.2" - "@lerna/collect-updates" "3.14.2" - "@lerna/command" "3.15.0" - "@lerna/conventional-commits" "3.14.0" - "@lerna/github-client" "3.14.2" +"@lerna/version@3.18.5": + version "3.18.5" + resolved "https://registry.yarnpkg.com/@lerna/version/-/version-3.18.5.tgz#0c4f0c2f8d23e9c95c2aa77ad9ce5c7ef025fac0" + integrity sha512-eSMxLIDuVxZIq0JZKNih50x1IZuMmViwF59uwOGMx0hHB84N3waE8HXOF9CJXDSjeP6sHB8tS+Y+X5fFpBop2Q== + dependencies: + "@lerna/check-working-tree" "3.16.5" + "@lerna/child-process" "3.16.5" + "@lerna/collect-updates" "3.18.0" + "@lerna/command" "3.18.5" + "@lerna/conventional-commits" "3.18.5" + "@lerna/github-client" "3.16.5" "@lerna/gitlab-client" "3.15.0" "@lerna/output" "3.13.0" - "@lerna/prerelease-id-from-version" "3.14.0" - "@lerna/prompt" "3.13.0" - "@lerna/run-lifecycle" "3.14.0" - "@lerna/run-topologically" "3.14.0" + "@lerna/prerelease-id-from-version" "3.16.0" + "@lerna/prompt" "3.18.5" + "@lerna/run-lifecycle" "3.16.2" + "@lerna/run-topologically" "3.18.5" "@lerna/validation-error" "3.13.0" chalk "^2.3.1" dedent "^0.7.0" + load-json-file "^5.3.0" minimatch "^3.0.4" npmlog "^4.1.2" - p-map "^1.2.0" + p-map "^2.1.0" p-pipe "^1.2.0" p-reduce "^1.0.0" p-waterfall "^1.0.0" - semver "^5.5.0" - slash "^1.0.0" + semver "^6.2.0" + slash "^2.0.0" temp-write "^3.4.0" + write-json-file "^3.2.0" "@lerna/write-log-file@3.13.0": version "3.13.0" @@ -1560,6 +1585,128 @@ npmlog "^4.1.2" write-file-atomic "^2.3.0" +"@lumino/algorithm@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@lumino/algorithm/-/algorithm-1.2.0.tgz#74e20e2ccf8c1452dde3dbc7887d9c01d0584031" + integrity sha512-QZpTDiqY53HmoPVDjsqJ3H6k8uhKIrbrOLV15wEkQMJJW38SzMnm+GxCXHRJ6J5ivL2L7lzyZ5UIVTUirscMMA== + +"@lumino/application@^1.7.0": + version "1.7.3" + resolved "https://registry.yarnpkg.com/@lumino/application/-/application-1.7.3.tgz#830f7808cef351d25f3efd76ce8e7d49ef990b00" + integrity sha512-IdfhwxfnSiLrSZ87UbgvkBTgdGax0KTWihQw3UBkhmAJyhwIN3o4/87OSa4QokC9O83iUy/Tcb/njzx5g56apw== + dependencies: + "@lumino/commands" "^1.7.2" + "@lumino/coreutils" "^1.3.1" + "@lumino/widgets" "^1.9.3" + +"@lumino/collections@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@lumino/collections/-/collections-1.2.0.tgz#ffab5e5e7a3299edce78cb238af50e96c141fa87" + integrity sha512-fz4zEt5cLSK5MfAdhNz65b0fnSntAx2xNWlCOHT8DrW5vsPEjHhXc8PgO75NwxfGjkeWV2ovRdsX9DJzbayabQ== + dependencies: + "@lumino/algorithm" "^1.2.0" + +"@lumino/commands@^1.7.0", "@lumino/commands@^1.7.2": + version "1.7.2" + resolved "https://registry.yarnpkg.com/@lumino/commands/-/commands-1.7.2.tgz#e7a9bbc13aab1c82b66fb242dd3d2f89a4c87ac6" + integrity sha512-cS9jiO3ppqcT0TgbHl/T8oXWk9FHZOovfS5TGK2L2I+ezKQmD68dtTujM80yAI8i/+TyOqxb8GgJXYfQN57SLg== + dependencies: + "@lumino/algorithm" "^1.2.0" + "@lumino/coreutils" "^1.3.1" + "@lumino/disposable" "^1.3.1" + "@lumino/domutils" "^1.1.4" + "@lumino/keyboard" "^1.1.3" + "@lumino/signaling" "^1.3.1" + +"@lumino/coreutils@^1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@lumino/coreutils/-/coreutils-1.3.1.tgz#1260c59a70d8b0d4717c734c3db34e0dfff5fa53" + integrity sha512-mC773HmUvn7aiHXZbTqzd9jriRrexO9cRdDFlckdH0Tj+TYDDOohVhJCVL/3u54I6WYHB2o13i+aAK8VSfdYyg== + +"@lumino/datagrid@^0.3.0": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@lumino/datagrid/-/datagrid-0.3.1.tgz#60df7ce9811f756553cc089ee396a918b9a0fb27" + integrity sha512-uy6s+Pgne7yIOupuuvdjNRbpAJdptyv4AUjMtK5c2A/2ZBn7XsY0wFpqqYKt4vivA7OXP0inMVVfG+lnYciYVw== + dependencies: + "@lumino/algorithm" "^1.2.0" + "@lumino/coreutils" "^1.3.1" + "@lumino/disposable" "^1.3.1" + "@lumino/domutils" "^1.1.4" + "@lumino/dragdrop" "^1.4.1" + "@lumino/messaging" "^1.3.0" + "@lumino/signaling" "^1.3.1" + "@lumino/widgets" "^1.9.3" + +"@lumino/disposable@^1.3.0", "@lumino/disposable@^1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@lumino/disposable/-/disposable-1.3.1.tgz#ff4191f9d66691d461f3c041e5ac1ee63e1859bf" + integrity sha512-f/XS/p4R3qwp5pvURHQya0T1BZHrpZ1FsZInwbB+1hTPUSjYW9SW/DiAL5XAfc0o5d6sSa6dquV8X24OiuGtPQ== + dependencies: + "@lumino/algorithm" "^1.2.0" + "@lumino/signaling" "^1.3.1" + +"@lumino/domutils@^1.1.3", "@lumino/domutils@^1.1.4": + version "1.1.4" + resolved "https://registry.yarnpkg.com/@lumino/domutils/-/domutils-1.1.4.tgz#15b7ddb477c695863cc375b6c21f95ae23388762" + integrity sha512-PEF//Q/3kN8Z/o8Qla/myPth/5LjNPMMdNHjw0FjPye4nd81voyabR1jFw+CouqqA0qxi1xH1TKLXnJrceONoQ== + +"@lumino/dragdrop@^1.3.0", "@lumino/dragdrop@^1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@lumino/dragdrop/-/dragdrop-1.4.1.tgz#c70b7c49285af5ea2bb4899f108d9c8d9896dcb4" + integrity sha512-U/8i6clry4K4Jl6MPEeC3GaWHK2N1zYEGpL4yPhNvLww3y5ICyBrFF8ng189N9Nb9V8x54204jvnOU9Ltpwrgw== + dependencies: + "@lumino/coreutils" "^1.3.1" + "@lumino/disposable" "^1.3.1" + +"@lumino/keyboard@^1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@lumino/keyboard/-/keyboard-1.1.3.tgz#52b2f31484c43d2ca713a17bdb9d92d6f7b5cf74" + integrity sha512-1w6y/bmCtj8AqxokMqw18y1jmi/ZO5ragMo60qU6sywsXetOv+ZDcH266AXhSJeouBPLXIp4dMIysaDfyzNf+A== + +"@lumino/messaging@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@lumino/messaging/-/messaging-1.3.0.tgz#4ce090a718866588295e65a86064257162a72d59" + integrity sha512-MxWTEvfhq5cY4Ti/sAkoDU/eHBCx2t1wCC4eWLYXh/iJvWi7LoplPi5ztGncDejSCiqlSu2f6KVoL8NBaNTlMQ== + dependencies: + "@lumino/algorithm" "^1.2.0" + "@lumino/collections" "^1.2.0" + +"@lumino/properties@^1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@lumino/properties/-/properties-1.1.3.tgz#0226be58d29692e065fa0da84b397d3149e606d5" + integrity sha512-TxeKT3aLlDXLQPd1JtCuy+ZBG0PzCvWG3/fCpRorn0mHuPAmwffutfbvTsu4awhu4pswguEusYlF1q5Z0sd50Q== + +"@lumino/signaling@^1.3.0", "@lumino/signaling@^1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@lumino/signaling/-/signaling-1.3.1.tgz#b50ef90fb37144f495051ddd73a720c624ce8bec" + integrity sha512-0qdBI7/3k7/wYs3afhXd1Q6tBEFM1WzChWRc3xQSsbTrqrVfQLmIhJwKorcTD2lImbVIIXs9DhHHXLxdLqddEg== + dependencies: + "@lumino/algorithm" "^1.2.0" + +"@lumino/virtualdom@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@lumino/virtualdom/-/virtualdom-1.2.0.tgz#6edb6f71c0e3f9599fb37790c237131ce191c30a" + integrity sha512-78ClNAx84UIyzwh2Jx7r8ytbny8cWpZ4nfpsow2G/LRnIkQUs1DpqLrVJgQr8dljVRL4i7dNm7SGVGnFZvhF4w== + dependencies: + "@lumino/algorithm" "^1.2.0" + +"@lumino/widgets@^1.9.0", "@lumino/widgets@^1.9.3": + version "1.9.3" + resolved "https://registry.yarnpkg.com/@lumino/widgets/-/widgets-1.9.3.tgz#d6e95ae3178d1150932348c779e6e305855c6983" + integrity sha512-WZ0Eej/W6poZgNDvCyQuCmwTa7z6GEYhtBT33XqxXcfPm3WrZmVhDmv5DEAsxBGIST4zrmgnKdkyi/ZQwl0hiw== + dependencies: + "@lumino/algorithm" "^1.2.0" + "@lumino/commands" "^1.7.2" + "@lumino/coreutils" "^1.3.1" + "@lumino/disposable" "^1.3.1" + "@lumino/domutils" "^1.1.4" + "@lumino/dragdrop" "^1.4.1" + "@lumino/keyboard" "^1.1.3" + "@lumino/messaging" "^1.3.0" + "@lumino/properties" "^1.1.3" + "@lumino/signaling" "^1.3.1" + "@lumino/virtualdom" "^1.2.0" + "@mrmlnc/readdir-enhanced@^2.2.1": version "2.2.1" resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" @@ -1574,57 +1721,58 @@ integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== "@nteract/transform-vdom@^4.0.1": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@nteract/transform-vdom/-/transform-vdom-4.0.2.tgz#b6c7a85d0c7e825d4792adc3d7fbeeb8af5c434c" - integrity sha512-lp1wCvi/oLkCeQAJpXYzcrwuXrXZNyHGv/zHRmTQ+6TPtFAsLk0Zd0Br3uaIDPVBvY0baUN+lwkjHa1Cab0miw== + version "4.0.3" + resolved "https://registry.yarnpkg.com/@nteract/transform-vdom/-/transform-vdom-4.0.3.tgz#cd6591837792803a5b9924fb6808cff9e5b87ce0" + integrity sha512-45AJlC2WBmqXk3MdOm7jjfSUFcC2pidvMm+EpS2RDZmN4ej+iSiboJdUejeZC6XZDHGseAdLbp47kBvjhcfzoA== dependencies: lodash "^4.17.4" -"@octokit/endpoint@^5.1.0": - version "5.1.8" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-5.1.8.tgz#5c8c204aece0eb6f030df1e97a11b8096ba198b8" - integrity sha512-BVVNVVeVGySIF6nvoaO6AaickboZr7A1O6z1wmnMRslewi6O+KILSp0ZsXbkgLnP8V8pa7WM9+wSYYczIUBm5w== +"@octokit/endpoint@^5.5.0": + version "5.5.1" + resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-5.5.1.tgz#2eea81e110ca754ff2de11c79154ccab4ae16b3f" + integrity sha512-nBFhRUb5YzVTCX/iAK1MgQ4uWo89Gu0TH00qQHoYRCsE12dWcG1OiLd7v2EIo2+tpUKPMOQ62QFy9hy9Vg2ULg== dependencies: - deepmerge "3.3.0" + "@octokit/types" "^2.0.0" is-plain-object "^3.0.0" - universal-user-agent "^2.1.0" - url-template "^2.0.8" + universal-user-agent "^4.0.0" -"@octokit/plugin-enterprise-rest@^2.1.1": - version "2.2.2" - resolved "https://registry.yarnpkg.com/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-2.2.2.tgz#c0e22067a043e19f96ff9c7832e2a3019f9be75c" - integrity sha512-CTZr64jZYhGWNTDGlSJ2mvIlFsm9OEO3LqWn9I/gmoHI4jRBp4kpHoFYNemG4oA75zUAcmbuWblb7jjP877YZw== +"@octokit/plugin-enterprise-rest@^3.6.1": + version "3.6.2" + resolved "https://registry.yarnpkg.com/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-3.6.2.tgz#74de25bef21e0182b4fa03a8678cd00a4e67e561" + integrity sha512-3wF5eueS5OHQYuAEudkpN+xVeUsg8vYEMMenEzLphUZ7PRZ8OJtDcsreL3ad9zxXmBbaFWzLmFcdob5CLyZftA== "@octokit/request-error@^1.0.1", "@octokit/request-error@^1.0.2": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-1.0.4.tgz#15e1dc22123ba4a9a4391914d80ec1e5303a23be" - integrity sha512-L4JaJDXn8SGT+5G0uX79rZLv0MNJmfGa4vb4vy1NnpjSnWDLJRy6m90udGwvMmavwsStgbv2QNkPzzTCMmL+ig== + version "1.2.0" + resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-1.2.0.tgz#a64d2a9d7a13555570cd79722de4a4d76371baaa" + integrity sha512-DNBhROBYjjV/I9n7A8kVkmQNkqFAMem90dSxqvPq57e2hBr7mNTX98y3R2zDpqMQHVRpBDjsvsfIGgBzy+4PAg== dependencies: + "@octokit/types" "^2.0.0" deprecation "^2.0.0" once "^1.4.0" -"@octokit/request@^4.0.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-4.1.1.tgz#614262214f48417b4d3b14e047d09a9c8e2f7a09" - integrity sha512-LOyL0i3oxRo418EXRSJNk/3Q4I0/NKawTn6H/CQp+wnrG1UFLGu080gSsgnWobhPo5BpUNgSQ5BRk5FOOJhD1Q== +"@octokit/request@^5.2.0": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.3.1.tgz#3a1ace45e6f88b1be4749c5da963b3a3b4a2f120" + integrity sha512-5/X0AL1ZgoU32fAepTfEoggFinO3rxsMLtzhlUX+RctLrusn/CApJuGFCd0v7GMFhF+8UiCsTTfsu7Fh1HnEJg== dependencies: - "@octokit/endpoint" "^5.1.0" + "@octokit/endpoint" "^5.5.0" "@octokit/request-error" "^1.0.1" + "@octokit/types" "^2.0.0" deprecation "^2.0.0" is-plain-object "^3.0.0" node-fetch "^2.3.0" once "^1.4.0" - universal-user-agent "^2.1.0" + universal-user-agent "^4.0.0" -"@octokit/rest@^16.16.0": - version "16.28.2" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-16.28.2.tgz#3fc3b8700046ab29ab1e2a4bdf49f89e94f7ba27" - integrity sha512-csuYiHvJ1P/GFDadVn0QhwO83R1+YREjcwCY7ZIezB6aJTRIEidJZj+R7gAkUhT687cqYb4cXTZsDVu9F+Fmug== +"@octokit/rest@^16.28.4": + version "16.35.0" + resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-16.35.0.tgz#7ccc1f802f407d5b8eb21768c6deca44e7b4c0d8" + integrity sha512-9ShFqYWo0CLoGYhA1FdtdykJuMzS/9H6vSbbQWDX4pWr4p9v+15MsH/wpd/3fIU+tSxylaNO48+PIHqOkBRx3w== dependencies: - "@octokit/request" "^4.0.1" + "@octokit/request" "^5.2.0" "@octokit/request-error" "^1.0.2" atob-lite "^2.0.0" - before-after-hook "^1.4.0" + before-after-hook "^2.0.0" btoa-lite "^1.0.0" deprecation "^2.0.0" lodash.get "^4.4.2" @@ -1632,130 +1780,14 @@ lodash.uniq "^4.5.0" octokit-pagination-methods "^1.1.0" once "^1.4.0" - universal-user-agent "^2.0.0" - url-template "^2.0.8" - -"@phosphor/algorithm@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@phosphor/algorithm/-/algorithm-1.2.0.tgz#4a19aa59261b7270be696672dc3f0663f7bef152" - integrity sha512-C9+dnjXyU2QAkWCW6QVDGExk4hhwxzAKf5/FIuYlHAI9X5vFv99PYm0EREDxX1PbMuvfFBZhPNu0PvuSDQ7sFA== - -"@phosphor/application@^1.7.0": - version "1.7.0" - resolved "https://registry.yarnpkg.com/@phosphor/application/-/application-1.7.0.tgz#fc6ca5eb262f4a1ea72b3d819ce2bcf52cbbc974" - integrity sha512-7qarGeOumovqUvCM2G7MeRjEcMJouFVfRVR2U8nAVDh0JvC6y6lrDvGoyBM2y4mQbnjKqR+uoJtcgkZ3geOmVw== - dependencies: - "@phosphor/commands" "^1.7.0" - "@phosphor/coreutils" "^1.3.1" - "@phosphor/widgets" "^1.9.0" - -"@phosphor/collections@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@phosphor/collections/-/collections-1.2.0.tgz#a8cdd0edc0257de7c33306a91caf47910036307f" - integrity sha512-T9/0EjSuY6+ga2LIFRZ0xupciOR3Qnyy8Q95lhGTC0FXZUFwC8fl9e8On6IcwasCszS+1n8dtZUWSIynfgdpzw== - dependencies: - "@phosphor/algorithm" "^1.2.0" - -"@phosphor/commands@^1.7.0": - version "1.7.0" - resolved "https://registry.yarnpkg.com/@phosphor/commands/-/commands-1.7.0.tgz#9c72b6b6de9a2f819d22d0dd737f5515fa55b8ba" - integrity sha512-2tkij4fiU0WcnUiY0H0kX9mQhdJms5X6s+X9Uzx5P+KJZm0B83VIC1OEb1YYDYh8ar+LMr0dBnM5ljvZbptUXw== - dependencies: - "@phosphor/algorithm" "^1.2.0" - "@phosphor/coreutils" "^1.3.1" - "@phosphor/disposable" "^1.3.0" - "@phosphor/domutils" "^1.1.3" - "@phosphor/keyboard" "^1.1.3" - "@phosphor/signaling" "^1.3.0" - -"@phosphor/coreutils@^1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@phosphor/coreutils/-/coreutils-1.3.1.tgz#441e34f42340f7faa742a88b2a181947a88d7226" - integrity sha512-9OHCn8LYRcPU/sbHm5v7viCA16Uev3gbdkwqoQqlV+EiauDHl70jmeL7XVDXdigl66Dz0LI11C99XOxp+s3zOA== - -"@phosphor/datagrid@^0.1.11": - version "0.1.11" - resolved "https://registry.yarnpkg.com/@phosphor/datagrid/-/datagrid-0.1.11.tgz#ebf884ec506f7a875df94abc57aa5a5bdae369fa" - integrity sha512-mGJDbkYx5Wd4X4SO8FO+IHY3bq2ukx63/Fk98AZbunzLO2BgM22c60j/h8KS/nFAThJC0pDB4isG6w3Z62f/Zw== - dependencies: - "@phosphor/algorithm" "^1.2.0" - "@phosphor/coreutils" "^1.3.1" - "@phosphor/disposable" "^1.3.0" - "@phosphor/domutils" "^1.1.3" - "@phosphor/dragdrop" "^1.4.0" - "@phosphor/messaging" "^1.3.0" - "@phosphor/signaling" "^1.3.0" - "@phosphor/widgets" "^1.9.0" - -"@phosphor/disposable@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@phosphor/disposable/-/disposable-1.3.0.tgz#3321a420e14acf0761a559f202bf98d4c46b8163" - integrity sha512-wHQov7HoS20mU6yuEz5ZMPhfxHdcxGovjPoid0QwccUEOm33UBkWlxaJGm9ONycezIX8je7ZuPOf/gf7JI6Dlg== - dependencies: - "@phosphor/algorithm" "^1.2.0" - "@phosphor/signaling" "^1.3.0" - -"@phosphor/domutils@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@phosphor/domutils/-/domutils-1.1.3.tgz#5aeeaefb4bbfcc7c0942e5287a29d3c7f2b1a2bc" - integrity sha512-5CtLAhURQXXHhNXfQydDk/luG1cDVnhlu/qw7gz8/9pht0KXIAmNg/M0LKxx2oJ9+YMNCLVWxAnHAU0yrDpWSA== - -"@phosphor/dragdrop@^1.3.0", "@phosphor/dragdrop@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@phosphor/dragdrop/-/dragdrop-1.4.0.tgz#f626465714965d7bd4ea9b269ed0289c05f427a7" - integrity sha512-JqmDAKczviUe7NEkiDf/A6H2glgVmHAREip8dGBli4lvV+CQqPFyl4Xm7XCnR9qiEqNrP+0SfwPpywNa0me3nQ== - dependencies: - "@phosphor/coreutils" "^1.3.1" - "@phosphor/disposable" "^1.3.0" - -"@phosphor/keyboard@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@phosphor/keyboard/-/keyboard-1.1.3.tgz#e5fd13af0479034ef0b5fffcf43ef2d4a266b5b6" - integrity sha512-dzxC/PyHiD6mXaESRy6PZTd9JeK+diwG1pyngkyUf127IXOEzubTIbu52VSdpGBklszu33ws05BAGDa4oBE4mQ== - -"@phosphor/messaging@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@phosphor/messaging/-/messaging-1.3.0.tgz#a140e6dd28a496260779acf74860f738c654c65e" - integrity sha512-k0JE+BTMKlkM335S2AmmJxoYYNRwOdW5jKBqLgjJdGRvUQkM0+2i60ahM45+J23atGJDv9esKUUBINiKHFhLew== - dependencies: - "@phosphor/algorithm" "^1.2.0" - "@phosphor/collections" "^1.2.0" - -"@phosphor/properties@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@phosphor/properties/-/properties-1.1.3.tgz#63e4355be5e22a411c566fd1860207038f171598" - integrity sha512-GiglqzU77s6+tFVt6zPq9uuyu/PLQPFcqZt914ZhJ4cN/7yNI/SLyMzpYZ56IRMXvzK9TUgbRna6URE3XAwFUg== - -"@phosphor/signaling@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@phosphor/signaling/-/signaling-1.3.0.tgz#9de9904e07aaf6eb82074de29017c7c2bf1fd3df" - integrity sha512-ZbG2Mof4LGSkaEuDicqA2o2TKu3i5zanjr2GkevI/82aKBD7cI1NGLGT55HZwtE87/gOF4FIM3d3DeyrFDMjMQ== - dependencies: - "@phosphor/algorithm" "^1.2.0" + universal-user-agent "^4.0.0" -"@phosphor/virtualdom@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@phosphor/virtualdom/-/virtualdom-1.2.0.tgz#6a233312f817eb02555a0359c4ae3e501fa62bca" - integrity sha512-L9mKNhK2XtVjzjuHLG2uYuepSz8uPyu6vhF4EgCP0rt0TiLYaZeHwuNu3XeFbul9DMOn49eBpye/tfQVd4Ks+w== +"@octokit/types@^2.0.0": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@octokit/types/-/types-2.0.2.tgz#0888497f5a664e28b0449731d5e88e19b2a74f90" + integrity sha512-StASIL2lgT3TRjxv17z9pAqbnI7HGu9DrJlg3sEBFfCLaMEqp+O3IQPUF6EZtQ4xkAu2ml6kMBBCtGxjvmtmuQ== dependencies: - "@phosphor/algorithm" "^1.2.0" - -"@phosphor/widgets@^1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@phosphor/widgets/-/widgets-1.9.0.tgz#fd234cf3c515aaa7a072e9c62eecf7416f703fc7" - integrity sha512-Op6H0lI7MlHAs+htzy+6fL+x3TxG0N024RGsdIYkaNKyeSw6b7ZUXcd7mKCeabWPoTwiMCx3kiLTvExmNSYgwA== - dependencies: - "@phosphor/algorithm" "^1.2.0" - "@phosphor/commands" "^1.7.0" - "@phosphor/coreutils" "^1.3.1" - "@phosphor/disposable" "^1.3.0" - "@phosphor/domutils" "^1.1.3" - "@phosphor/dragdrop" "^1.4.0" - "@phosphor/keyboard" "^1.1.3" - "@phosphor/messaging" "^1.3.0" - "@phosphor/properties" "^1.1.3" - "@phosphor/signaling" "^1.3.0" - "@phosphor/virtualdom" "^1.2.0" + "@types/node" ">= 8" "@samverschueren/stream-to-observable@^0.3.0": version "0.3.0" @@ -1782,9 +1814,9 @@ integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== "@types/babel__core@^7.1.0": - version "7.1.2" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.2.tgz#608c74f55928033fce18b99b213c16be4b3d114f" - integrity sha512-cfCCrFmiGY/yq0NuKNxIQvZFy9kY/1immpSpTngOnyIbD4+eJOG5mxphhHDv3CHL9GltO4GcKr54kGBg3RNdbg== + version "7.1.3" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30" + integrity sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -1793,9 +1825,9 @@ "@types/babel__traverse" "*" "@types/babel__generator@*": - version "7.0.2" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.0.2.tgz#d2112a6b21fad600d7674274293c85dce0cb47fc" - integrity sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ== + version "7.6.0" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.0.tgz#f1ec1c104d1bb463556ecb724018ab788d0c172a" + integrity sha512-c1mZUu4up5cp9KROs/QAw0gTeHrw/x7m52LcnvMxxOZ03DmLwPV0MlGmlgzV3cnSdjhJOZsj7E7FHeioai+egw== dependencies: "@babel/types" "^7.0.0" @@ -1808,16 +1840,16 @@ "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.0.7" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.7.tgz#2496e9ff56196cc1429c72034e07eab6121b6f3f" - integrity sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw== + version "7.0.8" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.8.tgz#479a4ee3e291a403a1096106013ec22cf9b64012" + integrity sha512-yGeB2dHEdvxjP0y4UbRtQaSkXJ9649fYCmIdRoul5kfAoGCwxuCbMhag0k3RPfnuh9kPGm8x89btcfDEXdVWGw== dependencies: "@babel/types" "^7.3.0" "@types/chai@^4.1.7": - version "4.1.7" - resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.1.7.tgz#1b8e33b61a8c09cbe1f85133071baa0dbf9fa71a" - integrity sha512-2Y8uPt0/jwjhQ6EiluT0XCri1Dbplr0ZxfFXUz+ye13gaqE8u5gL5ppao1JrUYr9cIip5S6MvQzBS7Kke7U9VA== + version "4.2.6" + resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.2.6.tgz#a55625d151d9c7c7a0a95920632131d66480bce9" + integrity sha512-HF8faEUA4JurIm+68VaA2KedtZf5LYdXpQEAbIAN79DwWQbO82BNTksZgCH3UMqbZHXex9C6TrBfg7OUInRISQ== "@types/clone@~0.1.30": version "0.1.30" @@ -1849,9 +1881,9 @@ "@types/domhandler" "*" "@types/estree@*": - version "0.0.39" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" - integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== + version "0.0.40" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.40.tgz#0e6cb9b9bbd098031fa19e4b4e8131bc70e5de13" + integrity sha512-p3KZgMto/JyxosKGmnLDJ/dG5wf+qTRMUjHJcspC2oQKa4jP7mz+tv0ND56lLBu3ojHlhzY33Ol+khLyNmilkA== "@types/events@*": version "3.0.0" @@ -1880,18 +1912,18 @@ "@types/node" "*" "@types/htmlparser2@*": - version "3.10.0" - resolved "https://registry.yarnpkg.com/@types/htmlparser2/-/htmlparser2-3.10.0.tgz#b94d3b08f813c9eec12990ac6a34d8b17a7aebc9" - integrity sha512-keXxWwpNOTvRTWTS4cdLHPp3p6gSzitTCmLNgPJinEvS95QzjkhbEMSaQO4XkEp4ctXJu8P0j4xqEVOPsLj3vg== + version "3.10.1" + resolved "https://registry.yarnpkg.com/@types/htmlparser2/-/htmlparser2-3.10.1.tgz#1e65ba81401d53f425c1e2ba5a3d05c90ab742c7" + integrity sha512-fCxmHS4ryCUCfV9+CJZY1UjkbR+6Al/EQdX5Jh03qBj9gdlPG5q+7uNoDgE/ZNXb3XNWSAQgqKIWnbRCbOyyWA== dependencies: "@types/domhandler" "*" "@types/domutils" "*" "@types/node" "*" "@types/inquirer@^6.0.3": - version "6.0.3" - resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-6.0.3.tgz#597b3c1aa4a575899841ab99bb4f1774d0b8c090" - integrity sha512-lBsdZScFMaFYYIE3Y6CWX22B9VeY2NerT1kyU2heTc3u/W6a+Om6Au2q0rMzBrzynN0l4QoABhI0cbNdyz6fDg== + version "6.5.0" + resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-6.5.0.tgz#b83b0bf30b88b8be7246d40e51d32fe9d10e09be" + integrity sha512-rjaYQ9b9y/VFGOpqBEXRavc3jh0a+e6evAbI31tMda8VlPaSy0AZJfXsvmIe3wklc7W6C3zCSfleuMXR7NOyXw== dependencies: "@types/through" "*" rxjs "^6.4.0" @@ -1916,17 +1948,12 @@ "@types/istanbul-lib-coverage" "*" "@types/istanbul-lib-report" "*" -"@types/jest-diff@*": - version "20.0.1" - resolved "https://registry.yarnpkg.com/@types/jest-diff/-/jest-diff-20.0.1.tgz#35cc15b9c4f30a18ef21852e255fdb02f6d59b89" - integrity sha512-yALhelO3i0hqZwhjtcr6dYyaLoCHbAMshwtj6cGxTvHZAKXHsYGdff6E8EPw3xLKY0ELUTQ69Q1rQiJENnccMA== - "@types/jest@^24.0.13": - version "24.0.15" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.0.15.tgz#6c42d5af7fe3b44ffff7cc65de7bf741e8fa427f" - integrity sha512-MU1HIvWUme74stAoc3mgAi+aMlgKOudgEvQDIm1v4RkrDudBh1T+NFp5sftpBAdXdx1J0PbdpJ+M2EsSOi1djA== + version "24.0.23" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.0.23.tgz#046f8e2ade026fe831623e361a36b6fb9a4463e4" + integrity sha512-L7MBvwfNpe7yVPTXLn32df/EK+AMBFAFvZrRuArGs7npEWnlziUXK+5GMIUTI4NIuwok3XibsjXCs5HxviYXjg== dependencies: - "@types/jest-diff" "*" + jest-diff "^24.3.0" "@types/json-stable-stringify@^1.0.32": version "1.0.32" @@ -1946,9 +1973,9 @@ "@types/lodash" "*" "@types/lodash@*": - version "4.14.134" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.134.tgz#9032b440122db3a2a56200e91191996161dde5b9" - integrity sha512-2/O0khFUCFeDlbi7sZ7ZFRCcT812fAeOLm7Ev4KbwASkZ575TDrDcY7YyaoHdTOzKcNbfiwLYZqPmoC4wadrsw== + version "4.14.149" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.149.tgz#1342d63d948c6062838fbf961012f74d4e638440" + integrity sha512-ijGqzZt/b7BfzcK9vTrS6MFljQRPn5BFWOx8oE0GYxribu6uV+aA9zZuXI1zc/etK9E8nrgdoF2+LgUw7+9tJQ== "@types/marked@^0.6.5": version "0.6.5" @@ -1978,16 +2005,16 @@ integrity sha512-NYrtPht0wGzhwe9+/idPaBB+TqkY9AhTvOLMkThm0IoEfLaiVQZwBwyJ5puCkO3AUCWrmcoePjp2mbFocKy4SQ== "@types/node-fetch@^2.3.4": - version "2.3.7" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.3.7.tgz#b7212e895100f8642dbdab698472bab5f3c1d2f1" - integrity sha512-+bKtuxhj/TYSSP1r4CZhfmyA0vm/aDRQNo7vbAgf6/cZajn0SAniGGST07yvI4Q+q169WTa2/x9gEHfJrkcALw== + version "2.5.4" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.4.tgz#5245b6d8841fc3a6208b82291119bc11c4e0ce44" + integrity sha512-Oz6id++2qAOFuOlE1j0ouk1dzl3mmI1+qINPNBhi9nt/gVOz0G+13Ao6qjhdF0Ys+eOkhu6JnFmt38bR3H0POQ== dependencies: "@types/node" "*" -"@types/node@*", "@types/node@^12.0.2": - version "12.0.10" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.0.10.tgz#51babf9c7deadd5343620055fc8aff7995c8b031" - integrity sha512-LcsGbPomWsad6wmMNv7nBLw7YYYyfdYcz6xryKYQhx89c3XXan+8Q6AJ43G5XDIaklaVkK3mE4fCb0SBvMiPSQ== +"@types/node@*", "@types/node@>= 8", "@types/node@^12.0.2": + version "12.12.14" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.14.tgz#1c1d6e3c75dba466e0326948d56e8bd72a1903d2" + integrity sha512-u/SJDyXwuihpwjXy7hOOghagLEV1KdAST6syfnOk6QZAMzZuWZqXy5aYYZbh8Jdpd4escVFP0MvftHNDb9pruA== "@types/normalize-package-data@^2.4.0": version "2.4.0" @@ -1995,14 +2022,14 @@ integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== "@types/prettier@^1.16.4": - version "1.18.0" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.18.0.tgz#d2dbe4d5f76b455138f13a2d881278e2c06a733d" - integrity sha512-5N6WK/XXs9PLPpge2KOmOSaIym2vIo32GsrxM5YOFs7uZ8R9L/acg+hQzWsfwoHEpasqQkH0+3LzLTbiF1GFLQ== + version "1.19.0" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.19.0.tgz#a2502fb7ce9b6626fdbfc2e2a496f472de1bdd05" + integrity sha512-gDE8JJEygpay7IjA/u3JiIURvwZW08f0cZSZLAzFoX/ZmeqvS0Sqv+97aKuHpNsalAMMhwPe+iAS6fQbfmbt7A== "@types/prop-types@*": - version "15.7.1" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.1.tgz#f1a11e7babb0c3cad68100be381d1e064c68f1f6" - integrity sha512-CFzn9idOEpHrgdw8JsoTkaDDyRWk1jrzIV8djzcgpq0y9tG4B4lFT+Nxh52DVpDXV+n4+NPNv7M1Dj5uMp6XFg== + version "15.7.3" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" + integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== "@types/q@^1.5.1": version "1.5.2" @@ -2010,9 +2037,9 @@ integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== "@types/react-dom@^16.8.4": - version "16.8.4" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.8.4.tgz#7fb7ba368857c7aa0f4e4511c4710ca2c5a12a88" - integrity sha512-eIRpEW73DCzPIMaNBDP5pPIpK1KXyZwNgfxiVagb5iGiz6da+9A5hslSX6GAQKdO7SayVCS/Fr2kjqprgAvkfA== + version "16.9.4" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.4.tgz#0b58df09a60961dcb77f62d4f1832427513420df" + integrity sha512-fya9xteU/n90tda0s+FtN5Ym4tbgxpq/hb/Af24dvs6uYnYn+fspaxw5USlw0R8apDNwxsqumdRoCoKitckQqw== dependencies: "@types/react" "*" @@ -2038,24 +2065,29 @@ "@types/react" "*" "@types/react@*", "@types/react@~16.8.18": - version "16.8.22" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.8.22.tgz#7f18bf5ea0c1cad73c46b6b1c804a3ce0eec6d54" - integrity sha512-C3O1yVqk4sUXqWyx0wlys76eQfhrQhiDhDlHBrjER76lR2S2Agiid/KpOU9oCqj1dISStscz7xXz1Cg8+sCQeA== + version "16.8.25" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.8.25.tgz#0247613ab58b1b11ba10fed662e1947c5f2bb89c" + integrity sha512-ydAAkLnNTC4oYSxJ3zwK/4QcVmEecACJ4ZdxXITbxz/dhahBSDKY6OQ1uawAW6rE/7kfHccxulYLSAIZVrSq0A== dependencies: "@types/prop-types" "*" csstype "^2.2.0" "@types/sanitize-html@^1.18.3": - version "1.20.0" - resolved "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-1.20.0.tgz#b3beaa9eacab0e0fa5022d5faa727fea8fb9fc5d" - integrity sha512-didHnmdOqYconeLOaHbYK9Y0jEULat5UbblgPUmwTJCEU7gA9AW1m9Zsi4h5gMFP56zAWRuAnH42D/h1zwZr+Q== + version "1.20.2" + resolved "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-1.20.2.tgz#59777f79f015321334e3a9f28882f58c0a0d42b8" + integrity sha512-SrefiiBebGIhxEFkpbbYOwO1S6+zQLWAC4s4tipchlHq1aO9bp0xiapM7Zm0ml20MF+3OePWYdksB1xtneKPxg== dependencies: "@types/htmlparser2" "*" "@types/semver@^6.0.0": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-6.0.1.tgz#a984b405c702fa5a7ec6abc56b37f2ba35ef5af6" - integrity sha512-ffCdcrEE5h8DqVxinQjo+2d1q+FV5z7iNtPofw3JsrltSoSVlOGaW0rY8XxtO9XukdTn8TaCGWmk2VFGhI70mg== + version "6.2.0" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-6.2.0.tgz#d688d574400d96c5b0114968705366f431831e1a" + integrity sha512-1OzrNb4RuAzIT7wHSsgZRlMBlNsJl+do6UblR7JMW4oB7bbR+uBEYtUh7gEc/jM84GGilh68lSOokyM/zNUlBA== + +"@types/source-list-map@*": + version "0.1.2" + resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9" + integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA== "@types/stack-utils@^1.0.1": version "1.0.1" @@ -2094,19 +2126,29 @@ source-map "^0.6.1" "@types/webpack-env@^1.13.9": - version "1.13.9" - resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.13.9.tgz#a67287861c928ebf4159a908d1fb1a2a34d4097a" - integrity sha512-p8zp5xqkly3g4cCmo2mKOHI9+Z/kObmDj0BmjbDDJQlgDTiEGTbm17MEwTAusV6XceCy+bNw9q/ZHXHyKo3zkg== + version "1.14.1" + resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.14.1.tgz#0d8a53f308f017c53a5ddc3d07f4d6fa76b790d7" + integrity sha512-0Ki9jAAhKDSuLDXOIMADg54Hu60SuBTEsWaJGGy5cV+SSUQ63J2a+RrYYGrErzz39fXzTibhKrAQJAb8M7PNcA== + +"@types/webpack-sources@*": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-0.1.5.tgz#be47c10f783d3d6efe1471ff7f042611bd464a92" + integrity sha512-zfvjpp7jiafSmrzJ2/i3LqOyTYTuJ7u1KOXlKgDlvsj9Rr0x7ZiYu5lZbXwobL7lmsRNtPXlBfmaUD8eU2Hu8w== + dependencies: + "@types/node" "*" + "@types/source-list-map" "*" + source-map "^0.6.1" "@types/webpack@*", "@types/webpack@^4.4.32": - version "4.4.33" - resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.4.33.tgz#c43936ad0f350fd12fd7df3792a364ab8f64e2fa" - integrity sha512-MU5Lokm30QHF9Wn0+yq/hnToPlEBRQVa72mgn1/W8OpJu63aRDKy0aEdMI+pCk8F6zwQJfSFaVzx1JN1MLXx8A== + version "4.41.0" + resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.0.tgz#b813a044d8b0dec7dfcd7622fdbe327bde06eb9a" + integrity sha512-tWkdf9nO0zFgAY/EumUKwrDUhraHKDqCPhwfFR/R8l0qnPdgb9le0Gzhvb7uzVpouuDGBgiE//ZdY+5jcZy2TA== dependencies: "@types/anymatch" "*" "@types/node" "*" "@types/tapable" "*" "@types/uglify-js" "*" + "@types/webpack-sources" "*" source-map "^0.6.0" "@types/which@^1.3.2": @@ -2115,17 +2157,23 @@ integrity sha512-8oDqyLC7eD4HM307boe2QWKyuzdzWBj56xI/imSl2cpL+U3tCMaTAkMJ4ee5JBZ/FsOJlvRGeIShiZDAl1qERA== "@types/ws@^6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-6.0.1.tgz#ca7a3f3756aa12f62a0a62145ed14c6db25d5a28" - integrity sha512-EzH8k1gyZ4xih/MaZTXwT2xOkPiIMSrhQ9b8wrlX88L0T02eYsddatQlwVFlEPyEqV0ChpdpNnE51QPH6NVT4Q== + version "6.0.4" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-6.0.4.tgz#7797707c8acce8f76d8c34b370d4645b70421ff1" + integrity sha512-PpPrX7SZW9re6+Ha8ojZG4Se8AZXgf0GK6zmfqEuCsY49LFDNXO3SByp44X3dFEqtB73lkCDAdUazhAjVPiNwg== dependencies: - "@types/events" "*" "@types/node" "*" -"@types/yargs@^12.0.2", "@types/yargs@^12.0.9": - version "12.0.12" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916" - integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw== +"@types/yargs-parser@*": + version "13.1.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.1.0.tgz#c563aa192f39350a1d18da36c5a8da382bbd8228" + integrity sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg== + +"@types/yargs@^13.0.0": + version "13.0.3" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.3.tgz#76482af3981d4412d65371a318f992d33464a380" + integrity sha512-K8/LfZq2duW33XW/tFwEAfnZlqIfVsoyRB3kfXdPXYhl0nfM8mmh7GS0jg7WrX2Dgq/0Ha/pR1PaR+BvmWwjiQ== + dependencies: + "@types/yargs-parser" "*" "@webassemblyjs/ast@1.8.5": version "1.8.5" @@ -2288,6 +2336,15 @@ resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== +"@zkochan/cmd-shim@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@zkochan/cmd-shim/-/cmd-shim-3.1.0.tgz#2ab8ed81f5bb5452a85f25758eb9b8681982fd2e" + integrity sha512-o8l0+x7C7sMZU3v9GuJIAU10qQLtwR1dtRQIOmlNMtyaqhmpXOzx1HWiYoWfmmf9HHZoAkXpc9TM9PQYF9d4Jg== + dependencies: + is-windows "^1.0.0" + mkdirp-promise "^5.0.1" + mz "^2.5.0" + JSONStream@^1.0.4, JSONStream@^1.3.4: version "1.3.5" resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" @@ -2296,15 +2353,15 @@ JSONStream@^1.0.4, JSONStream@^1.3.4: jsonparse "^1.2.0" through ">=2.2.7 <3" -"JSV@>= 4.0.x": +JSV@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/JSV/-/JSV-4.0.2.tgz#d077f6825571f82132f9dffaed587b4029feff57" integrity sha1-0Hf2glVx+CEy+d/67Vh7QCn+/1c= abab@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" - integrity sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w== + version "2.0.3" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a" + integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg== abbrev@1, abbrev@1.0.x: version "1.0.9" @@ -2319,23 +2376,18 @@ accepts@~1.3.4, accepts@~1.3.7: mime-types "~2.1.24" negotiator "0.6.2" -acorn-dynamic-import@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948" - integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw== - acorn-globals@^4.1.0: - version "4.3.2" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.2.tgz#4e2c2313a597fd589720395f6354b41cd5ec8006" - integrity sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ== + 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-jsx@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" - integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== + version "5.1.0" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.1.0.tgz#294adb71b57398b0680015f0a38c563ee1db5384" + integrity sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw== acorn-walk@^6.0.1, acorn-walk@^6.1.1: version "6.2.0" @@ -2347,17 +2399,24 @@ acorn@^5.5.3: resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== -acorn@^6.0.1, acorn@^6.0.5, acorn@^6.0.7: - version "6.1.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" - integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA== +acorn@^6.0.1, acorn@^6.0.7, acorn@^6.2.1: + version "6.4.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.0.tgz#b659d2ffbafa24baf5db1cdbb2c94a983ecd2784" + integrity sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw== after@0.8.2: version "0.8.2" resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= -agent-base@4, agent-base@^4.1.0, agent-base@~4.2.1: +agent-base@4, agent-base@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" + integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg== + dependencies: + es6-promisify "^5.0.0" + +agent-base@~4.2.1: version "4.2.1" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9" integrity sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg== @@ -2376,10 +2435,10 @@ ajv-errors@^1.0.0: resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== -ajv-keywords@^3.1.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.0.tgz#4b831e7b531415a7cc518cd404e73f6193c6349d" - integrity sha512-aUjdRFISbuFOl0EIZc+9e4FfZp0bDZgAdOOf30bJmw8VM9v84SHyVyxDfbWxpGYbdZD/9XoKxfHVNmxPkhwyGw== +ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" + integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== ajv@^5.0.0: version "5.5.2" @@ -2391,10 +2450,10 @@ ajv@^5.0.0: fast-json-stable-stringify "^2.0.0" json-schema-traverse "^0.3.0" -ajv@^6.1.0, ajv@^6.5.5, ajv@^6.9.1: - version "6.10.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" - integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg== +ajv@^6.1.0, ajv@^6.10.2, ajv@^6.5.5, ajv@^6.9.1: + version "6.10.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" + integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== dependencies: fast-deep-equal "^2.0.1" fast-json-stable-stringify "^2.0.0" @@ -2409,6 +2468,7 @@ amdefine@>=0.0.4: ansi-align@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" + integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= dependencies: string-width "^2.0.0" @@ -2449,16 +2509,16 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" -ansi-styles@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" - integrity sha1-yxAt8cVvUSPquLZ817mAJ6AnkXg= - any-observable@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha1-q8av7tzqUugJzcA3au0845Y10X8= + anymatch@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" @@ -2467,6 +2527,14 @@ anymatch@^2.0.0: micromatch "^3.1.4" normalize-path "^2.1.1" +anymatch@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" + integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + append-transform@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab" @@ -2514,10 +2582,10 @@ arr-union@^3.1.0: resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= -array-differ@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" - integrity sha1-7/UuN1gknTO+QCuLuOVkuytdQDE= +array-differ@^2.0.3: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-2.1.0.tgz#4b9c1c3f14b906757082925769e8ab904f4801b1" + integrity sha512-KbUpJgx909ZscOc/7CLATBFam7P1Z1QRQInvgT0UztM9Q72aGKCunKASAl7WNW0tnPmPyEMeMhdsfWhfmW037w== array-equal@^1.0.0: version "1.0.0" @@ -2539,7 +2607,7 @@ array-ify@^1.0.0: resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4= -array-union@^1.0.1: +array-union@^1.0.1, array-union@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= @@ -2561,7 +2629,7 @@ arraybuffer.slice@~0.0.7: resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog== -arrify@^1.0.0, arrify@^1.0.1: +arrify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= @@ -2626,9 +2694,9 @@ async-each@^1.0.1: integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== async-limiter@^1.0.0, async-limiter@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" - integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== + 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@1.x: version "1.5.2" @@ -2636,11 +2704,11 @@ async@1.x: integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= async@^2.0.0, async@^2.5.0, async@^2.6.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381" - integrity sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg== + version "2.6.3" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" + integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== dependencies: - lodash "^4.17.11" + lodash "^4.17.14" asynckit@^0.4.0: version "0.4.0" @@ -2663,9 +2731,9 @@ aws-sign2@~0.7.0: integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= aws4@^1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" - integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== + version "1.9.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.0.tgz#24390e6ad61386b0a747265754d2a17219de862c" + integrity sha512-Uvq6hVe90D0B2WEnUqtdgY1bATGz3mw33nH9Y+dmA+w5DHvUmBgkr5rM/KCHpCsiFNRUfokW/szpPPgMK2hm4A== axe-core@3.2.2: version "3.2.2" @@ -2695,16 +2763,16 @@ babel-generator@^6.18.0: source-map "^0.5.7" trim-right "^1.0.1" -babel-jest@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.8.0.tgz#5c15ff2b28e20b0f45df43fe6b7f2aae93dba589" - integrity sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw== +babel-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.9.0.tgz#3fc327cb8467b89d14d7bc70e315104a783ccd54" + integrity sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw== dependencies: - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" "@types/babel__core" "^7.1.0" babel-plugin-istanbul "^5.1.0" - babel-preset-jest "^24.6.0" + babel-preset-jest "^24.9.0" chalk "^2.4.2" slash "^2.0.0" @@ -2715,29 +2783,37 @@ babel-messages@^6.23.0: dependencies: babel-runtime "^6.22.0" +babel-plugin-dynamic-import-node@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" + integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== + dependencies: + object.assign "^4.1.0" + babel-plugin-istanbul@^5.1.0: - version "5.1.4" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.4.tgz#841d16b9a58eeb407a0ddce622ba02fe87a752ba" - integrity sha512-dySz4VJMH+dpndj0wjJ8JPs/7i1TdSPb1nRrn56/92pKOF9VKC1FMFJmMXjzlGGusnCAqujP6PBCiKq0sVA+YQ== + version "5.2.0" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz#df4ade83d897a92df069c4d9a25cf2671293c854" + integrity sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw== dependencies: + "@babel/helper-plugin-utils" "^7.0.0" find-up "^3.0.0" istanbul-lib-instrument "^3.3.0" test-exclude "^5.2.3" -babel-plugin-jest-hoist@^24.6.0: - version "24.6.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz#f7f7f7ad150ee96d7a5e8e2c5da8319579e78019" - integrity sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w== +babel-plugin-jest-hoist@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz#4f837091eb407e01447c8843cbec546d0002d756" + integrity sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw== dependencies: "@types/babel__traverse" "^7.0.6" -babel-preset-jest@^24.6.0: - version "24.6.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz#66f06136eefce87797539c0d63f1769cc3915984" - integrity sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw== +babel-preset-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz#192b521e2217fb1d1f67cf73f70c336650ad3cdc" + integrity sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg== dependencies: "@babel/plugin-syntax-object-rest-spread" "^7.0.0" - babel-plugin-jest-hoist "^24.6.0" + babel-plugin-jest-hoist "^24.9.0" babel-runtime@^6.0.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.6.1: version "6.26.0" @@ -2816,9 +2892,9 @@ base64-arraybuffer@0.1.5: integrity sha1-c5JncZI7Whl0etZmqlzUv5xunOg= base64-js@^1.0.2: - version "1.3.0" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" - integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== + version "1.3.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" + integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== base64id@1.0.0: version "1.0.0" @@ -2845,10 +2921,10 @@ bcrypt-pbkdf@^1.0.0: dependencies: tweetnacl "^0.14.3" -before-after-hook@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-1.4.0.tgz#2b6bf23dca4f32e628fd2747c10a37c74a4b484d" - integrity sha512-l5r9ir56nda3qu14nAXIlyq1MmUSs0meCIaFAh8HwkFwP1F8eToOuS3ah2VAHHcY04jaYD7FpJC5JTXHYRbkzg== +before-after-hook@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.1.0.tgz#b6c03487f44e24200dd30ca5e6a1979c5d2fb635" + integrity sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A== better-assert@~1.0.0: version "1.0.2" @@ -2882,6 +2958,11 @@ binary-extensions@^1.0.0: resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== +binary-extensions@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" + integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== + blacklist@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/blacklist/-/blacklist-1.1.4.tgz#b2dd09d6177625b2caa69835a37b28995fa9a2f2" @@ -2893,9 +2974,9 @@ blob@0.0.5: integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig== bluebird@^3.3.0, bluebird@^3.5.1, bluebird@^3.5.3, bluebird@^3.5.5: - version "3.5.5" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f" - integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w== + version "3.7.2" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: version "4.11.8" @@ -2926,6 +3007,7 @@ boolbase@^1.0.0, boolbase@~1.0.0: boxen@^1.2.1: version "1.3.0" resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" + integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== dependencies: ansi-align "^2.0.0" camelcase "^4.0.0" @@ -2959,7 +3041,7 @@ braces@^2.3.1, braces@^2.3.2: split-string "^3.0.2" to-regex "^3.0.1" -braces@^3.0.1: +braces@^3.0.1, braces@^3.0.2, braces@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== @@ -3047,14 +3129,14 @@ browserify-zlib@^0.2.0: dependencies: pako "~1.0.5" -browserslist@^4.6.0, browserslist@^4.6.2: - version "4.6.3" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.3.tgz#0530cbc6ab0c1f3fc8c819c72377ba55cf647f05" - integrity sha512-CNBqTCq22RKM8wKJNowcqihHJ4SkI8CGeK7KOR9tPboXUuS5Zk5lQgzzTbs4oxD8x+6HUshZUa2OyNI9lR93bQ== +browserslist@^4.6.0, browserslist@^4.8.0: + version "4.8.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.0.tgz#6f06b0f974a7cc3a84babc2ccc56493668e3c789" + integrity sha512-HYnxc/oLRWvJ3TsGegR0SRL/UDnknGq2s/a8dYYEO+kOQ9m9apKoS5oiathLKZdh/e9uE+/J3j92qPlGD/vTqA== dependencies: - caniuse-lite "^1.0.30000975" - electron-to-chromium "^1.3.164" - node-releases "^1.1.23" + caniuse-lite "^1.0.30001012" + electron-to-chromium "^1.3.317" + node-releases "^1.1.41" bs-logger@0.x: version "0.2.6" @@ -3064,9 +3146,9 @@ bs-logger@0.x: fast-json-stable-stringify "2.x" bser@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.0.tgz#65fc784bf7f87c009b973c12db6546902fa9c7b5" - integrity sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg== + 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" @@ -3104,9 +3186,9 @@ buffer-xor@^1.0.3: integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= buffer@^4.3.0: - version "4.9.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" - integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= + version "4.9.2" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" + integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== dependencies: base64-js "^1.0.2" ieee754 "^1.1.4" @@ -3132,26 +3214,27 @@ byline@^5.0.0: resolved "https://registry.yarnpkg.com/byline/-/byline-5.0.0.tgz#741c5216468eadc457b03410118ad77de8c1ddb1" integrity sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE= -byte-size@^4.0.3: - version "4.0.4" - resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-4.0.4.tgz#29d381709f41aae0d89c631f1c81aec88cd40b23" - integrity sha512-82RPeneC6nqCdSwCX2hZUz3JPOvN5at/nTEw/CMf05Smu3Hrpo9Psb7LjN+k+XndNArG1EY8L4+BM3aTM4BCvw== +byte-size@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-5.0.1.tgz#4b651039a5ecd96767e71a3d7ed380e48bed4191" + integrity sha512-/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw== bytes@3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== -cacache@^11.0.1, cacache@^11.3.2: - version "11.3.3" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.3.tgz#8bd29df8c6a718a6ebd2d010da4d7972ae3bbadc" - integrity sha512-p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA== +cacache@^12.0.0, cacache@^12.0.2, cacache@^12.0.3: + version "12.0.3" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.3.tgz#be99abba4e1bf5df461cd5a2c1071fc432573390" + integrity sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw== dependencies: bluebird "^3.5.5" chownr "^1.1.1" figgy-pudding "^3.5.1" glob "^7.1.4" graceful-fs "^4.1.15" + infer-owner "^1.0.3" lru-cache "^5.1.1" mississippi "^3.0.0" mkdirp "^0.5.1" @@ -3259,15 +3342,20 @@ camelcase@^4.0.0, camelcase@^4.1.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= -camelcase@^5.0.0, camelcase@^5.2.0: +camelcase@^5.0.0, camelcase@^5.2.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.30000975: - version "1.0.30000976" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000976.tgz#d30fe12662cb2a21e130d307db9907513ca830a2" - integrity sha512-tleNB1IwPRqZiod6nUNum63xQCMN96BUO2JTeiwuRM7p9d616EHsMBjBWJMudX39qCaPuWY8KEWzMZq7A9XQMQ== +caniuse-lite@^1.0.30001012: + version "1.0.30001013" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001013.tgz#da2440d4d266a17d40eb79bd19c0c8cc1d029c72" + integrity sha512-hOAXaWKuq/UVFgYawxIOdPdyMQdYcwOCDOjnZcKn7wCgFUrhP7smuNZjGLuJlPSgE6aRA4cRJ+bGSrhtEt7ZAg== + +canonicalize@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/canonicalize/-/canonicalize-1.0.1.tgz#657b4f3fa38a6ecb97a9e5b7b26d7a19cc6e0da9" + integrity sha512-N3cmB3QLhS5TJ5smKFf1w42rJXWe6C1qP01z4dxJiI5v269buii4fLHWETDyf7yEd0azGLNC63VxNMiPd2u0Cg== canvas-prebuilt@1.6.11: version "1.6.11" @@ -3293,6 +3381,7 @@ capture-exit@^2.0.0: capture-stack-trace@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" + integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== caseless@~0.12.0: version "0.12.0" @@ -3311,18 +3400,7 @@ chai@^4.2.0: pathval "^1.1.0" type-detect "^4.0.5" -chalk@^1.0.0, chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2: +chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -3331,14 +3409,16 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4 escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" - integrity sha1-UZmj3c0MHv4jvAjBsCewYXbgxk8= +chalk@^1.0.0, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= dependencies: - ansi-styles "~1.0.0" - has-color "~0.1.0" - strip-ansi "~0.1.0" + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" chardet@^0.4.0: version "0.4.2" @@ -3353,6 +3433,7 @@ chardet@^0.7.0: charenc@~0.0.1: version "0.0.2" resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= check-error@^1.0.2: version "1.0.2" @@ -3369,10 +3450,10 @@ child_process@~1.0.2: resolved "https://registry.yarnpkg.com/child_process/-/child_process-1.0.2.tgz#b1f7e7fc73d25e7fd1d455adc94e143830182b5a" integrity sha1-sffn/HPSXn/R1FWtyU4UODAYK1o= -chokidar@^2.0.2, chokidar@^2.0.3, chokidar@^2.0.4: - version "2.1.6" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5" - integrity sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g== +chokidar@^2.0.2, chokidar@^2.0.4: + version "2.1.8" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" + integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== dependencies: anymatch "^2.0.0" async-each "^1.0.1" @@ -3388,10 +3469,25 @@ chokidar@^2.0.2, chokidar@^2.0.3, chokidar@^2.0.4: optionalDependencies: fsevents "^1.2.7" -chownr@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" - integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== +chokidar@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.3.0.tgz#12c0714668c55800f659e262d4962a97faf554a6" + integrity sha512-dGmKLDdT3Gdl7fBUe8XK+gAtGmzy5Fn0XkkWQuYxGIgWVPPse2CxFA5mtrlD0TOHaHjEUqkWNyP1XdHoJES/4A== + dependencies: + anymatch "~3.1.1" + braces "~3.0.2" + glob-parent "~5.1.0" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.2.0" + optionalDependencies: + fsevents "~2.1.1" + +chownr@^1.1.1, chownr@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142" + integrity sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw== chrome-launcher@^0.10.7: version "0.10.7" @@ -3404,7 +3500,7 @@ chrome-launcher@^0.10.7: mkdirp "0.5.1" rimraf "^2.6.1" -chrome-trace-event@^1.0.0: +chrome-trace-event@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== @@ -3454,6 +3550,7 @@ clean-css@4.2.x: cli-boxes@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= cli-cursor@^2.0.0, cli-cursor@^2.1.0: version "2.1.0" @@ -3478,6 +3575,7 @@ cli-width@^2.0.0: cliui@^3.0.3: version "3.2.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= dependencies: string-width "^1.0.1" strip-ansi "^3.0.1" @@ -3501,6 +3599,15 @@ cliui@^5.0.0: strip-ansi "^5.2.0" wrap-ansi "^5.1.0" +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + clone-response@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" @@ -3518,14 +3625,6 @@ clone@~2.1.2: resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= -cmd-shim@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-2.0.2.tgz#6fcbda99483a8fd15d7d30a196ca69d688a2efdb" - integrity sha1-b8vamUg6j9FdfTChlspp1oii79s= - dependencies: - graceful-fs "^4.1.2" - mkdirp "~0.5.0" - co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" @@ -3571,9 +3670,9 @@ color-name@1.1.3: integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= colors@^1.1.0: - version "1.3.3" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d" - integrity sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg== + version "1.4.0" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" + integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== columnify@^1.5.4: version "1.5.4" @@ -3590,10 +3689,10 @@ combined-stream@^1.0.6, combined-stream@~1.0.6: dependencies: delayed-stream "~1.0.0" -commander@2, commander@^2.10.0, commander@^2.12.1, commander@^2.14.1, commander@^2.18.0, commander@^2.19.0, commander@^2.9.0, commander@~2.20.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" - integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== +commander@2, commander@^2.10.0, commander@^2.12.1, commander@^2.14.1, commander@^2.18.0, commander@^2.20.0, commander@^2.9.0, commander@~2.20.0: + 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@2.17.x: version "2.17.1" @@ -3619,9 +3718,9 @@ compare-func@^1.3.1: dot-prop "^3.0.0" compare-versions@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.4.0.tgz#e0747df5c9cb7f054d6d3dc3e1dbc444f9e92b26" - integrity sha512-tK69D7oNXXqUW3ZNo/z7NXTEz22TCF0pTE+YF9cxvaAM9XnkLo1fV621xCLrRR6aevJlKxExkss0vWqUCUpqdg== + version "3.5.1" + resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.5.1.tgz#26e1f5cf0d48a77eced5046b9f67b6b61075a393" + integrity sha512-9fGPIB7C6AyM18CJJBHt5EnCZDG3oiTJYy0NjfIAGjKpzv0tkxWko7TNQHF5ymqm7IH03tqmeuBxtvD+Izh6mg== component-bind@1.0.0: version "1.0.0" @@ -3674,6 +3773,7 @@ config-chain@^1.1.11: configstore@^3.0.0, configstore@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" + integrity sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw== dependencies: dot-prop "^4.1.0" graceful-fs "^4.1.2" @@ -3693,11 +3793,9 @@ connect@^3.6.0: utils-merge "1.0.1" console-browserify@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" - integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= - dependencies: - date-now "^0.1.4" + version "1.2.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" + integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== console-control-strings@^1.0.0, console-control-strings@~1.1.0: version "1.1.0" @@ -3722,25 +3820,25 @@ content-type@~1.0.4: integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== conventional-changelog-angular@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.3.tgz#299fdd43df5a1f095283ac16aeedfb0a682ecab0" - integrity sha512-YD1xzH7r9yXQte/HF9JBuEDfvjxxwDGGwZU1+ndanbY0oFgA+Po1T9JDSpPLdP0pZT6MhCAsdvFKC4TJ4MTJTA== + version "5.0.6" + resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.6.tgz#269540c624553aded809c29a3508fdc2b544c059" + integrity sha512-QDEmLa+7qdhVIv8sFZfVxU1VSyVvnXPsxq8Vam49mKUcO1Z8VTLEJk9uI21uiJUsnmm0I4Hrsdc9TgkOQo9WSA== dependencies: compare-func "^1.3.1" q "^1.5.1" conventional-changelog-core@^3.1.6: - version "3.2.2" - resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-3.2.2.tgz#de41e6b4a71011a18bcee58e744f6f8f0e7c29c0" - integrity sha512-cssjAKajxaOX5LNAJLB+UOcoWjAIBvXtDMedv/58G+YEmAXMNfC16mmPl0JDOuVJVfIqM0nqQiZ8UCm8IXbE0g== + version "3.2.3" + resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-3.2.3.tgz#b31410856f431c847086a7dcb4d2ca184a7d88fb" + integrity sha512-LMMX1JlxPIq/Ez5aYAYS5CpuwbOk6QFp8O4HLAcZxe3vxoCtABkhfjetk8IYdRB9CDQGwJFLR3Dr55Za6XKgUQ== dependencies: - conventional-changelog-writer "^4.0.5" - conventional-commits-parser "^3.0.2" + conventional-changelog-writer "^4.0.6" + conventional-commits-parser "^3.0.3" dateformat "^3.0.0" get-pkg-repo "^1.0.0" git-raw-commits "2.0.0" git-remote-origin-url "^2.0.0" - git-semver-tags "^2.0.2" + git-semver-tags "^2.0.3" lodash "^4.2.1" normalize-package-data "^2.3.5" q "^1.5.1" @@ -3749,22 +3847,22 @@ conventional-changelog-core@^3.1.6: through2 "^3.0.0" conventional-changelog-preset-loader@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.1.1.tgz#65bb600547c56d5627d23135154bcd9a907668c4" - integrity sha512-K4avzGMLm5Xw0Ek/6eE3vdOXkqnpf9ydb68XYmCc16cJ99XMMbc2oaNMuPwAsxVK6CC1yA4/I90EhmWNj0Q6HA== + version "2.3.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.0.tgz#580fa8ab02cef22c24294d25e52d7ccd247a9a6a" + integrity sha512-/rHb32J2EJnEXeK4NpDgMaAVTFZS3o1ExmjKMtYVgIC4MQn0vkNSbYpdGRotkfGGRWiqk3Ri3FBkiZGbAfIfOQ== -conventional-changelog-writer@^4.0.5: - version "4.0.6" - resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.6.tgz#24db578ac8e7c89a409ef9bba12cf3c095990148" - integrity sha512-ou/sbrplJMM6KQpR5rKFYNVQYesFjN7WpNGdudQSWNi6X+RgyFUcSv871YBYkrUYV9EX8ijMohYVzn9RUb+4ag== +conventional-changelog-writer@^4.0.6: + version "4.0.11" + resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.11.tgz#9f56d2122d20c96eb48baae0bf1deffaed1edba4" + integrity sha512-g81GQOR392I+57Cw3IyP1f+f42ME6aEkbR+L7v1FBBWolB0xkjKTeCWVguzRrp6UiT1O6gBpJbEy2eq7AnV1rw== dependencies: compare-func "^1.3.1" conventional-commits-filter "^2.0.2" dateformat "^3.0.0" - handlebars "^4.1.0" + handlebars "^4.4.0" json-stringify-safe "^5.0.1" - lodash "^4.2.1" - meow "^4.0.0" + lodash "^4.17.15" + meow "^5.0.0" semver "^6.0.0" split "^1.0.0" through2 "^3.0.0" @@ -3777,37 +3875,37 @@ conventional-commits-filter@^2.0.2: lodash.ismatch "^4.4.0" modify-values "^1.0.0" -conventional-commits-parser@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.0.3.tgz#c3f972fd4e056aa8b9b4f5f3d0e540da18bf396d" - integrity sha512-KaA/2EeUkO4bKjinNfGUyqPTX/6w9JGshuQRik4r/wJz7rUw3+D3fDG6sZSEqJvKILzKXFQuFkpPLclcsAuZcg== +conventional-commits-parser@^3.0.3: + version "3.0.8" + resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.0.8.tgz#23310a9bda6c93c874224375e72b09fb275fe710" + integrity sha512-YcBSGkZbYp7d+Cr3NWUeXbPDFUN6g3SaSIzOybi8bjHL5IJ5225OSCxJJ4LgziyEJ7AaJtE9L2/EU6H7Nt/DDQ== dependencies: JSONStream "^1.0.4" - is-text-path "^2.0.0" - lodash "^4.2.1" - meow "^4.0.0" + is-text-path "^1.0.1" + lodash "^4.17.15" + meow "^5.0.0" split2 "^2.0.0" through2 "^3.0.0" trim-off-newlines "^1.0.0" -conventional-recommended-bump@^4.0.4: - version "4.1.1" - resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-4.1.1.tgz#37014fadeda267d0607e2fc81124da840a585127" - integrity sha512-JT2vKfSP9kR18RXXf55BRY1O3AHG8FPg5btP3l7LYfcWJsiXI6MCf30DepQ98E8Qhowvgv7a8iev0J1bEDkTFA== +conventional-recommended-bump@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-5.0.1.tgz#5af63903947b6e089e77767601cb592cabb106ba" + integrity sha512-RVdt0elRcCxL90IrNP0fYCpq1uGt2MALko0eyeQ+zQuDVWtMGAy9ng6yYn3kax42lCj9+XBxQ8ZN6S9bdKxDhQ== dependencies: concat-stream "^2.0.0" conventional-changelog-preset-loader "^2.1.1" conventional-commits-filter "^2.0.2" - conventional-commits-parser "^3.0.2" + conventional-commits-parser "^3.0.3" git-raw-commits "2.0.0" - git-semver-tags "^2.0.2" + git-semver-tags "^2.0.3" meow "^4.0.0" q "^1.5.1" -convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" - integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== +convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" + integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== dependencies: safe-buffer "~5.1.1" @@ -3844,28 +3942,22 @@ copy-descriptor@^0.1.0: integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= core-js-compat@^3.1.1: - version "3.1.4" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.4.tgz#e4d0c40fbd01e65b1d457980fe4112d4358a7408" - integrity sha512-Z5zbO9f1d0YrJdoaQhphVAnKPimX92D6z8lCGphH89MNRxlL1prI9ExJPqVwP0/kgkQCv8c4GJGT8X16yUncOg== + version "3.4.7" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.4.7.tgz#39f8080b1d92a524d6d90505c42b9c5c1eb90611" + integrity sha512-57+mgz/P/xsGdjwQYkwtBZR3LuISaxD1dEwVDtbk8xJMqAmwqaxLOvnNT7kdJ7jYE/NjNptyzXi+IQFMi/2fCw== dependencies: - browserslist "^4.6.2" - core-js-pure "3.1.4" - semver "^6.1.1" - -core-js-pure@3.1.4: - version "3.1.4" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.4.tgz#5fa17dc77002a169a3566cc48dc774d2e13e3769" - integrity sha512-uJ4Z7iPNwiu1foygbcZYJsJs1jiXrTTCvxfLDXNhI/I+NHbSIEyr548y4fcsCEyWY0XgfAG/qqaunJ1SThHenA== + browserslist "^4.8.0" + semver "^6.3.0" core-js@^1.0.0: version "1.2.7" resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY= -core-js@^2.2.0, core-js@^2.4.0: - version "2.6.9" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2" - integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A== +core-js@^2.4.0: + version "2.6.10" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.10.tgz#8a5b8391f8cc7013da703411ce5b585706300d7f" + integrity sha512-I39t74+4t+zau64EN1fE5v2W31Adtc/REhzWN+gWRRXg6WH5qAsZm62DHpQ1+Yhe4047T55jvzz7MUqF/dBBlA== core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" @@ -3893,6 +3985,7 @@ create-ecdh@^4.0.0: create-error-class@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" + integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= dependencies: capture-stack-trace "^1.0.0" @@ -3928,24 +4021,15 @@ create-react-class@^15.6.2: loose-envify "^1.3.1" object-assign "^4.1.1" -create-react-context@<=0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.2.2.tgz#9836542f9aaa22868cd7d4a6f82667df38019dca" - integrity sha512-KkpaLARMhsTsgp0d2NA/R94F/eDLbhXERdIq3LvX2biCAXcDvHYoOqHfWCHf1+OLj+HKBotLG3KqaOOf+C1C+A== +create-react-context@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.3.0.tgz#546dede9dc422def0d3fc2fe03afe0bc0f4f7d8c" + integrity sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw== dependencies: - fbjs "^0.8.0" gud "^1.0.0" + warning "^4.0.3" -cross-spawn@^5.0.1: - version "5.1.0" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" - integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= - dependencies: - lru-cache "^4.0.1" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^6.0.0, cross-spawn@^6.0.5: +cross-spawn@6.0.5, 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== @@ -3956,9 +4040,19 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5: shebang-command "^1.2.0" which "^1.2.9" +cross-spawn@^5.0.1: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + crypt@~0.0.1: version "0.0.2" resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs= crypto-browserify@^3.11.0: version "3.12.0" @@ -3980,6 +4074,7 @@ crypto-browserify@^3.11.0: crypto-random-string@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" + integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= crypto@~1.0.1: version "1.0.1" @@ -4019,12 +4114,12 @@ css-select@^1.1.0: nth-check "~1.0.1" css-select@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.0.2.tgz#ab4386cec9e1f668855564b17c3733b43b2a5ede" - integrity sha512-dSpYaDVoWaELjvZ3mS6IKZM/y2PMPa/XYoEfYNZePL4U/XgyxZNroHEHReDx/d+VgXh9VbCTtFqLkFbmeqeaRQ== + version "2.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" + integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== dependencies: boolbase "^1.0.0" - css-what "^2.1.2" + css-what "^3.2.1" domutils "^1.7.0" nth-check "^1.0.2" @@ -4049,11 +4144,16 @@ css-url-regex@^1.1.0: resolved "https://registry.yarnpkg.com/css-url-regex/-/css-url-regex-1.1.0.tgz#83834230cc9f74c457de59eebd1543feeb83b7ec" integrity sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w= -css-what@2.1, css-what@^2.1.2: +css-what@2.1: version "2.1.3" resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== +css-what@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.2.1.tgz#f4a8f12421064621b456755e34a03a2c22df5da1" + integrity sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw== + cssesc@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" @@ -4067,9 +4167,9 @@ csso@^3.5.1: css-tree "1.0.0-alpha.29" cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": - version "0.3.6" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.6.tgz#f85206cee04efa841f3c5982a74ba96ab20d65ad" - integrity sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A== + version "0.3.8" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== cssstyle@1.2.1, cssstyle@^1.0.0: version "1.2.1" @@ -4079,9 +4179,9 @@ cssstyle@1.2.1, cssstyle@^1.0.0: cssom "0.3.x" csstype@^2.2.0, csstype@^2.4.0: - version "2.6.5" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.5.tgz#1cd1dff742ebf4d7c991470ae71e12bb6751e034" - integrity sha512-JsTaiksRsel5n7XwqPAfB0l3TFKdpjW/kgAELf9vrb5adGA7UCPLajKK5s3nFrcFm3Rkyp/Qkgl73ENc1UY3cA== + version "2.6.7" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.7.tgz#20b0024c20b6718f4eda3853a1f5a1cce7f5e4a5" + integrity sha512-9Mcn9sFbGBAdmimWb2gLVDtFJzeKtDGIr76TUqmjZrw9LFXBMSU70lcs+C0/7fyCd6iBDqmksUcCOUIkisPHsQ== csv-spectrum@~1.0.0: version "1.0.0" @@ -4100,30 +4200,30 @@ custom-event@~1.0.0: resolved "https://registry.yarnpkg.com/custom-event/-/custom-event-1.0.1.tgz#5d02a46850adf1b4a317946a3928fccb5bfd0425" integrity sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU= -cyclist@~0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" - integrity sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA= +cyclist@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" + integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= -d3-array@1, d3-array@^1.1.1, d3-array@^1.2.0, "d3-array@^1.2.0 || 2": +d3-array@1, d3-array@^1.1.1, d3-array@^1.2.0: version "1.2.4" resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f" integrity sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw== -d3-array@^2.0.2, d3-array@^2.0.3: - version "2.2.0" - resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.2.0.tgz#a9e966b8f8d78f0888d98db1fb840fc8da8ac5c7" - integrity sha512-eE0QmSh6xToqM3sxHiJYg/QFdNn52ZEgmFE8A8abU8GsHvsIOolqH8B70/8+VGAKm5MlwaExhqR3DLIjOJMLPA== +"d3-array@1.2.0 - 2", d3-array@^2.0.2, d3-array@^2.0.3, d3-array@^2.3.3: + version "2.4.0" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.4.0.tgz#87f8b9ad11088769c82b5ea846bcb1cc9393f242" + integrity sha512-KQ41bAF2BMakf/HdKT865ALd4cgND6VcIztVQZUTt0+BH3RWy6ZYnHghVXf6NFjt2ritLr8H1T8LreAAlfiNcw== d3-collection@1, d3-collection@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/d3-collection/-/d3-collection-1.0.7.tgz#349bd2aa9977db071091c13144d5e4f16b5b310e" integrity sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A== -d3-color@1, d3-color@^1.2.3: - version "1.2.8" - resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-1.2.8.tgz#4eaf9b60ef188c893fcf8b28f3546aafebfbd9f4" - integrity sha512-yeANXzP37PHk0DbSTMNPhnJD+Nn4G//O5E825bR6fAfHH43hobSBpgB9G9oWVl9+XgUaQ4yCnsX1H+l8DoaL9A== +d3-color@1, d3-color@^1.2.3, d3-color@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-1.4.0.tgz#89c45a995ed773b13314f06460df26d60ba0ecaf" + integrity sha512-TzNPeJy2+iEepfiL92LAAB7fvnp/dV2YwANPVHdDWmYMm23qIJBYww3qT8I8C1wXrmrg4UWs7BKc2tKIgyjzHg== d3-contour@^1.3.2: version "1.3.2" @@ -4132,15 +4232,22 @@ d3-contour@^1.3.2: dependencies: d3-array "^1.1.1" +d3-delaunay@^5.1.3: + version "5.1.6" + resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-5.1.6.tgz#343d6140ede76003d92e152beedd459c501f9310" + integrity sha512-VF6bxon2bn1cdXuesInEtVKlE4aUfq5IjE5y0Jl2aZP1yvLsf0QENqQxNhjS4vq95EmYKauA30ofTwvREtPSXA== + dependencies: + delaunator "4" + d3-dispatch@1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-1.0.5.tgz#e25c10a186517cd6c82dd19ea018f07e01e39015" - integrity sha512-vwKx+lAqB1UuCeklr6Jh1bvC4SZgbSqbkGBLClItFBIYH4vqDJCA7qfoy14lXmJdnBOdxndAMxjCbImJYW7e6g== + version "1.0.6" + resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-1.0.6.tgz#00d37bcee4dd8cd97729dd893a0ac29caaba5d58" + integrity sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA== d3-dsv@^1.0.10, d3-dsv@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-1.1.1.tgz#aaa830ecb76c4b5015572c647cc6441e3c7bb701" - integrity sha512-1EH1oRGSkeDUlDRbhsFytAXU6cAmXFzc52YUe6MRlPClmWb85MP1J5x+YJRzya4ynZWnbELdSAvATFW/MbxaXw== + version "1.2.0" + resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-1.2.0.tgz#9d5f75c3a5f8abd611f74d3f5847b0d4338b885c" + integrity sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g== dependencies: commander "2" iconv-lite "0.4" @@ -4156,7 +4263,7 @@ d3-force@^1.1.0: d3-quadtree "1" d3-timer "1" -d3-force@^2.0.0: +d3-force@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-2.0.1.tgz#31750eee8c43535301d571195bf9683beda534e2" integrity sha512-zh73/N6+MElRojiUG7vmn+3vltaKon7iD5vB/7r9nUaBeftXMzRo5IWEG63DLBCto4/8vr9i3m9lwr1OTJNiCg== @@ -4165,44 +4272,44 @@ d3-force@^2.0.0: d3-quadtree "1" d3-timer "1" -d3-format@1, d3-format@^1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.3.2.tgz#6a96b5e31bcb98122a30863f7d92365c00603562" - integrity sha512-Z18Dprj96ExragQ0DeGi+SYPQ7pPfRMtUXtsg/ChVIKNBCzjO8XYJvRTC1usblx52lqge56V5ect+frYTQc8WQ== +d3-format@1, d3-format@^1.3.2, d3-format@^1.4.1: + version "1.4.2" + resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.2.tgz#2a8c0ebf500f315981c2110eaaf70b82f472cb2b" + integrity sha512-gco1Ih54PgMsyIXgttLxEhNy/mXxq8+rLnCb5shQk+P5TsiySrwWU5gpB4zen626J4LIwBxHvDChyA8qDm57ww== -d3-geo@^1.11.3: - version "1.11.6" - resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-1.11.6.tgz#134f2ef035ff75a448075fafdea92702a2e0e0cf" - integrity sha512-z0J8InXR9e9wcgNtmVnPTj0TU8nhYT6lD/ak9may2PdKqXIeHUr8UbFLoCtrPYNsjv6YaLvSDQVl578k6nm7GA== +d3-geo@^1.11.3, d3-geo@^1.11.6, d3-geo@^1.11.7: + version "1.11.9" + resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-1.11.9.tgz#77eaed14ba62fc2c0aef55cd2943849c866f7ae6" + integrity sha512-9edcH6J3s/Aa3KJITWqFJbyB/8q3mMlA9Fi7z6yy+FAYMnRaxmC7jBhUnsINxVWD14GmqX3DK8uk7nV6/Ekt4A== dependencies: d3-array "1" d3-hierarchy@^1.1.8: - version "1.1.8" - resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-1.1.8.tgz#7a6317bd3ed24e324641b6f1e76e978836b008cc" - integrity sha512-L+GHMSZNwTpiq4rt9GEsNcpLa4M96lXMR8M/nMG9p5hBE0jy6C+3hWtyZMenPQdwla249iJy7Nx0uKt3n+u9+w== + version "1.1.9" + resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz#2f6bee24caaea43f8dc37545fa01628559647a83" + integrity sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ== -d3-interpolate@1, d3-interpolate@^1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-1.3.2.tgz#417d3ebdeb4bc4efcc8fd4361c55e4040211fd68" - integrity sha512-NlNKGopqaz9qM1PXh9gBF1KSCVh+jSFErrSlD/4hybwoNX/gt1d8CDbDW+3i+5UOHhjC6s6nMvRxcuoMVNgL2w== +d3-interpolate@1, d3-interpolate@^1.2.0, d3-interpolate@^1.3.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-1.4.0.tgz#526e79e2d80daa383f9e0c1c1c7dcc0f0583e987" + integrity sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA== dependencies: d3-color "1" -d3-path@1, d3-path@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.7.tgz#8de7cd693a75ac0b5480d3abaccd94793e58aae8" - integrity sha512-q0cW1RpvA5c5ma2rch62mX8AYaiLX0+bdaSM2wxSU9tXjU4DNvkx9qiUvjkuWCj3p22UO/hlPivujqMiR9PDzA== +d3-path@1, d3-path@^1.0.7, d3-path@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz#48c050bb1fe8c262493a8caf5524e3e9591701cf" + integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg== d3-quadtree@1: - version "1.0.6" - resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-1.0.6.tgz#d1ab2a95a7f27bbde88582c94166f6ae35f32056" - integrity sha512-NUgeo9G+ENQCQ1LsRr2qJg3MQ4DJvxcDNCiohdJGHt5gRhBW6orIB5m5FJ9kK3HNL8g9F4ERVoBzcEwQBfXWVA== + version "1.0.7" + resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-1.0.7.tgz#ca8b84df7bb53763fe3c2f24bd435137f4e53135" + integrity sha512-RKPAeXnkC59IDGD0Wu5mANy0Q2V28L+fNe65pOCXVdVuTJS3WPKaJlFHer32Rbh9gIo9qMuJXio8ra4+YmIymA== d3-scale-chromatic@^1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-1.3.3.tgz#dad4366f0edcb288f490128979c3c793583ed3c0" - integrity sha512-BWTipif1CimXcYfT02LKjAyItX5gKiwxuPRgr4xM58JwlLocWbjPLI7aMEjkcoOQXMkYsmNsvv3d2yl/OKuHHw== + version "1.5.0" + resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz#54e333fc78212f439b14641fb55801dd81135a98" + integrity sha512-ACcL46DYImpRFMBcpk9HhtIyC7bTBR4fNOPxwVSl0LfulDAwyiHyPOTqcDG1+t5d4P9W7t/2NAuWu59aKko/cg== dependencies: d3-color "1" d3-interpolate "1" @@ -4219,52 +4326,52 @@ d3-scale@^2.1.2: d3-time "1" d3-time-format "2" -d3-scale@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-3.0.0.tgz#ddede1278ac3ea2bf3666de6ca625e20bed9b6c9" - integrity sha512-ktic5HBFlAZj2CN8CCl/p/JyY8bMQluN7+fA6ICE6yyoMOnSQAZ1Bb8/5LcNpNKMBMJge+5Vv4pWJhARYlQYFw== +d3-scale@^3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-3.2.1.tgz#da1684adce7261b4bc7a76fe193d887f0e909e69" + integrity sha512-huz5byJO/6MPpz6Q8d4lg7GgSpTjIZW/l+1MQkzKfu2u8P6hjaXaStOpmyrD6ymKoW87d2QVFCKvSjLwjzx/rA== dependencies: - d3-array "^1.2.0 || 2" + d3-array "1.2.0 - 2" d3-format "1" - d3-interpolate "1" + d3-interpolate "^1.2.0" d3-time "1" d3-time-format "2" d3-selection@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-1.4.0.tgz#ab9ac1e664cf967ebf1b479cc07e28ce9908c474" - integrity sha512-EYVwBxQGEjLCKF2pJ4+yrErskDnz5v403qvAid96cNdCMr8rmCYfY5RGzWz24mdIbxmDf6/4EAH+K9xperD5jg== + version "1.4.1" + resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-1.4.1.tgz#98eedbbe085fbda5bafa2f9e3f3a2f4d7d622a98" + integrity sha512-BTIbRjv/m5rcVTfBs4AMBLKs4x8XaaLkwm28KWu9S2vKNqXkXt2AH2Qf0sdPZHjFxcWg/YL53zcqAz+3g4/7PA== -d3-shape@^1.2.2, d3-shape@^1.3.5: - version "1.3.5" - resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.5.tgz#e81aea5940f59f0a79cfccac012232a8987c6033" - integrity sha512-VKazVR3phgD+MUCldapHD7P9kcrvPcexeX/PkMJmkUov4JM8IxsSg1DvbYoYich9AtdTsa5nNk2++ImPiDiSxg== +d3-shape@^1.2.2, d3-shape@^1.3.7: + version "1.3.7" + resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7" + integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw== dependencies: d3-path "1" -d3-time-format@2, d3-time-format@^2.1.3: - version "2.1.3" - resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.1.3.tgz#ae06f8e0126a9d60d6364eac5b1533ae1bac826b" - integrity sha512-6k0a2rZryzGm5Ihx+aFMuO1GgelgIz+7HhB4PH4OEndD5q2zGn1mDfRdNrulspOfR6JXkb2sThhDK41CSK85QA== +d3-time-format@2, d3-time-format@^2.1.3, d3-time-format@^2.2.1: + version "2.2.2" + resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.2.2.tgz#187597ffc6a0f37cb36bb7a1d7167cdc887ecda0" + integrity sha512-pweL2Ri2wqMY+wlW/wpkl8T3CUzKAha8S9nmiQlMABab8r5MJN0PD1V4YyRNVaKQfeh4Z0+VO70TLw6ESVOYzw== dependencies: d3-time "1" -d3-time@1, d3-time@^1.0.10, d3-time@^1.0.11: - version "1.0.11" - resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-1.0.11.tgz#1d831a3e25cd189eb256c17770a666368762bbce" - integrity sha512-Z3wpvhPLW4vEScGeIMUckDW7+3hWKOQfAWg/U7PlWBnQmeKQ00gCUsTtWSYulrKNA7ta8hJ+xXc6MHrMuITwEw== +d3-time@1, d3-time@^1.0.10, d3-time@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-1.1.0.tgz#b1e19d307dae9c900b7e5b25ffc5dcc249a8a0f1" + integrity sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA== d3-timer@1, d3-timer@^1.0.9: - version "1.0.9" - resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-1.0.9.tgz#f7bb8c0d597d792ff7131e1c24a36dd471a471ba" - integrity sha512-rT34J5HnQUHhcLvhSB9GjCkN0Ddd5Y8nCwDBG2u6wQEeYxT/Lf51fTFFkldeib/sE/J0clIe0pnCfs6g/lRbyg== + version "1.0.10" + resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-1.0.10.tgz#dfe76b8a91748831b13b6d9c793ffbd508dd9de5" + integrity sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw== -d3-voronoi@^1.1.2, d3-voronoi@^1.1.4: +d3-voronoi@^1.1.2: version "1.1.4" resolved "https://registry.yarnpkg.com/d3-voronoi/-/d3-voronoi-1.1.4.tgz#dd3c78d7653d2bb359284ae478645d95944c8297" integrity sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg== -d@1: +d@1, d@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== @@ -4301,14 +4408,9 @@ date-fns@^1.27.2: integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== date-format@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/date-format/-/date-format-2.0.0.tgz#7cf7b172f1ec564f0003b39ea302c5498fb98c8f" - integrity sha512-M6UqVvZVgFYqZL1SfHsRGIQSz3ZL+qgbsV5Lp1Vj61LZVYuEwcMXYay7DRDtYs2HQQBK5hQtQ0fD9aEJ89V0LA== - -date-now@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" - integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= + version "2.1.0" + resolved "https://registry.yarnpkg.com/date-format/-/date-format-2.1.0.tgz#31d5b5ea211cf5fd764cd38baf9d033df7e125cf" + integrity sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA== dateformat@^1.0.6: version "1.0.12" @@ -4337,7 +4439,7 @@ debug@3.1.0, debug@~3.1.0: dependencies: ms "2.0.0" -debug@3.2.6, debug@^3.1.0, debug@^3.2.6: +debug@3.2.6, debug@^3.0.0, debug@^3.1.0, debug@^3.2.6: version "3.2.6" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== @@ -4403,11 +4505,6 @@ deep-is@~0.1.3: resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= -deepmerge@3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-3.3.0.tgz#d3c47fd6f3a93d517b14426b0628a17b0125f5f7" - integrity sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA== - default-require-extensions@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7" @@ -4423,9 +4520,9 @@ defaults@^1.0.3: clone "^1.0.2" defer-to-connect@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.0.2.tgz#4bae758a314b034ae33902b5aac25a8dd6a8633e" - integrity sha512-k09hcQcTDY+cwgiwa6PYKLm3jlagNzQ+RSvhjzESOGOx+MNOuXkxTfEvPrO1IOQ81tArCFYQgi631clB70RpQw== + version "1.1.0" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.0.tgz#b41bd7efa8508cef13f8456975f7a278c72833fd" + integrity sha512-WE2sZoctWm/v4smfCAdjYbrfS55JiMRdlY9ZubFhsYbteCK9+BvAx4YV7nPjYM6ZnX5BcoVKwfmyx9sIFTgQMQ== define-properties@^1.1.2, define-properties@^1.1.3: version "1.1.3" @@ -4468,6 +4565,11 @@ del@^3.0.0: pify "^3.0.0" rimraf "^2.2.8" +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: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" @@ -4484,9 +4586,9 @@ depd@~1.1.2: integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= dependency-graph@^0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.8.0.tgz#2da2d35ed852ecc24a5d6c17788ba57c3708755b" - integrity sha512-DCvzSq2UiMsuLnj/9AL484ummEgLtZIcRS7YvtO38QnpX3vqh9nJ8P+zhu8Ja+SmLrBHO2iDbva20jq38qvBkQ== + version "0.8.1" + resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.8.1.tgz#9b8cae3aa2c7bd95ccb3347a09a2d1047a6c3c5a" + integrity sha512-g213uqF8fyk40W8SBjm079n3CZB4qSpCrA2ye1fLGzH/4HEgB6tzuW2CbLE7leb4t45/6h44Ud59Su1/ROTfqw== deprecation@^2.0.0: version "2.3.1" @@ -4494,9 +4596,9 @@ deprecation@^2.0.0: integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== des.js@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" - integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= + version "1.0.1" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" + integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== dependencies: inherits "^2.0.1" minimalistic-assert "^1.0.0" @@ -4551,16 +4653,21 @@ di@^0.0.1: resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c" integrity sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw= -diff-sequences@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975" - integrity sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw== +diff-sequences@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.9.0.tgz#5715d6244e2aa65f48bba0bc972db0b0b11e95b5" + integrity sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew== -diff@3.5.0, diff@^3.2.0: +diff@3.5.0: version "3.5.0" resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== +diff@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.1.tgz#0c667cb467ebbb5cea7f14f135cc2dba7780a8ff" + integrity sha512-s2+XdvhPCOF01LRQBC8hf4vhbVmI2CGS5aZnxLJlT5FtdhPCDFq80q++zK2KlrVorVDdL5BOGZ/VfLrVtYNF+Q== + diffie-hellman@^5.0.0: version "5.0.3" resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" @@ -4570,12 +4677,11 @@ diffie-hellman@^5.0.0: miller-rabin "^4.0.0" randombytes "^2.0.0" -dir-glob@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" - integrity sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag== +dir-glob@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" + integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw== dependencies: - arrify "^1.0.1" path-type "^3.0.0" doctrine@^3.0.0: @@ -4610,14 +4716,14 @@ dom-serialize@^2.2.0: void-elements "^2.0.0" dom-serializer@0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" - integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== + version "0.2.2" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== dependencies: - domelementtype "^1.3.0" - entities "^1.1.1" + domelementtype "^2.0.1" + entities "^2.0.0" -dom4@^2.0.1: +dom4@^2.1.5: version "2.1.5" resolved "https://registry.yarnpkg.com/dom4/-/dom4-2.1.5.tgz#f98a94eb67b340f0fa5b42b0ee9c38cda035428e" integrity sha512-gJbnVGq5zaBUY0lUh0LUEVGYrtN75Ks8ZwpwOYvnVFrKy/qzXK4R/1WuLIFExWj/tBxbRAkTzZUGJHXmqsBNjQ== @@ -4627,11 +4733,16 @@ domain-browser@^1.1.1: resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== -domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: +domelementtype@1, domelementtype@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== +domelementtype@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" + integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== + domexception@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" @@ -4720,14 +4831,14 @@ ee-first@1.1.1: integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= ejs@^2.6.1: - version "2.6.2" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.6.2.tgz#3a32c63d1cd16d11266cd4703b14fec4e74ab4f6" - integrity sha512-PcW2a0tyTuPHz3tWyYqtK6r1fZ3gp+3Sop8Ph+ZYN81Ob5rwmbHEzaqs10N3BEsaGTkh/ooniXK+WwszGlc2+Q== + version "2.7.4" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" + integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== -electron-to-chromium@^1.3.164: - version "1.3.167" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.167.tgz#6c22e5384a6b54fb13136ca5b3ade5daac9bf894" - integrity sha512-84IjpeRudjP43Q0+K7tlS7ESoHOl0W6CIdzs5reS9p+sAjCQEDiaAyiXN2v1qLUdL+Of6ZSaH4Cq6bl+sfzy8A== +electron-to-chromium@^1.3.317: + version "1.3.322" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.322.tgz#a6f7e1c79025c2b05838e8e344f6e89eb83213a8" + integrity sha512-Tc8JQEfGQ1MzfSzI/bTlSr7btJv/FFO7Yh6tanqVmIWOuNCu6/D1MilIEgLtmWqIrsv+o4IjpLAhgMBr/ncNAA== elegant-spinner@^1.0.1: version "1.0.1" @@ -4735,9 +4846,9 @@ elegant-spinner@^1.0.1: integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4= elliptic@^6.0.0: - version "6.4.1" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a" - integrity sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ== + version "6.5.2" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762" + integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw== dependencies: bn.js "^4.4.0" brorand "^1.0.1" @@ -4770,9 +4881,9 @@ encoding@^0.1.11: iconv-lite "~0.4.13" end-of-stream@^1.0.0, end-of-stream@^1.1.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" - integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== dependencies: once "^1.4.0" @@ -4816,7 +4927,7 @@ engine.io@~3.2.0: engine.io-parser "~2.1.0" ws "~3.3.1" -enhanced-resolve@^4.0.0, enhanced-resolve@^4.1.0: +enhanced-resolve@4.1.0, enhanced-resolve@^4.0.0, enhanced-resolve@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" integrity sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng== @@ -4835,6 +4946,16 @@ entities@^1.1.1: resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== +entities@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4" + integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw== + +env-paths@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-1.0.0.tgz#4168133b42bb05c38a35b1ae4397c8298ab369e0" + integrity sha1-QWgTO0K7BcOKNbGuQ5fIKYqzaeA= + err-code@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960" @@ -4855,34 +4976,38 @@ error-ex@^1.2.0, error-ex@^1.3.1: is-arrayish "^0.2.1" es-abstract@^1.12.0, es-abstract@^1.5.1: - version "1.13.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" - integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== + version "1.16.2" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.16.2.tgz#4e874331645e9925edef141e74fc4bd144669d34" + integrity sha512-jYo/J8XU2emLXl3OLwfwtuFfuF2w6DYPs+xy9ZfVyPkDcrauu6LYrw/q2TyCtrbc/KUdCiC5e9UajRhgNkVopA== dependencies: - es-to-primitive "^1.2.0" + es-to-primitive "^1.2.1" function-bind "^1.1.1" has "^1.0.3" + has-symbols "^1.0.1" is-callable "^1.1.4" is-regex "^1.0.4" - object-keys "^1.0.12" + object-inspect "^1.7.0" + object-keys "^1.1.1" + string.prototype.trimleft "^2.1.0" + string.prototype.trimright "^2.1.0" -es-to-primitive@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" - integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== dependencies: is-callable "^1.1.4" is-date-object "^1.0.1" is-symbol "^1.0.2" -es5-ext@^0.10.35, es5-ext@^0.10.50, es5-ext@~0.10.14: - version "0.10.50" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.50.tgz#6d0e23a0abdb27018e5ac4fd09b412bc5517a778" - integrity sha512-KMzZTPBkeQV/JcSQhI5/z6d9VWJ3EnQ194USTUwIYZ2ZbpN8+SGXQKt1h68EX44+qt+Fzr8DO17vnxrw7c3agw== +es5-ext@^0.10.35, es5-ext@^0.10.50: + version "0.10.53" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" + integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== dependencies: es6-iterator "~2.0.3" - es6-symbol "~3.1.1" - next-tick "^1.0.0" + es6-symbol "~3.1.3" + next-tick "~1.0.0" es6-iterator@~2.0.3: version "2.0.3" @@ -4905,13 +5030,13 @@ es6-promisify@^5.0.0: dependencies: es6-promise "^4.0.3" -es6-symbol@^3.1.1, es6-symbol@~3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" - integrity sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc= +es6-symbol@^3.1.1, es6-symbol@~3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" + integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== dependencies: - d "1" - es5-ext "~0.10.14" + d "^1.0.1" + ext "^1.1.2" es6-templates@^0.2.3: version "0.2.3" @@ -4944,9 +5069,9 @@ escodegen@1.8.x: source-map "~0.2.0" escodegen@^1.9.1: - version "1.11.1" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510" - integrity sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw== + version "1.12.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.12.0.tgz#f763daf840af172bb3a2b6dd7219c0e17f7ff541" + integrity sha512-TuA+EhsanGcme5T3R0L80u4t8CpbXQjegRmf7+FPTJrtCTErXFeelblRgHQa1FofEzqYYJmJ/OqjTwREp9qgmg== dependencies: esprima "^3.1.3" estraverse "^4.2.0" @@ -4971,13 +5096,13 @@ eslint-plugin-prettier@^2.2.0: jest-docblock "^21.0.0" eslint-plugin-prettier@^3.0.1: - version "3.1.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.0.tgz#8695188f95daa93b0dc54b249347ca3b79c4686d" - integrity sha512-XWX2yVuwVNLOUhQijAkXz+rMPPoCr7WFiAl8ig6I7Xn+pPVhDhzg4DxHpmbeb0iqjO9UronEA3Tb09ChnFVHHA== + version "3.1.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.1.tgz#507b8562410d02a03f0ddc949c616f877852f2ba" + integrity sha512-A+TZuHZ0KU0cnn56/9mfR7/KjUJ9QNVXUhwvRFSR7PGPe0zQR6PTkmyqg1AtUUEOzTqeRsUwyKFh0oVZKVCrtA== dependencies: prettier-linter-helpers "^1.0.0" -eslint-scope@^4.0.0, eslint-scope@^4.0.3: +eslint-scope@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== @@ -4986,14 +5111,16 @@ eslint-scope@^4.0.0, eslint-scope@^4.0.3: estraverse "^4.1.1" eslint-utils@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" - integrity sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q== + version "1.4.3" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" + integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== + dependencies: + eslint-visitor-keys "^1.1.0" -eslint-visitor-keys@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" - integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== +eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" + integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== eslint@^5.16.0: version "5.16.0" @@ -5081,25 +5208,30 @@ estraverse@^1.9.1: integrity sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q= estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" - integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= + 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.2" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" - integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== etag@~1.8.1: version "1.8.1" resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= -eventemitter3@^3.0.0, eventemitter3@^3.1.0: +eventemitter3@^3.1.0: version "3.1.2" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7" integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== +eventemitter3@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.0.tgz#d65176163887ee59f386d64c82610b696a4a74eb" + integrity sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg== + events@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" @@ -5121,9 +5253,9 @@ exec-sh@^0.2.0: merge "^1.2.0" exec-sh@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" - integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== + version "0.3.4" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" + integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== execa@^0.7.0: version "0.7.0" @@ -5181,17 +5313,17 @@ expect.js@~0.3.1: resolved "https://registry.yarnpkg.com/expect.js/-/expect.js-0.3.1.tgz#b0a59a0d2eff5437544ebf0ceaa6015841d09b5b" integrity sha1-sKWaDS7/VDdUTr8M6qYBWEHQm1s= -expect@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-24.8.0.tgz#471f8ec256b7b6129ca2524b2a62f030df38718d" - integrity sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA== +expect@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-24.9.0.tgz#b75165b4817074fa4a157794f46fe9f1ba15b6ca" + integrity sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" ansi-styles "^3.2.0" - jest-get-type "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-regex-util "^24.3.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-regex-util "^24.9.0" express@^4.16.3: version "4.17.1" @@ -5229,6 +5361,13 @@ express@^4.16.3: utils-merge "1.0.1" vary "~1.1.2" +ext@^1.1.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244" + integrity sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A== + dependencies: + type "^2.0.0" + extend-shallow@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" @@ -5259,9 +5398,9 @@ external-editor@^2.0.4: tmp "^0.0.33" external-editor@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" - integrity sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA== + 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" @@ -5311,7 +5450,7 @@ fast-diff@^1.1.1, fast-diff@^1.1.2: resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== -fast-glob@^2.0.2: +fast-glob@^2.2.6: version "2.2.7" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== @@ -5328,7 +5467,7 @@ fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-sta resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= -fast-levenshtein@~2.0.4: +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= @@ -5345,7 +5484,7 @@ fb-watchman@^2.0.0: dependencies: bser "^2.0.0" -fbjs@^0.8.0, fbjs@^0.8.9: +fbjs@^0.8.9: version "0.8.17" resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90= @@ -5451,7 +5590,7 @@ finalhandler@1.1.2, finalhandler@~1.1.2: statuses "~1.5.0" unpipe "~1.0.0" -find-cache-dir@^2.0.0: +find-cache-dir@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== @@ -5495,13 +5634,13 @@ find-up@^4.0.0: locate-path "^5.0.0" path-exists "^4.0.0" -findup-sync@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" - integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw= +findup-sync@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" + integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== dependencies: detect-file "^1.0.0" - is-glob "^3.1.0" + is-glob "^4.0.0" micromatch "^3.0.4" resolve-dir "^1.0.1" @@ -5522,9 +5661,9 @@ flat@^4.1.0: is-buffer "~2.0.3" flatted@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.0.tgz#55122b6536ea496b4b44893ee2608141d10d9916" - integrity sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg== + version "2.0.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08" + integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== flush-write-stream@^1.0.0: version "1.1.1" @@ -5540,11 +5679,11 @@ fn-name@~2.0.1: integrity sha1-UhTXU3pNBqSjAcDMJi/rhBiAAuc= follow-redirects@^1.0.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.7.0.tgz#489ebc198dc0e7f64167bd23b03c4c19b5784c76" - integrity sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ== + version "1.9.0" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.9.0.tgz#8d5bcdc65b7108fe1508649c79c12d732dcedb4f" + integrity sha512-CRcPzsSIbXyVDl0QI01muNDu69S8trU4jArW9LpOt2WtC6LyUJetcIrmfHsRBx7/Jb6GHJUiuqyYxPooFfNt6A== dependencies: - debug "^3.2.6" + debug "^3.0.0" font-awesome@~4.7.0: version "4.7.0" @@ -5562,9 +5701,9 @@ forever-agent@~0.6.1: integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= fork-ts-checker-webpack-plugin@^1.3.4: - version "1.3.7" - resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-1.3.7.tgz#2b9d50f1abcafe2c0b9c6e8cce76ee384fa661a1" - integrity sha512-n55O6fIIZrPdWFSQ0WYBs6Umdx0EatCvCM7xstegycDucnDQJmyUO9tc1lvabTh8ojL6a9aN/Sh0iFXZxq4mfA== + version "1.6.0" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-1.6.0.tgz#a81fd1c6bf5258fa5318cf3e9a7e9bac006f7917" + integrity sha512-vqOY5gakcoon2s12V7MMe01OPwfgqulUWFzm+geQaPPOBKjW1I7aqqoBVlU0ECn97liMB0ECs16pRdIGe9qdRw== dependencies: babel-code-frame "^6.22.0" chalk "^2.4.1" @@ -5596,10 +5735,10 @@ fragment-cache@^0.2.1: dependencies: map-cache "^0.2.2" -free-style@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/free-style/-/free-style-2.5.1.tgz#5e3f684c470d3bba7e4dbb43524e0a08917e873c" - integrity sha512-X7dtUSTrlS1KRQBtiQ618NWIRDdRgD91IeajKCSh0fgTqArSixv+n3ea6F/OSvrvg14tPLR+yCq2s+O602+pRw== +free-style@2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/free-style/-/free-style-2.6.1.tgz#6af512568291195854842cbbaacd95578a6a9a8b" + integrity sha512-uaVA8e57tvhrFKAl6x32SGIrGFBoeTAFtfHDzWxjPhiXQiUxOI6EEdEReRkjNO2H9XcdMJXXEnMHw8Q7iMYLbw== fresh@0.5.2: version "0.5.2" @@ -5621,7 +5760,7 @@ fs-access@^1.0.0: dependencies: null-check "^1.0.0" -fs-extra@^7.0.0, fs-extra@^7.0.1: +fs-extra@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== @@ -5640,11 +5779,11 @@ fs-extra@^8.0.1, fs-extra@^8.1.0: universalify "^0.1.0" fs-minipass@^1.2.5: - version "1.2.6" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" - integrity sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ== + version "1.2.7" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" + integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== dependencies: - minipass "^2.2.1" + minipass "^2.6.0" fs-write-stream-atomic@^1.0.8: version "1.0.10" @@ -5669,6 +5808,11 @@ fsevents@^1.2.7: nan "^2.12.1" node-pre-gyp "^0.12.0" +fsevents@~2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805" + integrity sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA== + function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" @@ -5723,9 +5867,9 @@ get-func-name@^2.0.0: integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= get-own-enumerable-property-symbols@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.0.tgz#b877b49a5c16aefac3655f2ed2ea5b684df8d203" - integrity sha512-CIJYJC4GGF06TakLg8z4GQKvDsx9EMspVxOYih7LerEL/WosUnFIww45CGfxfeKHqlg3twgUrYRT1O3WQqjGCg== + version "3.0.1" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.1.tgz#6f7764f88ea11e0b514bd9bd860a132259992ca4" + integrity sha512-09/VS4iek66Dh2bctjRkowueRJbY1JDGR1L/zRxO1Qk8Uxs6PnqaNSqalpizPT+CDjre3hnEsuzvhgomz9qYrA== get-pkg-repo@^1.0.0: version "1.4.0" @@ -5738,10 +5882,10 @@ get-pkg-repo@^1.0.0: parse-github-repo-url "^1.3.0" through2 "^2.0.0" -get-port@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" - integrity sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw= +get-port@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/get-port/-/get-port-4.2.0.tgz#e37368b1e863b7629c43c5a323625f95cf24b119" + integrity sha512-/b3jarXkH8KJoOMQc3uVGHASwGLPq3gSFJ7tgJm2diza+bydJPTGOibin2steecKeOylE8oY2JERlVWkAJO6yw== get-stdin@^4.0.1: version "4.0.1" @@ -5808,13 +5952,13 @@ git-remote-origin-url@^2.0.0: gitconfiglocal "^1.0.0" pify "^2.3.0" -git-semver-tags@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-2.0.2.tgz#f506ec07caade191ac0c8d5a21bdb8131b4934e3" - integrity sha512-34lMF7Yo1xEmsK2EkbArdoU79umpvm0MfzaDkSNYSJqtM5QLAVTPWgpiXSVI5o/O9EvZPSrP4Zvnec/CqhSd5w== +git-semver-tags@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-2.0.3.tgz#48988a718acf593800f99622a952a77c405bfa34" + integrity sha512-tj4FD4ww2RX2ae//jSrXZzrocla9db5h0V7ikPl1P/WwoZar9epdUhwR7XHXSgc+ZkNq72BEEerqQuicoEQfzA== dependencies: meow "^4.0.0" - semver "^5.5.0" + semver "^6.0.0" git-up@^4.0.0: version "4.0.1" @@ -5846,6 +5990,13 @@ glob-parent@^3.1.0: is-glob "^3.1.0" path-dirname "^1.0.0" +glob-parent@^5.0.0, glob-parent@~5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2" + integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw== + dependencies: + is-glob "^4.0.1" + glob-to-regexp@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" @@ -5875,9 +6026,9 @@ glob@^5.0.15: path-is-absolute "^1.0.0" glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.1.2: - version "7.1.4" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" - integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" @@ -5889,9 +6040,17 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, gl global-dirs@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" + integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= dependencies: ini "^1.3.4" +global-modules@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" + integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + dependencies: + global-prefix "^3.0.0" + global-modules@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" @@ -5912,6 +6071,15 @@ global-prefix@^1.0.1: is-windows "^1.0.1" which "^1.2.14" +global-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" + integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + dependencies: + ini "^1.3.5" + kind-of "^6.0.2" + which "^1.3.1" + globals@^11.1.0, globals@^11.7.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" @@ -5933,22 +6101,24 @@ globby@^6.1.0: pify "^2.0.0" pinkie-promise "^2.0.0" -globby@^8.0.1: - version "8.0.2" - resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d" - integrity sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w== +globby@^9.2.0: + version "9.2.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d" + integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg== dependencies: - array-union "^1.0.1" - dir-glob "2.0.0" - fast-glob "^2.0.2" - glob "^7.1.2" - ignore "^3.3.5" - pify "^3.0.0" - slash "^1.0.0" + "@types/glob" "^7.1.1" + array-union "^1.0.2" + dir-glob "^2.2.2" + fast-glob "^2.2.6" + glob "^7.1.3" + ignore "^4.0.3" + pify "^4.0.1" + slash "^2.0.0" got@^6.7.1: version "6.7.1" resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" + integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= dependencies: create-error-class "^3.0.0" duplexer3 "^0.1.4" @@ -6007,10 +6177,10 @@ gzip-size@^5.0.0: duplexer "^0.1.1" pify "^4.0.1" -handlebars@^4.0.1, handlebars@^4.1.0, handlebars@^4.1.2, handlebars@^4.5.1: - version "4.5.2" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.5.2.tgz#5a4eb92ab5962ca3415ac188c86dc7f784f76a0f" - integrity sha512-29Zxv/cynYB7mkT1rVWQnV7mGX6v7H/miQ6dbEpYTKq5eJBN7PsRB+ViYJlcT6JINTSu4dVB9kOqEun78h6Exg== +handlebars@^4.0.1, handlebars@^4.1.2, handlebars@^4.4.0, handlebars@^4.5.3: + version "4.5.3" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.5.3.tgz#5cf75bd8714f7605713511a56be7c349becb0482" + integrity sha512-3yPecJoJHK/4c6aZhSvxOyG4vJKDshV36VHp0iVCDVh7o9w2vwi3NSnL2MMPj3YdduqaBcu7cGbggJQM0br9xA== dependencies: neo-async "^2.6.0" optimist "^0.6.1" @@ -6050,11 +6220,6 @@ has-binary2@~1.0.2: dependencies: isarray "2.0.1" -has-color@~0.1.0: - version "0.1.7" - resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" - integrity sha1-ZxRKUmDDT8PMpnfQQdr1L+e3iy8= - has-cors@1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" @@ -6070,10 +6235,10 @@ has-flag@^3.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= -has-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" - integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= +has-symbols@^1.0.0, has-symbols@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" + integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== has-unicode@^2.0.0, has-unicode@^2.0.1: version "2.0.1" @@ -6165,10 +6330,10 @@ hoopy@^0.1.4: resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d" integrity sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ== -hosted-git-info@^2.1.4, hosted-git-info@^2.6.0: - version "2.7.1" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" - integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== +hosted-git-info@^2.1.4, hosted-git-info@^2.7.1: + version "2.8.5" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c" + integrity sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg== html-encoding-sniffer@^1.0.2: version "1.0.2" @@ -6250,6 +6415,7 @@ http-errors@1.7.2, http-errors@~1.7.2: http-link-header@^0.8.0: version "0.8.0" resolved "https://registry.yarnpkg.com/http-link-header/-/http-link-header-0.8.0.tgz#a22b41a0c9b1e2d8fac1bf1b697c6bd532d5f5e4" + integrity sha1-oitBoMmx4tj6wb8baXxr1TLV9eQ= http-proxy-agent@^2.1.0: version "2.1.0" @@ -6260,11 +6426,11 @@ http-proxy-agent@^2.1.0: debug "3.1.0" http-proxy@^1.13.0: - version "1.17.0" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.17.0.tgz#7ad38494658f84605e2f6db4436df410f4e5be9a" - integrity sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g== + version "1.18.0" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.0.tgz#dbe55f63e75a347db7f3d99974f2692a314a6a3a" + integrity sha512-84I2iJM/n1d4Hdgc6y2+qY5mDaz2PUVjlg9znE9byl+q0uC3DeByqBGReQu5tpLK0TAqTIXScRUV+dg7+bUPpQ== dependencies: - eventemitter3 "^3.0.0" + eventemitter3 "^4.0.0" follow-redirects "^1.0.0" requires-port "^1.0.0" @@ -6282,12 +6448,12 @@ https-browserify@^1.0.0: resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= -https-proxy-agent@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz#51552970fa04d723e04c56d04178c3f92592bbc0" - integrity sha512-HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ== +https-proxy-agent@^2.2.1, https-proxy-agent@^2.2.3: + version "2.2.4" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz#4ee7a737abd92678a293d9b34a1af4d0d08c787b" + integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg== dependencies: - agent-base "^4.1.0" + agent-base "^4.3.0" debug "^3.1.0" humanize-ms@^1.2.1: @@ -6298,9 +6464,9 @@ humanize-ms@^1.2.1: ms "^2.0.0" husky@^2.3.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/husky/-/husky-2.4.1.tgz#dd00f9646f8693b93f7b3a12ba4be00be0eff7ab" - integrity sha512-ZRwMWHr7QruR22dQ5l3rEGXQ7rAQYsJYqaeCd+NyOsIFczAtqaApZQP3P4HwLZjCtFbm3SUNYoKuoBXX3AYYfw== + version "2.7.0" + resolved "https://registry.yarnpkg.com/husky/-/husky-2.7.0.tgz#c0a9a6a3b51146224e11bba0b46bba546e461d05" + integrity sha512-LIi8zzT6PyFpcYKdvWRCn/8X+6SuG2TgYYMrM6ckEYhlp44UcEduVymZGIZNLiwOUjrEud+78w/AsAiqJA/kRg== dependencies: cosmiconfig "^5.2.0" execa "^1.0.0" @@ -6350,18 +6516,13 @@ iferr@^0.1.5: integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= ignore-walk@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" - integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== + version "3.0.3" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" + integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== dependencies: minimatch "^3.0.4" -ignore@^3.3.5: - version "3.3.10" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" - integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== - -ignore@^4.0.6: +ignore@^4.0.3, ignore@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== @@ -6369,6 +6530,7 @@ ignore@^4.0.6: image-ssim@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/image-ssim/-/image-ssim-0.2.0.tgz#83b42c7a2e6e4b85505477fe6917f5dbc56420e5" + integrity sha1-g7Qsei5uS4VQVHf+aRf128VkIOU= import-fresh@^2.0.0: version "2.0.0" @@ -6379,9 +6541,9 @@ import-fresh@^2.0.0: resolve-from "^3.0.0" import-fresh@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" - integrity sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ== + version "3.2.1" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" + integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== dependencies: parent-module "^1.0.0" resolve-from "^4.0.0" @@ -6389,16 +6551,9 @@ import-fresh@^3.0.0: import-lazy@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" + integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= -import-local@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" - integrity sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ== - dependencies: - pkg-dir "^2.0.0" - resolve-cwd "^2.0.0" - -import-local@^2.0.0: +import-local@2.0.0, import-local@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== @@ -6433,6 +6588,11 @@ indexof@0.0.1: resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10= +infer-owner@^1.0.3, infer-owner@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" + integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== + inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -6456,7 +6616,7 @@ inherits@2.0.3: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= -ini@^1.3.2, ini@^1.3.4, ini@~1.3.0: +ini@^1.3.2, ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: version "1.3.5" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== @@ -6478,6 +6638,7 @@ init-package-json@^1.10.3: inquirer@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" + integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== dependencies: ansi-escapes "^3.0.0" chalk "^2.0.0" @@ -6495,9 +6656,9 @@ inquirer@^3.3.0: through "^2.3.6" inquirer@^6.2.0, inquirer@^6.2.2, inquirer@^6.3.1: - version "6.4.1" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.4.1.tgz#7bd9e5ab0567cd23b41b0180b68e0cfa82fc3c0b" - integrity sha512-/Jw+qPZx4EDYsaT6uz7F4GJRNFMRdKNeUZw3ZnKV8lyuUgz/YWRCSUAJMZSVhSq4Ec0R2oYnyi6b3d4JXcL5Nw== + version "6.5.2" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" + integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== dependencies: ansi-escapes "^3.2.0" chalk "^2.4.2" @@ -6505,7 +6666,7 @@ inquirer@^6.2.0, inquirer@^6.2.2, inquirer@^6.3.1: cli-width "^2.0.0" external-editor "^3.0.3" figures "^2.0.0" - lodash "^4.17.11" + lodash "^4.17.12" mute-stream "0.0.7" run-async "^2.2.0" rxjs "^6.4.0" @@ -6513,7 +6674,7 @@ inquirer@^6.2.0, inquirer@^6.2.2, inquirer@^6.3.1: strip-ansi "^5.1.0" through "^2.3.6" -interpret@^1.0.0, interpret@^1.1.0: +interpret@1.2.0, interpret@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== @@ -6521,10 +6682,12 @@ interpret@^1.0.0, interpret@^1.1.0: intl-messageformat-parser@1.4.0, intl-messageformat-parser@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-1.4.0.tgz#b43d45a97468cadbe44331d74bb1e8dea44fc075" + integrity sha1-tD1FqXRoytvkQzHXS7Ho3qRPwHU= intl-messageformat@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-2.2.0.tgz#345bcd46de630b7683330c2e52177ff5eab484fc" + integrity sha1-NFvNRt5jC3aDMwwuUhd/9eq0hPw= dependencies: intl-messageformat-parser "1.4.0" @@ -6545,7 +6708,7 @@ invert-kv@^2.0.0: resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== -ip@^1.1.5: +ip@1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= @@ -6581,15 +6744,22 @@ is-binary-path@^1.0.0: dependencies: binary-extensions "^1.0.0" +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + is-buffer@^1.1.5, is-buffer@~1.1.1: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== is-buffer@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725" - integrity sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw== + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" + integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== is-callable@^1.1.4: version "1.1.4" @@ -6700,7 +6870,7 @@ is-glob@^3.1.0: dependencies: is-extglob "^2.1.0" -is-glob@^4.0.0: +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== @@ -6710,6 +6880,7 @@ is-glob@^4.0.0: is-installed-globally@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" + integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= dependencies: global-dirs "^0.1.0" is-path-inside "^1.0.0" @@ -6717,6 +6888,7 @@ is-installed-globally@^0.1.0: is-npm@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" + integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= is-number@^3.0.0: version "3.0.0" @@ -6766,7 +6938,7 @@ is-plain-obj@^1.0.0, is-plain-obj@^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@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: +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== @@ -6788,6 +6960,7 @@ is-promise@^2.1.0: is-redirect@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" + integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= is-regex@^1.0.4: version "1.0.4" @@ -6802,8 +6975,9 @@ is-regexp@^1.0.0: integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= is-retry-allowed@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" + integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== is-ssh@^1.3.0: version "1.3.1" @@ -6818,18 +6992,18 @@ is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= is-symbol@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" - integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" + integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== dependencies: - has-symbols "^1.0.0" + has-symbols "^1.0.1" -is-text-path@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-2.0.0.tgz#b2484e2b720a633feb2e85b67dc193ff72c75636" - integrity sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw== +is-text-path@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" + integrity sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4= dependencies: - text-extensions "^2.0.0" + text-extensions "^1.0.0" is-typedarray@~1.0.0: version "1.0.0" @@ -6841,7 +7015,7 @@ is-utf8@^0.2.0: resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= -is-windows@^1.0.1, is-windows@^1.0.2: +is-windows@^1.0.0, is-windows@^1.0.1, 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== @@ -6851,6 +7025,11 @@ is-wsl@^1.1.0: resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= +is-wsl@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.1.1.tgz#4a1c152d429df3d441669498e2486d3596ebaf1d" + integrity sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog== + isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -6903,7 +7082,7 @@ isstream@~0.1.2: resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= -istanbul-api@^2.1.1: +istanbul-api@^2.1.6: version "2.1.6" resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.1.6.tgz#d61702a9d1c66ad89d92e66d401e16b0bda4a35f" integrity sha512-x0Eicp6KsShG1k1rMgBAi/1GgY7kFGEBwQpw3PXGEmu+rBcBNhqU8g2DgY9mlepAsLPzrzrbqSgCGANnki4POA== @@ -6995,7 +7174,7 @@ istanbul-lib-source-maps@^3.0.1, istanbul-lib-source-maps@^3.0.6: rimraf "^2.6.3" source-map "^0.6.1" -istanbul-reports@^2.1.1, istanbul-reports@^2.2.4: +istanbul-reports@^2.2.4, istanbul-reports@^2.2.6: version "2.2.6" resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af" integrity sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA== @@ -7022,66 +7201,66 @@ istanbul@^0.4.0: which "^1.1.1" wordwrap "^1.0.0" -jest-changed-files@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.8.0.tgz#7e7eb21cf687587a85e50f3d249d1327e15b157b" - integrity sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug== +jest-changed-files@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.9.0.tgz#08d8c15eb79a7fa3fc98269bc14b451ee82f8039" + integrity sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" execa "^1.0.0" throat "^4.0.0" -jest-cli@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.8.0.tgz#b075ac914492ed114fa338ade7362a301693e989" - integrity sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA== +jest-cli@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.9.0.tgz#ad2de62d07472d419c6abc301fc432b98b10d2af" + integrity sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg== dependencies: - "@jest/core" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/core" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" exit "^0.1.2" import-local "^2.0.0" is-ci "^2.0.0" - jest-config "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" + jest-config "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" prompts "^2.0.1" realpath-native "^1.1.0" - yargs "^12.0.2" + yargs "^13.3.0" -jest-config@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.8.0.tgz#77db3d265a6f726294687cbbccc36f8a76ee0f4f" - integrity sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw== +jest-config@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.9.0.tgz#fb1bbc60c73a46af03590719efa4825e6e4dd1b5" + integrity sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ== dependencies: "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^24.8.0" - "@jest/types" "^24.8.0" - babel-jest "^24.8.0" + "@jest/test-sequencer" "^24.9.0" + "@jest/types" "^24.9.0" + babel-jest "^24.9.0" chalk "^2.0.1" glob "^7.1.1" - jest-environment-jsdom "^24.8.0" - jest-environment-node "^24.8.0" - jest-get-type "^24.8.0" - jest-jasmine2 "^24.8.0" + jest-environment-jsdom "^24.9.0" + jest-environment-node "^24.9.0" + jest-get-type "^24.9.0" + jest-jasmine2 "^24.9.0" jest-regex-util "^24.3.0" - jest-resolve "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" + jest-resolve "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" micromatch "^3.1.10" - pretty-format "^24.8.0" + pretty-format "^24.9.0" realpath-native "^1.1.0" -jest-diff@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.8.0.tgz#146435e7d1e3ffdf293d53ff97e193f1d1546172" - integrity sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g== +jest-diff@^24.3.0, jest-diff@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da" + integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ== dependencies: chalk "^2.0.1" - diff-sequences "^24.3.0" - jest-get-type "^24.8.0" - pretty-format "^24.8.0" + diff-sequences "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" jest-docblock@^21.0.0: version "21.2.0" @@ -7089,90 +7268,90 @@ jest-docblock@^21.0.0: integrity sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw== jest-docblock@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.3.0.tgz#b9c32dac70f72e4464520d2ba4aec02ab14db5dd" - integrity sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg== + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.9.0.tgz#7970201802ba560e1c4092cc25cbedf5af5a8ce2" + integrity sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA== dependencies: detect-newline "^2.1.0" -jest-each@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.8.0.tgz#a05fd2bf94ddc0b1da66c6d13ec2457f35e52775" - integrity sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA== +jest-each@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.9.0.tgz#eb2da602e2a610898dbc5f1f6df3ba86b55f8b05" + integrity sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" - jest-get-type "^24.8.0" - jest-util "^24.8.0" - pretty-format "^24.8.0" - -jest-environment-jsdom@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz#300f6949a146cabe1c9357ad9e9ecf9f43f38857" - integrity sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ== - dependencies: - "@jest/environment" "^24.8.0" - "@jest/fake-timers" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - jest-util "^24.8.0" + jest-get-type "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" + +jest-environment-jsdom@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz#4b0806c7fc94f95edb369a69cc2778eec2b7375b" + integrity sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" jsdom "^11.5.1" -jest-environment-node@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.8.0.tgz#d3f726ba8bc53087a60e7a84ca08883a4c892231" - integrity sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q== +jest-environment-node@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.9.0.tgz#333d2d2796f9687f2aeebf0742b519f33c1cbfd3" + integrity sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA== dependencies: - "@jest/environment" "^24.8.0" - "@jest/fake-timers" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - jest-util "^24.8.0" + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" -jest-get-type@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.8.0.tgz#a7440de30b651f5a70ea3ed7ff073a32dfe646fc" - integrity sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ== +jest-get-type@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.9.0.tgz#1684a0c8a50f2e4901b6644ae861f579eed2ef0e" + integrity sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q== -jest-haste-map@^24.8.0: - version "24.8.1" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.8.1.tgz#f39cc1d2b1d907e014165b4bd5a957afcb992982" - integrity sha512-SwaxMGVdAZk3ernAx2Uv2sorA7jm3Kx+lR0grp6rMmnY06Kn/urtKx1LPN2mGTea4fCT38impYT28FfcLUhX0g== +jest-haste-map@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.9.0.tgz#b38a5d64274934e21fa417ae9a9fbeb77ceaac7d" + integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" anymatch "^2.0.0" fb-watchman "^2.0.0" graceful-fs "^4.1.15" invariant "^2.2.4" - jest-serializer "^24.4.0" - jest-util "^24.8.0" - jest-worker "^24.6.0" + jest-serializer "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.9.0" micromatch "^3.1.10" sane "^4.0.3" walker "^1.0.7" optionalDependencies: fsevents "^1.2.7" -jest-jasmine2@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz#a9c7e14c83dd77d8b15e820549ce8987cc8cd898" - integrity sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong== +jest-jasmine2@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz#1f7b1bd3242c1774e62acabb3646d96afc3be6a0" + integrity sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw== dependencies: "@babel/traverse" "^7.1.0" - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" co "^4.6.0" - expect "^24.8.0" + expect "^24.9.0" is-generator-fn "^2.0.0" - jest-each "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-runtime "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - pretty-format "^24.8.0" + jest-each "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" throat "^4.0.0" jest-junit@^6.3.0: @@ -7185,161 +7364,163 @@ jest-junit@^6.3.0: strip-ansi "^4.0.0" xml "^1.0.1" -jest-leak-detector@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz#c0086384e1f650c2d8348095df769f29b48e6980" - integrity sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g== +jest-leak-detector@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz#b665dea7c77100c5c4f7dfcb153b65cf07dcf96a" + integrity sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA== dependencies: - pretty-format "^24.8.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" -jest-matcher-utils@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz#2bce42204c9af12bde46f83dc839efe8be832495" - integrity sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw== +jest-matcher-utils@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz#f5b3661d5e628dffe6dd65251dfdae0e87c3a073" + integrity sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA== dependencies: chalk "^2.0.1" - jest-diff "^24.8.0" - jest-get-type "^24.8.0" - pretty-format "^24.8.0" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" -jest-message-util@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.8.0.tgz#0d6891e72a4beacc0292b638685df42e28d6218b" - integrity sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g== +jest-message-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.9.0.tgz#527f54a1e380f5e202a8d1149b0ec872f43119e3" + integrity sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw== dependencies: "@babel/code-frame" "^7.0.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" "@types/stack-utils" "^1.0.1" chalk "^2.0.1" micromatch "^3.1.10" slash "^2.0.0" stack-utils "^1.0.1" -jest-mock@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.8.0.tgz#2f9d14d37699e863f1febf4e4d5a33b7fdbbde56" - integrity sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A== +jest-mock@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.9.0.tgz#c22835541ee379b908673ad51087a2185c13f1c6" + integrity sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" jest-pnp-resolver@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== -jest-regex-util@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36" - integrity sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg== +jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636" + integrity sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA== -jest-resolve-dependencies@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz#19eec3241f2045d3f990dba331d0d7526acff8e0" - integrity sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw== +jest-resolve-dependencies@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz#ad055198959c4cfba8a4f066c673a3f0786507ab" + integrity sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" jest-regex-util "^24.3.0" - jest-snapshot "^24.8.0" + jest-snapshot "^24.9.0" -jest-resolve@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.8.0.tgz#84b8e5408c1f6a11539793e2b5feb1b6e722439f" - integrity sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw== +jest-resolve@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.9.0.tgz#dff04c7687af34c4dd7e524892d9cf77e5d17321" + integrity sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" browser-resolve "^1.11.3" chalk "^2.0.1" jest-pnp-resolver "^1.2.1" realpath-native "^1.1.0" -jest-runner@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.8.0.tgz#4f9ae07b767db27b740d7deffad0cf67ccb4c5bb" - integrity sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow== +jest-runner@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.9.0.tgz#574fafdbd54455c2b34b4bdf4365a23857fcdf42" + integrity sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg== dependencies: "@jest/console" "^24.7.1" - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.4.2" exit "^0.1.2" graceful-fs "^4.1.15" - jest-config "^24.8.0" + jest-config "^24.9.0" jest-docblock "^24.3.0" - jest-haste-map "^24.8.0" - jest-jasmine2 "^24.8.0" - jest-leak-detector "^24.8.0" - jest-message-util "^24.8.0" - jest-resolve "^24.8.0" - jest-runtime "^24.8.0" - jest-util "^24.8.0" + jest-haste-map "^24.9.0" + jest-jasmine2 "^24.9.0" + jest-leak-detector "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" jest-worker "^24.6.0" source-map-support "^0.5.6" throat "^4.0.0" -jest-runtime@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.8.0.tgz#05f94d5b05c21f6dc54e427cd2e4980923350620" - integrity sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA== +jest-runtime@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.9.0.tgz#9f14583af6a4f7314a6a9d9f0226e1a781c8e4ac" + integrity sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw== dependencies: "@jest/console" "^24.7.1" - "@jest/environment" "^24.8.0" + "@jest/environment" "^24.9.0" "@jest/source-map" "^24.3.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" - "@types/yargs" "^12.0.2" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" chalk "^2.0.1" exit "^0.1.2" glob "^7.1.3" graceful-fs "^4.1.15" - jest-config "^24.8.0" - jest-haste-map "^24.8.0" - jest-message-util "^24.8.0" - jest-mock "^24.8.0" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" jest-regex-util "^24.3.0" - jest-resolve "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" + jest-resolve "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" realpath-native "^1.1.0" slash "^2.0.0" strip-bom "^3.0.0" - yargs "^12.0.2" + yargs "^13.3.0" -jest-serializer@^24.4.0: - version "24.4.0" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3" - integrity sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q== +jest-serializer@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" + integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ== -jest-snapshot@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.8.0.tgz#3bec6a59da2ff7bc7d097a853fb67f9d415cb7c6" - integrity sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg== +jest-snapshot@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.9.0.tgz#ec8e9ca4f2ec0c5c87ae8f925cf97497b0e951ba" + integrity sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew== dependencies: "@babel/types" "^7.0.0" - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" - expect "^24.8.0" - jest-diff "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-resolve "^24.8.0" + expect "^24.9.0" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" mkdirp "^0.5.1" natural-compare "^1.4.0" - pretty-format "^24.8.0" - semver "^5.5.0" - -jest-util@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.8.0.tgz#41f0e945da11df44cc76d64ffb915d0716f46cd1" - integrity sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA== - dependencies: - "@jest/console" "^24.7.1" - "@jest/fake-timers" "^24.8.0" - "@jest/source-map" "^24.3.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + pretty-format "^24.9.0" + semver "^6.2.0" + +jest-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.9.0.tgz#7396814e48536d2e85a37de3e4c431d7cb140162" + integrity sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg== + dependencies: + "@jest/console" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/source-map" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" callsites "^3.0.0" chalk "^2.0.1" graceful-fs "^4.1.15" @@ -7348,50 +7529,51 @@ jest-util@^24.8.0: slash "^2.0.0" source-map "^0.6.0" -jest-validate@^24.0.0, jest-validate@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.8.0.tgz#624c41533e6dfe356ffadc6e2423a35c2d3b4849" - integrity sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA== +jest-validate@^24.0.0, jest-validate@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab" + integrity sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ== dependencies: - "@jest/types" "^24.8.0" - camelcase "^5.0.0" + "@jest/types" "^24.9.0" + camelcase "^5.3.1" chalk "^2.0.1" - jest-get-type "^24.8.0" - leven "^2.1.0" - pretty-format "^24.8.0" - -jest-watcher@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.8.0.tgz#58d49915ceddd2de85e238f6213cef1c93715de4" - integrity sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw== - dependencies: - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" - "@types/yargs" "^12.0.9" + jest-get-type "^24.9.0" + leven "^3.1.0" + pretty-format "^24.9.0" + +jest-watcher@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.9.0.tgz#4b56e5d1ceff005f5b88e528dc9afc8dd4ed2b3b" + integrity sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw== + dependencies: + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" ansi-escapes "^3.0.0" chalk "^2.0.1" - jest-util "^24.8.0" + jest-util "^24.9.0" string-length "^2.0.0" -jest-worker@^24.6.0: - version "24.6.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3" - integrity sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ== +jest-worker@^24.6.0, jest-worker@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" + integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== dependencies: - merge-stream "^1.0.1" + merge-stream "^2.0.0" supports-color "^6.1.0" jest@^24.7.1: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-24.8.0.tgz#d5dff1984d0d1002196e9b7f12f75af1b2809081" - integrity sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg== + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171" + integrity sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw== dependencies: import-local "^2.0.0" - jest-cli "^24.8.0" + jest-cli "^24.9.0" jpeg-js@0.1.2, jpeg-js@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.1.2.tgz#135b992c0575c985cfa0f494a3227ed238583ece" + integrity sha1-E1uZLAV1yYXPoPSUoyJ+0jhYPs4= jquery@^3.4.1: version "3.4.1" @@ -7404,9 +7586,9 @@ js-levenshtein@^1.1.3: integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== js-library-detector@^5.4.0: - version "5.4.0" - resolved "https://registry.yarnpkg.com/js-library-detector/-/js-library-detector-5.4.0.tgz#d1b08dfbdc3886258f888bd441801ef9e5b69567" - integrity sha512-lSTEC9Q3L/cXOhYIilW3GH/v4tOnPIN40NTIBHRcn2vxTwGhMyySQTQpJ0W68ISGzOgvwVe7KCfQ9PJi6MsOIw== + version "5.6.0" + resolved "https://registry.yarnpkg.com/js-library-detector/-/js-library-detector-5.6.0.tgz#a44c95237870b5e4f66f0aff948270df7ec9f277" + integrity sha512-s9LeTXee2J+7qXQHJ1EHPbK4Mk5ZU820Wrw+EOxDRQcn2Tay4n+SvZaqJa6T8UpKu5mIomSh6nXoyuP1j2DzUw== "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" @@ -7536,9 +7718,9 @@ json-to-html@~0.1.2: integrity sha1-egla5KNLM1NKrQlwykt0F7LBHuM= json5@2.x, json5@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" - integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ== + version "2.1.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6" + integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ== dependencies: minimist "^1.2.0" @@ -7567,22 +7749,24 @@ jsonify@~0.0.0: integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= jsonld@^1.5.0: - version "1.6.2" - resolved "https://registry.yarnpkg.com/jsonld/-/jsonld-1.6.2.tgz#d81620dccf75fd7bc7501709eeec5da77ecc45e9" - integrity sha512-eMzFHqhF2kPMrMUjw8+Lz9IF1QkrxTOIfVndkP/OpuoZs31VdDtfDs8mLa5EOC/ROdemFTQGLdYPZbRtmMe2Yw== + version "1.8.1" + resolved "https://registry.yarnpkg.com/jsonld/-/jsonld-1.8.1.tgz#55ea541b22b8af5a5d6a5e32328e3f2678148882" + integrity sha512-f0rusl5v8aPKS3jApT5fhYsdTC/JpyK1PoJ+ZtYYtZXoyb1J0Z///mJqLwrfL/g4NueFSqPymDYIi1CcSk7b8Q== dependencies: + canonicalize "^1.0.1" rdf-canonize "^1.0.2" request "^2.88.0" semver "^5.6.0" xmldom "0.1.19" jsonlint-mod@^1.7.4: - version "1.7.4" - resolved "https://registry.yarnpkg.com/jsonlint-mod/-/jsonlint-mod-1.7.4.tgz#310390e1a6a85cef99f45f200e662ef23b48f7a6" - integrity sha512-FYOkwHqiuBbdVCHgXYlmtL+iUOz9AxCgjotzXl+edI0Hc1km1qK6TrBEAyPpO+5R0/IX3XENRp66mfob4jwxow== + version "1.7.5" + resolved "https://registry.yarnpkg.com/jsonlint-mod/-/jsonlint-mod-1.7.5.tgz#678d2b600b9d350ec3448373d6f71dcbf09a0e3d" + integrity sha512-VqTFtMj9JXv4qGSfcoYTgXgsGkTW4aXZer8u4vR64RAPjK37BUkNKmd3mTjuRTs1vQrE+yuzfzDhgB2SAyPvlA== dependencies: - JSV ">= 4.0.x" - nomnom ">= 1.5.x" + JSV "^4.0.2" + chalk "^2.4.2" + underscore "^1.9.1" jsonparse@^1.2.0: version "1.3.1" @@ -7600,9 +7784,9 @@ jsprim@^1.2.2: verror "1.10.0" karma-babel-preprocessor@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/karma-babel-preprocessor/-/karma-babel-preprocessor-8.0.0.tgz#40639fa968bb14da65c2ccd507a68a5b398068cd" - integrity sha512-eeSSJgEtIVV7qKg/e+BG4RDTo+yglrGgBtuX+IHHGyhXEs4Vaqz8wSePXTiHyERvfxPfHRpxnKb5movoh62ekw== + version "8.0.1" + resolved "https://registry.yarnpkg.com/karma-babel-preprocessor/-/karma-babel-preprocessor-8.0.1.tgz#63b33cc7b5b3b5c7815ec453f7df58fb88345af1" + integrity sha512-5upyawNi3c7Gg6tPH1FWRVTmUijGf3v1GV4ScLM/2jKdDP18SlaKlUpu8eJrRI3STO8qK1bkqFcdgAA364nLYQ== karma-chrome-launcher@~2.2.0: version "2.2.0" @@ -7613,11 +7797,11 @@ karma-chrome-launcher@~2.2.0: which "^1.2.1" karma-coverage-istanbul-reporter@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.0.5.tgz#ca5899d4905e44a5984dd4f963adfc1a74dce767" - integrity sha512-yPvAlKtY3y+rKKWbOo0CzBMVTvJEeMOgbMXuVv3yWvS8YtYKC98AU9vFF0mVBZ2RP1E9SgS90+PT6Kf14P3S4w== + version "2.1.1" + resolved "https://registry.yarnpkg.com/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.1.1.tgz#37a775fbfbb3cbe98cebf19605c94c6277c3b88a" + integrity sha512-CH8lTi8+kKXGvrhy94+EkEMldLCiUA0xMOiL31vvli9qK0T+qcXJAwWBRVJWnVWxYkTmyWar8lPz63dxX6/z1A== dependencies: - istanbul-api "^2.1.1" + istanbul-api "^2.1.6" minimatch "^3.0.4" karma-coverage@^1.1.2: @@ -7632,9 +7816,11 @@ karma-coverage@^1.1.2: source-map "^0.5.1" karma-firefox-launcher@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/karma-firefox-launcher/-/karma-firefox-launcher-1.1.0.tgz#2c47030452f04531eb7d13d4fc7669630bb93339" - integrity sha512-LbZ5/XlIXLeQ3cqnCbYLn+rOVhuMIK9aZwlP6eOLGzWdo1UVp7t6CN3DP4SafiRLjexKwHeKHDm0c38Mtd3VxA== + version "1.2.0" + resolved "https://registry.yarnpkg.com/karma-firefox-launcher/-/karma-firefox-launcher-1.2.0.tgz#64fe03dd10300f9754d48f9ebfbf31f6c94a200c" + integrity sha512-j9Zp8M8+VLq1nI/5xZGfzeaEPtGQ/vk3G+Y8vpmFWLvKLNZ2TDjD6cu2dUu7lDbu1HXNgatsAX4jgCZTkR9qhQ== + dependencies: + is-wsl "^2.1.0" karma-ie-launcher@^1.0.0: version "1.0.0" @@ -7679,17 +7865,16 @@ karma-webpack@^3.0.5: webpack-dev-middleware "^2.0.6" karma@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/karma/-/karma-4.1.0.tgz#d07387c9743a575b40faf73e8a3eb5421c2193e1" - integrity sha512-xckiDqyNi512U4dXGOOSyLKPwek6X/vUizSy2f3geYevbLj+UIdvNwbn7IwfUIL2g1GXEPWt/87qFD1fBbl/Uw== + version "4.4.1" + resolved "https://registry.yarnpkg.com/karma/-/karma-4.4.1.tgz#6d9aaab037a31136dc074002620ee11e8c2e32ab" + integrity sha512-L5SIaXEYqzrh6b1wqYC42tNsFMx2PWuxky84pK9coK09MvmL7mxii3G3bZBh/0rvD27lqDd0le9jyhzvwif73A== dependencies: bluebird "^3.3.0" body-parser "^1.16.1" - braces "^2.3.2" - chokidar "^2.0.3" + braces "^3.0.2" + chokidar "^3.0.0" colors "^1.1.0" connect "^3.6.0" - core-js "^2.2.0" di "^0.0.1" dom-serialize "^2.2.0" flatted "^2.0.0" @@ -7697,7 +7882,7 @@ karma@^4.1.0: graceful-fs "^4.1.2" http-proxy "^1.13.0" isbinaryfile "^3.0.0" - lodash "^4.17.11" + lodash "^4.17.14" log4js "^4.0.0" mime "^2.3.1" minimatch "^3.0.2" @@ -7742,7 +7927,7 @@ kind-of@^6.0.0, kind-of@^6.0.2: resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== -kleur@^3.0.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== @@ -7750,6 +7935,7 @@ kleur@^3.0.2: latest-version@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" + integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU= dependencies: package-json "^4.0.0" @@ -7773,32 +7959,32 @@ left-pad@^1.3.0: integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== lerna@^3.13.2: - version "3.15.0" - resolved "https://registry.yarnpkg.com/lerna/-/lerna-3.15.0.tgz#b044dba8138d7a1a8dd48ac1d80e7541bdde0d1f" - integrity sha512-kRIQ3bgzkmew5/WZQ0C9WjH0IUf3ZmTNnBwTHfXgLkVY7td0lbwMQFD7zehflUn0zG4ou54o/gn+IfjF0ti/5A== - dependencies: - "@lerna/add" "3.15.0" - "@lerna/bootstrap" "3.15.0" - "@lerna/changed" "3.15.0" - "@lerna/clean" "3.15.0" - "@lerna/cli" "3.13.0" - "@lerna/create" "3.15.0" - "@lerna/diff" "3.15.0" - "@lerna/exec" "3.15.0" - "@lerna/import" "3.15.0" - "@lerna/init" "3.15.0" - "@lerna/link" "3.15.0" - "@lerna/list" "3.15.0" - "@lerna/publish" "3.15.0" - "@lerna/run" "3.15.0" - "@lerna/version" "3.15.0" - import-local "^1.0.0" + version "3.19.0" + resolved "https://registry.yarnpkg.com/lerna/-/lerna-3.19.0.tgz#6d53b613eca7da426ab1e97c01ce6fb39754da6c" + integrity sha512-YtMmwEqzWHQCh7Ynk7BvjrZri3EkSeVqTAcwZIqWlv9V/dCfvFPyRqp+2NIjPB5nj1FWXLRH6F05VT/qvzuuOA== + dependencies: + "@lerna/add" "3.19.0" + "@lerna/bootstrap" "3.18.5" + "@lerna/changed" "3.18.5" + "@lerna/clean" "3.18.5" + "@lerna/cli" "3.18.5" + "@lerna/create" "3.18.5" + "@lerna/diff" "3.18.5" + "@lerna/exec" "3.18.5" + "@lerna/import" "3.18.5" + "@lerna/init" "3.18.5" + "@lerna/link" "3.18.5" + "@lerna/list" "3.18.5" + "@lerna/publish" "3.18.5" + "@lerna/run" "3.18.5" + "@lerna/version" "3.18.5" + import-local "^2.0.0" npmlog "^4.1.2" -leven@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" - integrity sha1-wuep93IJTe6dNCAq6KzORoeHVYA= +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== levn@^0.3.0, levn@~0.3.0: version "0.3.0" @@ -7811,6 +7997,7 @@ levn@^0.3.0, levn@~0.3.0: lighthouse-logger@^1.0.0, lighthouse-logger@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/lighthouse-logger/-/lighthouse-logger-1.2.0.tgz#b76d56935e9c137e86a04741f6bb9b2776e886ca" + integrity sha512-wzUvdIeJZhRsG6gpZfmSCfysaxNEr43i+QT+Hie94wvHDKFLi4n7C2GqZ4sTC+PH5b5iktmXJvU87rWvhP3lHw== dependencies: debug "^2.6.8" marky "^1.2.0" @@ -7950,7 +8137,18 @@ load-json-file@^4.0.0: pify "^3.0.0" strip-bom "^3.0.0" -loader-runner@^2.3.0, loader-runner@^2.3.1: +load-json-file@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-5.3.0.tgz#4d3c1e01fa1c03ea78a60ac7af932c9ce53403f3" + integrity sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw== + dependencies: + graceful-fs "^4.1.15" + parse-json "^4.0.0" + pify "^4.0.1" + strip-bom "^3.0.0" + type-fest "^0.3.0" + +loader-runner@^2.3.1, loader-runner@^2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== @@ -7997,7 +8195,7 @@ locate-path@^5.0.0: dependencies: p-locate "^4.1.0" -lodash._reinterpolate@~3.0.0: +lodash._reinterpolate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= @@ -8035,6 +8233,7 @@ lodash.get@^4.4.2: lodash.isequal@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= lodash.ismatch@^4.4.0: version "4.4.0" @@ -8051,6 +8250,11 @@ lodash.isstring@^4.0.1: resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= +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.mergewith@^4.6.1: version "4.6.2" resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" @@ -8066,27 +8270,27 @@ lodash.sortby@^4.7.0: resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= -lodash.template@^4.0.2: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" - integrity sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A= +lodash.template@^4.0.2, lodash.template@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" + integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== dependencies: - lodash._reinterpolate "~3.0.0" + lodash._reinterpolate "^3.0.0" lodash.templatesettings "^4.0.0" lodash.templatesettings@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" - integrity sha1-K01OlbpEDZFf8IvImeRVNmZxMxY= + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" + integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== dependencies: - lodash._reinterpolate "~3.0.0" + lodash._reinterpolate "^3.0.0" lodash.uniq@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= -lodash@^4.0.0, lodash@^4.17.0, lodash@^4.17.11, lodash@^4.17.15, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1: +lodash@^4.0.0, lodash@^4.17.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1: version "4.17.15" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== @@ -8115,15 +8319,15 @@ log-update@^2.3.0: wrap-ansi "^3.0.1" log4js@^4.0.0: - version "4.3.2" - resolved "https://registry.yarnpkg.com/log4js/-/log4js-4.3.2.tgz#2c1d97c2ebeb5172d92df63ebf8750af4a1d91ea" - integrity sha512-72GjgSP+ifL156MD/bXEhE7UlFLKS2KkCXujodb1nl1z6PpKhCfS+41dyNQ7zKi4iM49TQl+aWLEISXGLcGCCQ== + version "4.5.1" + resolved "https://registry.yarnpkg.com/log4js/-/log4js-4.5.1.tgz#e543625e97d9e6f3e6e7c9fc196dd6ab2cae30b5" + integrity sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw== dependencies: date-format "^2.0.0" debug "^4.1.1" flatted "^2.0.0" - rfdc "^1.1.2" - streamroller "^1.0.5" + rfdc "^1.1.4" + streamroller "^1.0.6" loglevelnext@^1.0.1: version "1.0.5" @@ -8136,6 +8340,7 @@ loglevelnext@^1.0.1: lookup-closest-locale@6.0.4: version "6.0.4" resolved "https://registry.yarnpkg.com/lookup-closest-locale/-/lookup-closest-locale-6.0.4.tgz#1279fed7546a601647bbc980f64423ee990a8590" + integrity sha512-bWoFbSGe6f1GvMGzj17LrwMX4FhDXDwZyH04ySVCPbtOJADcSRguZNKewoJ3Ful/MOxD/wRHvFPadk/kYZUbuQ== loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1, loose-envify@^1.4.0: version "1.4.0" @@ -8167,7 +8372,7 @@ lowercase-keys@^2.0.0: resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== -lru-cache@4.1.x, lru-cache@^4.0.1, lru-cache@^4.1.2, lru-cache@^4.1.3: +lru-cache@4.1.x, lru-cache@^4.0.1: version "4.1.5" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== @@ -8212,17 +8417,17 @@ make-error@1.x: resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" integrity sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g== -make-fetch-happen@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-4.0.1.tgz#141497cb878f243ba93136c83d8aba12c216c083" - integrity sha512-7R5ivfy9ilRJ1EMKIOziwrns9fGeAD4bAha8EB7BIiBBLHm2KeTUGCrICFt2rbHfzheTLynv50GnNTK1zDTrcQ== +make-fetch-happen@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-5.0.2.tgz#aa8387104f2687edca01c8687ee45013d02d19bd" + integrity sha512-07JHC0r1ykIoruKO8ifMXu+xEU8qOXDFETylktdug6vJDACnP+HKevOu3PXyNPzFyTSlz8vrBYlBO1JZRe8Cag== dependencies: agentkeepalive "^3.4.1" - cacache "^11.0.1" + cacache "^12.0.0" http-cache-semantics "^3.8.1" http-proxy-agent "^2.1.0" - https-proxy-agent "^2.2.1" - lru-cache "^4.1.2" + https-proxy-agent "^2.2.3" + lru-cache "^5.1.1" mississippi "^3.0.0" node-fetch-npm "^2.0.2" promise-retry "^1.1.1" @@ -8278,6 +8483,7 @@ marked@^0.7.0: marky@^1.2.0: version "1.2.1" resolved "https://registry.yarnpkg.com/marky/-/marky-1.2.1.tgz#a3fcf82ffd357756b8b8affec9fdbf3a30dc1b02" + integrity sha512-md9k+Gxa3qLH6sUKpeC2CNkJK/Ld+bEz5X96nYwloqphQE0CKCVEKco/6jxEZixinqNdz5RFi/KaCyfbMDMAXQ== matcher@^1.0.0: version "1.1.1" @@ -8298,6 +8504,7 @@ md5.js@^1.3.4: md5@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" + integrity sha1-U6s41f48iJG6RlMp6iP6wFQBJvk= dependencies: charenc "~0.0.1" crypt "~0.0.1" @@ -8313,13 +8520,6 @@ media-typer@0.3.0: resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= -mem@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" - integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y= - dependencies: - mimic-fn "^1.0.0" - mem@^4.0.0: version "4.3.0" resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" @@ -8329,7 +8529,7 @@ mem@^4.0.0: mimic-fn "^2.0.0" p-is-promise "^2.0.0" -memory-fs@^0.4.0, memory-fs@~0.4.1: +memory-fs@^0.4.0, memory-fs@^0.4.1, memory-fs@~0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= @@ -8368,22 +8568,35 @@ meow@^4.0.0: redent "^2.0.0" trim-newlines "^2.0.0" +meow@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4" + integrity sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig== + dependencies: + camelcase-keys "^4.0.0" + decamelize-keys "^1.0.0" + loud-rejection "^1.0.0" + minimist-options "^3.0.1" + normalize-package-data "^2.3.4" + read-pkg-up "^3.0.0" + redent "^2.0.0" + trim-newlines "^2.0.0" + yargs-parser "^10.0.0" + merge-descriptors@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= -merge-stream@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" - integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= - dependencies: - readable-stream "^2.0.1" +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== merge2@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.3.tgz#7ee99dbd69bb6481689253f018488a1b902b0ed5" - integrity sha512-gdUU1Fwj5ep4kplwcmftruWofEFt6lfpkkr3h860CXbAB9c3hGb55EOL2ali0Td5oebvW0E1+3Sr+Ur7XfKpRA== + version "1.3.0" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" + integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== merge@^1.2.0: version "1.2.1" @@ -8393,6 +8606,7 @@ merge@^1.2.0: metaviewport-parser@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/metaviewport-parser/-/metaviewport-parser-0.2.0.tgz#535c3ce1ccf6223a5025fddc6a1c36505f7e7db1" + integrity sha1-U1w84cz2IjpQJf3cahw2UF9+fbE= methods@~1.1.2: version "1.1.2" @@ -8439,17 +8653,17 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" -mime-db@1.40.0: - version "1.40.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" - integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== +mime-db@1.42.0: + version "1.42.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.42.0.tgz#3e252907b4c7adb906597b4b65636272cf9e7bac" + integrity sha512-UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ== mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24: - version "2.1.24" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" - integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== + version "2.1.25" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.25.tgz#39772d46621f93e2a80a856c53b86a62156a6437" + integrity sha512-5KhStqB5xpTAeGqKBAMgwaYMnQik7teQN4IAzC7npDv6kzeU6prfkR67bc87J1kWMPGkoaZSq1npmexMgkmEVg== dependencies: - mime-db "1.40.0" + mime-db "1.42.0" mime@1.6.0: version "1.6.0" @@ -8521,20 +8735,20 @@ minimist@1.2.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@~1.2 resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= -minipass@^2.2.1, minipass@^2.3.5: - version "2.3.5" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" - integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== +minipass@^2.3.5, minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" + integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== dependencies: safe-buffer "^5.1.2" yallist "^3.0.0" minizlib@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" - integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== + version "1.3.3" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" + integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== dependencies: - minipass "^2.2.1" + minipass "^2.9.0" mississippi@^3.0.0: version "3.0.0" @@ -8553,14 +8767,21 @@ mississippi@^3.0.0: through2 "^2.0.0" mixin-deep@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" - integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== + version "1.3.2" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== dependencies: for-in "^1.0.2" is-extendable "^1.0.1" -mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@0.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: +mkdirp-promise@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz#e9b8f68e552c68a9c1713b84883f7a1dd039b8a1" + integrity sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE= + dependencies: + mkdirp "*" + +mkdirp@*, mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@0.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= @@ -8568,9 +8789,9 @@ mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@0.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0. minimist "0.0.8" mocha@^6.1.4: - version "6.1.4" - resolved "https://registry.yarnpkg.com/mocha/-/mocha-6.1.4.tgz#e35fada242d5434a7e163d555c705f6875951640" - integrity sha512-PN8CIy4RXsIoxoFJzS4QNnCH4psUCPWc4/rPrst/ecSJJbLBkubMiyGCP2Kj/9YnWbotFqAoeXyXMucj7gwCFg== + version "6.2.2" + resolved "https://registry.yarnpkg.com/mocha/-/mocha-6.2.2.tgz#5d8987e28940caf8957a7d7664b910dc5b2fea20" + integrity sha512-FgDS9Re79yU1xz5d+C4rv1G7QagNGHZ+iXF81hO8zY35YZZcLEsJVfFolfsqKFWunATEvNzMK0r/CwWd/szO9A== dependencies: ansi-colors "3.2.3" browser-stdout "1.3.1" @@ -8592,9 +8813,9 @@ mocha@^6.1.4: supports-color "6.0.0" which "1.3.1" wide-align "1.1.3" - yargs "13.2.2" - yargs-parser "13.0.0" - yargs-unparser "1.5.0" + yargs "13.3.0" + yargs-parser "13.1.1" + yargs-unparser "1.6.0" modify-values@^1.0.0: version "1.0.1" @@ -8628,21 +8849,30 @@ ms@2.1.1, ms@^2.0.0, ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== -multimatch@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" - integrity sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis= +multimatch@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-3.0.0.tgz#0e2534cc6bc238d9ab67e1b9cd5fcd85a6dbf70b" + integrity sha512-22foS/gqQfANZ3o+W7ST2x25ueHDVNWl/b9OlGcLpy/iKxjCpvcNCM51YCenUi7Mt/jAjjqv8JwZRs8YP5sRjA== dependencies: - array-differ "^1.0.0" - array-union "^1.0.1" - arrify "^1.0.0" - minimatch "^3.0.0" + array-differ "^2.0.3" + array-union "^1.0.2" + arrify "^1.0.1" + minimatch "^3.0.4" mute-stream@0.0.7, mute-stream@~0.0.4: version "0.0.7" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= +mz@^2.5.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + nan@^2.10.0, nan@^2.12.1: version "2.14.0" resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" @@ -8684,12 +8914,12 @@ negotiator@0.6.2: resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== -neo-async@^2.5.0, neo-async@^2.6.0: +neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== -next-tick@^1.0.0: +next-tick@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= @@ -8741,21 +8971,21 @@ node-forge@^0.8.1: resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.8.5.tgz#57906f07614dc72762c84cef442f427c0e1b86ee" integrity sha512-vFMQIWt+J/7FLNyKouZ9TazT74PRV3wgv9UT4cRjC8BffxFbKXkgIWR42URCPSnHm/QDz6BOlb2Q0U4+VQT67Q== -node-gyp@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-4.0.0.tgz#972654af4e5dd0cd2a19081b4b46fe0442ba6f45" - integrity sha512-2XiryJ8sICNo6ej8d0idXDEMKfVfFK7kekGCtJAuelGsYHQxhj13KTf95swTCN2dZ/4lTfZ84Fu31jqJEEgjWA== +node-gyp@^5.0.2: + version "5.0.5" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-5.0.5.tgz#f6cf1da246eb8c42b097d7cd4d6c3ce23a4163af" + integrity sha512-WABl9s4/mqQdZneZHVWVG4TVr6QQJZUC6PAx47ITSk9lreZ1n+7Z9mMAIbA3vnO4J9W20P7LhCxtzfWsAD/KDw== dependencies: + env-paths "^1.0.0" glob "^7.0.3" graceful-fs "^4.1.2" mkdirp "^0.5.0" nopt "2 || 3" npmlog "0 || 1 || 2 || 3 || 4" - osenv "0" request "^2.87.0" rimraf "2" semver "~5.3.0" - tar "^4.4.8" + tar "^4.4.12" which "1" node-int64@^0.4.0: @@ -8763,7 +8993,7 @@ node-int64@^0.4.0: resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= -node-libs-browser@^2.0.0: +node-libs-browser@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== @@ -8797,10 +9027,10 @@ node-modules-regexp@^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@^5.2.1: - version "5.4.0" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a" - integrity sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ== +node-notifier@^5.4.2: + version "5.4.3" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50" + integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q== dependencies: growly "^1.3.0" is-wsl "^1.1.0" @@ -8840,20 +9070,12 @@ node-pre-gyp@^0.12.0: semver "^5.3.0" tar "^4" -node-releases@^1.1.23: - version "1.1.23" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.23.tgz#de7409f72de044a2fa59c097f436ba89c39997f0" - integrity sha512-uq1iL79YjfYC0WXoHbC/z28q/9pOl8kSHaXdWmAAc8No+bDwqkZbzIJz55g/MUsPgSGm9LZ7QSUbzTcH5tz47w== - dependencies: - semver "^5.3.0" - -"nomnom@>= 1.5.x": - version "1.8.1" - resolved "https://registry.yarnpkg.com/nomnom/-/nomnom-1.8.1.tgz#2151f722472ba79e50a76fc125bb8c8f2e4dc2a7" - integrity sha1-IVH3Ikcrp55Qp2/BJbuMjy5Nwqc= +node-releases@^1.1.41: + version "1.1.41" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.41.tgz#57674a82a37f812d18e3b26118aefaf53a00afed" + integrity sha512-+IctMa7wIs8Cfsa8iYzeaLTFwv5Y4r5jZud+4AnfymzeEXKBCavFX0KBgzVaPVqf0ywa6PrO8/b+bPqdwjGBSg== dependencies: - chalk "~0.4.0" - underscore "~1.6.0" + semver "^6.3.0" "nopt@2 || 3", nopt@3.x: version "3.0.6" @@ -8887,7 +9109,7 @@ normalize-path@^2.1.1: dependencies: remove-trailing-separator "^1.0.1" -normalize-path@^3.0.0: +normalize-path@^3.0.0, 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== @@ -8907,11 +9129,11 @@ normalize-url@^3.3.0: integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== normalize-url@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.3.0.tgz#9c49e10fc1876aeb76dba88bf1b2b5d9fa57b2ee" - integrity sha512-0NLtR71o4k6GLP+mr6Ty34c5GA6CMoEsncKJxvQd8NzPxaHRJNnb5gZE8R1XF4CPIS7QPHLJ74IFszwtNVAHVQ== + version "4.5.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129" + integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== -normalize.css@^8.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== @@ -8921,14 +9143,14 @@ npm-bundled@^1.0.1: resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== -npm-lifecycle@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-2.1.1.tgz#0027c09646f0fd346c5c93377bdaba59c6748fdf" - integrity sha512-+Vg6I60Z75V/09pdcH5iUo/99Q/vop35PaI99elvxk56azSVVsdsSsS/sXqKDNwbRRNN1qSxkcO45ZOu0yOWew== +npm-lifecycle@^3.1.2: + version "3.1.4" + resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-3.1.4.tgz#de6975c7d8df65f5150db110b57cce498b0b604c" + integrity sha512-tgs1PaucZwkxECGKhC/stbEgFyc3TGh2TJcg2CDr6jbvQRdteHNhmMeljRzpe4wgFAXQADoy1cSqqi7mtiAa5A== dependencies: byline "^5.0.0" graceful-fs "^4.1.15" - node-gyp "^4.0.0" + node-gyp "^5.0.2" resolve-from "^4.0.0" slide "^1.1.6" uid-number "0.0.6" @@ -8936,19 +9158,19 @@ npm-lifecycle@^2.1.1: which "^1.3.1" "npm-package-arg@^4.0.0 || ^5.0.0 || ^6.0.0", npm-package-arg@^6.0.0, npm-package-arg@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.0.tgz#15ae1e2758a5027efb4c250554b85a737db7fcc1" - integrity sha512-zYbhP2k9DbJhA0Z3HKUePUgdB1x7MfIfKssC+WLPFMKTBZKpZh5m13PgexJjCq6KW7j17r0jHWcCpxEqnnncSA== + version "6.1.1" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.1.tgz#02168cb0a49a2b75bf988a28698de7b529df5cb7" + integrity sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg== dependencies: - hosted-git-info "^2.6.0" + hosted-git-info "^2.7.1" osenv "^0.1.5" - semver "^5.5.0" + semver "^5.6.0" validate-npm-package-name "^3.0.0" -npm-packlist@^1.1.12, npm-packlist@^1.1.6, npm-packlist@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc" - integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw== +npm-packlist@^1.1.6, npm-packlist@^1.4.4: + version "1.4.6" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.6.tgz#53ba3ed11f8523079f1457376dd379ee4ea42ff4" + integrity sha512-u65uQdb+qwtGvEJh/DgQgW1Xg7sqeNbmxYyrvlNznaVTjV3E5P6F/EFjM+BVHXl7JJlsdG8A64M0XI8FI/IOlg== dependencies: ignore-walk "^3.0.1" npm-bundled "^1.0.1" @@ -8960,10 +9182,10 @@ npm-path@^2.0.2: dependencies: which "^1.2.10" -npm-pick-manifest@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-2.2.3.tgz#32111d2a9562638bb2c8f2bf27f7f3092c8fae40" - integrity sha512-+IluBC5K201+gRU85vFlUwX3PFShZAbAgDNp2ewJdWMVSppdo/Zih0ul2Ecky/X7b51J7LrrUAP+XOmOCvYZqA== +npm-pick-manifest@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-3.0.2.tgz#f4d9e5fd4be2153e5f4e5f9b7be8dc419a99abb7" + integrity sha512-wNprTNg+X5nf+tDi+hbjdHhM4bX+mKqv6XmPh7B5eG+QY9VARfQPfCEH013H5GqfNj6ee8Ij2fg8yk0mzps1Vw== dependencies: figgy-pudding "^3.5.1" npm-package-arg "^6.0.0" @@ -9021,9 +9243,9 @@ number-is-nan@^1.0.0: integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= nwsapi@^2.0.7: - version "2.1.4" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f" - integrity sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw== + 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" @@ -9049,7 +9271,12 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" -object-keys@^1.0.11, object-keys@^1.0.12: +object-inspect@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" + integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== + +object-keys@^1.0.11, 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== @@ -9130,6 +9357,7 @@ opener@^1.5.1: opn@4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" + integrity sha1-erwi5kTf9jsKltWrfyeQwPAavJU= dependencies: object-assign "^4.0.1" pinkie-promise "^2.0.0" @@ -9143,16 +9371,16 @@ optimist@^0.6.1: wordwrap "~0.0.2" optionator@^0.8.1, optionator@^0.8.2: - version "0.8.2" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" - integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= + 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.4" + fast-levenshtein "~2.0.6" levn "~0.3.0" prelude-ls "~1.1.2" type-check "~0.3.2" - wordwrap "~1.0.0" + word-wrap "~1.2.3" os-browserify@^0.3.0: version "0.3.0" @@ -9167,18 +9395,10 @@ os-homedir@^1.0.0: os-locale@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= dependencies: lcid "^1.0.0" -os-locale@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" - integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA== - dependencies: - execa "^0.7.0" - lcid "^1.0.0" - mem "^1.1.0" - os-locale@^3.0.0, os-locale@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" @@ -9188,7 +9408,7 @@ os-locale@^3.0.0, os-locale@^3.1.0: lcid "^2.0.0" mem "^4.0.0" -os-name@^3.0.0: +os-name@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801" integrity sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg== @@ -9201,7 +9421,7 @@ os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= -osenv@0, osenv@^0.1.4, osenv@^0.1.5: +osenv@^0.1.4, osenv@^0.1.5: version "0.1.5" resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== @@ -9244,9 +9464,9 @@ p-limit@^1.1.0: p-try "^1.0.0" p-limit@^2.0.0, p-limit@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" - integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== + version "2.2.1" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537" + integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg== dependencies: p-try "^2.0.0" @@ -9278,12 +9498,12 @@ p-map-series@^1.0.0: dependencies: p-reduce "^1.0.0" -p-map@^1.1.1, p-map@^1.2.0: +p-map@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA== -p-map@^2.0.0: +p-map@^2.0.0, p-map@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== @@ -9325,6 +9545,7 @@ p-waterfall@^1.0.0: package-json@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" + integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0= dependencies: got "^6.7.1" registry-auth-token "^3.0.1" @@ -9332,14 +9553,14 @@ package-json@^4.0.0: semver "^5.1.0" package-json@^6.3.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.4.0.tgz#4f626976604f4a9a41723ce1792b204a60b1b61e" - integrity sha512-bd1T8OBG7hcvMd9c/udgv6u5v9wISP3Oyl9Cm7Weop8EFwrtcQDnS2sb6zhwqus2WslSr5wSTIPiTTpxxmPm7Q== + version "6.5.0" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" + integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== dependencies: got "^9.6.0" - registry-auth-token "^3.4.0" + registry-auth-token "^4.0.0" registry-url "^5.0.0" - semver "^6.1.1" + semver "^6.2.0" pako@~1.0.5: version "1.0.10" @@ -9347,11 +9568,11 @@ pako@~1.0.5: integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw== parallel-transform@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" - integrity sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY= + version "1.2.0" + resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc" + integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg== dependencies: - cyclist "~0.2.2" + cyclist "^1.0.1" inherits "^2.0.3" readable-stream "^2.1.5" @@ -9370,9 +9591,9 @@ parent-module@^1.0.0: callsites "^3.0.0" parse-asn1@^5.0.0: - version "5.1.4" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.4.tgz#37f6628f823fbdeb2273b4d540434a22f3ef1fcc" - integrity sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw== + version "5.1.5" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" + integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== dependencies: asn1.js "^4.0.0" browserify-aes "^1.0.0" @@ -9384,6 +9605,7 @@ parse-asn1@^5.0.0: parse-cache-control@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/parse-cache-control/-/parse-cache-control-1.0.1.tgz#8eeab3e54fa56920fe16ba38f77fa21aacc2d74e" + integrity sha1-juqz5U+laSD+Fro493+iGqzC104= parse-github-repo-url@^1.3.0: version "1.4.1" @@ -9405,6 +9627,16 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" +parse-json@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" + integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + lines-and-columns "^1.1.6" + parse-passwd@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" @@ -9564,10 +9796,10 @@ performance-now@^2.1.0: resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= -picomatch@^2.0.5: - version "2.0.7" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.0.7.tgz#514169d8c7cd0bdbeecc8a2609e34a7163de69f6" - integrity sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA== +picomatch@^2.0.4, picomatch@^2.0.5: + version "2.1.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.1.1.tgz#ecdfbea7704adb5fe6fb47f9866c4c0e15e905c5" + integrity sha512-OYMyqkKzK7blWO/+XZYP6w8hH0LDvkBvdvKukti+7kqYFCiEAk+gI3DWnryapc0Dau05ugGTy0foQ6mqn4AHYA== pify@^2.0.0, pify@^2.3.0: version "2.3.0" @@ -9603,13 +9835,6 @@ pirates@^4.0.1: dependencies: node-modules-regexp "^1.0.0" -pkg-dir@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" - integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= - dependencies: - find-up "^2.1.0" - pkg-dir@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" @@ -9625,9 +9850,9 @@ pkg-dir@^4.1.0: find-up "^4.0.0" please-upgrade-node@^3.0.2, please-upgrade-node@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz#ed320051dfcc5024fae696712c8288993595e8ac" - integrity sha512-KY1uHnQ2NlQHqIJQpnh/i54rKkuxCEBx+voJIS/Mvb+L2iYd2NMotwduhKTMjfC1uKoX3VXOxLjIYG66dfJTVQ== + version "3.2.0" + resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" + integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== dependencies: semver-compare "^1.0.0" @@ -9636,10 +9861,10 @@ pn@^1.1.0: resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== -popper.js@^1.14.1, popper.js@^1.14.4: - version "1.15.0" - resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.15.0.tgz#5560b99bbad7647e9faa475c6b8056621f5a4ff2" - integrity sha512-w010cY1oCUmI+9KwwlWki+r5jxKfTFDVoadl7MSrIujHU5MJ5OR6HTDj6Xo8aoR/QsA56x8jKjA59qGH4ELtrA== +popper.js@^1.14.4, popper.js@^1.15.0: + version "1.16.0" + resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.0.tgz#2e1816bcbbaa518ea6c2e15a466f4cb9c6e2fbb3" + integrity sha512-+G+EkOPoE5S/zChTpmBSSDYmhXJ5PsW8eMhH8cP/CQHMFPBG/kC9Y5IIw6qNYgdJ+/COf0ddY2li28iHaZRSjw== posix-character-classes@^0.1.0: version "0.1.1" @@ -9663,9 +9888,9 @@ postcss-modules-local-by-default@^2.0.6: postcss-value-parser "^3.3.1" postcss-modules-scope@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz#ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb" - integrity sha512-91Rjps0JnmtUB0cujlc8KIKCsJXWjzuxGeT/+Q2i2HXKZ7nBUeF9YQTZZTNvHVoNYj1AthsjnGLtqDUE0Op79A== + version "2.1.1" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.1.tgz#33d4fc946602eb5e9355c4165d68a10727689dba" + integrity sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ== dependencies: postcss "^7.0.6" postcss-selector-parser "^6.0.0" @@ -9693,9 +9918,9 @@ postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1: integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== postcss@^7.0.14, postcss@^7.0.5, postcss@^7.0.6: - version "7.0.17" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.17.tgz#4da1bdff5322d4a0acaab4d87f3e782436bad31f" - integrity sha512-546ZowA+KZ3OasvQZHsbuEpysvwTZNGJv9EfyCQdsIDltPSWHAeTQ5fQy/Npi2ZDtLI3zs7Ps/p6wThErhm9fQ== + version "7.0.23" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.23.tgz#9f9759fad661b15964f3cfc3140f66f1e05eadc1" + integrity sha512-hOlMf3ouRIFXD+j2VJecwssTwbvsPGJVMzupptg+85WA+i7MwyrydmQAgY3R+m0Bc0exunhbJmijy8u8+vufuQ== dependencies: chalk "^2.4.2" source-map "^0.6.1" @@ -9704,6 +9929,7 @@ postcss@^7.0.14, postcss@^7.0.5, postcss@^7.0.6: 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= prepend-http@^1.0.1: version "1.0.4" @@ -9722,7 +9948,7 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@^1.17.0, prettier@^1.19.1: +prettier@^1.19.1: version "1.19.1" resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== @@ -9735,12 +9961,12 @@ pretty-error@^2.0.2: renderkid "^2.0.1" utila "~0.4" -pretty-format@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2" - integrity sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw== +pretty-format@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" + integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" ansi-regex "^4.0.0" ansi-styles "^3.2.0" react-is "^16.8.4" @@ -9786,12 +10012,12 @@ promise@^7.1.1: asap "~2.0.3" prompts@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.1.0.tgz#bf90bc71f6065d255ea2bdc0fe6520485c1b45db" - integrity sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg== + version "2.3.0" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.0.tgz#a444e968fa4cc7e86689a74050685ac8006c4cc4" + integrity sha512-NfbbPPg/74fT7wk2XYQ7hAIp9zJyZp5Fu19iRbORqqy1BhtrkZ0fPafBU+7bmn8ie69DpT0R6QpJIN2oisYjJg== dependencies: - kleur "^3.0.2" - sisteransi "^1.0.0" + kleur "^3.0.3" + sisteransi "^1.0.3" promzard@^0.3.0: version "0.3.0" @@ -9855,9 +10081,9 @@ pseudomap@^1.0.2: integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= psl@^1.1.24: - version "1.1.33" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.33.tgz#5533d9384ca7aab86425198e10e8053ebfeab661" - integrity sha512-LTDP2uSrsc7XCb5lO7A8BI1qYxRe/8EqlRvMeEl6rsnYAqDOl8xHR+8lSAIVfrNaSAlTPTNOCgNjWcoUL3AZsw== + version "1.5.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.5.0.tgz#47fd1292def7fdb1e138cd78afa8814cebcf7b13" + integrity sha512-4vqUjKi2huMu1OJiLhi3jN6jeeKvMZdI1tYgi/njW5zV52jNLgSAZSdN16m9bJFe61/cT8ulmw4qFitV9QRsEA== public-encrypt@^4.0.0: version "4.0.3" @@ -10002,6 +10228,7 @@ range-parser@^1.0.3, range-parser@^1.2.0, range-parser@~1.2.1: raven@^2.2.1: version "2.6.4" resolved "https://registry.yarnpkg.com/raven/-/raven-2.6.4.tgz#458d4a380c8fbb59e0150c655625aaf60c167ea3" + integrity sha512-6PQdfC4+DQSFncowthLf+B6Hr0JpPsFBgTVYTAOq7tCmx/kR4SXbeawtPch20+3QfUcQDoJBLjWW1ybvZ4kXTw== dependencies: cookie "0.3.1" md5 "^2.2.1" @@ -10076,9 +10303,9 @@ react-highlighter@^0.4.0: prop-types "^15.6.0" react-is@^16.8.1, react-is@^16.8.4: - version "16.8.6" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" - integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA== + version "16.12.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.12.0.tgz#2cc0fe0fba742d97fd527c42a13bec4eeb06241c" + integrity sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q== react-json-tree@^0.11.0: version "0.11.2" @@ -10095,25 +10322,25 @@ react-lifecycles-compat@^3.0.4: integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== react-paginate@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/react-paginate/-/react-paginate-6.3.0.tgz#29cbb5d1645227f4e4f959b9d7f43cfae603f801" - integrity sha512-lT/ne7hZzctGDli4QzUAou0JjfZgxKmtl9/r30B5UVonICZIy1u0SrAkdlEZ5ubgzrOykBeCmxkTWi5IyPg4AQ== + version "6.3.2" + resolved "https://registry.yarnpkg.com/react-paginate/-/react-paginate-6.3.2.tgz#4e18cbdb2654d308566775fa14df11e820188391" + integrity sha512-Ch++Njfv8UHpLtIMiQouAPeJQA5Ki86kIYfCer6c1B96Rvn3UF27se+goCilCP8oHNXNsA2R2kxvzanY1YIkyg== dependencies: prop-types "^15.6.1" -react-popper@^1.0.0: - version "1.3.3" - resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.3.tgz#2c6cef7515a991256b4f0536cd4bdcb58a7b6af6" - integrity sha512-ynMZBPkXONPc5K4P5yFWgZx5JGAUIP3pGGLNs58cfAPgK67olx7fmLp+AdpZ0+GoQ+ieFDa/z4cdV6u7sioH6w== +react-popper@^1.3.3: + version "1.3.6" + resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.6.tgz#32122f83af8fda01bdd4f86625ddacaf64fdd06d" + integrity sha512-kLTfa9z8n+0jJvRVal9+vIuirg41rObg4Bbrvv/ZfsGPQDN9reyVVSxqnHF1ZNgXgV7x11PeUfd5ItF8DZnqhg== dependencies: "@babel/runtime" "^7.1.2" - create-react-context "<=0.2.2" + create-react-context "^0.3.0" popper.js "^1.14.4" prop-types "^15.6.1" typed-styles "^0.0.7" warning "^4.0.2" -react-transition-group@^2.2.1: +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== @@ -10134,16 +10361,16 @@ react@~16.8.4: scheduler "^0.13.6" read-cmd-shim@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-1.0.1.tgz#2d5d157786a37c055d22077c32c53f8329e91c7b" - integrity sha1-LV0Vd4ajfAVdIgd8MsU/gynpHHs= + version "1.0.5" + resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-1.0.5.tgz#87e43eba50098ba5a32d0ceb583ab8e43b961c16" + integrity sha512-v5yCqQ/7okKoZZkBQUAfTsQ3sVJtXdNfbPnI5cceppoxEVLYA3k+VtV2omkeo8MS94JCy4fSiUwlRBAwCVRPUA== dependencies: graceful-fs "^4.1.2" "read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@^2.0.13: - version "2.0.13" - resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.0.13.tgz#2e82ebd9f613baa6d2ebe3aa72cefe3f68e41f4a" - integrity sha512-/1dZ7TRZvGrYqE0UAfN6qQb5GYBsNcqS1C0tNK601CFOJmtHI7NIGXwetEPU/OtoFHZL3hDxm4rolFFVE9Bnmg== + version "2.1.0" + resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.1.0.tgz#e3d42e6c35ea5ae820d9a03ab0c7291217fc51d5" + integrity sha512-KLhu8M1ZZNkMcrq1+0UJbR8Dii8KZUqB0Sha4mOx/bknfKI/fyrQVrG/YIt2UOtG667sD8+ee4EXMM91W9dC+A== dependencies: glob "^7.1.1" json-parse-better-errors "^1.0.1" @@ -10153,15 +10380,13 @@ read-cmd-shim@^1.0.1: graceful-fs "^4.1.2" read-package-tree@^5.1.6, read-package-tree@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/read-package-tree/-/read-package-tree-5.2.2.tgz#4b6a0ef2d943c1ea36a578214c9a7f6b7424f7a8" - integrity sha512-rW3XWUUkhdKmN2JKB4FL563YAgtINifso5KShykufR03nJ5loGFlkUMe1g/yxmqX073SoYYTsgXu7XdDinKZuA== + version "5.3.1" + resolved "https://registry.yarnpkg.com/read-package-tree/-/read-package-tree-5.3.1.tgz#a32cb64c7f31eb8a6f31ef06f9cedf74068fe636" + integrity sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw== dependencies: - debuglog "^1.0.1" - dezalgo "^1.0.0" - once "^1.3.0" read-package-json "^2.0.0" readdir-scoped-modules "^1.0.0" + util-promisify "^2.1.0" read-pkg-up@^1.0.1: version "1.0.1" @@ -10206,14 +10431,14 @@ read-pkg@^3.0.0: path-type "^3.0.0" read-pkg@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.1.1.tgz#5cf234dde7a405c90c88a519ab73c467e9cb83f5" - integrity sha512-dFcTLQi6BZ+aFUaICg7er+/usEoqFdQxiEBsEMNGoipenihtxxtdrQuBXvyANCEI8VuUIVYFgeHGx9sLLvim4w== + 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 "^4.0.0" - type-fest "^0.4.1" + parse-json "^5.0.0" + type-fest "^0.6.0" read@1, read@~1.0.1: version "1.0.7" @@ -10245,9 +10470,9 @@ readable-stream@^3.0.2, readable-stream@^3.1.1: util-deprecate "^1.0.1" readdir-scoped-modules@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz#9fafa37d286be5d92cbaebdee030dc9b5f406747" - integrity sha1-n6+jfShr5dksuuve4DDcm19AZ0c= + version "1.1.0" + resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309" + integrity sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw== dependencies: debuglog "^1.0.1" dezalgo "^1.0.0" @@ -10263,6 +10488,13 @@ readdirp@^2.2.1: micromatch "^3.1.10" readable-stream "^2.0.2" +readdirp@~3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.2.0.tgz#c30c33352b12c96dfb4b895421a49fd5a9593839" + integrity sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ== + dependencies: + picomatch "^2.0.4" + realpath-native@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" @@ -10303,7 +10535,7 @@ redent@^2.0.0: indent-string "^3.0.0" strip-indent "^2.0.0" -regenerate-unicode-properties@^8.0.2: +regenerate-unicode-properties@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== @@ -10321,14 +10553,14 @@ regenerator-runtime@^0.11.0: integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== regenerator-runtime@^0.13.2: - version "0.13.2" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz#32e59c9a6fb9b1a4aff09b4930ca2d4477343447" - integrity sha512-S/TQAZJO+D3m9xeN1WTI8dLKBBiRgXBlTJvbWjCThHWZj9EvHK70Ff50/tYj2J/fvBY6JtFVwRuazHN2E7M9BA== + version "0.13.3" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5" + integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw== regenerator-transform@^0.14.0: - version "0.14.0" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.0.tgz#2ca9aaf7a2c239dd32e4761218425b8c7a86ecaf" - integrity sha512-rtOelq4Cawlbmq9xuMR5gdFmv7ku/sFoB7sRiywx7aq53bc52b4j6zvH7Te1Vt/X2YveDKnCGUbioieU7FEL3w== + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb" + integrity sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ== dependencies: private "^0.1.6" @@ -10340,29 +10572,24 @@ regex-not@^1.0.0, regex-not@^1.0.2: extend-shallow "^3.0.2" safe-regex "^1.1.0" -regexp-tree@^0.1.6: - version "0.1.10" - resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.10.tgz#d837816a039c7af8a8d64d7a7c3cf6a1d93450bc" - integrity sha512-K1qVSbcedffwuIslMwpe6vGlj+ZXRnGkvjAtFHfDZZZuEdA/h0dxljAPu9vhUo6Rrx2U2AwJ+nSQ6hK+lrP5MQ== - regexpp@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== -regexpu-core@^4.5.4: - version "4.5.4" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" - integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ== +regexpu-core@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6" + integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg== dependencies: regenerate "^1.4.0" - regenerate-unicode-properties "^8.0.2" + regenerate-unicode-properties "^8.1.0" regjsgen "^0.5.0" regjsparser "^0.6.0" unicode-match-property-ecmascript "^1.0.4" unicode-match-property-value-ecmascript "^1.1.0" -registry-auth-token@^3.0.1, registry-auth-token@^3.4.0: +registry-auth-token@^3.0.1: version "3.4.0" resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e" integrity sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A== @@ -10370,6 +10597,14 @@ registry-auth-token@^3.0.1, registry-auth-token@^3.4.0: rc "^1.1.6" safe-buffer "^5.0.1" +registry-auth-token@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.0.0.tgz#30e55961eec77379da551ea5c4cf43cbf03522be" + integrity sha512-lpQkHxd9UL6tb3k/aHAVfnVtn+Bcs9ob5InuFLLEDqSqeq+AljB8GZW9xY0x7F+xYwEcjKe07nyoxzEYz6yvkw== + dependencies: + rc "^1.2.8" + safe-buffer "^5.0.1" + registry-url@^3.0.3: version "3.1.0" resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" @@ -10385,9 +10620,9 @@ registry-url@^5.0.0: rc "^1.2.8" regjsgen@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" - integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== + version "0.5.1" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" + integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg== regjsparser@^0.6.0: version "0.6.0" @@ -10434,19 +10669,19 @@ repeating@^2.0.0: dependencies: is-finite "^1.0.0" -request-promise-core@1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346" - integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag== +request-promise-core@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" + integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ== dependencies: - lodash "^4.17.11" + lodash "^4.17.15" request-promise-native@^1.0.5: - version "1.0.7" - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59" - integrity sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w== + version "1.0.8" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36" + integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ== dependencies: - request-promise-core "1.1.2" + request-promise-core "1.1.3" stealthy-require "^1.1.1" tough-cookie "^2.3.3" @@ -10496,7 +10731,7 @@ requires-port@^1.0.0: resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= -resize-observer-polyfill@^1.5.0: +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== @@ -10537,9 +10772,9 @@ resolve@1.1.7, resolve@1.1.x: integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= resolve@1.x, resolve@^1.1.6, resolve@^1.10.0, resolve@^1.3.2: - version "1.11.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e" - integrity sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw== + version "1.13.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.13.1.tgz#be0aa4c06acd53083505abb35f4d66932ab35d16" + integrity sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w== dependencies: path-parse "^1.0.6" @@ -10568,7 +10803,7 @@ retry@^0.10.0: resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" integrity sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q= -rfdc@^1.1.2: +rfdc@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.1.4.tgz#ba72cc1367a0ccd9cf81a870b3b58bd3ad07f8c2" integrity sha512-5C9HXdzK8EAqN7JDif30jqsBzavB7wLpaubisuQIGHWf2gUXSpzy6ArX/+Da8RjFpagWsCn+pIgxTMAmKw9Zug== @@ -10591,6 +10826,7 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: robots-parser@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/robots-parser/-/robots-parser-2.1.1.tgz#41b289cf44a6aa136dc62be0085adca954573ab0" + integrity sha512-6yWEYSdhK3bAEcYY0In3wgSBK70BiQoJArzdjZKCP/35b3gKIYu5Lc0qQqsoxjoLVebVoJiKK4VWGc5+oxvWBQ== rsvp@^4.8.4: version "4.8.5" @@ -10634,9 +10870,9 @@ rx-lite@*, rx-lite@^4.0.8: integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= rxjs@^6.3.3, rxjs@^6.4.0: - version "6.5.2" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7" - integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg== + version "6.5.3" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.3.tgz#510e26317f4db91a7eb1de77d9dd9ba0a4899a3a" + integrity sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA== dependencies: tslib "^1.9.0" @@ -10645,6 +10881,11 @@ safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, s resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== +safe-buffer@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" + integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== + safe-regex@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" @@ -10725,18 +10966,19 @@ semver-compare@^1.0.0: semver-diff@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" + integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= dependencies: semver "^5.0.3" "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0: - version "5.7.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" - integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@^6.0.0, semver@^6.1.0, semver@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.1.tgz#53f53da9b30b2103cd4f15eab3a18ecbcb210c9b" - integrity sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ== +semver@^6.0.0, semver@^6.1.0, semver@^6.2.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@~5.3.0: version "5.3.0" @@ -10763,9 +11005,9 @@ send@0.17.1: statuses "~1.5.0" serialize-javascript@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65" - integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA== + version "1.9.1" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.9.1.tgz#cfc200aef77b600c47da9bb8149c943e798c2fdb" + integrity sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A== serve-static@1.14.1: version "1.14.1" @@ -10782,20 +11024,10 @@ set-blocking@^2.0.0, 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@^0.4.3: - version "0.4.3" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" - integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.1" - to-object-path "^0.3.0" - -set-value@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" - integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== +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" @@ -10820,6 +11052,13 @@ sha.js@^2.4.0, sha.js@^2.4.8: inherits "^2.0.1" safe-buffer "^5.0.1" +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" @@ -10852,9 +11091,9 @@ signal-exit@^3.0.0, signal-exit@^3.0.2: integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= simple-git@^1.85.0: - version "1.116.0" - resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-1.116.0.tgz#ea6e533466f1e0152186e306e004d4eefa6e3e00" - integrity sha512-Pbo3tceqMYy0j3U7jzMKabOWcx5+67GdgQUjpK83XUxGhA+1BX93UPvlWNzbCRoFwd7EJTyDSCC2XCoT4NTLYQ== + version "1.126.0" + resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-1.126.0.tgz#0c345372275139c8433b8277f4b3e155092aa434" + integrity sha512-47mqHxgZnN8XRa9HbpWprzUv3Ooqz9RY/LSZgvA7jCkW8jcwLahMz7LKugY91KZehfG0sCVPtgXiU72hd6b1Bw== dependencies: debug "^4.0.1" @@ -10865,10 +11104,10 @@ simulate-event@~1.4.0: dependencies: xtend "^4.0.1" -sisteransi@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.0.tgz#77d9622ff909080f1c19e5f4a1df0c1b0a27b88c" - integrity sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ== +sisteransi@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.4.tgz#386713f1ef688c7c0304dc4c0632898941cad2e3" + integrity sha512-/ekMoM4NJ59ivGSfKapeG+FWtrmWvA1p6FBZwXrqojw90vJu8lBmrTxCMuBCydKtkaUe2zt4PlxeTKpjwMbyig== slash@^1.0.0: version "1.0.0" @@ -10904,10 +11143,10 @@ slide@^1.1.6: resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc= -smart-buffer@4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.0.2.tgz#5207858c3815cc69110703c6b94e46c15634395d" - integrity sha512-JDhEpTKzXusOqXZ0BUIdH+CjFdO/CR3tLlf5CN34IypI+xMmXW1uB16OOY8z3cICbJlDAVJzNbwBhNO0wt9OAw== +smart-buffer@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.1.0.tgz#91605c25d91652f4661ea69ccf45f1b331ca21ba" + integrity sha512-iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw== snapdragon-node@^2.0.1: version "2.1.1" @@ -10940,9 +11179,9 @@ snapdragon@^0.8.1: use "^3.1.0" socket.io-adapter@~1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz#2a805e8a14d6372124dd9159ad4502f8cb07f06b" - integrity sha1-KoBeihTWNyEk3ZFZrUUC+MsH8Gs= + version "1.1.2" + resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz#ab3f0d6f66b8fc7fca3959ab5991f82221789be9" + integrity sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g== socket.io-client@2.1.1: version "2.1.1" @@ -10994,12 +11233,12 @@ socks-proxy-agent@^4.0.0: socks "~2.3.2" socks@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.3.2.tgz#ade388e9e6d87fdb11649c15746c578922a5883e" - integrity sha512-pCpjxQgOByDHLlNqlnh/mNSAxIUkyBBuwwhTcV+enZGbDaClPvHdvm6uvOwZfFJkam7cGhBNbb4JxiP8UZkRvQ== + version "2.3.3" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.3.3.tgz#01129f0a5d534d2b897712ed8aceab7ee65d78e3" + integrity sha512-o5t52PCNtVdiOvzMry7wU4aOqYWL0PeCXRWBEiJow4/i/wr+wpsJQ9awEu1EonLIqsfGd5qSgDdxEOvCdmBEpA== dependencies: - ip "^1.1.5" - smart-buffer "4.0.2" + ip "1.1.5" + smart-buffer "^4.1.0" sort-keys@^2.0.0: version "2.0.0" @@ -11045,10 +11284,10 @@ source-map-resolve@^0.5.0: source-map-url "^0.4.0" urix "^0.1.0" -source-map-support@^0.5.6, source-map-support@~0.5.10: - version "0.5.12" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599" - integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ== +source-map-support@^0.5.6, source-map-support@~0.5.12: + version "0.5.16" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042" + integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ== dependencies: buffer-from "^1.0.0" source-map "^0.6.0" @@ -11097,13 +11336,14 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.4" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1" - integrity sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA== + version "3.0.5" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" + integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== speedline-core@1.4.2: version "1.4.2" resolved "https://registry.yarnpkg.com/speedline-core/-/speedline-core-1.4.2.tgz#bb061444a218d67b4cd52f63a262386197b90c8a" + integrity sha512-9/5CApkKKl6bS6jJ2D0DQllwz/1xq3cyJCR6DLgAQnkj5djCuq8NbflEdD2TI01p8qzS9qaKjzxM9cHT11ezmg== dependencies: "@types/node" "*" image-ssim "^0.2.0" @@ -11173,6 +11413,7 @@ stable@^0.1.8: stack-trace@0.0.10: version "0.0.10" resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" + integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= stack-utils@^1.0.1: version "1.0.2" @@ -11234,16 +11475,16 @@ stream-shift@^1.0.0: resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= -streamroller@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-1.0.5.tgz#71660c20b06b1a7b204d46085731ad13c10a562d" - integrity sha512-iGVaMcyF5PcUY0cPbW3xFQUXnr9O4RZXNBBjhuLZgrjLO4XCLLGfx4T2sGqygSeylUjwgWRsnNbT9aV0Zb8AYw== +streamroller@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-1.0.6.tgz#8167d8496ed9f19f05ee4b158d9611321b8cacd9" + integrity sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg== dependencies: async "^2.6.2" date-format "^2.0.0" debug "^3.2.6" fs-extra "^7.0.1" - lodash "^4.17.11" + lodash "^4.17.14" strict-uri-encode@^1.0.0: version "1.1.0" @@ -11289,6 +11530,22 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" +string.prototype.trimleft@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634" + integrity sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw== + dependencies: + define-properties "^1.1.3" + function-bind "^1.1.1" + +string.prototype.trimright@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58" + integrity sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg== + dependencies: + define-properties "^1.1.3" + function-bind "^1.1.1" + string_decoder@^1.0.0, string_decoder@^1.1.1, string_decoder@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" @@ -11326,11 +11583,6 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" -strip-ansi@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" - integrity sha1-OeipjQRNFQZgq+SmgIrPcLt7yZE= - strip-bom@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" @@ -11389,6 +11641,13 @@ supports-color@6.0.0: dependencies: has-flag "^3.0.0" +supports-color@6.1.0, supports-color@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + dependencies: + has-flag "^3.0.0" + supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" @@ -11401,20 +11660,13 @@ supports-color@^3.1.0: dependencies: has-flag "^1.0.0" -supports-color@^5.3.0, supports-color@^5.5.0: +supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== dependencies: has-flag "^3.0.0" -supports-color@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" - integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== - dependencies: - has-flag "^3.0.0" - svg-url-loader@~2.3.2: version "2.3.3" resolved "https://registry.yarnpkg.com/svg-url-loader/-/svg-url-loader-2.3.3.tgz#4b111f6047472f815f9c1fd780c6faa413a8efab" @@ -11462,33 +11714,33 @@ symbol-tree@^3.2.2: integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== synchronous-promise@^2.0.6: - version "2.0.9" - resolved "https://registry.yarnpkg.com/synchronous-promise/-/synchronous-promise-2.0.9.tgz#b83db98e9e7ae826bf9c8261fd8ac859126c780a" - integrity sha512-LO95GIW16x69LuND1nuuwM4pjgFGupg7pZ/4lU86AmchPKrhk0o2tpMU2unXRrqo81iAFe1YJ0nAGEVwsrZAgg== + version "2.0.10" + resolved "https://registry.yarnpkg.com/synchronous-promise/-/synchronous-promise-2.0.10.tgz#e64c6fd3afd25f423963353043f4a68ebd397fd8" + integrity sha512-6PC+JRGmNjiG3kJ56ZMNWDPL8hjyghF5cMXIFOKg+NiwwEZZIvxTWd0pinWKyD227odg9ygF8xVhhz7gb8Uq7A== table@^5.2.3: - version "5.4.1" - resolved "https://registry.yarnpkg.com/table/-/table-5.4.1.tgz#0691ae2ebe8259858efb63e550b6d5f9300171e8" - integrity sha512-E6CK1/pZe2N75rGZQotFOdmzWQ1AILtgYbMAbAjvms0S1l5IDB47zG3nCnFGB/w+7nB3vKofbLXCH7HPBo864w== + version "5.4.6" + resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" + integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== dependencies: - ajv "^6.9.1" - lodash "^4.17.11" + ajv "^6.10.2" + lodash "^4.17.14" slice-ansi "^2.1.0" string-width "^3.0.0" -tapable@^1.0.0, tapable@^1.1.0: +tapable@^1.0.0, tapable@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== -tar@^4, tar@^4.4.8: - version "4.4.10" - resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1" - integrity sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA== +tar@^4, tar@^4.4.10, tar@^4.4.12, tar@^4.4.8: + version "4.4.13" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" + integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== dependencies: chownr "^1.1.1" fs-minipass "^1.2.5" - minipass "^2.3.5" + minipass "^2.8.6" minizlib "^1.2.1" mkdirp "^0.5.0" safe-buffer "^5.1.2" @@ -11514,33 +11766,33 @@ temp-write@^3.4.0: term-size@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" + integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= dependencies: execa "^0.7.0" -terser-webpack-plugin@^1.1.0, terser-webpack-plugin@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz#69aa22426299f4b5b3775cbed8cb2c5d419aa1d4" - integrity sha512-W2YWmxPjjkUcOWa4pBEv4OP4er1aeQJlSo2UhtCFQCuRXEHjOFscO8VyWHj9JLlA0RzQb8Y2/Ta78XZvT54uGg== +terser-webpack-plugin@^1.3.0, terser-webpack-plugin@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.1.tgz#61b18e40eaee5be97e771cdbb10ed1280888c2b4" + integrity sha512-ZXmmfiwtCLfz8WKZyYUuuHf3dMYEjg8NrjHMb0JqHVHVOSkzp3cW2/XG1fP3tRhqEqSzMwzzRQGtAPbs4Cncxg== dependencies: - cacache "^11.3.2" - find-cache-dir "^2.0.0" + cacache "^12.0.2" + find-cache-dir "^2.1.0" is-wsl "^1.1.0" - loader-utils "^1.2.3" schema-utils "^1.0.0" serialize-javascript "^1.7.0" source-map "^0.6.1" - terser "^4.0.0" - webpack-sources "^1.3.0" + terser "^4.1.2" + webpack-sources "^1.4.0" worker-farm "^1.7.0" -terser@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.0.0.tgz#ef356f6f359a963e2cc675517f21c1c382877374" - integrity sha512-dOapGTU0hETFl1tCo4t56FN+2jffoKyER9qBGoUFyZ6y7WLoKT0bF+lAYi6B6YsILcGF3q1C2FBh8QcKSCgkgA== +terser@^4.1.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.4.2.tgz#448fffad0245f4c8a277ce89788b458bfd7706e8" + integrity sha512-Uufrsvhj9O1ikwgITGsZ5EZS6qPokUOkCegS7fYOdGTv+OA90vndUbU6PEjr5ePqHfNUbGyMO7xyIZv2MhsALQ== dependencies: - commander "^2.19.0" + commander "^2.20.0" source-map "~0.6.1" - source-map-support "~0.5.10" + source-map-support "~0.5.12" test-exclude@^5.2.3: version "5.2.3" @@ -11557,20 +11809,34 @@ text-encoding@^0.7.0: resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.7.0.tgz#f895e836e45990624086601798ea98e8f36ee643" integrity sha512-oJQ3f1hrOnbRLOcwKz0Liq2IcrvDeZRHXhd9RgLrsT+DjWY/nty1Hi7v3dtkaEYbPYe0mUoOfzRrMwfXXwgPUA== -text-extensions@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-2.0.0.tgz#43eabd1b495482fae4a2bf65e5f56c29f69220f6" - integrity sha512-F91ZqLgvi1E0PdvmxMgp+gcf6q8fMH7mhdwWfzXnl1k+GbpQDmi8l7DzLC5JTASKbwpY3TfxajAUzAXcv2NmsQ== +text-extensions@^1.0.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" + integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY= + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.0" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.0.tgz#e69e38a1babe969b0108207978b9f62b88604839" + integrity sha1-5p44obq+lpsBCCB5eLn2K4hgSDk= + dependencies: + any-promise "^1.0.0" + thread-loader@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/thread-loader/-/thread-loader-2.1.2.tgz#f585dd38e852c7f9cded5d092992108148f5eb30" - integrity sha512-7xpuc9Ifg6WU+QYw/8uUqNdRwMD+N5gjwHKMqETrs96Qn+7BHwECpt2Brzr4HFlf4IAkZsayNhmGdbkBsTJ//w== + version "2.1.3" + resolved "https://registry.yarnpkg.com/thread-loader/-/thread-loader-2.1.3.tgz#cbd2c139fc2b2de6e9d28f62286ab770c1acbdda" + integrity sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg== dependencies: loader-runner "^2.3.1" loader-utils "^1.1.0" @@ -11604,11 +11870,12 @@ through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@~2.3.6: timed-out@4.0.1, timed-out@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" + integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= timers-browserify@^2.0.4: - version "2.0.10" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" - integrity sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg== + version "2.0.11" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f" + integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ== dependencies: setimmediate "^1.0.4" @@ -11686,10 +11953,10 @@ toidentifier@1.0.0: resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== -topojson-client@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/topojson-client/-/topojson-client-3.0.0.tgz#1f99293a77ef42a448d032a81aa982b73f360d2f" - integrity sha1-H5kpOnfvQqRI0DKoGqmCtz82DS8= +topojson-client@^3.0.0, topojson-client@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/topojson-client/-/topojson-client-3.1.0.tgz#22e8b1ed08a2b922feeb4af6f53b6ef09a467b99" + integrity sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw== dependencies: commander "2" @@ -11744,14 +12011,15 @@ tryer@^1.0.1: integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA== ts-jest@^24.0.2: - version "24.0.2" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-24.0.2.tgz#8dde6cece97c31c03e80e474c749753ffd27194d" - integrity sha512-h6ZCZiA1EQgjczxq+uGLXQlNgeg02WWJBbeT8j6nyIBRQdglqbvzDoHahTEIiS6Eor6x8mK6PfZ7brQ9Q6tzHw== + version "24.2.0" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-24.2.0.tgz#7abca28c2b4b0a1fdd715cd667d65d047ea4e768" + integrity sha512-Yc+HLyldlIC9iIK8xEN7tV960Or56N49MDP7hubCZUeI7EbIOTsas6rXCMB4kQjLACJ7eDOF4xWEO5qumpKsag== 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" mkdirp "0.x" resolve "1.x" @@ -11759,9 +12027,9 @@ ts-jest@^24.0.2: yargs-parser "10.x" ts-loader@^6.0.2: - version "6.0.4" - resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-6.0.4.tgz#bc331ad91a887a60632d94c9f79448666f2c4b63" - integrity sha512-p2zJYe7OtwR+49kv4gs7v4dMrfYD1IPpOtqiSPCbe8oR+4zEBtdHwzM7A7M91F+suReqgzZrlClk4LRSSp882g== + version "6.2.1" + resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-6.2.1.tgz#67939d5772e8a8c6bdaf6277ca023a4812da02ef" + integrity sha512-Dd9FekWuABGgjE1g0TlQJ+4dFUfYGbYcs52/HQObE0ZmUNjQlmLAS7xXsSzy23AMaMwipsx5sNHvoEpT2CZq1g== dependencies: chalk "^2.3.0" enhanced-resolve "^4.0.0" @@ -11769,7 +12037,12 @@ ts-loader@^6.0.2: micromatch "^4.0.0" semver "^6.0.0" -tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.2, tslib@~1.9.3: +tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.2, tslib@~1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" + integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== + +tslib@~1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== @@ -11789,22 +12062,22 @@ tslint-plugin-prettier@^2.0.1: tslib "^1.7.1" tslint-react@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/tslint-react/-/tslint-react-4.0.0.tgz#b4bb4c01c32448cb14d23f143a2f5e4989bb961e" - integrity sha512-9fNE0fm9zNDx1+b6hgy8rgDN2WsQLRiIrn3+fbqm0tazBVF6jiaCFAITxmU+WSFWYE03Xhp1joCircXOe1WVAQ== + version "4.1.0" + resolved "https://registry.yarnpkg.com/tslint-react/-/tslint-react-4.1.0.tgz#7153b724a8cfbea52423d0ffa469e8eba3bcc834" + integrity sha512-Y7CbFn09X7Mpg6rc7t/WPbmjx9xPI8p1RsQyiGCLWgDR6sh3+IBSlT+bEkc0PSZcWwClOkqq2wPsID8Vep6szQ== dependencies: tsutils "^3.9.1" tslint@^5.15.0: - version "5.18.0" - resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.18.0.tgz#f61a6ddcf372344ac5e41708095bbf043a147ac6" - integrity sha512-Q3kXkuDEijQ37nXZZLKErssQVnwCV/+23gFEMROi8IlbaBG6tXqLPQJ5Wjcyt/yHPKBC+hD5SzuGaMora+ZS6w== + version "5.20.1" + resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.20.1.tgz#e401e8aeda0152bc44dd07e614034f3f80c67b7d" + integrity sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg== dependencies: "@babel/code-frame" "^7.0.0" builtin-modules "^1.1.1" chalk "^2.3.0" commander "^2.12.1" - diff "^3.2.0" + diff "^4.0.1" glob "^7.1.1" js-yaml "^3.13.1" minimatch "^3.0.4" @@ -11822,9 +12095,9 @@ tsutils@^2.29.0: tslib "^1.8.1" tsutils@^3.9.1: - version "3.14.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.14.0.tgz#bf8d5a7bae5369331fa0f2b0a5a10bd7f7396c77" - integrity sha512-SmzGbB0l+8I0QwsPgjooFRaRvHLBLNYM8SeQ0k6rtNDru5sCGeLJcZdwilNndN+GysuFjF5EIYgN8GfFG6UeUw== + version "3.17.1" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" + integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== dependencies: tslib "^1.8.1" @@ -11857,10 +12130,15 @@ type-detect@^4.0.0, type-detect@^4.0.5: 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.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.4.1.tgz#8bdf77743385d8a4f13ba95f610f5ccd68c728f8" - integrity sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw== +type-fest@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" + integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ== + +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-is@~1.6.17, type-is@~1.6.18: version "1.6.18" @@ -11871,9 +12149,14 @@ type-is@~1.6.17, type-is@~1.6.18: mime-types "~2.1.24" type@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/type/-/type-1.0.1.tgz#084c9a17fcc9151a2cdb1459905c2e45e4bb7d61" - integrity sha512-MAM5dBMJCJNKs9E7JXo4CXRAansRfG0nlJxW7Wf6GZzSOvH31zClSaHdIMWLehe/EGMBkqeC55rrkaOr5Oo7Nw== + version "1.2.0" + resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" + integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== + +type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/type/-/type-2.0.0.tgz#5f16ff6ef2eb44f260494dae271033b29c09a9c3" + integrity sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow== typed-styles@^0.0.7: version "0.0.7" @@ -11896,13 +12179,13 @@ typedoc-default-themes@^0.6.1: underscore "^1.9.1" typedoc@^0.15.2: - version "0.15.2" - resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.15.2.tgz#f0f79abd12e8b9785f96ce205e2dadf282c32cf4" - integrity sha512-K2nFEtyDQTVdXOzYtECw3TwuT3lM91Zc0dzGSLuor5R8qzZbwqBoCw7xYGVBow6+mEZAvKGznLFsl7FzG+wAgQ== + version "0.15.3" + resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.15.3.tgz#8f5a038cfc1160f70cbc57e37908653483dca689" + integrity sha512-RGX+dgnm9fyg5KHj81/ZhMiee0FfvJnjBXedhedhMWlrtM4YRv3pn8sYCWRt5TMi1Jli3/JG224pbFo3/3uaGw== dependencies: "@types/minimatch" "3.0.3" fs-extra "^8.1.0" - handlebars "^4.5.1" + handlebars "^4.5.3" highlight.js "^9.16.2" lodash "^4.17.15" marked "^0.7.0" @@ -11918,12 +12201,12 @@ typescript@3.7.x, typescript@~3.7.2: integrity sha512-ml7V7JfiN2Xwvcer+XAf2csGO1bPBdRbFCkYBczNZggrBZ9c7G3riSUeJmqEU5uOtXNPMhE3n+R4FA/3YOAWOQ== typestyle@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/typestyle/-/typestyle-2.0.2.tgz#e22f24f5d7e8506aa36b1fd3606824ac16291104" - integrity sha512-2nKRvMFE12MYudRu0UxYryZw3vbSOnZyuZiGTblYKIEi/U+VaH/hThv69AWCu89V7qc9uqrcQme1GCXmObomuQ== + version "2.0.4" + resolved "https://registry.yarnpkg.com/typestyle/-/typestyle-2.0.4.tgz#b8da5feaf8a4f9d1f69066f3cc4659098bd08457" + integrity sha512-+57eGqcEjiAc51hB/zXnZFoVuzwuxb9WbPpb1VT2zPJPIo88wGXod7dHa0IJ1Ue+sncHj2WZMZEPJRAqwVraoA== dependencies: csstype "^2.4.0" - free-style "2.5.1" + free-style "2.6.1" ua-parser-js@^0.7.18: version "0.7.20" @@ -11958,11 +12241,6 @@ underscore@>=1.8.3, underscore@^1.9.1: resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.9.1.tgz#06dce34a0e68a7babc29b365b8e74b8925203961" integrity sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg== -underscore@~1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz#8b38b10cacdef63337b8b24e4ff86d45aea529a8" - integrity sha1-izixDKze9jM3uLJOT/htRa6lKag= - unicode-canonical-property-names-ecmascript@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" @@ -11987,14 +12265,14 @@ unicode-property-aliases-ecmascript@^1.0.4: integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== union-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" - integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= + 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== dependencies: arr-union "^3.1.0" get-value "^2.0.6" is-extendable "^0.1.1" - set-value "^0.4.3" + set-value "^2.0.1" uniq@^1.0.1: version "1.0.1" @@ -12018,15 +12296,16 @@ unique-slug@^2.0.0: unique-string@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" + integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= dependencies: crypto-random-string "^1.0.0" -universal-user-agent@^2.0.0, universal-user-agent@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-2.1.0.tgz#5abfbcc036a1ba490cb941f8fd68c46d3669e8e4" - integrity sha512-8itiX7G05Tu3mGDTdNY2fB4KJ8MgZLS54RdG6PkkfwMAavrXu1mV/lls/GABx9O3Rw4PnTtasxrvbMQoBYY92Q== +universal-user-agent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-4.0.0.tgz#27da2ec87e32769619f68a14996465ea1cb9df16" + integrity sha512-eM8knLpev67iBDizr/YtqkJsF3GK8gzDc6st/WKzrTuPtcsOKW/0IdL4cnMBsU69pOx0otavLWBDGTwg+dB0aA== dependencies: - os-name "^3.0.0" + os-name "^3.1.0" universalify@^0.1.0: version "0.1.2" @@ -12054,11 +12333,12 @@ unset-value@^1.0.0: unzip-response@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" + integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= upath@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068" - integrity sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q== + version "1.2.0" + resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" + integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== update-notifier@^2.5.0: version "2.5.0" @@ -12110,6 +12390,7 @@ url-loader@~1.1.2: url-parse-lax@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" + integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= dependencies: prepend-http "^1.0.1" @@ -12128,11 +12409,6 @@ url-parse@~1.4.3: querystringify "^2.1.1" requires-port "^1.0.0" -url-template@^2.0.8: - version "2.0.8" - resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" - integrity sha1-/FZaPMy/93MMd19WQflVV5FDnyE= - url@^0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" @@ -12159,6 +12435,13 @@ util-deprecate@^1.0.1, util-deprecate@~1.0.1: resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= +util-promisify@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/util-promisify/-/util-promisify-2.1.0.tgz#3c2236476c4d32c5ff3c47002add7c13b9a82a53" + integrity sha1-PCI2R2xNMsX/PEcAKt18E7moKlM= + dependencies: + object.getownpropertydescriptors "^2.0.3" + util.promisify@1.0.0, util.promisify@^1.0.0, util.promisify@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" @@ -12196,7 +12479,7 @@ uuid@3.3.2, uuid@^3.0.1, uuid@^3.1.0, uuid@^3.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== -v8-compile-cache@^2.0.2: +v8-compile-cache@2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== @@ -12221,11 +12504,20 @@ vary@~1.1.2: resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= -vega-canvas@^1.0.1, vega-canvas@^1.1.0, vega-canvas@^1.2.0, vega-canvas@^1.2.1: +vega-canvas@^1.0.1, vega-canvas@^1.1.0, vega-canvas@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/vega-canvas/-/vega-canvas-1.2.1.tgz#ee0586e2a1f096f6a5d1710df61ef501562c2bd4" integrity sha512-k/S3EPeJ37D7fYDhv4sEg7fNWVpLheQY7flfLyAmJU7aSwCMgw8cZJi0CKHchJeculssfH+41NCqvRB1QtaJnw== +vega-crossfilter@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/vega-crossfilter/-/vega-crossfilter-4.0.1.tgz#9fab0dc5445e846d732c83ac2b5a72225bc6fdf1" + integrity sha512-wLNS4JzKaOLj8EAzI/v8XBJjUWMRWYSu6EeQF4o9Opq/78u87Ol9Lc5I27UHsww5dNNH/tHubAV4QPIXnGOp5Q== + dependencies: + d3-array "^2.0.3" + vega-dataflow "^5.1.0" + vega-util "^1.8.0" + vega-crossfilter@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/vega-crossfilter/-/vega-crossfilter-3.0.1.tgz#8b4394fb5e354e5c6f79ca9f491531a292c04209" @@ -12235,14 +12527,13 @@ vega-crossfilter@^3.0.1: vega-dataflow "^4.1.0" vega-util "^1.7.0" -vega-crossfilter@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/vega-crossfilter/-/vega-crossfilter-4.0.1.tgz#9fab0dc5445e846d732c83ac2b5a72225bc6fdf1" - integrity sha512-wLNS4JzKaOLj8EAzI/v8XBJjUWMRWYSu6EeQF4o9Opq/78u87Ol9Lc5I27UHsww5dNNH/tHubAV4QPIXnGOp5Q== +vega-dataflow@5.4.1, vega-dataflow@^5.1.0, vega-dataflow@^5.1.1, vega-dataflow@^5.4.0, vega-dataflow@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/vega-dataflow/-/vega-dataflow-5.4.1.tgz#8ed5593bf674577833510e4e659d817132f05aaf" + integrity sha512-NZASrIGel2ZD+HiJsozMPO7qNB3INLFWQez6KI+gPpKQIhsz7jWzG/TBK57A8NOLJYPc6VBLiygCmdJbr5E+sA== dependencies: - d3-array "^2.0.3" - vega-dataflow "^5.1.0" - vega-util "^1.8.0" + vega-loader "^4.0.0" + vega-util "^1.11.0" vega-dataflow@^4.0.0, vega-dataflow@^4.0.4, vega-dataflow@^4.1.0: version "4.1.0" @@ -12252,25 +12543,30 @@ vega-dataflow@^4.0.0, vega-dataflow@^4.0.4, vega-dataflow@^4.1.0: vega-loader "^3.1.0" vega-util "^1.7.0" -vega-dataflow@^5.1.0, vega-dataflow@^5.1.1, vega-dataflow@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/vega-dataflow/-/vega-dataflow-5.2.1.tgz#82aa6a2aca5c61a6924b4561b6e3ab51bd473f8f" - integrity sha512-Yer0BlKVemxrlPwDF1p1z/dcMQZdzJNPAoVmp58GQsp4EyS4zW6yFOnMrLAxvU2SU6hywNbtL+7PBDVzzffgNw== - dependencies: - vega-loader "^4.0.0" - vega-util "^1.10.0" - vega-embed@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/vega-embed/-/vega-embed-4.2.0.tgz#59e8478faa6e1e33d0eb601a5b98be9b79d4c4ad" - integrity sha512-+WaCaoESZBnF80OiA3UUTO/2qlruj5iTyK1mXYIqdfygEldFLQSZS1DSbLwy0m6BlTZz7mkEWMIe6cX4/P3ufw== + version "4.2.5" + resolved "https://registry.yarnpkg.com/vega-embed/-/vega-embed-4.2.5.tgz#2b4c46f11c392f1478a3a3c0ffc4378b67644e78" + integrity sha512-3iUv5oU5y/sa7jC+shw79hPmHMpWMhMTGSovtl3+O98hLq7LQgordWKgoxKcqwhSIHMIgj+cInTNPWM4kru7Ug== dependencies: d3-selection "^1.4.0" json-stringify-pretty-compact "^2.0.0" - semver "^6.0.0" + semver "^6.3.0" vega-schema-url-parser "^1.1.0" - vega-themes "^2.3.0" - vega-tooltip "^0.17.0" + vega-themes "^2.3.2" + vega-tooltip "^0.18.1" + +vega-encode@4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/vega-encode/-/vega-encode-4.5.0.tgz#b23210a694ea39d3eda5c594bcc20d3e176b3ee5" + integrity sha512-oFwsYOvqwVokyY7sVCSvJr2aqJQpKQ5rbpjia/9lRMgluZUFkfLidZ1foQ++/UHISjvC/mWVNAGq3hsTV06xCQ== + dependencies: + d3-array "^2.3.3" + d3-format "^1.4.1" + d3-interpolate "^1.3.2" + vega-dataflow "^5.4.1" + vega-scale "^5.0.0" + vega-time "^1.0.0" + vega-util "^1.12.0" vega-encode@^3.2.2: version "3.2.2" @@ -12284,30 +12580,26 @@ vega-encode@^3.2.2: vega-scale "^2.5.0" vega-util "^1.7.0" -vega-encode@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/vega-encode/-/vega-encode-4.3.0.tgz#cf719c052e6dc63ee260941bdb7c4c1ee71cd0fb" - integrity sha512-Ha8NsjAL6ZOhYTxGLXtwGQE+SdtImMXU+IX/zJswTGOJspXgeLw/HTRFKlsIxuI+jRv+paDEIvhGTedROnLQ+Q== - dependencies: - d3-array "^2.0.3" - d3-format "^1.3.2" - d3-interpolate "^1.3.2" - d3-time-format "^2.1.3" - vega-dataflow "^5.1.1" - vega-scale "^4.1.1" - vega-util "^1.8.0" +vega-event-selector@2.0.1, vega-event-selector@^2.0.0, vega-event-selector@^2.0.1, vega-event-selector@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/vega-event-selector/-/vega-event-selector-2.0.1.tgz#8f8680872f5e80148928ea67aa8c7fb238e8a046" + integrity sha512-FGU1PefYhW9An6zVs6TE5f/XGYsIispxFErG/p9KThxL22IC90WVZzMQXKN9M8OcARq5OyWjHg3qa9Qp/Z6OJw== -vega-event-selector@^2.0.0, vega-event-selector@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/vega-event-selector/-/vega-event-selector-2.0.0.tgz#6af8dc7345217017ceed74e9155b8d33bad05d42" - integrity sha512-EZeStM/7LNfJiRuop0lvhOR52Q1l9i/EIYUnm/XddhjR+UqhPkeCmZcffMTr41z3aGm/zciVLlKanUWNT+jQ1A== +vega-expression@2.6.2, vega-expression@^2.4.0, vega-expression@^2.6.1, vega-expression@^2.6.2, vega-expression@~2.6.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/vega-expression/-/vega-expression-2.6.2.tgz#cb3025310f9007fcd9910311ed66fa8f19a2c211" + integrity sha512-vh8GVkAL/KtsgcdrdKdEnysZn/InIuRrkF7U+CG1eAmupMucPY/Rpu0nCdYb4CLC/xNRHx/NMFidLztQUjZJQg== + dependencies: + vega-util "^1.11.0" -vega-expression@^2.4.0, vega-expression@^2.5.0, vega-expression@^2.6.0, vega-expression@~2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/vega-expression/-/vega-expression-2.6.0.tgz#9955887b53b05da8e1d101c41a7ddce414edfb6d" - integrity sha512-c2FFrIfKtlTtLCR3BnZDm6O2ey7u+5YRukLnNobRe+hoiqeH86C2+FkjXotE63cYGj39R5OS+SK+VBSDz3bmVw== +vega-force@4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/vega-force/-/vega-force-4.0.3.tgz#33e0b03c9af60146f821007d9e7a7617fe9e8ac6" + integrity sha512-4stItN4jD9H1CENaCz4jXRNS1Bi9cozMOUjX2824FeJENi2RZSiAZAaGbscgerZQ/jbNcOHD8PHpC2pWldEvGA== dependencies: - vega-util "^1.8.0" + d3-force "^2.0.1" + vega-dataflow "^5.4.0" + vega-util "^1.11.0" vega-force@^3.0.0: version "3.0.0" @@ -12318,32 +12610,38 @@ vega-force@^3.0.0: vega-dataflow "^4.0.0" vega-util "^1.7.0" -vega-force@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/vega-force/-/vega-force-4.0.1.tgz#8b4f25701db132b75c2388a62665b1dc761181c9" - integrity sha512-b+gOZCon0Odg7RQg5q9NHFHPrB9/pLiZrNqlEaFHXXXmqlMBCz0BjrFxaP7FkXwIxG2Z4bef70Ly6aLyzm/m3A== - dependencies: - d3-force "^2.0.0" - vega-dataflow "^5.1.0" - vega-util "^1.8.0" - -vega-functions@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/vega-functions/-/vega-functions-5.3.0.tgz#b80b61e6fe6e6a5d07be42dd0dc966cc14039420" - integrity sha512-zutwlCVU9+HZgUnUfwzOuWksdZFpSM4gPijeSrNDM51KnE7LZivcRCgOjQA9vN0lV0GPhoF/7mcBPIrS2YqENw== +vega-functions@5.5.0, vega-functions@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/vega-functions/-/vega-functions-5.5.0.tgz#79b65566dc74f8edaad1015a76bb478c0c522255" + integrity sha512-kWNrwWr8Gphm3uZn58OaNT0eUdkZvOUhVUK1ec0NjfZofeVI2V6DzFrQNRvTlvUz269l7G88v1cdsQeXOJcZmg== + dependencies: + d3-array "^2.3.3" + d3-color "^1.4.0" + d3-format "^1.4.1" + d3-geo "^1.11.6" + d3-time-format "^2.2.1" + vega-dataflow "^5.4.1" + vega-expression "^2.6.2" + vega-scale "^5.0.0" + vega-scenegraph "^4.4.0" + vega-selections "^5.1.0" + vega-statistics "^1.6.2" + vega-time "^1.0.0" + vega-util "^1.12.0" + +vega-geo@4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/vega-geo/-/vega-geo-4.2.0.tgz#eba32db6c21a2156c92694b08571589c20509792" + integrity sha512-umhG1645fB1iRsKAP/ZsS0b+gcW/i8DzRUihWJ83VHnlUS+Py/oocSOtx4QqfRW8xVGy/cGzflj52NhLsVW+HQ== dependencies: - d3-array "^2.0.3" - d3-color "^1.2.3" - d3-format "^1.3.2" - d3-geo "^1.11.3" - d3-time-format "^2.1.3" - vega-dataflow "^5.2.1" - vega-expression "^2.6.0" - vega-scale "^4.0.0" - vega-scenegraph "^4.0.0" - vega-selections "^5.0.0" - vega-statistics "^1.3.0" - vega-util "^1.9.0" + d3-array "^2.3.3" + d3-color "^1.4.0" + d3-geo "^1.11.7" + vega-canvas "^1.2.1" + vega-dataflow "^5.1.1" + vega-projection "^1.3.0" + vega-statistics "^1.6.1" + vega-util "^1.11.2" vega-geo@^3.1.1: version "3.1.1" @@ -12357,17 +12655,14 @@ vega-geo@^3.1.1: vega-projection "^1.2.0" vega-util "^1.7.0" -vega-geo@^4.0.3: +vega-hierarchy@4.0.3: version "4.0.3" - resolved "https://registry.yarnpkg.com/vega-geo/-/vega-geo-4.0.3.tgz#5fe940a70c8e64e456ef453acd27ea368900aa63" - integrity sha512-ZlOJ607JF/qp/Zx2nSCvJXpfbmOsf+BN1+JzQneUan1yhdAQvbtcJ8mInTQo8QRElRHVw8kBot15SUYf8gQHAA== + resolved "https://registry.yarnpkg.com/vega-hierarchy/-/vega-hierarchy-4.0.3.tgz#0d36bc29ad6f369fa844e3e2ce5faec983f8b047" + integrity sha512-9wNe+KyKqZW1S4++jCC38HuAhZbqNhfY7gOvwiMLjsp65tMtRETrtvYfHkULClm3UokUIX54etAXREAGW7znbw== dependencies: - d3-array "^2.0.3" - d3-contour "^1.3.2" - d3-geo "^1.11.3" - vega-dataflow "^5.1.1" - vega-projection "^1.2.1" - vega-util "^1.8.0" + d3-hierarchy "^1.1.8" + vega-dataflow "^5.4.0" + vega-util "^1.11.0" vega-hierarchy@^3.1.0: version "3.1.0" @@ -12379,15 +12674,6 @@ vega-hierarchy@^3.1.0: vega-dataflow "^4.0.4" vega-util "^1.7.0" -vega-hierarchy@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/vega-hierarchy/-/vega-hierarchy-4.0.1.tgz#7abcd4725a77b573bc0f2e3700ce1f55f3e0fb99" - integrity sha512-LBkgnltUIkQJZ4s9P6geQe+zVRtdDTZ6dDr0RoR+NVMPIxuyCrGgWiuGLEPq0HDMdR8Oc+UAfl3x1nsHe8Zdkw== - dependencies: - d3-hierarchy "^1.1.8" - vega-dataflow "^5.1.0" - vega-util "^1.8.0" - vega-lib@4.4.0: version "4.4.0" resolved "https://registry.yarnpkg.com/vega-lib/-/vega-lib-4.4.0.tgz#37d99514c5496a0ce001033bdacb504361ef6880" @@ -12430,9 +12716,9 @@ vega-lite@^2.7.0: yargs "^11.0.0" vega-lite@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/vega-lite/-/vega-lite-3.3.0.tgz#26db53d37edd0b22ab466e09b4d21ee2ae63aaf4" - integrity sha512-LEfyuJK9EhnbLcs8FuSXbVl/Ks5mm/jjRY+s4zogxSv89Z7yiCNl/HTtGklJ7q0vHT8ffEsrnonIgEQxVzZegA== + version "3.4.0" + resolved "https://registry.yarnpkg.com/vega-lite/-/vega-lite-3.4.0.tgz#a54ed1fe75551415f2c01bc94be5b0d7b998d6ed" + integrity sha512-RJg9uBNh5g0hA8xTzAcALUfNx0cEq7E7xx+vxPEGSMgI8z+A5KlE9u4jUx6nKu7Mjg1qZO8WOyWCmBS1kdFWPg== dependencies: "@types/clone" "~0.1.30" "@types/fast-json-stable-stringify" "^2.0.0" @@ -12440,12 +12726,23 @@ vega-lite@^3.3.0: fast-deep-equal "~2.0.1" fast-json-stable-stringify "~2.0.0" json-stringify-pretty-compact "~2.0.0" - tslib "~1.9.3" + tslib "~1.10.0" vega-event-selector "~2.0.0" vega-expression "~2.6.0" - vega-typings "0.7.1" + vega-typings "0.7.2" vega-util "~1.10.0" - yargs "~13.2.4" + yargs "~13.3.0" + +vega-loader@4.1.3, vega-loader@^4.0.0, vega-loader@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/vega-loader/-/vega-loader-4.1.3.tgz#8b80aa231406295bdc78725186ef863af05b9e6f" + integrity sha512-50aetjuct4WqU7LctwnZqF/NCyya9aZ1HDQZ9unFi++62vOQgRfbXLNL/dZavqwnWX3S9i0ltCznLyFMG4ck8g== + dependencies: + d3-dsv "^1.1.1" + d3-time-format "^2.2.1" + node-fetch "^2.6.0" + topojson-client "^3.0.1" + vega-util "^1.11.0" vega-loader@^3.0.1, vega-loader@^3.1.0: version "3.1.0" @@ -12458,17 +12755,6 @@ vega-loader@^3.0.1, vega-loader@^3.1.0: topojson-client "^3.0.0" vega-util "^1.7.0" -vega-loader@^4.0.0, vega-loader@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/vega-loader/-/vega-loader-4.1.0.tgz#27d6f8256aa0dfc991721083e0cc60d7fe866eef" - integrity sha512-YpscMiGGvhnEp811zM8y4TH39VAhWVU1gOUCeovheMLDHzMK31uydYqfyGHPVjWTbfFDmLzcMceJ6hsUMiZmNA== - dependencies: - d3-dsv "^1.1.1" - d3-time-format "^2.1.3" - node-fetch "^2.5.0" - topojson-client "^3.0.0" - vega-util "^1.8.0" - vega-parser@3.9.0, vega-parser@^3.9.0: version "3.9.0" resolved "https://registry.yarnpkg.com/vega-parser/-/vega-parser-3.9.0.tgz#a7bbe380c5ae70ddd501163302a948f25aadd686" @@ -12487,34 +12773,42 @@ vega-parser@3.9.0, vega-parser@^3.9.0: vega-statistics "^1.2.3" vega-util "^1.7.0" -vega-parser@^5.7.0: - version "5.7.0" - resolved "https://registry.yarnpkg.com/vega-parser/-/vega-parser-5.7.0.tgz#905389ce2f9a1400860f4f948b0a1bff66a501b9" - integrity sha512-CIfyLkTEnWm5J3MZMovKhyMlX6LWkXF3kJQ7ENkGWtdaZ/c+2OBjtMFhwPsRW28Cci9VO5g+yboRfmxLV2rd6A== +vega-parser@5.11.0: + version "5.11.0" + resolved "https://registry.yarnpkg.com/vega-parser/-/vega-parser-5.11.0.tgz#35a43dc5a1aa6a12094d0f9ab6016d7f63b06be0" + integrity sha512-5JJTHtA7DkH8aMQQCiveAaFp3qwSApGfj3BKV1dxc/i3/bUB0xqaEeXju2fcBIo9UlPrpX+dj+DAz3Qb4kMfog== dependencies: - vega-dataflow "^5.2.1" - vega-event-selector "^2.0.0" - vega-expression "^2.6.0" - vega-functions "^5.3.0" - vega-scale "^4.1.1" - vega-util "^1.10.0" + vega-dataflow "^5.4.1" + vega-event-selector "^2.0.1" + vega-expression "^2.6.2" + vega-functions "^5.5.0" + vega-scale "^5.0.0" + vega-util "^1.12.0" -vega-projection@^1.2.0, vega-projection@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/vega-projection/-/vega-projection-1.2.1.tgz#f3425238fadab0b875f2ce92e5bba9dfc983f367" - integrity sha512-7ouWSDdBV8kBQFA26RHUtp39DDO7g3NcEJlhhBywvCQ0nEtqZinERW3bIOxVxZ5H1OKkmhBrxQUPHok2AC06aA== +vega-projection@1.3.0, vega-projection@^1.2.0, vega-projection@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/vega-projection/-/vega-projection-1.3.0.tgz#4f8292fae8e64c733010068ae26bfcea07ed9ddd" + integrity sha512-BFOc/XSVVW96WIAAyiUcppCeegniibiKGX0OLbGpQ5WIbeDHsbCXqnkeBpD5wsjvPXaiQRHTZ0PZ8VvCoCQV+g== dependencies: - d3-geo "^1.11.3" + d3-geo "^1.11.6" -vega-regression@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/vega-regression/-/vega-regression-1.0.0.tgz#4c029862edb192be8c0bbd5d19267271877524aa" - integrity sha512-jNK3aDfM4cHImNvcR5jZHkIpWNr0/HUpxq71xhtjQ98qgmGBoSeUptuRXC4emJd9pRGuyj3vwrkUP4NcbIIIQw== +vega-regression@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/vega-regression/-/vega-regression-1.0.2.tgz#e6e822eb8173619f8e0d0ac70e24d3db596a4140" + integrity sha512-wWGurNFzkF0kxeM4bT3bZXplJYzyvuPDS2jWPx7r08l5VHcf7qc4xBetpCnNtrdG2Pg3hXGZrUWqA3/ufrfUdA== dependencies: - d3-array "^2.0.3" - vega-dataflow "^5.2.1" - vega-statistics "^1.4.0" - vega-util "^1.10.0" + d3-array "^2.3.3" + vega-dataflow "^5.4.1" + vega-statistics "^1.6.2" + vega-util "^1.12.0" + +vega-runtime@5.0.2, vega-runtime@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/vega-runtime/-/vega-runtime-5.0.2.tgz#4d7f327e05b2d4addc8b7472d49eb54f1118ff6c" + integrity sha512-Cuv+RY6kprH+vtNERg6xP4dgcdYGD2ZnxPxJNEtGi7dmtQQTBa1s7jQ0VDXTolsO6lKJ3B7np2GzKJYwevgj1A== + dependencies: + vega-dataflow "^5.1.1" + vega-util "^1.11.0" vega-runtime@^3.2.0: version "3.2.0" @@ -12524,13 +12818,15 @@ vega-runtime@^3.2.0: vega-dataflow "^4.1.0" vega-util "^1.7.0" -vega-runtime@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/vega-runtime/-/vega-runtime-5.0.1.tgz#27660ab48fc94e41790a9545b869adae197ffe5c" - integrity sha512-Aopn4CSMMKOO0pGrvtFShSiW5OJ6I7caumx3wWARAn8E6WISZTp4ORorTMwGOav4GQcg+aG/FREORHjkKCpyFA== +vega-scale@5.0.0, vega-scale@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/vega-scale/-/vega-scale-5.0.0.tgz#45aeead9266f0819e98d5f66bf0972e15aee55b5" + integrity sha512-HlCDdWPK1U769JTIkrlad3W/AVrZP/9dmeBBqG13djgv5l2RLUdUgDQ8EIrkPt7lOMMNlKKp4tJn0U8UlYfpfg== dependencies: - vega-dataflow "^5.1.0" - vega-util "^1.8.0" + d3-array "^2.3.3" + d3-interpolate "^1.3.2" + d3-scale "^3.2.0" + vega-util "^1.12.0" vega-scale@^2.1.1, vega-scale@^2.5.0, vega-scale@^2.5.1: version "2.5.1" @@ -12544,16 +12840,16 @@ vega-scale@^2.1.1, vega-scale@^2.5.0, vega-scale@^2.5.1: d3-time "^1.0.10" vega-util "^1.7.0" -vega-scale@^4.0.0, vega-scale@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/vega-scale/-/vega-scale-4.1.1.tgz#32c93a1d4ec430c415d70ef6ce2af01c7de85384" - integrity sha512-mFGsSUuDrGT9MYRyWinwqla9u06w3/DAEJQrBqFFaL6g7BSggW/y2SiA+RyDdGQf2gU7VfunkaCK9Jt7I768rw== +vega-scenegraph@4.4.1, vega-scenegraph@^4.4.0: + version "4.4.1" + resolved "https://registry.yarnpkg.com/vega-scenegraph/-/vega-scenegraph-4.4.1.tgz#4838d205137ded0c032b54c181b42f1cae69ade8" + integrity sha512-Leg5cuRVecU9Gz0LR3P92EXttFnFtWfGMnWBUHQpFMfh0o6rI9eLUZGzM3/3EmGdGJFbxyAVkJoTwzFPmUbN7Q== dependencies: - d3-array "^2.0.3" - d3-interpolate "^1.3.2" - d3-scale "^3.0.0" - d3-time "^1.0.11" - vega-util "^1.10.0" + d3-path "^1.0.9" + d3-shape "^1.3.7" + vega-canvas "^1.2.1" + vega-loader "^4.1.3" + vega-util "^1.12.0" vega-scenegraph@^3.2.3: version "3.2.3" @@ -12566,49 +12862,59 @@ vega-scenegraph@^3.2.3: vega-loader "^3.0.1" vega-util "^1.7.0" -vega-scenegraph@^4.0.0, vega-scenegraph@^4.1.0, vega-scenegraph@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/vega-scenegraph/-/vega-scenegraph-4.2.0.tgz#b143fcce8a2acc40adcba953c2cf0706c701f75d" - integrity sha512-q1T6PWM9gKjP3/kWy3VSuXiHV0tUz1oMKSwIWl2u36ZscEpL6EzLTHSOWbKx3gyqJNoYr1dAKNdj2nxj10uWWQ== - dependencies: - d3-path "^1.0.7" - d3-shape "^1.3.5" - vega-canvas "^1.2.1" - vega-loader "^4.0.0" - vega-util "^1.8.0" - vega-schema-url-parser@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/vega-schema-url-parser/-/vega-schema-url-parser-1.1.0.tgz#39168ec04e5468ce278a06c16ec0d126035a85b5" integrity sha512-Tc85J2ofMZZOsxiqDM9sbvfsa+Vdo3GwNLjEEsPOsCDeYqsUHKAlc1IpbbhPLZ6jusyM9Lk0e1izF64GGklFDg== -vega-selections@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/vega-selections/-/vega-selections-5.0.0.tgz#26c915103c1359b61dfcff6743e16087d6985c99" - integrity sha512-x5QVF6sBLmvpEWUUIzUqxvvQZTdaj/SzIUtO4SGhvKylBpAWpb0Qyt/GKZ6FZc8FVcH55CQj5uvpre828tjO2Q== +vega-selections@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/vega-selections/-/vega-selections-5.1.0.tgz#5cbfe4d50e404129e5613bfa6470a1cb60cf6015" + integrity sha512-Gm+16RaCMkWbimqKh9kuIGMK91vutJsTbIDKBXxmq0c3pTvf+Djy6KfBoFsipEJ9wkwhXHSqpLqS1tExV93E9g== dependencies: - vega-expression "^2.5.0" - vega-util "^1.8.0" + vega-expression "^2.6.1" + vega-util "^1.11.0" -vega-statistics@^1.2.1, vega-statistics@^1.2.3, vega-statistics@^1.2.5, vega-statistics@^1.3.0, vega-statistics@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/vega-statistics/-/vega-statistics-1.4.0.tgz#e96b4d3c87f0b72ad88ef62ed4c6f4a610c62f92" - integrity sha512-FdkM8fGJf1zFgpmAD3wE4eWrGgDphE0uZze20Lv5x3s2pAamtYhQV3m36Hd7R+5UFFljiAkspNrGjG9HlFPNVQ== +vega-statistics@1.7.0, vega-statistics@^1.2.1, vega-statistics@^1.2.3, vega-statistics@^1.6.1, vega-statistics@^1.6.2: + version "1.7.0" + resolved "https://registry.yarnpkg.com/vega-statistics/-/vega-statistics-1.7.0.tgz#b5183e83b56bd2a45b51fb23a89cc7cee00cf6ac" + integrity sha512-rsgVXnd8247KYYe5lUBS3mLD0C8hCgKoFOlD4Iolv1eKedZq0FjC+xan9ejQPVV7BlLsuuoYUNuaUOkQXHudcQ== dependencies: - d3-array "^2.0.3" + d3-array "^2.3.3" -vega-themes@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/vega-themes/-/vega-themes-2.3.0.tgz#d0a5a3f16af4baeae3e4f43a0b65d7c5479805b1" - integrity sha512-C33RC/oB7NAMgAMdfiKy3Akwbn2uaTJSpmS3sRdiThbQxdhyh+iwc+horG4DWK7zYwJa8tITGbXknYoJXPkdIA== +vega-themes@^2.3.2: + version "2.5.0" + resolved "https://registry.yarnpkg.com/vega-themes/-/vega-themes-2.5.0.tgz#464d0715a54c48591cd6340c28b0c4c9d39b1571" + integrity sha512-mkyYhcRhmMBWLfvCBPTVx0S/OnxeIfVY/TmFfYP5sPdW8X1kMyHtLI34bMhzosPrkhNyHsC8FNHJyU/dOQnX4A== + +vega-time@1.0.0, vega-time@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/vega-time/-/vega-time-1.0.0.tgz#5bc61ff311260cd212ccc8cbd73049bcd29b1440" + integrity sha512-r0yOFr/VklJwD3ew1+fEcB7E0LBCLChYlwh0KoO6cTIWMdlC4KhIIUN3/FuBfUZ4qx4V/xp71xH2YYYZTH6izg== + dependencies: + d3-array "^2.3.3" + d3-time "^1.1.0" + d3-time-format "^2.2.1" + vega-util "^1.12.0" -vega-tooltip@^0.17.0: - version "0.17.0" - resolved "https://registry.yarnpkg.com/vega-tooltip/-/vega-tooltip-0.17.0.tgz#16bb5b57fb727823bb15f4ca4e350622471db2b9" - integrity sha512-/Ha3ho2xZ8N22dCfGg76gpaqyXqwrJBO3X+3H7so73xjIFW0iwHrZeMN0O6zxt5wefdp2+0I+91V4mWjWcP4ng== +vega-tooltip@^0.18.1: + version "0.18.1" + resolved "https://registry.yarnpkg.com/vega-tooltip/-/vega-tooltip-0.18.1.tgz#2599b99c8faec8eaae13c55f540e3cbdf8e19432" + integrity sha512-g/i69QLTVhGeHNT8k646Qr8SFss9kbnt6XmU9ujjqgaW5B/p1FPUrMzFh/88rMF704EHYyBH7Aj3t0ds1cCHbQ== dependencies: vega-util "^1.10.0" +vega-transforms@4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/vega-transforms/-/vega-transforms-4.5.0.tgz#53d0b453f36c9848e0309ad4db8c30a3ff88bc73" + integrity sha512-ajgXTXYLMFZAduQL3rFsBtZcBsCHsGbYy5xJDyFATpNO31e4LkAey4b0D20dPoWwSLaSd+nps8m7HOAqm13rqg== + dependencies: + d3-array "^2.3.3" + vega-dataflow "^5.4.1" + vega-statistics "^1.6.2" + vega-time "^1.0.0" + vega-util "^1.12.0" + vega-transforms@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/vega-transforms/-/vega-transforms-2.3.1.tgz#a31a1ff8086c6909384ddfcc973bd58d53d801ae" @@ -12619,20 +12925,17 @@ vega-transforms@^2.3.1: vega-statistics "^1.2.3" vega-util "^1.7.0" -vega-transforms@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/vega-transforms/-/vega-transforms-4.1.0.tgz#6d06fd51441ac0985ac893edc5a74f48ab969f7c" - integrity sha512-U9rWIZifFbn0AwENyYh/A2JVv9a7KUdovvatu/AfEAe5rEos2UKSVx0n2KRf+N1dmNgyN0Hc/SNfF8/RijmbLQ== +vega-typings@*, vega-typings@0.11.1: + version "0.11.1" + resolved "https://registry.yarnpkg.com/vega-typings/-/vega-typings-0.11.1.tgz#0a6d3476250147f8d6ed43cf436d9d6daa643ab9" + integrity sha512-yymFEW0fg/pjeuAsdMYLiwMW/Z0or45JJGUDiO+VSTF0dLE1qfQgWlpwm4gv2B/5Dx4FJEmj0OSTctOfjmFGCA== dependencies: - d3-array "^2.0.3" - vega-dataflow "^5.2.1" - vega-statistics "^1.4.0" - vega-util "^1.10.0" + vega-util "^1.11.0" -vega-typings@*, vega-typings@0.7.1, vega-typings@^0.7.0: - version "0.7.1" - resolved "https://registry.yarnpkg.com/vega-typings/-/vega-typings-0.7.1.tgz#c4e5f65eeee4fb64b1a2b14dee426d1b26a02a40" - integrity sha512-YRjmcszidnncThmv3UnectLTw6oN/Wg9crx62JC0bA/NhLl4aWuaWTQvikr87l7cGWfKR3Qh9fQgRRhgJ22CPw== +vega-typings@0.7.2: + version "0.7.2" + resolved "https://registry.yarnpkg.com/vega-typings/-/vega-typings-0.7.2.tgz#cb02da5bdd0237971ba2bea6d47d1cbdbc45c52a" + integrity sha512-BReB2qRERA/Ke+QoxKDQ7fES25A9Q3qKRm1CJxwvpLGhAl4k5cGDORx6yW+J3rFHMzpJlmdRM+kb489EuphxZQ== dependencies: vega-util "^1.10.0" @@ -12643,11 +12946,25 @@ vega-typings@^0.3.17: dependencies: vega-util "^1.7.0" -vega-util@^1.10.0, vega-util@^1.7.0, vega-util@^1.8.0, vega-util@^1.9.0, vega-util@~1.10.0: +vega-util@1.12.0, vega-util@^1.10.0, vega-util@^1.11.0, vega-util@^1.11.2, vega-util@^1.12.0, vega-util@^1.7.0, vega-util@^1.8.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/vega-util/-/vega-util-1.12.0.tgz#fe46198b5294a68d32bedddcc539bb2522de3cba" + integrity sha512-eN1PAQVDyEOcwild2Fk1gbkzkqgDHNujG2/akYRtBzkhtz2EttrVIDwBkWqV/Q+VvEINEksb7TI3Wv7qVQFR5g== + +vega-util@~1.10.0: version "1.10.0" resolved "https://registry.yarnpkg.com/vega-util/-/vega-util-1.10.0.tgz#edfd8c04f1d269f903976c228820153902c270d4" integrity sha512-fTGnTG7FhtTG9tiYDL3k5s8YHqB71Ml5+aC9B7eaBygeB8GKXBrcbTXLOzoCRxT3Jr5cRhr99PMBu0AkqmhBog== +vega-view-transforms@4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/vega-view-transforms/-/vega-view-transforms-4.5.0.tgz#c358068902ee412469f8f6095e1e6cff5d3690a1" + integrity sha512-8n52147HxNSjQ23NeHN//AWt99zZP+Ukiy4kSbkCJGPZ3dW3NYdunEYNvZWyMmOKSrHIMtgdcHUM9FmPTQpE9w== + dependencies: + vega-dataflow "^5.4.1" + vega-scenegraph "^4.4.0" + vega-util "^1.12.0" + vega-view-transforms@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/vega-view-transforms/-/vega-view-transforms-2.0.3.tgz#9999f83301efbe65ed1971018f538f5aeb62a16e" @@ -12657,14 +12974,18 @@ vega-view-transforms@^2.0.3: vega-scenegraph "^3.2.3" vega-util "^1.7.0" -vega-view-transforms@^4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/vega-view-transforms/-/vega-view-transforms-4.3.1.tgz#2c9529b9c5efc15221fea43d6440e28031149353" - integrity sha512-myhG7Y3oCvAKpu9hjdlFoiJmAZAQ0SChDZ0fmR01eBjP9XMw2D9E3+VJKpdWzfJfyfKW0c+505FZBQ9QW4YQgg== +vega-view@5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/vega-view/-/vega-view-5.3.2.tgz#cd87af9fab7caa0546968f99f5976d41d58be779" + integrity sha512-W1+iQf2VB6a4U55gEI9eaWHq95jdClQS0vAksSAMrS5FjnZs0oE8L178Qrv1NxDvLjSJFlpAE8r0MlckD8+eug== dependencies: - vega-dataflow "^5.1.1" - vega-scenegraph "^4.1.0" - vega-util "^1.8.0" + d3-array "^2.3.3" + d3-timer "^1.0.9" + vega-dataflow "^5.4.1" + vega-functions "^5.5.0" + vega-runtime "^5.0.2" + vega-scenegraph "^4.4.0" + vega-util "^1.12.0" vega-view@^3.4.1: version "3.4.1" @@ -12679,18 +13000,14 @@ vega-view@^3.4.1: vega-scenegraph "^3.2.3" vega-util "^1.7.0" -vega-view@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/vega-view/-/vega-view-5.2.2.tgz#8a29f53382b55ea2ff02fb58ea02f919aedba046" - integrity sha512-9YWepeLgr+15MQPCV3B5JsRWiOTieUL8/p227cmHpBlm7Lt8HEnqihsIhskAEPGDx6/zENSn01arv+54k3qIiQ== +vega-voronoi@4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/vega-voronoi/-/vega-voronoi-4.1.1.tgz#1a09f86661cf85c75581282f19ff108603893715" + integrity sha512-agLmr+UGxJs5KB9D8GeZqxgeWWGoER/eVHPcFFPgVuoNBsrqf2bdoltmIkRnpiRsQnGCibGixhFEDCc9GGNAww== dependencies: - d3-array "^2.0.3" - d3-timer "^1.0.9" - vega-dataflow "^5.2.1" - vega-functions "^5.3.0" - vega-runtime "^5.0.1" - vega-scenegraph "^4.2.0" - vega-util "^1.10.0" + d3-delaunay "^5.1.3" + vega-dataflow "^5.1.1" + vega-util "^1.11.0" vega-voronoi@^3.0.0: version "3.0.0" @@ -12701,14 +13018,16 @@ vega-voronoi@^3.0.0: vega-dataflow "^4.0.0" vega-util "^1.7.0" -vega-voronoi@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/vega-voronoi/-/vega-voronoi-4.0.1.tgz#876e24c869d2f4902bc634b445efbb8a41850495" - integrity sha512-z1iALPb4w5ftM0TaCuRJL1ihkjxWE3RNo/KgkZel/KLrOUn+M8Gt6YghkLrtbNwA/2/khy2rqkarf0KGCZpl/Q== +vega-wordcloud@4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/vega-wordcloud/-/vega-wordcloud-4.0.3.tgz#9ecd993aab5e01e330dc604a25f53555567ac504" + integrity sha512-1fVy3r+ty3ddZEidsfby5jDnLi3hNezEM86cS4xc1yxsvE1a1A379GKQKg89vTPWEunmZv15ya+2tQ4fFsU8lg== dependencies: - d3-voronoi "^1.1.4" - vega-dataflow "^5.1.0" - vega-util "^1.8.0" + vega-canvas "^1.2.1" + vega-dataflow "^5.4.1" + vega-scale "^5.0.0" + vega-statistics "^1.6.2" + vega-util "^1.12.0" vega-wordcloud@^3.0.0: version "3.0.0" @@ -12721,17 +13040,6 @@ vega-wordcloud@^3.0.0: vega-statistics "^1.2.1" vega-util "^1.7.0" -vega-wordcloud@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/vega-wordcloud/-/vega-wordcloud-4.0.2.tgz#6e6f711e83195f764e1b0ace80f98091af94a3a6" - integrity sha512-nV9bRKjRGcmcQV5wXvOvWes4T5937t3RF+Rm1d03YVAzZpOcVKk9uBuVSeFYBLX2XcDBVe4HK54qDoOTFftHMw== - dependencies: - vega-canvas "^1.2.0" - vega-dataflow "^5.1.1" - vega-scale "^4.0.0" - vega-statistics "^1.2.5" - vega-util "^1.8.0" - vega@^4.4.0: version "4.4.0" resolved "https://registry.yarnpkg.com/vega/-/vega-4.4.0.tgz#e27051278061da635e08478d94ef9299dd6923ec" @@ -12746,34 +13054,35 @@ vega@^4.4.0: canvas-prebuilt "1.6.11" vega@^5.4.0: - version "5.4.0" - resolved "https://registry.yarnpkg.com/vega/-/vega-5.4.0.tgz#62fb18de7cb3477a3914aa2f7b98197958c0fd2e" - integrity sha512-1c77yse5ZOYXgVig5RjJCWwM8yHvY1Ds7ncusiT1Hu3wXVhOw8TKe2CLCbcOpWSmPRJ48BRw/6qF70iS4zWYAQ== - dependencies: - vega-crossfilter "^4.0.1" - vega-dataflow "^5.2.1" - vega-encode "^4.3.0" - vega-event-selector "^2.0.0" - vega-expression "^2.6.0" - vega-force "^4.0.1" - vega-functions "^5.3.0" - vega-geo "^4.0.3" - vega-hierarchy "^4.0.1" - vega-loader "^4.1.0" - vega-parser "^5.7.0" - vega-projection "^1.2.1" - vega-regression "^1.0.0" - vega-runtime "^5.0.1" - vega-scale "^4.1.1" - vega-scenegraph "^4.2.0" - vega-statistics "^1.4.0" - vega-transforms "^4.1.0" - vega-typings "^0.7.0" - vega-util "^1.10.0" - vega-view "^5.2.2" - vega-view-transforms "^4.3.1" - vega-voronoi "^4.0.1" - vega-wordcloud "^4.0.2" + version "5.8.1" + resolved "https://registry.yarnpkg.com/vega/-/vega-5.8.1.tgz#86234c657958a2e229fbb1c47f82e9e07866ad18" + integrity sha512-+3FN66ROsZdjg5e8ktyoXfdhxsQSCcGgr8vVTbJydqqkt5Qqp9gTDA5j7qutBk0d5/i5rIzN89XYGLRvBXYU0A== + dependencies: + vega-crossfilter "4.0.1" + vega-dataflow "5.4.1" + vega-encode "4.5.0" + vega-event-selector "2.0.1" + vega-expression "2.6.2" + vega-force "4.0.3" + vega-functions "5.5.0" + vega-geo "4.2.0" + vega-hierarchy "4.0.3" + vega-loader "4.1.3" + vega-parser "5.11.0" + vega-projection "1.3.0" + vega-regression "1.0.2" + vega-runtime "5.0.2" + vega-scale "5.0.0" + vega-scenegraph "4.4.1" + vega-statistics "1.7.0" + vega-time "1.0.0" + vega-transforms "4.5.0" + vega-typings "0.11.1" + vega-util "1.12.0" + vega-view "5.3.2" + vega-view-transforms "4.5.0" + vega-voronoi "4.1.1" + vega-wordcloud "4.0.3" verror@1.10.0: version "1.10.0" @@ -12785,9 +13094,9 @@ verror@1.10.0: extsprintf "^1.2.0" vm-browserify@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019" - integrity sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw== + version "1.1.2" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" + integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== void-elements@^2.0.0: version "2.0.1" @@ -12808,7 +13117,7 @@ walker@^1.0.7, walker@~1.0.5: dependencies: makeerror "1.0.x" -warning@^4.0.2: +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== @@ -12823,7 +13132,7 @@ watch@~1.0.2: exec-sh "^0.2.0" minimist "^1.2.0" -watchpack@^1.5.0: +watchpack@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA== @@ -12845,9 +13154,9 @@ webidl-conversions@^4.0.2: integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== webpack-bundle-analyzer@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.4.1.tgz#430544c7ba1631baccf673475ca8300cb74a3c47" - integrity sha512-Bs8D/1zF+17lhqj2OYmzi7HEVYqEVxu7lCO9Ff8BwajenOU0vAwEoV8e4ICCPNZAcqR1PCR/7o2SkW+cnCmF0A== + version "3.6.0" + resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.6.0.tgz#39b3a8f829ca044682bc6f9e011c95deb554aefd" + integrity sha512-orUfvVYEfBMDXgEKAKVvab5iQ2wXneIEorGNsyuOyVYpjYrI7CUOhhXNDd3huMwQ3vNNWWlGP+hzflMFYNzi2g== dependencies: acorn "^6.0.7" acorn-walk "^6.1.1" @@ -12864,22 +13173,21 @@ webpack-bundle-analyzer@^3.4.1: ws "^6.0.0" webpack-cli@^3.3.0: - version "3.3.4" - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.4.tgz#de27e281c48a897b8c219cb093e261d5f6afe44a" - integrity sha512-ubJGQEKMtBSpT+LiL5hXvn2GIOWiRWItR1DGUqJRhwRBeGhpRXjvF5f0erqdRJLErkfqS5/Ldkkedh4AL5Q1ZQ== - dependencies: - chalk "^2.4.1" - cross-spawn "^6.0.5" - enhanced-resolve "^4.1.0" - findup-sync "^2.0.0" - global-modules "^1.0.0" - import-local "^2.0.0" - interpret "^1.1.0" - loader-utils "^1.1.0" - prettier "^1.17.0" - supports-color "^5.5.0" - v8-compile-cache "^2.0.2" - yargs "^12.0.5" + version "3.3.10" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.10.tgz#17b279267e9b4fb549023fae170da8e6e766da13" + integrity sha512-u1dgND9+MXaEt74sJR4PR7qkPxXUSQ0RXYq8x1L6Jg1MYVEmGPrH6Ah6C4arD4r0J1P5HKjRqpab36k0eIzPqg== + dependencies: + chalk "2.4.2" + cross-spawn "6.0.5" + enhanced-resolve "4.1.0" + findup-sync "3.0.0" + global-modules "2.0.0" + import-local "2.0.0" + interpret "1.2.0" + loader-utils "1.2.3" + supports-color "6.1.0" + v8-compile-cache "2.0.3" + yargs "13.2.4" webpack-dev-middleware@^2.0.6: version "2.0.6" @@ -12905,49 +13213,48 @@ webpack-log@^1.0.1: uuid "^3.1.0" webpack-merge@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.1.tgz#5e923cf802ea2ace4fd5af1d3247368a633489b4" - integrity sha512-4p8WQyS98bUJcCvFMbdGZyZmsKuWjWVnVHnAS3FFg0HDaRVrPbkivx2RYCre8UiemD67RsiFFLfn4JhLAin8Vw== + version "4.2.2" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.2.tgz#a27c52ea783d1398afd2087f547d7b9d2f43634d" + integrity sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g== dependencies: - lodash "^4.17.5" + lodash "^4.17.15" -webpack-sources@^1.1.0, webpack-sources@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85" - integrity sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA== +webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1: + version "1.4.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" + integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== dependencies: source-list-map "^2.0.0" source-map "~0.6.1" webpack@^4.32.2: - version "4.35.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.35.0.tgz#ad3f0f8190876328806ccb7a36f3ce6e764b8378" - integrity sha512-M5hL3qpVvtr8d4YaJANbAQBc4uT01G33eDpl/psRTBCfjxFTihdhin1NtAKB1ruDwzeVdcsHHV3NX+QsAgOosw== + version "4.41.2" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.2.tgz#c34ec76daa3a8468c9b61a50336d8e3303dce74e" + integrity sha512-Zhw69edTGfbz9/8JJoyRQ/pq8FYUoY0diOXqW0T6yhgdhCv6wr0hra5DwwWexNRns2Z2+gsnrNcbe9hbGBgk/A== dependencies: "@webassemblyjs/ast" "1.8.5" "@webassemblyjs/helper-module-context" "1.8.5" "@webassemblyjs/wasm-edit" "1.8.5" "@webassemblyjs/wasm-parser" "1.8.5" - acorn "^6.0.5" - acorn-dynamic-import "^4.0.0" - ajv "^6.1.0" - ajv-keywords "^3.1.0" - chrome-trace-event "^1.0.0" + acorn "^6.2.1" + ajv "^6.10.2" + ajv-keywords "^3.4.1" + chrome-trace-event "^1.0.2" enhanced-resolve "^4.1.0" - eslint-scope "^4.0.0" + eslint-scope "^4.0.3" json-parse-better-errors "^1.0.2" - loader-runner "^2.3.0" - loader-utils "^1.1.0" - memory-fs "~0.4.1" - micromatch "^3.1.8" - mkdirp "~0.5.0" - neo-async "^2.5.0" - node-libs-browser "^2.0.0" + loader-runner "^2.4.0" + loader-utils "^1.2.3" + memory-fs "^0.4.1" + micromatch "^3.1.10" + mkdirp "^0.5.1" + neo-async "^2.6.1" + node-libs-browser "^2.2.1" schema-utils "^1.0.0" - tapable "^1.1.0" - terser-webpack-plugin "^1.1.0" - watchpack "^1.5.0" - webpack-sources "^1.3.0" + tapable "^1.1.3" + terser-webpack-plugin "^1.4.1" + watchpack "^1.6.0" + webpack-sources "^1.4.1" whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: version "1.0.5" @@ -12976,9 +13283,9 @@ whatwg-url@^6.4.1: webidl-conversions "^4.0.2" whatwg-url@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" - integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ== + version "7.1.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== dependencies: lodash.sortby "^4.7.0" tr46 "^1.0.1" @@ -13006,12 +13313,14 @@ wide-align@1.1.3, wide-align@^1.1.0: widest-line@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" + integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== dependencies: string-width "^2.1.1" window-size@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" + integrity sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY= windows-release@^3.1.0: version "3.2.0" @@ -13020,7 +13329,12 @@ windows-release@^3.1.0: dependencies: execa "^1.0.0" -wordwrap@^1.0.0, wordwrap@~1.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== + +wordwrap@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= @@ -13074,7 +13388,7 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= -write-file-atomic@2.4.1, write-file-atomic@^2.0.0, write-file-atomic@^2.3.0: +write-file-atomic@2.4.1: version "2.4.1" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529" integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg== @@ -13083,7 +13397,16 @@ write-file-atomic@2.4.1, write-file-atomic@^2.0.0, write-file-atomic@^2.3.0: imurmurhash "^0.1.4" signal-exit "^3.0.2" -write-json-file@^2.2.0, write-json-file@^2.3.0: +write-file-atomic@^2.0.0, write-file-atomic@^2.3.0, write-file-atomic@^2.4.2: + version "2.4.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +write-json-file@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" integrity sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8= @@ -13095,6 +13418,18 @@ write-json-file@^2.2.0, write-json-file@^2.3.0: sort-keys "^2.0.0" write-file-atomic "^2.0.0" +write-json-file@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-3.2.0.tgz#65bbdc9ecd8a1458e15952770ccbadfcff5fe62a" + integrity sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ== + dependencies: + detect-indent "^5.0.0" + graceful-fs "^4.1.15" + make-dir "^2.1.0" + pify "^4.0.1" + sort-keys "^2.0.0" + write-file-atomic "^2.4.2" + write-pkg@^3.1.0: version "3.2.0" resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.2.0.tgz#0e178fe97820d389a8928bc79535dbe68c2cff21" @@ -13113,6 +13448,7 @@ write@1.0.3: ws@3.3.2, ws@~3.3.1: version "3.3.2" resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.2.tgz#96c1d08b3fefda1d5c1e33700d3bfaa9be2d5608" + integrity sha512-t+WGpsNxhMR4v6EClXS8r8km5ZljKJzyGhJf7goJz9k5Ye3+b5Bvno5rjqPuIBn5mnn5GBb7o8IrIWHxX1qOLQ== dependencies: async-limiter "~1.0.0" safe-buffer "~5.1.0" @@ -13133,15 +13469,16 @@ ws@^6.0.0, ws@^6.1.0: async-limiter "~1.0.0" ws@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.0.1.tgz#1a04e86cc3a57c03783f4910fdb090cf31b8e165" - integrity sha512-ILHfMbuqLJvnSgYXLgy4kMntroJpe8hT41dOVWM8bxRuw6TK4mgMp9VJUNsZTEc5Bh+Mbs0DJT4M0N+wBG9l9A== + version "7.2.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.0.tgz#422eda8c02a4b5dba7744ba66eebbd84bcef0ec7" + integrity sha512-+SqNqFbwTm/0DC18KYzIsMTnEWpLwJsiasW/O17la4iDRRIO9uaHbvKiAS3AHgTiuuWerK/brj4O6MYZkei9xg== dependencies: async-limiter "^1.0.0" xdg-basedir@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" + integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= xml-name-validator@^3.0.0: version "3.0.0" @@ -13164,9 +13501,9 @@ xmlhttprequest-ssl@~1.5.4: integrity sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4= xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" - integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== xterm@~3.13.2: version "3.13.2" @@ -13189,21 +13526,21 @@ yallist@^2.1.2: integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" - integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== -yargs-parser@10.x: +yargs-parser@10.x, yargs-parser@^10.0.0: version "10.1.0" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== dependencies: camelcase "^4.1.0" -yargs-parser@13.0.0: - version "13.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.0.0.tgz#3fc44f3e76a8bdb1cc3602e860108602e5ccde8b" - integrity sha512-w2LXjoL8oRdRQN+hOyppuXs+V/fVAYtpcrRxZuF7Kt/Oc+Jr2uAcVntaUTNT6w5ihoWfFDpNY8CPx1QskxZ/pw== +yargs-parser@13.1.1, yargs-parser@^13.1.0, yargs-parser@^13.1.1: + version "13.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" + integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== dependencies: camelcase "^5.0.0" decamelize "^1.2.0" @@ -13211,6 +13548,7 @@ yargs-parser@13.0.0: yargs-parser@7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" + integrity sha1-jQrELxbqVd69MyyvTEA4s+P139k= dependencies: camelcase "^4.1.0" @@ -13222,10 +13560,10 @@ yargs-parser@^11.1.1: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^13.0.0, yargs-parser@^13.1.0: - version "13.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" - integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== +yargs-parser@^15.0.0: + version "15.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.0.tgz#cdd7a97490ec836195f59f3f4dbe5ea9e8f75f08" + integrity sha512-xLTUnCMc4JhxrPEPUYD5IBR1mWCK/aT6+RJ/K29JY2y1vD+FhtgKK0AXRWvI262q3QSffAQuTouFIKUuHX89wQ== dependencies: camelcase "^5.0.0" decamelize "^1.2.0" @@ -13237,16 +13575,16 @@ yargs-parser@^9.0.2: dependencies: camelcase "^4.1.0" -yargs-unparser@1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.5.0.tgz#f2bb2a7e83cbc87bb95c8e572828a06c9add6e0d" - integrity sha512-HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw== +yargs-unparser@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.6.0.tgz#ef25c2c769ff6bd09e4b0f9d7c605fb27846ea9f" + integrity sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw== dependencies: flat "^4.1.0" - lodash "^4.17.11" - yargs "^12.0.5" + lodash "^4.17.15" + yargs "^13.3.0" -yargs@12, yargs@^12.0.1, yargs@^12.0.2, yargs@^12.0.5: +yargs@12: version "12.0.5" resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== @@ -13264,12 +13602,12 @@ yargs@12, yargs@^12.0.1, yargs@^12.0.2, yargs@^12.0.5: y18n "^3.2.1 || ^4.0.0" yargs-parser "^11.1.1" -yargs@13.2.2: - version "13.2.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.2.tgz#0c101f580ae95cea7f39d927e7770e3fdc97f993" - integrity sha512-WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA== +yargs@13.2.4: + version "13.2.4" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83" + integrity sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg== dependencies: - cliui "^4.0.0" + cliui "^5.0.0" find-up "^3.0.0" get-caller-file "^2.0.1" os-locale "^3.1.0" @@ -13279,11 +13617,28 @@ yargs@13.2.2: string-width "^3.0.0" which-module "^2.0.0" y18n "^4.0.0" - yargs-parser "^13.0.0" + yargs-parser "^13.1.0" + +yargs@13.3.0, yargs@^13.3.0, yargs@~13.3.0: + version "13.3.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.0.tgz#4c657a55e07e5f2cf947f8a366567c04a0dedc83" + integrity sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA== + dependencies: + cliui "^5.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.1.1" yargs@3.32.0: version "3.32.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" + integrity sha1-AwiOnr+edWtpdRYR0qXvWRSCyZU= dependencies: camelcase "^2.0.1" cliui "^3.0.3" @@ -13294,15 +13649,15 @@ yargs@3.32.0: y18n "^3.2.0" yargs@^11.0.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" - integrity sha512-NwW69J42EsCSanF8kyn5upxvjp5ds+t3+udGBeTbFnERA+lF541DDpMawzo4z6W/QrzNM18D+BPMiOBibnFV5A== + version "11.1.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.1.tgz#5052efe3446a4df5ed669c995886cc0f13702766" + integrity sha512-PRU7gJrJaXv3q3yQZ/+/X6KBswZiaQ+zOmdprZcouPYtQgvNU35i+68M4b1ZHLZtYFT5QObFLV+ZkmJYcwKdiw== dependencies: cliui "^4.0.0" decamelize "^1.1.1" find-up "^2.1.0" get-caller-file "^1.0.1" - os-locale "^2.0.0" + os-locale "^3.1.0" require-directory "^2.1.1" require-main-filename "^1.0.1" set-blocking "^2.0.0" @@ -13311,22 +13666,22 @@ yargs@^11.0.0: y18n "^3.2.1" yargs-parser "^9.0.2" -yargs@~13.2.4: - version "13.2.4" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83" - integrity sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg== +yargs@^14.2.2: + version "14.2.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.2.tgz#2769564379009ff8597cdd38fba09da9b493c4b5" + integrity sha512-/4ld+4VV5RnrynMhPZJ/ZpOCGSCeghMykZ3BhdFBDa9Wy/RH6uEGNWDJog+aUlq+9OM1CFTgtYRW5Is1Po9NOA== dependencies: cliui "^5.0.0" + decamelize "^1.2.0" find-up "^3.0.0" get-caller-file "^2.0.1" - os-locale "^3.1.0" require-directory "^2.1.1" require-main-filename "^2.0.0" set-blocking "^2.0.0" string-width "^3.0.0" which-module "^2.0.0" y18n "^4.0.0" - yargs-parser "^13.1.0" + yargs-parser "^15.0.0" yarn-deduplicate@^1.1.1: version "1.1.1"