From fa2eec9aa05030dc3f5b4f7be3b3bb7ebf810f26 Mon Sep 17 00:00:00 2001 From: Taylor Jones Date: Mon, 1 Jun 2020 16:22:08 -0500 Subject: [PATCH] feat(project): support for node 12 Closes #736 --- .nvmrc | 2 +- .vscode/launch.json | 6 +- package.json | 47 +- .../Table/__snapshots__/Table.story.storyshot | 272 +- src/components/TableCard/TableCard.test.jsx | 2 +- .../__snapshots__/TableCard.story.storyshot | 3584 ++++++++--------- yarn.lock | 1354 +++++-- 7 files changed, 2879 insertions(+), 2388 deletions(-) diff --git a/.nvmrc b/.nvmrc index 1be7c05f46..a2280ca7fe 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v10.15.3 \ No newline at end of file +v12 \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index 28669d4da3..5687e0f01a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,14 +6,14 @@ "configurations": [ { "type": "node", - "runtimeVersion": "10.15.3", + "runtimeVersion": "12.17.0", "request": "launch", "name": "Launch Program", "program": "${workspaceFolder}/lib/index.js" }, { "type": "node", - "runtimeVersion": "10.15.3", + "runtimeVersion": "12.17.0", "request": "launch", "name": "Jest All", "program": "${workspaceFolder}/node_modules/.bin/jest", @@ -28,7 +28,7 @@ }, { "type": "node", - "runtimeVersion": "10.15.3", + "runtimeVersion": "12.17.0", "request": "launch", "name": "Jest Current File", "program": "${workspaceFolder}/node_modules/.bin/jest", diff --git a/package.json b/package.json index 2c82edce17..37a58a3335 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "carbon-addons-iot-react", "engines": { - "node": "10.15.3", + "node": "12.x", "yarn": "1.x" }, "main": "lib/src/index.js", @@ -77,7 +77,7 @@ ] }, "dependencies": { - "@babel/runtime": "^7.9.2", + "@babel/runtime": "^7.10.2", "@carbon/charts": "^0.30.18", "@carbon/charts-react": "^0.30.18", "@carbon/colors": "10.8.0", @@ -90,7 +90,7 @@ "carbon-components-react": "7.10.3", "carbon-icons": "7.0.7", "classnames": "^2.2.5", - "core-js": "3.6.4", + "core-js": "3.6.5", "immutability-helper": "^2.9.0", "js-file-download": "^0.4.7", "lodash": "^4.17.13", @@ -118,27 +118,27 @@ "react-dom": "^16.8.6" }, "devDependencies": { - "@babel/core": "^7.9.0", - "@babel/plugin-proposal-class-properties": "^7.8.3", - "@babel/plugin-proposal-decorators": "^7.8.3", - "@babel/plugin-proposal-do-expressions": "^7.8.3", - "@babel/plugin-proposal-export-default-from": "^7.8.3", - "@babel/plugin-proposal-export-namespace-from": "^7.8.3", - "@babel/plugin-proposal-function-sent": "^7.8.3", - "@babel/plugin-proposal-json-strings": "^7.8.3", - "@babel/plugin-proposal-logical-assignment-operators": "^7.8.3", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-proposal-numeric-separator": "^7.8.3", - "@babel/plugin-proposal-optional-chaining": "^7.9.0", - "@babel/plugin-proposal-pipeline-operator": "^7.8.3", - "@babel/plugin-proposal-throw-expressions": "^7.8.3", + "@babel/core": "^7.10.2", + "@babel/plugin-proposal-class-properties": "^7.10.1", + "@babel/plugin-proposal-decorators": "^7.10.1", + "@babel/plugin-proposal-do-expressions": "^7.10.1", + "@babel/plugin-proposal-export-default-from": "^7.10.1", + "@babel/plugin-proposal-export-namespace-from": "^7.10.1", + "@babel/plugin-proposal-function-sent": "^7.10.1", + "@babel/plugin-proposal-json-strings": "^7.10.1", + "@babel/plugin-proposal-logical-assignment-operators": "^7.10.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1", + "@babel/plugin-proposal-numeric-separator": "^7.10.1", + "@babel/plugin-proposal-optional-chaining": "^7.10.1", + "@babel/plugin-proposal-pipeline-operator": "^7.10.1", + "@babel/plugin-proposal-throw-expressions": "^7.10.1", "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.9.0", - "@babel/polyfill": "^7.8.7", - "@babel/preset-env": "^7.9.5", - "@babel/preset-flow": "^7.9.0", - "@babel/preset-react": "^7.9.4", + "@babel/plugin-syntax-import-meta": "^7.10.1", + "@babel/plugin-transform-runtime": "^7.10.1", + "@babel/polyfill": "^7.10.1", + "@babel/preset-env": "^7.10.2", + "@babel/preset-flow": "^7.10.1", + "@babel/preset-react": "^7.10.1", "@commitlint/cli": "^7.2.1", "@commitlint/config-conventional": "^7.1.2", "@ibma/aat": "https://able.ibm.com/tools/dist/ibma-aat-2.0.8.tgz", @@ -224,7 +224,6 @@ "stylelint": "^10.1.0", "stylelint-config-recommended-scss": "^3.3.0", "stylelint-scss": "^3.10.0", - "weak": "^1.0.1", "weak-napi": "^2.0.1", "webpack": "^4.28.4", "whatwg-fetch": "^3.0.0" diff --git a/src/components/Table/__snapshots__/Table.story.storyshot b/src/components/Table/__snapshots__/Table.story.storyshot index 9b9c297ecc..46441a67d2 100644 --- a/src/components/Table/__snapshots__/Table.story.storyshot +++ b/src/components/Table/__snapshots__/Table.story.storyshot @@ -43791,9 +43791,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 9 801 + 9 801 @@ -44046,9 +44046,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 9 604 + 9 604 @@ -44301,9 +44301,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 9 409 + 9 409 @@ -44556,9 +44556,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 9 216 + 9 216 @@ -44785,9 +44785,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 9 025 + 9 025 @@ -45040,9 +45040,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 8 836 + 8 836 @@ -45295,9 +45295,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 8 649 + 8 649 @@ -45550,9 +45550,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 8 464 + 8 464 @@ -45779,9 +45779,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 8 281 + 8 281 @@ -46034,9 +46034,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 8 100 + 8 100 @@ -46289,9 +46289,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 7 921 + 7 921 @@ -46544,9 +46544,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 7 744 + 7 744 @@ -46773,9 +46773,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 7 569 + 7 569 @@ -47028,9 +47028,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 7 396 + 7 396 @@ -47283,9 +47283,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 7 225 + 7 225 @@ -47538,9 +47538,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 7 056 + 7 056 @@ -47767,9 +47767,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 6 889 + 6 889 @@ -48022,9 +48022,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 6 724 + 6 724 @@ -48277,9 +48277,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 6 561 + 6 561 @@ -48532,9 +48532,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 6 400 + 6 400 @@ -48761,9 +48761,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 6 241 + 6 241 @@ -49016,9 +49016,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 6 084 + 6 084 @@ -49271,9 +49271,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 929 + 5 929 @@ -49526,9 +49526,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 776 + 5 776 @@ -49755,9 +49755,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 625 + 5 625 @@ -50010,9 +50010,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 476 + 5 476 @@ -50265,9 +50265,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 329 + 5 329 @@ -50520,9 +50520,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 184 + 5 184 @@ -50749,9 +50749,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 041 + 5 041 @@ -51004,9 +51004,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 4 900 + 4 900 @@ -51259,9 +51259,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 4 761 + 4 761 @@ -51514,9 +51514,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 4 624 + 4 624 @@ -51743,9 +51743,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 4 489 + 4 489 @@ -51998,9 +51998,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 4 356 + 4 356 @@ -52253,9 +52253,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 4 225 + 4 225 @@ -52508,9 +52508,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 4 096 + 4 096 @@ -52737,9 +52737,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 969 + 3 969 @@ -52992,9 +52992,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 844 + 3 844 @@ -53247,9 +53247,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 721 + 3 721 @@ -53502,9 +53502,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 600 + 3 600 @@ -53731,9 +53731,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 481 + 3 481 @@ -53986,9 +53986,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 364 + 3 364 @@ -54241,9 +54241,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 249 + 3 249 @@ -54496,9 +54496,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 136 + 3 136 @@ -54725,9 +54725,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 025 + 3 025 @@ -54980,9 +54980,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 916 + 2 916 @@ -55235,9 +55235,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 809 + 2 809 @@ -55490,9 +55490,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 704 + 2 704 @@ -55719,9 +55719,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 601 + 2 601 @@ -55974,9 +55974,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 500 + 2 500 @@ -56229,9 +56229,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 401 + 2 401 @@ -56484,9 +56484,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 304 + 2 304 @@ -56713,9 +56713,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 209 + 2 209 @@ -56968,9 +56968,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 116 + 2 116 @@ -57223,9 +57223,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 025 + 2 025 @@ -57478,9 +57478,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 936 + 1 936 @@ -57707,9 +57707,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 849 + 1 849 @@ -57962,9 +57962,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 764 + 1 764 @@ -58217,9 +58217,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 681 + 1 681 @@ -58472,9 +58472,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 600 + 1 600 @@ -58701,9 +58701,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 521 + 1 521 @@ -58956,9 +58956,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 444 + 1 444 @@ -59211,9 +59211,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 369 + 1 369 @@ -59466,9 +59466,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 296 + 1 296 @@ -59695,9 +59695,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 225 + 1 225 @@ -59950,9 +59950,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 156 + 1 156 @@ -60205,9 +60205,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 089 + 1 089 @@ -60460,9 +60460,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 024 + 1 024 diff --git a/src/components/TableCard/TableCard.test.jsx b/src/components/TableCard/TableCard.test.jsx index 3e459e35cb..21f619cd41 100644 --- a/src/components/TableCard/TableCard.test.jsx +++ b/src/components/TableCard/TableCard.test.jsx @@ -201,7 +201,7 @@ describe('TableCard', () => { /> ); expect(getAllByText('Link').length).toEqual(11); - expect(document.querySelector('a').getAttribute('href')).toEqual('https://ibm.com/73005'); + expect(document.querySelector('a').getAttribute('href')).toEqual('https://ibm.com/73003'); }); it('Clicked row actions', () => { const onCardAction = jest.fn(); diff --git a/src/components/TableCard/__snapshots__/TableCard.story.storyshot b/src/components/TableCard/__snapshots__/TableCard.story.storyshot index 875963fbea..c36abeb415 100644 --- a/src/components/TableCard/__snapshots__/TableCard.story.storyshot +++ b/src/components/TableCard/__snapshots__/TableCard.story.storyshot @@ -695,6 +695,125 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table + + + + + AHI010 proccess need to optimize adjust Y variables + + + + + + + 2 + + + + + + + 10/28/2018 07:34 + + + + + + + + + + 0 + + + + + + + Link + + + + @@ -877,9 +996,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI010 proccess need to optimize adjust Y variables + AHI005 Asset failure @@ -888,7 +1007,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-10-count" + id="cell-table-for-card-table-list-row-1-count" offset={0} width="" > @@ -897,9 +1016,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 + 1.2039201932 @@ -908,7 +1027,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-10-hour" + id="cell-table-for-card-table-list-row-1-hour" offset={0} width="" > @@ -928,7 +1047,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-iconColumn-pressure" + id="cell-table-for-card-table-list-row-1-iconColumn-pressure" offset={0} width="" > @@ -941,7 +1060,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-pressure" + id="cell-table-for-card-table-list-row-1-pressure" offset={0} width="" > @@ -961,7 +1080,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="deviceId" data-offset={0} - id="cell-table-for-card-table-list-row-10-deviceId" + id="cell-table-for-card-table-list-row-1-deviceId" offset={0} width="" > @@ -987,7 +1106,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-1-alert" + id="cell-table-for-card-table-list-row-2-alert" offset={0} width="" > @@ -996,9 +1115,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI005 Asset failure + AHI003 process need to optimize adjust X variables @@ -1007,7 +1126,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-1-count" + id="cell-table-for-card-table-list-row-2-count" offset={0} width="" > @@ -1016,9 +1135,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1.2039201932 + 1.10329291 @@ -1027,7 +1146,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-1-hour" + id="cell-table-for-card-table-list-row-2-hour" offset={0} width="" > @@ -1047,20 +1166,65 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-1-iconColumn-pressure" + id="cell-table-for-card-table-list-row-2-iconColumn-pressure" offset={0} width="" > + > +
+ + + + + + + + + + + 11112 Critical + +
+
@@ -1069,9 +1233,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 2 @@ -1080,7 +1244,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="deviceId" data-offset={0} - id="cell-table-for-card-table-list-row-1-deviceId" + id="cell-table-for-card-table-list-row-2-deviceId" offset={0} width="" > @@ -1106,7 +1270,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-2-alert" + id="cell-table-for-card-table-list-row-6-alert" offset={0} width="" > @@ -1115,9 +1279,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI003 process need to optimize adjust X variables + AHI001 proccess need to optimize. @@ -1126,7 +1290,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-2-count" + id="cell-table-for-card-table-list-row-6-count" offset={0} width="" > @@ -1135,9 +1299,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1.10329291 + 30 @@ -1146,7 +1310,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-2-hour" + id="cell-table-for-card-table-list-row-6-hour" offset={0} width="" > @@ -1166,7 +1330,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-2-iconColumn-pressure" + id="cell-table-for-card-table-list-row-6-iconColumn-pressure" offset={0} width="" > @@ -1175,7 +1339,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -1233,9 +1397,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 + 68 @@ -1244,7 +1408,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="deviceId" data-offset={0} - id="cell-table-for-card-table-list-row-2-deviceId" + id="cell-table-for-card-table-list-row-6-deviceId" offset={0} width="" > @@ -1270,7 +1434,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-6-alert" + id="cell-table-for-card-table-list-row-3-alert" offset={0} width="" > @@ -1279,9 +1443,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI001 proccess need to optimize. + AHI001 proccess need to optimize adjust Y variables @@ -1290,7 +1454,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-6-count" + id="cell-table-for-card-table-list-row-3-count" offset={0} width="" > @@ -1299,9 +1463,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 30 + 3 @@ -1310,7 +1474,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-6-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -1330,7 +1494,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-6-iconColumn-pressure" + id="cell-table-for-card-table-list-row-3-iconColumn-pressure" offset={0} width="" > @@ -1339,7 +1503,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -1397,9 +1561,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 68 + 10 @@ -1408,7 +1572,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="deviceId" data-offset={0} - id="cell-table-for-card-table-list-row-6-deviceId" + id="cell-table-for-card-table-list-row-3-deviceId" offset={0} width="" > @@ -1782,170 +1946,6 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table - - - - - AHI001 proccess need to optimize adjust Y variables - - - - - - - 3 - - - - - - - 10/28/2018 07:34 - - - - - -
- - - - - - - - - - - 11112 Critical - -
-
- - - - - 10 - - - - - - - Link - - - - + + + + + AHI010 proccess need to optimize adjust Y variables + + + + + + + 2 + + + + + + + 10/28/2018 07:34 + + + + + + + + + + 0 + + + + + + + 73003 + + + + + + + Link + + + + - - - - - AHI010 proccess need to optimize adjust Y variables - - - - - - - 2 - - - - - - - 10/28/2018 07:34 - - - - - - - - - - 0 - - - - - - - 73003 - - - - - - - Link - - - - @@ -5096,7 +5096,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-4-count" + id="cell-table-for-card-table-list-row-3-count" offset={0} width="" > @@ -5105,9 +5105,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 + 3 @@ -5116,7 +5116,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -5136,20 +5136,65 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-iconColumn-pressure" + id="cell-table-for-card-table-list-row-3-iconColumn-pressure" offset={0} width="" > + > +
+ + + + + + + + + + + Critical + +
+
@@ -5158,9 +5203,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10
@@ -5169,7 +5214,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="deviceId" data-offset={0} - id="cell-table-for-card-table-list-row-4-deviceId" + id="cell-table-for-card-table-list-row-3-deviceId" offset={0} width="" > @@ -5178,9 +5223,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 73000 + 73001 @@ -5189,7 +5234,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="Link" data-offset={0} - id="cell-table-for-card-table-list-row-4-Link" + id="cell-table-for-card-table-list-row-3-Link" offset={0} width="" > @@ -5198,7 +5243,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > Link @@ -5215,7 +5260,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -5235,7 +5280,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-8-count" + id="cell-table-for-card-table-list-row-4-count" offset={0} width="" > @@ -5244,9 +5289,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 7 + 5 @@ -5255,7 +5300,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-8-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -5275,7 +5320,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-iconColumn-pressure" + id="cell-table-for-card-table-list-row-4-iconColumn-pressure" offset={0} width="" > @@ -5288,7 +5333,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -5308,7 +5353,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="deviceId" data-offset={0} - id="cell-table-for-card-table-list-row-8-deviceId" + id="cell-table-for-card-table-list-row-4-deviceId" offset={0} width="" > @@ -5317,9 +5362,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 73003 + 73000 @@ -5328,7 +5373,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="Link" data-offset={0} - id="cell-table-for-card-table-list-row-8-Link" + id="cell-table-for-card-table-list-row-4-Link" offset={0} width="" > @@ -5337,7 +5382,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > Link @@ -5354,7 +5399,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="" > @@ -5374,7 +5419,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-9-count" + id="cell-table-for-card-table-list-row-8-count" offset={0} width="" > @@ -5383,9 +5428,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 7 @@ -5394,7 +5439,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-9-hour" + id="cell-table-for-card-table-list-row-8-hour" offset={0} width="" > @@ -5414,7 +5459,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-iconColumn-pressure" + id="cell-table-for-card-table-list-row-8-iconColumn-pressure" offset={0} width="" > @@ -5427,7 +5472,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -5447,7 +5492,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="deviceId" data-offset={0} - id="cell-table-for-card-table-list-row-9-deviceId" + id="cell-table-for-card-table-list-row-8-deviceId" offset={0} width="" > @@ -5456,9 +5501,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 73005 + 73003 @@ -5467,7 +5512,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="Link" data-offset={0} - id="cell-table-for-card-table-list-row-9-Link" + id="cell-table-for-card-table-list-row-8-Link" offset={0} width="" > @@ -5476,7 +5521,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > Link @@ -5493,7 +5538,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-9-alert" offset={0} width="" > @@ -5513,7 +5558,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-3-count" + id="cell-table-for-card-table-list-row-9-count" offset={0} width="" > @@ -5522,9 +5567,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 + 0 @@ -5533,7 +5578,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-3-hour" + id="cell-table-for-card-table-list-row-9-hour" offset={0} width="" > @@ -5553,65 +5598,20 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-iconColumn-pressure" + id="cell-table-for-card-table-list-row-9-iconColumn-pressure" offset={0} width="" > -
- - - - - - - - - - - Critical - -
-
+ /> @@ -5620,9 +5620,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 @@ -5631,7 +5631,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="deviceId" data-offset={0} - id="cell-table-for-card-table-list-row-3-deviceId" + id="cell-table-for-card-table-list-row-9-deviceId" offset={0} width="" > @@ -5640,9 +5640,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 73001 + 73005 @@ -5651,7 +5651,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="Link" data-offset={0} - id="cell-table-for-card-table-list-row-3-Link" + id="cell-table-for-card-table-list-row-9-Link" offset={0} width="" > @@ -5660,7 +5660,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
Link @@ -10475,7 +10475,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-11-alert" + id="cell-table-for-card-table-list-row-10-alert" offset={0} width="" > @@ -10495,20 +10495,67 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-11-iconColumn-count" + id="cell-table-for-card-table-list-row-10-iconColumn-count" offset={0} width="" > + > +
+ + + + + + + + + + + Low + +
+
@@ -10517,9 +10564,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 + 2 @@ -10528,7 +10575,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-11-hour" + id="cell-table-for-card-table-list-row-10-hour" offset={0} width="" > @@ -10548,7 +10595,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-iconColumn-pressure" + id="cell-table-for-card-table-list-row-10-iconColumn-pressure" offset={0} width="" > @@ -10561,7 +10608,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-pressure" + id="cell-table-for-card-table-list-row-10-pressure" offset={0} width="" > @@ -10570,9 +10617,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 + 0 @@ -10586,7 +10633,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-10-alert" + id="cell-table-for-card-table-list-row-11-alert" offset={0} width="" > @@ -10606,67 +10653,20 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-10-iconColumn-count" + id="cell-table-for-card-table-list-row-11-iconColumn-count" offset={0} width="" > -
- - - - - - - - - - - Low - -
-
+ /> @@ -10675,9 +10675,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 + 5 @@ -10686,7 +10686,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-10-hour" + id="cell-table-for-card-table-list-row-11-hour" offset={0} width="" > @@ -10706,7 +10706,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-iconColumn-pressure" + id="cell-table-for-card-table-list-row-11-iconColumn-pressure" offset={0} width="" > @@ -10719,7 +10719,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-pressure" + id="cell-table-for-card-table-list-row-11-pressure" offset={0} width="" > @@ -10728,9 +10728,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 1 @@ -11261,7 +11261,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-4-alert" + id="cell-table-for-card-table-list-row-3-alert" offset={0} width="" > @@ -11281,20 +11281,67 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-4-iconColumn-count" + id="cell-table-for-card-table-list-row-3-iconColumn-count" offset={0} width="" > + > +
+ + + + + + + + + + + Low + +
+
@@ -11303,9 +11350,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 + 3 @@ -11314,7 +11361,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -11334,20 +11381,65 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-iconColumn-pressure" + id="cell-table-for-card-table-list-row-3-iconColumn-pressure" offset={0} width="" > + > +
+ + + + + + + + + + + Critical + +
+
@@ -11356,9 +11448,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10 @@ -11372,7 +11464,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -11392,65 +11484,20 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-8-iconColumn-count" + id="cell-table-for-card-table-list-row-4-iconColumn-count" offset={0} width="" > -
- - - - - - - - - - - Moderate - -
-
+ /> @@ -11459,9 +11506,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 7 + 5 @@ -11470,7 +11517,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-8-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -11490,7 +11537,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-iconColumn-pressure" + id="cell-table-for-card-table-list-row-4-iconColumn-pressure" offset={0} width="" > @@ -11503,7 +11550,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -11528,7 +11575,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="" > @@ -11548,7 +11595,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-9-iconColumn-count" + id="cell-table-for-card-table-list-row-8-iconColumn-count" offset={0} width="" > @@ -11557,7 +11604,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -11576,19 +11623,17 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table id="Group" > - @@ -11598,7 +11643,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table - Low + Moderate
@@ -11608,7 +11653,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-9-count" + id="cell-table-for-card-table-list-row-8-count" offset={0} width="" > @@ -11617,9 +11662,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 7 @@ -11628,7 +11673,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-9-hour" + id="cell-table-for-card-table-list-row-8-hour" offset={0} width="" > @@ -11648,7 +11693,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-iconColumn-pressure" + id="cell-table-for-card-table-list-row-8-iconColumn-pressure" offset={0} width="" > @@ -11661,7 +11706,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -11686,7 +11731,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-9-alert" offset={0} width="" > @@ -11706,7 +11751,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-3-iconColumn-count" + id="cell-table-for-card-table-list-row-9-iconColumn-count" offset={0} width="" > @@ -11715,7 +11760,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -11775,9 +11820,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 + 0 @@ -11786,7 +11831,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-3-hour" + id="cell-table-for-card-table-list-row-9-hour" offset={0} width="" > @@ -11806,65 +11851,20 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-iconColumn-pressure" + id="cell-table-for-card-table-list-row-9-iconColumn-pressure" offset={0} width="" > -
- - - - - - - - - - - Critical - -
-
+ /> @@ -11873,9 +11873,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 @@ -12853,7 +12853,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-11-alert" + id="cell-table-for-card-table-list-row-10-alert" offset={0} width="" > @@ -12873,7 +12873,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-11-hour" + id="cell-table-for-card-table-list-row-10-hour" offset={0} width="" > @@ -12893,7 +12893,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-pressure" + id="cell-table-for-card-table-list-row-10-pressure" offset={0} width="" > @@ -12902,9 +12902,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 + 0 @@ -12918,7 +12918,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-10-alert" + id="cell-table-for-card-table-list-row-11-alert" offset={0} width="" > @@ -12938,7 +12938,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-10-hour" + id="cell-table-for-card-table-list-row-11-hour" offset={0} width="" > @@ -12958,7 +12958,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-pressure" + id="cell-table-for-card-table-list-row-11-pressure" offset={0} width="" > @@ -12967,9 +12967,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 1 @@ -13178,7 +13178,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-4-alert" + id="cell-table-for-card-table-list-row-3-alert" offset={0} width="" > @@ -13198,7 +13198,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -13218,7 +13218,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-pressure" + id="cell-table-for-card-table-list-row-3-pressure" offset={0} width="" > @@ -13227,9 +13227,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10 @@ -13243,7 +13243,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -13263,7 +13263,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-8-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -13283,7 +13283,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -13308,7 +13308,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="" > @@ -13328,7 +13328,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-9-hour" + id="cell-table-for-card-table-list-row-8-hour" offset={0} width="" > @@ -13348,7 +13348,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -13373,7 +13373,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-9-alert" offset={0} width="" > @@ -13393,7 +13393,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-3-hour" + id="cell-table-for-card-table-list-row-9-hour" offset={0} width="" > @@ -13413,7 +13413,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-pressure" + id="cell-table-for-card-table-list-row-9-pressure" offset={0} width="" > @@ -13422,9 +13422,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 @@ -14645,7 +14645,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-11-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -14654,9 +14654,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI010 proccess need to optimize adjust Y variables + AHI001 proccess need to optimize adjust Y variables @@ -14665,7 +14665,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-11-count" + id="cell-table-for-card-table-list-row-4-count" offset={0} width="" > @@ -14685,7 +14685,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-11-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -14705,7 +14705,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -14714,9 +14714,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 + 0 @@ -14730,7 +14730,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-4-alert" + id="cell-table-for-card-table-list-row-11-alert" offset={0} width="" > @@ -14739,9 +14739,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI001 proccess need to optimize adjust Y variables + AHI010 proccess need to optimize adjust Y variables @@ -14750,7 +14750,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-4-count" + id="cell-table-for-card-table-list-row-11-count" offset={0} width="" > @@ -14770,7 +14770,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-11-hour" offset={0} width="" > @@ -14790,7 +14790,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-pressure" + id="cell-table-for-card-table-list-row-11-pressure" offset={0} width="" > @@ -14799,9 +14799,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 1 @@ -15918,7 +15918,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-11-alert" + id="cell-table-for-card-table-list-row-10-alert" offset={0} width="250px" > @@ -15938,7 +15938,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-11-hour" + id="cell-table-for-card-table-list-row-10-hour" offset={0} width="" > @@ -15958,7 +15958,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-pressure" + id="cell-table-for-card-table-list-row-10-pressure" offset={0} width="" > @@ -15967,9 +15967,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 + 0 @@ -15983,7 +15983,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-10-alert" + id="cell-table-for-card-table-list-row-11-alert" offset={0} width="250px" > @@ -16003,7 +16003,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-10-hour" + id="cell-table-for-card-table-list-row-11-hour" offset={0} width="" > @@ -16023,7 +16023,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-pressure" + id="cell-table-for-card-table-list-row-11-pressure" offset={0} width="" > @@ -16032,9 +16032,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 1 @@ -16243,7 +16243,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-4-alert" + id="cell-table-for-card-table-list-row-3-alert" offset={0} width="250px" > @@ -16263,7 +16263,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -16283,7 +16283,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-pressure" + id="cell-table-for-card-table-list-row-3-pressure" offset={0} width="" > @@ -16292,9 +16292,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10 @@ -16308,7 +16308,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="250px" > @@ -16328,7 +16328,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-8-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -16348,7 +16348,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -16373,7 +16373,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="250px" > @@ -16393,7 +16393,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-9-hour" + id="cell-table-for-card-table-list-row-8-hour" offset={0} width="" > @@ -16413,7 +16413,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -16438,7 +16438,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-9-alert" offset={0} width="250px" > @@ -16458,7 +16458,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-3-hour" + id="cell-table-for-card-table-list-row-9-hour" offset={0} width="" > @@ -16478,7 +16478,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-pressure" + id="cell-table-for-card-table-list-row-9-pressure" offset={0} width="" > @@ -16487,9 +16487,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 @@ -17355,7 +17355,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-11-alert" + id="cell-table-for-card-table-list-row-10-alert" offset={0} width="" > @@ -17375,7 +17375,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-11-hour" + id="cell-table-for-card-table-list-row-10-hour" offset={0} width="" > @@ -17395,7 +17395,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-pressure" + id="cell-table-for-card-table-list-row-10-pressure" offset={0} width="" > @@ -17404,9 +17404,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 + 0 @@ -17415,7 +17415,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-11-actionColumn" + id="cell-table-for-card-table-list-row-10-actionColumn" offset={0} width="60px" > @@ -17473,7 +17473,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-10-alert" + id="cell-table-for-card-table-list-row-11-alert" offset={0} width="" > @@ -17493,7 +17493,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-10-hour" + id="cell-table-for-card-table-list-row-11-hour" offset={0} width="" > @@ -17513,7 +17513,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-pressure" + id="cell-table-for-card-table-list-row-11-pressure" offset={0} width="" > @@ -17522,9 +17522,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 1 @@ -17533,7 +17533,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-10-actionColumn" + id="cell-table-for-card-table-list-row-11-actionColumn" offset={0} width="60px" > @@ -17945,7 +17945,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-4-alert" + id="cell-table-for-card-table-list-row-3-alert" offset={0} width="" > @@ -17965,7 +17965,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -17985,7 +17985,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-pressure" + id="cell-table-for-card-table-list-row-3-pressure" offset={0} width="" > @@ -17994,9 +17994,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10 @@ -18005,7 +18005,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-4-actionColumn" + id="cell-table-for-card-table-list-row-3-actionColumn" offset={0} width="60px" > @@ -18063,7 +18063,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -18083,7 +18083,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-8-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -18103,7 +18103,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -18123,7 +18123,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-8-actionColumn" + id="cell-table-for-card-table-list-row-4-actionColumn" offset={0} width="60px" > @@ -18181,7 +18181,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="" > @@ -18201,7 +18201,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-9-hour" + id="cell-table-for-card-table-list-row-8-hour" offset={0} width="" > @@ -18221,7 +18221,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -18241,7 +18241,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-9-actionColumn" + id="cell-table-for-card-table-list-row-8-actionColumn" offset={0} width="60px" > @@ -18299,7 +18299,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-9-alert" offset={0} width="" > @@ -18319,7 +18319,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-3-hour" + id="cell-table-for-card-table-list-row-9-hour" offset={0} width="" > @@ -18339,7 +18339,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-pressure" + id="cell-table-for-card-table-list-row-9-pressure" offset={0} width="" > @@ -18348,9 +18348,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 @@ -18359,7 +18359,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-3-actionColumn" + id="cell-table-for-card-table-list-row-9-actionColumn" offset={0} width="60px" > @@ -19333,7 +19333,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-11-alert" + id="cell-table-for-card-table-list-row-10-alert" offset={0} width="" > @@ -19353,7 +19353,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-11-hour" + id="cell-table-for-card-table-list-row-10-hour" offset={0} width="" > @@ -19373,7 +19373,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-pressure" + id="cell-table-for-card-table-list-row-10-pressure" offset={0} width="" > @@ -19382,9 +19382,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 + 0 @@ -19429,7 +19429,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-10-alert" + id="cell-table-for-card-table-list-row-11-alert" offset={0} width="" > @@ -19449,7 +19449,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-10-hour" + id="cell-table-for-card-table-list-row-11-hour" offset={0} width="" > @@ -19469,7 +19469,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-pressure" + id="cell-table-for-card-table-list-row-11-pressure" offset={0} width="" > @@ -19478,9 +19478,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 1 @@ -19813,7 +19813,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-4-alert" + id="cell-table-for-card-table-list-row-3-alert" offset={0} width="" > @@ -19833,7 +19833,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -19853,7 +19853,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-pressure" + id="cell-table-for-card-table-list-row-3-pressure" offset={0} width="" > @@ -19862,9 +19862,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10 @@ -19909,7 +19909,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -19929,7 +19929,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-8-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -19949,7 +19949,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -20005,7 +20005,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="" > @@ -20025,7 +20025,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-9-hour" + id="cell-table-for-card-table-list-row-8-hour" offset={0} width="" > @@ -20045,7 +20045,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -20101,7 +20101,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-9-alert" offset={0} width="" > @@ -20121,7 +20121,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-3-hour" + id="cell-table-for-card-table-list-row-9-hour" offset={0} width="" > @@ -20141,7 +20141,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-pressure" + id="cell-table-for-card-table-list-row-9-pressure" offset={0} width="" > @@ -20150,9 +20150,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 @@ -21060,7 +21060,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-11-alert" + id="cell-table-for-card-table-list-row-10-alert" offset={0} width="" > @@ -21080,7 +21080,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-11-hour" + id="cell-table-for-card-table-list-row-10-hour" offset={0} width="" > @@ -21100,7 +21100,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-pressure" + id="cell-table-for-card-table-list-row-10-pressure" offset={0} width="" > @@ -21109,9 +21109,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 + 0 @@ -21156,7 +21156,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-10-alert" + id="cell-table-for-card-table-list-row-11-alert" offset={0} width="" > @@ -21176,7 +21176,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-10-hour" + id="cell-table-for-card-table-list-row-11-hour" offset={0} width="" > @@ -21196,7 +21196,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-pressure" + id="cell-table-for-card-table-list-row-11-pressure" offset={0} width="" > @@ -21205,9 +21205,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 1 @@ -21540,7 +21540,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-4-alert" + id="cell-table-for-card-table-list-row-3-alert" offset={0} width="" > @@ -21560,7 +21560,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -21580,7 +21580,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-pressure" + id="cell-table-for-card-table-list-row-3-pressure" offset={0} width="" > @@ -21589,9 +21589,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10 @@ -21636,7 +21636,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -21656,7 +21656,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-8-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -21676,7 +21676,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -21732,7 +21732,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="" > @@ -21752,7 +21752,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-9-hour" + id="cell-table-for-card-table-list-row-8-hour" offset={0} width="" > @@ -21772,7 +21772,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -21828,7 +21828,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-9-alert" offset={0} width="" > @@ -21848,7 +21848,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-3-hour" + id="cell-table-for-card-table-list-row-9-hour" offset={0} width="" > @@ -21868,7 +21868,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-pressure" + id="cell-table-for-card-table-list-row-9-pressure" offset={0} width="" > @@ -21877,9 +21877,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 @@ -22787,7 +22787,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-11-alert" + id="cell-table-for-card-table-list-row-10-alert" offset={0} width="" > @@ -22807,7 +22807,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-11-hour" + id="cell-table-for-card-table-list-row-10-hour" offset={0} width="" > @@ -22827,7 +22827,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-pressure" + id="cell-table-for-card-table-list-row-10-pressure" offset={0} width="" > @@ -22836,9 +22836,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 + 0 @@ -22883,7 +22883,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-10-alert" + id="cell-table-for-card-table-list-row-11-alert" offset={0} width="" > @@ -22903,7 +22903,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-10-hour" + id="cell-table-for-card-table-list-row-11-hour" offset={0} width="" > @@ -22923,7 +22923,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-pressure" + id="cell-table-for-card-table-list-row-11-pressure" offset={0} width="" > @@ -22932,9 +22932,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 1 @@ -23267,7 +23267,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-4-alert" + id="cell-table-for-card-table-list-row-3-alert" offset={0} width="" > @@ -23287,7 +23287,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -23307,7 +23307,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-pressure" + id="cell-table-for-card-table-list-row-3-pressure" offset={0} width="" > @@ -23316,9 +23316,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10 @@ -23363,7 +23363,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -23383,7 +23383,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-8-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -23403,7 +23403,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -23459,7 +23459,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="" > @@ -23479,7 +23479,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-9-hour" + id="cell-table-for-card-table-list-row-8-hour" offset={0} width="" > @@ -23499,7 +23499,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -23555,7 +23555,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-9-alert" offset={0} width="" > @@ -23575,7 +23575,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-3-hour" + id="cell-table-for-card-table-list-row-9-hour" offset={0} width="" > @@ -23595,7 +23595,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-pressure" + id="cell-table-for-card-table-list-row-9-pressure" offset={0} width="" > @@ -23604,9 +23604,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 @@ -24503,7 +24503,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-11-alert" + id="cell-table-for-card-table-list-row-10-alert" offset={0} width="" > @@ -24523,7 +24523,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-11-hour" + id="cell-table-for-card-table-list-row-10-hour" offset={0} width="" > @@ -24543,7 +24543,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-pressure" + id="cell-table-for-card-table-list-row-10-pressure" offset={0} width="" > @@ -24552,9 +24552,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 + 0 @@ -24563,7 +24563,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-11-actionColumn" + id="cell-table-for-card-table-list-row-10-actionColumn" offset={0} width="60px" > @@ -24599,7 +24599,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-10-alert" + id="cell-table-for-card-table-list-row-11-alert" offset={0} width="" > @@ -24619,7 +24619,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-10-hour" + id="cell-table-for-card-table-list-row-11-hour" offset={0} width="" > @@ -24639,7 +24639,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-pressure" + id="cell-table-for-card-table-list-row-11-pressure" offset={0} width="" > @@ -24648,9 +24648,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 1 @@ -24659,7 +24659,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-10-actionColumn" + id="cell-table-for-card-table-list-row-11-actionColumn" offset={0} width="60px" > @@ -24983,7 +24983,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-4-alert" + id="cell-table-for-card-table-list-row-3-alert" offset={0} width="" > @@ -25003,7 +25003,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -25023,7 +25023,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-pressure" + id="cell-table-for-card-table-list-row-3-pressure" offset={0} width="" > @@ -25032,9 +25032,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10 @@ -25043,7 +25043,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-4-actionColumn" + id="cell-table-for-card-table-list-row-3-actionColumn" offset={0} width="60px" > @@ -25079,7 +25079,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -25099,7 +25099,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-8-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -25119,7 +25119,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -25139,7 +25139,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-8-actionColumn" + id="cell-table-for-card-table-list-row-4-actionColumn" offset={0} width="60px" > @@ -25175,7 +25175,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="" > @@ -25195,7 +25195,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-9-hour" + id="cell-table-for-card-table-list-row-8-hour" offset={0} width="" > @@ -25215,7 +25215,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -25235,7 +25235,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-9-actionColumn" + id="cell-table-for-card-table-list-row-8-actionColumn" offset={0} width="60px" > @@ -25271,7 +25271,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-9-alert" offset={0} width="" > @@ -25291,7 +25291,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-3-hour" + id="cell-table-for-card-table-list-row-9-hour" offset={0} width="" > @@ -25311,7 +25311,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-pressure" + id="cell-table-for-card-table-list-row-9-pressure" offset={0} width="" > @@ -25320,9 +25320,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 @@ -25331,7 +25331,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="actionColumn" data-offset={0} - id="cell-table-for-card-table-list-row-3-actionColumn" + id="cell-table-for-card-table-list-row-9-actionColumn" offset={0} width="60px" > @@ -26391,7 +26391,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-11-alert" + id="cell-table-for-card-table-list-row-10-alert" offset={0} width="" > @@ -26411,20 +26411,67 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-11-iconColumn-count" + id="cell-table-for-card-table-list-row-10-iconColumn-count" offset={0} width="" > + > +
+ + + + + + + + + + + Low + +
+
@@ -26433,9 +26480,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 + 2 @@ -26444,7 +26491,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-11-hour" + id="cell-table-for-card-table-list-row-10-hour" offset={0} width="" > @@ -26464,7 +26511,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-iconColumn-pressure" + id="cell-table-for-card-table-list-row-10-iconColumn-pressure" offset={0} width="" > @@ -26477,7 +26524,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-11-pressure" + id="cell-table-for-card-table-list-row-10-pressure" offset={0} width="" > @@ -26486,9 +26533,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 1 + 0 @@ -26502,7 +26549,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-10-alert" + id="cell-table-for-card-table-list-row-11-alert" offset={0} width="" > @@ -26522,67 +26569,20 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-10-iconColumn-count" + id="cell-table-for-card-table-list-row-11-iconColumn-count" offset={0} width="" > -
- - - - - - - - - - - Low - -
-
+ /> @@ -26591,9 +26591,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 + 5 @@ -26602,7 +26602,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-10-hour" + id="cell-table-for-card-table-list-row-11-hour" offset={0} width="" > @@ -26622,7 +26622,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-iconColumn-pressure" + id="cell-table-for-card-table-list-row-11-iconColumn-pressure" offset={0} width="" > @@ -26635,7 +26635,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-10-pressure" + id="cell-table-for-card-table-list-row-11-pressure" offset={0} width="" > @@ -26644,9 +26644,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 1 @@ -27177,7 +27177,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-4-alert" + id="cell-table-for-card-table-list-row-3-alert" offset={0} width="" > @@ -27197,20 +27197,67 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-4-iconColumn-count" + id="cell-table-for-card-table-list-row-3-iconColumn-count" offset={0} width="" > + > +
+ + + + + + + + + + + Low + +
+
@@ -27219,9 +27266,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 + 3 @@ -27230,7 +27277,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -27250,20 +27297,65 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-iconColumn-pressure" + id="cell-table-for-card-table-list-row-3-iconColumn-pressure" offset={0} width="" > + > +
+ + + + + + + + + + + Critical + +
+
@@ -27272,9 +27364,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10 @@ -27288,7 +27380,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -27308,65 +27400,20 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-8-iconColumn-count" + id="cell-table-for-card-table-list-row-4-iconColumn-count" offset={0} width="" > -
- - - - - - - - - - - Moderate - -
-
+ /> @@ -27375,9 +27422,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 7 + 5 @@ -27386,7 +27433,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-8-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -27406,7 +27453,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-iconColumn-pressure" + id="cell-table-for-card-table-list-row-4-iconColumn-pressure" offset={0} width="" > @@ -27419,7 +27466,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -27444,7 +27491,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="" > @@ -27464,7 +27511,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-9-iconColumn-count" + id="cell-table-for-card-table-list-row-8-iconColumn-count" offset={0} width="" > @@ -27473,7 +27520,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -27492,19 +27539,17 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table id="Group" > - @@ -27514,7 +27559,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table - Low + Moderate
@@ -27524,7 +27569,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-9-count" + id="cell-table-for-card-table-list-row-8-count" offset={0} width="" > @@ -27533,9 +27578,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 7 @@ -27544,7 +27589,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-9-hour" + id="cell-table-for-card-table-list-row-8-hour" offset={0} width="" > @@ -27564,7 +27609,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-iconColumn-pressure" + id="cell-table-for-card-table-list-row-8-iconColumn-pressure" offset={0} width="" > @@ -27577,7 +27622,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -27602,7 +27647,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-9-alert" offset={0} width="" > @@ -27622,7 +27667,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-3-iconColumn-count" + id="cell-table-for-card-table-list-row-9-iconColumn-count" offset={0} width="" > @@ -27631,7 +27676,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -27691,9 +27736,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 + 0 @@ -27702,7 +27747,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-3-hour" + id="cell-table-for-card-table-list-row-9-hour" offset={0} width="" > @@ -27722,65 +27767,20 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-iconColumn-pressure" + id="cell-table-for-card-table-list-row-9-iconColumn-pressure" offset={0} width="" > -
- - - - - - - - - - - Critical - -
-
+ /> @@ -27789,9 +27789,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 @@ -28799,6 +28799,124 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table + + + + + AHI010 proccess need to optimize adjust Y variables + + + + + + + 10/28/2018 07:34 + + + + + +
+ + + + + + + + + + + Low + +
+
+ + + + + @@ -28888,9 +29006,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI010 proccess need to optimize adjust Y variables + AHI005 Asset failure @@ -28899,7 +29017,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-10-hour" + id="cell-table-for-card-table-list-row-1-hour" offset={0} width="" > @@ -28919,7 +29037,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-10-iconColumn-count" + id="cell-table-for-card-table-list-row-1-iconColumn-count" offset={0} width="" > @@ -28928,7 +29046,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -28997,7 +29115,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-1-alert" + id="cell-table-for-card-table-list-row-2-alert" offset={0} width="" > @@ -29006,9 +29124,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI005 Asset failure + AHI003 process need to optimize adjust X variables @@ -29017,7 +29135,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-1-hour" + id="cell-table-for-card-table-list-row-2-hour" offset={0} width="" > @@ -29037,7 +29155,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-1-iconColumn-count" + id="cell-table-for-card-table-list-row-2-iconColumn-count" offset={0} width="" > @@ -29046,7 +29164,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -29115,7 +29233,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-2-alert" + id="cell-table-for-card-table-list-row-6-alert" offset={0} width="" > @@ -29124,9 +29242,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI003 process need to optimize adjust X variables + AHI001 proccess need to optimize. @@ -29135,7 +29253,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-2-hour" + id="cell-table-for-card-table-list-row-6-hour" offset={0} width="" > @@ -29155,7 +29273,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-2-iconColumn-count" + id="cell-table-for-card-table-list-row-6-iconColumn-count" offset={0} width="" > @@ -29164,7 +29282,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -29183,21 +29301,19 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table id="Group" > - - @@ -29205,7 +29321,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table - Low + Custom Critical
@@ -29215,13 +29331,58 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-2-iconColumn-pressure" + id="cell-table-for-card-table-list-row-6-iconColumn-pressure" offset={0} width="" > + > +
+ + + + + + + + + + + Critical + +
+
@@ -29242,9 +29403,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI001 proccess need to optimize. + AHI001 proccess need to optimize adjust Y variables @@ -29253,7 +29414,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-6-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -29273,7 +29434,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-6-iconColumn-count" + id="cell-table-for-card-table-list-row-3-iconColumn-count" offset={0} width="" > @@ -29282,7 +29443,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -29301,19 +29462,21 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table id="Group" > - - @@ -29321,7 +29484,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table - Custom Critical + Low
@@ -29331,7 +29494,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-6-iconColumn-pressure" + id="cell-table-for-card-table-list-row-3-iconColumn-pressure" offset={0} width="" > @@ -29340,7 +29503,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
- - - - - AHI001 proccess need to optimize adjust Y variables - - - - - - - 10/28/2018 07:34 - - - - - -
- - - - - - - - - - - Low - -
-
- - - -
- - - - - - - - - - - Critical - -
-
- - - - - - - - - - AHI010 proccess need to optimize adjust Y variables - - - - - - - - - - 5 - - - - - - - 10/28/2018 07:34 - - - - - - - - - - 1 - - - - + + + + + + + + AHI010 proccess need to optimize adjust Y variables + + + + + + + + + + 5 + + + + + + + 10/28/2018 07:34 + + + + + + + + + + 1 + + + + @@ -31803,7 +31803,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-4-iconColumn-count" + id="cell-table-for-card-table-list-row-3-iconColumn-count" offset={0} width="" > @@ -31816,7 +31816,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-4-count" + id="cell-table-for-card-table-list-row-3-count" offset={0} width="" > @@ -31825,9 +31825,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 5 + 3 @@ -31836,7 +31836,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-4-hour" + id="cell-table-for-card-table-list-row-3-hour" offset={0} width="" > @@ -31856,20 +31856,62 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-iconColumn-pressure" + id="cell-table-for-card-table-list-row-3-iconColumn-pressure" offset={0} width="" > + > +
+ + + + + + + + pressure: 10 >= 10 + + + + Critical + +
+
@@ -31878,9 +31920,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10
@@ -31925,7 +31967,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -31945,65 +31987,20 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-8-iconColumn-count" + id="cell-table-for-card-table-list-row-4-iconColumn-count" offset={0} width="" > -
- - - - - - - - - - - Moderate - -
-
+ /> @@ -32012,9 +32009,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 7 + 5
@@ -32023,7 +32020,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-8-hour" + id="cell-table-for-card-table-list-row-4-hour" offset={0} width="" > @@ -32043,7 +32040,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-iconColumn-pressure" + id="cell-table-for-card-table-list-row-4-iconColumn-pressure" offset={0} width="" > @@ -32056,7 +32053,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -32112,7 +32109,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="" > @@ -32132,20 +32129,65 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-9-iconColumn-count" + id="cell-table-for-card-table-list-row-8-iconColumn-count" offset={0} width="" > + > +
+ + + + + + + + + + + Moderate + +
+
@@ -32154,9 +32196,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 7
@@ -32165,7 +32207,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-9-hour" + id="cell-table-for-card-table-list-row-8-hour" offset={0} width="" > @@ -32185,7 +32227,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-iconColumn-pressure" + id="cell-table-for-card-table-list-row-8-iconColumn-pressure" offset={0} width="" > @@ -32198,7 +32240,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -32254,7 +32296,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-9-alert" offset={0} width="" > @@ -32274,7 +32316,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-3-iconColumn-count" + id="cell-table-for-card-table-list-row-9-iconColumn-count" offset={0} width="" > @@ -32287,7 +32329,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="count" data-offset={0} - id="cell-table-for-card-table-list-row-3-count" + id="cell-table-for-card-table-list-row-9-count" offset={0} width="" > @@ -32296,9 +32338,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 3 + 0 @@ -32307,7 +32349,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-3-hour" + id="cell-table-for-card-table-list-row-9-hour" offset={0} width="" > @@ -32327,62 +32369,20 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-iconColumn-pressure" + id="cell-table-for-card-table-list-row-9-iconColumn-pressure" offset={0} width="" > -
- - - - - - - - pressure: 10 >= 10 - - - - Critical - -
-
+ /> @@ -32391,9 +32391,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 @@ -33457,160 +33457,6 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table - - - - - - - - AHI010 proccess need to optimize adjust Y variables - - - - - -
- - - - - - - - - - - Critical - -
-
- - - - - 10/28/2018 07:34 - - - - - - - 1 - - - - @@ -33816,9 +33662,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI005 Asset failure + AHI010 proccess need to optimize adjust Y variables @@ -33827,7 +33673,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-1-iconColumn-count" + id="cell-table-for-card-table-list-row-11-iconColumn-count" offset={0} width="" > @@ -33836,7 +33682,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -33855,21 +33701,19 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table id="Group" > - - @@ -33877,7 +33721,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table - Low + Critical
@@ -33887,7 +33731,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-1-hour" + id="cell-table-for-card-table-list-row-11-hour" offset={0} width="" > @@ -33907,7 +33751,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-1-pressure" + id="cell-table-for-card-table-list-row-11-pressure" offset={0} width="" > @@ -33916,9 +33760,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 1 @@ -33963,7 +33807,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-2-alert" + id="cell-table-for-card-table-list-row-1-alert" offset={0} width="" > @@ -33972,9 +33816,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI003 process need to optimize adjust X variables + AHI005 Asset failure @@ -33983,7 +33827,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-2-iconColumn-count" + id="cell-table-for-card-table-list-row-1-iconColumn-count" offset={0} width="" > @@ -33992,7 +33836,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -34063,7 +33907,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-2-pressure" + id="cell-table-for-card-table-list-row-1-pressure" offset={0} width="" > @@ -34072,9 +33916,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 2 + 0 @@ -34119,7 +33963,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-6-alert" + id="cell-table-for-card-table-list-row-2-alert" offset={0} width="" > @@ -34128,9 +33972,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI001 proccess need to optimize. + AHI003 process need to optimize adjust X variables @@ -34139,7 +33983,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-6-iconColumn-count" + id="cell-table-for-card-table-list-row-2-iconColumn-count" offset={0} width="" > @@ -34148,7 +33992,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -34167,19 +34011,21 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table id="Group" > - - @@ -34187,7 +34033,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table - Critical + Low
@@ -34197,7 +34043,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="hour" data-offset={0} - id="cell-table-for-card-table-list-row-6-hour" + id="cell-table-for-card-table-list-row-2-hour" offset={0} width="" > @@ -34217,7 +34063,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-6-pressure" + id="cell-table-for-card-table-list-row-2-pressure" offset={0} width="" > @@ -34226,9 +34072,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 68 + 2 @@ -34273,7 +34119,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-4-alert" + id="cell-table-for-card-table-list-row-6-alert" offset={0} width="" > @@ -34282,9 +34128,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - AHI001 proccess need to optimize adjust Y variables + AHI001 proccess need to optimize. @@ -34293,7 +34139,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-4-iconColumn-count" + id="cell-table-for-card-table-list-row-6-iconColumn-count" offset={0} width="" > @@ -34302,7 +34148,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -34371,7 +34217,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-4-pressure" + id="cell-table-for-card-table-list-row-6-pressure" offset={0} width="" > @@ -34380,9 +34226,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 68 @@ -34427,7 +34273,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-8-alert" + id="cell-table-for-card-table-list-row-3-alert" offset={0} width="" > @@ -34447,7 +34293,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-8-iconColumn-count" + id="cell-table-for-card-table-list-row-3-iconColumn-count" offset={0} width="" > @@ -34456,7 +34302,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -34525,7 +34371,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-8-pressure" + id="cell-table-for-card-table-list-row-3-pressure" offset={0} width="" > @@ -34534,9 +34380,9 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 0 + 10 @@ -34581,7 +34427,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-9-alert" + id="cell-table-for-card-table-list-row-4-alert" offset={0} width="" > @@ -34601,20 +34447,65 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-9-iconColumn-count" + id="cell-table-for-card-table-list-row-4-iconColumn-count" offset={0} width="" > + > +
+ + + + + + + + + + + Critical + +
+
@@ -34634,7 +34525,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-9-pressure" + id="cell-table-for-card-table-list-row-4-pressure" offset={0} width="" > @@ -34690,7 +34581,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="alert" data-offset={0} - id="cell-table-for-card-table-list-row-3-alert" + id="cell-table-for-card-table-list-row-8-alert" offset={0} width="" > @@ -34710,7 +34601,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="iconColumn-count" data-offset={0} - id="cell-table-for-card-table-list-row-3-iconColumn-count" + id="cell-table-for-card-table-list-row-8-iconColumn-count" offset={0} width="" > @@ -34719,7 +34610,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table >
@@ -34788,7 +34679,7 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table className="data-table-start" data-column="pressure" data-offset={0} - id="cell-table-for-card-table-list-row-3-pressure" + id="cell-table-for-card-table-list-row-8-pressure" offset={0} width="" > @@ -34797,9 +34688,118 @@ exports[`Storybook Snapshot tests and console checks Storyshots Watson IoT/Table > - 10 + 0 + + + + + + + + + + + + AHI001 proccess need to optimize adjust Y variables + + + + + + + + + + 10/28/2018 07:34 + + + + + + + 0 diff --git a/yarn.lock b/yarn.lock index f834646aec..006044d9d5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15,6 +15,13 @@ dependencies: "@babel/highlight" "^7.0.0" +"@babel/code-frame@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.1.tgz#d5481c5095daa1c57e16e54c6f9198443afb49ff" + integrity sha512-IGhtTmpjGbYzcEDOw7DcQtbQSXcG9ftmAXtWTu9V936vDye4xjjekktFAtgZsWpzTj/X01jocB46mTywm/4SZw== + dependencies: + "@babel/highlight" "^7.10.1" + "@babel/code-frame@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" @@ -22,6 +29,15 @@ dependencies: "@babel/highlight" "^7.8.3" +"@babel/compat-data@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.1.tgz#b1085ffe72cd17bf2c0ee790fc09f9626011b2db" + integrity sha512-CHvCj7So7iCkGKPRFUfryXIkU2gSBw7VSZFYLsqVhrS47269VK2Hfi9S/YcublPMW8k1u2bQBlbDruoQEm4fgw== + dependencies: + browserslist "^4.12.0" + invariant "^2.2.4" + semver "^5.5.0" + "@babel/compat-data@^7.8.4": version "7.8.5" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.8.5.tgz#d28ce872778c23551cbb9432fc68d28495b613b9" @@ -31,15 +47,6 @@ invariant "^2.2.4" semver "^5.5.0" -"@babel/compat-data@^7.8.6", "@babel/compat-data@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.9.0.tgz#04815556fc90b0c174abd2c0c1bb966faa036a6c" - integrity sha512-zeFQrr+284Ekvd9e7KAX954LkapWiOmQtsfHirhxqfdlX6MEC32iRE+pqUGlYIBchdevaCwvzxWGSy/YBNI85g== - dependencies: - browserslist "^4.9.1" - invariant "^2.2.4" - semver "^5.5.0" - "@babel/core@>=7.2.2": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.5.5.tgz#17b2686ef0d6bc58f963dddd68ab669755582c30" @@ -80,6 +87,28 @@ semver "^5.4.1" source-map "^0.5.0" +"@babel/core@^7.10.2": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.2.tgz#bd6786046668a925ac2bd2fd95b579b92a23b36a" + integrity sha512-KQmV9yguEjQsXqyOUGKjS4+3K8/DlOCE2pZcq4augdQmtTy5iv5EHtmMSJ7V4c1BIPjuwtZYqYLCq9Ga+hGBRQ== + dependencies: + "@babel/code-frame" "^7.10.1" + "@babel/generator" "^7.10.2" + "@babel/helper-module-transforms" "^7.10.1" + "@babel/helpers" "^7.10.1" + "@babel/parser" "^7.10.2" + "@babel/template" "^7.10.1" + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.2" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.1" + json5 "^2.1.2" + lodash "^4.17.13" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + "@babel/core@^7.4.5", "@babel/core@^7.7.5": version "7.8.4" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.8.4.tgz#d496799e5c12195b3602d0fddd77294e3e38e80e" @@ -101,26 +130,14 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/core@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e" - integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w== +"@babel/generator@^7.10.1", "@babel/generator@^7.10.2": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.2.tgz#0fa5b5b2389db8bfdfcc3492b551ee20f5dd69a9" + integrity sha512-AxfBNHNu99DTMvlUPlt1h2+Hn7knPpH5ayJ8OqDWSeLld+Fi2AYBTC/IejWDM9Edcii4UzZRCsbUt0WlSDsDsA== dependencies: - "@babel/code-frame" "^7.8.3" - "@babel/generator" "^7.9.0" - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helpers" "^7.9.0" - "@babel/parser" "^7.9.0" - "@babel/template" "^7.8.6" - "@babel/traverse" "^7.9.0" - "@babel/types" "^7.9.0" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.1" - json5 "^2.1.2" + "@babel/types" "^7.10.2" + jsesc "^2.5.1" lodash "^4.17.13" - resolve "^1.3.2" - semver "^5.4.1" source-map "^0.5.0" "@babel/generator@^7.4.0", "@babel/generator@^7.4.4": @@ -175,7 +192,7 @@ lodash "^4.17.13" source-map "^0.5.0" -"@babel/generator@^7.9.0", "@babel/generator@^7.9.5": +"@babel/generator@^7.9.5": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.5.tgz#27f0917741acc41e6eaaced6d68f96c3fa9afaf9" integrity sha512-GbNIxVB3ZJe3tLeDm1HSn2AhuD/mVcyLDpgtLXa5tplmWrJdF/elxB56XNqCuD6szyNkDi6wuoKXln3QeBmCHQ== @@ -191,6 +208,13 @@ dependencies: "@babel/types" "^7.0.0" +"@babel/helper-annotate-as-pure@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.1.tgz#f6d08acc6f70bbd59b436262553fb2e259a1a268" + integrity sha512-ewp3rvJEwLaHgyWGe4wQssC2vjks3E80WiUe2BpMb0KhreTjMROCbxXcEovTrbeGVdQct5VjQfrv9EgC+xMzCw== + dependencies: + "@babel/types" "^7.10.1" + "@babel/helper-annotate-as-pure@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee" @@ -198,6 +222,14 @@ dependencies: "@babel/types" "^7.8.3" +"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.1.tgz#0ec7d9be8174934532661f87783eb18d72290059" + integrity sha512-cQpVq48EkYxUU0xozpGCLla3wlkdRRqLWu1ksFMXA9CM5KQmyyRpSEsYXbao7JUkOw/tAaYKCaYyZq6HOFYtyw== + dependencies: + "@babel/helper-explode-assignable-expression" "^7.10.1" + "@babel/types" "^7.10.1" + "@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503" @@ -206,14 +238,22 @@ "@babel/helper-explode-assignable-expression" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/helper-builder-react-jsx-experimental@^7.9.0": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz#0b4b3e04e6123f03b404ca4dfd6528fe6bb92fe3" - integrity sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg== +"@babel/helper-builder-react-jsx-experimental@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.1.tgz#9a7d58ad184d3ac3bafb1a452cec2bad7e4a0bc8" + integrity sha512-irQJ8kpQUV3JasXPSFQ+LCCtJSc5ceZrPFVj6TElR6XCHssi3jV8ch3odIrNtjJFRZZVbrOEfJMI79TPU/h1pQ== dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-module-imports" "^7.8.3" - "@babel/types" "^7.9.5" + "@babel/helper-annotate-as-pure" "^7.10.1" + "@babel/helper-module-imports" "^7.10.1" + "@babel/types" "^7.10.1" + +"@babel/helper-builder-react-jsx@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.1.tgz#a327f0cf983af5554701b1215de54a019f09b532" + integrity sha512-KXzzpyWhXgzjXIlJU1ZjIXzUPdej1suE6vzqgImZ/cpAsR/CC8gUcX4EWRmDfWz/cs6HOCPMBIJ3nKoXt3BFuw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.1" + "@babel/types" "^7.10.1" "@babel/helper-builder-react-jsx@^7.8.3": version "7.8.3" @@ -223,14 +263,6 @@ "@babel/types" "^7.8.3" esutils "^2.0.0" -"@babel/helper-builder-react-jsx@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz#16bf391990b57732700a3278d4d9a81231ea8d32" - integrity sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/types" "^7.9.0" - "@babel/helper-call-delegate@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.8.3.tgz#de82619898aa605d409c42be6ffb8d7204579692" @@ -240,6 +272,17 @@ "@babel/traverse" "^7.8.3" "@babel/types" "^7.8.3" +"@babel/helper-compilation-targets@^7.10.2": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.2.tgz#a17d9723b6e2c750299d2a14d4637c76936d8285" + integrity sha512-hYgOhF4To2UTB4LTaZepN/4Pl9LD4gfbJx8A34mqoluT8TLbof1mhUlYuNWTEebONa8+UlCC4X0TEXu7AOUyGA== + dependencies: + "@babel/compat-data" "^7.10.1" + browserslist "^4.12.0" + invariant "^2.2.4" + levenary "^1.1.1" + semver "^5.5.0" + "@babel/helper-compilation-targets@^7.8.4": version "7.8.4" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.4.tgz#03d7ecd454b7ebe19a254f76617e61770aed2c88" @@ -251,16 +294,17 @@ levenary "^1.1.1" semver "^5.5.0" -"@babel/helper-compilation-targets@^7.8.7": - version "7.8.7" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.7.tgz#dac1eea159c0e4bd46e309b5a1b04a66b53c1dde" - integrity sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw== +"@babel/helper-create-class-features-plugin@^7.10.1": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.2.tgz#7474295770f217dbcf288bf7572eb213db46ee67" + integrity sha512-5C/QhkGFh1vqcziq1vAL6SI9ymzUp8BCYjFpvYVhWP4DlATIb3u5q3iUd35mvlyGs8fO7hckkW7i0tmH+5+bvQ== dependencies: - "@babel/compat-data" "^7.8.6" - browserslist "^4.9.1" - invariant "^2.2.4" - levenary "^1.1.1" - semver "^5.5.0" + "@babel/helper-function-name" "^7.10.1" + "@babel/helper-member-expression-to-functions" "^7.10.1" + "@babel/helper-optimise-call-expression" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-replace-supers" "^7.10.1" + "@babel/helper-split-export-declaration" "^7.10.1" "@babel/helper-create-class-features-plugin@^7.8.3": version "7.8.3" @@ -274,6 +318,15 @@ "@babel/helper-replace-supers" "^7.8.3" "@babel/helper-split-export-declaration" "^7.8.3" +"@babel/helper-create-regexp-features-plugin@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.1.tgz#1b8feeab1594cbcfbf3ab5a3bbcabac0468efdbd" + integrity sha512-Rx4rHS0pVuJn5pJOqaqcZR4XSgeF9G/pO/79t+4r7380tXFJdzImFnxMU19f83wjSrmKHq6myrM10pFHTGzkUA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.1" + "@babel/helper-regex" "^7.10.1" + regexpu-core "^4.7.0" + "@babel/helper-create-regexp-features-plugin@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.3.tgz#c774268c95ec07ee92476a3862b75cc2839beb79" @@ -291,6 +344,15 @@ "@babel/helper-regex" "^7.8.3" regexpu-core "^4.7.0" +"@babel/helper-define-map@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.1.tgz#5e69ee8308648470dd7900d159c044c10285221d" + integrity sha512-+5odWpX+OnvkD0Zmq7panrMuAGQBu6aPUgvMzuMGo4R+jUOvealEj2hiqI6WhxgKrTpFoFj0+VdsuA8KDxHBDg== + dependencies: + "@babel/helper-function-name" "^7.10.1" + "@babel/types" "^7.10.1" + lodash "^4.17.13" + "@babel/helper-define-map@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15" @@ -300,6 +362,14 @@ "@babel/types" "^7.8.3" lodash "^4.17.13" +"@babel/helper-explode-assignable-expression@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.1.tgz#e9d76305ee1162ca467357ae25df94f179af2b7e" + integrity sha512-vcUJ3cDjLjvkKzt6rHrl767FeE7pMEYfPanq5L16GRtrXIoznc0HykNW2aEYkcnP76P0isoqJ34dDMFZwzEpJg== + dependencies: + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.1" + "@babel/helper-explode-assignable-expression@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982" @@ -316,6 +386,15 @@ "@babel/template" "^7.1.0" "@babel/types" "^7.0.0" +"@babel/helper-function-name@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.1.tgz#92bd63829bfc9215aca9d9defa85f56b539454f4" + integrity sha512-fcpumwhs3YyZ/ttd5Rz0xn0TpIwVkN7X0V38B9TWNfVF42KEkhkAAuPCQ3oXmtTRtiPJrmZ0TrfS0GKF0eMaRQ== + dependencies: + "@babel/helper-get-function-arity" "^7.10.1" + "@babel/template" "^7.10.1" + "@babel/types" "^7.10.1" + "@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" @@ -349,6 +428,13 @@ dependencies: "@babel/types" "^7.0.0" +"@babel/helper-get-function-arity@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.1.tgz#7303390a81ba7cb59613895a192b93850e373f7d" + integrity sha512-F5qdXkYGOQUb0hpRaPoetF9AnsXknKjWMZ+wmsIRsp5ge5sFh4c3h1eH2pRTTuy9KKAA2+TTYomGXAtEL2fQEw== + dependencies: + "@babel/types" "^7.10.1" + "@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" @@ -363,6 +449,13 @@ dependencies: "@babel/types" "^7.8.3" +"@babel/helper-hoist-variables@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.1.tgz#7e77c82e5dcae1ebf123174c385aaadbf787d077" + integrity sha512-vLm5srkU8rI6X3+aQ1rQJyfjvCBLXP8cAGeuw04zeAM2ItKb1e7pmVmLyHb4sDaAYnLL13RHOZPLEtcGZ5xvjg== + dependencies: + "@babel/types" "^7.10.1" + "@babel/helper-hoist-variables@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134" @@ -370,6 +463,13 @@ dependencies: "@babel/types" "^7.8.3" +"@babel/helper-member-expression-to-functions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.1.tgz#432967fd7e12a4afef66c4687d4ca22bc0456f15" + integrity sha512-u7XLXeM2n50gb6PWJ9hoO5oO7JFPaZtrh35t8RqKLT1jFKj9IWeD1zrcrYp1q1qiZTdEarfDWfTIP8nGsu0h5g== + dependencies: + "@babel/types" "^7.10.1" + "@babel/helper-member-expression-to-functions@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c" @@ -383,6 +483,13 @@ dependencies: "@babel/types" "^7.0.0" +"@babel/helper-module-imports@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.1.tgz#dd331bd45bccc566ce77004e9d05fe17add13876" + integrity sha512-SFxgwYmZ3HZPyZwJRiVNLRHWuW2OgE5k2nrVs6D9Iv4PPnXVffuEHy83Sfx/l4SqF+5kyJXjAyUmrG7tNm+qVg== + dependencies: + "@babel/types" "^7.10.1" + "@babel/helper-module-imports@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" @@ -390,6 +497,19 @@ dependencies: "@babel/types" "^7.8.3" +"@babel/helper-module-transforms@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.1.tgz#24e2f08ee6832c60b157bb0936c86bef7210c622" + integrity sha512-RLHRCAzyJe7Q7sF4oy2cB+kRnU4wDZY/H2xJFGof+M+SJEGhZsb+GFj5j1AD8NiSaVBJ+Pf0/WObiXu/zxWpFg== + dependencies: + "@babel/helper-module-imports" "^7.10.1" + "@babel/helper-replace-supers" "^7.10.1" + "@babel/helper-simple-access" "^7.10.1" + "@babel/helper-split-export-declaration" "^7.10.1" + "@babel/template" "^7.10.1" + "@babel/types" "^7.10.1" + lodash "^4.17.13" + "@babel/helper-module-transforms@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.8.3.tgz#d305e35d02bee720fbc2c3c3623aa0c316c01590" @@ -402,18 +522,12 @@ "@babel/types" "^7.8.3" lodash "^4.17.13" -"@babel/helper-module-transforms@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5" - integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA== +"@babel/helper-optimise-call-expression@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.1.tgz#b4a1f2561870ce1247ceddb02a3860fa96d72543" + integrity sha512-a0DjNS1prnBsoKx83dP2falChcs7p3i8VMzdrSbfLhuQra/2ENC4sbri34dz/rWmDADsmF1q5GbfaXydh0Jbjg== dependencies: - "@babel/helper-module-imports" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.6" - "@babel/helper-simple-access" "^7.8.3" - "@babel/helper-split-export-declaration" "^7.8.3" - "@babel/template" "^7.8.6" - "@babel/types" "^7.9.0" - lodash "^4.17.13" + "@babel/types" "^7.10.1" "@babel/helper-optimise-call-expression@^7.8.3": version "7.8.3" @@ -426,11 +540,23 @@ version "7.0.0" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" +"@babel/helper-plugin-utils@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz#ec5a5cf0eec925b66c60580328b122c01230a127" + integrity sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA== + "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== +"@babel/helper-regex@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.1.tgz#021cf1a7ba99822f993222a001cc3fec83255b96" + integrity sha512-7isHr19RsIJWWLLFn21ubFt223PjQyg1HY7CZEMRr820HttHPpVvrsIN3bUOo44DEfFV4kBXO7Abbn9KTUZV7g== + dependencies: + lodash "^4.17.13" + "@babel/helper-regex@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965" @@ -438,6 +564,17 @@ dependencies: lodash "^4.17.13" +"@babel/helper-remap-async-to-generator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.1.tgz#bad6aaa4ff39ce8d4b82ccaae0bfe0f7dbb5f432" + integrity sha512-RfX1P8HqsfgmJ6CwaXGKMAqbYdlleqglvVtht0HGPMSsy2V6MqLlOJVF/0Qyb/m2ZCi2z3q3+s6Pv7R/dQuZ6A== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.1" + "@babel/helper-wrap-function" "^7.10.1" + "@babel/template" "^7.10.1" + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.1" + "@babel/helper-remap-async-to-generator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86" @@ -449,6 +586,16 @@ "@babel/traverse" "^7.8.3" "@babel/types" "^7.8.3" +"@babel/helper-replace-supers@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.1.tgz#ec6859d20c5d8087f6a2dc4e014db7228975f13d" + integrity sha512-SOwJzEfpuQwInzzQJGjGaiG578UYmyi2Xw668klPWV5n07B73S0a9btjLk/52Mlcxa+5AdIYqws1KyXRfMoB7A== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.10.1" + "@babel/helper-optimise-call-expression" "^7.10.1" + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.1" + "@babel/helper-replace-supers@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.3.tgz#91192d25f6abbcd41da8a989d4492574fb1530bc" @@ -459,15 +606,13 @@ "@babel/traverse" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/helper-replace-supers@^7.8.6": - version "7.8.6" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8" - integrity sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA== +"@babel/helper-simple-access@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.1.tgz#08fb7e22ace9eb8326f7e3920a1c2052f13d851e" + integrity sha512-VSWpWzRzn9VtgMJBIWTZ+GP107kZdQ4YplJlCmIrjoLVSi/0upixezHCDG8kpPVTBJpKfxTH01wDhh+jS2zKbw== dependencies: - "@babel/helper-member-expression-to-functions" "^7.8.3" - "@babel/helper-optimise-call-expression" "^7.8.3" - "@babel/traverse" "^7.8.6" - "@babel/types" "^7.8.6" + "@babel/template" "^7.10.1" + "@babel/types" "^7.10.1" "@babel/helper-simple-access@^7.8.3": version "7.8.3" @@ -477,6 +622,13 @@ "@babel/template" "^7.8.3" "@babel/types" "^7.8.3" +"@babel/helper-split-export-declaration@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.1.tgz#c6f4be1cbc15e3a868e4c64a17d5d31d754da35f" + integrity sha512-UQ1LVBPrYdbchNhLwj6fetj46BcFwfS4NllJo/1aJsT+1dLTEnXJL0qHqtY7gPzF8S2fXBJamf1biAXV3X077g== + dependencies: + "@babel/types" "^7.10.1" + "@babel/helper-split-export-declaration@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" @@ -498,11 +650,26 @@ dependencies: "@babel/types" "^7.8.3" +"@babel/helper-validator-identifier@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.1.tgz#5770b0c1a826c4f53f5ede5e153163e0318e94b5" + integrity sha512-5vW/JXLALhczRCWP0PnFDMCJAchlBvM7f4uk/jXritBnIa6E1KmqmtrS3yn1LAnxFBypQ3eneLuXjsnfQsgILw== + "@babel/helper-validator-identifier@^7.9.5": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80" integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g== +"@babel/helper-wrap-function@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.1.tgz#956d1310d6696257a7afd47e4c42dfda5dfcedc9" + integrity sha512-C0MzRGteVDn+H32/ZgbAv5r56f2o1fZSA/rj/TYo8JEJNHg+9BdSmKBUND0shxWRztWhjlT2cvHYuynpPsVJwQ== + dependencies: + "@babel/helper-function-name" "^7.10.1" + "@babel/template" "^7.10.1" + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.1" + "@babel/helper-wrap-function@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610" @@ -513,6 +680,15 @@ "@babel/traverse" "^7.8.3" "@babel/types" "^7.8.3" +"@babel/helpers@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.1.tgz#a6827b7cb975c9d9cef5fd61d919f60d8844a973" + integrity sha512-muQNHF+IdU6wGgkaJyhhEmI54MOZBKsFfsXFhboz1ybwJ1Kl7IHlbm2a++4jwrmY5UYsgitt5lfqo1wMFcHmyw== + dependencies: + "@babel/template" "^7.10.1" + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.1" + "@babel/helpers@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.5.5.tgz#63908d2a73942229d1e6685bc2a0e730dde3b75e" @@ -540,15 +716,6 @@ "@babel/traverse" "^7.8.4" "@babel/types" "^7.8.3" -"@babel/helpers@^7.9.0": - version "7.9.2" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.2.tgz#b42a81a811f1e7313b88cba8adc66b3d9ae6c09f" - integrity sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA== - dependencies: - "@babel/template" "^7.8.3" - "@babel/traverse" "^7.9.0" - "@babel/types" "^7.9.0" - "@babel/highlight@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" @@ -557,6 +724,15 @@ esutils "^2.0.2" js-tokens "^4.0.0" +"@babel/highlight@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.1.tgz#841d098ba613ba1a427a2b383d79e35552c38ae0" + integrity sha512-8rMof+gVP8mxYZApLF/JgNDAkdKa+aJt3ZYxF8z6+j/hpeXL7iMsKCPHa2jNMHu/qqBwzQF4OHNoYi8dMA/rYg== + dependencies: + "@babel/helper-validator-identifier" "^7.10.1" + chalk "^2.0.0" + js-tokens "^4.0.0" + "@babel/highlight@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797" @@ -571,6 +747,11 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8" integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA== +"@babel/parser@^7.10.1", "@babel/parser@^7.10.2": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.2.tgz#871807f10442b92ff97e4783b9b54f6a0ca812d0" + integrity sha512-PApSXlNMJyB4JiGVhCOlzKIif+TKFTvu0aQAhnTvfP/z3vVSN6ZypH5bfUNwFXXjRQtUEBNFd2PtmCmG2Py3qQ== + "@babel/parser@^7.2.2": version "7.2.3" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.2.3.tgz#32f5df65744b70888d17872ec106b02434ba1489" @@ -600,6 +781,15 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.4.tgz#d1dbe64691d60358a974295fa53da074dd2ce8e8" integrity sha512-0fKu/QqildpXmPVaRBoXOlyBb3MC+J0A66x97qEfLOMkn3u6nfY5esWogQwi/K0BjASYy4DbnsEWnpNL6qT5Mw== +"@babel/plugin-proposal-async-generator-functions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.1.tgz#6911af5ba2e615c4ff3c497fe2f47b35bf6d7e55" + integrity sha512-vzZE12ZTdB336POZjmpblWfNNRpMSua45EYnRigE2XsZxcXcIyly2ixnTJasJE4Zq3U7t2d8rRF7XRUuzHxbOw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-remap-async-to-generator" "^7.10.1" + "@babel/plugin-syntax-async-generators" "^7.8.0" + "@babel/plugin-proposal-async-generator-functions@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f" @@ -609,7 +799,15 @@ "@babel/helper-remap-async-to-generator" "^7.8.3" "@babel/plugin-syntax-async-generators" "^7.8.0" -"@babel/plugin-proposal-class-properties@^7.7.0", "@babel/plugin-proposal-class-properties@^7.8.3": +"@babel/plugin-proposal-class-properties@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.1.tgz#046bc7f6550bb08d9bd1d4f060f5f5a4f1087e01" + integrity sha512-sqdGWgoXlnOdgMXU+9MbhzwFRgxVLeiGBqTrnuS7LC2IBU31wSsESbTUreT2O418obpfPdGUR2GbEufZF1bpqw== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-proposal-class-properties@^7.7.0": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e" integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA== @@ -617,22 +815,30 @@ "@babel/helper-create-class-features-plugin" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-proposal-decorators@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.8.3.tgz#2156860ab65c5abf068c3f67042184041066543e" - integrity sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w== +"@babel/plugin-proposal-decorators@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.10.1.tgz#9373c2d8db45345c6e30452ad77b469758e5c8f7" + integrity sha512-xBfteh352MTke2U1NpclzMDmAmCdQ2fBZjhZQQfGTjXw6qcRYMkt528sA1U8o0ThDCSeuETXIj5bOGdxN+5gkw== dependencies: - "@babel/helper-create-class-features-plugin" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-decorators" "^7.8.3" + "@babel/helper-create-class-features-plugin" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-decorators" "^7.10.1" -"@babel/plugin-proposal-do-expressions@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-do-expressions/-/plugin-proposal-do-expressions-7.8.3.tgz#2ccf97061e93d5ffff986dda3f1b54efe9df7719" - integrity sha512-NoMcN+0+SS1DVswjDCfz+Jfm9ViOYuFtv1lm0QInEugbEXK2iH3jeSq38WmIiTP+2QKqo2zt8xku77gqHINZkw== +"@babel/plugin-proposal-do-expressions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-do-expressions/-/plugin-proposal-do-expressions-7.10.1.tgz#ef99f594320f38c300ed2404d6ca83b00c858905" + integrity sha512-rjAoAQl6YLsY9C60zQBVTBsDP8YUWlgSv7qRdG8rapQYl+WL1LIVq23SHDCPllaNrE8bqO9csBooTL4yXr7FnA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-do-expressions" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-do-expressions" "^7.10.1" + +"@babel/plugin-proposal-dynamic-import@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.1.tgz#e36979dc1dc3b73f6d6816fc4951da2363488ef0" + integrity sha512-Cpc2yUVHTEGPlmiQzXj026kqwjEQAD9I4ZC16uzdbgWgitg/UHKHLffKNCQZ5+y8jpIZPJcKcwsr2HwPh+w3XA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" "@babel/plugin-proposal-dynamic-import@^7.8.3": version "7.8.3" @@ -642,30 +848,38 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-dynamic-import" "^7.8.0" -"@babel/plugin-proposal-export-default-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.8.3.tgz#4cb7c2fdeaed490b60d9bfd3dc8a20f81f9c2e7c" - integrity sha512-PYtv2S2OdCdp7GSPDg5ndGZFm9DmWFvuLoS5nBxZCgOBggluLnhTScspJxng96alHQzPyrrHxvC9/w4bFuspeA== +"@babel/plugin-proposal-export-default-from@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.10.1.tgz#59ea2a4f09dbb0358c73dab27def3d21a27bd370" + integrity sha512-Xfc1CfHapIkwZ/+AI+j4Ha3g233ol0EEdy6SmnUuQQiZX78SfQXHd8tmntc5zqCkwPnIHoiZa6l6p0OAvxYXHw== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-export-default-from" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-export-default-from" "^7.10.1" -"@babel/plugin-proposal-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.8.3.tgz#63ad57265d0e3912afd666eb44ce26fa8cd2c774" - integrity sha512-WKK+9jz6TWUTX1uej9/EUVOmM1sK7aHv6bZyxbUV3NJjbiIZRqJITeXGMo7D631J72PEnIORh5VOlFCSlrLicg== +"@babel/plugin-proposal-export-namespace-from@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.1.tgz#512ee069cd866256600bdf89639cf7e1b51fbfe9" + integrity sha512-eR4CoYb6mh5y9LWjnb4CyUatuhtZ8pNLXLDi46GkqtF7WPafFqXycHdvF5qWviozZVGRSAmHzdayc8wUReCdjA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" -"@babel/plugin-proposal-function-sent@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-function-sent/-/plugin-proposal-function-sent-7.8.3.tgz#341fd532b7eadbbbdd8bcb715150f279a779f14f" - integrity sha512-lu9wQjLnXd6Zy6eBKr0gE175xfD+da1rv2wOWEnZlD5KIxl894Tg34ppZ7ANR0jzQJMn+7pGuzSdy6JK4zGtKg== +"@babel/plugin-proposal-function-sent@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-function-sent/-/plugin-proposal-function-sent-7.10.1.tgz#e9ffe9df5348e2694d6679f8fd0897acf14326d7" + integrity sha512-mpfEbRcwHvDA6k19ZFsGkW4Q+AF7DekafKTTfn2Ihz1cs6/qL+KgAJlcHBY6XnW1OW1zDaNCR0i28Blonl8/Bg== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-wrap-function" "^7.8.3" - "@babel/plugin-syntax-function-sent" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-wrap-function" "^7.10.1" + "@babel/plugin-syntax-function-sent" "^7.10.1" + +"@babel/plugin-proposal-json-strings@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.1.tgz#b1e691ee24c651b5a5e32213222b2379734aff09" + integrity sha512-m8r5BmV+ZLpWPtMY2mOKN7wre6HIO4gfIiV+eOmsnZABNenrt/kzYBwrh+KOfgumSWpnlGs5F70J8afYMSJMBg== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-json-strings" "^7.8.0" "@babel/plugin-proposal-json-strings@^7.8.3": version "7.8.3" @@ -675,13 +889,21 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-json-strings" "^7.8.0" -"@babel/plugin-proposal-logical-assignment-operators@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.8.3.tgz#e94810d96cb76f20524e66ba617171c21f3c0124" - integrity sha512-TLPLojGZYBeeoesO2NQIMLUJKD9N5oJlxG6iHLx7l7EvNQP5DfzeyxdI2lMPo5I7ih4Jv/vxrlwIPf6aJw422Q== +"@babel/plugin-proposal-logical-assignment-operators@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.10.1.tgz#4adb41f15793187f1cba7f2d1b760faba3d25bfb" + integrity sha512-+0uLbTZhTvSet8KpTMMaL2p7p12/b//sKbFzDPAMk6z4rlYbTtyFZmq65KJMLGLio9AVjq2VKF8mxxJMXKUMwA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.1" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.1.tgz#02dca21673842ff2fe763ac253777f235e9bbf78" + integrity sha512-56cI/uHYgL2C8HVuHOuvVowihhX0sxb3nnfVRzUeVHTWmRHTZrKuAh/OBIMggGU/S1g/1D2CRCXqP+3u7vX7iA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" "@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3": version "7.8.3" @@ -691,13 +913,22 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" -"@babel/plugin-proposal-numeric-separator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz#5d6769409699ec9b3b68684cd8116cedff93bad8" - integrity sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ== +"@babel/plugin-proposal-numeric-separator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.1.tgz#a9a38bc34f78bdfd981e791c27c6fdcec478c123" + integrity sha512-jjfym4N9HtCiNfyyLAVD8WqPYeHUrw4ihxuAynWj6zzp2gf9Ey2f7ImhFm6ikB3CLf5Z/zmcJDri6B4+9j9RsA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-numeric-separator" "^7.10.1" + +"@babel/plugin-proposal-object-rest-spread@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.1.tgz#cba44908ac9f142650b4a65b8aa06bf3478d5fb6" + integrity sha512-Z+Qri55KiQkHh7Fc4BW6o+QBuTagbOp9txE+4U1i79u9oWlf2npkiDx+Rf3iK3lbcHBuNy9UOkwuR5wOMH3LIQ== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-transform-parameters" "^7.10.1" "@babel/plugin-proposal-object-rest-spread@^7.6.2": version "7.6.2" @@ -715,14 +946,13 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-object-rest-spread" "^7.8.0" -"@babel/plugin-proposal-object-rest-spread@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.5.tgz#3fd65911306d8746014ec0d0cf78f0e39a149116" - integrity sha512-VP2oXvAf7KCYTthbUHwBlewbl1Iq059f6seJGsxMizaCdgHIeczOr7FBqELhSqfkIl04Fi8okzWzl63UKbQmmg== +"@babel/plugin-proposal-optional-catch-binding@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.1.tgz#c9f86d99305f9fa531b568ff5ab8c964b8b223d2" + integrity sha512-VqExgeE62YBqI3ogkGoOJp1R6u12DFZjqwJhqtKc2o5m1YTUuUWnos7bZQFBhwkxIFpWYJ7uB75U7VAPPiKETA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-transform-parameters" "^7.9.5" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" "@babel/plugin-proposal-optional-catch-binding@^7.8.3": version "7.8.3" @@ -732,6 +962,14 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" +"@babel/plugin-proposal-optional-chaining@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.1.tgz#15f5d6d22708629451a91be28f8facc55b0e818c" + integrity sha512-dqQj475q8+/avvok72CF3AOSV/SGEcH29zT5hhohqqvvZ2+boQoOr7iGldBG5YXTO2qgCgc2B3WvVLUdbeMlGA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + "@babel/plugin-proposal-optional-chaining@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.3.tgz#ae10b3214cb25f7adb1f3bc87ba42ca10b7e2543" @@ -740,29 +978,37 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-optional-chaining" "^7.8.0" -"@babel/plugin-proposal-optional-chaining@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58" - integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== +"@babel/plugin-proposal-pipeline-operator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-pipeline-operator/-/plugin-proposal-pipeline-operator-7.10.1.tgz#d7129bf1b170efef250759b82b64ce9a9b29d335" + integrity sha512-P+WKKsi7XBEvvTaregnYZIF+aLoCTNt0T21tbzeGlOdERmR1X0iFXJKqZbxsJooa+a3f/tKYFhbJYqnKt70x2w== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.0" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-pipeline-operator" "^7.10.1" -"@babel/plugin-proposal-pipeline-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-pipeline-operator/-/plugin-proposal-pipeline-operator-7.8.3.tgz#c3569228e7466f91bfff7f1c1ae18fb5d36b3097" - integrity sha512-Z0qV3aUYoLUAnVLdfLTlz/GJYfcrbX7Mhrp897Twik29wQseAFAAXQ4TPvN1oswVBHdN74sLPIn9HVfTXtjuQA== +"@babel/plugin-proposal-private-methods@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.1.tgz#ed85e8058ab0fe309c3f448e5e1b73ca89cdb598" + integrity sha512-RZecFFJjDiQ2z6maFprLgrdnm0OzoC23Mx89xf1CcEsxmHuzuXOdniEuI+S3v7vjQG4F5sa6YtUp+19sZuSxHg== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-pipeline-operator" "^7.8.3" + "@babel/helper-create-class-features-plugin" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" -"@babel/plugin-proposal-throw-expressions@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-throw-expressions/-/plugin-proposal-throw-expressions-7.8.3.tgz#155f36ae40c2a88ae685c35e3220f8a0d426cf24" - integrity sha512-tH40s9JnoR+r45ZXKWW+PC5xzPQfVJix3pR1D8Ty5l9sn5NnrbZUzw8MtnNxu/Bz7p0imyeSYj9FQVccEymOEg== +"@babel/plugin-proposal-throw-expressions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-throw-expressions/-/plugin-proposal-throw-expressions-7.10.1.tgz#89bde971b6081bfecff832c811ad76c2337c6970" + integrity sha512-wyhTn1ebUbbphDJVVUpg1wikUOIW8Lg93ng0aDGv07+MxINPS4d0ju68JVH06W4oMnZTwgELA5AImrah9RULYA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-throw-expressions" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-throw-expressions" "^7.10.1" + +"@babel/plugin-proposal-unicode-property-regex@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.1.tgz#dc04feb25e2dd70c12b05d680190e138fa2c0c6f" + integrity sha512-JjfngYRvwmPwmnbRZyNiPFI8zxCZb8euzbCG/LxyKdeTb59tVciKo9GK9bi6JYKInk1H11Dq9j/zRqIH4KigfQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-proposal-unicode-property-regex@^7.4.4": version "7.8.8" @@ -794,6 +1040,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" +"@babel/plugin-syntax-class-properties@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.1.tgz#d5bc0645913df5b17ad7eda0fa2308330bde34c5" + integrity sha512-Gf2Yx/iRs1JREDtVZ56OrjjgFHCaldpTnuy9BHla10qyVT3YkIIGEtoDWhyop0ksu1GvNjHIoYRBqm3zoR1jyQ== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-class-properties@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.8.3.tgz#6cb933a8872c8d359bfde69bbeaae5162fd1e8f7" @@ -801,19 +1054,19 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-decorators@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.8.3.tgz#8d2c15a9f1af624b0025f961682a9d53d3001bda" - integrity sha512-8Hg4dNNT9/LcA1zQlfwuKR8BUc/if7Q7NkTam9sGTcJphLwpf2g4S42uhspQrIrR+dpzE0dtTqBVFoHl8GtnnQ== +"@babel/plugin-syntax-decorators@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.10.1.tgz#16b869c4beafc9a442565147bda7ce0967bd4f13" + integrity sha512-a9OAbQhKOwSle1Vr0NJu/ISg1sPfdEkfRKWpgPuzhnWWzForou2gIeUIIwjAMHRekhhpJ7eulZlYs0H14Cbi+g== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" -"@babel/plugin-syntax-do-expressions@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-do-expressions/-/plugin-syntax-do-expressions-7.8.3.tgz#e54edb578dc2c05e3b0055fac5cc55a9767d22dd" - integrity sha512-puRiUTVDQ69iRX41eeVWqOftZK31waWqZfwKB/TGzPfgi7097twx/DpwfOfyqEGqYtvpQF3jpHwT6UBzvSyAjw== +"@babel/plugin-syntax-do-expressions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-do-expressions/-/plugin-syntax-do-expressions-7.10.1.tgz#18ad0be2e2808991101c708e56d2ca5e7a9f96d9" + integrity sha512-Me/wISm2f76puo3Heyu01tthw7/8HSTn2aaiDahWD1K9oRPfzygW0eBcLIrTUdhr58MUyrSLduhUM7uZry6vzg== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-syntax-dynamic-import@^7.2.0": version "7.2.0" @@ -828,12 +1081,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-export-default-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.8.3.tgz#f1e55ce850091442af4ba9c2550106035b29d678" - integrity sha512-a1qnnsr73KLNIQcQlcQ4ZHxqqfBKM6iNQZW2OMTyxNbA2WC7SHWHtGVpFzWtQAuS2pspkWVzdEBXXx8Ik0Za4w== +"@babel/plugin-syntax-export-default-from@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.10.1.tgz#634f58f36b5d6320d80f75441fdc61e1c05c33b0" + integrity sha512-+rcL4S/mN1Ss4zhSCbxzv1Wsf12eauvgTjWi0krXEeX1zd6qSxYnJoniE5Ssr5w2WPt61oUCJyXIFQIqO/29zw== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-syntax-export-namespace-from@^7.8.3": version "7.8.3" @@ -842,32 +1095,32 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-syntax-flow@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.10.1.tgz#cd4bbca62fb402babacb174f64f8734310d742f0" + integrity sha512-b3pWVncLBYoPP60UOTc7NMlbtsHQ6ITim78KQejNHK6WJ2mzV5kCcg4mIWpasAfJEgwVTibwo2e+FU7UEIKQUg== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-flow@^7.2.0": version "7.2.0" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz#a765f061f803bc48f240c26f8747faf97c26bf7c" dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-syntax-flow@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.8.3.tgz#f2c883bd61a6316f2c89380ae5122f923ba4527f" - integrity sha512-innAx3bUbA0KSYj2E2MNFSn9hiCeowOFLxlsuhXzw8hMQnzkDomUr9QCD7E9VF60NmnG1sNTuuv6Qf4f8INYsg== +"@babel/plugin-syntax-function-sent@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-function-sent/-/plugin-syntax-function-sent-7.10.1.tgz#42a03af38dd7f46121c97c67d032da4749792478" + integrity sha512-Ze/5A9mFucmT7UyEA8D60YijmclEZQp3kjzbbEImWnyMLmjE/3S5x7lkCr+W7g2wc00nqk1QLsloa4+1EiHULA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" -"@babel/plugin-syntax-function-sent@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-function-sent/-/plugin-syntax-function-sent-7.8.3.tgz#5a4874bdfc271f0fa1c470bf508dc54af3041e19" - integrity sha512-NNEutF0x2PdWYij2bmf/i50dSq4SUdgFij4BZwj3I4qDZgql3dlFJRyvwGHAhwKYElUKHaP0wQ/yO1d/enpJaw== +"@babel/plugin-syntax-import-meta@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.1.tgz#3e59120ed8b3c2ccc5abb1cfc7aaa3ea01cd36b6" + integrity sha512-ypC4jwfIVF72og0dgvEcFRdOM2V9Qm1tu7RGmdZOlhsccyK0wisXmMObGuWEOd5jQ+K9wcIgSNftCpk2vkjUfQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-import-meta@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.8.3.tgz#230afff79d3ccc215b5944b438e4e266daf3d84d" - integrity sha512-vYiGd4wQ9gx0Lngb7+bPCwQXGK/PR6FeTIJ+TIOlq+OfOKG/kCAOO2+IBac3oMM9qV7/fU76hfcqxUaLKZf1hQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" @@ -876,6 +1129,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" +"@babel/plugin-syntax-jsx@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.1.tgz#0ae371134a42b91d5418feb3c8c8d43e1565d2da" + integrity sha512-+OxyOArpVFXQeXKLO9o+r2I4dIoVoy6+Uu0vKELrlweDM3QJADZj+Z+5ERansZqIZBcLj42vHnDI8Rz9BnRIuQ== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-jsx@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94" @@ -883,6 +1143,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-syntax-logical-assignment-operators@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.1.tgz#fffee77b4934ce77f3b427649ecdddbec1958550" + integrity sha512-XyHIFa9kdrgJS91CUH+ccPVTnJShr8nLGc5bG2IhGXv5p1Rd+8BleGE5yzIg2Nc1QZAdHDa0Qp4m6066OL96Iw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.8.3.tgz#3995d7d7ffff432f6ddc742b47e730c054599897" @@ -897,7 +1164,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-numeric-separator@^7.8.0", "@babel/plugin-syntax-numeric-separator@^7.8.3": +"@babel/plugin-syntax-numeric-separator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.1.tgz#25761ee7410bc8cf97327ba741ee94e4a61b7d99" + integrity sha512-uTd0OsHrpe3tH5gRPTxG8Voh99/WCU78vIm5NMRYPAqC8lR4vajt6KkCAknCHrx24vkPdd/05yfdGSB4EIY2mg== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-syntax-numeric-separator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz#0e3fb63e09bea1b11e96467271c8308007e7c41f" integrity sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw== @@ -931,19 +1205,26 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-pipeline-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-pipeline-operator/-/plugin-syntax-pipeline-operator-7.8.3.tgz#945d9f13958408e2b1048f6ebe03f370d390aaca" - integrity sha512-GhiBvlXZLWeP+MjKaEv33KmiR/QMCv4iCwz1AuuAp7pHxBvOxxyQmIPukh+N/py6PRLYG10bvRCNeenG34QbDA== +"@babel/plugin-syntax-pipeline-operator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-pipeline-operator/-/plugin-syntax-pipeline-operator-7.10.1.tgz#07cd46978b26f21eb8c4231534a64aaa686b3cd3" + integrity sha512-6jvu8KNBnEGuwlRpAQxTHsKcYuGqSf1gAv1c7j+CP7evNU8atjCRW6pK/W1AxeTz1WXWpzciOQTK4hLfPlXKDQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" -"@babel/plugin-syntax-throw-expressions@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-throw-expressions/-/plugin-syntax-throw-expressions-7.8.3.tgz#c763bcf26d202ddb65f1299a29d63aad312adb54" - integrity sha512-Mv3shY1i7ZssY4OY+eLZJAmNCwqTcpv2qOKO9x6irELSygfKWVSMXk0igJsA9UhU4hOdw0qMGkjj9TAk4MqzwQ== +"@babel/plugin-syntax-throw-expressions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-throw-expressions/-/plugin-syntax-throw-expressions-7.10.1.tgz#09a88bacf2ad8af7a465af5e910a61d93136b147" + integrity sha512-1ieYCCX6HCEvBefYt1Njja2XFrbThi2pffdfpPeB7WzVwbX/UlVOrPw9WSPQyVoyo+kqO0l/KGRNZyrTKo0bew== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-syntax-top-level-await@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.1.tgz#8b8733f8c57397b3eaa47ddba8841586dcaef362" + integrity sha512-hgA5RYkmZm8FTFT3yu2N9Bx7yVVOKYT6yEdXXo6j2JTm0wNxgqaGeQVaSHRjhfnQbX91DtjFB6McRFSlcJH3xQ== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-syntax-top-level-await@^7.8.3": version "7.8.3" @@ -952,6 +1233,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-arrow-functions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.1.tgz#cb5ee3a36f0863c06ead0b409b4cc43a889b295b" + integrity sha512-6AZHgFJKP3DJX0eCNJj01RpytUa3SOGawIxweHkNX2L6PYikOZmoh5B0d7hIHaIgveMjX990IAa/xK7jRTN8OA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-arrow-functions@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6" @@ -959,6 +1247,15 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-async-to-generator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.1.tgz#e5153eb1a3e028f79194ed8a7a4bf55f862b2062" + integrity sha512-XCgYjJ8TY2slj6SReBUyamJn3k2JLUIiiR5b6t1mNCMSvv7yx+jJpaewakikp0uWFQSF7ChPPoe3dHmXLpISkg== + dependencies: + "@babel/helper-module-imports" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-remap-async-to-generator" "^7.10.1" + "@babel/plugin-transform-async-to-generator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086" @@ -968,6 +1265,13 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/helper-remap-async-to-generator" "^7.8.3" +"@babel/plugin-transform-block-scoped-functions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.1.tgz#146856e756d54b20fff14b819456b3e01820b85d" + integrity sha512-B7K15Xp8lv0sOJrdVAoukKlxP9N59HS48V1J3U/JGj+Ad+MHq+am6xJVs85AgXrQn4LV8vaYFOB+pr/yIuzW8Q== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-block-scoped-functions@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3" @@ -975,6 +1279,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-block-scoping@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.1.tgz#47092d89ca345811451cd0dc5d91605982705d5e" + integrity sha512-8bpWG6TtF5akdhIm/uWTyjHqENpy13Fx8chg7pFH875aNLwX8JxIxqm08gmAT+Whe6AOmaTeLPe7dpLbXt+xUw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + lodash "^4.17.13" + "@babel/plugin-transform-block-scoping@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a" @@ -983,6 +1295,20 @@ "@babel/helper-plugin-utils" "^7.8.3" lodash "^4.17.13" +"@babel/plugin-transform-classes@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.1.tgz#6e11dd6c4dfae70f540480a4702477ed766d733f" + integrity sha512-P9V0YIh+ln/B3RStPoXpEQ/CoAxQIhRSUn7aXqQ+FZJ2u8+oCtjIXR3+X0vsSD8zv+mb56K7wZW1XiDTDGiDRQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.1" + "@babel/helper-define-map" "^7.10.1" + "@babel/helper-function-name" "^7.10.1" + "@babel/helper-optimise-call-expression" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-replace-supers" "^7.10.1" + "@babel/helper-split-export-declaration" "^7.10.1" + globals "^11.1.0" + "@babel/plugin-transform-classes@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.3.tgz#46fd7a9d2bb9ea89ce88720477979fe0d71b21b8" @@ -997,19 +1323,12 @@ "@babel/helper-split-export-declaration" "^7.8.3" globals "^11.1.0" -"@babel/plugin-transform-classes@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz#800597ddb8aefc2c293ed27459c1fcc935a26c2c" - integrity sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg== +"@babel/plugin-transform-computed-properties@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.1.tgz#59aa399064429d64dce5cf76ef9b90b7245ebd07" + integrity sha512-mqSrGjp3IefMsXIenBfGcPXxJxweQe2hEIwMQvjtiDQ9b1IBvDUjkAtV/HMXX47/vXf14qDNedXsIiNd1FmkaQ== dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-define-map" "^7.8.3" - "@babel/helper-function-name" "^7.9.5" - "@babel/helper-optimise-call-expression" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.6" - "@babel/helper-split-export-declaration" "^7.8.3" - globals "^11.1.0" + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-transform-computed-properties@^7.8.3": version "7.8.3" @@ -1018,6 +1337,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-destructuring@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.1.tgz#abd58e51337815ca3a22a336b85f62b998e71907" + integrity sha512-V/nUc4yGWG71OhaTH705pU8ZSdM6c1KmmLP8ys59oOYbT7RpMYAR3MsVOt6OHL0WzG7BlTU076va9fjJyYzJMA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-destructuring@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.3.tgz#20ddfbd9e4676906b1056ee60af88590cc7aaa0b" @@ -1025,12 +1351,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-destructuring@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz#72c97cf5f38604aea3abf3b935b0e17b1db76a50" - integrity sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q== +"@babel/plugin-transform-dotall-regex@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.1.tgz#920b9fec2d78bb57ebb64a644d5c2ba67cc104ee" + integrity sha512-19VIMsD1dp02RvduFUmfzj8uknaO3uiHHF0s3E1OHnVsNj8oge8EQ5RzHRbJjGSetRnkEuBYO7TG1M5kKjGLOA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-create-regexp-features-plugin" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3": version "7.8.3" @@ -1040,6 +1367,13 @@ "@babel/helper-create-regexp-features-plugin" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-duplicate-keys@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.1.tgz#c900a793beb096bc9d4d0a9d0cde19518ffc83b9" + integrity sha512-wIEpkX4QvX8Mo9W6XF3EdGttrIPZWozHfEaDTU0WJD/TDnXMvdDh30mzUl/9qWhnf7naicYartcEfUghTCSNpA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-duplicate-keys@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz#8d12df309aa537f272899c565ea1768e286e21f1" @@ -1047,6 +1381,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-exponentiation-operator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.1.tgz#279c3116756a60dd6e6f5e488ba7957db9c59eb3" + integrity sha512-lr/przdAbpEA2BUzRvjXdEDLrArGRRPwbaF9rvayuHRvdQ7lUTTkZnhZrJ4LE2jvgMRFF4f0YuPQ20vhiPYxtA== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-exponentiation-operator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7" @@ -1062,13 +1404,20 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-flow" "^7.2.0" -"@babel/plugin-transform-flow-strip-types@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz#8a3538aa40434e000b8f44a3c5c9ac7229bd2392" - integrity sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg== +"@babel/plugin-transform-flow-strip-types@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.10.1.tgz#59eafbff9ae85ec8932d4c16c068654be814ec5e" + integrity sha512-i4o0YwiJBIsIx7/liVCZ3Q2WkWr1/Yu39PksBOnh/khW2SwIFsGa5Ze+MSon5KbDfrEHP9NeyefAgvUSXzaEkw== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-flow" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-flow" "^7.10.1" + +"@babel/plugin-transform-for-of@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.1.tgz#ff01119784eb0ee32258e8646157ba2501fcfda5" + integrity sha512-US8KCuxfQcn0LwSCMWMma8M2R5mAjJGsmoCBVwlMygvmDUMkTCykc84IqN1M7t+agSfOmLYTInLCHJM+RUoz+w== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-transform-for-of@^7.8.4": version "7.8.4" @@ -1077,12 +1426,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-for-of@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz#0f260e27d3e29cd1bb3128da5e76c761aa6c108e" - integrity sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ== +"@babel/plugin-transform-function-name@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.1.tgz#4ed46fd6e1d8fde2a2ec7b03c66d853d2c92427d" + integrity sha512-//bsKsKFBJfGd65qSNNh1exBy5Y9gD9ZN+DvrJ8f7HXr4avE5POW6zB7Rj6VnqHV33+0vXWUwJT0wSHubiAQkw== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-function-name" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-transform-function-name@^7.8.3": version "7.8.3" @@ -1092,6 +1442,13 @@ "@babel/helper-function-name" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-literals@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.1.tgz#5794f8da82846b22e4e6631ea1658bce708eb46a" + integrity sha512-qi0+5qgevz1NHLZroObRm5A+8JJtibb7vdcPQF1KQE12+Y/xxl8coJ+TpPW9iRq+Mhw/NKLjm+5SHtAHCC7lAw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-literals@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1" @@ -1099,6 +1456,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-member-expression-literals@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.1.tgz#90347cba31bca6f394b3f7bd95d2bbfd9fce2f39" + integrity sha512-UmaWhDokOFT2GcgU6MkHC11i0NQcL63iqeufXWfRy6pUOGYeCGEKhvfFO6Vz70UfYJYHwveg62GS83Rvpxn+NA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-member-expression-literals@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410" @@ -1106,6 +1470,15 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-modules-amd@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.1.tgz#65950e8e05797ebd2fe532b96e19fc5482a1d52a" + integrity sha512-31+hnWSFRI4/ACFr1qkboBbrTxoBIzj7qA69qlq8HY8p7+YCzkCT6/TvQ1a4B0z27VeWtAeJd6pr5G04dc1iHw== + dependencies: + "@babel/helper-module-transforms" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + babel-plugin-dynamic-import-node "^2.3.3" + "@babel/plugin-transform-modules-amd@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.3.tgz#65606d44616b50225e76f5578f33c568a0b876a5" @@ -1115,14 +1488,15 @@ "@babel/helper-plugin-utils" "^7.8.3" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-amd@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.0.tgz#19755ee721912cf5bb04c07d50280af3484efef4" - integrity sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q== +"@babel/plugin-transform-modules-commonjs@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.1.tgz#d5ff4b4413ed97ffded99961056e1fb980fb9301" + integrity sha512-AQG4fc3KOah0vdITwt7Gi6hD9BtQP/8bhem7OjbaMoRNCH5Djx42O2vYMfau7QnAzQCa+RJnhJBmFFMGpQEzrg== dependencies: - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - babel-plugin-dynamic-import-node "^2.3.0" + "@babel/helper-module-transforms" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-simple-access" "^7.10.1" + babel-plugin-dynamic-import-node "^2.3.3" "@babel/plugin-transform-modules-commonjs@^7.8.3": version "7.8.3" @@ -1134,15 +1508,15 @@ "@babel/helper-simple-access" "^7.8.3" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-commonjs@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.0.tgz#e3e72f4cbc9b4a260e30be0ea59bdf5a39748940" - integrity sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g== +"@babel/plugin-transform-modules-systemjs@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.1.tgz#9962e4b0ac6aaf2e20431ada3d8ec72082cbffb6" + integrity sha512-ewNKcj1TQZDL3YnO85qh9zo1YF1CHgmSTlRQgHqe63oTrMI85cthKtZjAiZSsSNjPQ5NCaYo5QkbYqEw1ZBgZA== dependencies: - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-simple-access" "^7.8.3" - babel-plugin-dynamic-import-node "^2.3.0" + "@babel/helper-hoist-variables" "^7.10.1" + "@babel/helper-module-transforms" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + babel-plugin-dynamic-import-node "^2.3.3" "@babel/plugin-transform-modules-systemjs@^7.8.3": version "7.8.3" @@ -1154,15 +1528,13 @@ "@babel/helper-plugin-utils" "^7.8.3" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-systemjs@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.0.tgz#e9fd46a296fc91e009b64e07ddaa86d6f0edeb90" - integrity sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ== +"@babel/plugin-transform-modules-umd@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.1.tgz#ea080911ffc6eb21840a5197a39ede4ee67b1595" + integrity sha512-EIuiRNMd6GB6ulcYlETnYYfgv4AxqrswghmBRQbWLHZxN4s7mupxzglnHqk9ZiUpDI4eRWewedJJNj67PWOXKA== dependencies: - "@babel/helper-hoist-variables" "^7.8.3" - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - babel-plugin-dynamic-import-node "^2.3.0" + "@babel/helper-module-transforms" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-transform-modules-umd@^7.8.3": version "7.8.3" @@ -1172,14 +1544,6 @@ "@babel/helper-module-transforms" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-modules-umd@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz#e909acae276fec280f9b821a5f38e1f08b480697" - integrity sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ== - dependencies: - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-transform-named-capturing-groups-regex@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c" @@ -1187,6 +1551,13 @@ dependencies: "@babel/helper-create-regexp-features-plugin" "^7.8.3" +"@babel/plugin-transform-new-target@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.1.tgz#6ee41a5e648da7632e22b6fb54012e87f612f324" + integrity sha512-MBlzPc1nJvbmO9rPr1fQwXOM2iGut+JC92ku6PbiJMMK7SnQc1rytgpopveE3Evn47gzvGYeCdgfCDbZo0ecUw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-new-target@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz#60cc2ae66d85c95ab540eb34babb6434d4c70c43" @@ -1194,6 +1565,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-object-super@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.1.tgz#2e3016b0adbf262983bf0d5121d676a5ed9c4fde" + integrity sha512-WnnStUDN5GL+wGQrJylrnnVlFhFmeArINIR9gjhSeYyvroGhBrSAXYg/RHsnfzmsa+onJrTJrEClPzgNmmQ4Gw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-replace-supers" "^7.10.1" + "@babel/plugin-transform-object-super@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725" @@ -1202,6 +1581,14 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/helper-replace-supers" "^7.8.3" +"@babel/plugin-transform-parameters@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.1.tgz#b25938a3c5fae0354144a720b07b32766f683ddd" + integrity sha512-tJ1T0n6g4dXMsL45YsSzzSDZCxiHXAQp/qHrucOq5gEHncTA3xDxnd5+sZcoQp+N1ZbieAaB8r/VUCG0gqseOg== + dependencies: + "@babel/helper-get-function-arity" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-parameters@^7.8.4": version "7.8.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.4.tgz#1d5155de0b65db0ccf9971165745d3bb990d77d3" @@ -1211,13 +1598,12 @@ "@babel/helper-get-function-arity" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-parameters@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz#173b265746f5e15b2afe527eeda65b73623a0795" - integrity sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA== +"@babel/plugin-transform-property-literals@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.1.tgz#cffc7315219230ed81dc53e4625bf86815b6050d" + integrity sha512-Kr6+mgag8auNrgEpbfIWzdXYOvqDHZOF0+Bx2xh4H2EDNwcbRb9lY6nkZg8oSjsX+DH9Ebxm9hOqtKW+gRDeNA== dependencies: - "@babel/helper-get-function-arity" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-transform-property-literals@^7.8.3": version "7.8.3" @@ -1234,6 +1620,13 @@ "@babel/helper-annotate-as-pure" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-react-display-name@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.1.tgz#e6a33f6d48dfb213dda5e007d0c7ff82b6a3d8ef" + integrity sha512-rBjKcVwjk26H3VX8pavMxGf33LNlbocMHdSeldIEswtQ/hrjyTG8fKKILW1cSkODyRovckN/uZlGb2+sAV9JUQ== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-react-display-name@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5" @@ -1241,14 +1634,22 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-react-jsx-development@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.9.0.tgz#3c2a130727caf00c2a293f0aed24520825dbf754" - integrity sha512-tK8hWKrQncVvrhvtOiPpKrQjfNX3DtkNLSX4ObuGcpS9p0QrGetKmlySIGR07y48Zft8WVgPakqd/bk46JrMSw== +"@babel/plugin-transform-react-jsx-development@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.10.1.tgz#1ac6300d8b28ef381ee48e6fec430cc38047b7f3" + integrity sha512-XwDy/FFoCfw9wGFtdn5Z+dHh6HXKHkC6DwKNWpN74VWinUagZfDcEJc3Y8Dn5B3WMVnAllX8Kviaw7MtC5Epwg== dependencies: - "@babel/helper-builder-react-jsx-experimental" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-jsx" "^7.8.3" + "@babel/helper-builder-react-jsx-experimental" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-jsx" "^7.10.1" + +"@babel/plugin-transform-react-jsx-self@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.1.tgz#22143e14388d72eb88649606bb9e46f421bc3821" + integrity sha512-4p+RBw9d1qV4S749J42ZooeQaBomFPrSxa9JONLHJ1TxCBo3TzJ79vtmG2S2erUT8PDDrPdw4ZbXGr2/1+dILA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-jsx" "^7.10.1" "@babel/plugin-transform-react-jsx-self@^7.8.3": version "7.8.3" @@ -1258,13 +1659,13 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-jsx" "^7.8.3" -"@babel/plugin-transform-react-jsx-self@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.9.0.tgz#f4f26a325820205239bb915bad8e06fcadabb49b" - integrity sha512-K2ObbWPKT7KUTAoyjCsFilOkEgMvFG+y0FqOl6Lezd0/13kMkkjHskVsZvblRPj1PHA44PrToaZANrryppzTvQ== +"@babel/plugin-transform-react-jsx-source@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.1.tgz#30db3d4ee3cdebbb26a82a9703673714777a4273" + integrity sha512-neAbaKkoiL+LXYbGDvh6PjPG+YeA67OsZlE78u50xbWh2L1/C81uHiNP5d1fw+uqUIoiNdCC8ZB+G4Zh3hShJA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-jsx" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-jsx" "^7.10.1" "@babel/plugin-transform-react-jsx-source@^7.8.3": version "7.8.3" @@ -1274,13 +1675,15 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-jsx" "^7.8.3" -"@babel/plugin-transform-react-jsx-source@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0" - integrity sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw== +"@babel/plugin-transform-react-jsx@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.1.tgz#91f544248ba131486decb5d9806da6a6e19a2896" + integrity sha512-MBVworWiSRBap3Vs39eHt+6pJuLUAaK4oxGc8g+wY+vuSJvLiEQjW1LSTqKb8OUPtDvHCkdPhk7d6sjC19xyFw== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-jsx" "^7.8.3" + "@babel/helper-builder-react-jsx" "^7.10.1" + "@babel/helper-builder-react-jsx-experimental" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-jsx" "^7.10.1" "@babel/plugin-transform-react-jsx@^7.8.3": version "7.8.3" @@ -1291,15 +1694,20 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-jsx" "^7.8.3" -"@babel/plugin-transform-react-jsx@^7.9.4": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz#86f576c8540bd06d0e95e0b61ea76d55f6cbd03f" - integrity sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw== +"@babel/plugin-transform-react-pure-annotations@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.1.tgz#f5e7c755d3e7614d4c926e144f501648a5277b70" + integrity sha512-mfhoiai083AkeewsBHUpaS/FM1dmUENHBMpS/tugSJ7VXqXO5dCN1Gkint2YvM1Cdv1uhmAKt1ZOuAjceKmlLA== dependencies: - "@babel/helper-builder-react-jsx" "^7.9.0" - "@babel/helper-builder-react-jsx-experimental" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-jsx" "^7.8.3" + "@babel/helper-annotate-as-pure" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-regenerator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.1.tgz#10e175cbe7bdb63cc9b39f9b3f823c5c7c5c5490" + integrity sha512-B3+Y2prScgJ2Bh/2l9LJxKbb8C8kRfsG4AdPT+n7ixBHIxJaIG8bi8tgjxUMege1+WqSJ+7gu1YeoMVO3gPWzw== + dependencies: + regenerator-transform "^0.14.2" "@babel/plugin-transform-regenerator@^7.8.3": version "7.8.3" @@ -1308,12 +1716,12 @@ dependencies: regenerator-transform "^0.14.0" -"@babel/plugin-transform-regenerator@^7.8.7": - version "7.8.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8" - integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA== +"@babel/plugin-transform-reserved-words@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.1.tgz#0fc1027312b4d1c3276a57890c8ae3bcc0b64a86" + integrity sha512-qN1OMoE2nuqSPmpTqEM7OvJ1FkMEV+BjVeZZm9V9mq/x1JLKQ4pcv8riZJMNN3u2AUGl0ouOMjRr2siecvHqUQ== dependencies: - regenerator-transform "^0.14.2" + "@babel/helper-plugin-utils" "^7.10.1" "@babel/plugin-transform-reserved-words@^7.8.3": version "7.8.3" @@ -1322,16 +1730,23 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-runtime@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.0.tgz#45468c0ae74cc13204e1d3b1f4ce6ee83258af0b" - integrity sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw== +"@babel/plugin-transform-runtime@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.10.1.tgz#fd1887f749637fb2ed86dc278e79eb41df37f4b1" + integrity sha512-4w2tcglDVEwXJ5qxsY++DgWQdNJcCCsPxfT34wCUwIf2E7dI7pMpH8JczkMBbgBTNzBX62SZlNJ9H+De6Zebaw== dependencies: - "@babel/helper-module-imports" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-module-imports" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" resolve "^1.8.1" semver "^5.5.1" +"@babel/plugin-transform-shorthand-properties@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.1.tgz#e8b54f238a1ccbae482c4dce946180ae7b3143f3" + integrity sha512-AR0E/lZMfLstScFwztApGeyTHJ5u3JUKMjneqRItWeEqDdHWZwAOKycvQNCasCK/3r5YXsuNG25funcJDu7Y2g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-shorthand-properties@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8" @@ -1339,6 +1754,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-spread@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.1.tgz#0c6d618a0c4461a274418460a28c9ccf5239a7c8" + integrity sha512-8wTPym6edIrClW8FI2IoaePB91ETOtg36dOkj3bYcNe7aDMN2FXEoUa+WrmPc4xa1u2PQK46fUX2aCb+zo9rfw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-spread@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8" @@ -1346,6 +1768,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-sticky-regex@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.1.tgz#90fc89b7526228bed9842cff3588270a7a393b00" + integrity sha512-j17ojftKjrL7ufX8ajKvwRilwqTok4q+BjkknmQw9VNHnItTyMP5anPFzxFJdCQs7clLcWpCV3ma+6qZWLnGMA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-regex" "^7.10.1" + "@babel/plugin-transform-sticky-regex@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100" @@ -1354,6 +1784,14 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/helper-regex" "^7.8.3" +"@babel/plugin-transform-template-literals@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.1.tgz#914c7b7f4752c570ea00553b4284dad8070e8628" + integrity sha512-t7B/3MQf5M1T9hPCRG28DNGZUuxAuDqLYS03rJrIk2prj/UV7Z6FOneijhQhnv/Xa039vidXeVbvjK2SK5f7Gg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-template-literals@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80" @@ -1362,6 +1800,13 @@ "@babel/helper-annotate-as-pure" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-typeof-symbol@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.1.tgz#60c0239b69965d166b80a84de7315c1bc7e0bb0e" + integrity sha512-qX8KZcmbvA23zDi+lk9s6hC1FM7jgLHYIjuLgULgc8QtYnmB3tAVIYkNoKRQ75qWBeyzcoMoK8ZQmogGtC/w0g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-typeof-symbol@^7.8.4": version "7.8.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz#ede4062315ce0aaf8a657a920858f1a2f35fc412" @@ -1369,6 +1814,21 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-transform-unicode-escapes@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.1.tgz#add0f8483dab60570d9e03cecef6c023aa8c9940" + integrity sha512-zZ0Poh/yy1d4jeDWpx/mNwbKJVwUYJX73q+gyh4bwtG0/iUlzdEu0sLMda8yuDFS6LBQlT/ST1SJAR6zYwXWgw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-unicode-regex@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.1.tgz#6b58f2aea7b68df37ac5025d9c88752443a6b43f" + integrity sha512-Y/2a2W299k0VIUdbqYm9X2qS6fE0CUBhhiPpimK6byy7OJ/kORLlIX+J6UrjgNu5awvs62k+6RSslxhcvVw2Tw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-unicode-regex@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad" @@ -1377,14 +1837,84 @@ "@babel/helper-create-regexp-features-plugin" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" -"@babel/polyfill@^7.8.7": - version "7.8.7" - resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.8.7.tgz#151ec24c7135481336168c3bd8b8bf0cf91c032f" - integrity sha512-LeSfP9bNZH2UOZgcGcZ0PIHUt1ZuHub1L3CVmEyqLxCeDLm4C5Gi8jRH8ZX2PNpDhQCo0z6y/+DIs2JlliXW8w== +"@babel/polyfill@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.10.1.tgz#d56d4c8be8dd6ec4dce2649474e9b707089f739f" + integrity sha512-TviueJ4PBW5p48ra8IMtLXVkDucrlOZAIZ+EXqS3Ot4eukHbWiqcn7DcqpA1k5PcKtmJ4Xl9xwdv6yQvvcA+3g== dependencies: core-js "^2.6.5" regenerator-runtime "^0.13.4" +"@babel/preset-env@^7.10.2": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.10.2.tgz#715930f2cf8573b0928005ee562bed52fb65fdfb" + integrity sha512-MjqhX0RZaEgK/KueRzh+3yPSk30oqDKJ5HP5tqTSB1e2gzGS3PLy7K0BIpnp78+0anFuSwOeuCf1zZO7RzRvEA== + dependencies: + "@babel/compat-data" "^7.10.1" + "@babel/helper-compilation-targets" "^7.10.2" + "@babel/helper-module-imports" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-proposal-async-generator-functions" "^7.10.1" + "@babel/plugin-proposal-class-properties" "^7.10.1" + "@babel/plugin-proposal-dynamic-import" "^7.10.1" + "@babel/plugin-proposal-json-strings" "^7.10.1" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.1" + "@babel/plugin-proposal-numeric-separator" "^7.10.1" + "@babel/plugin-proposal-object-rest-spread" "^7.10.1" + "@babel/plugin-proposal-optional-catch-binding" "^7.10.1" + "@babel/plugin-proposal-optional-chaining" "^7.10.1" + "@babel/plugin-proposal-private-methods" "^7.10.1" + "@babel/plugin-proposal-unicode-property-regex" "^7.10.1" + "@babel/plugin-syntax-async-generators" "^7.8.0" + "@babel/plugin-syntax-class-properties" "^7.10.1" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" + "@babel/plugin-syntax-json-strings" "^7.8.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + "@babel/plugin-syntax-numeric-separator" "^7.10.1" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + "@babel/plugin-syntax-top-level-await" "^7.10.1" + "@babel/plugin-transform-arrow-functions" "^7.10.1" + "@babel/plugin-transform-async-to-generator" "^7.10.1" + "@babel/plugin-transform-block-scoped-functions" "^7.10.1" + "@babel/plugin-transform-block-scoping" "^7.10.1" + "@babel/plugin-transform-classes" "^7.10.1" + "@babel/plugin-transform-computed-properties" "^7.10.1" + "@babel/plugin-transform-destructuring" "^7.10.1" + "@babel/plugin-transform-dotall-regex" "^7.10.1" + "@babel/plugin-transform-duplicate-keys" "^7.10.1" + "@babel/plugin-transform-exponentiation-operator" "^7.10.1" + "@babel/plugin-transform-for-of" "^7.10.1" + "@babel/plugin-transform-function-name" "^7.10.1" + "@babel/plugin-transform-literals" "^7.10.1" + "@babel/plugin-transform-member-expression-literals" "^7.10.1" + "@babel/plugin-transform-modules-amd" "^7.10.1" + "@babel/plugin-transform-modules-commonjs" "^7.10.1" + "@babel/plugin-transform-modules-systemjs" "^7.10.1" + "@babel/plugin-transform-modules-umd" "^7.10.1" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3" + "@babel/plugin-transform-new-target" "^7.10.1" + "@babel/plugin-transform-object-super" "^7.10.1" + "@babel/plugin-transform-parameters" "^7.10.1" + "@babel/plugin-transform-property-literals" "^7.10.1" + "@babel/plugin-transform-regenerator" "^7.10.1" + "@babel/plugin-transform-reserved-words" "^7.10.1" + "@babel/plugin-transform-shorthand-properties" "^7.10.1" + "@babel/plugin-transform-spread" "^7.10.1" + "@babel/plugin-transform-sticky-regex" "^7.10.1" + "@babel/plugin-transform-template-literals" "^7.10.1" + "@babel/plugin-transform-typeof-symbol" "^7.10.1" + "@babel/plugin-transform-unicode-escapes" "^7.10.1" + "@babel/plugin-transform-unicode-regex" "^7.10.1" + "@babel/preset-modules" "^0.1.3" + "@babel/types" "^7.10.2" + browserslist "^4.12.0" + core-js-compat "^3.6.2" + invariant "^2.2.2" + levenary "^1.1.1" + semver "^5.5.0" + "@babel/preset-env@^7.4.5": version "7.8.4" resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.8.4.tgz#9dac6df5f423015d3d49b6e9e5fa3413e4a72c4e" @@ -1448,72 +1978,6 @@ levenary "^1.1.1" semver "^5.5.0" -"@babel/preset-env@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.5.tgz#8ddc76039bc45b774b19e2fc548f6807d8a8919f" - integrity sha512-eWGYeADTlPJH+wq1F0wNfPbVS1w1wtmMJiYk55Td5Yu28AsdR9AsC97sZ0Qq8fHqQuslVSIYSGJMcblr345GfQ== - dependencies: - "@babel/compat-data" "^7.9.0" - "@babel/helper-compilation-targets" "^7.8.7" - "@babel/helper-module-imports" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-proposal-async-generator-functions" "^7.8.3" - "@babel/plugin-proposal-dynamic-import" "^7.8.3" - "@babel/plugin-proposal-json-strings" "^7.8.3" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-proposal-numeric-separator" "^7.8.3" - "@babel/plugin-proposal-object-rest-spread" "^7.9.5" - "@babel/plugin-proposal-optional-catch-binding" "^7.8.3" - "@babel/plugin-proposal-optional-chaining" "^7.9.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.8.3" - "@babel/plugin-syntax-async-generators" "^7.8.0" - "@babel/plugin-syntax-dynamic-import" "^7.8.0" - "@babel/plugin-syntax-json-strings" "^7.8.0" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" - "@babel/plugin-syntax-numeric-separator" "^7.8.0" - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" - "@babel/plugin-syntax-optional-chaining" "^7.8.0" - "@babel/plugin-syntax-top-level-await" "^7.8.3" - "@babel/plugin-transform-arrow-functions" "^7.8.3" - "@babel/plugin-transform-async-to-generator" "^7.8.3" - "@babel/plugin-transform-block-scoped-functions" "^7.8.3" - "@babel/plugin-transform-block-scoping" "^7.8.3" - "@babel/plugin-transform-classes" "^7.9.5" - "@babel/plugin-transform-computed-properties" "^7.8.3" - "@babel/plugin-transform-destructuring" "^7.9.5" - "@babel/plugin-transform-dotall-regex" "^7.8.3" - "@babel/plugin-transform-duplicate-keys" "^7.8.3" - "@babel/plugin-transform-exponentiation-operator" "^7.8.3" - "@babel/plugin-transform-for-of" "^7.9.0" - "@babel/plugin-transform-function-name" "^7.8.3" - "@babel/plugin-transform-literals" "^7.8.3" - "@babel/plugin-transform-member-expression-literals" "^7.8.3" - "@babel/plugin-transform-modules-amd" "^7.9.0" - "@babel/plugin-transform-modules-commonjs" "^7.9.0" - "@babel/plugin-transform-modules-systemjs" "^7.9.0" - "@babel/plugin-transform-modules-umd" "^7.9.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3" - "@babel/plugin-transform-new-target" "^7.8.3" - "@babel/plugin-transform-object-super" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.9.5" - "@babel/plugin-transform-property-literals" "^7.8.3" - "@babel/plugin-transform-regenerator" "^7.8.7" - "@babel/plugin-transform-reserved-words" "^7.8.3" - "@babel/plugin-transform-shorthand-properties" "^7.8.3" - "@babel/plugin-transform-spread" "^7.8.3" - "@babel/plugin-transform-sticky-regex" "^7.8.3" - "@babel/plugin-transform-template-literals" "^7.8.3" - "@babel/plugin-transform-typeof-symbol" "^7.8.4" - "@babel/plugin-transform-unicode-regex" "^7.8.3" - "@babel/preset-modules" "^0.1.3" - "@babel/types" "^7.9.5" - browserslist "^4.9.1" - core-js-compat "^3.6.2" - invariant "^2.2.2" - levenary "^1.1.1" - semver "^5.5.0" - "@babel/preset-flow@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.0.0.tgz#afd764835d9535ec63d8c7d4caf1c06457263da2" @@ -1522,13 +1986,13 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-transform-flow-strip-types" "^7.0.0" -"@babel/preset-flow@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.9.0.tgz#fee847c3e090b0b2d9227c1949e4da1d1379280d" - integrity sha512-88uSmlshIrlmPkNkEcx3UpSZ6b8n0UGBq0/0ZMZCF/uxAW0XIAUuDHBhIOAh0pvweafH4RxOwi/H3rWhtqOYPA== +"@babel/preset-flow@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.10.1.tgz#29498ec23baf9aa6dae50c568ceba09d71692b82" + integrity sha512-FuQsibb5PaX07fF1XUO5gjjxdEZbcJv8+ugPDaeFEsBIvUTib8hCtEJow/c2F0jq9ZUjpHCQ8IQKNHRvKE1kJQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-transform-flow-strip-types" "^7.9.0" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-flow-strip-types" "^7.10.1" "@babel/preset-modules@^0.1.3": version "0.1.3" @@ -1552,17 +2016,18 @@ "@babel/plugin-transform-react-jsx-self" "^7.8.3" "@babel/plugin-transform-react-jsx-source" "^7.8.3" -"@babel/preset-react@^7.9.4": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.9.4.tgz#c6c97693ac65b6b9c0b4f25b948a8f665463014d" - integrity sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ== +"@babel/preset-react@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.10.1.tgz#e2ab8ae9a363ec307b936589f07ed753192de041" + integrity sha512-Rw0SxQ7VKhObmFjD/cUcKhPTtzpeviEFX1E6PgP+cYOhQ98icNqtINNFANlsdbQHrmeWnqdxA4Tmnl1jy5tp3Q== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-transform-react-display-name" "^7.8.3" - "@babel/plugin-transform-react-jsx" "^7.9.4" - "@babel/plugin-transform-react-jsx-development" "^7.9.0" - "@babel/plugin-transform-react-jsx-self" "^7.9.0" - "@babel/plugin-transform-react-jsx-source" "^7.9.0" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-transform-react-display-name" "^7.10.1" + "@babel/plugin-transform-react-jsx" "^7.10.1" + "@babel/plugin-transform-react-jsx-development" "^7.10.1" + "@babel/plugin-transform-react-jsx-self" "^7.10.1" + "@babel/plugin-transform-react-jsx-source" "^7.10.1" + "@babel/plugin-transform-react-pure-annotations" "^7.10.1" "@babel/runtime-corejs3@^7.7.4": version "7.9.2" @@ -1585,6 +2050,13 @@ dependencies: regenerator-runtime "^0.13.2" +"@babel/runtime@^7.10.2": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.2.tgz#d103f21f2602497d38348a32e008637d506db839" + integrity sha512-6sF3uQw2ivImfVIl62RZ7MXhO2tap69WeWK57vAaimT6AZbE4FbqjdEJIN1UqoD6wI6B+1n9UiagafH1sxjOtg== + dependencies: + regenerator-runtime "^0.13.4" + "@babel/runtime@^7.6.3": version "7.7.6" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.6.tgz#d18c511121aff1b4f2cd1d452f1bac9601dd830f" @@ -1612,7 +2084,16 @@ "@babel/parser" "^7.2.2" "@babel/types" "^7.2.2" -"@babel/template@^7.3.3", "@babel/template@^7.7.4", "@babel/template@^7.8.6": +"@babel/template@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.1.tgz#e167154a94cb5f14b28dc58f5356d2162f539811" + integrity sha512-OQDg6SqvFSsc9A0ej6SKINWrpJiNonRIniYondK2ViKhB06i3c0s+76XUft71iqBEe9S1OKsHwPAjfHnuvnCig== + dependencies: + "@babel/code-frame" "^7.10.1" + "@babel/parser" "^7.10.1" + "@babel/types" "^7.10.1" + +"@babel/template@^7.3.3", "@babel/template@^7.7.4": version "7.8.6" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b" integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg== @@ -1657,7 +2138,7 @@ "@babel/parser" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.7.4", "@babel/traverse@^7.8.6", "@babel/traverse@^7.9.0": +"@babel/traverse@^7.1.0", "@babel/traverse@^7.7.4": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.5.tgz#6e7c56b44e2ac7011a948c21e283ddd9d9db97a2" integrity sha512-c4gH3jsvSuGUezlP6rzSJ6jf8fYjLj3hsMZRx/nX0h+fmHN0w+ekubRrHPqnMec0meycA2nwCsJ7dC8IPem2FQ== @@ -1672,6 +2153,21 @@ globals "^11.1.0" lodash "^4.17.13" +"@babel/traverse@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.1.tgz#bbcef3031e4152a6c0b50147f4958df54ca0dd27" + integrity sha512-C/cTuXeKt85K+p08jN6vMDz8vSV0vZcI0wmQ36o6mjbuo++kPMdpOYw23W2XH04dbRt9/nMEfA4W3eR21CD+TQ== + dependencies: + "@babel/code-frame" "^7.10.1" + "@babel/generator" "^7.10.1" + "@babel/helper-function-name" "^7.10.1" + "@babel/helper-split-export-declaration" "^7.10.1" + "@babel/parser" "^7.10.1" + "@babel/types" "^7.10.1" + debug "^4.1.0" + globals "^11.1.0" + lodash "^4.17.13" + "@babel/traverse@^7.4.3": version "7.4.5" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.5.tgz#4e92d1728fd2f1897dafdd321efbff92156c3216" @@ -1740,7 +2236,16 @@ lodash "^4.17.10" to-fast-properties "^2.0.0" -"@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0", "@babel/types@^7.9.5": +"@babel/types@^7.10.1", "@babel/types@^7.10.2": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.2.tgz#30283be31cad0dbf6fb00bd40641ca0ea675172d" + integrity sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng== + dependencies: + "@babel/helper-validator-identifier" "^7.10.1" + lodash "^4.17.13" + to-fast-properties "^2.0.0" + +"@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.8.6", "@babel/types@^7.9.5": version "7.9.5" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.5.tgz#89231f82915a8a566a703b3b20133f73da6b9444" integrity sha512-XjnvNqenk818r5zMaba+sLQjnbda31UfUURv3ei0qPQw4u+j2jMyJ5b11y8ZHYTRSI3NnInQkkkRT4fLqqPdHg== @@ -4633,6 +5138,13 @@ babel-plugin-dynamic-import-node@^2.3.0: dependencies: object.assign "^4.1.0" +babel-plugin-dynamic-import-node@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" + integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== + dependencies: + object.assign "^4.1.0" + babel-plugin-emotion@^10.0.20, babel-plugin-emotion@^10.0.27: version "10.0.27" resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.27.tgz#59001cf5de847c1d61f2079cd906a90a00d3184f" @@ -5010,13 +5522,6 @@ binary-extensions@^1.0.0: version "1.11.0" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" -bindings@^1.2.1: - version "1.5.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - bl@^1.0.0: version "1.2.2" resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c" @@ -5255,6 +5760,16 @@ browserslist@^4.0.0: electron-to-chromium "^1.3.133" node-releases "^1.1.19" +browserslist@^4.12.0: + version "4.12.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.12.0.tgz#06c6d5715a1ede6c51fc39ff67fd647f740b656d" + integrity sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg== + dependencies: + caniuse-lite "^1.0.30001043" + electron-to-chromium "^1.3.413" + node-releases "^1.1.53" + pkg-up "^2.0.0" + browserslist@^4.3.7: version "4.3.7" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.3.7.tgz#f1de479a6466ea47a0a26dcc725e7504817e624a" @@ -5281,16 +5796,6 @@ browserslist@^4.8.3, browserslist@^4.8.5: electron-to-chromium "^1.3.349" node-releases "^1.1.49" -browserslist@^4.9.1: - version "4.11.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.11.1.tgz#92f855ee88d6e050e7e7311d987992014f1a1f1b" - integrity sha512-DCTr3kDrKEYNw6Jb9HFxVLQNaue8z+0ZfRBRjmCunKDEXEBajKDj2Y+Uelg+Pi29OnvaSGwjOsnRyNEkXzHg5g== - dependencies: - caniuse-lite "^1.0.30001038" - electron-to-chromium "^1.3.390" - node-releases "^1.1.53" - pkg-up "^2.0.0" - bser@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" @@ -5568,10 +6073,10 @@ caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001020, caniuse-lite@^1.0.300010 resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001028.tgz#f2241242ac70e0fa9cda55c2776d32a0867971c2" integrity sha512-Vnrq+XMSHpT7E+LWoIYhs3Sne8h9lx9YJV3acH3THNCwU/9zV93/ta4xVfzTtnqd3rvnuVpVjE3DFqf56tr3aQ== -caniuse-lite@^1.0.30001038: - version "1.0.30001039" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001039.tgz#b3814a1c38ffeb23567f8323500c09526a577bbe" - integrity sha512-SezbWCTT34eyFoWHgx8UWso7YtvtM7oosmFoXbCkdC6qJzRfBTeTgE9REtKtiuKXuMwWTZEvdnFNGAyVMorv8Q== +caniuse-lite@^1.0.30001043: + version "1.0.30001066" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001066.tgz#0a8a58a10108f2b9bf38e7b65c237b12fd9c5f04" + integrity sha512-Gfj/WAastBtfxLws0RCh2sDbTK/8rJuSeZMecrSkNGYxPcv7EzblmDGfWQCFEQcSqYE2BRgQiJh8HOD07N5hIw== capture-exit@^2.0.0: version "2.0.0" @@ -6364,10 +6869,10 @@ core-js-pure@^3.0.1: resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.4.tgz#4bf1ba866e25814f149d4e9aaa08c36173506e3a" integrity sha512-epIhRLkXdgv32xIUFaaAry2wdxZYBi6bgM7cB136dzzXXa+dFyRLTZeLUJxnd8ShrmyVXBub63n2NHo2JAt8Cw== -core-js@3.6.4, core-js@^3.0.1, core-js@^3.0.4: - version "3.6.4" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.4.tgz#440a83536b458114b9cb2ac1580ba377dc470647" - integrity sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw== +core-js@3.6.5: + version "3.6.5" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" + integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== core-js@^1.0.0: version "1.2.7" @@ -6382,6 +6887,11 @@ core-js@^2.6.5: resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== +core-js@^3.0.1, core-js@^3.0.4: + version "3.6.4" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.4.tgz#440a83536b458114b9cb2ac1580ba377dc470647" + integrity sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw== + core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" @@ -7664,10 +8174,10 @@ electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.349: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.354.tgz#6c6ad9ef63654c4c022269517c5a3095cebc94db" integrity sha512-24YMkNiZWOUeF6YeoscWfIGP0oMx+lJpU/miwI+lcu7plIDpyZn8Gx0lx0qTDlzGoz7hx+lpyD8QkbkX5L2Pqw== -electron-to-chromium@^1.3.390: - version "1.3.398" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.398.tgz#4c01e29091bf39e578ac3f66c1f157d92fa5725d" - integrity sha512-BJjxuWLKFbM5axH3vES7HKMQgAknq9PZHBkMK/rEXUQG9i1Iw5R+6hGkm6GtsQSANjSUrh/a6m32nzCNDNo/+w== +electron-to-chromium@^1.3.413: + version "1.3.455" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.455.tgz#fd65a3f5db6ffa83eb7c84f16ea9b1b7396f537d" + integrity sha512-4lwnxp+ArqOX9hiLwLpwhfqvwzUHFuDgLz4NTiU3lhygUzWtocIJ/5Vix+mWVNE2HQ9aI1k2ncGe5H/0OktMvA== electron-to-chromium@^1.3.96: version "1.3.96" @@ -8709,11 +9219,6 @@ file-system-cache@^1.0.5: fs-extra "^0.30.0" ramda "^0.21.0" -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - filename-regex@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" @@ -13173,11 +13678,6 @@ mute-stream@0.0.8, mute-stream@~0.0.4: resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== -nan@^2.0.5: - version "2.14.1" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" - integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== - nan@^2.12.1, nan@^2.13.2: version "2.14.0" resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" @@ -19587,14 +20087,6 @@ weak-napi@^2.0.1: node-gyp-build "^4.2.1" setimmediate-napi "^1.0.3" -weak@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/weak/-/weak-1.0.1.tgz#ab99aab30706959aa0200cb8cf545bb9cb33b99e" - integrity sha1-q5mqswcGlZqgIAy4z1RbucszuZ4= - dependencies: - bindings "^1.2.1" - nan "^2.0.5" - webidl-conversions@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"