diff --git a/.vscode/launch.json b/.vscode/launch.json index 6e810669..b3c25c0e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,14 +7,39 @@ { "type": "node", "request": "launch", - "name": "Launch Electron Packager", - "program": "${workspaceRoot}/electron/packager/index.js", - "cwd": "${workspaceFolder}/electron/packager" + "name": "App (Electron)", + "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", + "windows": { + "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd" + }, + "program": "${workspaceRoot}/electron-app/src-gen/frontend/electron-main.js", + "protocol": "inspector", + "args": [ + "--log-level=debug", + "--hostname=localhost", + "--no-cluster", + "--remote-debugging-port=9222", + "--no-app-auto-install", + "--debug-cli=true" + ], + "env": { + "NODE_ENV": "development" + }, + "sourceMaps": true, + "outFiles": [ + "${workspaceRoot}/electron-app/src-gen/backend/*.js", + "${workspaceRoot}/electron-app/src-gen/frontend/*.js", + "${workspaceRoot}/electron-app/lib/**/*.js", + "${workspaceRoot}/arduino-ide-extension/*/lib/**/*.js" + ], + "smartStep": true, + "internalConsoleOptions": "openOnSessionStart", + "outputCapture": "std" }, { "type": "node", "request": "launch", - "name": "Launch Backend", + "name": "App (Browser)", "program": "${workspaceRoot}/browser-app/src-gen/backend/main.js", "args": [ "--hostname=0.0.0.0", @@ -38,7 +63,7 @@ { "type": "node", "request": "launch", - "name": "Launch Backend (Debug CLI daemon)", + "name": "App (Browser - Debug CLI daemon)", "program": "${workspaceRoot}/browser-app/src-gen/backend/main.js", "args": [ "--hostname=0.0.0.0", @@ -59,6 +84,13 @@ "smartStep": true, "internalConsoleOptions": "openOnSessionStart", "outputCapture": "std" + }, + { + "type": "node", + "request": "launch", + "name": "Packager", + "program": "${workspaceRoot}/electron/packager/index.js", + "cwd": "${workspaceFolder}/electron/packager" } ] } diff --git a/arduino-ide-extension/src/browser/monitor/monitor-model.ts b/arduino-ide-extension/src/browser/monitor/monitor-model.ts index b1f9968e..0ac6a27b 100644 --- a/arduino-ide-extension/src/browser/monitor/monitor-model.ts +++ b/arduino-ide-extension/src/browser/monitor/monitor-model.ts @@ -78,7 +78,7 @@ export class MonitorModel implements FrontendApplicationContribution { this.storeState().then(() => this.onChangeEmitter.fire({ property: 'lineEnding', value: this._lineEnding })); } - protected restoreState(state: MonitorModel.State) { + protected restoreState(state: MonitorModel.State): void { this._autoscroll = state.autoscroll; this._timestamp = state.timestamp; this._baudRate = state.baudRate; @@ -86,7 +86,7 @@ export class MonitorModel implements FrontendApplicationContribution { } protected async storeState(): Promise { - this.localStorageService.setData(MonitorModel.STORAGE_ID, { + return this.localStorageService.setData(MonitorModel.STORAGE_ID, { autoscroll: this._autoscroll, timestamp: this._timestamp, baudRate: this._baudRate, diff --git a/arduino-ide-extension/src/browser/monitor/monitor-widget.tsx b/arduino-ide-extension/src/browser/monitor/monitor-widget.tsx index 23dd168e..27c77ffd 100644 --- a/arduino-ide-extension/src/browser/monitor/monitor-widget.tsx +++ b/arduino-ide-extension/src/browser/monitor/monitor-widget.tsx @@ -41,6 +41,7 @@ export class MonitorWidget extends ReactWidget { this.id = MonitorWidget.ID; this.title.label = 'Serial Monitor'; this.title.iconClass = 'arduino-serial-monitor-tab-icon'; + this.title.closable = true; this.scrollOptions = undefined; this.toDispose.push(this.clearOutputEmitter); } @@ -56,14 +57,21 @@ export class MonitorWidget extends ReactWidget { this.update(); } + dispose(): void { + super.dispose(); + } + protected onAfterAttach(msg: Message): void { super.onAfterAttach(msg); this.monitorConnection.autoConnect = true; } - protected onBeforeDetach(msg: Message): void { - super.onBeforeDetach(msg); + onCloseRequest(msg: Message): void { this.monitorConnection.autoConnect = false; + if (this.monitorConnection.connected) { + this.monitorConnection.disconnect(); + } + super.onCloseRequest(msg); } protected onResize(msg: Widget.ResizeMessage): void { diff --git a/arduino-ide-extension/src/browser/style/monitor.css b/arduino-ide-extension/src/browser/style/monitor.css index 038a8200..31b5b42a 100644 --- a/arduino-ide-extension/src/browser/style/monitor.css +++ b/arduino-ide-extension/src/browser/style/monitor.css @@ -21,7 +21,7 @@ .serial-monitor .head .send { display: flex; flex: 1; - margin-right: 5px; + margin-right: 2px; } .serial-monitor .head .send > input { @@ -42,7 +42,7 @@ } .serial-monitor .head .config .select { - margin-left: 5px; + margin-left: 3px; } .serial-monitor .body { diff --git a/arduino-ide-extension/src/node/boards-service-impl.ts b/arduino-ide-extension/src/node/boards-service-impl.ts index 9e7538b1..a79af50f 100644 --- a/arduino-ide-extension/src/node/boards-service-impl.ts +++ b/arduino-ide-extension/src/node/boards-service-impl.ts @@ -1,6 +1,7 @@ import * as PQueue from 'p-queue'; import { injectable, inject, postConstruct, named } from 'inversify'; import { ILogger } from '@theia/core/lib/common/logger'; +import { Deferred } from '@theia/core/lib/common/promise-util'; import { BoardsService, AttachedSerialBoard, BoardPackage, Board, AttachedNetworkBoard, BoardsServiceClient, Port } from '../common/protocol/boards-service'; import { PlatformSearchReq, @@ -43,6 +44,7 @@ export class BoardsServiceImpl implements BoardsService { */ protected attachedBoards: { boards: Board[] } = { boards: [] }; protected availablePorts: { ports: Port[] } = { ports: [] }; + protected started = new Deferred(); protected client: BoardsServiceClient | undefined; protected readonly queue = new PQueue({ autoStart: true, concurrency: 1 }); @@ -74,6 +76,7 @@ export class BoardsServiceImpl implements BoardsService { if (!this.discoveryInitialized) { update([], sortedBoards, [], sortedPorts, 'Initialized attached boards and available ports.'); this.discoveryInitialized = true; + this.started.resolve(); } else { Promise.all([ this.getAttachedBoards(), @@ -120,10 +123,12 @@ export class BoardsServiceImpl implements BoardsService { } async getAttachedBoards(): Promise<{ boards: Board[] }> { + await this.started.promise; return this.attachedBoards; } async getAvailablePorts(): Promise<{ ports: Port[] }> { + await this.started.promise; return this.availablePorts; } diff --git a/arduino-ide-extension/src/node/monitor/monitor-service-impl.ts b/arduino-ide-extension/src/node/monitor/monitor-service-impl.ts index 39a0a394..dd1aaca0 100644 --- a/arduino-ide-extension/src/node/monitor/monitor-service-impl.ts +++ b/arduino-ide-extension/src/node/monitor/monitor-service-impl.ts @@ -71,7 +71,7 @@ export class MonitorServiceImpl implements MonitorService { duplex.on('error', ((error: Error) => { const monitorError = ErrorWithCode.toMonitorError(error, config); - this.disconnect().then(() => { + this.disconnect(monitorError).then(() => { if (this.client) { this.client.notifyError(monitorError); } @@ -112,7 +112,10 @@ export class MonitorServiceImpl implements MonitorService { }); } - async disconnect(): Promise { + async disconnect(reason?: MonitorError): Promise { + if (!this.connection && reason && reason.code === MonitorError.ErrorCodes.CLIENT_CANCEL) { + return Status.OK; + } this.logger.info(`>>> Disposing monitor connection...`); if (!this.connection) { this.logger.warn(`<<< Not connected. Nothing to dispose.`); diff --git a/yarn.lock b/yarn.lock index 5121385a..8cdc1351 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10,6 +10,7 @@ "@babel/highlight" "^7.0.0" "@babel/core@^7.5.5": +<<<<<<< HEAD <<<<<<< HEAD version "7.7.5" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.5.tgz#ae1323cd035b5160293307f50647e83f8ba62f7e" @@ -35,6 +36,19 @@ "@babel/traverse" "^7.7.2" "@babel/types" "^7.7.2" >>>>>>> e40dc8e... Updated to next Theia. +======= + 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" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. convert-source-map "^1.7.0" debug "^4.1.0" json5 "^2.1.0" @@ -43,113 +57,121 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.7.2": - version "7.7.2" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.2.tgz#2f4852d04131a5e17ea4f6645488b5da66ebf3af" - integrity sha512-WthSArvAjYLz4TcbKOi88me+KmDJdKSlfwwN8CnUYn9jBkzhq0ZEPuBfkAWIvjJ3AdEV1Cf/+eSQTnp3IDJKlQ== +"@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.7.2" + "@babel/types" "^7.7.4" jsesc "^2.5.1" lodash "^4.17.13" source-map "^0.5.0" -"@babel/helper-annotate-as-pure@^7.0.0", "@babel/helper-annotate-as-pure@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.7.0.tgz#efc54032d43891fe267679e63f6860aa7dbf4a5e" - integrity sha512-k50CQxMlYTYo+GGyUGFwpxKVtxVJi9yh61sXZji3zYHccK9RYliZGSTOgci85T+r+0VFN2nWbGM04PIqwfrpMg== +"@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.7.0" + "@babel/types" "^7.7.4" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.7.0.tgz#32dd9551d6ed3a5fc2edc50d6912852aa18274d9" - integrity sha512-Cd8r8zs4RKDwMG/92lpZcnn5WPQ3LAMQbCw42oqUh4s7vsSN5ANUZjMel0OOnxDLq57hoDDbai+ryygYfCTOsw== +"@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.7.0" - "@babel/types" "^7.7.0" + "@babel/helper-explode-assignable-expression" "^7.7.4" + "@babel/types" "^7.7.4" -"@babel/helper-call-delegate@^7.4.4": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.7.0.tgz#df8942452c2c1a217335ca7e393b9afc67f668dc" - integrity sha512-Su0Mdq7uSSWGZayGMMQ+z6lnL00mMCnGAbO/R0ZO9odIdB/WNU/VfQKqMQU0fdIsxQYbRjDM4BixIa93SQIpvw== +"@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.7.0" - "@babel/traverse" "^7.7.0" - "@babel/types" "^7.7.0" + "@babel/helper-hoist-variables" "^7.7.4" + "@babel/traverse" "^7.7.4" + "@babel/types" "^7.7.4" -"@babel/helper-create-regexp-features-plugin@^7.7.0": - version "7.7.2" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.2.tgz#6f20443778c8fce2af2ff4206284afc0ced65db6" - integrity sha512-pAil/ZixjTlrzNpjx+l/C/wJk002Wo7XbbZ8oujH/AoJ3Juv0iN/UTcPUHXKMFLqsfS0Hy6Aow8M31brUYBlQQ== +"@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-regex" "^7.4.4" regexpu-core "^4.6.0" -"@babel/helper-define-map@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.7.0.tgz#60b0e9fd60def9de5054c38afde8c8ee409c7529" - integrity sha512-kPKWPb0dMpZi+ov1hJiwse9dWweZsz3V9rP4KdytnX1E7z3cTNmFGglwklzFPuqIcHLIY3bgKSs4vkwXXdflQA== +"@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/helper-function-name" "^7.7.0" - "@babel/types" "^7.7.0" + "@babel/helper-function-name" "^7.7.4" + "@babel/types" "^7.7.4" lodash "^4.17.13" -"@babel/helper-explode-assignable-expression@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.7.0.tgz#db2a6705555ae1f9f33b4b8212a546bc7f9dc3ef" - integrity sha512-CDs26w2shdD1urNUAji2RJXyBFCaR+iBEGnFz3l7maizMkQe3saVw9WtjG1tz8CwbjvlFnaSLVhgnu1SWaherg== +"@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/traverse" "^7.7.0" - "@babel/types" "^7.7.0" + "@babel/traverse" "^7.7.4" + "@babel/types" "^7.7.4" -"@babel/helper-function-name@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.7.0.tgz#44a5ad151cfff8ed2599c91682dda2ec2c8430a3" - integrity sha512-tDsJgMUAP00Ugv8O2aGEua5I2apkaQO7lBGUq1ocwN3G23JE5Dcq0uh3GvFTChPa4b40AWiAsLvCZOA2rdnQ7Q== +"@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/helper-get-function-arity" "^7.7.0" - "@babel/template" "^7.7.0" - "@babel/types" "^7.7.0" + "@babel/helper-get-function-arity" "^7.7.4" + "@babel/template" "^7.7.4" + "@babel/types" "^7.7.4" -"@babel/helper-get-function-arity@^7.0.0", "@babel/helper-get-function-arity@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.0.tgz#c604886bc97287a1d1398092bc666bc3d7d7aa2d" - integrity sha512-tLdojOTz4vWcEnHWHCuPN5P85JLZWbm5Fx5ZsMEMPhF3Uoe3O7awrbM2nQ04bDOUToH/2tH/ezKEOR8zEYzqyw== +"@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.7.0" + "@babel/types" "^7.7.4" -"@babel/helper-hoist-variables@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.7.0.tgz#b4552e4cfe5577d7de7b183e193e84e4ec538c81" - integrity sha512-LUe/92NqsDAkJjjCEWkNe+/PcpnisvnqdlRe19FahVapa4jndeuJ+FBiTX1rcAKWKcJGE+C3Q3tuEuxkSmCEiQ== +"@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.7.0" + "@babel/types" "^7.7.4" -"@babel/helper-member-expression-to-functions@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.7.0.tgz#472b93003a57071f95a541ea6c2b098398bcad8a" - integrity sha512-QaCZLO2RtBcmvO/ekOLp8p7R5X2JriKRizeDpm5ChATAFWrrYDcDxPuCIBXKyBjY+i1vYSdcUTMIb8psfxHDPA== +"@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.7.0" + "@babel/types" "^7.7.4" -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.7.0.tgz#99c095889466e5f7b6d66d98dffc58baaf42654d" - integrity sha512-Dv3hLKIC1jyfTkClvyEkYP2OlkzNvWs5+Q8WgPbxM5LMeorons7iPP91JM+DU7tRbhqA1ZeooPaMFvQrn23RHw== +"@babel/helper-module-imports@^7.0.0", "@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/types" "^7.7.0" + "@babel/types" "^7.7.4" +<<<<<<< HEAD <<<<<<< HEAD "@babel/helper-module-transforms@^7.7.4", "@babel/helper-module-transforms@^7.7.5": version "7.7.5" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.7.5.tgz#d044da7ffd91ec967db25cd6748f704b6b244835" integrity sha512-A7pSxyJf1gN5qXVcidwLWydjftUN878VkalhXX5iQDuGyiGK3sOrrKKHF4/A4fwHtnsotv/NipwAeLzY4KQPvw== +======= +"@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== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: "@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" +<<<<<<< HEAD ======= "@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.7.0": version "7.7.0" @@ -162,14 +184,16 @@ "@babel/template" "^7.7.0" "@babel/types" "^7.7.0" >>>>>>> e40dc8e... Updated to next Theia. +======= +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. lodash "^4.17.13" -"@babel/helper-optimise-call-expression@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.7.0.tgz#4f66a216116a66164135dc618c5d8b7a959f9365" - integrity sha512-48TeqmbazjNU/65niiiJIJRc5JozB8acui1OS7bSd6PgxfuovWsvjfWSzlgx+gPFdVveNzUdpdIg5l56Pl5jqg== +"@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.0" + "@babel/types" "^7.7.4" "@babel/helper-plugin-utils@^7.0.0": version "7.0.0" @@ -183,60 +207,60 @@ dependencies: lodash "^4.17.13" -"@babel/helper-remap-async-to-generator@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.7.0.tgz#4d69ec653e8bff5bce62f5d33fc1508f223c75a7" - integrity sha512-pHx7RN8X0UNHPB/fnuDnRXVZ316ZigkO8y8D835JlZ2SSdFKb6yH9MIYRU4fy/KPe5sPHDFOPvf8QLdbAGGiyw== +"@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.0" - "@babel/helper-wrap-function" "^7.7.0" - "@babel/template" "^7.7.0" - "@babel/traverse" "^7.7.0" - "@babel/types" "^7.7.0" + "@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.5.5", "@babel/helper-replace-supers@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.7.0.tgz#d5365c8667fe7cbd13b8ddddceb9bd7f2b387512" - integrity sha512-5ALYEul5V8xNdxEeWvRsBzLMxQksT7MaStpxjJf9KsnLxpAKBtfw5NeMKZJSYDa0lKdOcy0g+JT/f5mPSulUgg== +"@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.0" - "@babel/helper-optimise-call-expression" "^7.7.0" - "@babel/traverse" "^7.7.0" - "@babel/types" "^7.7.0" + "@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.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.7.0.tgz#97a8b6c52105d76031b86237dc1852b44837243d" - integrity sha512-AJ7IZD7Eem3zZRuj5JtzFAptBw7pMlS3y8Qv09vaBWoFsle0d1kAn5Wq6Q9MyBXITPOKnxwkZKoAm4bopmv26g== +"@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.0" - "@babel/types" "^7.7.0" + "@babel/template" "^7.7.4" + "@babel/types" "^7.7.4" -"@babel/helper-split-export-declaration@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.0.tgz#1365e74ea6c614deeb56ebffabd71006a0eb2300" - integrity sha512-HgYSI8rH08neWlAH3CcdkFg9qX9YsZysZI5GD8LjhQib/mM0jGOZOVkoUiiV2Hu978fRtjtsGsW6w0pKHUWtqA== +"@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.0" + "@babel/types" "^7.7.4" -"@babel/helper-wrap-function@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.7.0.tgz#15af3d3e98f8417a60554acbb6c14e75e0b33b74" - integrity sha512-sd4QjeMgQqzshSjecZjOp8uKfUtnpmCyQhKQrVJBBgeHAB/0FPi33h3AbVlVp07qQtMD4QgYSzaMI7VwncNK/w== +"@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.0" - "@babel/template" "^7.7.0" - "@babel/traverse" "^7.7.0" - "@babel/types" "^7.7.0" + "@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.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.7.0.tgz#359bb5ac3b4726f7c1fde0ec75f64b3f4275d60b" - integrity sha512-VnNwL4YOhbejHb7x/b5F39Zdg5vIQpUUNzJwx0ww1EcVRt41bbGRZWhAURrfY32T5zTT3qwNOQFWpn+P0i0a2g== +"@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.0" - "@babel/traverse" "^7.7.0" - "@babel/types" "^7.7.0" + "@babel/template" "^7.7.4" + "@babel/traverse" "^7.7.4" + "@babel/types" "^7.7.4" "@babel/highlight@^7.0.0": version "7.5.0" @@ -247,6 +271,7 @@ esutils "^2.0.2" js-tokens "^4.0.0" +<<<<<<< HEAD <<<<<<< HEAD "@babel/parser@^7.7.4", "@babel/parser@^7.7.5": version "7.7.5" @@ -258,209 +283,216 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.3.tgz#5fad457c2529de476a248f75b0f090b3060af043" integrity sha512-bqv+iCo9i+uLVbI0ILzKkvMorqxouI+GbV13ivcARXn9NNEabi2IEz912IgNpT/60BNXac5dgcfjb94NjsF33A== >>>>>>> e40dc8e... Updated to next Theia. +======= +"@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== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. -"@babel/plugin-proposal-async-generator-functions@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.7.0.tgz#83ef2d6044496b4c15d8b4904e2219e6dccc6971" - integrity sha512-ot/EZVvf3mXtZq0Pd0+tSOfGWMizqmOohXmNZg6LNFjHOV+wOPv7BvVYh8oPR8LhpIP3ye8nNooKL50YRWxpYA== +"@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-plugin-utils" "^7.0.0" - "@babel/helper-remap-async-to-generator" "^7.7.0" - "@babel/plugin-syntax-async-generators" "^7.2.0" + "@babel/helper-remap-async-to-generator" "^7.7.4" + "@babel/plugin-syntax-async-generators" "^7.7.4" -"@babel/plugin-proposal-dynamic-import@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.7.0.tgz#dc02a8bad8d653fb59daf085516fa416edd2aa7f" - integrity sha512-7poL3Xi+QFPC7sGAzEIbXUyYzGJwbc2+gSD0AkiC5k52kH2cqHdqxm5hNFfLW3cRSTcx9bN0Fl7/6zWcLLnKAQ== +"@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/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-dynamic-import" "^7.2.0" + "@babel/plugin-syntax-dynamic-import" "^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-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: "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-json-strings" "^7.2.0" + "@babel/plugin-syntax-json-strings" "^7.7.4" -"@babel/plugin-proposal-object-rest-spread@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz#8ffccc8f3a6545e9f78988b6bf4fe881b88e8096" - integrity sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw== +"@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/plugin-syntax-object-rest-spread" "^7.2.0" + "@babel/plugin-syntax-object-rest-spread" "^7.7.4" -"@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-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-optional-catch-binding" "^7.2.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.7.4" -"@babel/plugin-proposal-unicode-property-regex@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.0.tgz#549fe1717a1bd0a2a7e63163841cb37e78179d5d" - integrity sha512-mk34H+hp7kRBWJOOAR0ZMGCydgKMD4iN9TpDRp3IIcbunltxEY89XSimc6WbtSLCDrwcdy/EEw7h5CFCzxTchw== +"@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.0" + "@babel/helper-create-regexp-features-plugin" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" -"@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-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-dynamic-import@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612" - integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w== +"@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/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-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-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-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-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-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-top-level-await@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.0.tgz#f5699549f50bbe8d12b1843a4e82f0a37bb65f4d" - integrity sha512-hi8FUNiFIY1fnUI2n1ViB1DR0R4QeK4iHcTlW6aJkrPoTdb8Rf1EMQ6GT3f67DDkYyWgew9DFoOZ6gOoEsdzTA== +"@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.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.7.0.tgz#e2b84f11952cf5913fe3438b7d2585042772f492" - integrity sha512-vLI2EFLVvRBL3d8roAMqtVY0Bm9C1QzLkdS57hiKrjUBSqsQYrBsMCeOg/0KK7B0eK9V71J5mWcha9yyoI2tZw== +"@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.7.0" + "@babel/helper-module-imports" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-remap-async-to-generator" "^7.7.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.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.3.tgz#6e854e51fbbaa84351b15d4ddafe342f3a5d542a" - integrity sha512-7hvrg75dubcO3ZI2rjYTzUrEuh1E9IyDEhhB6qfcooxhDA33xx2MasuLVgdxzcP6R/lipAC6n9ub9maNW6RKdw== +"@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.13" -"@babel/plugin-transform-classes@^7.5.5", "@babel/plugin-transform-classes@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.7.0.tgz#b411ecc1b8822d24b81e5d184f24149136eddd4a" - integrity sha512-/b3cKIZwGeUesZheU9jNYcwrEA7f/Bo4IdPmvp7oHgvks2majB5BoT5byAql44fiNQYOPzhk2w8DbgfuafkMoA== +"@babel/plugin-transform-classes@^7.5.5", "@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.7.0" - "@babel/helper-define-map" "^7.7.0" - "@babel/helper-function-name" "^7.7.0" - "@babel/helper-optimise-call-expression" "^7.7.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.7.0" - "@babel/helper-split-export-declaration" "^7.7.0" + "@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.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.6.0.tgz#44bbe08b57f4480094d57d9ffbcd96d309075ba6" - integrity sha512-2bGIS5P1v4+sWTCnKNDZDxbGvEqi0ijeqM/YqHtVGrvG2y0ySgnEEhXErvE9dA0bnIzY9bIzdFK0jFA46ASIIQ== +"@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.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.7.0.tgz#c5c9ecacab3a5e0c11db6981610f0c32fd698b3b" - integrity sha512-3QQlF7hSBnSuM1hQ0pS3pmAbWLax/uGNCbPBND9y+oJ4Y776jsyujG2k0Sn2Aj2a0QwVOiOFL5QVPA7spjvzSA== +"@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.0" + "@babel/helper-create-regexp-features-plugin" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-duplicate-keys@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz#c5dbf5106bf84cdf691222c0974c12b1df931853" - integrity sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ== +"@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.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.7.0.tgz#0fa786f1eef52e3b7d4fc02e54b2129de8a04c2a" - integrity sha512-P5HKu0d9+CzZxP5jcrWdpe7ZlFDe24bmqP6a6X8BHEBl/eizAsY8K6LX8LASZL0Jxdjm5eEfzp+FIrxCm/p8bA== +"@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.7.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" +<<<<<<< HEAD <<<<<<< HEAD "@babel/plugin-transform-modules-amd@^7.7.5": version "7.7.5" @@ -482,77 +514,88 @@ version "7.5.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz#ef00435d46da0a5961aa728a1d2ecff063e4fb91" integrity sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg== +======= +"@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== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. 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.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.7.0.tgz#3e5ffb4fd8c947feede69cbe24c9554ab4113fe3" - integrity sha512-KEMyWNNWnjOom8vR/1+d+Ocz/mILZG/eyHHO06OuBQ2aNhxT62fr4y6fGOplRx+CxCSp3IFwesL8WdINfY/3kg== +"@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: +<<<<<<< HEAD "@babel/helper-module-transforms" "^7.7.0" >>>>>>> e40dc8e... Updated to next Theia. +======= + "@babel/helper-module-transforms" "^7.7.4" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-simple-access" "^7.7.0" + "@babel/helper-simple-access" "^7.7.4" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-systemjs@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.7.0.tgz#9baf471213af9761c1617bb12fd278e629041417" - integrity sha512-ZAuFgYjJzDNv77AjXRqzQGlQl4HdUM6j296ee4fwKVZfhDR9LAGxfvXjBkb06gNETPnN0sLqRm9Gxg4wZH6dXg== +"@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.7.0" + "@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.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.7.0.tgz#d62c7da16670908e1d8c68ca0b5d4c0097b69966" - integrity sha512-u7eBA03zmUswQ9LQ7Qw0/ieC1pcAkbp5OQatbWUzY1PaBccvuJXUkYzoN1g7cqp7dbTu6Dp9bXyalBvD04AANA== +"@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.7.0" + "@babel/helper-module-transforms" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-named-capturing-groups-regex@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.7.0.tgz#358e6fd869b9a4d8f5cbc79e4ed4fc340e60dcaf" - integrity sha512-+SicSJoKouPctL+j1pqktRVCgy+xAch1hWWTMy13j0IflnyNjaoskj+DwRQFimHbLqO3sq2oN2CXMvXq3Bgapg== +"@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: - "@babel/helper-create-regexp-features-plugin" "^7.7.0" + "@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.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz#c70021df834073c65eb613b8679cc4a381d1a9f9" - integrity sha512-un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ== +"@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.5.5" + "@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" +<<<<<<< HEAD <<<<<<< HEAD "@babel/plugin-transform-regenerator@^7.7.5": version "7.7.5" @@ -564,17 +607,24 @@ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.0.tgz#f1b20b535e7716b622c99e989259d7dd942dd9cc" integrity sha512-AXmvnC+0wuj/cFkkS/HFHIojxH3ffSXE+ttulrqWjZZRaUOonfJc60e1wSNT4rV8tIunvu/R3wCp71/tLAa9xg== >>>>>>> e40dc8e... Updated to next Theia. +======= +"@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== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. 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-runtime@^7.5.5": +<<<<<<< HEAD <<<<<<< HEAD version "7.7.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.7.6.tgz#4f2b548c88922fb98ec1c242afd4733ee3e12f61" @@ -584,58 +634,64 @@ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.6.2.tgz#2669f67c1fae0ae8d8bf696e4263ad52cb98b6f8" integrity sha512-cqULw/QB4yl73cS5Y0TZlQSjDvNkzDbu0FurTZyHlJpWE5T3PCMdnyV+xXoH1opr1ldyHODe3QAX3OMAii5NxA== >>>>>>> e40dc8e... Updated to next Theia. +======= + version "7.7.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.7.4.tgz#51fe458c1c1fa98a8b07934f4ed38b6cd62177a6" + integrity sha512-O8kSkS5fP74Ad/8pfsCMGa8sBRdLxYoSReaARRNSz3FbFQj3z/QUvoUmJ28gn9BO93YfnXc3j+Xyaqe8cKDNBQ== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: - "@babel/helper-module-imports" "^7.0.0" + "@babel/helper-module-imports" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" resolve "^1.8.1" semver "^5.5.1" -"@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.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.6.2.tgz#fc77cf798b24b10c46e1b51b1b88c2bf661bb8dd" - integrity sha512-DpSvPFryKdK1x+EDJYCy28nmAaIMdxmhot62jAXF/o99iA33Zj2Lmcp3vDmz+MUh0LNYVPvfj5iC3feb3/+PFg== +"@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.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.7.0.tgz#743d9bcc44080e3cc7d49259a066efa30f9187a3" - integrity sha512-RrThb0gdrNwFAqEAAx9OWgtx6ICK69x7i9tCnMdVrxQwSDp/Abu9DXFU5Hh16VP33Rmxh04+NGW28NsIkFvFKA== +"@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.0" + "@babel/helper-create-regexp-features-plugin" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" "@babel/preset-env@^7.5.5": +<<<<<<< HEAD <<<<<<< HEAD version "7.7.6" resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.7.6.tgz#39ac600427bbb94eec6b27953f1dfa1d64d457b2" @@ -645,10 +701,18 @@ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.7.1.tgz#04a2ff53552c5885cf1083e291c8dd5490f744bb" integrity sha512-/93SWhi3PxcVTDpSqC+Dp4YxUu3qZ4m7I76k0w73wYfn7bGVuRIO4QUz95aJksbS+AD1/mT1Ie7rbkT0wSplaA== >>>>>>> e40dc8e... Updated to next Theia. +======= + 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== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: - "@babel/helper-module-imports" "^7.7.0" + "@babel/helper-module-imports" "^7.7.4" "@babel/helper-plugin-utils" "^7.0.0" <<<<<<< HEAD +<<<<<<< HEAD +======= +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. "@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" @@ -675,8 +739,13 @@ "@babel/plugin-transform-function-name" "^7.7.4" "@babel/plugin-transform-literals" "^7.7.4" "@babel/plugin-transform-member-expression-literals" "^7.7.4" +<<<<<<< HEAD "@babel/plugin-transform-modules-amd" "^7.7.5" "@babel/plugin-transform-modules-commonjs" "^7.7.5" +======= + "@babel/plugin-transform-modules-amd" "^7.7.4" + "@babel/plugin-transform-modules-commonjs" "^7.7.4" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. "@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" @@ -684,7 +753,11 @@ "@babel/plugin-transform-object-super" "^7.7.4" "@babel/plugin-transform-parameters" "^7.7.4" "@babel/plugin-transform-property-literals" "^7.7.4" +<<<<<<< HEAD "@babel/plugin-transform-regenerator" "^7.7.5" +======= + "@babel/plugin-transform-regenerator" "^7.7.4" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. "@babel/plugin-transform-reserved-words" "^7.7.4" "@babel/plugin-transform-shorthand-properties" "^7.7.4" "@babel/plugin-transform-spread" "^7.7.4" @@ -693,6 +766,7 @@ "@babel/plugin-transform-typeof-symbol" "^7.7.4" "@babel/plugin-transform-unicode-regex" "^7.7.4" "@babel/types" "^7.7.4" +<<<<<<< HEAD ======= "@babel/plugin-proposal-async-generator-functions" "^7.7.0" "@babel/plugin-proposal-dynamic-import" "^7.7.0" @@ -739,12 +813,15 @@ "@babel/plugin-transform-unicode-regex" "^7.7.0" "@babel/types" "^7.7.1" >>>>>>> e40dc8e... Updated to next Theia. +======= +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. browserslist "^4.6.0" core-js-compat "^3.4.7" invariant "^2.2.2" js-levenshtein "^1.1.3" semver "^5.5.0" +<<<<<<< HEAD <<<<<<< HEAD "@babel/runtime@^7.1.2", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2": version "7.7.6" @@ -752,6 +829,9 @@ integrity sha512-BWAJxpNVa0QlE5gZdWjSxXtemZyZ9RmrmVozxt3NUXeZhVIJ5ANyqmMc0JDrivBZyxUuQvFxlvH4OWWOogGfUw== ======= "@babel/runtime@^7.1.2", "@babel/runtime@^7.4.4", "@babel/runtime@^7.7.2": +======= +"@babel/runtime@^7.1.2", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2": +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. version "7.7.4" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.4.tgz#b23a856751e4bf099262f867767889c0e3fe175b" integrity sha512-r24eVUUr0QqNZa+qrImUk8fn5SPhHq+IfYvIoIMg0do3GdK9sMdiLKP3GYVVaxpPKORgm8KRKaNTEhAjgIpLMw== @@ -759,41 +839,34 @@ dependencies: regenerator-runtime "^0.13.2" -"@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3": - version "7.7.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.2.tgz#111a78002a5c25fc8e3361bedc9529c696b85a6a" - integrity sha512-JONRbXbTXc9WQE2mAZd1p0Z3DZ/6vaQIkgYMSTP3KjRCyd7rCZCcfhCyX+YjwcKxcZ82UrxbRD358bpExNgrjw== - dependencies: - regenerator-runtime "^0.13.2" - -"@babel/template@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.7.0.tgz#4fadc1b8e734d97f56de39c77de76f2562e597d0" - integrity sha512-OKcwSYOW1mhWbnTBgQY5lvg1Fxg+VyfQGjcBduZFljfc044J5iDlnDSfhQ867O17XHiSCxYHUxHg2b7ryitbUQ== +"@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.7.0" - "@babel/types" "^7.7.0" + "@babel/parser" "^7.7.4" + "@babel/types" "^7.7.4" -"@babel/traverse@^7.7.0", "@babel/traverse@^7.7.2": - version "7.7.2" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.2.tgz#ef0a65e07a2f3c550967366b3d9b62a2dcbeae09" - integrity sha512-TM01cXib2+rgIZrGJOLaHV/iZUAxf4A0dt5auY6KNZ+cm6aschuJGqKJM3ROTt3raPUdIDk9siAufIFEleRwtw== +"@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.2" - "@babel/helper-function-name" "^7.7.0" - "@babel/helper-split-export-declaration" "^7.7.0" - "@babel/parser" "^7.7.2" - "@babel/types" "^7.7.2" + "@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.13" -"@babel/types@^7.7.0", "@babel/types@^7.7.1", "@babel/types@^7.7.2": - version "7.7.2" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.2.tgz#550b82e5571dcd174af576e23f0adba7ffc683f7" - integrity sha512-YTf6PXoh3+eZgRCBzzP25Bugd2ngmpQVrk7kXX0i5N9BO7TFBtIgZYs7WtxtOGs8e6A4ZI7ECkbBCEHeXocvOA== +"@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.13" @@ -1796,6 +1869,7 @@ "@phosphor/virtualdom" "^1.2.0" "@primer/octicons-react@^9.0.0": +<<<<<<< HEAD <<<<<<< HEAD version "9.3.1" resolved "https://registry.yarnpkg.com/@primer/octicons-react/-/octicons-react-9.3.1.tgz#f38812d387373383d40bb490b56d04eaddfbd5fe" @@ -1805,6 +1879,11 @@ resolved "https://registry.yarnpkg.com/@primer/octicons-react/-/octicons-react-9.2.0.tgz#76446c36346fef67cbf91c78bd329c8f860c35d5" integrity sha512-IWY8tJ6j40R5ks6KYORxVxBsmKax/ttXcH7SyHfku0IrYYc/3TSwaPhUDh9hGKDoyE9TUmrku101XJgCbfKhmg== >>>>>>> e40dc8e... Updated to next Theia. +======= + version "9.3.1" + resolved "https://registry.yarnpkg.com/@primer/octicons-react/-/octicons-react-9.3.1.tgz#f38812d387373383d40bb490b56d04eaddfbd5fe" + integrity sha512-UOxcHuGAJ4YvmWodrgBnx44z/bPiD2C/TD7HlOB3BvvT9ozAOwoEm7lKKQqPo9SeDLu73ZsfbFl1AvnBuspzmQ== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: prop-types "^15.6.1" @@ -1825,6 +1904,7 @@ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd" integrity sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow== +<<<<<<< HEAD <<<<<<< HEAD "@theia/application-manager@0.14.0-next.0159cd5b": version "0.14.0-next.0159cd5b" @@ -1836,16 +1916,26 @@ resolved "https://registry.yarnpkg.com/@theia/application-manager/-/application-manager-0.14.0-next.d5c81105.tgz#e8ea3e9e1f737313cb51367c609f0b07a85dc527" integrity sha512-phWXMre1ZZF+XCDtBIu0intveQ2Vu+ErJ6R4dXpK7UWhi4uS1vo4SwVGdaI3CVtXwoLcuvlHhLeENGnf7GBvBg== >>>>>>> e40dc8e... Updated to next Theia. +======= +"@theia/application-manager@0.14.0-next.b6daa53a": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/application-manager/-/application-manager-0.14.0-next.b6daa53a.tgz#ddbe7a1738a9644b250a4739fa6be4e09e967eb6" + integrity sha512-t3zREnqDhn3gig6TJAn1X8dIBsFslUy0Sh6gyKNvTfh3CTWQKf33qyzzksz60pCoqPdxd6h/1gWk8yvE73CH3g== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: "@babel/core" "^7.5.5" "@babel/plugin-transform-classes" "^7.5.5" "@babel/plugin-transform-runtime" "^7.5.5" "@babel/preset-env" "^7.5.5" +<<<<<<< HEAD <<<<<<< HEAD "@theia/application-package" "0.14.0-next.0159cd5b" ======= "@theia/application-package" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= + "@theia/application-package" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. "@theia/compression-webpack-plugin" "^3.0.0" "@types/fs-extra" "^4.0.2" babel-loader "^8.0.6" @@ -1867,6 +1957,7 @@ webpack-cli "2.0.12" worker-loader "^1.1.1" +<<<<<<< HEAD <<<<<<< HEAD "@theia/application-package@0.14.0-next.0159cd5b", "@theia/application-package@next": version "0.14.0-next.0159cd5b" @@ -1878,6 +1969,12 @@ resolved "https://registry.yarnpkg.com/@theia/application-package/-/application-package-0.14.0-next.d5c81105.tgz#f5d64170b95fdbfc51643920cbb041d747b24c21" integrity sha512-11yuVHdF5LbqbVqcbETh54Qnk3b4YQMG1LrDLwvxwb77FYvmQq21c8QvFo91e13C7edR08L6zd950EcuxMxU8Q== >>>>>>> e40dc8e... Updated to next Theia. +======= +"@theia/application-package@0.14.0-next.b6daa53a", "@theia/application-package@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/application-package/-/application-package-0.14.0-next.b6daa53a.tgz#03fda7343376b4363fc0561e6e951bc7360efa1c" + integrity sha512-OlFol/7bNduyAvCgsJ9s2yd6MTusKkwaaxyNxGyDNa/VZ/KtkPgOasMvGc/SlPqPZq0VrsR4dPsYtNyrgHqQGA== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: "@types/fs-extra" "^4.0.2" "@types/request" "^2.0.3" @@ -1891,6 +1988,7 @@ write-json-file "^2.2.0" "@theia/cli@next": +<<<<<<< HEAD <<<<<<< HEAD version "0.14.0-next.0159cd5b" resolved "https://registry.yarnpkg.com/@theia/cli/-/cli-0.14.0-next.0159cd5b.tgz#84ad3d65f7db7a004daabf954bba3164cc399138" @@ -1906,6 +2004,14 @@ "@theia/application-manager" "0.14.0-next.d5c81105" "@theia/application-package" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/cli/-/cli-0.14.0-next.b6daa53a.tgz#dac05c755ef61fca845a40e0cf22979b02161253" + integrity sha512-ww+T0LDJe63Wx7HADfH3q+nbHpYseldepfLmrUBiqPR9Lu/9L21YZ515mdpESm4PZ3drmAyUgPnluDqzzTW9Kw== + dependencies: + "@theia/application-manager" "0.14.0-next.b6daa53a" + "@theia/application-package" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. yargs "^11.1.0" "@theia/compression-webpack-plugin@^3.0.0": @@ -1920,6 +2026,7 @@ serialize-javascript "^1.4.0" webpack-sources "^1.0.1" +<<<<<<< HEAD <<<<<<< HEAD "@theia/core@0.14.0-next.0159cd5b", "@theia/core@next": version "0.14.0-next.0159cd5b" @@ -1931,15 +2038,25 @@ resolved "https://registry.yarnpkg.com/@theia/core/-/core-0.14.0-next.d5c81105.tgz#5eefa912001dd69dcb2156c9b812ba7a420720b8" integrity sha512-jPclNVybKWqEONFX5z1ot1IQtZb7YK4MkJNEnw/g1euewbJ3gUCY4A0/fNACA8xkLxNxz0uEpz7Cleh+EIhQOw== >>>>>>> e40dc8e... Updated to next Theia. +======= +"@theia/core@0.14.0-next.b6daa53a", "@theia/core@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/core/-/core-0.14.0-next.b6daa53a.tgz#863cea06c8683c88b7fad6bbca34072db32e7d74" + integrity sha512-Wgpc6/XKDXhtOVPSB6lbsBHnIq74Yt7l5xiYMTeIg+PlYm/zJPLf9MPyslWQAiN5p7BsCUWOlwkQvmMa0IAXhw== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: "@babel/runtime" "^7.5.5" "@phosphor/widgets" "^1.9.3" "@primer/octicons-react" "^9.0.0" +<<<<<<< HEAD <<<<<<< HEAD "@theia/application-package" "0.14.0-next.0159cd5b" ======= "@theia/application-package" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= + "@theia/application-package" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. "@types/body-parser" "^1.16.4" "@types/express" "^4.16.0" "@types/fs-extra" "^4.0.2" @@ -1999,6 +2116,7 @@ "@theia/workspace" next string-argv "^0.1.1" +<<<<<<< HEAD <<<<<<< HEAD "@theia/editor@0.14.0-next.0159cd5b", "@theia/editor@next": version "0.14.0-next.0159cd5b" @@ -2018,10 +2136,21 @@ "@theia/languages" "0.14.0-next.d5c81105" "@theia/variable-resolver" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= +"@theia/editor@0.14.0-next.b6daa53a", "@theia/editor@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/editor/-/editor-0.14.0-next.b6daa53a.tgz#47092d68639f5d4a0acd6b0ad473d205971a661c" + integrity sha512-bmCwwbbsgSwA50kaA/QjjkaczA5wjDaTYQRZcoaHl16mIFDUuaaN1z9BNVmx2nLwuDLuN2Pk8hvQPx/ZmnmihA== + dependencies: + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/languages" "0.14.0-next.b6daa53a" + "@theia/variable-resolver" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. "@types/base64-arraybuffer" "0.1.0" base64-arraybuffer "^0.1.5" "@theia/electron@next": +<<<<<<< HEAD <<<<<<< HEAD version "0.14.0-next.0159cd5b" resolved "https://registry.yarnpkg.com/@theia/electron/-/electron-0.14.0-next.0159cd5b.tgz#56a48f794a71b1f95e4cd046e69fa4faa4f80902" @@ -2031,6 +2160,11 @@ resolved "https://registry.yarnpkg.com/@theia/electron/-/electron-0.14.0-next.d5c81105.tgz#197c4554b048b1846b7ee49adce4caaecf7db59b" integrity sha512-QftSt1UaAdK/z9olRMszK3cDV0rdhDE0UNP1v9TA3VeEQ9sV+MUk0uVFghi0zFVIF/fukq239bsWioulX2EkCg== >>>>>>> e40dc8e... Updated to next Theia. +======= + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/electron/-/electron-0.14.0-next.b6daa53a.tgz#ad949c10285b31a27f421bdc16a2c51203137768" + integrity sha512-LaR/aOnB0ImBacgyB9be43D0fLBCr/diddPJCzyWqksa0ekhaoxA366MRMCbyfYofVo3H+caRcb3avMasd9gMA== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: electron "^4.2.11" electron-download "^4.1.1" @@ -2042,6 +2176,7 @@ yargs "^11.1.0" "@theia/file-search@next": +<<<<<<< HEAD <<<<<<< HEAD version "0.14.0-next.0159cd5b" resolved "https://registry.yarnpkg.com/@theia/file-search/-/file-search-0.14.0-next.0159cd5b.tgz#287a5d96b4d8a24f5fc7d7b080fa9c369a96cc4a" @@ -2072,17 +2207,33 @@ "@theia/filesystem" "0.14.0-next.d5c81105" "@theia/process" "0.14.0-next.d5c81105" "@theia/workspace" "0.14.0-next.d5c81105" +======= + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/file-search/-/file-search-0.14.0-next.b6daa53a.tgz#90877316594261b4add099856da3057febd8aa71" + integrity sha512-sihbmacQ+unnBS8ZrSFUivHfqkp6Jn0ENNw8SIRdwtKhTNrdRCKpI04aVUPjKChMVKluJp536JDR/6H+kFV77w== + dependencies: + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/editor" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" + "@theia/process" "0.14.0-next.b6daa53a" + "@theia/workspace" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. fuzzy "^0.1.3" vscode-ripgrep "^1.2.4" -"@theia/filesystem@0.14.0-next.d5c81105", "@theia/filesystem@next": - version "0.14.0-next.d5c81105" - resolved "https://registry.yarnpkg.com/@theia/filesystem/-/filesystem-0.14.0-next.d5c81105.tgz#1c3c209550d7d2ef7d4c2b2795423661faa76d92" - integrity sha512-6dIlGTcwL7PjK21NIjNDHhakcQrG37SPo/Xmwd0HrUT8oNdgVFLMW17syz6MB37R3hFtn3JdI4eIrLUfOaRgQg== +"@theia/filesystem@0.14.0-next.b6daa53a", "@theia/filesystem@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/filesystem/-/filesystem-0.14.0-next.b6daa53a.tgz#80d678046ffc698043f8a0f191a03c7995f19ebf" + integrity sha512-REQvRDJ5WLwOdW3+yp8ED3bUmHbmJxedK6GUUqKideUh9T7wYiQt2OWbKpc4mtR5z3FWDh5uXMOx/Jp9UFbIzA== dependencies: +<<<<<<< HEAD "@theia/application-package" "0.14.0-next.d5c81105" "@theia/core" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= + "@theia/application-package" "0.14.0-next.b6daa53a" + "@theia/core" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. "@types/body-parser" "^1.17.0" "@types/rimraf" "^2.0.2" "@types/tar-fs" "^1.16.1" @@ -2103,6 +2254,7 @@ zip-dir "^1.0.2" "@theia/git@next": +<<<<<<< HEAD <<<<<<< HEAD version "0.14.0-next.0159cd5b" resolved "https://registry.yarnpkg.com/@theia/git/-/git-0.14.0-next.0159cd5b.tgz#6e8971e74114ccb391bb43f25ff3ef19289c66a4" @@ -2128,6 +2280,19 @@ "@theia/scm" "0.14.0-next.d5c81105" "@theia/workspace" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/git/-/git-0.14.0-next.b6daa53a.tgz#842b0600834d47e3023e8c5f032986873c91bfdb" + integrity sha512-M2yeE74cp4/vHj+pvrU/0AlhSUflY8SY/FrLw/TSTvrK9OQmcwnO7ec0UjtF6Qxa+KXYHBGPQr4LlRfM+20rMg== + dependencies: + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/editor" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" + "@theia/languages" "0.14.0-next.b6daa53a" + "@theia/navigator" "0.14.0-next.b6daa53a" + "@theia/scm" "0.14.0-next.b6daa53a" + "@theia/workspace" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. "@types/diff" "^3.2.2" "@types/p-queue" "^2.3.1" diff "^3.4.0" @@ -2139,6 +2304,7 @@ p-queue "^2.4.2" ts-md5 "^1.2.2" +<<<<<<< HEAD <<<<<<< HEAD "@theia/json@0.14.0-next.0159cd5b": version "0.14.0-next.0159cd5b" @@ -2166,28 +2332,43 @@ version "0.14.0-next.d5c81105" resolved "https://registry.yarnpkg.com/@theia/json/-/json-0.14.0-next.d5c81105.tgz#0dac3e0910d86cddf063c4c799066053a4158a13" integrity sha512-xK0FkiIqXDPU4CCex19NRMEjc03oJ00g9iMsHvv96GplsvKfjdqL/QlsrAZoaRJPRoU9gDivy+kNsCA78LXNDg== +======= +"@theia/json@0.14.0-next.b6daa53a": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/json/-/json-0.14.0-next.b6daa53a.tgz#7f139c28c4e2922f1043e456b04d5a93c2a0dbc8" + integrity sha512-ZxqV/CfFfkypxm9IFy8LmXuUSXB231ua/ReNWXwNYMZiuxgsx4sSM/fTQz6ouDQhGsqx0KEtMtjLiF2w+JmD4A== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: - "@theia/application-package" "0.14.0-next.d5c81105" - "@theia/core" "0.14.0-next.d5c81105" - "@theia/languages" "0.14.0-next.d5c81105" - "@theia/monaco" "0.14.0-next.d5c81105" + "@theia/application-package" "0.14.0-next.b6daa53a" + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/languages" "0.14.0-next.b6daa53a" + "@theia/monaco" "0.14.0-next.b6daa53a" vscode-json-languageserver "^1.2.1" -"@theia/languages@0.14.0-next.d5c81105", "@theia/languages@next": - version "0.14.0-next.d5c81105" - resolved "https://registry.yarnpkg.com/@theia/languages/-/languages-0.14.0-next.d5c81105.tgz#6fbec6eb2e151c6ac6bc8e204e5c17d63a1d77c0" - integrity sha512-vy245cubHhCB0OFpaNN97WpqqwegLeDlPDhJj+2fWUndW5Go1ksykAF6TSRik9UIU6hWLvtMNJ+WuOnrZUdJ5A== +"@theia/languages@0.14.0-next.b6daa53a", "@theia/languages@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/languages/-/languages-0.14.0-next.b6daa53a.tgz#1bc2f0907c9c56aa2ca9e1595f36582279f24752" + integrity sha512-GgLmxdQaM8LpnCRsWdS2lYhV0wtxM+ffuj+/eHt+jbT0U6IP0JUTLfnR9qu66nfyVfxxAmaic771QfhIkg6nfQ== dependencies: +<<<<<<< HEAD "@theia/core" "0.14.0-next.d5c81105" "@theia/output" "0.14.0-next.d5c81105" "@theia/process" "0.14.0-next.d5c81105" "@theia/workspace" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= + "@theia/application-package" "0.14.0-next.b6daa53a" + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/output" "0.14.0-next.b6daa53a" + "@theia/process" "0.14.0-next.b6daa53a" + "@theia/workspace" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. "@typefox/monaco-editor-core" "^0.18.0-next" "@types/uuid" "^3.4.3" monaco-languageclient "^0.10.2" uuid "^3.2.1" +<<<<<<< HEAD <<<<<<< HEAD "@theia/markers@0.14.0-next.0159cd5b", "@theia/markers@next": version "0.14.0-next.0159cd5b" @@ -2210,24 +2391,35 @@ version "0.14.0-next.d5c81105" resolved "https://registry.yarnpkg.com/@theia/markers/-/markers-0.14.0-next.d5c81105.tgz#19ce39f23b98b42594ef3192b903e25102235537" integrity sha512-AAYc4CVFFsccvtL32xQkzX2IP9TOrhhUBm+8YIxMQvl7MIck3UiQk22Wvp9MsFcEwlC9Dk6WKTdiuRCZwrgkrA== +======= +"@theia/markers@0.14.0-next.b6daa53a", "@theia/markers@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/markers/-/markers-0.14.0-next.b6daa53a.tgz#2810b445b54a45d7eedb7464b49835ba531a4ac6" + integrity sha512-3blDnyOowV3HjMxyqVxhmurgNBRi5zSw3ugE4JCN9ztFZJ4KCpmAAcMMPiva6MrepSxwG72DowXq3fuzMhMY6Q== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: - "@theia/core" "0.14.0-next.d5c81105" - "@theia/filesystem" "0.14.0-next.d5c81105" - "@theia/navigator" "0.14.0-next.d5c81105" - "@theia/workspace" "0.14.0-next.d5c81105" + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" + "@theia/navigator" "0.14.0-next.b6daa53a" + "@theia/workspace" "0.14.0-next.b6daa53a" "@theia/messages@next": - version "0.14.0-next.d5c81105" - resolved "https://registry.yarnpkg.com/@theia/messages/-/messages-0.14.0-next.d5c81105.tgz#aa01811e3d90560ac9f997231fb7331e2dd27ac3" - integrity sha512-G0wJR5TinXJXjQ8jeiOBBp/WTOYztjNj2pI7fq5eQT7zMOKC0wr4zSqR+yYxK3jGVXYe7XWGzCTk6XXCVwCsnQ== + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/messages/-/messages-0.14.0-next.b6daa53a.tgz#2a55e1ad97bf59c91ff563b46ec80036bd2e89c1" + integrity sha512-0sBEEsq//UJvpIGIwj+WXYwWQVEUTr07ZBZ1Vm4v1FxQ3q1ymNR1JMtj6lY5a46ZSNVnYxaWUBIw8VFfQkT5pw== dependencies: +<<<<<<< HEAD "@theia/core" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= + "@theia/core" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. lodash.throttle "^4.1.1" markdown-it "^8.4.0" react-perfect-scrollbar "^1.5.3" ts-md5 "^1.2.2" +<<<<<<< HEAD <<<<<<< HEAD "@theia/monaco@0.14.0-next.0159cd5b", "@theia/monaco@next": version "0.14.0-next.0159cd5b" @@ -2255,6 +2447,20 @@ "@theia/outline-view" "0.14.0-next.d5c81105" "@theia/workspace" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= +"@theia/monaco@0.14.0-next.b6daa53a", "@theia/monaco@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/monaco/-/monaco-0.14.0-next.b6daa53a.tgz#50544794f0425ebf86e5ee3bcfd81d62e39563ee" + integrity sha512-p7gsrMDjuSDW1AF55bi+kG4j7qHSULmdQ8O44luEAqE/lG8ELNQetOA0sUfYQYrM3LM5DakYGOEzQKGsZwoGtQ== + dependencies: + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/editor" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" + "@theia/languages" "0.14.0-next.b6daa53a" + "@theia/markers" "0.14.0-next.b6daa53a" + "@theia/outline-view" "0.14.0-next.b6daa53a" + "@theia/workspace" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. deepmerge "2.0.1" jsonc-parser "^2.0.2" monaco-css "^2.5.0" @@ -2262,6 +2468,7 @@ onigasm "2.2.1" vscode-textmate "^4.0.1" +<<<<<<< HEAD <<<<<<< HEAD "@theia/navigator@0.14.0-next.0159cd5b", "@theia/navigator@next": version "0.14.0-next.0159cd5b" @@ -2281,6 +2488,16 @@ "@theia/filesystem" "0.14.0-next.d5c81105" "@theia/workspace" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= +"@theia/navigator@0.14.0-next.b6daa53a", "@theia/navigator@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/navigator/-/navigator-0.14.0-next.b6daa53a.tgz#0f07e66d75ded603d13413eab392a3df497ff70b" + integrity sha512-nkF8YZ2IeDu5X0/AikFgkd3iCfUcvWMaaHLhWuRcSowfUV9XKUTVLvR2odKrLMLT43YCOOFmGG4nWULydeMw6g== + dependencies: + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" + "@theia/workspace" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. fuzzy "^0.1.3" minimatch "^3.0.4" @@ -2291,6 +2508,7 @@ dependencies: nan "2.10.0" +<<<<<<< HEAD <<<<<<< HEAD "@theia/outline-view@0.14.0-next.0159cd5b", "@theia/outline-view@next": version "0.14.0-next.0159cd5b" @@ -2343,49 +2561,62 @@ version "0.14.0-next.d5c81105" resolved "https://registry.yarnpkg.com/@theia/outline-view/-/outline-view-0.14.0-next.d5c81105.tgz#6467284cafb912a5139edea2f77d4ae98d8268d7" integrity sha512-sI336H9PJY7wf51/PFbK+Y3yf6hXDRrY8F35eN+vBpZ+cv84OvzH0gqmWdbZ4EHf6A1XZ5eU0GTcI8z+C5Axdg== +======= +"@theia/outline-view@0.14.0-next.b6daa53a", "@theia/outline-view@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/outline-view/-/outline-view-0.14.0-next.b6daa53a.tgz#9203e3fc38faf24c8b39aef6cd9fce42bcdfbc59" + integrity sha512-PaKUYd2rTVeyDV+yju2A5SnHNw1Z+HgU3lrvSHhm2Bl259sEuTSx97Oo5LZvHiVzrBAzr9URyVc14XRzfagrxA== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: - "@theia/core" "0.14.0-next.d5c81105" + "@theia/core" "0.14.0-next.b6daa53a" -"@theia/output@0.14.0-next.d5c81105": - version "0.14.0-next.d5c81105" - resolved "https://registry.yarnpkg.com/@theia/output/-/output-0.14.0-next.d5c81105.tgz#4b3a8d272595a2d4c16ed99c36b3ea4eb064dcac" - integrity sha512-R3mWOyTEiDzy0bNUkQCidYaqDxWyUIxotHDdOUbsVUeQD8Gke29L7VNmP2yp7IGgZ3+mQ6M/3Do1Zg9rLpqvrQ== +"@theia/output@0.14.0-next.b6daa53a": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/output/-/output-0.14.0-next.b6daa53a.tgz#3a62dcb5f8a38b17b883c7c6fa1b5e1567b90b7f" + integrity sha512-UGZpQB2mlWhZb/5pbvn5w+POJzXZ2KOQHuSy0juA2iNeo19dKVWZYdh+pRAuw5TtSJ52F4zaT1oczJk1rfTDRg== dependencies: - "@theia/core" "0.14.0-next.d5c81105" + "@theia/core" "0.14.0-next.b6daa53a" -"@theia/preferences@0.14.0-next.d5c81105", "@theia/preferences@next": - version "0.14.0-next.d5c81105" - resolved "https://registry.yarnpkg.com/@theia/preferences/-/preferences-0.14.0-next.d5c81105.tgz#04eaebd185f96ebd01bea90f5562c72242a508ca" - integrity sha512-9RculF0WanX38wObWEjCHw9ALRp4SKOwjUPbeipnthN2zXUU/g7NPTIu8GLLf5TY/Uh9Sgx7zH4XeQ/Q2DnPhA== +"@theia/preferences@0.14.0-next.b6daa53a", "@theia/preferences@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/preferences/-/preferences-0.14.0-next.b6daa53a.tgz#0806f9386271ceabb1f45590693079b0a3117af8" + integrity sha512-2UWtOTzfM/M3D2YVNzBys8+qrugz1WEpl8ToQr5mi3SCpZCq8mmL2ZfzxmLLoQTZawWT7IIzeW05m3IIXiBs1g== dependencies: - "@theia/core" "0.14.0-next.d5c81105" - "@theia/editor" "0.14.0-next.d5c81105" - "@theia/filesystem" "0.14.0-next.d5c81105" - "@theia/json" "0.14.0-next.d5c81105" - "@theia/monaco" "0.14.0-next.d5c81105" - "@theia/userstorage" "0.14.0-next.d5c81105" - "@theia/workspace" "0.14.0-next.d5c81105" + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/editor" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" + "@theia/json" "0.14.0-next.b6daa53a" + "@theia/monaco" "0.14.0-next.b6daa53a" + "@theia/userstorage" "0.14.0-next.b6daa53a" + "@theia/workspace" "0.14.0-next.b6daa53a" jsonc-parser "^2.0.2" -"@theia/process@0.14.0-next.d5c81105", "@theia/process@next": - version "0.14.0-next.d5c81105" - resolved "https://registry.yarnpkg.com/@theia/process/-/process-0.14.0-next.d5c81105.tgz#969c6a8d8f432e20c998eeec0d992bb7003c2fb3" - integrity sha512-eX26TwX7rE6VUKEjD67PG2zj6mnSrBHG9P6aqTcT0kWmxil7zBAcvMoH5/G+cwj6Zpmup7yjtmpu+RFCBeL//Q== +"@theia/process@0.14.0-next.b6daa53a", "@theia/process@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/process/-/process-0.14.0-next.b6daa53a.tgz#9170ad9ecbc3853e81db40f7f7deaa0e350592bd" + integrity sha512-xUIPO3YcZ4PfjtBZSXAkOOmMtW8hJC0U4gzYWcc33v9OcXZnZtH5R48zn046iAcxCU/IWaVEIfn0GfEh0OB+rA== dependencies: - "@theia/core" "0.14.0-next.d5c81105" + "@theia/core" "0.14.0-next.b6daa53a" "@theia/node-pty" "0.7.8-theia004" string-argv "^0.1.1" -"@theia/scm@0.14.0-next.d5c81105": - version "0.14.0-next.d5c81105" - resolved "https://registry.yarnpkg.com/@theia/scm/-/scm-0.14.0-next.d5c81105.tgz#e6e328bbca79bd7ace95db884477e16a30b09215" - integrity sha512-bM2zLlNdd4O8430NO7wkH4Kx9lVfHmwpFQLFyEeg33pGQLVkeW8DGDF/7WKWSvlxMWV2a4DBZErGKTq6nU+3yQ== +"@theia/scm@0.14.0-next.b6daa53a": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/scm/-/scm-0.14.0-next.b6daa53a.tgz#ccab1b221a74ba0b6c6a951d24c5ea2912f0ff78" + integrity sha512-Ph4WKLcx2L3lPOA0A2ro6UeOL0zNTpYNcvbnard4ZLZpbGMH5e+QvQqq4QA6bc3d9OfJdPF1RI5ANOoM0VB32A== dependencies: +<<<<<<< HEAD "@theia/core" "0.14.0-next.d5c81105" "@theia/editor" "0.14.0-next.d5c81105" "@theia/filesystem" "0.14.0-next.d5c81105" "@theia/navigator" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/editor" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" + "@theia/navigator" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. "@types/diff" "^3.2.2" "@types/p-debounce" "^1.0.1" diff "^3.4.0" @@ -2394,6 +2625,7 @@ ts-md5 "^1.2.2" "@theia/search-in-workspace@next": +<<<<<<< HEAD <<<<<<< HEAD version "0.14.0-next.0159cd5b" resolved "https://registry.yarnpkg.com/@theia/search-in-workspace/-/search-in-workspace-0.14.0-next.0159cd5b.tgz#46bcb8a401ba7c12fd8c02832e1241b19d9d05cd" @@ -2451,11 +2683,41 @@ "@theia/variable-resolver" "0.14.0-next.d5c81105" "@theia/workspace" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/search-in-workspace/-/search-in-workspace-0.14.0-next.b6daa53a.tgz#489f451a10c57342c2eae0a3829c021096debb07" + integrity sha512-BMyRh/qnQh3OD2LehmRiQ9yAM/SaOBv59hBAmfreqPGpNXWDcMQ9fwwvflN6ct5DSuYct11GXY5ZzdMQkIdKvg== + dependencies: + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/editor" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" + "@theia/navigator" "0.14.0-next.b6daa53a" + "@theia/process" "0.14.0-next.b6daa53a" + "@theia/workspace" "0.14.0-next.b6daa53a" + vscode-ripgrep "^1.2.4" + +"@theia/task@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/task/-/task-0.14.0-next.b6daa53a.tgz#9590185056fa338355ae6376f7392e6799059b0e" + integrity sha512-4viikbDqhgxZymp7/1YXyklnig7vEqUaSuZhdtr+jG3sKXLX0QsIR7cFornG3oBUivnlcNFtZl2/0M7xmYiFng== + dependencies: + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/editor" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" + "@theia/markers" "0.14.0-next.b6daa53a" + "@theia/monaco" "0.14.0-next.b6daa53a" + "@theia/preferences" "0.14.0-next.b6daa53a" + "@theia/process" "0.14.0-next.b6daa53a" + "@theia/terminal" "0.14.0-next.b6daa53a" + "@theia/variable-resolver" "0.14.0-next.b6daa53a" + "@theia/workspace" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. ajv "^6.5.3" jsonc-parser "^2.0.2" p-debounce "^2.1.0" vscode-uri "^1.0.8" +<<<<<<< HEAD <<<<<<< HEAD "@theia/terminal@0.14.0-next.0159cd5b", "@theia/terminal@next": version "0.14.0-next.0159cd5b" @@ -2505,46 +2767,58 @@ version "0.14.0-next.d5c81105" resolved "https://registry.yarnpkg.com/@theia/terminal/-/terminal-0.14.0-next.d5c81105.tgz#03aba17ed70c590a853ac541c02e085b53774819" integrity sha512-xW/lTkhjLSR6UyCGA4FzOPBsLboZE7anKhI7YV9MVH/jIF2nUgIZtIXhtNTfuD5f4hiR0fa0lH4XO6qdt9lbjA== +======= +"@theia/terminal@0.14.0-next.b6daa53a", "@theia/terminal@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/terminal/-/terminal-0.14.0-next.b6daa53a.tgz#518353ed3495e1c70289233ede162dc0ed647f88" + integrity sha512-PLVTJ4KoBy1QlgqTf/27RqcQk0k25nKvFI+FZYjF8oa2q8Mn6Wfc0iYkLg2DOwFNO1sdrmYJOrDzGr5fEA/W/g== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: - "@theia/core" "0.14.0-next.d5c81105" - "@theia/editor" "0.14.0-next.d5c81105" - "@theia/filesystem" "0.14.0-next.d5c81105" - "@theia/process" "0.14.0-next.d5c81105" - "@theia/workspace" "0.14.0-next.d5c81105" + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/editor" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" + "@theia/process" "0.14.0-next.b6daa53a" + "@theia/workspace" "0.14.0-next.b6daa53a" xterm "3.13.0" "@theia/textmate-grammars@next": - version "0.14.0-next.d5c81105" - resolved "https://registry.yarnpkg.com/@theia/textmate-grammars/-/textmate-grammars-0.14.0-next.d5c81105.tgz#5a8578426cc4d2b7f5bb4a9f2b1ddef26d77d09d" - integrity sha512-ueMkjOwLyHyQIiFBMFAAea5irWSVxdKefOSyYWjSOfLX6syTbWUzZlnuzxjZYWyHJT8Vtr1hniizxYvhpmq6Fg== + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/textmate-grammars/-/textmate-grammars-0.14.0-next.b6daa53a.tgz#b1f2323bed621d17dce31b143446ca92f26a0a84" + integrity sha512-xpn3/V+V2bmmJT4JEaoS6EVZ+KV1J/MIrTgjLPfz7X9E0lIdgxDONMZavj/f7VZPbKHd62UYy3ajADo0qribFA== dependencies: - "@theia/monaco" "0.14.0-next.d5c81105" + "@theia/monaco" "0.14.0-next.b6daa53a" vscode-textmate "^4.0.1" -"@theia/userstorage@0.14.0-next.d5c81105": - version "0.14.0-next.d5c81105" - resolved "https://registry.yarnpkg.com/@theia/userstorage/-/userstorage-0.14.0-next.d5c81105.tgz#5514d7def48c171f8b5c98f838860e7dc612fb29" - integrity sha512-2WZ9PLpplBpBRuACnDQGf74tel/wvDcFdhQ9HV2uWKIjTGAU2CLdAsI+ZXYqrEKxnz/0y5N94rVUbAQW1H7vRA== +"@theia/userstorage@0.14.0-next.b6daa53a": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/userstorage/-/userstorage-0.14.0-next.b6daa53a.tgz#a4bea7c1594e0ca3742fcd29175df14fcfe88abd" + integrity sha512-rxxiyutyf0DUxc0b2OFL4/BsNP8brXKWMx4ZuBCU01z8boSLVq5Y/cCBLrIMbybTQeOYUwHyZ+yQ/jLzc2G84g== dependencies: - "@theia/core" "0.14.0-next.d5c81105" - "@theia/filesystem" "0.14.0-next.d5c81105" + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" -"@theia/variable-resolver@0.14.0-next.d5c81105", "@theia/variable-resolver@next": - version "0.14.0-next.d5c81105" - resolved "https://registry.yarnpkg.com/@theia/variable-resolver/-/variable-resolver-0.14.0-next.d5c81105.tgz#2a2571ed5ccae47ca1bd2d81413db7cd37a677e5" - integrity sha512-dsSMB+7l0YQw69ECJv27S9/ZHUIfxHTGmG0wipHdoyJhBoo2R73mRGjqpV0gf3COPHDPpZIhBnBCdItCFrTzIQ== +"@theia/variable-resolver@0.14.0-next.b6daa53a", "@theia/variable-resolver@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/variable-resolver/-/variable-resolver-0.14.0-next.b6daa53a.tgz#2862b7d3816edc6606840c3c81e669e744dbcb37" + integrity sha512-XPJbV7lD19LXSO7v+Gw546LpqomfJ3kuVw2/Rf6UQWUuXVMuxhZNezELTgcWH2w/d1Y7ou4HvUQLflXouUxwxw== dependencies: - "@theia/core" "0.14.0-next.d5c81105" + "@theia/core" "0.14.0-next.b6daa53a" -"@theia/workspace@0.14.0-next.d5c81105", "@theia/workspace@next": - version "0.14.0-next.d5c81105" - resolved "https://registry.yarnpkg.com/@theia/workspace/-/workspace-0.14.0-next.d5c81105.tgz#958a81026a8f55cef3b322881de42138de245236" - integrity sha512-3z4XWWSQbfmO8Cz7K9pJqK5+MjWpymeK8TrrLUIDxzKjhMcHCLoCahrXriST4pS7lOiV8SvKe1rHm+LWMsdxCQ== +"@theia/workspace@0.14.0-next.b6daa53a", "@theia/workspace@next": + version "0.14.0-next.b6daa53a" + resolved "https://registry.yarnpkg.com/@theia/workspace/-/workspace-0.14.0-next.b6daa53a.tgz#e188630efe1236d5f47936dd9cd5edbce661f141" + integrity sha512-bcN9kgf96/sWiQF2uQgKxf+gLnu4fDbwE4ptyT24J8cdbvkHYMhUfWDxL94uIT9bZt1hRaqKctGv/4cIkpbd6g== dependencies: +<<<<<<< HEAD "@theia/core" "0.14.0-next.d5c81105" "@theia/filesystem" "0.14.0-next.d5c81105" "@theia/variable-resolver" "0.14.0-next.d5c81105" >>>>>>> e40dc8e... Updated to next Theia. +======= + "@theia/core" "0.14.0-next.b6daa53a" + "@theia/filesystem" "0.14.0-next.b6daa53a" + "@theia/variable-resolver" "0.14.0-next.b6daa53a" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. ajv "^6.5.3" jsonc-parser "^2.0.2" moment "^2.21.0" @@ -2601,9 +2875,9 @@ integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== "@types/express-serve-static-core@*": - version "4.16.11" - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.16.11.tgz#46e8cb091de19d51731a05c2581e515855979dad" - integrity sha512-K8d2M5t3tBQimkyaYTXxtHYyoJPUEhy2/omVRnTAKw5FEdT+Ft6lTaTOpoJdHeG+mIwQXXtqiTcYZ6IR8LTzjQ== + version "4.17.0" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.0.tgz#e80c25903df5800e926402b7e8267a675c54a281" + integrity sha512-Xnub7w57uvcBqFdIGoRg1KhNOeEj0vB6ykUM7uFWyxvbdE89GFyqgmUcanAriMr4YOxNFZBAWkfcWIb4WBPt3g== dependencies: "@types/node" "*" "@types/range-parser" "*" @@ -2653,9 +2927,9 @@ "@types/lodash" "*" "@types/lodash@*": - version "4.14.146" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.146.tgz#de0d2c8610012f12a6a796455054cbc654f8fecf" - integrity sha512-JzJcmQ/ikHSv7pbvrVNKJU5j9jL9VLf3/gqs048CEnBVVVEv4kve3vLxoPHGvclutS+Il4SBIuQQ087m1eHffw== + 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/mime@*": version "2.0.1" @@ -2667,6 +2941,7 @@ resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== +<<<<<<< HEAD <<<<<<< HEAD "@types/node@*", "@types/node@>= 8": version "12.12.16" @@ -2684,6 +2959,9 @@ integrity sha512-h7VDRFL8IhdPw1JjiNVvhr+WynfKW09q2BOflIOA0yeuXNeXBP1bIRuBrysSryH4keaJ5bYUNp63aIyQL9YpDQ== "@types/node@>= 8": +======= +"@types/node@*", "@types/node@>= 8": +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. version "12.12.14" resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.14.tgz#1c1d6e3c75dba466e0326948d56e8bd72a1903d2" integrity sha512-u/SJDyXwuihpwjXy7hOOghagLEV1KdAST6syfnOk6QZAMzZuWZqXy5aYYZbh8Jdpd4escVFP0MvftHNDb9pruA== @@ -2758,6 +3036,7 @@ "@types/react" "*" "@types/react@*", "@types/react@^16.4.1": +<<<<<<< HEAD <<<<<<< HEAD version "16.9.16" resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.16.tgz#4f12515707148b1f53a8eaa4341dae5dfefb066d" @@ -2767,6 +3046,11 @@ resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.11.tgz#70e0b7ad79058a7842f25ccf2999807076ada120" integrity sha512-UBT4GZ3PokTXSWmdgC/GeCGEJXE5ofWyibCcecRLUVN2ZBpXQGVgQGtG2foS7CrTKFKlQVVswLvf7Js6XA/CVQ== >>>>>>> e40dc8e... Updated to next Theia. +======= + version "16.9.15" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.15.tgz#aeabb7a50f96c9e31a16079ada20ede9ed602977" + integrity sha512-WsmM1b6xQn1tG3X2Hx4F3bZwc2E82pJXt5OPs2YJgg71IzvUoKOSSSYOvLXYCg1ttipM+UuA4Lj3sfvqjVxyZw== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: "@types/prop-types" "*" csstype "^2.2.0" @@ -4404,9 +4688,9 @@ binary@~0.3.0: chainsaw "~0.1.0" binaryextensions@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/binaryextensions/-/binaryextensions-2.1.2.tgz#c83c3d74233ba7674e4f313cb2a2b70f54e94b7c" - integrity sha512-xVNN69YGDghOqCCtA6FI7avYrr02mTJjOgB0/f1VPD3pJC8QEvjTKWc4epDx8AqxxA75NI0QpVM2gPJXUbE4Tg== + version "2.2.0" + resolved "https://registry.yarnpkg.com/binaryextensions/-/binaryextensions-2.2.0.tgz#e7c6ba82d4f5f5758c26078fe8eea28881233311" + integrity sha512-bHhs98rj/7i/RZpCSJ3uk55pLXOItjIrh2sRQZSM6OoktScX+LxJzvlU+FELp9j3TdcddTmmYArLSGptCTwjuw== bindings@^1.3.0: version "1.5.0" @@ -4430,6 +4714,7 @@ block-stream@*: dependencies: inherits "~2.0.0" +<<<<<<< HEAD <<<<<<< HEAD bluebird@^3.5.1, bluebird@^3.5.3, bluebird@^3.5.5: version "3.7.2" @@ -4443,6 +4728,9 @@ bluebird@^3.5.1, bluebird@^3.5.5: >>>>>>> e40dc8e... Updated to next Theia. bluebird@^3.5.3: +======= +bluebird@^3.5.1, bluebird@^3.5.3, bluebird@^3.5.5: +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. version "3.7.2" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== @@ -4578,6 +4866,7 @@ browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: caniuse-db "^1.0.30000639" electron-to-chromium "^1.2.7" +<<<<<<< HEAD <<<<<<< HEAD browserslist@^4.6.0, browserslist@^4.8.2: version "4.8.2" @@ -4597,6 +4886,16 @@ browserslist@^4.6.0, browserslist@^4.7.2: electron-to-chromium "^1.3.295" node-releases "^1.1.38" >>>>>>> e40dc8e... Updated to next Theia. +======= +browserslist@^4.6.0, browserslist@^4.8.0: + version "4.8.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.2.tgz#b45720ad5fbc8713b7253c20766f701c9a694289" + integrity sha512-+M4oeaTplPm/f1pXDw84YohEv7B1i/2Aisei8s4s6k3QsoSHa7i5sz8u/cGQkkatCPxMASKxPualR4wwYgVboA== + dependencies: + caniuse-lite "^1.0.30001015" + electron-to-chromium "^1.3.322" + node-releases "^1.1.42" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. btoa-lite@^1.0.0: version "1.0.0" @@ -4853,6 +5152,7 @@ caniuse-api@^1.5.2: lodash.uniq "^4.5.0" caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: +<<<<<<< HEAD <<<<<<< HEAD version "1.0.30001015" resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30001015.tgz#9f1b4fa158c747dcc04b15f9c5359ddcf0390d90" @@ -4872,6 +5172,16 @@ caniuse-lite@^1.0.30001004: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001008.tgz#b8841b1df78a9f5ed9702537ef592f1f8772c0d9" integrity sha512-b8DJyb+VVXZGRgJUa30cbk8gKHZ3LOZTBLaUEEVr2P4xpmFigOCc62CO4uzquW641Ouq1Rm9N+rWLWdSYDaDIw== >>>>>>> e40dc8e... Updated to next Theia. +======= + version "1.0.30001015" + resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30001015.tgz#9f1b4fa158c747dcc04b15f9c5359ddcf0390d90" + integrity sha512-+Fqdu7tOxSD0HDs922QPxseHlwnUzdjLC1Oq32HZ1/LWrMfYNt8JaUWnoiIAR+G4fRzM3tdgc4Lrqo5Nx76UsQ== + +caniuse-lite@^1.0.30001015: + version "1.0.30001015" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001015.tgz#15a7ddf66aba786a71d99626bc8f2b91c6f0f5f0" + integrity sha512-/xL2AbW/XWHNu1gnIrO8UitBGoFthcsDgU9VLK1/dpsoxbaD5LscHozKze05R6WLsBvLhqv78dAPozMFQBYLbQ== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. caseless@~0.12.0: version "0.12.0" @@ -4925,9 +5235,9 @@ chalk@~0.4.0: strip-ansi "~0.1.0" chance@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chance/-/chance-1.1.3.tgz#414f08634ee479c7a316b569050ea20751b82dd3" - integrity sha512-XeJsdoVAzDb1WRPRuMBesRSiWpW1uNTo5Fd7mYxPJsAfgX71+jfuCOHOdbyBz2uAUZ8TwKcXgWk3DMedFfJkbg== + version "1.1.4" + resolved "https://registry.yarnpkg.com/chance/-/chance-1.1.4.tgz#d8743bf8e40bb05e024c305ca1ff441195eb23db" + integrity sha512-pXPDSu3knKlb6H7ahQfpq//J9mSOxYK8SMtp8MV/nRJh8aLRDIl0ipLH8At8+nVogVwtvPZzyIzY/EbcY/cLuQ== changes-stream@^2.2.0: version "2.2.0" @@ -5484,12 +5794,16 @@ core-js-compat@^3.4.7: browserslist "^4.8.2" ======= core-js-compat@^3.1.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.4.1.tgz#e12c5a3ef9fcb50fd9d9a32805bfe674f9139246" - integrity sha512-YdeJI26gLc0CQJ9asLE5obEgBz2I0+CIgnoTbS2T0d5IPQw/OCgCIFR527RmpduxjrB3gSEHoGOCTq9sigOyfw== + 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: +<<<<<<< HEAD browserslist "^4.7.2" >>>>>>> e40dc8e... Updated to next Theia. +======= + browserslist "^4.8.0" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. semver "^6.3.0" core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0: @@ -5974,9 +6288,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" @@ -6170,7 +6484,7 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" -editions@^2.1.3: +editions@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/editions/-/editions-2.2.0.tgz#dacd0c2a9441ebef592bba316a6264febb337f35" integrity sha512-RYg3iEA2BDLCNVe8PUkD+ox5vAKxB9XS/mAhx1bdxGCF0CpX077C0pyTA9t5D6idCYA3avl5/XDHKPsHFrygfw== @@ -6184,9 +6498,9 @@ ee-first@1.1.1: integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= ejs@^2.5.9: - version "2.7.1" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.1.tgz#5b5ab57f718b79d4aca9254457afecd36fa80228" - integrity sha512-kS/gEPzZs3Y1rRsbGX4UOSjtP/CeJP0CxSNZHYxGfVM/VgLcv0ZqM7C45YyTj2DI2g7+P9Dd24C+IMIg6D0nYQ== + version "2.7.4" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" + integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== electron-download@^4.1.0, electron-download@^4.1.1: version "4.1.1" @@ -6204,16 +6518,16 @@ electron-download@^4.1.0, electron-download@^4.1.1: sumchecker "^2.0.2" electron-rebuild@^1.8.6: - version "1.8.6" - resolved "https://registry.yarnpkg.com/electron-rebuild/-/electron-rebuild-1.8.6.tgz#4454ef5517c0588aef9bca0d923ff5633000b949" - integrity sha512-4BAPcNG0XP6stByqvFXggrjmf/C47P2L6HFFrWdR2ako1VLiTDIeZAOmU4WEBuWdaXYNqstleszVmcNHdRDojA== + version "1.8.8" + resolved "https://registry.yarnpkg.com/electron-rebuild/-/electron-rebuild-1.8.8.tgz#412c1b846e944de6ff022aab3f5afd0f5e637f35" + integrity sha512-9a/VGbVpTJcuBaZa8yMcegqJ5flGPYDo363AxXDMxY4ZHPtFMLedGzQW9+720SIS1cvjX8B0zC+vMHO75ncOiA== dependencies: colors "^1.3.3" debug "^4.1.1" detect-libc "^1.0.3" fs-extra "^7.0.1" - node-abi "^2.9.0" - node-gyp "^5.0.1" + node-abi "^2.11.0" + node-gyp "^6.0.1" ora "^3.4.0" spawn-rx "^3.0.0" yargs "^13.2.4" @@ -6226,16 +6540,22 @@ electron-store@^2.0.0: conf "^2.0.0" <<<<<<< HEAD +<<<<<<< HEAD +======= +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.322: 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== +<<<<<<< HEAD ======= electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.295: version "1.3.306" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.306.tgz#e8265301d053d5f74e36cb876486830261fbe946" integrity sha512-frDqXvrIROoYvikSKTIKbHbzO6M3/qC6kCIt/1FOa9kALe++c4VAJnwjSFvf1tYLEUsP2n9XZ4XSCyqc3l7A/A== >>>>>>> e40dc8e... Updated to next Theia. +======= +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. electron@^4.2.11: version "4.2.12" @@ -6252,9 +6572,9 @@ elegant-spinner@^1.0.1: integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4= elliptic@^6.0.0: - version "6.5.1" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.1.tgz#c380f5f909bf1b9b4428d028cd18d3b0efd6b52b" - integrity sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg== + 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" @@ -6317,12 +6637,18 @@ env-paths@^1.0.0: resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-1.0.0.tgz#4168133b42bb05c38a35b1ae4397c8298ab369e0" integrity sha1-QWgTO0K7BcOKNbGuQ5fIKYqzaeA= +env-paths@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz#cdca557dc009152917d6166e2febe1f039685e43" + integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA== + err-code@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960" integrity sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA= errlop@^1.1.2: +<<<<<<< HEAD <<<<<<< HEAD version "1.7.0" resolved "https://registry.yarnpkg.com/errlop/-/errlop-1.7.0.tgz#6b1b35528f3056002ea560906617191fcf6d9fea" @@ -6332,8 +6658,13 @@ errlop@^1.1.2: resolved "https://registry.yarnpkg.com/errlop/-/errlop-1.1.2.tgz#a99a48f37aa264d614e342ffdbbaa49eec9220e0" integrity sha512-djkRp+urJ+SmqDBd7F6LUgm4Be1TTYBxia2bhjNdFBuBDQtJDHExD2VbxR6eyst3h1TZy3qPRCdqb6FBoFttTA== >>>>>>> e40dc8e... Updated to next Theia. +======= + version "1.6.0" + resolved "https://registry.yarnpkg.com/errlop/-/errlop-1.6.0.tgz#1d925f440b8727b6238b3972208823176d4e7c17" + integrity sha512-t+bvL0FM4vSHNE1Qya+g2u0+IokiA0EV18lUczdL30OHgkbHwT00n9UrH2hvnDafIEPqfKpa1EzuDAFsQCOwUQ== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: - editions "^2.1.3" + editions "^2.2.0" errno@^0.1.1, errno@^0.1.3, errno@~0.1.7: version "0.1.7" @@ -6980,6 +7311,7 @@ flatten@^1.0.2: integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== flow-parser@^0.*: +<<<<<<< HEAD <<<<<<< HEAD version "0.113.0" resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.113.0.tgz#5b5913c54833918d0c3136ba69f6cf0cdd85fc20" @@ -6989,6 +7321,11 @@ flow-parser@^0.*: resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.111.3.tgz#4c256aa21a5dbb53d5305e3512cc120659ca08f3" integrity sha512-iEjGZ94OBMcESxnLorXNjJmtd/JtQYXUVrQpfwvtAKkuyawRmv+2LM6nqyOsOJkISEYbyY6ziudRE0u4VyPSVA== >>>>>>> e40dc8e... Updated to next Theia. +======= + version "0.113.0" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.113.0.tgz#5b5913c54833918d0c3136ba69f6cf0cdd85fc20" + integrity sha512-+hRyEB1sVLNMTMniDdM1JIS8BJ3HUL7IFIJaxX+t/JUy0GNYdI0Tg1QLx8DJmOF8HeoCrUDcREpnDAc/pPta3w== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. flush-write-stream@^1.0.0: version "1.1.1" @@ -7536,7 +7873,7 @@ got@^8.2.0, got@^8.3.1: url-parse-lax "^3.0.0" url-to-options "^1.0.1" -graceful-fs@^4.1.10, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0: +graceful-fs@^4.1.10, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.2: version "4.2.3" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== @@ -7690,12 +8027,7 @@ has-symbol-support-x@^1.4.1: resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455" integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw== -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.1: +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== @@ -8541,13 +8873,13 @@ isstream@~0.1.2: integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= istextorbinary@^2.2.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/istextorbinary/-/istextorbinary-2.5.1.tgz#14a33824cf6b9d5d7743eac1be2bd2c310d0ccbd" - integrity sha512-pv/JNPWnfpwGjPx7JrtWTwsWsxkrK3fNzcEVnt92YKEIErps4Fsk49+qzCe9iQF2hjqK8Naqf8P9kzoeCuQI1g== + version "2.6.0" + resolved "https://registry.yarnpkg.com/istextorbinary/-/istextorbinary-2.6.0.tgz#60776315fb0fa3999add276c02c69557b9ca28ab" + integrity sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA== dependencies: binaryextensions "^2.1.2" - editions "^2.1.3" - textextensions "^2.4.0" + editions "^2.2.0" + textextensions "^2.5.0" isurl@^1.0.0-alpha5: version "1.0.0" @@ -9465,22 +9797,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.28.0: +mime-db@1.42.0, mime-db@^1.28.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, mime@^1.4.1: version "1.6.0" @@ -9797,16 +10124,22 @@ nice-try@^1.0.4: integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== <<<<<<< HEAD +<<<<<<< HEAD +======= +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. node-abi@^2.11.0, node-abi@^2.2.0: version "2.13.0" resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.13.0.tgz#e2f2ec444d0aca3ea1b3874b6de41d1665828f63" integrity sha512-9HrZGFVTR5SOu3PZAnAY2hLO36aW1wmA+FDsVkr85BTST32TLCA1H/AEcatVRAsWLyXS3bqUDYCAjq5/QGuSTA== +<<<<<<< HEAD ======= node-abi@^2.2.0, node-abi@^2.9.0: version "2.12.0" resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.12.0.tgz#40e9cfabdda1837863fa825e7dfa0b15686adf6f" integrity sha512-VhPBXCIcvmo/5K8HPmnWJyyhvgKxnHTUMXR/XwGHV68+wrgkzST4UmQrY/XszSWA5dtnXpNp528zkcyJ/pzVcw== >>>>>>> e40dc8e... Updated to next Theia. +======= +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: semver "^5.4.1" @@ -9847,7 +10180,7 @@ node-gyp@^3.6.0: tar "^2.0.0" which "1" -node-gyp@^5.0.1, node-gyp@^5.0.2: +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== @@ -9864,6 +10197,23 @@ node-gyp@^5.0.1, node-gyp@^5.0.2: tar "^4.4.12" which "1" +node-gyp@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-6.0.1.tgz#d59c4247df61bb343f56e2c41d9c8dc2bc361470" + integrity sha512-udHG4hGe3Ji97AYJbJhaRwuSOuQO7KHnE4ZPH3Sox3tjRZ+bkBsDvfZ7eYA1qwD8eLWr//193x806ss3HFTPRw== + dependencies: + env-paths "^2.2.0" + glob "^7.1.4" + graceful-fs "^4.2.2" + mkdirp "^0.5.1" + nopt "^4.0.1" + npmlog "^4.1.2" + request "^2.88.0" + rimraf "^2.6.3" + semver "^5.7.1" + tar "^4.4.12" + which "^1.3.1" + 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" @@ -9910,16 +10260,22 @@ node-pre-gyp@^0.12.0: tar "^4" <<<<<<< HEAD +<<<<<<< HEAD +======= +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. node-releases@^1.1.42: version "1.1.42" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.42.tgz#a999f6a62f8746981f6da90627a8d2fc090bbad7" integrity sha512-OQ/ESmUqGawI2PRX+XIRao44qWYBBfN54ImQYdWVTQqUckuejOg76ysSqDBK8NG3zwySRVnX36JwDQ6x+9GxzA== +<<<<<<< HEAD ======= node-releases@^1.1.38: version "1.1.39" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.39.tgz#c1011f30343aff5b633153b10ff691d278d08e8d" integrity sha512-8MRC/ErwNCHOlAFycy9OPca46fQYUjbJRDcZTHVWIGXIjYLM73k70vv3WkYutVnM4cCo4hE0MqBVVZjP6vjISA== >>>>>>> e40dc8e... Updated to next Theia. +======= +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: semver "^6.3.0" @@ -10247,9 +10603,9 @@ onigasm@2.2.1: lru-cache "^4.1.1" oniguruma@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/oniguruma/-/oniguruma-7.2.0.tgz#c9a59c1ea7b9fe67e237a02e02139b638856f3af" - integrity sha512-bh+ZLdykY1sdIx8jBp2zpLbVFDBc3XmKH4Ceo2lijNaN1WhEqtnpqFlmtCbRuDB17nJ58RAUStVwfW8e8uEbnA== + version "7.2.1" + resolved "https://registry.yarnpkg.com/oniguruma/-/oniguruma-7.2.1.tgz#51775834f7819b6e31aa878706aa7f65ad16b07f" + integrity sha512-WPS/e1uzhswPtJSe+Zls/kAj27+lEqZjCmRSjnYk/Z4L2Mu+lJC2JWtkZhPJe4kZeTQfz7ClcLyXlI4J68MG2w== dependencies: nan "^2.14.0" @@ -11378,14 +11734,14 @@ react-autosize-textarea@^7.0.0: prop-types "^15.5.6" react-dom@^16.4.1: - version "16.11.0" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.11.0.tgz#7e7c4a5a85a569d565c2462f5d345da2dd849af5" - integrity sha512-nrRyIUE1e7j8PaXSPtyRKtz+2y9ubW/ghNgqKFHHAHaeP0fpF5uXR+sq8IMRHC+ZUxw7W9NyCDTBtwWxvkb0iA== + version "16.12.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.12.0.tgz#0da4b714b8d13c2038c9396b54a92baea633fe11" + integrity sha512-LMxFfAGrcS3kETtQaCkTKjMiifahaMySFDn71fZUNpPHZQEzmk/GiAeIT8JSOrHB23fnuCOMruL2a8NYlw+8Gw== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" - scheduler "^0.17.0" + scheduler "^0.18.0" react-input-autosize@^2.2.2: version "2.2.2" @@ -11395,9 +11751,9 @@ react-input-autosize@^2.2.2: prop-types "^15.5.8" react-is@^16.8.1: - version "16.11.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa" - integrity sha512-gbBVYR2p8mnriqAwWx9LbuUrShnAuSCNnuPGyc7GJrMVQtPDAh8iLpv7FRuMPFb56KkaVZIYSz1PrjI9q0QPCw== + 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-lifecycles-compat@^3.0.4: version "3.0.4" @@ -11449,9 +11805,9 @@ react-virtualized@^9.20.0: react-lifecycles-compat "^3.0.4" react@^16.4.1: - version "16.11.0" - resolved "https://registry.yarnpkg.com/react/-/react-16.11.0.tgz#d294545fe62299ccee83363599bf904e4a07fdbb" - integrity sha512-M5Y8yITaLmU0ynd0r1Yvfq98Rmll6q8AxaEe88c8e7LxO8fZ2cNgmFt0aGAS9wzf1Ao32NKXtCl+/tVVtkxq6g== + version "16.12.0" + resolved "https://registry.yarnpkg.com/react/-/react-16.12.0.tgz#0c0a9c6a142429e3614834d5a778e18aa78a0b83" + integrity sha512-fglqy3k5E+81pA8s+7K0/T3DBCF0ZDOher1elBFzF7O6arXJgzyu/FW+COxFvAWXJoJN9KIZbT2LXlukwphYTA== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" @@ -11838,7 +12194,7 @@ request-light@^0.2.4: https-proxy-agent "^2.2.3" vscode-nls "^4.1.1" -request@^2.45.0, request@^2.82.0, request@^2.83.0, request@^2.86.0, request@^2.87.0: +request@^2.45.0, request@^2.82.0, request@^2.83.0, request@^2.86.0, request@^2.87.0, request@^2.88.0: version "2.88.0" resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== @@ -11909,6 +12265,7 @@ resolve-url@^0.2.1: resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= +<<<<<<< HEAD <<<<<<< HEAD resolve@^1.1.6, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.8.1: ======= @@ -11921,6 +12278,9 @@ resolve@^1.1.6, resolve@^1.10.0, resolve@^1.3.2, resolve@^1.8.1: resolve@^1.12.0: >>>>>>> e40dc8e... Updated to next Theia. +======= +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.8.1: +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. version "1.13.1" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.13.1.tgz#be0aa4c06acd53083505abb35f4d66932ab35d16" integrity sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w== @@ -12056,10 +12416,10 @@ sax@^1.2.4, sax@~1.2.1: resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== -scheduler@^0.17.0: - version "0.17.0" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.17.0.tgz#7c9c673e4ec781fac853927916d1c426b6f3ddfe" - integrity sha512-7rro8Io3tnCPuY4la/NuI5F2yfESpnfZyT6TtkXnSWVkcu0BCDJ+8gk5ozUaFaxpIyNuWAPXrH0yFcSi28fnDA== +scheduler@^0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.18.0.tgz#5901ad6659bc1d8f3fdaf36eb7a67b0d6746b1c4" + integrity sha512-agTSHR1Nbfi6ulI0kYNK0203joW2Y5W4po4l+v03tOoiJKpTBbxpNhWDvqc/4IcOw+KLmSiQLTasZ4cab2/UWQ== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" @@ -12098,7 +12458,7 @@ self-closing-tags@^1.0.1: resolved "https://registry.yarnpkg.com/self-closing-tags/-/self-closing-tags-1.0.1.tgz#6c5fa497994bb826b484216916371accee490a5d" integrity sha512-7t6hNbYMxM+VHXTgJmxwgZgLGktuXtVVD5AivWzNTdJBM4DBjnDKDzkf2SrNjihaArpeJYNjxkELBu1evI4lQA== -"semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0: +"semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== @@ -12928,10 +13288,10 @@ text-table@^0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= -textextensions@^2.4.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/textextensions/-/textextensions-2.5.0.tgz#e21d3831dafa37513dd80666dff541414e314293" - integrity sha512-1IkVr355eHcomgK7fgj1Xsokturx6L5S2JRT5WcRdA6v5shk9sxWuO/w/VbpQexwkXJMQIa/j1dBi3oo7+HhcA== +textextensions@^2.5.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/textextensions/-/textextensions-2.6.0.tgz#d7e4ab13fe54e32e08873be40d51b74229b00fc4" + integrity sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ== thenify-all@^1.0.0: version "1.6.0" @@ -13222,6 +13582,7 @@ uc.micro@^1.0.1, uc.micro@^1.0.5: integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== uglify-js@^3.1.4: +<<<<<<< HEAD <<<<<<< HEAD version "3.7.2" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.2.tgz#cb1a601e67536e9ed094a92dd1e333459643d3f9" @@ -13231,6 +13592,11 @@ uglify-js@^3.1.4: resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.8.tgz#5edcbcf9d49cbb0403dc49f856fe81530d65145e" integrity sha512-XhHJ3S3ZyMwP8kY1Gkugqx3CJh2C3O0y8NPiSxtm1tyD/pktLAkFZsFGpuNfTZddKDQ/bbDBLAd2YyA1pbi8HQ== >>>>>>> e40dc8e... Updated to next Theia. +======= + version "3.7.1" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.1.tgz#35c7de17971a4aa7689cd2eae0a5b39bb838c0c5" + integrity sha512-pnOF7jY82wdIhATVn87uUY/FHU+MDUdPLkmGFvGoclQmeu229eTkbG5gjGGBi3R7UuYYSEeYXY/TTY5j2aym2g== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: commander "~2.20.3" source-map "~0.6.1" @@ -13595,6 +13961,7 @@ vscode-languageclient@^5.3.0-next: semver "^6.3.0" vscode-languageserver-protocol "^3.15.0-next.8" +<<<<<<< HEAD <<<<<<< HEAD vscode-languageserver-protocol@^3.15.0-next.14, vscode-languageserver-protocol@^3.15.0-next.8: version "3.15.0-next.14" @@ -13606,6 +13973,12 @@ vscode-languageserver-protocol@^3.15.0-next.8, vscode-languageserver-protocol@^3 resolved "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.15.0-next.11.tgz#fef95eca6f7f544069cfd48610124ec0060e2cdd" integrity sha512-tpRnPtyS6q0EYH5RH12AtdMecgu3HVL2bBdBGzeQRN8Tf93I9LY4Fl5TXUNkIBjuxjMshkCM8ikhb+hlnWvB2w== >>>>>>> e40dc8e... Updated to next Theia. +======= +vscode-languageserver-protocol@^3.15.0-next.13, vscode-languageserver-protocol@^3.15.0-next.8: + version "3.15.0-next.13" + resolved "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.15.0-next.13.tgz#05a742238e87f421df32f1f99a83f616242d6cca" + integrity sha512-2UGxOKc5VHav15n3zY5dtaOXGL/JuV0K2Mem/n6lhF8i3vaqIAnKv004SPU0flYHXIfCcQM7kCL+nwWVJ1K1qw== +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. dependencies: vscode-jsonrpc "^5.0.0-next.5" vscode-languageserver-types "^3.15.0-next.9" @@ -13621,6 +13994,7 @@ vscode-languageserver-types@^3.15.0-next, vscode-languageserver-types@^3.15.0-ne integrity sha512-Rl/8qJ6932nrHCdPn+9y0x08uLVQaSLRG+U4JzhyKpWU4eJbVaDRoAcz1Llj7CErJGbPr6kdBvShPy5fRfR+Uw== vscode-languageserver@^6.0.0-next.1: +<<<<<<< HEAD <<<<<<< HEAD version "6.0.0-next.8" resolved "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-6.0.0-next.8.tgz#39e22ebb9abecfc5f0e45104ed9bfae562257ca1" @@ -13635,6 +14009,13 @@ vscode-languageserver@^6.0.0-next.1: vscode-languageserver-protocol "^3.15.0-next.9" vscode-textbuffer "^1.0.0" >>>>>>> e40dc8e... Updated to next Theia. +======= + version "6.0.0-next.7" + resolved "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-6.0.0-next.7.tgz#e7e51d9d5b13bf96c2561d0f4abc393ed860f56b" + integrity sha512-DHUA8yNmH/dnrvyW8ejfYTd8AHlideOlExmyxnOQ7M1AOPzrIerL4OgjT+JIIN4t+UfC0MinEeHm1vdoYF36kQ== + dependencies: + vscode-languageserver-protocol "^3.15.0-next.13" +>>>>>>> 55cf2f8... No disconnect/reconnect when DNDing the widget. vscode-nls@^4.1.1: version "4.1.1" @@ -13646,15 +14027,10 @@ vscode-ripgrep@^1.2.4: resolved "https://registry.yarnpkg.com/vscode-ripgrep/-/vscode-ripgrep-1.5.7.tgz#acb6b548af488a4bca5d0f1bb5faf761343289ce" integrity sha512-/Vsz/+k8kTvui0q3O74pif9FK0nKopgFTiGNVvxicZANxtSA8J8gUE9GQ/4dpi7D/2yI/YVORszwVskFbz46hQ== -vscode-textbuffer@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/vscode-textbuffer/-/vscode-textbuffer-1.0.0.tgz#1faee638c8e0e4131c8d5c353993a1874acda086" - integrity sha512-zPaHo4urgpwsm+PrJWfNakolRpryNja18SUip/qIIsfhuEqEIPEXMxHOlFPjvDC4JgTaimkncNW7UMXRJTY6ow== - vscode-textmate@^4.0.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-4.3.0.tgz#6e1f0f273d84148cfa1e9c7ed85bd16c974f9f61" - integrity sha512-MhEZ3hvxOVuYGsrRzW/PZLDR2VdtG2+V6TIKPvmE9JT+RAq/OtPlrFd1+ZQwBefoHEhjRNuRJ0OktcFezuxPmg== + version "4.4.0" + resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-4.4.0.tgz#14032afeb50152e8f53258c95643e555f2948305" + integrity sha512-dFpm2eK0HwEjeFSD1DDh3j0q47bDSVuZt20RiJWxGqjtm73Wu2jip3C2KaZI3dQx/fSeeXCr/uEN4LNaNj7Ytw== dependencies: oniguruma "^7.2.0"