From 12aeecfff9b977aa333fdbcc6ac1710aedb0360b Mon Sep 17 00:00:00 2001 From: chrisnojima Date: Mon, 17 Sep 2018 20:08:38 -0400 Subject: [PATCH] Update deps: fix teams add contacts (#13777) * update deps * fix redbox * dont allow dupes in contacts * another teams fix * use terser instead * update storybook. expected change from emoji mart: https://github.com/missive/emoji-mart/commit/385cb8f8c2888af3bfbe94b6bd1cf6fd9681280d * android p fling bug (#13782) * WIP * WIP --- .eslintrc | 3 +- shared/.flowconfig | 2 +- shared/actions/teams.js | 2 +- shared/desktop/webpack.config.babel.js | 6 +- shared/libs/flow-interface.js.flow | 3 - shared/package.json | 95 +- .../__snapshots__/Storyshots.test.js.snap | 586 ++++---- .../teams/invite-by-email/container.native.js | 26 +- shared/teams/invite-by-email/index.native.js | 2 +- shared/yarn.lock | 1235 +++++------------ 10 files changed, 687 insertions(+), 1273 deletions(-) diff --git a/.eslintrc b/.eslintrc index f21b21efb997..9fa254579a62 100644 --- a/.eslintrc +++ b/.eslintrc @@ -84,7 +84,8 @@ "standard/array-bracket-even-spacing": "off", "standard/computed-property-even-spacing": ["error", "never"], "standard/no-callback-literal": "off", - "standard/object-curly-even-spacing": ["error", "never"], + "object-curly-spacing": "off", + "object-curly-even-spacing": "off", "strict": ["error", "global"], "yield-star-spacing": "off" } diff --git a/shared/.flowconfig b/shared/.flowconfig index 136511d4fa73..a00df656b87e 100644 --- a/shared/.flowconfig +++ b/shared/.flowconfig @@ -89,4 +89,4 @@ untyped-import untyped-type-import [version] -^0.80.0 +^0.81.0 diff --git a/shared/actions/teams.js b/shared/actions/teams.js index e2f2d900ebc8..eef75a701a04 100644 --- a/shared/actions/teams.js +++ b/shared/actions/teams.js @@ -51,7 +51,7 @@ const _createNewTeam = function*(action: TeamsGen.CreateNewTeamPayload) { Saga.put( RouteTreeGen.createNavigateTo({ path: isMobile ? [chatTab] : [{props: {teamname}, selected: 'team'}], - parentPath: [teamsTab], + parentPath: isMobile ? [] : [teamsTab], }) ), // Show the avatar editor on desktop. diff --git a/shared/desktop/webpack.config.babel.js b/shared/desktop/webpack.config.babel.js index 0ccffe9d9764..a6568c8d969c 100644 --- a/shared/desktop/webpack.config.babel.js +++ b/shared/desktop/webpack.config.babel.js @@ -3,7 +3,7 @@ * We build: * Electron main thread / render threads for the main window and remote windows (menubar, trackers, etc) */ -import UglifyJSPlugin from 'uglifyjs-webpack-plugin' +import TerserPlugin from 'terser-webpack-plugin' import getenv from 'getenv' import merge from 'webpack-merge' import path from 'path' @@ -124,11 +124,11 @@ const config = (_, {mode}) => { : { optimization: { minimizer: [ - new UglifyJSPlugin({ + new TerserPlugin({ cache: true, parallel: true, sourceMap: true, - uglifyOptions: { + terserOptions: { compress: { inline: false, // uglify has issues inlining code and handling variables https://github.com/mishoo/UglifyJS2/issues/2842 }, diff --git a/shared/libs/flow-interface.js.flow b/shared/libs/flow-interface.js.flow index 46e142dd3731..b00ff02b3afb 100644 --- a/shared/libs/flow-interface.js.flow +++ b/shared/libs/flow-interface.js.flow @@ -292,9 +292,6 @@ declare module 'react-navigation/src/views/CardStack/CardStackTransitioner' { declare module 'react-navigation' { declare module.exports: any } -declare module 'react-virtualized' { - declare module.exports: any -} declare module 'react-waypoint' { declare module.exports: any } diff --git a/shared/package.json b/shared/package.json index 0e0c9d46b313..8a212cf5e6b0 100644 --- a/shared/package.json +++ b/shared/package.json @@ -128,12 +128,12 @@ "dependencies": { "applescript": "1.0.0", "base64-js": "1.3.0", - "buffer": "5.2.0", + "buffer": "5.2.1", "core-js": "2.5.7", - "cross-env": "5.1.6", - "emoji-datasource": "4.0.4", - "emoji-datasource-apple": "4.0.4", - "emoji-mart": "2.6.1", + "cross-env": "5.2.0", + "emoji-datasource": "4.1.0", + "emoji-datasource-apple": "4.1.0", + "emoji-mart": "2.8.1", "exif-js": "^2.3.0", "flow-watch": "^1.1.3", "framed-msgpack-rpc": "1.1.13", @@ -144,47 +144,47 @@ "iced-runtime": "1.0.3", "immutable": "git://github.com/keybase/immutable-sorted#2a5895d4a5b36e632f833aec2cc84d2ad319bf71", "jsonfile": "^4.0.0", - "lodash-es": "4.17.10", + "lodash-es": "4.17.11", "menubar": "5.2.3", "mkdirp": "0.5.1", "moment": "2.22.2", "mousetrap": "1.6.2", - "path-parse": "1.0.5", + "path-parse": "1.0.6", "prettier": "1.12.1", - "prop-types": "15.6.1", + "prop-types": "15.6.2", "purepack": "1.0.4", "qrcode-generator": "git://github.com/keybase/qrcode-generator#keybase-changes-off-140", "re-reselect": "2.1.0", - "react": "16.5.0", - "react-dom": "16.5.0", + "react": "16.5.1", + "react-dom": "16.5.1", "react-gateway": "3.0.0", - "react-list": "0.8.9", - "react-measure": "^2.0.0", - "react-native": "0.57.0", - "react-native-camera": "1.1.4", - "react-native-contacts": "2.2.0", + "react-list": "0.8.10", + "react-measure": "^2.1.2", + "react-native": "git://github.com/keybase/react-native#keybase-fixes-off-570", + "react-native-camera": "1.2.0", + "react-native-contacts": "2.2.3", "react-native-image-picker": "git://github.com/keybase/react-native-image-picker#b70affdef548c355c4dc864cd72a2bc79666649e", "react-native-mime-types": "^2.2.1", "react-native-push-notification": "git://github.com/keybase/react-native-push-notification#keybase-fixes-off-311", "react-navigation": "git://github.com/keybase/react-navigation#keybase-fixes-off-beta-12", "react-redux": "5.0.7", - "react-transition-group": "2.3.1", - "react-virtualized": "9.19.1", - "react-waypoint": "^8.0.1", - "recompose": "0.27.1", + "react-transition-group": "2.4.0", + "react-waypoint": "^8.0.3", + "recompose": "0.30.0", "redux": "4.0.0", "redux-batched-subscribe": "0.1.6", "redux-saga": "0.16.0", "redux-thunk": "2.3.0", "reselect": "3.0.1", - "rn-fetch-blob": "0.10.12", - "semver": "5.5.0", - "shallowequal": "1.0.2", + "rn-fetch-blob": "0.10.13", + "semver": "5.5.1", + "shallowequal": "1.1.0", + "terser-webpack-plugin": "^1.1.0", "tlds": "^1.203.1", "typedarray-to-buffer": "3.1.5", - "url-parse": "^1.4.1", + "url-parse": "^1.4.3", "util": "0.11.0", - "uuid": "^3.2.1" + "uuid": "^3.3.2" }, "devDependencies": { "@babel/cli": "^7.0.0", @@ -196,9 +196,9 @@ "@babel/preset-env": "^7.0.0", "@babel/preset-react": "^7.0.0", "@babel/types": "^7.0.0", - "@storybook/addons": "4.0.0-alpha.21", "@storybook/addon-actions": "4.0.0-alpha.21", "@storybook/addon-storyshots": "4.0.0-alpha.21", + "@storybook/addons": "4.0.0-alpha.21", "@storybook/channels": "4.0.0-alpha.21", "@storybook/react": "4.0.0-alpha.21", "@storybook/react-native": "4.0.0-alpha.21", @@ -206,50 +206,49 @@ "babel-eslint": "9.0.0", "babel-jest": "^23.4.2", "babel-loader": "^8.0.0", - "css-loader": "0.28.11", + "css-loader": "1.0.0", "del": "3.0.0", "devtron": "1.4.0", - "electron": "2.0.8", - "electron-packager": "12.1.1", - "eslint": "5.3.0", - "eslint-config-standard": "12.0.0-alpha.0", - "eslint-config-standard-jsx": "5.0.0", - "eslint-config-standard-react": "6.0.0", - "eslint-plugin-babel": "5.1.0", + "electron": "2.0.9", + "electron-packager": "12.1.2", + "eslint": "5.6.0", + "eslint-config-standard": "12.0.0", + "eslint-config-standard-jsx": "6.0.2", + "eslint-config-standard-react": "7.0.2", + "eslint-plugin-babel": "5.2.0", "eslint-plugin-filenames": "1.3.2", "eslint-plugin-flowtype": "2.50.0", "eslint-plugin-import": "2.14.0", "eslint-plugin-node": "7.0.1", - "eslint-plugin-promise": "3.8.0", + "eslint-plugin-promise": "4.0.1", "eslint-plugin-react": "7.11.1", - "eslint-plugin-standard": "3.1.0", - "file-loader": "1.1.11", - "flow-bin": "0.80.0", + "eslint-plugin-standard": "4.0.0", + "file-loader": "2.0.0", + "flow-bin": "0.81.0", "flow-typed": "^2.5.1", - "fs-extra": "6.0.1", - "jest": "23.5.0", - "jsc-android": "^216113.0.0", + "fs-extra": "7.0.0", + "jest": "23.6.0", "jest-glamor-react": "4.3.1", - "json5": "1.0.1", - "klaw-sync": "4.0.0", + "jsc-android": "^216113.0.0", + "json5": "2.0.1", + "klaw-sync": "5.0.0", "minimist": "1.2.0", "msgpack": "git://github.com/keybase/nullModule", "net": "git://github.com/keybase/nullModule", "null-loader": "0.1.1", "pegjs": "0.10.0", "raf": "3.4.0", - "react-hot-loader": "4.3.5", - "react-test-renderer": "16.4.2", + "react-hot-loader": "4.3.8", + "react-test-renderer": "16.5.1", "redux-logger": "3.0.6", "source-map-support": "0.5.9", - "style-loader": "0.21.0", + "style-loader": "0.23.0", "tls": "git://github.com/keybase/nullModule", - "uglifyjs-webpack-plugin": "1.2.5", "webfonts-generator": "^0.4.0", - "webpack": "4.17.1", + "webpack": "4.19.0", "webpack-cli": "^3.1.0", "webpack-dashboard": "2.0.0", - "webpack-dev-server": "3.1.6", + "webpack-dev-server": "3.1.8", "webpack-merge": "4.1.4" }, "optionalDependencies": { diff --git a/shared/stories/__tests__/__snapshots__/Storyshots.test.js.snap b/shared/stories/__tests__/__snapshots__/Storyshots.test.js.snap index 3da1183fdbe8..29238e0b2341 100644 --- a/shared/stories/__tests__/__snapshots__/Storyshots.test.js.snap +++ b/shared/stories/__tests__/__snapshots__/Storyshots.test.js.snap @@ -847,7 +847,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -1119,7 +1119,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -11003,7 +11003,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "27.45098039215686% 96.07843137254902%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -11176,7 +11176,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "74.50980392156862% 45.09803921568627%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -14798,7 +14798,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "43.13725490196078% 25.49019607843137%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -14919,7 +14919,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "7.8431372549019605% 49.01960784313725%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -15040,7 +15040,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "50.98039215686274% 43.13725490196078%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -16744,7 +16744,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "96.07843137254902% 100%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -17918,7 +17918,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 47.05882352941176%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -17980,7 +17980,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 49.01960784313725%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18042,7 +18042,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 50.98039215686274%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18104,7 +18104,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "74.50980392156862% 50.98039215686274%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18166,7 +18166,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 52.94117647058823%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18228,7 +18228,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 54.90196078431372%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18290,7 +18290,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 56.86274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18364,7 +18364,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 58.8235294117647%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18426,7 +18426,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 64.70588235294117%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18488,7 +18488,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 66.66666666666666%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18550,7 +18550,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 68.62745098039215%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18612,7 +18612,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 74.50980392156862%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18674,7 +18674,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 72.54901960784314%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18736,7 +18736,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 94.11764705882352%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18810,7 +18810,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 92.15686274509804%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18872,7 +18872,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 96.07843137254902%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18934,7 +18934,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 98.0392156862745%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -18996,7 +18996,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "92.15686274509804% 80.3921568627451%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19058,7 +19058,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 74.50980392156862%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19120,7 +19120,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "72.54901960784314% 60.78431372549019%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19182,7 +19182,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "74.50980392156862% 96.07843137254902%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19256,7 +19256,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "72.54901960784314% 54.90196078431372%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19318,7 +19318,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "74.50980392156862% 94.11764705882352%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19380,7 +19380,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 78.4313725490196%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19442,7 +19442,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 80.3921568627451%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19504,7 +19504,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 50.98039215686274%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19566,7 +19566,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 78.4313725490196%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19628,7 +19628,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 76.47058823529412%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19702,7 +19702,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 13.72549019607843%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19764,7 +19764,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 17.64705882352941%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19826,7 +19826,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 35.29411764705882%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19888,7 +19888,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "72.54901960784314% 47.05882352941176%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -19950,7 +19950,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 37.25490196078431%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20012,7 +20012,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 27.45098039215686%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20074,7 +20074,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20148,7 +20148,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 47.05882352941176%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20210,7 +20210,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 70.58823529411764%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20272,7 +20272,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 100%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20334,7 +20334,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 0%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20396,7 +20396,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 1.9607843137254901%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20458,7 +20458,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "74.50980392156862% 52.94117647058823%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20520,7 +20520,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 82.35294117647058%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20594,7 +20594,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 84.31372549019608%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20656,7 +20656,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 86.27450980392156%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20718,7 +20718,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 88.23529411764706%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20780,7 +20780,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 76.47058823529412%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20842,7 +20842,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "72.54901960784314% 49.01960784313725%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20904,7 +20904,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 43.13725490196078%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -20966,7 +20966,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "92.15686274509804% 78.4313725490196%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21040,7 +21040,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 72.54901960784314%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21102,7 +21102,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 90.19607843137254%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21164,7 +21164,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 3.9215686274509802%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21226,7 +21226,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 5.88235294117647%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21288,7 +21288,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21350,7 +21350,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 11.76470588235294%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21412,7 +21412,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 33.33333333333333%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21486,7 +21486,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 19.6078431372549%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21548,7 +21548,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 21.56862745098039%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21610,7 +21610,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 23.52941176470588%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21672,7 +21672,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 25.49019607843137%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21734,7 +21734,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "76.47058823529412% 5.88235294117647%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21796,7 +21796,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 31.372549019607842%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -21858,7 +21858,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 39.2156862745098%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22024,7 +22024,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 47.05882352941176%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22086,7 +22086,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 49.01960784313725%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22148,7 +22148,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 50.98039215686274%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22210,7 +22210,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "74.50980392156862% 50.98039215686274%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22272,7 +22272,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 52.94117647058823%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22334,7 +22334,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 54.90196078431372%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22396,7 +22396,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 56.86274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22470,7 +22470,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 58.8235294117647%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22532,7 +22532,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 64.70588235294117%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22594,7 +22594,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 66.66666666666666%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22656,7 +22656,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 68.62745098039215%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22718,7 +22718,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 74.50980392156862%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22780,7 +22780,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 72.54901960784314%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22842,7 +22842,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 94.11764705882352%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22916,7 +22916,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 92.15686274509804%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -22978,7 +22978,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 96.07843137254902%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23040,7 +23040,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 98.0392156862745%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23102,7 +23102,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "92.15686274509804% 80.3921568627451%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23164,7 +23164,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 74.50980392156862%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23226,7 +23226,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "72.54901960784314% 60.78431372549019%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23288,7 +23288,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "74.50980392156862% 96.07843137254902%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23362,7 +23362,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "72.54901960784314% 54.90196078431372%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23424,7 +23424,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "74.50980392156862% 94.11764705882352%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23486,7 +23486,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 78.4313725490196%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23548,7 +23548,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 80.3921568627451%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23610,7 +23610,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 50.98039215686274%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23672,7 +23672,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 78.4313725490196%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23734,7 +23734,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 76.47058823529412%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23808,7 +23808,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 13.72549019607843%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23870,7 +23870,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 17.64705882352941%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23932,7 +23932,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 35.29411764705882%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -23994,7 +23994,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "72.54901960784314% 47.05882352941176%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24056,7 +24056,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 37.25490196078431%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24118,7 +24118,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 27.45098039215686%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24180,7 +24180,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24254,7 +24254,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 47.05882352941176%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24316,7 +24316,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 70.58823529411764%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24378,7 +24378,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 100%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24440,7 +24440,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 0%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24502,7 +24502,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 1.9607843137254901%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24564,7 +24564,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "74.50980392156862% 52.94117647058823%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24626,7 +24626,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 82.35294117647058%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24700,7 +24700,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 84.31372549019608%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24762,7 +24762,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 86.27450980392156%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24824,7 +24824,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 88.23529411764706%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24886,7 +24886,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 76.47058823529412%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -24948,7 +24948,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "72.54901960784314% 49.01960784313725%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25010,7 +25010,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 43.13725490196078%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25072,7 +25072,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "92.15686274509804% 78.4313725490196%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25146,7 +25146,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 72.54901960784314%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25208,7 +25208,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 90.19607843137254%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25270,7 +25270,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 3.9215686274509802%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25332,7 +25332,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 5.88235294117647%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25394,7 +25394,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25456,7 +25456,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 11.76470588235294%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25518,7 +25518,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 33.33333333333333%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25592,7 +25592,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 19.6078431372549%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25654,7 +25654,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 21.56862745098039%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25716,7 +25716,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 23.52941176470588%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25778,7 +25778,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 25.49019607843137%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25840,7 +25840,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "76.47058823529412% 5.88235294117647%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25902,7 +25902,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 31.372549019607842%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -25964,7 +25964,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 39.2156862745098%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26078,7 +26078,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "96.07843137254902% 96.07843137254902%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26140,7 +26140,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "23.52941176470588% 25.49019607843137%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26202,7 +26202,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "90.19607843137254% 86.27450980392156%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26264,7 +26264,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "50.98039215686274% 58.8235294117647%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26326,7 +26326,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "11.76470588235294% 11.76470588235294%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26388,7 +26388,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "96.07843137254902% 33.33333333333333%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26450,7 +26450,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "11.76470588235294% 13.72549019607843%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26512,7 +26512,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "29.41176470588235% 45.09803921568627%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26574,7 +26574,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "11.76470588235294% 78.4313725490196%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26636,7 +26636,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "49.01960784313725% 64.70588235294117%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26698,7 +26698,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "13.72549019607843% 0%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26760,7 +26760,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 98.0392156862745%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26822,7 +26822,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "25.49019607843137% 84.31372549019608%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26884,7 +26884,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "25.49019607843137% 86.27450980392156%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -26946,7 +26946,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "25.49019607843137% 82.35294117647058%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27008,7 +27008,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "25.49019607843137% 88.23529411764706%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27070,7 +27070,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "50.98039215686274% 62.745098039215684%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27132,7 +27132,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "96.07843137254902% 98.0392156862745%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27194,7 +27194,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "13.72549019607843% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27256,7 +27256,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "98.0392156862745% 11.76470588235294%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27318,7 +27318,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "76.47058823529412% 5.88235294117647%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27380,7 +27380,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "82.35294117647058% 56.86274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27442,7 +27442,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 80.3921568627451%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27504,7 +27504,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "23.52941176470588% 1.9607843137254901%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27566,7 +27566,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 19.6078431372549%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27628,7 +27628,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "11.76470588235294% 9.80392156862745%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27690,7 +27690,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "82.35294117647058% 11.76470588235294%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27752,7 +27752,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "52.94117647058823% 54.90196078431372%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27814,7 +27814,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "90.19607843137254% 19.6078431372549%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27876,7 +27876,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "52.94117647058823% 27.45098039215686%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -27938,7 +27938,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "25.49019607843137% 3.9215686274509802%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28000,7 +28000,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "47.05882352941176% 78.4313725490196%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28062,7 +28062,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "13.72549019607843% 19.6078431372549%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28124,7 +28124,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "52.94117647058823% 98.0392156862745%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28186,7 +28186,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "62.745098039215684% 84.31372549019608%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28248,7 +28248,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "50.98039215686274% 50.98039215686274%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28310,7 +28310,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "62.745098039215684% 86.27450980392156%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28372,7 +28372,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "98.0392156862745% 13.72549019607843%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28434,7 +28434,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "25.49019607843137% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28496,7 +28496,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "49.01960784313725% 60.78431372549019%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28558,7 +28558,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "70.58823529411764% 60.78431372549019%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28620,7 +28620,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "49.01960784313725% 9.80392156862745%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28682,7 +28682,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "49.01960784313725% 7.8431372549019605%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28744,7 +28744,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "49.01960784313725% 1.9607843137254901%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28806,7 +28806,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "50.98039215686274% 39.2156862745098%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28868,7 +28868,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "49.01960784313725% 56.86274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28930,7 +28930,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "13.72549019607843% 1.9607843137254901%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -28992,7 +28992,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "52.94117647058823% 43.13725490196078%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29054,7 +29054,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "96.07843137254902% 86.27450980392156%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29116,7 +29116,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "47.05882352941176% 96.07843137254902%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29227,7 +29227,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 49.01960784313725%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29289,7 +29289,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 50.98039215686274%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29351,7 +29351,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "98.0392156862745% 0%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29462,7 +29462,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "3.9215686274509802% 100%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29524,7 +29524,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "23.52941176470588% 35.29411764705882%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29586,7 +29586,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "23.52941176470588% 33.33333333333333%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29648,7 +29648,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "23.52941176470588% 31.372549019607842%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29710,7 +29710,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "9.80392156862745% 54.90196078431372%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29772,7 +29772,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "9.80392156862745% 52.94117647058823%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29834,7 +29834,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 60.78431372549019%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29896,7 +29896,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 62.745098039215684%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -29958,7 +29958,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 64.70588235294117%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30020,7 +30020,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 66.66666666666666%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30082,7 +30082,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 68.62745098039215%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30144,7 +30144,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 66.66666666666666%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30206,7 +30206,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 70.58823529411764%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30268,7 +30268,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 72.54901960784314%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30330,7 +30330,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 74.50980392156862%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30392,7 +30392,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 76.47058823529412%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30454,7 +30454,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 78.4313725490196%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30516,7 +30516,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 80.3921568627451%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30578,7 +30578,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 82.35294117647058%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30640,7 +30640,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 84.31372549019608%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30702,7 +30702,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 86.27450980392156%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30764,7 +30764,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 88.23529411764706%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30826,7 +30826,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 90.19607843137254%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30888,7 +30888,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 92.15686274509804%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -30950,7 +30950,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 94.11764705882352%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31012,7 +31012,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 96.07843137254902%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31074,7 +31074,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 98.0392156862745%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31136,7 +31136,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "0% 100%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31198,7 +31198,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 0%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31260,7 +31260,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 1.9607843137254901%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31322,7 +31322,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 3.9215686274509802%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31384,7 +31384,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 5.88235294117647%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31446,7 +31446,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 7.8431372549019605%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31508,7 +31508,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 9.80392156862745%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31570,7 +31570,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 11.76470588235294%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31632,7 +31632,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 13.72549019607843%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31694,7 +31694,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31756,7 +31756,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 17.64705882352941%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31818,7 +31818,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 19.6078431372549%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31880,7 +31880,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 21.56862745098039%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -31942,7 +31942,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 23.52941176470588%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32004,7 +32004,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 25.49019607843137%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32066,7 +32066,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 27.45098039215686%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32128,7 +32128,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32190,7 +32190,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 31.372549019607842%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32252,7 +32252,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "9.80392156862745% 50.98039215686274%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32314,7 +32314,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 33.33333333333333%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32376,7 +32376,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 35.29411764705882%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32438,7 +32438,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 37.25490196078431%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32500,7 +32500,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "1.9607843137254901% 39.2156862745098%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32611,7 +32611,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 86.27450980392156%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32673,7 +32673,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "47.05882352941176% 90.19607843137254%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32735,7 +32735,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 3.9215686274509802%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32797,7 +32797,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 11.76470588235294%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32859,7 +32859,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 25.49019607843137%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32921,7 +32921,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 84.31372549019608%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -32983,7 +32983,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 33.33333333333333%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33045,7 +33045,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 68.62745098039215%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33107,7 +33107,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 72.54901960784314%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33218,7 +33218,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 54.90196078431372%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33280,7 +33280,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 52.94117647058823%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33342,7 +33342,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 54.90196078431372%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33404,7 +33404,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 58.8235294117647%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33466,7 +33466,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 56.86274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33528,7 +33528,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 47.05882352941176%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33590,7 +33590,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 76.47058823529412%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33652,7 +33652,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 74.50980392156862%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33714,7 +33714,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 62.745098039215684%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33776,7 +33776,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 66.66666666666666%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33838,7 +33838,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 76.47058823529412%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33900,7 +33900,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 74.50980392156862%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -33962,7 +33962,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 49.01960784313725%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -34024,7 +34024,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 64.70588235294117%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -34086,7 +34086,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 68.62745098039215%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -34148,7 +34148,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 100%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -34210,7 +34210,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 1.9607843137254901%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -34272,7 +34272,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "60.78431372549019% 0%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -92760,7 +92760,7 @@ else echo "bar"; Object { "backgroundImage": "url([object Object])", "backgroundPosition": "58.8235294117647% 54.90196078431372%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -338520,7 +338520,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -338708,7 +338708,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -339891,7 +339891,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -340079,7 +340079,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -341271,7 +341271,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -342144,7 +342144,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -343012,7 +343012,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -343888,7 +343888,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -344788,7 +344788,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -345631,7 +345631,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -346554,7 +346554,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -346756,7 +346756,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -348125,7 +348125,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -348327,7 +348327,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -349681,7 +349681,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -349884,7 +349884,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -351228,7 +351228,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -351431,7 +351431,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -352775,7 +352775,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -352978,7 +352978,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -354322,7 +354322,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -354525,7 +354525,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -355880,7 +355880,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -356080,7 +356080,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -357435,7 +357435,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -357635,7 +357635,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, @@ -360010,7 +360010,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 15.686274509803921%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 16, "width": 16, @@ -360199,7 +360199,7 @@ Array [ Object { "backgroundImage": "url([object Object])", "backgroundPosition": "15.686274509803921% 29.41176470588235%", - "backgroundSize": "5200%", + "backgroundSize": "5200% 5200%", "display": "inline-block", "height": 32, "width": 32, diff --git a/shared/teams/invite-by-email/container.native.js b/shared/teams/invite-by-email/container.native.js index 252b1dc48a41..f002881a575f 100644 --- a/shared/teams/invite-by-email/container.native.js +++ b/shared/teams/invite-by-email/container.native.js @@ -3,7 +3,7 @@ import logger from '../../logger' import * as ConfigGen from '../../actions/config-gen' import * as TeamsGen from '../../actions/teams-gen' import * as Constants from '../../constants/teams' -import {Set, Map} from 'immutable' +import * as I from 'immutable' import {InviteByEmailMobile, type ContactDisplayProps} from '.' import {HeaderHoc} from '../../common-adapters' import {navigateAppend} from '../../actions/route-tree' @@ -34,9 +34,9 @@ const mapStateToProps = (state: TypedState, {routeProps}: OwnProps) => { const teamname = routeProps.get('teamname') const inviteError = Constants.getEmailInviteError(state) return { - _pendingInvites: teamname ? Constants.getTeamInvites(state, teamname) : Set(), + _pendingInvites: teamname ? Constants.getTeamInvites(state, teamname) : I.Set(), errorMessage: inviteError.message, - loadingInvites: teamname ? Constants.getTeamLoadingInvites(state, teamname) : Map(), + loadingInvites: teamname ? Constants.getTeamLoadingInvites(state, teamname) : I.Map(), name: teamname, } } @@ -217,6 +217,7 @@ export default compose( // If contacts or _pendingInvites changes, recalculate the props on the contact rows. withPropsOnChange(['contacts', 'loadingInvites', '_pendingInvites'], props => { // Create static contact row props here + const knownIDs = new Set() const contactRowProps = props.contacts .reduce((res, contact) => { const contactName = isAndroid ? contact.givenName : contact.givenName + ' ' + contact.familyName @@ -229,13 +230,18 @@ export default compose( thumbnailPath: contact.thumbnailPath, recordID: contact.recordID + (addr.email ? addr.email : addr.number), } - res.push({ - id: contact.recordID + (addr.email ? addr.email : addr.number), - loading: props.isLoading(addr.email, addr.number), - contact: cData, - selected: props.isSelected(cData.email || cData.phoneNo, cData.name), - onClick: () => props.onSelectContact(cData), - }) + + const id = contact.recordID + (addr.email ? addr.email : addr.number) + if (!knownIDs.has(id)) { + knownIDs.add(id) + res.push({ + id, + loading: props.isLoading(addr.email, addr.number), + contact: cData, + selected: props.isSelected(cData.email || cData.phoneNo, cData.name), + onClick: () => props.onSelectContact(cData), + }) + } }) return res }, []) diff --git a/shared/teams/invite-by-email/index.native.js b/shared/teams/invite-by-email/index.native.js index 4ce2d38848ec..188c8192d84d 100644 --- a/shared/teams/invite-by-email/index.native.js +++ b/shared/teams/invite-by-email/index.native.js @@ -131,7 +131,7 @@ class InviteByEmailMobile extends React.Component { if (this.props.hasPermission) { contents = ( - {this.props.errorMessage && ( + {!!this.props.errorMessage && ( =0.0.4: version "1.0.1" resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" @@ -2033,17 +1893,6 @@ author-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/author-regex/-/author-regex-1.0.0.tgz#d08885be6b9bbf9439fe087c76287245f0a81450" -autoprefixer@^6.3.1: - version "6.7.7" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" - dependencies: - browserslist "^1.7.6" - caniuse-db "^1.0.30000634" - normalize-range "^0.1.2" - num2fraction "^1.2.2" - postcss "^5.2.16" - postcss-value-parser "^3.2.3" - autoprefixer@^9.1.3: version "9.1.5" resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.1.5.tgz#8675fd8d1c0d43069f3b19a2c316f3524e4f6671" @@ -3141,10 +2990,6 @@ badge-up@2.3.0: dot "~1.0.2" svgo "~0.4.5" -balanced-match@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" - balanced-match@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" @@ -3476,13 +3321,6 @@ browserslist@3.2.6, browserslist@^3.2.6: caniuse-lite "^1.0.30000830" electron-to-chromium "^1.3.42" -browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: - version "1.7.7" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" - dependencies: - caniuse-db "^1.0.30000639" - electron-to-chromium "^1.2.7" - browserslist@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.1.1.tgz#328eb4ff1215b12df6589e9ab82f8adaa4fc8cd6" @@ -3521,9 +3359,9 @@ buffer-xor@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" -buffer@5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.2.0.tgz#53cf98241100099e9eeae20ee6d51d21b16e541e" +buffer@5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6" dependencies: base64-js "^1.0.2" ieee754 "^1.1.4" @@ -3580,6 +3418,25 @@ cacache@^10.0.4: unique-filename "^1.1.0" y18n "^4.0.0" +cacache@^11.0.2: + version "11.2.0" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.2.0.tgz#617bdc0b02844af56310e411c0878941d5739965" + dependencies: + bluebird "^3.5.1" + chownr "^1.0.1" + figgy-pudding "^3.1.0" + glob "^7.1.2" + graceful-fs "^4.1.11" + lru-cache "^4.1.3" + mississippi "^3.0.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.2" + ssri "^6.0.0" + unique-filename "^1.1.0" + y18n "^4.0.0" + cache-base@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" @@ -3639,19 +3496,6 @@ camelcase@^4.0.0, camelcase@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" -caniuse-api@^1.5.2: - version "1.6.1" - resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" - dependencies: - browserslist "^1.3.6" - caniuse-db "^1.0.30000529" - lodash.memoize "^4.1.2" - lodash.uniq "^4.5.0" - -caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: - version "1.0.30000717" - resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000717.tgz#27ddf5feccdd338c99a62c9788c2694f99f67ed7" - caniuse-lite@^1.0.30000830: version "1.0.30000836" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000836.tgz#c08f405b884d36dc44fa4c9a85c2c06cdab1dbb5" @@ -3807,12 +3651,6 @@ clamp@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/clamp/-/clamp-1.0.1.tgz#66a0e64011816e37196828fdc8c8c147312c8634" -clap@^1.0.9: - version "1.2.0" - resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.0.tgz#59c90fe3e137104746ff19469a27a634ff68c857" - dependencies: - chalk "^1.1.3" - class-utils@^0.3.5: version "0.3.6" resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" @@ -3872,7 +3710,7 @@ clone-stats@^0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" -clone@^1.0.0, clone@^1.0.2: +clone@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" @@ -3886,12 +3724,6 @@ coa@~0.4.0: dependencies: q "~0.9.6" -coa@~1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" - dependencies: - q "^1.1.2" - code-point-at@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" @@ -3903,38 +3735,16 @@ collection-visit@^1.0.0: map-visit "^1.0.0" object-visit "^1.0.0" -color-convert@^1.3.0, color-convert@^1.9.0: +color-convert@^1.9.0: version "1.9.0" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" dependencies: color-name "^1.1.1" -color-name@^1.0.0, color-name@^1.1.1: +color-name@^1.1.1: version "1.1.3" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" -color-string@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" - dependencies: - color-name "^1.0.0" - -color@^0.11.0: - version "0.11.4" - resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" - dependencies: - clone "^1.0.2" - color-convert "^1.3.0" - color-string "^0.3.0" - -colormin@^1.0.5: - version "1.1.2" - resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" - dependencies: - color "^0.11.0" - css-color-names "0.0.4" - has "^1.0.1" - colors@^1.0.3: version "1.2.5" resolved "https://registry.yarnpkg.com/colors/-/colors-1.2.5.tgz#89c7ad9a374bc030df8013241f68136ed8835afc" @@ -3947,10 +3757,6 @@ colors@~0.6.0: version "0.6.2" resolved "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" -colors@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" - combined-stream@1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" @@ -3979,6 +3785,10 @@ commander@~2.13.0: version "2.13.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" +commander@~2.17.1: + version "2.17.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" + common-tags@^1.8.0: version "1.8.0" resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" @@ -4099,9 +3909,9 @@ console-control-strings@^1.0.0, console-control-strings@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" -consolidated-events@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/consolidated-events/-/consolidated-events-1.1.1.tgz#25395465b35e531395418b7bbecb5ecaf198d179" +"consolidated-events@^1.1.0 || ^2.0.0": + version "2.0.2" + resolved "https://registry.yarnpkg.com/consolidated-events/-/consolidated-events-2.0.2.tgz#da8d8f8c2b232831413d9e190dc11669c79f4a91" constants-browserify@^1.0.0: version "1.0.0" @@ -4265,11 +4075,11 @@ create-react-context@0.2.2: fbjs "^0.8.0" gud "^1.0.0" -cross-env@5.1.6: - version "5.1.6" - resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.1.6.tgz#0dc05caf945b24e4b9e3b12871fe0e858d08b38d" +cross-env@5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.2.0.tgz#6ecd4c015d5773e614039ee529076669b9d126f2" dependencies: - cross-spawn "^5.1.0" + cross-spawn "^6.0.5" is-windows "^1.0.0" cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.3, cross-spawn@^6.0.5: @@ -4332,7 +4142,7 @@ css-animation@1.x, css-animation@^1.2.5, css-animation@^1.3.2: babel-runtime "6.x" component-classes "^1.2.5" -css-color-names@0.0.4, css-color-names@~0.0.3: +css-color-names@~0.0.3: version "0.0.4" resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" @@ -4342,26 +4152,7 @@ css-in-js-utils@^1.0.3: dependencies: hyphenate-style-name "^1.0.2" -css-loader@0.28.11: - version "0.28.11" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.11.tgz#c3f9864a700be2711bb5a2462b2389b1a392dab7" - dependencies: - babel-code-frame "^6.26.0" - css-selector-tokenizer "^0.7.0" - cssnano "^3.10.0" - icss-utils "^2.1.0" - loader-utils "^1.0.2" - lodash.camelcase "^4.3.0" - object-assign "^4.1.1" - postcss "^5.0.6" - postcss-modules-extract-imports "^1.2.0" - postcss-modules-local-by-default "^1.2.0" - postcss-modules-scope "^1.1.0" - postcss-modules-values "^1.3.0" - postcss-value-parser "^3.3.0" - source-list-map "^2.0.0" - -css-loader@^1.0.0: +css-loader@1.0.0, css-loader@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-1.0.0.tgz#9f46aaa5ca41dbe31860e3b62b8e23c42916bf56" dependencies: @@ -4399,50 +4190,6 @@ cssesc@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" -cssnano@^3.10.0: - version "3.10.0" - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" - dependencies: - autoprefixer "^6.3.1" - decamelize "^1.1.2" - defined "^1.0.0" - has "^1.0.1" - object-assign "^4.0.1" - postcss "^5.0.14" - postcss-calc "^5.2.0" - postcss-colormin "^2.1.8" - postcss-convert-values "^2.3.4" - postcss-discard-comments "^2.0.4" - postcss-discard-duplicates "^2.0.1" - postcss-discard-empty "^2.0.1" - postcss-discard-overridden "^0.1.1" - postcss-discard-unused "^2.2.1" - postcss-filter-plugins "^2.0.0" - postcss-merge-idents "^2.1.5" - postcss-merge-longhand "^2.0.1" - postcss-merge-rules "^2.0.3" - postcss-minify-font-values "^1.0.2" - postcss-minify-gradients "^1.0.1" - postcss-minify-params "^1.0.4" - postcss-minify-selectors "^2.0.4" - postcss-normalize-charset "^1.1.0" - postcss-normalize-url "^3.0.7" - postcss-ordered-values "^2.1.0" - postcss-reduce-idents "^2.2.2" - postcss-reduce-initial "^1.0.0" - postcss-reduce-transforms "^1.0.3" - postcss-svgo "^2.1.1" - postcss-unique-selectors "^2.0.2" - postcss-value-parser "^3.2.3" - postcss-zindex "^2.0.1" - -csso@~2.3.1: - version "2.3.2" - resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" - dependencies: - clap "^1.0.9" - source-map "^0.5.3" - cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": version "0.3.2" resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" @@ -4712,6 +4459,13 @@ deepmerge@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-2.1.1.tgz#e862b4e45ea0555072bf51e7fd0d9845170ae768" +default-gateway@^2.6.0: + version "2.7.2" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-2.7.2.tgz#b7ef339e5e024b045467af403d50348db4642d0f" + dependencies: + execa "^0.10.0" + ip-regex "^2.1.0" + default-require-extensions@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" @@ -4744,10 +4498,6 @@ define-property@^2.0.2: is-descriptor "^1.0.2" isobject "^3.0.1" -defined@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" - del@3.0.0, del@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" @@ -4901,14 +4651,14 @@ dom-closest@^0.2.0: dependencies: dom-matches ">=1.0.1" -"dom-helpers@^2.4.0 || ^3.0.0", dom-helpers@^3.3.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.3.1.tgz#fc1a4e15ffdf60ddde03a480a9c0fece821dd4a6" - dom-helpers@^3.2.0: version "3.2.1" resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.2.1.tgz#3203e07fed217bd1f424b019735582fc37b2825a" +dom-helpers@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.3.1.tgz#fc1a4e15ffdf60ddde03a480a9c0fece821dd4a6" + dom-matches@>=1.0.1: version "2.0.0" resolved "https://registry.yarnpkg.com/dom-matches/-/dom-matches-2.0.0.tgz#d2728b416a87533980eb089b848d253cf23a758c" @@ -5053,9 +4803,9 @@ electron-osx-sign@^0.4.1: minimist "^1.2.0" plist "^2.1.0" -electron-packager@12.1.1: - version "12.1.1" - resolved "https://registry.yarnpkg.com/electron-packager/-/electron-packager-12.1.1.tgz#a8a9b8b312ab56b4e67ef740f8e602138eedc6e6" +electron-packager@12.1.2: + version "12.1.2" + resolved "https://registry.yarnpkg.com/electron-packager/-/electron-packager-12.1.2.tgz#731fbbff432c94e4c768c5270db558644329d0dc" dependencies: asar "^0.14.0" debug "^3.0.0" @@ -5079,10 +4829,6 @@ electron-positioner@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/electron-positioner/-/electron-positioner-3.0.0.tgz#1a3b75c9cc1e29dd37c663b23fd876d4ffab9996" -electron-to-chromium@^1.2.7: - version "1.3.18" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.18.tgz#3dcc99da3e6b665f6abbc71c28ad51a2cd731a9c" - electron-to-chromium@^1.3.42: version "1.3.45" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.45.tgz#458ac1b1c5c760ce8811a16d2bfbd97ec30bafb8" @@ -5091,9 +4837,9 @@ electron-to-chromium@^1.3.62: version "1.3.66" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.66.tgz#1410d8f8768a14dcd09d96222990f43c969af270" -electron@2.0.8: - version "2.0.8" - resolved "https://registry.yarnpkg.com/electron/-/electron-2.0.8.tgz#6ec7113b356e09cc9899797e0d41ebff8163e962" +electron@2.0.9: + version "2.0.9" + resolved "https://registry.yarnpkg.com/electron/-/electron-2.0.9.tgz#dfc863d653fa3a2dd4fea0c63303df9c0e33c602" dependencies: "@types/node" "^8.0.24" electron-download "^3.0.1" @@ -5111,17 +4857,17 @@ elliptic@^6.0.0: minimalistic-assert "^1.0.0" minimalistic-crypto-utils "^1.0.0" -emoji-datasource-apple@4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/emoji-datasource-apple/-/emoji-datasource-apple-4.0.4.tgz#586048cf338623c1d64f41c0642cfb3f19552503" +emoji-datasource-apple@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/emoji-datasource-apple/-/emoji-datasource-apple-4.1.0.tgz#e6725311b115144a32fb60043416a755fea30bf5" -emoji-datasource@4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/emoji-datasource/-/emoji-datasource-4.0.4.tgz#516b9ab2f34569e468e4e3753a34a47a0b2b5aa3" +emoji-datasource@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/emoji-datasource/-/emoji-datasource-4.1.0.tgz#b44557f78a2dfac2f350393391b170a567ec28ad" -emoji-mart@2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/emoji-mart/-/emoji-mart-2.6.1.tgz#222b9d8f20c4484758266b847588f84cc2db384c" +emoji-mart@2.8.1: + version "2.8.1" + resolved "https://registry.yarnpkg.com/emoji-mart/-/emoji-mart-2.8.1.tgz#4ffcb807237989a953085c80a6553d21f1effc62" emojis-list@^2.0.0: version "2.1.0" @@ -5323,19 +5069,19 @@ escodegen@^1.9.0: optionalDependencies: source-map "~0.6.1" -eslint-config-standard-jsx@5.0.0, eslint-config-standard-jsx@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-5.0.0.tgz#4abfac554f38668e0078c664569e7b2384e5d2aa" +eslint-config-standard-jsx@6.0.2, eslint-config-standard-jsx@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-6.0.2.tgz#90c9aa16ac2c4f8970c13fc7efc608bacd02da70" -eslint-config-standard-react@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/eslint-config-standard-react/-/eslint-config-standard-react-6.0.0.tgz#d366d6c3c092426fd3ae794a4ca0b3cb131f2964" +eslint-config-standard-react@7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/eslint-config-standard-react/-/eslint-config-standard-react-7.0.2.tgz#80b51a0e0c371ef987679ee134768457a5b6db92" dependencies: - eslint-config-standard-jsx "^5.0.0" + eslint-config-standard-jsx "^6.0.1" -eslint-config-standard@12.0.0-alpha.0: - version "12.0.0-alpha.0" - resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-12.0.0-alpha.0.tgz#f21f864ba7f52f2eb98670c94b03322186ac18a5" +eslint-config-standard@12.0.0: + version "12.0.0" + resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz#638b4c65db0bd5a41319f96bba1f15ddad2107d9" eslint-import-resolver-node@^0.3.1: version "0.3.1" @@ -5351,9 +5097,9 @@ eslint-module-utils@^2.2.0: debug "^2.6.8" pkg-dir "^1.0.0" -eslint-plugin-babel@5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-5.1.0.tgz#9c76e476162041e50b6ba69aa4eae3bdd6a4e1c3" +eslint-plugin-babel@5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-5.2.0.tgz#3041a0c26aa3ca4a0e0f2aa11591f0396790d981" dependencies: eslint-rule-composer "^0.3.0" @@ -5405,9 +5151,9 @@ eslint-plugin-node@7.0.1: resolve "^1.8.1" semver "^5.5.0" -eslint-plugin-promise@3.8.0: - version "3.8.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.8.0.tgz#65ebf27a845e3c1e9d6f6a5622ddd3801694b621" +eslint-plugin-promise@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.0.1.tgz#2d074b653f35a23d1ba89d8e976a985117d1c6a2" eslint-plugin-react@7.11.1: version "7.11.1" @@ -5419,9 +5165,9 @@ eslint-plugin-react@7.11.1: jsx-ast-utils "^2.0.1" prop-types "^15.6.2" -eslint-plugin-standard@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.1.0.tgz#2a9e21259ba4c47c02d53b2d0c9135d4b1022d47" +eslint-plugin-standard@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.0.tgz#f845b45109c99cd90e77796940a344546c8f6b5c" eslint-rule-composer@^0.3.0: version "0.3.0" @@ -5449,12 +5195,12 @@ eslint-visitor-keys@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" -eslint@5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.3.0.tgz#53695aca5213968aacdf970ccb231e42a2b285f8" +eslint@5.6.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.6.0.tgz#b6f7806041af01f71b3f1895cbb20971ea4b6223" dependencies: - ajv "^6.5.0" - babel-code-frame "^6.26.0" + "@babel/code-frame" "^7.0.0" + ajv "^6.5.3" chalk "^2.1.0" cross-spawn "^6.0.5" debug "^3.1.0" @@ -5469,11 +5215,11 @@ eslint@5.3.0: functional-red-black-tree "^1.0.1" glob "^7.1.2" globals "^11.7.0" - ignore "^4.0.2" + ignore "^4.0.6" imurmurhash "^0.1.4" - inquirer "^5.2.0" + inquirer "^6.1.0" is-resolvable "^1.1.0" - js-yaml "^3.11.0" + js-yaml "^3.12.0" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.3.0" lodash "^4.17.5" @@ -5486,8 +5232,7 @@ eslint@5.3.0: progress "^2.0.0" regexpp "^2.0.0" require-uncached "^1.0.3" - semver "^5.5.0" - string.prototype.matchall "^2.0.0" + semver "^5.5.1" strip-ansi "^4.0.0" strip-json-comments "^2.0.1" table "^4.0.3" @@ -5500,10 +5245,6 @@ espree@^4.0.0: acorn "^5.6.0" acorn-jsx "^4.1.1" -esprima@^2.6.0: - version "2.7.3" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" - esprima@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" @@ -5944,6 +5685,10 @@ fd-slicer@~1.0.1: dependencies: pend "~1.2.0" +figgy-pudding@^3.1.0, figgy-pudding@^3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" + figures@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" @@ -5964,7 +5709,7 @@ file-loader@1.1.11: loader-utils "^1.0.2" schema-utils "^0.4.5" -file-loader@^2.0.0: +file-loader@2.0.0, file-loader@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-2.0.0.tgz#39749c82f020b9e85901dcff98e8004e6401cfde" dependencies: @@ -6114,10 +5859,6 @@ flat-cache@^1.2.1: graceful-fs "^4.1.2" write "^0.2.1" -flatten@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" - flora-colossus@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/flora-colossus/-/flora-colossus-1.0.0.tgz#54729c361edecee014dd441679e1a37c1d773a45" @@ -6134,9 +5875,9 @@ flow-annotation-check@1.8.1: glob "7.1.1" load-pkg "^3.0.1" -flow-bin@0.80.0: - version "0.80.0" - resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.80.0.tgz#04cc1ee626a6f50786f78170c92ebe1745235403" +flow-bin@0.81.0: + version "0.81.0" + resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.81.0.tgz#7f0a733dce1dad3cb1447c692639292dc3d60bf5" flow-coverage-report@0.6.0: version "0.6.0" @@ -6289,9 +6030,9 @@ fs-extra@0.26.7: path-is-absolute "^1.0.0" rimraf "^2.2.8" -fs-extra@6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.1.tgz#8abc128f7946e310135ddc93b98bddb410e7a34b" +fs-extra@7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.0.tgz#8cc3f47ce07ef7b3593a11b9fb245f7e34c041d6" dependencies: graceful-fs "^4.1.2" jsonfile "^4.0.0" @@ -7053,10 +6794,6 @@ hpack.js@^2.1.6: readable-stream "^2.0.1" wbuf "^1.1.0" -html-comment-regex@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" - html-element-attributes@^1.0.0: version "1.3.0" resolved "https://registry.yarnpkg.com/html-element-attributes/-/html-element-attributes-1.3.0.tgz#f06ebdfce22de979db82020265cac541fb17d4fc" @@ -7198,10 +6935,6 @@ icss-utils@^2.1.0: dependencies: postcss "^6.0.1" -ieee754@^1.1.11: - version "1.1.12" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" - ieee754@^1.1.4: version "1.1.8" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" @@ -7232,6 +6965,10 @@ ignore@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.2.tgz#0a8dd228947ec78c2d7f736b1642a9f7317c1905" +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + image-size@^0.6.0: version "0.6.1" resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.6.1.tgz#98122a562d59dcc097ef1b2c8191866eb8f5d663" @@ -7275,6 +7012,13 @@ import-local@^1.0.0: pkg-dir "^2.0.0" resolve-cwd "^2.0.0" +import-local@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" + dependencies: + pkg-dir "^3.0.0" + resolve-cwd "^2.0.0" + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -7285,10 +7029,6 @@ indent-string@^2.1.0: dependencies: repeating "^2.0.0" -indexes-of@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" - indexof@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" @@ -7360,25 +7100,7 @@ inquirer@^3.0.6: strip-ansi "^4.0.0" through "^2.3.6" -inquirer@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-5.2.0.tgz#db350c2b73daca77ff1243962e9f22f099685726" - dependencies: - ansi-escapes "^3.0.0" - chalk "^2.0.0" - cli-cursor "^2.1.0" - cli-width "^2.0.0" - external-editor "^2.1.0" - figures "^2.0.0" - lodash "^4.3.0" - mute-stream "0.0.7" - run-async "^2.2.0" - rxjs "^5.5.2" - string-width "^2.1.0" - strip-ansi "^4.0.0" - through "^2.3.6" - -inquirer@^6.0.0: +inquirer@^6.0.0, inquirer@^6.1.0: version "6.2.0" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.0.tgz#51adcd776f661369dc1e894859c2560a224abdd8" dependencies: @@ -7406,11 +7128,12 @@ inspectpack@^3.0.1: pify "^3.0.0" yargs "^11.0.0" -internal-ip@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-1.2.0.tgz#ae9fbf93b984878785d50a8de1b356956058cf5c" +internal-ip@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-3.0.1.tgz#df5c99876e1d2eb2ea2d74f520e3f669a00ece27" dependencies: - meow "^3.3.0" + default-gateway "^2.6.0" + ipaddr.js "^1.5.2" interpret@^1.0.0: version "1.0.3" @@ -7457,6 +7180,10 @@ io-ts@^1.0.2, io-ts@^1.0.5: dependencies: fp-ts "^1.0.0" +ip-regex@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + ip@^1.1.0, ip@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" @@ -7469,9 +7196,9 @@ ipaddr.js@1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.6.0.tgz#e3fa357b773da619f26e95f049d055c72796f86b" -is-absolute-url@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" +ipaddr.js@^1.5.2: + version "1.8.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.8.1.tgz#fa4b79fa47fd3def5e3b159825161c0a519c9427" is-accessor-descriptor@^0.1.6: version "0.1.6" @@ -7702,7 +7429,7 @@ is-path-inside@^1.0.0: dependencies: path-is-inside "^1.0.1" -is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: +is-plain-obj@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" @@ -7754,12 +7481,6 @@ is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" -is-svg@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" - dependencies: - html-comment-regex "^1.1.0" - is-symbol@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" @@ -7906,7 +7627,7 @@ jest-changed-files@^23.4.2: dependencies: throat "^4.0.0" -jest-cli@^23.5.0: +jest-cli@^23.6.0: version "23.6.0" resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.6.0.tgz#61ab917744338f443ef2baa282ddffdd658a5da4" dependencies: @@ -8239,16 +7960,12 @@ jest-worker@23.2.0, jest-worker@^23.2.0: dependencies: merge-stream "^1.0.1" -jest@23.5.0: - version "23.5.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-23.5.0.tgz#80de353d156ea5ea4a7332f7962ac79135fbc62e" +jest@23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-23.6.0.tgz#ad5835e923ebf6e19e7a1d7529a432edfee7813d" dependencies: import-local "^1.0.0" - jest-cli "^23.5.0" - -js-base64@^2.1.9: - version "2.1.9" - resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" + jest-cli "^23.6.0" js-levenshtein@^1.1.3: version "1.1.3" @@ -8262,7 +7979,7 @@ js-tokens@^3.0.0, js-tokens@^3.0.2: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" -js-yaml@^3.11.0: +js-yaml@^3.12.0: version "3.12.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" dependencies: @@ -8290,13 +8007,6 @@ js-yaml@~2.1.0: argparse "~ 0.1.11" esprima "~ 1.0.2" -js-yaml@~3.7.0: - version "3.7.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" - dependencies: - argparse "^1.0.7" - esprima "^2.6.0" - jsbn@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" @@ -8396,9 +8106,9 @@ json3@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" -json5@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" +json5@2.0.1, json5@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.0.1.tgz#3d6d0d1066039eb50984e66a7840e4f4b7a2c660" dependencies: minimist "^1.2.0" @@ -8410,12 +8120,6 @@ json5@^0.5.0: version "0.5.1" resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" -json5@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.0.1.tgz#3d6d0d1066039eb50984e66a7840e4f4b7a2c660" - dependencies: - minimist "^1.2.0" - jsonfile@^2.1.0: version "2.4.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" @@ -8475,9 +8179,9 @@ kind-of@^6.0.0, kind-of@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" -klaw-sync@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-4.0.0.tgz#7785692ea1a320ac3dda7a6c0c22b33a30aa3b3f" +klaw-sync@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-5.0.0.tgz#b8db1249f96a82751c311ee8a626a319db119904" dependencies: graceful-fs "^4.1.11" @@ -8606,9 +8310,9 @@ locate-path@^3.0.0: p-locate "^3.0.0" path-exists "^3.0.0" -lodash-es@4.17.10: - version "4.17.10" - resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.10.tgz#62cd7104cdf5dd87f235a837f0ede0e8e5117e05" +lodash-es@4.17.11: + version "4.17.11" + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.11.tgz#145ab4a7ac5c5e52a3531fb4f310255a152b4be0" lodash-es@^4.17.5: version "4.17.7" @@ -8704,10 +8408,6 @@ lodash.keys@^3.0.0, lodash.keys@^3.1.2: lodash.isarguments "^3.0.0" lodash.isarray "^3.0.0" -lodash.memoize@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - lodash.pad@^4.1.0: version "4.5.1" resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" @@ -8765,10 +8465,6 @@ lodash.throttle@^4.0.0, lodash.throttle@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" -lodash.uniq@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - lodash.upperfirst@4.3.1: version "4.3.1" resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" @@ -8793,19 +8489,11 @@ loglevel@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.4.1.tgz#95b383f91a3c2756fd4ab093667e4309161f2bcd" -long@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" - -long@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b" - longest@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" -loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.0, loose-envify@^1.3.1: +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" dependencies: @@ -8835,9 +8523,12 @@ lru-cache@^4.0.1, lru-cache@^4.1.1: pseudomap "^1.0.2" yallist "^2.1.2" -macaddress@^0.2.8: - version "0.2.8" - resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" +lru-cache@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" make-dir@^1.0.0: version "1.3.0" @@ -8883,10 +8574,6 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" -math-expression-evaluator@^1.2.14: - version "1.2.17" - resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" - md5.js@^1.3.4: version "1.3.4" resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" @@ -8934,7 +8621,7 @@ menubar@5.2.3: electron-positioner "^3.0.0" extend "^2.0.0" -meow@^3.1.0, meow@^3.3.0: +meow@^3.1.0: version "3.7.0" resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" dependencies: @@ -9399,6 +9086,21 @@ mississippi@^2.0.0: stream-each "^1.1.0" through2 "^2.0.0" +mississippi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" + dependencies: + concat-stream "^1.5.0" + duplexify "^3.4.2" + end-of-stream "^1.1.0" + flush-write-stream "^1.0.0" + from2 "^2.1.0" + parallel-transform "^1.1.0" + pump "^3.0.0" + pumpify "^1.3.3" + stream-each "^1.1.0" + through2 "^2.0.0" + mixin-deep@^1.2.0: version "1.3.0" resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.0.tgz#47a8732ba97799457c8c1eca28f95132d7e8150a" @@ -9412,7 +9114,7 @@ mkdirp@0.5.0: dependencies: minimist "0.0.8" -mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: +mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: version "0.5.1" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" dependencies: @@ -9739,15 +9441,6 @@ normalize-range@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" -normalize-url@^1.4.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" - dependencies: - object-assign "^4.0.1" - prepend-http "^1.0.0" - query-string "^4.1.0" - sort-keys "^1.0.0" - npm-bundled@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" @@ -10218,7 +9911,11 @@ path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" -path-parse@1.0.5, path-parse@^1.0.5: +path-parse@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + +path-parse@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" @@ -10380,67 +10077,6 @@ posix-character-classes@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" -postcss-calc@^5.2.0: - version "5.3.1" - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" - dependencies: - postcss "^5.0.2" - postcss-message-helpers "^2.0.0" - reduce-css-calc "^1.2.6" - -postcss-colormin@^2.1.8: - version "2.2.2" - resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" - dependencies: - colormin "^1.0.5" - postcss "^5.0.13" - postcss-value-parser "^3.2.3" - -postcss-convert-values@^2.3.4: - version "2.6.1" - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" - dependencies: - postcss "^5.0.11" - postcss-value-parser "^3.1.2" - -postcss-discard-comments@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" - dependencies: - postcss "^5.0.14" - -postcss-discard-duplicates@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" - dependencies: - postcss "^5.0.4" - -postcss-discard-empty@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" - dependencies: - postcss "^5.0.14" - -postcss-discard-overridden@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" - dependencies: - postcss "^5.0.16" - -postcss-discard-unused@^2.2.1: - version "2.2.3" - resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" - dependencies: - postcss "^5.0.14" - uniqs "^2.0.0" - -postcss-filter-plugins@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" - dependencies: - postcss "^5.0.4" - uniqid "^4.0.0" - postcss-flexbugs-fixes@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.1.0.tgz#e094a9df1783e2200b7b19f875dcad3b3aff8b20" @@ -10463,67 +10099,6 @@ postcss-loader@^3.0.0: postcss-load-config "^2.0.0" schema-utils "^1.0.0" -postcss-merge-idents@^2.1.5: - version "2.1.7" - resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" - dependencies: - has "^1.0.1" - postcss "^5.0.10" - postcss-value-parser "^3.1.1" - -postcss-merge-longhand@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" - dependencies: - postcss "^5.0.4" - -postcss-merge-rules@^2.0.3: - version "2.1.2" - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" - dependencies: - browserslist "^1.5.2" - caniuse-api "^1.5.2" - postcss "^5.0.4" - postcss-selector-parser "^2.2.2" - vendors "^1.0.0" - -postcss-message-helpers@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" - -postcss-minify-font-values@^1.0.2: - version "1.0.5" - resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" - dependencies: - object-assign "^4.0.1" - postcss "^5.0.4" - postcss-value-parser "^3.0.2" - -postcss-minify-gradients@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" - dependencies: - postcss "^5.0.12" - postcss-value-parser "^3.3.0" - -postcss-minify-params@^1.0.4: - version "1.2.2" - resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" - dependencies: - alphanum-sort "^1.0.1" - postcss "^5.0.2" - postcss-value-parser "^3.0.2" - uniqs "^2.0.0" - -postcss-minify-selectors@^2.0.4: - version "2.1.1" - resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" - dependencies: - alphanum-sort "^1.0.2" - has "^1.0.1" - postcss "^5.0.14" - postcss-selector-parser "^2.0.0" - postcss-modules-extract-imports@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" @@ -10551,95 +10126,10 @@ postcss-modules-values@^1.3.0: icss-replace-symbols "^1.1.0" postcss "^6.0.1" -postcss-normalize-charset@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" - dependencies: - postcss "^5.0.5" - -postcss-normalize-url@^3.0.7: - version "3.0.8" - resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" - dependencies: - is-absolute-url "^2.0.0" - normalize-url "^1.4.0" - postcss "^5.0.14" - postcss-value-parser "^3.2.3" - -postcss-ordered-values@^2.1.0: - version "2.2.3" - resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" - dependencies: - postcss "^5.0.4" - postcss-value-parser "^3.0.1" - -postcss-reduce-idents@^2.2.2: - version "2.4.0" - resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" - dependencies: - postcss "^5.0.4" - postcss-value-parser "^3.0.2" - -postcss-reduce-initial@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" - dependencies: - postcss "^5.0.4" - -postcss-reduce-transforms@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" - dependencies: - has "^1.0.1" - postcss "^5.0.8" - postcss-value-parser "^3.0.1" - -postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: - version "2.2.3" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" - dependencies: - flatten "^1.0.2" - indexes-of "^1.0.1" - uniq "^1.0.1" - -postcss-svgo@^2.1.1: - version "2.1.6" - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" - dependencies: - is-svg "^2.0.0" - postcss "^5.0.14" - postcss-value-parser "^3.2.3" - svgo "^0.7.0" - -postcss-unique-selectors@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" - dependencies: - alphanum-sort "^1.0.1" - postcss "^5.0.4" - uniqs "^2.0.0" - -postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: +postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" -postcss-zindex@^2.0.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" - dependencies: - has "^1.0.1" - postcss "^5.0.4" - uniqs "^2.0.0" - -postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16: - version "5.2.17" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.17.tgz#cf4f597b864d65c8a492b2eabe9d706c879c388b" - dependencies: - chalk "^1.1.3" - js-base64 "^2.1.9" - source-map "^0.5.6" - supports-color "^3.2.3" - postcss@^6.0.1: version "6.0.9" resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.9.tgz#54819766784a51c65b1ec4d54c2f93765438c35a" @@ -10668,7 +10158,7 @@ prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" -prepend-http@^1.0.0, prepend-http@^1.0.1: +prepend-http@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" @@ -10774,18 +10264,18 @@ prop-types@15, prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.6, prop fbjs "^0.8.9" loose-envify "^1.3.1" -prop-types@15.6.1, prop-types@^15.0.0, prop-types@^15.5.0, prop-types@^15.5.7, prop-types@^15.6.1: - version "15.6.1" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca" +prop-types@15.6.2, prop-types@15.x, prop-types@^15.6.2: + version "15.6.2" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102" dependencies: - fbjs "^0.8.16" loose-envify "^1.3.1" object-assign "^4.1.1" -prop-types@15.x, prop-types@^15.6.2: - version "15.6.2" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102" +prop-types@^15.0.0, prop-types@^15.5.0, prop-types@^15.5.7, prop-types@^15.6.1: + version "15.6.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca" dependencies: + fbjs "^0.8.16" loose-envify "^1.3.1" object-assign "^4.1.1" @@ -10859,6 +10349,13 @@ pump@^2.0.1: end-of-stream "^1.1.0" once "^1.3.1" +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + pumpify@^1.3.3: version "1.3.5" resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.3.5.tgz#1b671c619940abcaeac0ad0e3a3c164be760993b" @@ -10907,13 +10404,6 @@ qs@~6.4.0: version "6.4.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" -query-string@^4.1.0: - version "4.3.4" - resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" - dependencies: - object-assign "^4.1.0" - strict-uri-encode "^1.0.0" - querystring-es3@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" @@ -11419,7 +10909,16 @@ react-dom@15.5.4: object-assign "^4.1.0" prop-types "~15.5.7" -react-dom@16.5.0, react-dom@^16.4.1: +react-dom@16.5.1: + version "16.5.1" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.5.1.tgz#29d0c5a01ed3b6b4c14309aa91af6ec4eb4f292c" + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.2" + schedule "^0.4.0" + +react-dom@^16.4.1: version "16.5.0" resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.5.0.tgz#57704e5718669374b182a17ea79a6d24922cb27d" dependencies: @@ -11448,9 +10947,9 @@ react-gateway@3.0.0: prop-types "^15.5.0" react-prop-types "^0.4.0" -react-hot-loader@4.3.5: - version "4.3.5" - resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.3.5.tgz#d8659839d8072d4b78938a776f29f5f1d2a40170" +react-hot-loader@4.3.8: + version "4.3.8" + resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.3.8.tgz#81f174a9b70fb5a4d4f2e9134d73659ddcd779cf" dependencies: fast-levenshtein "^2.0.6" global "^4.3.0" @@ -11472,9 +10971,9 @@ react-inspector@^2.3.0: babel-runtime "^6.26.0" is-dom "^1.0.9" -react-is@^16.4.2: - version "16.5.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.5.0.tgz#2ec7c192709698591efe13722fab3ef56144ba55" +react-is@^16.5.1: + version "16.5.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.5.1.tgz#c6e8734fd548a22e1cef4fd0833afbeb433b85ee" react-lazy-load@^3.0.12: version "3.0.13" @@ -11493,15 +10992,15 @@ react-lifecycles-compat@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" -react-list@0.8.9: - version "0.8.9" - resolved "https://registry.yarnpkg.com/react-list/-/react-list-0.8.9.tgz#c2f24d16cca090664f61402dc62eca7081ef789f" +react-list@0.8.10: + version "0.8.10" + resolved "https://registry.yarnpkg.com/react-list/-/react-list-0.8.10.tgz#5bd4864051409c5d3eff34110def54c05af062e6" dependencies: prop-types "15" -react-measure@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/react-measure/-/react-measure-2.0.2.tgz#072a9a5fafc01dfbadc1fa5fb09fc351037f636c" +react-measure@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/react-measure/-/react-measure-2.1.2.tgz#2fa690cc657d1e7a1271902b7a5937e0055338d5" dependencies: get-node-dimensions "^1.2.0" prop-types "^15.5.10" @@ -11524,9 +11023,9 @@ react-motion@^0.5.2: prop-types "^15.5.8" raf "^3.1.0" -react-native-camera@1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/react-native-camera/-/react-native-camera-1.1.4.tgz#5a01be906507cc2f232405f903c52c9d99988dba" +react-native-camera@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/react-native-camera/-/react-native-camera-1.2.0.tgz#fa93b39726d15bdbb02fac06f4a23957b0be403a" dependencies: lodash "^4.17.4" prop-types "^15.5.10" @@ -11537,9 +11036,9 @@ react-native-compat@^1.0.0: dependencies: prop-types "^15.5.10" -react-native-contacts@2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/react-native-contacts/-/react-native-contacts-2.2.0.tgz#9a1a10d36f492728f6317a7f785809bf6ee49229" +react-native-contacts@2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/react-native-contacts/-/react-native-contacts-2.2.3.tgz#7b229d484f41a4ed1dd6cd186dc6106c9a5edfcd" react-native-dismiss-keyboard@1.0.0: version "1.0.0" @@ -11581,9 +11080,9 @@ react-native-tab-view@^0.0.67: dependencies: prop-types "^15.5.8" -react-native@0.57.0: +"react-native@git://github.com/keybase/react-native#keybase-fixes-off-570": version "0.57.0" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.57.0.tgz#b0d098bbd5393fc3c079f8d7c2a8bf9a10b86b9e" + resolved "git://github.com/keybase/react-native#b155a63d3c44db6ebb282cab968e598838a31fb1" dependencies: absolute-path "^0.0.0" art "^0.10.0" @@ -11720,14 +11219,14 @@ react-style-proptype@^3.0.0: dependencies: prop-types "^15.5.4" -react-test-renderer@16.4.2: - version "16.4.2" - resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.4.2.tgz#4e03eca9359bb3210d4373f7547d1364218ef74e" +react-test-renderer@16.5.1: + version "16.5.1" + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.5.1.tgz#17f020fb0cf884cadebb5240d9d9c23452f18299" dependencies: - fbjs "^0.8.16" object-assign "^4.1.1" - prop-types "^15.6.0" - react-is "^16.4.2" + prop-types "^15.6.2" + react-is "^16.5.1" + schedule "^0.4.0" react-textarea-autosize@^7.0.4: version "7.0.4" @@ -11746,13 +11245,14 @@ react-transform-hmr@^1.0.4: global "^4.3.0" react-proxy "^1.1.7" -react-transition-group@2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.3.1.tgz#31d611b33e143a5e0f2d94c348e026a0f3b474b6" +react-transition-group@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.4.0.tgz#1d9391fabfd82e016f26fabd1eec329dbd922b5a" dependencies: dom-helpers "^3.3.1" loose-envify "^1.3.1" - prop-types "^15.6.1" + prop-types "^15.6.2" + react-lifecycles-compat "^3.0.4" react-transition-group@^1.1.2: version "1.2.0" @@ -11764,17 +11264,6 @@ react-transition-group@^1.1.2: prop-types "^15.5.6" warning "^3.0.0" -react-virtualized@9.19.1: - version "9.19.1" - resolved "https://registry.yarnpkg.com/react-virtualized/-/react-virtualized-9.19.1.tgz#84b53253df2d9df61c85ce037141edccc70a73fd" - dependencies: - babel-runtime "^6.26.0" - classnames "^2.2.3" - dom-helpers "^2.4.0 || ^3.0.0" - loose-envify "^1.3.0" - prop-types "^15.6.0" - react-lifecycles-compat "^3.0.4" - react-vis@^1.10.4: version "1.11.1" resolved "https://registry.yarnpkg.com/react-vis/-/react-vis-1.11.1.tgz#9dca99fd252aacf9a5674ed45b4c40f7c207f26f" @@ -11798,11 +11287,11 @@ react-vis@^1.10.4: prop-types "^15.5.8" react-motion "^0.5.2" -react-waypoint@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/react-waypoint/-/react-waypoint-8.0.1.tgz#00f7694a9d54da5a50be859da5dde96b1795b892" +react-waypoint@^8.0.3: + version "8.0.3" + resolved "https://registry.yarnpkg.com/react-waypoint/-/react-waypoint-8.0.3.tgz#860db860d3301c6f449800f7a330856028730af5" dependencies: - consolidated-events "^1.1.0" + consolidated-events "^1.1.0 || ^2.0.0" prop-types "^15.0.0" react@15.5.4: @@ -11823,14 +11312,14 @@ react@16.4.1: object-assign "^4.1.1" prop-types "^15.6.0" -react@16.5.0: - version "16.5.0" - resolved "https://registry.yarnpkg.com/react/-/react-16.5.0.tgz#f2c1e754bf9751a549d9c6d9aca41905beb56575" +react@16.5.1: + version "16.5.1" + resolved "https://registry.yarnpkg.com/react/-/react-16.5.1.tgz#8cb8e9f8cdcb4bde41c9a138bfbf907e66132372" dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" - schedule "^0.3.0" + schedule "^0.4.0" read-pkg-up@^1.0.1: version "1.0.1" @@ -11972,11 +11461,11 @@ rechoir@^0.6.2: dependencies: resolve "^1.1.6" -recompose@0.27.1: - version "0.27.1" - resolved "https://registry.yarnpkg.com/recompose/-/recompose-0.27.1.tgz#1a49e931f183634516633bbb4f4edbfd3f38a7ba" +recompose@0.30.0: + version "0.30.0" + resolved "https://registry.yarnpkg.com/recompose/-/recompose-0.30.0.tgz#82773641b3927e8c7d24a0d87d65aeeba18aabd0" dependencies: - babel-runtime "^6.26.0" + "@babel/runtime" "^7.0.0" change-emitter "^0.1.2" fbjs "^0.8.1" hoist-non-react-statics "^2.3.1" @@ -11996,20 +11485,6 @@ redent@^1.0.0: indent-string "^2.1.0" strip-indent "^1.0.1" -reduce-css-calc@^1.2.6: - version "1.3.0" - resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" - dependencies: - balanced-match "^0.4.2" - math-expression-evaluator "^1.2.14" - reduce-function-call "^1.0.1" - -reduce-function-call@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" - dependencies: - balanced-match "^0.4.2" - redux-batched-subscribe@0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/redux-batched-subscribe/-/redux-batched-subscribe-0.1.6.tgz#de928602708df7198b4d0c98c7119df993780d59" @@ -12445,9 +11920,9 @@ rmc-feedback@^2.0.0: babel-runtime "6.x" classnames "^2.2.5" -rn-fetch-blob@0.10.12: - version "0.10.12" - resolved "https://registry.yarnpkg.com/rn-fetch-blob/-/rn-fetch-blob-0.10.12.tgz#7b9a309149eb136a1b063b282a1847a205297924" +rn-fetch-blob@0.10.13: + version "0.10.13" + resolved "https://registry.yarnpkg.com/rn-fetch-blob/-/rn-fetch-blob-0.10.13.tgz#e0fd5eac1a3a872563b35061353d96c4e51ae1cc" dependencies: base-64 "0.1.0" glob "7.0.6" @@ -12536,7 +12011,7 @@ sanitize-filename@^1.6.0: dependencies: truncate-utf8-bytes "^1.0.0" -sax@^1.1.5, sax@^1.2.4, sax@~1.2.1: +sax@^1.1.5, sax@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" @@ -12554,6 +12029,12 @@ schedule@^0.3.0: dependencies: object-assign "^4.1.1" +schedule@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/schedule/-/schedule-0.4.0.tgz#fa20cfd0bfbf91c47d02272fd7096780d3170bbb" + dependencies: + object-assign "^4.1.1" + schema-utils@^0.4.4, schema-utils@^0.4.5: version "0.4.5" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.5.tgz#21836f0608aac17b78f9e3e24daff14a5ca13a3e" @@ -12589,14 +12070,14 @@ semver-diff@^2.0.0: version "5.4.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" -semver@5.5.0, semver@^5.4.1, semver@^5.5.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" - -semver@^5.5.1: +semver@5.5.1, semver@^5.5.1: version "5.5.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477" +semver@^5.4.1, semver@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" + semver@~5.3.0: version "5.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" @@ -12739,9 +12220,9 @@ shallow-equal@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/shallow-equal/-/shallow-equal-1.0.0.tgz#508d1838b3de590ab8757b011b25e430900945f7" -shallowequal@1.0.2, shallowequal@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.0.2.tgz#1561dbdefb8c01408100319085764da3fcf83f8f" +shallowequal@1.1.0, shallowequal@^1.0.1, shallowequal@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" shallowequal@^0.2.2: version "0.2.2" @@ -12749,9 +12230,9 @@ shallowequal@^0.2.2: dependencies: lodash.keys "^3.1.2" -shallowequal@^1.0.1, shallowequal@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" +shallowequal@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.0.2.tgz#1561dbdefb8c01408100319085764da3fcf83f8f" shebang-command@^1.2.0: version "1.2.0" @@ -12934,12 +12415,6 @@ sockjs@0.3.19: faye-websocket "^0.10.0" uuid "^3.0.1" -sort-keys@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" - dependencies: - is-plain-obj "^1.0.0" - source-list-map@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" @@ -12963,7 +12438,7 @@ source-map-resolve@^0.5.0: source-map-url "^0.4.0" urix "^0.1.0" -source-map-support@0.5.9, source-map-support@^0.5.9: +source-map-support@0.5.9, source-map-support@^0.5.9, source-map-support@~0.5.6: version "0.5.9" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f" dependencies: @@ -13003,7 +12478,7 @@ source-map@^0.4.4: dependencies: amdefine ">=0.0.4" -source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1, source-map@~0.5.3: +source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" @@ -13096,6 +12571,12 @@ ssri@^5.2.4: dependencies: safe-buffer "^5.1.1" +ssri@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" + dependencies: + figgy-pudding "^3.5.1" + stack-utils@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" @@ -13165,10 +12646,6 @@ stream-slicer@0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/stream-slicer/-/stream-slicer-0.0.6.tgz#f86b2ac5c2440b7a0a87b71f33665c0788046138" -strict-uri-encode@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" - string-convert@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/string-convert/-/string-convert-0.2.1.tgz#6982cc3049fbb4cd85f8b24568b9d9bf39eeff97" @@ -13203,16 +12680,6 @@ string.prototype.codepointat@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz#004ad44c8afc727527b108cd462b4d971cd469bc" -string.prototype.matchall@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-2.0.0.tgz#2af8fe3d2d6dc53ca2a59bd376b089c3c152b3c8" - dependencies: - define-properties "^1.1.2" - es-abstract "^1.10.0" - function-bind "^1.1.1" - has-symbols "^1.0.0" - regexp.prototype.flags "^1.2.0" - string.prototype.matchall@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-3.0.0.tgz#66f4d8dd5c6c6cea4dffb55ec5f3184a8dd0dd59" @@ -13289,14 +12756,7 @@ strip-json-comments@2.0.1, strip-json-comments@^2.0.1, strip-json-comments@~2.0. version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" -style-loader@0.21.0: - version "0.21.0" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.21.0.tgz#68c52e5eb2afc9ca92b6274be277ee59aea3a852" - dependencies: - loader-utils "^1.1.0" - schema-utils "^0.4.5" - -style-loader@^0.23.0: +style-loader@0.23.0, style-loader@^0.23.0: version "0.23.0" resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.0.tgz#8377fefab68416a2e05f1cabd8c3a3acfcce74f1" dependencies: @@ -13350,7 +12810,7 @@ supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" -supports-color@^3.1.2, supports-color@^3.2.3: +supports-color@^3.1.2: version "3.2.3" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" dependencies: @@ -13420,18 +12880,6 @@ svgicons2svgfont@^5.0.0: string.prototype.codepointat "^0.2.0" svg-pathdata "^1.0.4" -svgo@^0.7.0: - version "0.7.2" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" - dependencies: - coa "~1.0.1" - colors "~1.1.2" - csso "~2.3.1" - js-yaml "~3.7.0" - mkdirp "~0.5.1" - sax "~1.2.1" - whet.extend "~0.9.9" - svgo@~0.4.5: version "0.4.5" resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.4.5.tgz#ba56155fb1733728956c01b405221ee7e789a2a4" @@ -13483,6 +12931,10 @@ tapable@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.0.0.tgz#cbb639d9002eed9c6b5975eb20598d7936f1f9f2" +tapable@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.0.tgz#0d076a172e3d9ba088fd2272b2668fb8d194b78c" + tar@^2.0.0: version "2.2.1" resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" @@ -13523,6 +12975,27 @@ terminal-table@0.0.12: colors "^1.0.3" eastasianwidth "^0.1.0" +terser-webpack-plugin@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.1.0.tgz#cf7c25a1eee25bf121f4a587bb9e004e3f80e528" + dependencies: + cacache "^11.0.2" + find-cache-dir "^2.0.0" + schema-utils "^1.0.0" + serialize-javascript "^1.4.0" + source-map "^0.6.1" + terser "^3.8.1" + webpack-sources "^1.1.0" + worker-farm "^1.5.2" + +terser@^3.8.1: + version "3.8.2" + resolved "https://registry.yarnpkg.com/terser/-/terser-3.8.2.tgz#48b880f949f8d038aca4dfd00a37c53d96ecf9fb" + dependencies: + commander "~2.17.1" + source-map "~0.6.1" + source-map-support "~0.5.6" + test-exclude@^4.2.1: version "4.2.1" resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" @@ -13830,19 +13303,6 @@ uglify-to-browserify@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" -uglifyjs-webpack-plugin@1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.5.tgz#2ef8387c8f1a903ec5e44fa36f9f3cbdcea67641" - dependencies: - cacache "^10.0.4" - find-cache-dir "^1.0.0" - schema-utils "^0.4.5" - serialize-javascript "^1.4.0" - source-map "^0.6.1" - uglify-es "^3.3.4" - webpack-sources "^1.1.0" - worker-farm "^1.5.2" - uglifyjs-webpack-plugin@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.4.tgz#5eec941b2e9b8538be0a20fc6eda25b14c7c1043" @@ -13929,20 +13389,6 @@ union-value@^1.0.0: is-extendable "^0.1.1" set-value "^0.4.3" -uniq@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" - -uniqid@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" - dependencies: - macaddress "^0.2.8" - -uniqs@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" - unique-filename@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.0.tgz#d05f2fe4032560871f30e93cbe735eea201514f3" @@ -14029,7 +13475,7 @@ uri-js@^3.0.2: dependencies: punycode "^2.1.0" -uri-js@^4.2.1: +uri-js@^4.2.2: version "4.2.2" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" dependencies: @@ -14075,13 +13521,6 @@ url-parse@^1.1.8: querystringify "~1.0.0" requires-port "1.0.x" -url-parse@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.1.tgz#4dec9dad3dc8585f862fed461d2e19bbf623df30" - dependencies: - querystringify "^2.0.0" - requires-port "^1.0.0" - url-parse@^1.4.3: version "1.4.3" resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.3.tgz#bfaee455c889023219d757e045fa6a684ec36c15" @@ -14151,7 +13590,7 @@ uuid@^3.0.0, uuid@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" -uuid@^3.0.1, uuid@^3.2.1: +uuid@^3.0.1: version "3.2.1" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" @@ -14207,10 +13646,6 @@ velocity-react@^1.3.1: react-transition-group "^1.1.2" velocity-animate "^1.4.0" -vendors@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" - verror@1.10.0: version "1.10.0" resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" @@ -14357,9 +13792,9 @@ webpack-dev-middleware@^3.2.0: url-join "^4.0.0" webpack-log "^2.0.0" -webpack-dev-server@3.1.6: - version "3.1.6" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.1.6.tgz#8617503768b1131fd539cf43c3e2e63bd34c1521" +webpack-dev-server@3.1.8: + version "3.1.8" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.1.8.tgz#eb7a95945d1108170f902604fb3b939533d9daeb" dependencies: ansi-html "0.0.7" bonjour "^3.5.0" @@ -14371,13 +13806,14 @@ webpack-dev-server@3.1.6: express "^4.16.2" html-entities "^1.2.0" http-proxy-middleware "~0.18.0" - import-local "^1.0.0" - internal-ip "1.2.0" + import-local "^2.0.0" + internal-ip "^3.0.1" ip "^1.1.5" killable "^1.0.0" loglevel "^1.4.1" opn "^5.1.0" portfinder "^1.0.9" + schema-utils "^1.0.0" selfsigned "^1.9.1" serve-index "^1.7.2" sockjs "0.3.19" @@ -14387,7 +13823,7 @@ webpack-dev-server@3.1.6: supports-color "^5.1.0" webpack-dev-middleware "3.2.0" webpack-log "^2.0.0" - yargs "12.0.1" + yargs "12.0.2" webpack-hot-middleware@^2.22.3: version "2.23.1" @@ -14411,13 +13847,6 @@ webpack-merge@4.1.4: dependencies: lodash "^4.17.5" -webpack-sources@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf" - dependencies: - source-list-map "^2.0.0" - source-map "~0.5.3" - webpack-sources@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" @@ -14432,15 +13861,14 @@ webpack-sources@^1.2.0: source-list-map "^2.0.0" source-map "~0.6.1" -webpack@4.17.1: - version "4.17.1" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.17.1.tgz#0f026e3d823f3fc604f811ed3ea8f0d9b267fb1e" +webpack@4.19.0: + version "4.19.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.19.0.tgz#252296c8af2d21c0994911007defdb3913a7bc66" dependencies: - "@webassemblyjs/ast" "1.5.13" - "@webassemblyjs/helper-module-context" "1.5.13" - "@webassemblyjs/wasm-edit" "1.5.13" - "@webassemblyjs/wasm-opt" "1.5.13" - "@webassemblyjs/wasm-parser" "1.5.13" + "@webassemblyjs/ast" "1.7.6" + "@webassemblyjs/helper-module-context" "1.7.6" + "@webassemblyjs/wasm-edit" "1.7.6" + "@webassemblyjs/wasm-parser" "1.7.6" acorn "^5.6.2" acorn-dynamic-import "^3.0.0" ajv "^6.1.0" @@ -14457,10 +13885,10 @@ webpack@4.17.1: neo-async "^2.5.0" node-libs-browser "^2.0.0" schema-utils "^0.4.4" - tapable "^1.0.0" + tapable "^1.1.0" uglifyjs-webpack-plugin "^1.2.4" watchpack "^1.5.0" - webpack-sources "^1.0.1" + webpack-sources "^1.2.0" webpack@^4.17.1: version "4.18.0" @@ -14751,15 +14179,15 @@ yargs-parser@^9.0.2: dependencies: camelcase "^4.1.0" -yargs@12.0.1: - version "12.0.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.1.tgz#6432e56123bb4e7c3562115401e98374060261c2" +yargs@12.0.2, yargs@^12.0.1: + version "12.0.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.2.tgz#fe58234369392af33ecbef53819171eff0f5aadc" dependencies: cliui "^4.0.0" decamelize "^2.0.0" find-up "^3.0.0" get-caller-file "^1.0.1" - os-locale "^2.0.0" + os-locale "^3.0.0" require-directory "^2.1.1" require-main-filename "^1.0.1" set-blocking "^2.0.0" @@ -14803,23 +14231,6 @@ yargs@^11.0.0: y18n "^3.2.1" yargs-parser "^9.0.2" -yargs@^12.0.1: - version "12.0.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.2.tgz#fe58234369392af33ecbef53819171eff0f5aadc" - dependencies: - cliui "^4.0.0" - decamelize "^2.0.0" - find-up "^3.0.0" - get-caller-file "^1.0.1" - os-locale "^3.0.0" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^2.0.0" - which-module "^2.0.0" - y18n "^3.2.1 || ^4.0.0" - yargs-parser "^10.1.0" - yargs@^4.2.0: version "4.8.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0"