From 5e647192d7744b8078514e78bb24c592771b225e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Thu, 21 Dec 2017 16:27:56 +0200 Subject: [PATCH] dashboard: minor polishes, exclude misspell linter --- .gitignore | 1 + dashboard/README.md | 20 +- dashboard/assets.go | 2187 +++--- .../npm/material-ui-icons_vx.x.x.js | 6751 ---------------- .../assets/flow-typed/npm/path_vx.x.x.js | 32 - .../npm/react-transition-group_vx.x.x.js | 87 - .../assets/flow-typed/npm/recharts_vx.x.x.js | 1572 ---- dashboard/assets/package-lock.json | 6806 +++++++++++++++++ dashboard/dashboard.go | 3 +- 9 files changed, 7935 insertions(+), 9524 deletions(-) delete mode 100644 dashboard/assets/flow-typed/npm/material-ui-icons_vx.x.x.js delete mode 100644 dashboard/assets/flow-typed/npm/path_vx.x.x.js delete mode 100644 dashboard/assets/flow-typed/npm/react-transition-group_vx.x.x.js delete mode 100644 dashboard/assets/flow-typed/npm/recharts_vx.x.x.js create mode 100644 dashboard/assets/package-lock.json diff --git a/.gitignore b/.gitignore index 3a5acef9f3..9e054bad1b 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@ profile.cov .idea # dashboard +/dashboard/assets/flow-typed /dashboard/assets/node_modules /dashboard/assets/stats.json /dashboard/assets/public/bundle.js diff --git a/dashboard/README.md b/dashboard/README.md index 33c3ce3cc5..da28f5a192 100644 --- a/dashboard/README.md +++ b/dashboard/README.md @@ -9,10 +9,11 @@ The client's UI uses [React][React] with JSX syntax, which is validated by the [ ### Development and bundling -As the dashboard depends on certain NPM packages (which are not included in the go-ethereum repo), these need to be installed first: +As the dashboard depends on certain NPM packages (which are not included in the `go-ethereum` repo), these need to be installed first: ``` $ (cd dashboard/assets && npm install) +$ (cd dashboard/assets && ./node_modules/.bin/flow-typed install) ``` Normally the dashboard assets are bundled into Geth via `go-bindata` to avoid external dependencies. Rebuilding Geth after each UI modification however is not feasible from a developer perspective. Instead, we can run `webpack` in watch mode to automatically rebundle the UI, and ask `geth` to use external assets to not rely on compiled resources: @@ -28,18 +29,13 @@ To bundle up the final UI into Geth, run `go generate`: $ go generate ./dashboard ``` -Since JavaScript doesn't provide type safety, [Flow][Flow] is used to introduce and check types. These types are only useful during the development, so at the end of the day Babel will strip them. -To take advantage of types the IDE needs to be prepared for them. -In case of [Atom][Atom] a configuration guide can be found [here][Atom config]. -Install the [Nuclide][Nuclide] package for Flow support, make sure it installs all of its support packages by enabling `Install Recommended Packages on Startup`, and set the path of the `flow-bin` which were installed previously by `npm`. -For more IDE support install the `linter-eslint` package too, which finds the `.eslintrc` file, and provides real-time linting. -Atom warns, that these two packages are incompatible, but they seem to work well together. -For third-party library errors and their auto-complete [flow-typed][flow-typed] is used. +### Static type checking -To visualize the hidden elements (e.g. `node_modules`), uncheck the `Exclude VCS Ignored Path` in `Settings > Core`. -To visualize the white spaces, check `Show invisibles` in `Settings > Editor`. -To use Sublime-like minimap, install the `minimap` package. -In case of trouble related to the Atom UI, run `atom --clear-window-state`. +Since JavaScript doesn't provide type safety, [Flow][Flow] is used to check types. These are only useful during development, so at the end of the process Babel will strip them. + +To take advantage of static type checking, your IDE needs to be prepared for it. In case of [Atom][Atom] a configuration guide can be found [here][Atom config]: Install the [Nuclide][Nuclide] package for Flow support, making sure it installs all of its support packages by enabling `Install Recommended Packages on Startup`, and set the path of the `flow-bin` which were installed previously by `npm`. + +For more IDE support install the `linter-eslint` package too, which finds the `.eslintrc` file, and provides real-time linting. Atom warns, that these two packages are incompatible, but they seem to work well together. For third-party library errors and auto-completion [flow-typed][flow-typed] is used. ### Have fun diff --git a/dashboard/assets.go b/dashboard/assets.go index 6c7a9096c5..032e45dff1 100644 --- a/dashboard/assets.go +++ b/dashboard/assets.go @@ -46,6 +46,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } +//nolint:misspell var _publicBundleJs = []byte(`!function(modules) { function __webpack_require__(moduleId) { if (installedModules[moduleId]) return installedModules[moduleId].exports; @@ -315,7 +316,7 @@ var _publicBundleJs = []byte(`!function(modules) { }), __webpack_require__.d(__webpack_exports__, "o", function() { return parseChildIndex; }); - var __WEBPACK_IMPORTED_MODULE_0_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_0_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_1_lodash_isString__ = __webpack_require__(225), __WEBPACK_IMPORTED_MODULE_1_lodash_isString___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isString__), __WEBPACK_IMPORTED_MODULE_2_lodash_isObject__ = __webpack_require__(47), __WEBPACK_IMPORTED_MODULE_2_lodash_isObject___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isObject__), __WEBPACK_IMPORTED_MODULE_3_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_3_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_4_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_4_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_5_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_5_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react__), __WEBPACK_IMPORTED_MODULE_6_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_6_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_prop_types__), __WEBPACK_IMPORTED_MODULE_7__DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_8__PureRender__ = __webpack_require__(8), PRESENTATION_ATTRIBUTES = { + var __WEBPACK_IMPORTED_MODULE_0_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_0_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_1_lodash_isString__ = __webpack_require__(227), __WEBPACK_IMPORTED_MODULE_1_lodash_isString___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isString__), __WEBPACK_IMPORTED_MODULE_2_lodash_isObject__ = __webpack_require__(47), __WEBPACK_IMPORTED_MODULE_2_lodash_isObject___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isObject__), __WEBPACK_IMPORTED_MODULE_3_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_3_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_4_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_4_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_5_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_5_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react__), __WEBPACK_IMPORTED_MODULE_6_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_6_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_prop_types__), __WEBPACK_IMPORTED_MODULE_7__DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_8__PureRender__ = __webpack_require__(8), PRESENTATION_ATTRIBUTES = { alignmentBaseline: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string, angle: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, baselineShift: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string, @@ -460,7 +461,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, validateWidthHeight = function(el) { if (!el || !el.props) return !1; var _el$props = el.props, width = _el$props.width, height = _el$props.height; - return !(!Object(__WEBPACK_IMPORTED_MODULE_7__DataUtils__.f)(width) || width <= 0 || !Object(__WEBPACK_IMPORTED_MODULE_7__DataUtils__.f)(height) || height <= 0); + return !(!Object(__WEBPACK_IMPORTED_MODULE_7__DataUtils__.g)(width) || width <= 0 || !Object(__WEBPACK_IMPORTED_MODULE_7__DataUtils__.g)(height) || height <= 0); }, isSsr = function() { return !("undefined" != typeof window && window.document && window.document.createElement && window.setTimeout); }, SVG_TAGS = [ "a", "altGlyph", "altGlyphDef", "altGlyphItem", "animate", "animateColor", "animateMotion", "animateTransform", "circle", "clipPath", "color-profile", "cursor", "defs", "desc", "ellipse", "feBlend", "feColormatrix", "feComponentTransfer", "feComposite", "feConvolveMatrix", "feDiffuseLighting", "feDisplacementMap", "feDistantLight", "feFlood", "feFuncA", "feFuncB", "feFuncG", "feFuncR", "feGaussianBlur", "feImage", "feMerge", "feMergeNode", "feMorphology", "feOffset", "fePointLight", "feSpecularLighting", "feSpotLight", "feTile", "feTurbulence", "filter", "font", "font-face", "font-face-format", "font-face-name", "font-face-url", "foreignObject", "g", "glyph", "glyphRef", "hkern", "image", "line", "lineGradient", "marker", "mask", "metadata", "missing-glyph", "mpath", "path", "pattern", "polygon", "polyline", "radialGradient", "rect", "script", "set", "stop", "style", "svg", "switch", "symbol", "text", "textPath", "title", "tref", "tspan", "use", "view", "vkern" ], isSvgElement = function(child) { @@ -552,52 +553,54 @@ var _publicBundleJs = []byte(`!function(modules) { module.exports = isFunction; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - __webpack_require__.d(__webpack_exports__, "h", function() { + __webpack_require__.d(__webpack_exports__, "i", function() { return mathSign; - }), __webpack_require__.d(__webpack_exports__, "g", function() { + }), __webpack_require__.d(__webpack_exports__, "h", function() { return isPercent; - }), __webpack_require__.d(__webpack_exports__, "f", function() { + }), __webpack_require__.d(__webpack_exports__, "g", function() { return isNumber; - }), __webpack_require__.d(__webpack_exports__, "e", function() { + }), __webpack_require__.d(__webpack_exports__, "f", function() { return isNumOrStr; - }), __webpack_require__.d(__webpack_exports__, "i", function() { + }), __webpack_require__.d(__webpack_exports__, "j", function() { return uniqueId; - }), __webpack_require__.d(__webpack_exports__, "b", function() { - return getPercentValue; - }), __webpack_require__.d(__webpack_exports__, "a", function() { - return getAnyElementOfObject; }), __webpack_require__.d(__webpack_exports__, "c", function() { - return hasDuplicate; + return getPercentValue; + }), __webpack_require__.d(__webpack_exports__, "b", function() { + return getAnyElementOfObject; }), __webpack_require__.d(__webpack_exports__, "d", function() { + return hasDuplicate; + }), __webpack_require__.d(__webpack_exports__, "e", function() { return interpolateNumber; + }), __webpack_require__.d(__webpack_exports__, "a", function() { + return findEntryInArray; }); - var __WEBPACK_IMPORTED_MODULE_0_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_0_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN__ = __webpack_require__(226), __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isNaN__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNumber__ = __webpack_require__(227), __WEBPACK_IMPORTED_MODULE_2_lodash_isNumber___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNumber__), __WEBPACK_IMPORTED_MODULE_3_lodash_isString__ = __webpack_require__(225), __WEBPACK_IMPORTED_MODULE_3_lodash_isString___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_isString__), mathSign = function(value) { + var __WEBPACK_IMPORTED_MODULE_0_lodash_get__ = __webpack_require__(152), __WEBPACK_IMPORTED_MODULE_0_lodash_get___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_get__), __WEBPACK_IMPORTED_MODULE_1_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_1_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNaN__ = __webpack_require__(159), __WEBPACK_IMPORTED_MODULE_2_lodash_isNaN___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNaN__), __WEBPACK_IMPORTED_MODULE_3_lodash_isNumber__ = __webpack_require__(232), __WEBPACK_IMPORTED_MODULE_3_lodash_isNumber___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_isNumber__), __WEBPACK_IMPORTED_MODULE_4_lodash_isString__ = __webpack_require__(227), __WEBPACK_IMPORTED_MODULE_4_lodash_isString___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_isString__), mathSign = function(value) { return 0 === value ? 0 : value > 0 ? 1 : -1; }, isPercent = function(value) { - return __WEBPACK_IMPORTED_MODULE_3_lodash_isString___default()(value) && value.indexOf("%") === value.length - 1; + return __WEBPACK_IMPORTED_MODULE_4_lodash_isString___default()(value) && value.indexOf("%") === value.length - 1; }, isNumber = function(value) { - return __WEBPACK_IMPORTED_MODULE_2_lodash_isNumber___default()(value) && !__WEBPACK_IMPORTED_MODULE_1_lodash_isNaN___default()(value); + return __WEBPACK_IMPORTED_MODULE_3_lodash_isNumber___default()(value) && !__WEBPACK_IMPORTED_MODULE_2_lodash_isNaN___default()(value); }, isNumOrStr = function(value) { - return isNumber(value) || __WEBPACK_IMPORTED_MODULE_3_lodash_isString___default()(value); + return isNumber(value) || __WEBPACK_IMPORTED_MODULE_4_lodash_isString___default()(value); }, idCounter = 0, uniqueId = function(prefix) { var id = ++idCounter; return "" + (prefix || "") + id; }, getPercentValue = function(percent, totalValue) { var defaultValue = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : 0, validate = arguments.length > 3 && void 0 !== arguments[3] && arguments[3]; - if (!isNumber(percent) && !__WEBPACK_IMPORTED_MODULE_3_lodash_isString___default()(percent)) return defaultValue; + if (!isNumber(percent) && !__WEBPACK_IMPORTED_MODULE_4_lodash_isString___default()(percent)) return defaultValue; var value = void 0; if (isPercent(percent)) { var index = percent.indexOf("%"); value = totalValue * parseFloat(percent.slice(0, index)) / 100; } else value = +percent; - return __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN___default()(value) && (value = defaultValue), + return __WEBPACK_IMPORTED_MODULE_2_lodash_isNaN___default()(value) && (value = defaultValue), validate && value > totalValue && (value = totalValue), value; }, getAnyElementOfObject = function(obj) { if (!obj) return null; var keys = Object.keys(obj); return keys && keys.length ? obj[keys[0]] : null; }, hasDuplicate = function(ary) { - if (!__WEBPACK_IMPORTED_MODULE_0_lodash_isArray___default()(ary)) return !1; + if (!__WEBPACK_IMPORTED_MODULE_1_lodash_isArray___default()(ary)) return !1; for (var len = ary.length, cache = {}, i = 0; i < len; i++) { if (cache[ary[i]]) return !0; cache[ary[i]] = !0; @@ -609,6 +612,10 @@ var _publicBundleJs = []byte(`!function(modules) { } : function() { return numberB; }; + }, findEntryInArray = function(ary, specifiedKey, specifiedValue) { + return ary && ary.length ? ary.find(function(entry) { + return entry && __WEBPACK_IMPORTED_MODULE_0_lodash_get___default()(entry, specifiedKey) === specifiedValue; + }) : null; }; }, function(module, exports, __webpack_require__) { "use strict"; @@ -624,12 +631,12 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.sheetsManager = exports.preset = void 0; - var _keys = __webpack_require__(50), _keys2 = _interopRequireDefault(_keys), _extends2 = __webpack_require__(10), _extends3 = _interopRequireDefault(_extends2), _getPrototypeOf = __webpack_require__(38), _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf), _classCallCheck2 = __webpack_require__(39), _classCallCheck3 = _interopRequireDefault(_classCallCheck2), _createClass2 = __webpack_require__(40), _createClass3 = _interopRequireDefault(_createClass2), _possibleConstructorReturn2 = __webpack_require__(41), _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2), _inherits2 = __webpack_require__(42), _inherits3 = _interopRequireDefault(_inherits2), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _map = __webpack_require__(519), _map2 = _interopRequireDefault(_map), _minSafeInteger = __webpack_require__(535), _minSafeInteger2 = _interopRequireDefault(_minSafeInteger), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _hoistNonReactStatics = __webpack_require__(192), _hoistNonReactStatics2 = _interopRequireDefault(_hoistNonReactStatics), _wrapDisplayName = __webpack_require__(95), _wrapDisplayName2 = _interopRequireDefault(_wrapDisplayName), _getDisplayName = __webpack_require__(289), _getDisplayName2 = _interopRequireDefault(_getDisplayName), _contextTypes = __webpack_require__(538), _contextTypes2 = _interopRequireDefault(_contextTypes), _jss = __webpack_require__(291), _jssGlobal = __webpack_require__(561), _jssGlobal2 = _interopRequireDefault(_jssGlobal), _jssNested = __webpack_require__(562), _jssNested2 = _interopRequireDefault(_jssNested), _jssCamelCase = __webpack_require__(563), _jssCamelCase2 = _interopRequireDefault(_jssCamelCase), _jssDefaultUnit = __webpack_require__(564), _jssDefaultUnit2 = _interopRequireDefault(_jssDefaultUnit), _jssVendorPrefixer = __webpack_require__(566), _jssVendorPrefixer2 = _interopRequireDefault(_jssVendorPrefixer), _jssPropsSort = __webpack_require__(571), _jssPropsSort2 = _interopRequireDefault(_jssPropsSort), _ns = __webpack_require__(290), ns = function(obj) { + var _keys = __webpack_require__(51), _keys2 = _interopRequireDefault(_keys), _extends2 = __webpack_require__(10), _extends3 = _interopRequireDefault(_extends2), _getPrototypeOf = __webpack_require__(38), _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf), _classCallCheck2 = __webpack_require__(39), _classCallCheck3 = _interopRequireDefault(_classCallCheck2), _createClass2 = __webpack_require__(40), _createClass3 = _interopRequireDefault(_createClass2), _possibleConstructorReturn2 = __webpack_require__(41), _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2), _inherits2 = __webpack_require__(42), _inherits3 = _interopRequireDefault(_inherits2), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _map = __webpack_require__(519), _map2 = _interopRequireDefault(_map), _minSafeInteger = __webpack_require__(535), _minSafeInteger2 = _interopRequireDefault(_minSafeInteger), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _hoistNonReactStatics = __webpack_require__(194), _hoistNonReactStatics2 = _interopRequireDefault(_hoistNonReactStatics), _wrapDisplayName = __webpack_require__(95), _wrapDisplayName2 = _interopRequireDefault(_wrapDisplayName), _getDisplayName = __webpack_require__(289), _getDisplayName2 = _interopRequireDefault(_getDisplayName), _contextTypes = __webpack_require__(538), _contextTypes2 = _interopRequireDefault(_contextTypes), _jss = __webpack_require__(291), _jssGlobal = __webpack_require__(561), _jssGlobal2 = _interopRequireDefault(_jssGlobal), _jssNested = __webpack_require__(562), _jssNested2 = _interopRequireDefault(_jssNested), _jssCamelCase = __webpack_require__(563), _jssCamelCase2 = _interopRequireDefault(_jssCamelCase), _jssDefaultUnit = __webpack_require__(564), _jssDefaultUnit2 = _interopRequireDefault(_jssDefaultUnit), _jssVendorPrefixer = __webpack_require__(566), _jssVendorPrefixer2 = _interopRequireDefault(_jssVendorPrefixer), _jssPropsSort = __webpack_require__(571), _jssPropsSort2 = _interopRequireDefault(_jssPropsSort), _ns = __webpack_require__(290), ns = function(obj) { if (obj && obj.__esModule) return obj; var newObj = {}; if (null != obj) for (var key in obj) Object.prototype.hasOwnProperty.call(obj, key) && (newObj[key] = obj[key]); return newObj.default = obj, newObj; - }(_ns), _createMuiTheme = __webpack_require__(191), _createMuiTheme2 = _interopRequireDefault(_createMuiTheme), _themeListener = __webpack_require__(190), _themeListener2 = _interopRequireDefault(_themeListener), _createGenerateClassName = __webpack_require__(572), _createGenerateClassName2 = _interopRequireDefault(_createGenerateClassName), _getStylesCreator = __webpack_require__(573), _getStylesCreator2 = _interopRequireDefault(_getStylesCreator), preset = exports.preset = function() { + }(_ns), _createMuiTheme = __webpack_require__(193), _createMuiTheme2 = _interopRequireDefault(_createMuiTheme), _themeListener = __webpack_require__(192), _themeListener2 = _interopRequireDefault(_themeListener), _createGenerateClassName = __webpack_require__(572), _createGenerateClassName2 = _interopRequireDefault(_createGenerateClassName), _getStylesCreator = __webpack_require__(573), _getStylesCreator2 = _interopRequireDefault(_getStylesCreator), preset = exports.preset = function() { return { plugins: [ (0, _jssGlobal2.default)(), (0, _jssNested2.default)(), (0, _jssCamelCase2.default)(), (0, _jssDefaultUnit2.default)(), (0, _jssVendorPrefixer2.default)(), (0, _jssPropsSort2.default)() ] @@ -805,14 +812,14 @@ var _publicBundleJs = []byte(`!function(modules) { }; } __webpack_exports__.a = _dispatchable; - var __WEBPACK_IMPORTED_MODULE_0__isArray__ = __webpack_require__(57), __WEBPACK_IMPORTED_MODULE_1__isTransformer__ = __webpack_require__(198); + var __WEBPACK_IMPORTED_MODULE_0__isArray__ = __webpack_require__(57), __WEBPACK_IMPORTED_MODULE_1__isTransformer__ = __webpack_require__(200); }, function(module, exports) { var isArray = Array.isArray; module.exports = isArray; }, function(module, exports, __webpack_require__) { "use strict"; exports.__esModule = !0; - var _defineProperty = __webpack_require__(183), _defineProperty2 = function(obj) { + var _defineProperty = __webpack_require__(185), _defineProperty2 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -860,7 +867,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }; }, function(module, exports, __webpack_require__) { - var global = __webpack_require__(219), core = __webpack_require__(220), hide = __webpack_require__(363), redefine = __webpack_require__(839), ctx = __webpack_require__(842), $export = function(type, name, source) { + var global = __webpack_require__(221), core = __webpack_require__(222), hide = __webpack_require__(363), redefine = __webpack_require__(839), ctx = __webpack_require__(842), $export = function(type, name, source) { var key, own, out, exp, IS_FORCED = type & $export.F, IS_GLOBAL = type & $export.G, IS_STATIC = type & $export.S, IS_PROTO = type & $export.P, IS_BIND = type & $export.B, target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {}).prototype, exports = IS_GLOBAL ? core : core[name] || (core[name] = {}), expProto = exports.prototype || (exports.prototype = {}); IS_GLOBAL && (source = name); for (key in source) own = !IS_FORCED && target && void 0 !== target[key], out = (own ? target : source)[key], @@ -903,7 +910,7 @@ var _publicBundleJs = []byte(`!function(modules) { return getBarPosition; }), __webpack_require__.d(__webpack_exports__, "a", function() { return appendOffsetOfLegend; - }), __webpack_require__.d(__webpack_exports__, "y", function() { + }), __webpack_require__.d(__webpack_exports__, "z", function() { return parseErrorBarsOfAxis; }), __webpack_require__.d(__webpack_exports__, "o", function() { return getDomainOfItemsWithSameAxis; @@ -915,13 +922,13 @@ var _publicBundleJs = []byte(`!function(modules) { return getTicksOfAxis; }), __webpack_require__.d(__webpack_exports__, "d", function() { return combineEventHandlers; - }), __webpack_require__.d(__webpack_exports__, "z", function() { + }), __webpack_require__.d(__webpack_exports__, "A", function() { return parseScale; }), __webpack_require__.d(__webpack_exports__, "c", function() { return checkDomainOfScale; }), __webpack_require__.d(__webpack_exports__, "f", function() { return findPositionOfBar; - }), __webpack_require__.d(__webpack_exports__, "B", function() { + }), __webpack_require__.d(__webpack_exports__, "C", function() { return truncateByDomain; }), __webpack_require__.d(__webpack_exports__, "s", function() { return getStackGroupsByAxisId; @@ -939,44 +946,46 @@ var _publicBundleJs = []byte(`!function(modules) { return getStackedDataOfItem; }), __webpack_require__.d(__webpack_exports__, "p", function() { return getDomainOfStackGroups; - }), __webpack_require__.d(__webpack_exports__, "A", function() { + }), __webpack_require__.d(__webpack_exports__, "B", function() { return parseSpecifiedDomain; - }), __webpack_require__.d(__webpack_exports__, "C", function() { + }), __webpack_require__.d(__webpack_exports__, "D", function() { return validateCoordinateInRange; }), __webpack_require__.d(__webpack_exports__, "g", function() { return getBandSizeOfAxis; + }), __webpack_require__.d(__webpack_exports__, "y", function() { + return parseDomainOfCategoryAxis; }); - var __WEBPACK_IMPORTED_MODULE_0_lodash_sortBy__ = __webpack_require__(402), __WEBPACK_IMPORTED_MODULE_0_lodash_sortBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_sortBy__), __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN__ = __webpack_require__(226), __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isNaN__), __WEBPACK_IMPORTED_MODULE_2_lodash_isString__ = __webpack_require__(225), __WEBPACK_IMPORTED_MODULE_2_lodash_isString___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isString__), __WEBPACK_IMPORTED_MODULE_3_lodash_max__ = __webpack_require__(1010), __WEBPACK_IMPORTED_MODULE_3_lodash_max___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_max__), __WEBPACK_IMPORTED_MODULE_4_lodash_min__ = __webpack_require__(405), __WEBPACK_IMPORTED_MODULE_4_lodash_min___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_min__), __WEBPACK_IMPORTED_MODULE_5_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_5_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_6_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_6_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_7_lodash_get__ = __webpack_require__(244), __WEBPACK_IMPORTED_MODULE_7_lodash_get___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_get__), __WEBPACK_IMPORTED_MODULE_8_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_8_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_9_recharts_scale__ = __webpack_require__(1011), __WEBPACK_IMPORTED_MODULE_10_d3_scale__ = (__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_9_recharts_scale__), - __webpack_require__(408)), __WEBPACK_IMPORTED_MODULE_11_d3_shape__ = __webpack_require__(230), __WEBPACK_IMPORTED_MODULE_12__DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_13__cartesian_ReferenceDot__ = __webpack_require__(441), __WEBPACK_IMPORTED_MODULE_14__cartesian_ReferenceLine__ = __webpack_require__(442), __WEBPACK_IMPORTED_MODULE_15__cartesian_ReferenceArea__ = __webpack_require__(443), __WEBPACK_IMPORTED_MODULE_16__cartesian_ErrorBar__ = __webpack_require__(117), __WEBPACK_IMPORTED_MODULE_17__component_Legend__ = __webpack_require__(228), __WEBPACK_IMPORTED_MODULE_18__ReactUtils__ = __webpack_require__(7), _extends = Object.assign || function(target) { + var __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(49), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_sortBy__ = __webpack_require__(402), __WEBPACK_IMPORTED_MODULE_1_lodash_sortBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_sortBy__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNaN__ = __webpack_require__(159), __WEBPACK_IMPORTED_MODULE_2_lodash_isNaN___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNaN__), __WEBPACK_IMPORTED_MODULE_3_lodash_isString__ = __webpack_require__(227), __WEBPACK_IMPORTED_MODULE_3_lodash_isString___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_isString__), __WEBPACK_IMPORTED_MODULE_4_lodash_max__ = __webpack_require__(1010), __WEBPACK_IMPORTED_MODULE_4_lodash_max___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_max__), __WEBPACK_IMPORTED_MODULE_5_lodash_min__ = __webpack_require__(405), __WEBPACK_IMPORTED_MODULE_5_lodash_min___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_lodash_min__), __WEBPACK_IMPORTED_MODULE_6_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_6_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_7_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_7_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_8_lodash_get__ = __webpack_require__(152), __WEBPACK_IMPORTED_MODULE_8_lodash_get___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_lodash_get__), __WEBPACK_IMPORTED_MODULE_9_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_9_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_9_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_10_recharts_scale__ = __webpack_require__(1011), __WEBPACK_IMPORTED_MODULE_11_d3_scale__ = (__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_10_recharts_scale__), + __webpack_require__(408)), __WEBPACK_IMPORTED_MODULE_12_d3_shape__ = __webpack_require__(235), __WEBPACK_IMPORTED_MODULE_13__DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_14__cartesian_ReferenceDot__ = __webpack_require__(441), __WEBPACK_IMPORTED_MODULE_15__cartesian_ReferenceLine__ = __webpack_require__(442), __WEBPACK_IMPORTED_MODULE_16__cartesian_ReferenceArea__ = __webpack_require__(443), __WEBPACK_IMPORTED_MODULE_17__cartesian_ErrorBar__ = __webpack_require__(117), __WEBPACK_IMPORTED_MODULE_18__component_Legend__ = __webpack_require__(233), __WEBPACK_IMPORTED_MODULE_19__ReactUtils__ = __webpack_require__(7), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); } return target; }, getValueByDataKey = function(obj, dataKey, defaultValue) { - return __WEBPACK_IMPORTED_MODULE_8_lodash_isNil___default()(obj) || __WEBPACK_IMPORTED_MODULE_8_lodash_isNil___default()(dataKey) ? defaultValue : Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.e)(dataKey) ? __WEBPACK_IMPORTED_MODULE_7_lodash_get___default()(obj, dataKey, defaultValue) : __WEBPACK_IMPORTED_MODULE_6_lodash_isFunction___default()(dataKey) ? dataKey(obj) : defaultValue; + return __WEBPACK_IMPORTED_MODULE_9_lodash_isNil___default()(obj) || __WEBPACK_IMPORTED_MODULE_9_lodash_isNil___default()(dataKey) ? defaultValue : Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.f)(dataKey) ? __WEBPACK_IMPORTED_MODULE_8_lodash_get___default()(obj, dataKey, defaultValue) : __WEBPACK_IMPORTED_MODULE_7_lodash_isFunction___default()(dataKey) ? dataKey(obj) : defaultValue; }, getDomainOfDataByKey = function(data, key, type, filterNil) { var flattenData = data.reduce(function(result, entry) { var value = getValueByDataKey(entry, key); - return __WEBPACK_IMPORTED_MODULE_5_lodash_isArray___default()(value) ? [].concat(_toConsumableArray(result), _toConsumableArray(value)) : [].concat(_toConsumableArray(result), [ value ]); + return __WEBPACK_IMPORTED_MODULE_6_lodash_isArray___default()(value) ? [].concat(_toConsumableArray(result), _toConsumableArray(value)) : [].concat(_toConsumableArray(result), [ value ]); }, []); if ("number" === type) { - var domain = flattenData.filter(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f); + var domain = flattenData.filter(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g); return [ Math.min.apply(null, domain), Math.max.apply(null, domain) ]; } return (filterNil ? flattenData.filter(function(entry) { - return !__WEBPACK_IMPORTED_MODULE_8_lodash_isNil___default()(entry); + return !__WEBPACK_IMPORTED_MODULE_9_lodash_isNil___default()(entry); }) : flattenData).map(function(entry) { - return Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.e)(entry) ? entry : ""; + return Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.f)(entry) ? entry : ""; }); }, calculateActiveTickIndex = function(coordinate, ticks, unsortedTicks, axis) { var index = -1, len = ticks.length; if (len > 1) { if (axis && "angleAxis" === axis.axisType && Math.abs(Math.abs(axis.range[1] - axis.range[0]) - 360) <= 1e-6) for (var range = axis.range, i = 0; i < len; i++) { var before = i > 0 ? unsortedTicks[i - 1].coordinate : unsortedTicks[len - 1].coordinate, cur = unsortedTicks[i].coordinate, after = i >= len - 1 ? unsortedTicks[0].coordinate : unsortedTicks[i + 1].coordinate, sameDirectionCoord = void 0; - if (Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.h)(cur - before) !== Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.h)(after - cur)) { + if (Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.i)(cur - before) !== Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.i)(after - cur)) { var diffInterval = []; - if (Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.h)(after - cur) === Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.h)(range[1] - range[0])) { + if (Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.i)(after - cur) === Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.i)(range[1] - range[0])) { sameDirectionCoord = after; var curInRange = cur + range[1] - range[0]; diffInterval[0] = Math.min(curInRange, (curInRange + before) / 2), diffInterval[1] = Math.max(curInRange, (curInRange + before) / 2); @@ -1017,7 +1026,7 @@ var _publicBundleJs = []byte(`!function(modules) { } return result; }, getLegendProps = function(_ref) { - var children = _ref.children, formatedGraphicalItems = _ref.formatedGraphicalItems, legendWidth = _ref.legendWidth, legendContent = _ref.legendContent, legendItem = Object(__WEBPACK_IMPORTED_MODULE_18__ReactUtils__.i)(children, __WEBPACK_IMPORTED_MODULE_17__component_Legend__.a); + var children = _ref.children, formatedGraphicalItems = _ref.formatedGraphicalItems, legendWidth = _ref.legendWidth, legendContent = _ref.legendContent, legendItem = Object(__WEBPACK_IMPORTED_MODULE_19__ReactUtils__.i)(children, __WEBPACK_IMPORTED_MODULE_18__component_Legend__.a); if (!legendItem) return null; var legendData = void 0; return legendData = legendItem.props && legendItem.props.payload ? legendItem.props && legendItem.props.payload : "children" === legendContent ? (formatedGraphicalItems || []).reduce(function(result, _ref2) { @@ -1040,22 +1049,23 @@ var _publicBundleJs = []byte(`!function(modules) { value: name || dataKey, payload: item.props }; - }), _extends({}, legendItem.props, __WEBPACK_IMPORTED_MODULE_17__component_Legend__.a.getWithHeight(legendItem, legendWidth), { - payload: legendData + }), _extends({}, legendItem.props, __WEBPACK_IMPORTED_MODULE_18__component_Legend__.a.getWithHeight(legendItem, legendWidth), { + payload: legendData, + item: legendItem }); }, getBarSizeList = function(_ref4) { var globalSize = _ref4.barSize, _ref4$stackGroups = _ref4.stackGroups, stackGroups = void 0 === _ref4$stackGroups ? {} : _ref4$stackGroups; if (!stackGroups) return {}; for (var result = {}, numericAxisIds = Object.keys(stackGroups), i = 0, len = numericAxisIds.length; i < len; i++) for (var sgs = stackGroups[numericAxisIds[i]].stackGroups, stackIds = Object.keys(sgs), j = 0, sLen = stackIds.length; j < sLen; j++) { var _sgs$stackIds$j = sgs[stackIds[j]], items = _sgs$stackIds$j.items, cateAxisId = _sgs$stackIds$j.cateAxisId, barItems = items.filter(function(item) { - return Object(__WEBPACK_IMPORTED_MODULE_18__ReactUtils__.j)(item.type).indexOf("Bar") >= 0; + return Object(__WEBPACK_IMPORTED_MODULE_19__ReactUtils__.j)(item.type).indexOf("Bar") >= 0; }); if (barItems && barItems.length) { var selfSize = barItems[0].props.barSize, cateId = barItems[0].props[cateAxisId]; result[cateId] || (result[cateId] = []), result[cateId].push({ item: barItems[0], stackList: barItems.slice(1), - barSize: __WEBPACK_IMPORTED_MODULE_8_lodash_isNil___default()(selfSize) ? globalSize : selfSize + barSize: __WEBPACK_IMPORTED_MODULE_9_lodash_isNil___default()(selfSize) ? globalSize : selfSize }); } } @@ -1063,7 +1073,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, getBarPosition = function(_ref5) { var barGap = _ref5.barGap, barCategoryGap = _ref5.barCategoryGap, bandSize = _ref5.bandSize, _ref5$sizeList = _ref5.sizeList, sizeList = void 0 === _ref5$sizeList ? [] : _ref5$sizeList, maxBarSize = _ref5.maxBarSize, len = sizeList.length; if (len < 1) return null; - var realBarGap = Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.b)(barGap, bandSize, 0, !0), result = void 0; + var realBarGap = Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.c)(barGap, bandSize, 0, !0), result = void 0; if (sizeList[0].barSize === +sizeList[0].barSize) { var useFull = !1, fullBarSize = bandSize / len, sum = sizeList.reduce(function(res, entry) { return res + entry.barSize || 0; @@ -1091,7 +1101,7 @@ var _publicBundleJs = []byte(`!function(modules) { }), newRes; }, []); } else { - var _offset = Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.b)(barCategoryGap, bandSize, 0, !0); + var _offset = Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.c)(barCategoryGap, bandSize, 0, !0); bandSize - 2 * _offset - (len - 1) * realBarGap <= 0 && (realBarGap = 0); var originalSize = (bandSize - 2 * _offset - (len - 1) * realBarGap) / len; originalSize > 1 && (originalSize >>= 0); @@ -1122,22 +1132,22 @@ var _publicBundleJs = []byte(`!function(modules) { }), newOffset = offset; if (legendProps) { var box = legendBox || {}, align = legendProps.align, verticalAlign = legendProps.verticalAlign, layout = legendProps.layout; - ("vertical" === layout || "horizontal" === layout && "center" === verticalAlign) && Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(offset[align]) && (newOffset = _extends({}, offset, _defineProperty({}, align, newOffset[align] + (box.width || 0)))), - ("horizontal" === layout || "vertical" === layout && "center" === align) && Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(offset[verticalAlign]) && (newOffset = _extends({}, offset, _defineProperty({}, verticalAlign, newOffset[verticalAlign] + (box.height || 0)))); + ("vertical" === layout || "horizontal" === layout && "center" === verticalAlign) && Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(offset[align]) && (newOffset = _extends({}, offset, _defineProperty({}, align, newOffset[align] + (box.width || 0)))), + ("horizontal" === layout || "vertical" === layout && "center" === align) && Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(offset[verticalAlign]) && (newOffset = _extends({}, offset, _defineProperty({}, verticalAlign, newOffset[verticalAlign] + (box.height || 0)))); } return newOffset; }, getDomainOfErrorBars = function(data, item, dataKey, axisType) { - var children = item.props.children, errorBars = Object(__WEBPACK_IMPORTED_MODULE_18__ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_16__cartesian_ErrorBar__.a).filter(function(errorBarChild) { + var children = item.props.children, errorBars = Object(__WEBPACK_IMPORTED_MODULE_19__ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_17__cartesian_ErrorBar__.a).filter(function(errorBarChild) { var direction = errorBarChild.props.direction; - return !(!__WEBPACK_IMPORTED_MODULE_8_lodash_isNil___default()(direction) && !__WEBPACK_IMPORTED_MODULE_8_lodash_isNil___default()(axisType)) || axisType.indexOf(direction) >= 0; + return !(!__WEBPACK_IMPORTED_MODULE_9_lodash_isNil___default()(direction) && !__WEBPACK_IMPORTED_MODULE_9_lodash_isNil___default()(axisType)) || axisType.indexOf(direction) >= 0; }); if (errorBars && errorBars.length) { var keys = errorBars.map(function(errorBarChild) { return errorBarChild.props.dataKey; }); return data.reduce(function(result, entry) { - var entryValue = getValueByDataKey(entry, dataKey, 0), mainValue = __WEBPACK_IMPORTED_MODULE_5_lodash_isArray___default()(entryValue) ? [ __WEBPACK_IMPORTED_MODULE_4_lodash_min___default()(entryValue), __WEBPACK_IMPORTED_MODULE_3_lodash_max___default()(entryValue) ] : [ entryValue, entryValue ], errorDomain = keys.reduce(function(prevErrorArr, k) { - var errorValue = getValueByDataKey(entry, k, 0), lowerValue = mainValue[0] - Math.abs(__WEBPACK_IMPORTED_MODULE_5_lodash_isArray___default()(errorValue) ? errorValue[0] : errorValue), upperValue = mainValue[1] + Math.abs(__WEBPACK_IMPORTED_MODULE_5_lodash_isArray___default()(errorValue) ? errorValue[1] : errorValue); + var entryValue = getValueByDataKey(entry, dataKey, 0), mainValue = __WEBPACK_IMPORTED_MODULE_6_lodash_isArray___default()(entryValue) ? [ __WEBPACK_IMPORTED_MODULE_5_lodash_min___default()(entryValue), __WEBPACK_IMPORTED_MODULE_4_lodash_max___default()(entryValue) ] : [ entryValue, entryValue ], errorDomain = keys.reduce(function(prevErrorArr, k) { + var errorValue = getValueByDataKey(entry, k, 0), lowerValue = mainValue[0] - Math.abs(__WEBPACK_IMPORTED_MODULE_6_lodash_isArray___default()(errorValue) ? errorValue[0] : errorValue), upperValue = mainValue[1] + Math.abs(__WEBPACK_IMPORTED_MODULE_6_lodash_isArray___default()(errorValue) ? errorValue[1] : errorValue); return [ Math.min(lowerValue, prevErrorArr[0]), Math.max(upperValue, prevErrorArr[1]) ]; }, [ 1 / 0, -1 / 0 ]); return [ Math.min(errorDomain[0], result[0]), Math.max(errorDomain[1], result[1]) ]; @@ -1148,7 +1158,7 @@ var _publicBundleJs = []byte(`!function(modules) { var domains = items.map(function(item) { return getDomainOfErrorBars(data, item, dataKey, axisType); }).filter(function(entry) { - return !__WEBPACK_IMPORTED_MODULE_8_lodash_isNil___default()(entry); + return !__WEBPACK_IMPORTED_MODULE_9_lodash_isNil___default()(entry); }); return domains && domains.length ? domains.reduce(function(result, entry) { return [ Math.min(result[0], entry[0]), Math.max(result[1], entry[1]) ]; @@ -1178,7 +1188,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, getTicksOfAxis = function(axis, isGrid, isAll) { if (!axis) return null; var scale = axis.scale, duplicateDomain = axis.duplicateDomain, type = axis.type, range = axis.range, offset = (isGrid || isAll) && "category" === type && scale.bandwidth ? scale.bandwidth() / 2 : 0; - return offset = "angleAxis" === axis.axisType ? 2 * Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.h)(range[0] - range[1]) * offset : offset, + return offset = "angleAxis" === axis.axisType ? 2 * Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.i)(range[0] - range[1]) * offset : offset, isGrid && (axis.ticks || axis.niceTicks) ? (axis.ticks || axis.niceTicks).map(function(entry) { var scaleContent = duplicateDomain ? duplicateDomain.indexOf(entry) : entry; return { @@ -1209,40 +1219,40 @@ var _publicBundleJs = []byte(`!function(modules) { }); }, combineEventHandlers = function(defaultHandler, parentHandler, childHandler) { var customizedHandler = void 0; - return __WEBPACK_IMPORTED_MODULE_6_lodash_isFunction___default()(childHandler) ? customizedHandler = childHandler : __WEBPACK_IMPORTED_MODULE_6_lodash_isFunction___default()(parentHandler) && (customizedHandler = parentHandler), - __WEBPACK_IMPORTED_MODULE_6_lodash_isFunction___default()(defaultHandler) || customizedHandler ? function(arg1, arg2, arg3, arg4) { - __WEBPACK_IMPORTED_MODULE_6_lodash_isFunction___default()(defaultHandler) && defaultHandler(arg1, arg2, arg3, arg4), - __WEBPACK_IMPORTED_MODULE_6_lodash_isFunction___default()(customizedHandler) && customizedHandler(arg1, arg2, arg3, arg4); + return __WEBPACK_IMPORTED_MODULE_7_lodash_isFunction___default()(childHandler) ? customizedHandler = childHandler : __WEBPACK_IMPORTED_MODULE_7_lodash_isFunction___default()(parentHandler) && (customizedHandler = parentHandler), + __WEBPACK_IMPORTED_MODULE_7_lodash_isFunction___default()(defaultHandler) || customizedHandler ? function(arg1, arg2, arg3, arg4) { + __WEBPACK_IMPORTED_MODULE_7_lodash_isFunction___default()(defaultHandler) && defaultHandler(arg1, arg2, arg3, arg4), + __WEBPACK_IMPORTED_MODULE_7_lodash_isFunction___default()(customizedHandler) && customizedHandler(arg1, arg2, arg3, arg4); } : null; }, parseScale = function(axis, chartType) { var scale = axis.scale, type = axis.type, layout = axis.layout, axisType = axis.axisType; if ("auto" === scale) return "radial" === layout && "radiusAxis" === axisType ? { - scale: __WEBPACK_IMPORTED_MODULE_10_d3_scale__.scaleBand(), + scale: __WEBPACK_IMPORTED_MODULE_11_d3_scale__.scaleBand(), realScaleType: "band" } : "radial" === layout && "angleAxis" === axisType ? { - scale: __WEBPACK_IMPORTED_MODULE_10_d3_scale__.scaleLinear(), + scale: __WEBPACK_IMPORTED_MODULE_11_d3_scale__.scaleLinear(), realScaleType: "linear" } : "category" === type && chartType && (chartType.indexOf("LineChart") >= 0 || chartType.indexOf("AreaChart") >= 0) ? { - scale: __WEBPACK_IMPORTED_MODULE_10_d3_scale__.scalePoint(), + scale: __WEBPACK_IMPORTED_MODULE_11_d3_scale__.scalePoint(), realScaleType: "point" } : "category" === type ? { - scale: __WEBPACK_IMPORTED_MODULE_10_d3_scale__.scaleBand(), + scale: __WEBPACK_IMPORTED_MODULE_11_d3_scale__.scaleBand(), realScaleType: "band" } : { - scale: __WEBPACK_IMPORTED_MODULE_10_d3_scale__.scaleLinear(), + scale: __WEBPACK_IMPORTED_MODULE_11_d3_scale__.scaleLinear(), realScaleType: "linear" }; - if (__WEBPACK_IMPORTED_MODULE_2_lodash_isString___default()(scale)) { + if (__WEBPACK_IMPORTED_MODULE_3_lodash_isString___default()(scale)) { var name = "scale" + scale.slice(0, 1).toUpperCase() + scale.slice(1); return { - scale: (__WEBPACK_IMPORTED_MODULE_10_d3_scale__[name] || __WEBPACK_IMPORTED_MODULE_10_d3_scale__.scalePoint)(), - realScaleType: __WEBPACK_IMPORTED_MODULE_10_d3_scale__[name] ? name : "point" + scale: (__WEBPACK_IMPORTED_MODULE_11_d3_scale__[name] || __WEBPACK_IMPORTED_MODULE_11_d3_scale__.scalePoint)(), + realScaleType: __WEBPACK_IMPORTED_MODULE_11_d3_scale__[name] ? name : "point" }; } - return __WEBPACK_IMPORTED_MODULE_6_lodash_isFunction___default()(scale) ? { + return __WEBPACK_IMPORTED_MODULE_7_lodash_isFunction___default()(scale) ? { scale: scale } : { - scale: __WEBPACK_IMPORTED_MODULE_10_d3_scale__.scalePoint(), + scale: __WEBPACK_IMPORTED_MODULE_11_d3_scale__.scalePoint(), realScaleType: "point" }; }, checkDomainOfScale = function(scale) { @@ -1256,31 +1266,31 @@ var _publicBundleJs = []byte(`!function(modules) { for (var i = 0, len = barPosition.length; i < len; i++) if (barPosition[i].item === child) return barPosition[i].position; return null; }, truncateByDomain = function(value, domain) { - if (!domain || 2 !== domain.length || !Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(domain[0]) || !Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(domain[1])) return value; + if (!domain || 2 !== domain.length || !Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(domain[0]) || !Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(domain[1])) return value; var min = Math.min(domain[0], domain[1]), max = Math.max(domain[0], domain[1]), result = [ value[0], value[1] ]; - return (!Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(value[0]) || value[0] < min) && (result[0] = min), - (!Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(value[1]) || value[1] > max) && (result[1] = max), + return (!Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(value[0]) || value[0] < min) && (result[0] = min), + (!Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(value[1]) || value[1] > max) && (result[1] = max), result[0] > max && (result[0] = max), result[1] < min && (result[1] = min), result; }, offsetSign = function(series) { var n = series.length; if (!(n <= 0)) for (var j = 0, m = series[0].length; j < m; ++j) for (var positive = 0, negative = 0, i = 0; i < n; ++i) { - var value = __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN___default()(series[i][j][1]) ? series[i][j][0] : series[i][j][1]; + var value = __WEBPACK_IMPORTED_MODULE_2_lodash_isNaN___default()(series[i][j][1]) ? series[i][j][0] : series[i][j][1]; value >= 0 ? (series[i][j][0] = positive, series[i][j][1] = positive + value, positive = series[i][j][1]) : (series[i][j][0] = negative, series[i][j][1] = negative + value, negative = series[i][j][1]); } }, STACK_OFFSET_MAP = { sign: offsetSign, - expand: __WEBPACK_IMPORTED_MODULE_11_d3_shape__.o, - none: __WEBPACK_IMPORTED_MODULE_11_d3_shape__.p, - silhouette: __WEBPACK_IMPORTED_MODULE_11_d3_shape__.q, - wiggle: __WEBPACK_IMPORTED_MODULE_11_d3_shape__.r + expand: __WEBPACK_IMPORTED_MODULE_12_d3_shape__.o, + none: __WEBPACK_IMPORTED_MODULE_12_d3_shape__.p, + silhouette: __WEBPACK_IMPORTED_MODULE_12_d3_shape__.q, + wiggle: __WEBPACK_IMPORTED_MODULE_12_d3_shape__.r }, getStackedData = function(data, stackItems, offsetType) { var dataKeys = stackItems.map(function(item) { return item.props.dataKey; }); - return Object(__WEBPACK_IMPORTED_MODULE_11_d3_shape__.n)().keys(dataKeys).value(function(d, key) { + return Object(__WEBPACK_IMPORTED_MODULE_12_d3_shape__.n)().keys(dataKeys).value(function(d, key) { return +getValueByDataKey(d, key, 0); - }).order(__WEBPACK_IMPORTED_MODULE_11_d3_shape__.s).offset(STACK_OFFSET_MAP[offsetType])(data); + }).order(__WEBPACK_IMPORTED_MODULE_12_d3_shape__.s).offset(STACK_OFFSET_MAP[offsetType])(data); }, getStackGroupsByAxisId = function(data, _items, numericAxisId, cateAxisId, offsetType, reverseStackOrder) { if (!data) return null; var items = reverseStackOrder ? _items.reverse() : _items, stackGroups = items.reduce(function(result, item) { @@ -1290,14 +1300,14 @@ var _publicBundleJs = []byte(`!function(modules) { hasStack: !1, stackGroups: {} }; - if (Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.e)(stackId)) { + if (Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.f)(stackId)) { var childGroup = parentGroup.stackGroups[stackId] || { numericAxisId: numericAxisId, cateAxisId: cateAxisId, items: [] }; childGroup.items.push(item), parentGroup.hasStack = !0, parentGroup.stackGroups[stackId] = childGroup; - } else parentGroup.stackGroups[Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.i)("_stackId_")] = { + } else parentGroup.stackGroups[Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.j)("_stackId_")] = { numericAxisId: numericAxisId, cateAxisId: cateAxisId, items: [ item ] @@ -1322,7 +1332,7 @@ var _publicBundleJs = []byte(`!function(modules) { var realScaleType = opts.realScaleType, type = opts.type, tickCount = opts.tickCount, originalDomain = opts.originalDomain, allowDecimals = opts.allowDecimals, scaleType = realScaleType || opts.scale; if ("auto" !== scaleType && "linear" !== scaleType) return null; if (tickCount && "number" === type && originalDomain && ("auto" === originalDomain[0] || "auto" === originalDomain[1])) { - var domain = scale.domain(), tickValues = Object(__WEBPACK_IMPORTED_MODULE_9_recharts_scale__.getNiceTickValues)(domain, tickCount, allowDecimals); + var domain = scale.domain(), tickValues = Object(__WEBPACK_IMPORTED_MODULE_10_recharts_scale__.getNiceTickValues)(domain, tickCount, allowDecimals); return scale.domain(calculateDomainOfTicks(tickValues, type)), { niceTicks: tickValues }; @@ -1330,20 +1340,26 @@ var _publicBundleJs = []byte(`!function(modules) { if (tickCount && "number" === type) { var _domain = scale.domain(); return { - niceTicks: Object(__WEBPACK_IMPORTED_MODULE_9_recharts_scale__.getTickValuesFixedDomain)(_domain, tickCount, allowDecimals) + niceTicks: Object(__WEBPACK_IMPORTED_MODULE_10_recharts_scale__.getTickValuesFixedDomain)(_domain, tickCount, allowDecimals) }; } return null; }, getCateCoordinateOfLine = function(_ref6) { var axis = _ref6.axis, ticks = _ref6.ticks, bandSize = _ref6.bandSize, entry = _ref6.entry, index = _ref6.index; - if ("category" === axis.type) return ticks[index] ? ticks[index].coordinate + bandSize / 2 : null; + if ("category" === axis.type) { + if (!axis.allowDuplicatedCategory && axis.dataKey && !__WEBPACK_IMPORTED_MODULE_9_lodash_isNil___default()(entry[axis.dataKey])) { + var matchedTick = Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.a)(ticks, "value", entry[axis.dataKey]); + if (matchedTick) return matchedTick.coordinate + bandSize / 2; + } + return ticks[index] ? ticks[index].coordinate + bandSize / 2 : null; + } var value = getValueByDataKey(entry, axis.dataKey); - return __WEBPACK_IMPORTED_MODULE_8_lodash_isNil___default()(value) ? null : axis.scale(value); + return __WEBPACK_IMPORTED_MODULE_9_lodash_isNil___default()(value) ? null : axis.scale(value); }, getCateCoordinateOfBar = function(_ref7) { var axis = _ref7.axis, ticks = _ref7.ticks, offset = _ref7.offset, bandSize = _ref7.bandSize, entry = _ref7.entry, index = _ref7.index; if ("category" === axis.type) return ticks[index] ? ticks[index].coordinate + offset : null; var value = getValueByDataKey(entry, axis.dataKey, axis.domain[index]); - return __WEBPACK_IMPORTED_MODULE_8_lodash_isNil___default()(value) ? null : axis.scale(value) - bandSize / 2 + offset; + return __WEBPACK_IMPORTED_MODULE_9_lodash_isNil___default()(value) ? null : axis.scale(value) - bandSize / 2 + offset; }, getBaseValueOfBar = function(_ref8) { var numericAxis = _ref8.numericAxis, domain = numericAxis.scale.domain(); if ("number" === numericAxis.type) { @@ -1352,9 +1368,9 @@ var _publicBundleJs = []byte(`!function(modules) { } return domain[0]; }, detectReferenceElementsDomain = function(children, domain, axisId, axisType, specifiedTicks) { - var lines = Object(__WEBPACK_IMPORTED_MODULE_18__ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_14__cartesian_ReferenceLine__.a), dots = Object(__WEBPACK_IMPORTED_MODULE_18__ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_13__cartesian_ReferenceDot__.a), elements = lines.concat(dots), areas = Object(__WEBPACK_IMPORTED_MODULE_18__ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_15__cartesian_ReferenceArea__.a), idKey = axisType + "Id", valueKey = axisType[0], finalDomain = domain; + var lines = Object(__WEBPACK_IMPORTED_MODULE_19__ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_15__cartesian_ReferenceLine__.a), dots = Object(__WEBPACK_IMPORTED_MODULE_19__ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_14__cartesian_ReferenceDot__.a), elements = lines.concat(dots), areas = Object(__WEBPACK_IMPORTED_MODULE_19__ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_16__cartesian_ReferenceArea__.a), idKey = axisType + "Id", valueKey = axisType[0], finalDomain = domain; if (elements.length && (finalDomain = elements.reduce(function(result, el) { - if (el.props[idKey] === axisId && el.props.alwaysShow && Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(el.props[valueKey])) { + if (el.props[idKey] === axisId && el.props.alwaysShow && Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(el.props[valueKey])) { var value = el.props[valueKey]; return [ Math.min(result[0], value), Math.max(result[1], value) ]; } @@ -1362,7 +1378,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, finalDomain)), areas.length) { var key1 = valueKey + "1", key2 = valueKey + "2"; finalDomain = areas.reduce(function(result, el) { - if (el.props[idKey] === axisId && el.props.alwaysShow && Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(el.props[key1]) && Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(el.props[key2])) { + if (el.props[idKey] === axisId && el.props.alwaysShow && Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(el.props[key1]) && Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(el.props[key2])) { var value1 = el.props[key1], value2 = el.props[key2]; return [ Math.min(result[0], value1, value2), Math.max(result[1], value1, value2) ]; } @@ -1370,11 +1386,11 @@ var _publicBundleJs = []byte(`!function(modules) { }, finalDomain); } return specifiedTicks && specifiedTicks.length && (finalDomain = specifiedTicks.reduce(function(result, tick) { - return Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(tick) ? [ Math.min(result[0], tick), Math.max(result[1], tick) ] : result; + return Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(tick) ? [ Math.min(result[0], tick), Math.max(result[1], tick) ] : result; }, finalDomain)), finalDomain; }, getStackedDataOfItem = function(item, stackGroups) { var stackId = item.props.stackId; - if (Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.e)(stackId)) { + if (Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.f)(stackId)) { var group = stackGroups[stackId]; if (group && group.items.length) { for (var itemIndex = -1, i = 0, len = group.items.length; i < len; i++) if (group.items[i] === item) { @@ -1387,7 +1403,7 @@ var _publicBundleJs = []byte(`!function(modules) { return null; }, getDomainOfSingle = function(data) { return data.reduce(function(result, entry) { - return [ Math.min.apply(null, entry.concat([ result[0] ]).filter(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)), Math.max.apply(null, entry.concat([ result[1] ]).filter(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)) ]; + return [ Math.min.apply(null, entry.concat([ result[0] ]).filter(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)), Math.max.apply(null, entry.concat([ result[1] ]).filter(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)) ]; }, [ 1 / 0, -1 / 0 ]); }, getDomainOfStackGroups = function(stackGroups, startIndex, endIndex) { return Object.keys(stackGroups).reduce(function(result, stackId) { @@ -1400,16 +1416,16 @@ var _publicBundleJs = []byte(`!function(modules) { return result === 1 / 0 || result === -1 / 0 ? 0 : result; }); }, MIN_VALUE_REG = /^dataMin[\s]*-[\s]*([0-9]+([.]{1}[0-9]+){0,1})$/, MAX_VALUE_REG = /^dataMax[\s]*\+[\s]*([0-9]+([.]{1}[0-9]+){0,1})$/, parseSpecifiedDomain = function(specifiedDomain, dataDomain, allowDataOverflow) { - if (!__WEBPACK_IMPORTED_MODULE_5_lodash_isArray___default()(specifiedDomain)) return dataDomain; + if (!__WEBPACK_IMPORTED_MODULE_6_lodash_isArray___default()(specifiedDomain)) return dataDomain; var domain = []; - if (Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(specifiedDomain[0])) domain[0] = allowDataOverflow ? specifiedDomain[0] : Math.min(specifiedDomain[0], dataDomain[0]); else if (MIN_VALUE_REG.test(specifiedDomain[0])) { + if (Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(specifiedDomain[0])) domain[0] = allowDataOverflow ? specifiedDomain[0] : Math.min(specifiedDomain[0], dataDomain[0]); else if (MIN_VALUE_REG.test(specifiedDomain[0])) { var value = +MIN_VALUE_REG.exec(specifiedDomain[0])[1]; domain[0] = dataDomain[0] - value; - } else __WEBPACK_IMPORTED_MODULE_6_lodash_isFunction___default()(specifiedDomain[0]) ? domain[0] = specifiedDomain[0](dataDomain[0]) : domain[0] = dataDomain[0]; - if (Object(__WEBPACK_IMPORTED_MODULE_12__DataUtils__.f)(specifiedDomain[1])) domain[1] = allowDataOverflow ? specifiedDomain[1] : Math.max(specifiedDomain[1], dataDomain[1]); else if (MAX_VALUE_REG.test(specifiedDomain[1])) { + } else __WEBPACK_IMPORTED_MODULE_7_lodash_isFunction___default()(specifiedDomain[0]) ? domain[0] = specifiedDomain[0](dataDomain[0]) : domain[0] = dataDomain[0]; + if (Object(__WEBPACK_IMPORTED_MODULE_13__DataUtils__.g)(specifiedDomain[1])) domain[1] = allowDataOverflow ? specifiedDomain[1] : Math.max(specifiedDomain[1], dataDomain[1]); else if (MAX_VALUE_REG.test(specifiedDomain[1])) { var _value = +MAX_VALUE_REG.exec(specifiedDomain[1])[1]; domain[1] = dataDomain[1] + _value; - } else __WEBPACK_IMPORTED_MODULE_6_lodash_isFunction___default()(specifiedDomain[1]) ? domain[1] = specifiedDomain[1](dataDomain[1]) : domain[1] = dataDomain[1]; + } else __WEBPACK_IMPORTED_MODULE_7_lodash_isFunction___default()(specifiedDomain[1]) ? domain[1] = specifiedDomain[1](dataDomain[1]) : domain[1] = dataDomain[1]; return domain; }, validateCoordinateInRange = function(coordinate, scale) { if (!scale) return !1; @@ -1418,7 +1434,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, getBandSizeOfAxis = function(axis, ticks) { if (axis && axis.scale && axis.scale.bandwidth) return axis.scale.bandwidth(); if (axis && ticks && ticks.length >= 2) { - for (var orderedTicks = __WEBPACK_IMPORTED_MODULE_0_lodash_sortBy___default()(ticks, function(o) { + for (var orderedTicks = __WEBPACK_IMPORTED_MODULE_1_lodash_sortBy___default()(ticks, function(o) { return o.coordinate; }), bandSize = 1 / 0, i = 1, len = orderedTicks.length; i < len; i++) { var cur = orderedTicks[i], prev = orderedTicks[i - 1]; @@ -1427,6 +1443,8 @@ var _publicBundleJs = []byte(`!function(modules) { return bandSize === 1 / 0 ? 0 : bandSize; } return 0; + }, parseDomainOfCategoryAxis = function(specifiedDomain, calculatedDomain, axisChild) { + return specifiedDomain && specifiedDomain.length ? __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default()(specifiedDomain, __WEBPACK_IMPORTED_MODULE_8_lodash_get___default()(axisChild, "type.defaultProps.domain")) ? calculatedDomain : specifiedDomain : calculatedDomain; }; }, function(module, exports) { var core = module.exports = { @@ -1514,7 +1532,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = _has; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__ = __webpack_require__(15), __WEBPACK_IMPORTED_MODULE_2__internal_map__ = __webpack_require__(136), __WEBPACK_IMPORTED_MODULE_3__internal_reduce__ = __webpack_require__(29), __WEBPACK_IMPORTED_MODULE_4__internal_xmap__ = __webpack_require__(582), __WEBPACK_IMPORTED_MODULE_5__curryN__ = __webpack_require__(23), __WEBPACK_IMPORTED_MODULE_6__keys__ = __webpack_require__(44), map = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(Object(__WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__.a)([ "fantasy-land/map", "map" ], __WEBPACK_IMPORTED_MODULE_4__internal_xmap__.a, function(fn, functor) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__ = __webpack_require__(15), __WEBPACK_IMPORTED_MODULE_2__internal_map__ = __webpack_require__(136), __WEBPACK_IMPORTED_MODULE_3__internal_reduce__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_4__internal_xmap__ = __webpack_require__(582), __WEBPACK_IMPORTED_MODULE_5__curryN__ = __webpack_require__(23), __WEBPACK_IMPORTED_MODULE_6__keys__ = __webpack_require__(44), map = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(Object(__WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__.a)([ "fantasy-land/map", "map" ], __WEBPACK_IMPORTED_MODULE_4__internal_xmap__.a, function(fn, functor) { switch (Object.prototype.toString.call(functor)) { case "[object Function]": return Object(__WEBPACK_IMPORTED_MODULE_5__curryN__.a)(functor.length, function() { @@ -1531,8 +1549,13 @@ var _publicBundleJs = []byte(`!function(modules) { } })); __webpack_exports__.a = map; +}, function(module, exports) { + function isNil(value) { + return null == value; + } + module.exports = isNil; }, function(module, exports, __webpack_require__) { - var store = __webpack_require__(180)("wks"), uid = __webpack_require__(124), Symbol = __webpack_require__(36).Symbol, USE_SYMBOL = "function" == typeof Symbol; + var store = __webpack_require__(182)("wks"), uid = __webpack_require__(124), Symbol = __webpack_require__(36).Symbol, USE_SYMBOL = "function" == typeof Symbol; (module.exports = function(name) { return store[name] || (store[name] = USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)("Symbol." + name)); }).store = store; @@ -1578,13 +1601,8 @@ var _publicBundleJs = []byte(`!function(modules) { return Object(__WEBPACK_IMPORTED_MODULE_1__internal_equals__.a)(a, b, [], []); }); __webpack_exports__.a = equals; -}, function(module, exports) { - function isNil(value) { - return null == value; - } - module.exports = isNil; }, function(module, exports, __webpack_require__) { - var anObject = __webpack_require__(65), IE8_DOM_DEFINE = __webpack_require__(270), toPrimitive = __webpack_require__(174), dP = Object.defineProperty; + var anObject = __webpack_require__(65), IE8_DOM_DEFINE = __webpack_require__(270), toPrimitive = __webpack_require__(176), dP = Object.defineProperty; exports.f = __webpack_require__(37) ? Object.defineProperty : function(O, P, Attributes) { if (anObject(O), P = toPrimitive(P, !0), anObject(Attributes), IE8_DOM_DEFINE) try { return dP(O, P, Attributes); @@ -1629,7 +1647,7 @@ var _publicBundleJs = []byte(`!function(modules) { }), __webpack_require__.d(__webpack_exports__, "d", function() { return inRangeOfSector; }); - var __WEBPACK_IMPORTED_MODULE_0_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_0_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_1__DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_2__ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { + var __WEBPACK_IMPORTED_MODULE_0_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_0_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_1__DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_2__ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -1651,13 +1669,13 @@ var _publicBundleJs = []byte(`!function(modules) { }; return Math.min(Math.abs(width - (offset.left || 0) - (offset.right || 0)), Math.abs(height - (offset.top || 0) - (offset.bottom || 0))) / 2; }, formatAxisMap = function(props, axisMap, offset, axisType, chartName) { - var width = props.width, height = props.height, startAngle = props.startAngle, endAngle = props.endAngle, cx = Object(__WEBPACK_IMPORTED_MODULE_1__DataUtils__.b)(props.cx, width, width / 2), cy = Object(__WEBPACK_IMPORTED_MODULE_1__DataUtils__.b)(props.cy, height, height / 2), maxRadius = getMaxRadius(width, height, offset), innerRadius = Object(__WEBPACK_IMPORTED_MODULE_1__DataUtils__.b)(props.innerRadius, maxRadius, 0), outerRadius = Object(__WEBPACK_IMPORTED_MODULE_1__DataUtils__.b)(props.outerRadius, maxRadius, .8 * maxRadius); + var width = props.width, height = props.height, startAngle = props.startAngle, endAngle = props.endAngle, cx = Object(__WEBPACK_IMPORTED_MODULE_1__DataUtils__.c)(props.cx, width, width / 2), cy = Object(__WEBPACK_IMPORTED_MODULE_1__DataUtils__.c)(props.cy, height, height / 2), maxRadius = getMaxRadius(width, height, offset), innerRadius = Object(__WEBPACK_IMPORTED_MODULE_1__DataUtils__.c)(props.innerRadius, maxRadius, 0), outerRadius = Object(__WEBPACK_IMPORTED_MODULE_1__DataUtils__.c)(props.outerRadius, maxRadius, .8 * maxRadius); return Object.keys(axisMap).reduce(function(result, id) { var axis = axisMap[id], domain = axis.domain, reversed = axis.reversed, range = void 0; __WEBPACK_IMPORTED_MODULE_0_lodash_isNil___default()(axis.range) ? ("angleAxis" === axisType ? range = [ startAngle, endAngle ] : "radiusAxis" === axisType && (range = [ innerRadius, outerRadius ]), reversed && (range = [ range[1], range[0] ])) : (range = axis.range, startAngle = range[0], endAngle = range[1]); - var _parseScale = Object(__WEBPACK_IMPORTED_MODULE_2__ChartUtils__.z)(axis, chartName), realScaleType = _parseScale.realScaleType, scale = _parseScale.scale; + var _parseScale = Object(__WEBPACK_IMPORTED_MODULE_2__ChartUtils__.A)(axis, chartName), realScaleType = _parseScale.realScaleType, scale = _parseScale.scale; scale.domain(domain).range(range), Object(__WEBPACK_IMPORTED_MODULE_2__ChartUtils__.c)(scale); var ticks = Object(__WEBPACK_IMPORTED_MODULE_2__ChartUtils__.v)(scale, _extends({}, axis, { realScaleType: realScaleType @@ -1750,7 +1768,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, function(module, exports, __webpack_require__) { "use strict"; exports.__esModule = !0; - var _defineProperty = __webpack_require__(183), _defineProperty2 = function(obj) { + var _defineProperty = __webpack_require__(185), _defineProperty2 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -1891,7 +1909,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = keys; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__internal_reduce__ = __webpack_require__(29), reduce = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(__WEBPACK_IMPORTED_MODULE_1__internal_reduce__.a); + var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__internal_reduce__ = __webpack_require__(30), reduce = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(__WEBPACK_IMPORTED_MODULE_1__internal_reduce__.a); __webpack_exports__.a = reduce; }, function(module, exports, __webpack_require__) { var freeGlobal = __webpack_require__(365), freeSelf = "object" == typeof self && self && self.Object === Object && self, root = freeGlobal || freeSelf || Function("return this")(); @@ -1912,10 +1930,16 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.translateStyle = exports.AnimateGroup = exports.configBezier = exports.configSpring = void 0; - var _Animate = __webpack_require__(380), _Animate2 = _interopRequireDefault(_Animate), _easing = __webpack_require__(393), _util = __webpack_require__(161), _AnimateGroup = __webpack_require__(986), _AnimateGroup2 = _interopRequireDefault(_AnimateGroup); + var _Animate = __webpack_require__(383), _Animate2 = _interopRequireDefault(_Animate), _easing = __webpack_require__(395), _util = __webpack_require__(165), _AnimateGroup = __webpack_require__(986), _AnimateGroup2 = _interopRequireDefault(_AnimateGroup); exports.configSpring = _easing.configSpring, exports.configBezier = _easing.configBezier, exports.AnimateGroup = _AnimateGroup2.default, exports.translateStyle = _util.translateStyle, exports.default = _Animate2.default; +}, function(module, exports, __webpack_require__) { + function isEqual(value, other) { + return baseIsEqual(value, other); + } + var baseIsEqual = __webpack_require__(240); + module.exports = isEqual; }, function(module, exports) { module.exports = function(it) { return "object" == typeof it ? null !== it : "function" == typeof it; @@ -1930,12 +1954,6 @@ var _publicBundleJs = []byte(`!function(modules) { return null != value && "object" == typeof value; } module.exports = isObjectLike; -}, function(module, exports, __webpack_require__) { - function isEqual(value, other) { - return baseIsEqual(value, other); - } - var baseIsEqual = __webpack_require__(235); - module.exports = isEqual; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; var __WEBPACK_IMPORTED_MODULE_0__src_bisect__ = __webpack_require__(409); @@ -2044,7 +2062,6 @@ var _publicBundleJs = []byte(`!function(modules) { var label = void 0; if (__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default()(content)) { if (label = content(props), Object(__WEBPACK_IMPORTED_MODULE_3_react__.isValidElement)(label)) return label; - console.log(label); } else label = getLabel(props); var isPolarLabel = isPolar(viewBox), attrs = Object(__WEBPACK_IMPORTED_MODULE_7__util_ReactUtils__.k)(props); if (isPolarLabel && ("insideStart" === position || "insideEnd" === position || "end" === position)) return renderRadialLabel(props, label, attrs); @@ -2053,7 +2070,7 @@ var _publicBundleJs = []byte(`!function(modules) { className: __WEBPACK_IMPORTED_MODULE_5_classnames___default()("recharts-label", className) }, attrs, positionAttrs), label); } - var __WEBPACK_IMPORTED_MODULE_0_lodash_isObject__ = __webpack_require__(47), __WEBPACK_IMPORTED_MODULE_0_lodash_isObject___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isObject__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_3_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_3_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react__), __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__), __WEBPACK_IMPORTED_MODULE_5_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_5_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_classnames__), __WEBPACK_IMPORTED_MODULE_6__Text__ = __webpack_require__(72), __WEBPACK_IMPORTED_MODULE_7__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_8__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_9__util_PolarUtils__ = __webpack_require__(35), _extends = Object.assign || function(target) { + var __WEBPACK_IMPORTED_MODULE_0_lodash_isObject__ = __webpack_require__(47), __WEBPACK_IMPORTED_MODULE_0_lodash_isObject___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isObject__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_3_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_3_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react__), __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__), __WEBPACK_IMPORTED_MODULE_5_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_5_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_classnames__), __WEBPACK_IMPORTED_MODULE_6__Text__ = __webpack_require__(72), __WEBPACK_IMPORTED_MODULE_7__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_8__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_9__util_PolarUtils__ = __webpack_require__(35), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -2086,13 +2103,13 @@ var _publicBundleJs = []byte(`!function(modules) { var value = props.value, formatter = props.formatter, label = __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default()(props.children) ? value : props.children; return __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default()(formatter) ? formatter(label) : label; }, getDeltaAngle = function(startAngle, endAngle) { - return Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.h)(endAngle - startAngle) * Math.min(Math.abs(endAngle - startAngle), 360); + return Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.i)(endAngle - startAngle) * Math.min(Math.abs(endAngle - startAngle), 360); }, renderRadialLabel = function(labelProps, label, attrs) { var position = labelProps.position, viewBox = labelProps.viewBox, offset = labelProps.offset, className = labelProps.className, cx = viewBox.cx, cy = viewBox.cy, innerRadius = viewBox.innerRadius, outerRadius = viewBox.outerRadius, startAngle = viewBox.startAngle, endAngle = viewBox.endAngle, clockWise = viewBox.clockWise, radius = (innerRadius + outerRadius) / 2, deltaAngle = getDeltaAngle(startAngle, endAngle), sign = deltaAngle >= 0 ? 1 : -1, labelAngle = void 0, direction = void 0; "insideStart" === position ? (labelAngle = startAngle + sign * offset, direction = clockWise) : "insideEnd" === position ? (labelAngle = endAngle - sign * offset, direction = !clockWise) : "end" === position && (labelAngle = endAngle + sign * offset, direction = clockWise), direction = deltaAngle <= 0 ? direction : !direction; - var startPoint = Object(__WEBPACK_IMPORTED_MODULE_9__util_PolarUtils__.e)(cx, cy, radius, labelAngle), endPoint = Object(__WEBPACK_IMPORTED_MODULE_9__util_PolarUtils__.e)(cx, cy, radius, labelAngle + 359 * (direction ? 1 : -1)), path = "M" + startPoint.x + "," + startPoint.y + "\n A" + radius + "," + radius + ",0,1," + (direction ? 0 : 1) + ",\n " + endPoint.x + "," + endPoint.y, id = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.i)("recharts-radial-line-"); + var startPoint = Object(__WEBPACK_IMPORTED_MODULE_9__util_PolarUtils__.e)(cx, cy, radius, labelAngle), endPoint = Object(__WEBPACK_IMPORTED_MODULE_9__util_PolarUtils__.e)(cx, cy, radius, labelAngle + 359 * (direction ? 1 : -1)), path = "M" + startPoint.x + "," + startPoint.y + "\n A" + radius + "," + radius + ",0,1," + (direction ? 0 : 1) + ",\n " + endPoint.x + "," + endPoint.y, id = __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default()(labelProps.id) ? Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.j)("recharts-radial-line-") : labelProps.id; return __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement("text", _extends({}, attrs, { dominantBaseline: "central", className: __WEBPACK_IMPORTED_MODULE_5_classnames___default()("recharts-radial-bar-label", className) @@ -2188,9 +2205,9 @@ var _publicBundleJs = []byte(`!function(modules) { y: y + height - sign * offset, textAnchor: "end", verticalAnchor: "end" - } : __WEBPACK_IMPORTED_MODULE_0_lodash_isObject___default()(position) && (Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(position.x) || Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(position.x)) && (Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(position.y) || Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(position.y)) ? { - x: x + Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.b)(position.x, width), - y: y + Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.b)(position.y, height), + } : __WEBPACK_IMPORTED_MODULE_0_lodash_isObject___default()(position) && (Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(position.x) || Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.h)(position.x)) && (Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(position.y) || Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.h)(position.y)) ? { + x: x + Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.c)(position.x, width), + y: y + Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.c)(position.y, height), textAnchor: "end", verticalAnchor: "end" } : { @@ -2200,31 +2217,31 @@ var _publicBundleJs = []byte(`!function(modules) { verticalAnchor: "middle" }; }, isPolar = function(viewBox) { - return Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(viewBox.cx); + return Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(viewBox.cx); }; Label.displayName = "Label", Label.defaultProps = defaultProps, Label.propTypes = propTypes; var parseViewBox = function(props) { var cx = props.cx, cy = props.cy, angle = props.angle, startAngle = props.startAngle, endAngle = props.endAngle, r = props.r, radius = props.radius, innerRadius = props.innerRadius, outerRadius = props.outerRadius, x = props.x, y = props.y, top = props.top, left = props.left, width = props.width, height = props.height, clockWise = props.clockWise; - if (Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(width) && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(height)) { - if (Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(x) && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(y)) return { + if (Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(width) && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(height)) { + if (Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(x) && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(y)) return { x: x, y: y, width: width, height: height }; - if (Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(top) && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(left)) return { + if (Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(top) && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(left)) return { x: top, y: left, width: width, height: height }; } - return Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(x) && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(y) ? { + return Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(x) && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(y) ? { x: x, y: y, width: 0, height: 0 - } : Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(cx) && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(cy) ? { + } : Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(cx) && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(cy) ? { cx: cx, cy: cy, startAngle: startAngle || angle || 0, @@ -2237,7 +2254,7 @@ var _publicBundleJs = []byte(`!function(modules) { return label ? !0 === label ? __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(Label, { key: "label-implicit", viewBox: viewBox - }) : Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.e)(label) ? __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(Label, { + }) : Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(label) ? __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(Label, { key: "label-implicit", viewBox: viewBox, value: label @@ -2298,12 +2315,14 @@ var _publicBundleJs = []byte(`!function(modules) { return target; } function LabelList(props) { - var data = props.data, valueAccessor = props.valueAccessor, dataKey = props.dataKey, clockWise = props.clockWise, others = _objectWithoutProperties(props, [ "data", "valueAccessor", "dataKey", "clockWise" ]); + var data = props.data, valueAccessor = props.valueAccessor, dataKey = props.dataKey, clockWise = props.clockWise, id = props.id, others = _objectWithoutProperties(props, [ "data", "valueAccessor", "dataKey", "clockWise", "id" ]); return data && data.length ? __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8__container_Layer__.a, { className: "recharts-label-list" }, data.map(function(entry, index) { - var value = __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default()(dataKey) ? valueAccessor(entry, index) : Object(__WEBPACK_IMPORTED_MODULE_10__util_ChartUtils__.w)(entry && entry.payload, dataKey); - return __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_7__Label__.a, _extends({}, Object(__WEBPACK_IMPORTED_MODULE_9__util_ReactUtils__.k)(entry), others, { + var value = __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default()(dataKey) ? valueAccessor(entry, index) : Object(__WEBPACK_IMPORTED_MODULE_10__util_ChartUtils__.w)(entry && entry.payload, dataKey), idProps = __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default()(id) ? {} : { + id: id + "-" + index + }; + return __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_7__Label__.a, _extends({}, Object(__WEBPACK_IMPORTED_MODULE_9__util_ReactUtils__.k)(entry), others, idProps, { index: index, value: value, viewBox: __WEBPACK_IMPORTED_MODULE_7__Label__.a.parseViewBox(__WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default()(clockWise) ? entry : _extends({}, entry, { @@ -2313,13 +2332,14 @@ var _publicBundleJs = []byte(`!function(modules) { })); })) : null; } - var __WEBPACK_IMPORTED_MODULE_0_lodash_isObject__ = __webpack_require__(47), __WEBPACK_IMPORTED_MODULE_0_lodash_isObject___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isObject__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_3_lodash_last__ = __webpack_require__(1089), __WEBPACK_IMPORTED_MODULE_3_lodash_last___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_last__), __WEBPACK_IMPORTED_MODULE_4_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_4_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_5_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_5_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react__), __WEBPACK_IMPORTED_MODULE_6_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_6_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_prop_types__), __WEBPACK_IMPORTED_MODULE_7__Label__ = __webpack_require__(60), __WEBPACK_IMPORTED_MODULE_8__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_9__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_10__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { + var __WEBPACK_IMPORTED_MODULE_0_lodash_isObject__ = __webpack_require__(47), __WEBPACK_IMPORTED_MODULE_0_lodash_isObject___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isObject__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_3_lodash_last__ = __webpack_require__(1089), __WEBPACK_IMPORTED_MODULE_3_lodash_last___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_last__), __WEBPACK_IMPORTED_MODULE_4_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_4_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_5_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_5_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react__), __WEBPACK_IMPORTED_MODULE_6_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_6_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_prop_types__), __WEBPACK_IMPORTED_MODULE_7__Label__ = __webpack_require__(60), __WEBPACK_IMPORTED_MODULE_8__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_9__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_10__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); } return target; }, propTypes = { + id: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string, data: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.arrayOf(__WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.object), valueAccessor: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func, clockWise: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool, @@ -2363,13 +2383,6 @@ var _publicBundleJs = []byte(`!function(modules) { for (var i in obj) keys.indexOf(i) >= 0 || Object.prototype.hasOwnProperty.call(obj, i) && (target[i] = obj[i]); return target; } - function _toConsumableArray(arr) { - if (Array.isArray(arr)) { - for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; - return arr2; - } - return Array.from(arr); - } function _defineProperty(obj, key, value) { return key in obj ? Object.defineProperty(obj, key, { value: value, @@ -2378,6 +2391,13 @@ var _publicBundleJs = []byte(`!function(modules) { writable: !0 }) : obj[key] = value, obj; } + function _toConsumableArray(arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; + return arr2; + } + return Array.from(arr); + } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function"); } @@ -2396,7 +2416,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var __WEBPACK_IMPORTED_MODULE_0_lodash_sortBy__ = __webpack_require__(402), __WEBPACK_IMPORTED_MODULE_0_lodash_sortBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_sortBy__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_get__ = __webpack_require__(244), __WEBPACK_IMPORTED_MODULE_2_lodash_get___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_get__), __WEBPACK_IMPORTED_MODULE_3_lodash_range__ = __webpack_require__(450), __WEBPACK_IMPORTED_MODULE_3_lodash_range___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_range__), __WEBPACK_IMPORTED_MODULE_4_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_5_lodash_throttle__ = __webpack_require__(1097), __WEBPACK_IMPORTED_MODULE_5_lodash_throttle___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_lodash_throttle__), __WEBPACK_IMPORTED_MODULE_6_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_6_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react__), __WEBPACK_IMPORTED_MODULE_7_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_7_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_prop_types__), __WEBPACK_IMPORTED_MODULE_8_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_8_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_classnames__), __WEBPACK_IMPORTED_MODULE_9__container_Surface__ = __webpack_require__(103), __WEBPACK_IMPORTED_MODULE_10__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_11__component_Tooltip__ = __webpack_require__(156), __WEBPACK_IMPORTED_MODULE_12__component_Legend__ = __webpack_require__(228), __WEBPACK_IMPORTED_MODULE_13__shape_Curve__ = __webpack_require__(86), __WEBPACK_IMPORTED_MODULE_14__shape_Cross__ = __webpack_require__(444), __WEBPACK_IMPORTED_MODULE_15__shape_Sector__ = __webpack_require__(168), __WEBPACK_IMPORTED_MODULE_16__shape_Dot__ = __webpack_require__(74), __WEBPACK_IMPORTED_MODULE_17__shape_Rectangle__ = __webpack_require__(85), __WEBPACK_IMPORTED_MODULE_18__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_19__cartesian_CartesianAxis__ = __webpack_require__(451), __WEBPACK_IMPORTED_MODULE_20__cartesian_Brush__ = __webpack_require__(449), __WEBPACK_IMPORTED_MODULE_21__util_DOMUtils__ = __webpack_require__(247), __WEBPACK_IMPORTED_MODULE_22__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__ = __webpack_require__(21), __WEBPACK_IMPORTED_MODULE_24__util_PolarUtils__ = __webpack_require__(35), __WEBPACK_IMPORTED_MODULE_25__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_26__util_Events__ = __webpack_require__(1098), _extends = Object.assign || function(target) { + var __WEBPACK_IMPORTED_MODULE_0_lodash_sortBy__ = __webpack_require__(402), __WEBPACK_IMPORTED_MODULE_0_lodash_sortBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_sortBy__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_get__ = __webpack_require__(152), __WEBPACK_IMPORTED_MODULE_2_lodash_get___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_get__), __WEBPACK_IMPORTED_MODULE_3_lodash_range__ = __webpack_require__(450), __WEBPACK_IMPORTED_MODULE_3_lodash_range___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_range__), __WEBPACK_IMPORTED_MODULE_4_lodash_throttle__ = __webpack_require__(1097), __WEBPACK_IMPORTED_MODULE_4_lodash_throttle___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_throttle__), __WEBPACK_IMPORTED_MODULE_5_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_6_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_6_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react__), __WEBPACK_IMPORTED_MODULE_7_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_7_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_prop_types__), __WEBPACK_IMPORTED_MODULE_8_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_8_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_classnames__), __WEBPACK_IMPORTED_MODULE_9__container_Surface__ = __webpack_require__(103), __WEBPACK_IMPORTED_MODULE_10__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_11__component_Tooltip__ = __webpack_require__(164), __WEBPACK_IMPORTED_MODULE_12__component_Legend__ = __webpack_require__(233), __WEBPACK_IMPORTED_MODULE_13__shape_Curve__ = __webpack_require__(86), __WEBPACK_IMPORTED_MODULE_14__shape_Cross__ = __webpack_require__(444), __WEBPACK_IMPORTED_MODULE_15__shape_Sector__ = __webpack_require__(170), __WEBPACK_IMPORTED_MODULE_16__shape_Dot__ = __webpack_require__(74), __WEBPACK_IMPORTED_MODULE_17__shape_Rectangle__ = __webpack_require__(85), __WEBPACK_IMPORTED_MODULE_18__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_19__cartesian_CartesianAxis__ = __webpack_require__(451), __WEBPACK_IMPORTED_MODULE_20__cartesian_Brush__ = __webpack_require__(449), __WEBPACK_IMPORTED_MODULE_21__util_DOMUtils__ = __webpack_require__(247), __WEBPACK_IMPORTED_MODULE_22__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__ = __webpack_require__(21), __WEBPACK_IMPORTED_MODULE_24__util_PolarUtils__ = __webpack_require__(35), __WEBPACK_IMPORTED_MODULE_25__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_26__util_Events__ = __webpack_require__(1098), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -2434,14 +2454,14 @@ var _publicBundleJs = []byte(`!function(modules) { props: props }, defaultState, { updateId: 0 - }))), _this.uniqueChartId = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.i)("recharts"), - props.throttleDelay && (_this.triggeredAfterMouseMove = __WEBPACK_IMPORTED_MODULE_5_lodash_throttle___default()(_this.triggeredAfterMouseMove, props.throttleDelay)), + }))), _this.uniqueChartId = __WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(props.id) ? Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.j)("recharts") : props.id, + props.throttleDelay && (_this.triggeredAfterMouseMove = __WEBPACK_IMPORTED_MODULE_4_lodash_throttle___default()(_this.triggeredAfterMouseMove, props.throttleDelay)), _this; } return _inherits(CategoricalChartWrapper, _Component), _createClass(CategoricalChartWrapper, [ { key: "componentDidMount", value: function() { - __WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(this.props.syncId) || this.addListener(); + __WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(this.props.syncId) || this.addListener(); } }, { key: "componentWillReceiveProps", @@ -2449,7 +2469,7 @@ var _publicBundleJs = []byte(`!function(modules) { var _props = this.props, data = _props.data, children = _props.children, width = _props.width, height = _props.height, layout = _props.layout, stackOffset = _props.stackOffset, margin = _props.margin, updateId = this.state.updateId; if (nextProps.data === data && nextProps.width === width && nextProps.height === height && nextProps.layout === layout && nextProps.stackOffset === stackOffset && Object(__WEBPACK_IMPORTED_MODULE_25__util_PureRender__.b)(nextProps.margin, margin)) { if (!Object(__WEBPACK_IMPORTED_MODULE_18__util_ReactUtils__.m)(nextProps.children, children)) { - var hasGlobalData = !__WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(nextProps.data), newUpdateId = hasGlobalData ? updateId : updateId + 1, _state = this.state, dataStartIndex = _state.dataStartIndex, dataEndIndex = _state.dataEndIndex, _defaultState = _extends({}, this.constructor.createDefaultState(nextProps), { + var hasGlobalData = !__WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(nextProps.data), newUpdateId = hasGlobalData ? updateId : updateId + 1, _state = this.state, dataStartIndex = _state.dataStartIndex, dataEndIndex = _state.dataEndIndex, _defaultState = _extends({}, this.constructor.createDefaultState(nextProps), { dataEndIndex: dataEndIndex, dataStartIndex: dataStartIndex }); @@ -2471,13 +2491,13 @@ var _publicBundleJs = []byte(`!function(modules) { updateId: updateId + 1 })))); } - __WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(this.props.syncId) && !__WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(nextProps.syncId) && this.addListener(), - !__WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(this.props.syncId) && __WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(nextProps.syncId) && this.removeListener(); + __WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(this.props.syncId) && !__WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(nextProps.syncId) && this.addListener(), + !__WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(this.props.syncId) && __WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(nextProps.syncId) && this.removeListener(); } }, { key: "componentWillUnmount", value: function() { - __WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(this.props.syncId) || this.removeListener(), + __WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(this.props.syncId) || this.removeListener(), "function" == typeof this.triggeredAfterMouseMove.cancel && this.triggeredAfterMouseMove.cancel(); } }, { @@ -2507,7 +2527,7 @@ var _publicBundleJs = []byte(`!function(modules) { value: function(props, _ref3) { var _this2 = this, axes = _ref3.axes, graphicalItems = _ref3.graphicalItems, axisType = _ref3.axisType, axisIdKey = _ref3.axisIdKey, stackGroups = _ref3.stackGroups, dataStartIndex = _ref3.dataStartIndex, dataEndIndex = _ref3.dataEndIndex, layout = props.layout, children = props.children, stackOffset = props.stackOffset, isCategorial = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.x)(layout, axisType); return axes.reduce(function(result, child) { - var _child$props = child.props, type = _child$props.type, dataKey = _child$props.dataKey, allowDataOverflow = _child$props.allowDataOverflow, scale = _child$props.scale, ticks = _child$props.ticks, axisId = child.props[axisIdKey], displayedData = _this2.constructor.getDisplayedData(props, { + var _child$props = child.props, type = _child$props.type, dataKey = _child$props.dataKey, allowDataOverflow = _child$props.allowDataOverflow, allowDuplicatedCategory = _child$props.allowDuplicatedCategory, scale = _child$props.scale, ticks = _child$props.ticks, axisId = child.props[axisIdKey], displayedData = _this2.constructor.getDisplayedData(props, { graphicalItems: graphicalItems.filter(function(item) { return item.props[axisIdKey] === axisId; }), @@ -2519,12 +2539,16 @@ var _publicBundleJs = []byte(`!function(modules) { if (dataKey) { if (domain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.n)(displayedData, dataKey, type), "category" === type && isCategorial) { - var duplicate = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.c)(domain); - duplicateDomain = duplicate ? domain : null, domain = duplicate ? __WEBPACK_IMPORTED_MODULE_3_lodash_range___default()(0, len) : domain; - } else if ("category" === type) domain = domain.filter(function(entry) { - return "" !== entry && !__WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(entry); - }); else if ("number" === type) { - var errorBarsDomain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.y)(displayedData, graphicalItems.filter(function(item) { + var duplicate = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.d)(domain); + allowDuplicatedCategory && duplicate ? (duplicateDomain = domain, domain = __WEBPACK_IMPORTED_MODULE_3_lodash_range___default()(0, len)) : allowDuplicatedCategory || (domain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.y)(child.props.domain, domain, child).reduce(function(finalDomain, entry) { + return finalDomain.indexOf(entry) >= 0 ? finalDomain : [].concat(_toConsumableArray(finalDomain), [ entry ]); + }, [])); + } else if ("category" === type) domain = allowDuplicatedCategory ? domain.filter(function(entry) { + return "" !== entry && !__WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(entry); + }) : Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.y)(child.props.domain, domain, child).reduce(function(finalDomain, entry) { + return finalDomain.indexOf(entry) >= 0 || "" === entry || __WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(entry) ? finalDomain : [].concat(_toConsumableArray(finalDomain), [ entry ]); + }, []); else if ("number" === type) { + var errorBarsDomain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.z)(displayedData, graphicalItems.filter(function(item) { return item.props[axisIdKey] === axisId && !item.props.hide; }), dataKey, axisType); errorBarsDomain && (domain = errorBarsDomain); @@ -2534,7 +2558,7 @@ var _publicBundleJs = []byte(`!function(modules) { return item.props[axisIdKey] === axisId && !item.props.hide; }), type, !0); return "number" === type && (domain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.e)(children, domain, axisId, axisType, ticks), - child.props.domain && (domain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.A)(child.props.domain, domain, allowDataOverflow))), + child.props.domain && (domain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.B)(child.props.domain, domain, allowDataOverflow))), _extends({}, result, _defineProperty({}, axisId, _extends({}, child.props, { axisType: axisType, domain: domain, @@ -2562,7 +2586,7 @@ var _publicBundleJs = []byte(`!function(modules) { index++; var domain = void 0; return isCategorial ? domain = __WEBPACK_IMPORTED_MODULE_3_lodash_range___default()(0, len) : stackGroups && stackGroups[axisId] && stackGroups[axisId].hasStack ? (domain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.p)(stackGroups[axisId].stackGroups, dataStartIndex, dataEndIndex), - domain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.e)(children, domain, axisId, axisType)) : (domain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.A)(Axis.defaultProps.domain, Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.o)(displayedData, graphicalItems.filter(function(item) { + domain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.e)(children, domain, axisId, axisType)) : (domain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.B)(Axis.defaultProps.domain, Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.o)(displayedData, graphicalItems.filter(function(item) { return item.props[axisIdKey] === axisId && !item.props.hide; }), "number"), Axis.defaultProps.allowDataOverflow), domain = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.e)(children, domain, axisId, axisType)), _extends({}, result, _defineProperty({}, axisId, _extends({ @@ -2617,7 +2641,7 @@ var _publicBundleJs = []byte(`!function(modules) { if (!rangeObj) return null; var _state2 = this.state, xAxisMap = _state2.xAxisMap, yAxisMap = _state2.yAxisMap; if ("axis" !== eventType && xAxisMap && yAxisMap) { - var xScale = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.a)(xAxisMap).scale, yScale = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.a)(yAxisMap).scale, xValue = xScale && xScale.invert ? xScale.invert(e.chartX) : null, yValue = yScale && yScale.invert ? yScale.invert(e.chartY) : null; + var xScale = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.b)(xAxisMap).scale, yScale = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.b)(yAxisMap).scale, xValue = xScale && xScale.invert ? xScale.invert(e.chartX) : null, yValue = yScale && yScale.invert ? yScale.invert(e.chartY) : null; return _extends({}, e, { xValue: xValue, yValue: yValue @@ -2625,7 +2649,7 @@ var _publicBundleJs = []byte(`!function(modules) { } var _state3 = this.state, ticks = _state3.orderedTooltipTicks, axis = _state3.tooltipAxis, tooltipTicks = _state3.tooltipTicks, pos = this.calculateTooltipPos(rangeObj), activeIndex = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.b)(pos, ticks, tooltipTicks, axis); if (activeIndex >= 0 && tooltipTicks) { - var activeLabel = tooltipTicks[activeIndex] && tooltipTicks[activeIndex].value, activePayload = this.getTooltipContent(activeIndex), activeCoordinate = this.getActiveCoordinate(ticks, activeIndex, rangeObj); + var activeLabel = tooltipTicks[activeIndex] && tooltipTicks[activeIndex].value, activePayload = this.getTooltipContent(activeIndex, activeLabel), activeCoordinate = this.getActiveCoordinate(ticks, activeIndex, rangeObj); return _extends({}, e, { activeTooltipIndex: activeIndex, activeLabel: activeLabel, @@ -2637,20 +2661,21 @@ var _publicBundleJs = []byte(`!function(modules) { } }, { key: "getTooltipContent", - value: function(activeIndex) { - var graphicalItems = this.state.graphicalItems, displayedData = this.constructor.getDisplayedData(this.props, this.state); + value: function(activeIndex, activeLabel) { + var _state4 = this.state, graphicalItems = _state4.graphicalItems, tooltipAxis = _state4.tooltipAxis, displayedData = this.constructor.getDisplayedData(this.props, this.state); return activeIndex < 0 || !graphicalItems || !graphicalItems.length || activeIndex >= displayedData.length ? null : graphicalItems.reduce(function(result, child) { if (child.props.hide) return result; - var _child$props2 = child.props, dataKey = _child$props2.dataKey, name = _child$props2.name, unit = _child$props2.unit, formatter = _child$props2.formatter; - return [].concat(_toConsumableArray(result), [ _extends({}, Object(__WEBPACK_IMPORTED_MODULE_18__util_ReactUtils__.k)(child), { + var _child$props2 = child.props, dataKey = _child$props2.dataKey, name = _child$props2.name, unit = _child$props2.unit, formatter = _child$props2.formatter, data = _child$props2.data, payload = void 0; + return payload = tooltipAxis.dataKey && !tooltipAxis.allowDuplicatedCategory ? Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.a)(data || displayedData, tooltipAxis.dataKey, activeLabel) : displayedData[activeIndex], + payload ? [].concat(_toConsumableArray(result), [ _extends({}, Object(__WEBPACK_IMPORTED_MODULE_18__util_ReactUtils__.k)(child), { dataKey: dataKey, unit: unit, formatter: formatter, name: name || dataKey, color: Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.r)(child), - value: Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.w)(displayedData[activeIndex], dataKey), - payload: displayedData[activeIndex] - }) ]); + value: Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.w)(payload, dataKey), + payload: payload + }) ]) : result; }, []); } }, { @@ -2669,7 +2694,7 @@ var _publicBundleJs = []byte(`!function(modules) { return _extends({}, result, (_extends4 = {}, _defineProperty(_extends4, entry.axisType, axis), _defineProperty(_extends4, entry.axisType + "Ticks", Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.u)(axis)), _extends4)); - }, {}), cateAxis = axisObj[cateAxisName], cateTicks = axisObj[cateAxisName + "Ticks"], stackedData = stackGroups && stackGroups[numericAxisId] && stackGroups[numericAxisId].hasStack && Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.t)(item, stackGroups[numericAxisId].stackGroups), bandSize = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.g)(cateAxis, cateTicks), maxBarSize = __WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(childMaxBarSize) ? globalMaxBarSize : childMaxBarSize, barPosition = hasBar && Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.h)({ + }, {}), cateAxis = axisObj[cateAxisName], cateTicks = axisObj[cateAxisName + "Ticks"], stackedData = stackGroups && stackGroups[numericAxisId] && stackGroups[numericAxisId].hasStack && Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.t)(item, stackGroups[numericAxisId].stackGroups), bandSize = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.g)(cateAxis, cateTicks), maxBarSize = __WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(childMaxBarSize) ? globalMaxBarSize : childMaxBarSize, barPosition = hasBar && Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.h)({ barGap: barGap, barCategoryGap: barCategoryGap, bandSize: bandSize, @@ -2706,7 +2731,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "getCursorRectangle", value: function() { - var layout = this.props.layout, _state4 = this.state, activeCoordinate = _state4.activeCoordinate, offset = _state4.offset, tooltipAxisBandSize = _state4.tooltipAxisBandSize, halfSize = tooltipAxisBandSize / 2; + var layout = this.props.layout, _state5 = this.state, activeCoordinate = _state5.activeCoordinate, offset = _state5.offset, tooltipAxisBandSize = _state5.tooltipAxisBandSize, halfSize = tooltipAxisBandSize / 2; return { stroke: "none", fill: "#ccc", @@ -2719,10 +2744,10 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "getCursorPoints", value: function() { - var layout = this.props.layout, _state5 = this.state, activeCoordinate = _state5.activeCoordinate, offset = _state5.offset, x1 = void 0, y1 = void 0, x2 = void 0, y2 = void 0; + var layout = this.props.layout, _state6 = this.state, activeCoordinate = _state6.activeCoordinate, offset = _state6.offset, x1 = void 0, y1 = void 0, x2 = void 0, y2 = void 0; if ("horizontal" === layout) x1 = activeCoordinate.x, x2 = x1, y1 = offset.top, y2 = offset.top + offset.height; else if ("vertical" === layout) y1 = activeCoordinate.y, - y2 = y1, x1 = offset.left, x2 = offset.left + offset.width; else if (!__WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(activeCoordinate.cx) || !__WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(activeCoordinate.cy)) { + y2 = y1, x1 = offset.left, x2 = offset.left + offset.width; else if (!__WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(activeCoordinate.cx) || !__WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(activeCoordinate.cy)) { if ("centric" !== layout) { var _cx = activeCoordinate.cx, _cy = activeCoordinate.cy, radius = activeCoordinate.radius, startAngle = activeCoordinate.startAngle, endAngle = activeCoordinate.endAngle, startPoint = Object(__WEBPACK_IMPORTED_MODULE_24__util_PolarUtils__.e)(_cx, _cy, radius, startAngle), endPoint = Object(__WEBPACK_IMPORTED_MODULE_24__util_PolarUtils__.e)(_cx, _cy, radius, endAngle); return { @@ -2779,9 +2804,9 @@ var _publicBundleJs = []byte(`!function(modules) { y: y } : null; } - var _state6 = this.state, angleAxisMap = _state6.angleAxisMap, radiusAxisMap = _state6.radiusAxisMap; + var _state7 = this.state, angleAxisMap = _state7.angleAxisMap, radiusAxisMap = _state7.radiusAxisMap; if (angleAxisMap && radiusAxisMap) { - var angleAxis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.a)(angleAxisMap); + var angleAxis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.b)(angleAxisMap); return Object(__WEBPACK_IMPORTED_MODULE_24__util_PolarUtils__.d)({ x: x, y: y @@ -2881,7 +2906,7 @@ var _publicBundleJs = []byte(`!function(modules) { key: "triggerSyncEvent", value: function(data) { var syncId = this.props.syncId; - __WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(syncId) || __WEBPACK_IMPORTED_MODULE_26__util_Events__.b.emit(__WEBPACK_IMPORTED_MODULE_26__util_Events__.a, syncId, this.uniqueChartId, data); + __WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(syncId) || __WEBPACK_IMPORTED_MODULE_26__util_Events__.b.emit(__WEBPACK_IMPORTED_MODULE_26__util_Events__.a, syncId, this.uniqueChartId, data); } }, { key: "filterFormatItem", @@ -2918,7 +2943,9 @@ var _publicBundleJs = []byte(`!function(modules) { legendHeight: legendHeight, legendContent: legendContent }); - return props ? Object(__WEBPACK_IMPORTED_MODULE_6_react__.createElement)(__WEBPACK_IMPORTED_MODULE_12__component_Legend__.a, _extends({}, props, { + if (!props) return null; + var item = props.item, otherProps = _objectWithoutProperties(props, [ "item" ]); + return Object(__WEBPACK_IMPORTED_MODULE_6_react__.cloneElement)(item, _extends({}, otherProps, { chartWidth: width, chartHeight: height, margin: margin, @@ -2926,14 +2953,14 @@ var _publicBundleJs = []byte(`!function(modules) { _this5.legendInstance = legend; }, onBBoxUpdate: this.handleLegendBBoxUpdate - })) : null; + })); } }, { key: "renderTooltip", value: function() { var children = this.props.children, tooltipItem = Object(__WEBPACK_IMPORTED_MODULE_18__util_ReactUtils__.i)(children, __WEBPACK_IMPORTED_MODULE_11__component_Tooltip__.a); if (!tooltipItem) return null; - var _state7 = this.state, isTooltipActive = _state7.isTooltipActive, activeCoordinate = _state7.activeCoordinate, activePayload = _state7.activePayload, activeLabel = _state7.activeLabel, offset = _state7.offset; + var _state8 = this.state, isTooltipActive = _state8.isTooltipActive, activeCoordinate = _state8.activeCoordinate, activePayload = _state8.activePayload, activeLabel = _state8.activeLabel, offset = _state8.offset; return Object(__WEBPACK_IMPORTED_MODULE_6_react__.cloneElement)(tooltipItem, { viewBox: _extends({}, offset, { x: offset.left, @@ -3094,7 +3121,8 @@ var _publicBundleJs = []byte(`!function(modules) { onMouseMove: __WEBPACK_IMPORTED_MODULE_7_prop_types___default.a.func, onMouseDown: __WEBPACK_IMPORTED_MODULE_7_prop_types___default.a.func, onMouseUp: __WEBPACK_IMPORTED_MODULE_7_prop_types___default.a.func, - reverseStackOrder: __WEBPACK_IMPORTED_MODULE_7_prop_types___default.a.bool + reverseStackOrder: __WEBPACK_IMPORTED_MODULE_7_prop_types___default.a.bool, + id: __WEBPACK_IMPORTED_MODULE_7_prop_types___default.a.string }, propTypes), _class.defaultProps = _extends({ layout: "horizontal", stackOffset: "none", @@ -3130,12 +3158,12 @@ var _publicBundleJs = []byte(`!function(modules) { if (itemsData && itemsData.length > 0) return itemsData; if (item && item.props && item.props.data && item.props.data.length > 0) return item.props.data; var data = props.data; - return data && data.length && Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.f)(dataStartIndex) && Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.f)(dataEndIndex) ? data.slice(dataStartIndex, dataEndIndex + 1) : []; + return data && data.length && Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.g)(dataStartIndex) && Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.g)(dataEndIndex) ? data.slice(dataStartIndex, dataEndIndex + 1) : []; }, _initialiseProps = function() { var _this7 = this; this.handleLegendBBoxUpdate = function(box) { if (box && _this7.legendInstance) { - var _state8 = _this7.state, dataStartIndex = _state8.dataStartIndex, dataEndIndex = _state8.dataEndIndex, updateId = _state8.updateId; + var _state9 = _this7.state, dataStartIndex = _state9.dataStartIndex, dataEndIndex = _state9.dataEndIndex, updateId = _state9.updateId; _this7.setState(_this7.updateStateOfAxisMapsOffsetAndStackGroups({ props: _this7.props, dataStartIndex: dataStartIndex, @@ -3147,8 +3175,8 @@ var _publicBundleJs = []byte(`!function(modules) { var _props5 = _this7.props, syncId = _props5.syncId, layout = _props5.layout, updateId = _this7.state.updateId; if (syncId === cId && chartId !== _this7.uniqueChartId) { var dataStartIndex = data.dataStartIndex, dataEndIndex = data.dataEndIndex; - if (__WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(data.dataStartIndex) && __WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(data.dataEndIndex)) if (__WEBPACK_IMPORTED_MODULE_4_lodash_isNil___default()(data.activeTooltipIndex)) _this7.setState(data); else { - var chartX = data.chartX, chartY = data.chartY, activeTooltipIndex = data.activeTooltipIndex, _state9 = _this7.state, offset = _state9.offset, tooltipTicks = _state9.tooltipTicks; + if (__WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(data.dataStartIndex) && __WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(data.dataEndIndex)) if (__WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(data.activeTooltipIndex)) _this7.setState(data); else { + var chartX = data.chartX, chartY = data.chartY, activeTooltipIndex = data.activeTooltipIndex, _state10 = _this7.state, offset = _state10.offset, tooltipTicks = _state10.tooltipTicks; if (!offset) return; var viewBox = _extends({}, offset, { x: offset.left, @@ -3274,7 +3302,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, this.axesTicksGenerator = function(axis) { return Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.u)(axis, !0); }, this.tooltipTicksGenerator = function(axisMap) { - var axis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.a)(axisMap), tooltipTicks = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.u)(axis, !1, !0); + var axis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.b)(axisMap), tooltipTicks = Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.u)(axis, !1, !0); return { tooltipTicks: tooltipTicks, orderedTooltipTicks: __WEBPACK_IMPORTED_MODULE_0_lodash_sortBy___default()(tooltipTicks, function(o) { @@ -3284,7 +3312,7 @@ var _publicBundleJs = []byte(`!function(modules) { tooltipAxisBandSize: Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.g)(axis) }; }, this.renderCursor = function(element) { - var _state10 = _this7.state, isTooltipActive = _state10.isTooltipActive, activeCoordinate = _state10.activeCoordinate, activePayload = _state10.activePayload, offset = _state10.offset; + var _state11 = _this7.state, isTooltipActive = _state11.isTooltipActive, activeCoordinate = _state11.activeCoordinate, activePayload = _state11.activePayload, offset = _state11.offset; if (!(element && element.props.cursor && isTooltipActive && activeCoordinate)) return null; var layout = _this7.props.layout, restProps = void 0, cursorComp = __WEBPACK_IMPORTED_MODULE_13__shape_Curve__.a; if ("ScatterChart" === chartName) restProps = activeCoordinate, cursorComp = __WEBPACK_IMPORTED_MODULE_14__shape_Cross__.a; else if ("BarChart" === chartName) restProps = _this7.getCursorRectangle(), @@ -3323,13 +3351,13 @@ var _publicBundleJs = []byte(`!function(modules) { var yAxisMap = _this7.state.yAxisMap, axisObj = yAxisMap[element.props.yAxisId]; return _this7.renderAxis(axisObj, element, displayName, index); }, this.renderGrid = function(element) { - var _state11 = _this7.state, xAxisMap = _state11.xAxisMap, yAxisMap = _state11.yAxisMap, offset = _state11.offset, _props6 = _this7.props, width = _props6.width, height = _props6.height, xAxis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.a)(xAxisMap), yAxis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.a)(yAxisMap), props = element.props || {}; + var _state12 = _this7.state, xAxisMap = _state12.xAxisMap, yAxisMap = _state12.yAxisMap, offset = _state12.offset, _props6 = _this7.props, width = _props6.width, height = _props6.height, xAxis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.b)(xAxisMap), yAxis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.b)(yAxisMap), props = element.props || {}; return Object(__WEBPACK_IMPORTED_MODULE_6_react__.cloneElement)(element, { key: element.key || "grid", - x: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.f)(props.x) ? props.x : offset.left, - y: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.f)(props.y) ? props.y : offset.top, - width: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.f)(props.width) ? props.width : offset.width, - height: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.f)(props.height) ? props.height : offset.height, + x: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.g)(props.x) ? props.x : offset.left, + y: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.g)(props.y) ? props.y : offset.top, + width: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.g)(props.width) ? props.width : offset.width, + height: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.g)(props.height) ? props.height : offset.height, xAxis: xAxis, yAxis: yAxis, offset: offset, @@ -3339,7 +3367,7 @@ var _publicBundleJs = []byte(`!function(modules) { horizontalCoordinatesGenerator: _this7.horizontalCoordinatesGenerator }); }, this.renderPolarGrid = function(element) { - var _state12 = _this7.state, radiusAxisMap = _state12.radiusAxisMap, angleAxisMap = _state12.angleAxisMap, radiusAxis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.a)(radiusAxisMap), angleAxis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.a)(angleAxisMap), cx = angleAxis.cx, cy = angleAxis.cy, innerRadius = angleAxis.innerRadius, outerRadius = angleAxis.outerRadius; + var _state13 = _this7.state, radiusAxisMap = _state13.radiusAxisMap, angleAxisMap = _state13.angleAxisMap, radiusAxis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.b)(radiusAxisMap), angleAxis = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.b)(angleAxisMap), cx = angleAxis.cx, cy = angleAxis.cy, innerRadius = angleAxis.innerRadius, outerRadius = angleAxis.outerRadius; return Object(__WEBPACK_IMPORTED_MODULE_6_react__.cloneElement)(element, { polarAngles: Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.u)(angleAxis, !0).map(function(entry) { return entry.coordinate; @@ -3354,21 +3382,21 @@ var _publicBundleJs = []byte(`!function(modules) { key: element.key || "polar-grid" }); }, this.renderBrush = function(element) { - var _props7 = _this7.props, margin = _props7.margin, data = _props7.data, _state13 = _this7.state, offset = _state13.offset, dataStartIndex = _state13.dataStartIndex, dataEndIndex = _state13.dataEndIndex, updateId = _state13.updateId; + var _props7 = _this7.props, margin = _props7.margin, data = _props7.data, _state14 = _this7.state, offset = _state14.offset, dataStartIndex = _state14.dataStartIndex, dataEndIndex = _state14.dataEndIndex, updateId = _state14.updateId; return Object(__WEBPACK_IMPORTED_MODULE_6_react__.cloneElement)(element, { key: element.key || "_recharts-brush", onChange: Object(__WEBPACK_IMPORTED_MODULE_23__util_ChartUtils__.d)(_this7.handleBrushChange, null, element.props.onChange), data: data, - x: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.f)(element.props.x) ? element.props.x : offset.left, - y: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.f)(element.props.y) ? element.props.y : offset.top + offset.height + offset.brushBottom - (margin.bottom || 0), - width: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.f)(element.props.width) ? element.props.width : offset.width, + x: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.g)(element.props.x) ? element.props.x : offset.left, + y: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.g)(element.props.y) ? element.props.y : offset.top + offset.height + offset.brushBottom - (margin.bottom || 0), + width: Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.g)(element.props.width) ? element.props.width : offset.width, startIndex: dataStartIndex, endIndex: dataEndIndex, updateId: "brush-" + updateId }); }, this.renderReferenceElement = function(element, displayName, index) { if (!element) return null; - var _state14 = _this7.state, xAxisMap = _state14.xAxisMap, yAxisMap = _state14.yAxisMap, offset = _state14.offset, _element$props = element.props, xAxisId = _element$props.xAxisId, yAxisId = _element$props.yAxisId; + var _state15 = _this7.state, xAxisMap = _state15.xAxisMap, yAxisMap = _state15.yAxisMap, offset = _state15.offset, _element$props = element.props, xAxisId = _element$props.xAxisId, yAxisId = _element$props.yAxisId; return Object(__WEBPACK_IMPORTED_MODULE_6_react__.cloneElement)(element, { key: element.key || displayName + "-" + index, xAxis: xAxisMap[xAxisId], @@ -3383,10 +3411,12 @@ var _publicBundleJs = []byte(`!function(modules) { }, this.renderGraphicChild = function(element, displayName, index) { var item = _this7.filterFormatItem(element, displayName, index); if (!item) return null; - var graphicalItem = Object(__WEBPACK_IMPORTED_MODULE_6_react__.cloneElement)(element, item.props), _state15 = _this7.state, isTooltipActive = _state15.isTooltipActive, activeTooltipIndex = _state15.activeTooltipIndex, children = _this7.props.children, tooltipItem = Object(__WEBPACK_IMPORTED_MODULE_18__util_ReactUtils__.i)(children, __WEBPACK_IMPORTED_MODULE_11__component_Tooltip__.a), _item$props2 = item.props, points = _item$props2.points, isRange = _item$props2.isRange, baseLine = _item$props2.baseLine, _item$item$props2 = item.item.props, activeDot = _item$item$props2.activeDot; - if (!_item$item$props2.hide && isTooltipActive && tooltipItem && activeDot && activeTooltipIndex >= 0 && points[activeTooltipIndex]) { - var activePoint = points[activeTooltipIndex], basePoint = isRange && baseLine && baseLine[activeTooltipIndex]; - return [ graphicalItem ].concat(_toConsumableArray(_this7.renderActivePoints({ + var graphicalItem = Object(__WEBPACK_IMPORTED_MODULE_6_react__.cloneElement)(element, item.props), _state16 = _this7.state, isTooltipActive = _state16.isTooltipActive, tooltipAxis = _state16.tooltipAxis, activeTooltipIndex = _state16.activeTooltipIndex, activeLabel = _state16.activeLabel, children = _this7.props.children, tooltipItem = Object(__WEBPACK_IMPORTED_MODULE_18__util_ReactUtils__.i)(children, __WEBPACK_IMPORTED_MODULE_11__component_Tooltip__.a), _item$props2 = item.props, points = _item$props2.points, isRange = _item$props2.isRange, baseLine = _item$props2.baseLine, _item$item$props2 = item.item.props, activeDot = _item$item$props2.activeDot; + if (!_item$item$props2.hide && isTooltipActive && tooltipItem && activeDot && activeTooltipIndex >= 0) { + var activePoint = void 0, basePoint = void 0; + if (tooltipAxis.dataKey && !tooltipAxis.allowDuplicatedCategory ? (activePoint = Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.a)(points, "payload." + tooltipAxis.dataKey, activeLabel), + basePoint = isRange && baseLine && Object(__WEBPACK_IMPORTED_MODULE_22__util_DataUtils__.a)(baseLine, "payload." + tooltipAxis.dataKey, activeLabel)) : (activePoint = points[activeTooltipIndex], + basePoint = isRange && baseLine && baseLine[activeTooltipIndex]), !__WEBPACK_IMPORTED_MODULE_5_lodash_isNil___default()(activePoint)) return [ graphicalItem ].concat(_toConsumableArray(_this7.renderActivePoints({ item: item, activePoint: activePoint, basePoint: basePoint, @@ -3424,7 +3454,7 @@ var _publicBundleJs = []byte(`!function(modules) { }; }; }, function(module, exports, __webpack_require__) { - var isObject = __webpack_require__(49); + var isObject = __webpack_require__(50); module.exports = function(it) { if (!isObject(it)) throw TypeError(it + " is not an object!"); return it; @@ -3497,11 +3527,18 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _typeof2 = __webpack_require__(126), _typeof3 = _interopRequireDefault(_typeof2), _keys = __webpack_require__(50), _keys2 = _interopRequireDefault(_keys); + var _typeof2 = __webpack_require__(126), _typeof3 = _interopRequireDefault(_typeof2), _keys = __webpack_require__(51), _keys2 = _interopRequireDefault(_keys); exports.capitalizeFirstLetter = capitalizeFirstLetter, exports.contains = contains, exports.findIndex = findIndex, exports.find = find, exports.createChainedFunction = createChainedFunction; var _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning); }).call(exports, __webpack_require__(3)); +}, function(module, exports, __webpack_require__) { + function getNative(object, key) { + var value = getValue(object, key); + return baseIsNative(value) ? value : void 0; + } + var baseIsNative = __webpack_require__(869), getValue = __webpack_require__(872); + module.exports = getNative; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_exports__.a = function(x) { @@ -3509,13 +3546,6 @@ var _publicBundleJs = []byte(`!function(modules) { return x; }; }; -}, function(module, exports, __webpack_require__) { - function getNative(object, key) { - var value = getValue(object, key); - return baseIsNative(value) ? value : void 0; - } - var baseIsNative = __webpack_require__(900), getValue = __webpack_require__(903); - module.exports = getNative; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; function _objectWithoutProperties(obj, keys) { @@ -3541,7 +3571,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_0_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__), __WEBPACK_IMPORTED_MODULE_2_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_2_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_prop_types__), __WEBPACK_IMPORTED_MODULE_3_reduce_css_calc__ = __webpack_require__(994), __WEBPACK_IMPORTED_MODULE_3_reduce_css_calc___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_reduce_css_calc__), __WEBPACK_IMPORTED_MODULE_4_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_4_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_classnames__), __WEBPACK_IMPORTED_MODULE_5__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_6__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_7__util_DOMUtils__ = __webpack_require__(247), _extends = Object.assign || function(target) { + var _class, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_0_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__), __WEBPACK_IMPORTED_MODULE_2_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_2_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_prop_types__), __WEBPACK_IMPORTED_MODULE_3_reduce_css_calc__ = __webpack_require__(994), __WEBPACK_IMPORTED_MODULE_3_reduce_css_calc___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_reduce_css_calc__), __WEBPACK_IMPORTED_MODULE_4_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_4_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_classnames__), __WEBPACK_IMPORTED_MODULE_5__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_6__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_7__util_DOMUtils__ = __webpack_require__(247), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -3641,8 +3671,8 @@ var _publicBundleJs = []byte(`!function(modules) { key: "render", value: function() { var _props = this.props, dx = _props.dx, dy = _props.dy, textAnchor = _props.textAnchor, verticalAnchor = _props.verticalAnchor, scaleToFit = _props.scaleToFit, angle = _props.angle, lineHeight = _props.lineHeight, capHeight = _props.capHeight, className = _props.className, textProps = _objectWithoutProperties(_props, [ "dx", "dy", "textAnchor", "verticalAnchor", "scaleToFit", "angle", "lineHeight", "capHeight", "className" ]), wordsByLines = this.state.wordsByLines; - if (!Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.e)(textProps.x) || !Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.e)(textProps.y)) return null; - var x = textProps.x + (Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.f)(dx) ? dx : 0), y = textProps.y + (Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.f)(dy) ? dy : 0), startDy = void 0; + if (!Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.f)(textProps.x) || !Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.f)(textProps.y)) return null; + var x = textProps.x + (Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.g)(dx) ? dx : 0), y = textProps.y + (Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.g)(dy) ? dy : 0), startDy = void 0; switch (verticalAnchor) { case "start": startDy = __WEBPACK_IMPORTED_MODULE_3_reduce_css_calc___default()("calc(" + capHeight + ")"); @@ -3761,12 +3791,12 @@ var _publicBundleJs = []byte(`!function(modules) { }, _class = _temp)) || _class; __webpack_exports__.a = Dot; }, function(module, exports, __webpack_require__) { - var IObject = __webpack_require__(175), defined = __webpack_require__(177); + var IObject = __webpack_require__(177), defined = __webpack_require__(179); module.exports = function(it) { return IObject(defined(it)); }; }, function(module, exports, __webpack_require__) { - var defined = __webpack_require__(177); + var defined = __webpack_require__(179); module.exports = function(it) { return Object(defined(it)); }; @@ -3805,7 +3835,7 @@ var _publicBundleJs = []byte(`!function(modules) { return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor; }; - }(), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _toCss = __webpack_require__(193), _toCss2 = _interopRequireDefault(_toCss), _toCssValue = __webpack_require__(194), _toCssValue2 = _interopRequireDefault(_toCssValue), StyleRule = function() { + }(), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _toCss = __webpack_require__(195), _toCss2 = _interopRequireDefault(_toCss), _toCssValue = __webpack_require__(196), _toCssValue2 = _interopRequireDefault(_toCssValue), StyleRule = function() { function StyleRule(key, style, options) { _classCallCheck(this, StyleRule), this.type = "style", this.isProcessed = !1; var sheet = options.sheet, Renderer = options.Renderer, selector = options.selector; @@ -3898,17 +3928,17 @@ var _publicBundleJs = []byte(`!function(modules) { } __webpack_exports__.a = _contains; var __WEBPACK_IMPORTED_MODULE_0__indexOf__ = __webpack_require__(316); +}, function(module, exports, __webpack_require__) { + function isSymbol(value) { + return "symbol" == typeof value || isObjectLike(value) && baseGetTag(value) == symbolTag; + } + var baseGetTag = __webpack_require__(59), isObjectLike = __webpack_require__(52), symbolTag = "[object Symbol]"; + module.exports = isSymbol; }, function(module, exports) { function identity(value) { return value; } module.exports = identity; -}, function(module, exports, __webpack_require__) { - function isSymbol(value) { - return "symbol" == typeof value || isObjectLike(value) && baseGetTag(value) == symbolTag; - } - var baseGetTag = __webpack_require__(59), isObjectLike = __webpack_require__(51), symbolTag = "[object Symbol]"; - module.exports = isSymbol; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_exports__.a = function(a, b) { @@ -4079,7 +4109,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp, __WEBPACK_IMPORTED_MODULE_0_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_0_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_2_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react__), __WEBPACK_IMPORTED_MODULE_3_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__), __WEBPACK_IMPORTED_MODULE_4_d3_shape__ = __webpack_require__(230), __WEBPACK_IMPORTED_MODULE_5_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_5_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_classnames__), __WEBPACK_IMPORTED_MODULE_6__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_7__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_8__util_DataUtils__ = __webpack_require__(12), _extends = Object.assign || function(target) { + var _class, _class2, _temp, __WEBPACK_IMPORTED_MODULE_0_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_0_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_2_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react__), __WEBPACK_IMPORTED_MODULE_3_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__), __WEBPACK_IMPORTED_MODULE_4_d3_shape__ = __webpack_require__(235), __WEBPACK_IMPORTED_MODULE_5_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_5_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_classnames__), __WEBPACK_IMPORTED_MODULE_6__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_7__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_8__util_DataUtils__ = __webpack_require__(12), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -4141,7 +4171,7 @@ var _publicBundleJs = []byte(`!function(modules) { return d.base.y; }), lineFunction.defined(defined).curve(curveFactory), lineFunction(areaPoints); } - return lineFunction = "vertical" === layout && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(baseLine) ? Object(__WEBPACK_IMPORTED_MODULE_4_d3_shape__.a)().y(getY).x1(getX).x0(baseLine) : Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(baseLine) ? Object(__WEBPACK_IMPORTED_MODULE_4_d3_shape__.a)().x(getX).y1(getY).y0(baseLine) : Object(__WEBPACK_IMPORTED_MODULE_4_d3_shape__.m)().x(getX).y(getY), + return lineFunction = "vertical" === layout && Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(baseLine) ? Object(__WEBPACK_IMPORTED_MODULE_4_d3_shape__.a)().y(getY).x1(getX).x0(baseLine) : Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.g)(baseLine) ? Object(__WEBPACK_IMPORTED_MODULE_4_d3_shape__.a)().x(getX).y1(getY).y0(baseLine) : Object(__WEBPACK_IMPORTED_MODULE_4_d3_shape__.m)().x(getX).y(getY), lineFunction.defined(defined).curve(curveFactory), lineFunction(formatPoints); } }, { @@ -4219,6 +4249,7 @@ var _publicBundleJs = []byte(`!function(modules) { }(__WEBPACK_IMPORTED_MODULE_0_react__.Component), _class2.displayName = "XAxis", _class2.propTypes = { allowDecimals: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.bool, + allowDuplicatedCategory: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.bool, hide: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.bool, name: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.number ]), unit: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.number ]), @@ -4263,7 +4294,8 @@ var _publicBundleJs = []byte(`!function(modules) { }, allowDataOverflow: !1, scale: "auto", - reversed: !1 + reversed: !1, + allowDuplicatedCategory: !0 }, _class = _temp)) || _class; __webpack_exports__.a = XAxis; }, function(module, __webpack_exports__, __webpack_require__) { @@ -4312,6 +4344,7 @@ var _publicBundleJs = []byte(`!function(modules) { }(__WEBPACK_IMPORTED_MODULE_0_react__.Component), _class2.displayName = "YAxis", _class2.propTypes = { allowDecimals: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.bool, + allowDuplicatedCategory: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.bool, hide: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.bool, name: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.number ]), unit: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.number ]), @@ -4340,6 +4373,7 @@ var _publicBundleJs = []byte(`!function(modules) { interval: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.oneOf([ "preserveStart", "preserveEnd", "preserveStartEnd" ]) ]), reversed: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.bool }, _class2.defaultProps = { + allowDuplicatedCategory: !0, allowDecimals: !0, hide: !1, orientation: "left", @@ -4423,7 +4457,7 @@ var _publicBundleJs = []byte(`!function(modules) { }; }; }, function(module, exports, __webpack_require__) { - var $keys = __webpack_require__(272), enumBugKeys = __webpack_require__(181); + var $keys = __webpack_require__(272), enumBugKeys = __webpack_require__(183); module.exports = Object.keys || function(O) { return $keys(O, enumBugKeys); }; @@ -4607,7 +4641,7 @@ var _publicBundleJs = []byte(`!function(modules) { exports.default = RuleList; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__map__ = __webpack_require__(27), __WEBPACK_IMPORTED_MODULE_2__prop__ = __webpack_require__(199), pluck = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(p, list) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__map__ = __webpack_require__(27), __WEBPACK_IMPORTED_MODULE_2__prop__ = __webpack_require__(201), pluck = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(p, list) { return Object(__WEBPACK_IMPORTED_MODULE_1__map__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__prop__.a)(p), list); }); __webpack_exports__.a = pluck; @@ -4700,7 +4734,7 @@ var _publicBundleJs = []byte(`!function(modules) { module.exports = Symbol; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__src_path__ = __webpack_require__(865); + var __WEBPACK_IMPORTED_MODULE_0__src_path__ = __webpack_require__(891); __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__src_path__.a; }); @@ -4752,13 +4786,13 @@ var _publicBundleJs = []byte(`!function(modules) { function isArrayLike(value) { return null != value && isLength(value.length) && !isFunction(value); } - var isFunction = __webpack_require__(11), isLength = __webpack_require__(242); + var isFunction = __webpack_require__(11), isLength = __webpack_require__(244); module.exports = isArrayLike; }, function(module, exports, __webpack_require__) { function baseIteratee(value) { return "function" == typeof value ? value : null == value ? identity : "object" == typeof value ? isArray(value) ? baseMatchesProperty(value[0], value[1]) : baseMatches(value) : property(value); } - var baseMatches = __webpack_require__(971), baseMatchesProperty = __webpack_require__(974), identity = __webpack_require__(82), isArray = __webpack_require__(16), property = __webpack_require__(983); + var baseMatches = __webpack_require__(976), baseMatchesProperty = __webpack_require__(979), identity = __webpack_require__(83), isArray = __webpack_require__(16), property = __webpack_require__(983); module.exports = baseIteratee; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -4809,7 +4843,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, linearish(scale); } __webpack_exports__.b = linearish, __webpack_exports__.a = linear; - var __WEBPACK_IMPORTED_MODULE_0_d3_array__ = __webpack_require__(53), __WEBPACK_IMPORTED_MODULE_1_d3_interpolate__ = __webpack_require__(114), __WEBPACK_IMPORTED_MODULE_2__continuous__ = __webpack_require__(166), __WEBPACK_IMPORTED_MODULE_3__tickFormat__ = __webpack_require__(1050); + var __WEBPACK_IMPORTED_MODULE_0_d3_array__ = __webpack_require__(53), __WEBPACK_IMPORTED_MODULE_1_d3_interpolate__ = __webpack_require__(114), __WEBPACK_IMPORTED_MODULE_2__continuous__ = __webpack_require__(168), __WEBPACK_IMPORTED_MODULE_3__tickFormat__ = __webpack_require__(1050); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; var __WEBPACK_IMPORTED_MODULE_0__src_value__ = __webpack_require__(250); @@ -4817,7 +4851,7 @@ var _publicBundleJs = []byte(`!function(modules) { return __WEBPACK_IMPORTED_MODULE_0__src_value__.a; }); var __WEBPACK_IMPORTED_MODULE_5__src_number__ = (__webpack_require__(426), __webpack_require__(253), - __webpack_require__(424), __webpack_require__(427), __webpack_require__(165)); + __webpack_require__(424), __webpack_require__(427), __webpack_require__(167)); __webpack_require__.d(__webpack_exports__, "c", function() { return __WEBPACK_IMPORTED_MODULE_5__src_number__.a; }); @@ -5023,7 +5057,7 @@ var _publicBundleJs = []byte(`!function(modules) { var axis = axisMap[id], orientation = axis.orientation, domain = axis.domain, _axis$padding = axis.padding, padding = void 0 === _axis$padding ? {} : _axis$padding, mirror = axis.mirror, reversed = axis.reversed, offsetKey = orientation + (mirror ? "Mirror" : ""), range = void 0, x = void 0, y = void 0, needSpace = void 0; range = "xAxis" === axisType ? [ offset.left + (padding.left || 0), offset.left + offset.width - (padding.right || 0) ] : "yAxis" === axisType ? "horizontal" === layout ? [ offset.top + offset.height - (padding.bottom || 0), offset.top + (padding.top || 0) ] : [ offset.top + (padding.top || 0), offset.top + offset.height - (padding.bottom || 0) ] : axis.range, reversed && (range = [ range[1], range[0] ]); - var _parseScale = Object(__WEBPACK_IMPORTED_MODULE_0__ChartUtils__.z)(axis, chartName), scale = _parseScale.scale, realScaleType = _parseScale.realScaleType; + var _parseScale = Object(__WEBPACK_IMPORTED_MODULE_0__ChartUtils__.A)(axis, chartName), scale = _parseScale.scale, realScaleType = _parseScale.realScaleType; scale.domain(domain).range(range), Object(__WEBPACK_IMPORTED_MODULE_0__ChartUtils__.c)(scale); var ticks = Object(__WEBPACK_IMPORTED_MODULE_0__ChartUtils__.v)(scale, _extends({}, axis, { realScaleType: realScaleType @@ -5039,7 +5073,8 @@ var _publicBundleJs = []byte(`!function(modules) { width: "xAxis" === axisType ? offset.width : axis.width, height: "yAxis" === axisType ? offset.height : axis.height }); - return axis.hide || "xAxis" !== axisType ? axis.hide || (steps[offsetKey] += (needSpace ? -1 : 1) * finalAxis.width) : steps[offsetKey] += (needSpace ? -1 : 1) * finalAxis.height, + return finalAxis.bandSize = Object(__WEBPACK_IMPORTED_MODULE_0__ChartUtils__.g)(finalAxis, ticks), + axis.hide || "xAxis" !== axisType ? axis.hide || (steps[offsetKey] += (needSpace ? -1 : 1) * finalAxis.width) : steps[offsetKey] += (needSpace ? -1 : 1) * finalAxis.height, _extends({}, result, _defineProperty({}, id, finalAxis)); }, {}); }; @@ -5105,7 +5140,7 @@ var _publicBundleJs = []byte(`!function(modules) { var hasOwnProperty = Object.prototype.hasOwnProperty; module.exports = shallowEqual; }, function(module, exports, __webpack_require__) { - var toInteger = __webpack_require__(178), min = Math.min; + var toInteger = __webpack_require__(180), min = Math.min; module.exports = function(it) { return it > 0 ? min(toInteger(it), 9007199254740991) : 0; }; @@ -5135,7 +5170,7 @@ var _publicBundleJs = []byte(`!function(modules) { return obj && "function" == typeof _symbol2.default && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? "symbol" : void 0 === obj ? "undefined" : _typeof(obj); }; }, function(module, exports, __webpack_require__) { - var anObject = __webpack_require__(65), dPs = __webpack_require__(478), enumBugKeys = __webpack_require__(181), IE_PROTO = __webpack_require__(179)("IE_PROTO"), Empty = function() {}, createDict = function() { + var anObject = __webpack_require__(65), dPs = __webpack_require__(478), enumBugKeys = __webpack_require__(183), IE_PROTO = __webpack_require__(181)("IE_PROTO"), Empty = function() {}, createDict = function() { var iframeDocument, iframe = __webpack_require__(271)("iframe"), i = enumBugKeys.length; for (iframe.style.display = "none", __webpack_require__(479).appendChild(iframe), iframe.src = "javascript:", iframeDocument = iframe.contentWindow.document, iframeDocument.open(), @@ -5149,7 +5184,7 @@ var _publicBundleJs = []byte(`!function(modules) { result[IE_PROTO] = O) : result = createDict(), void 0 === Properties ? result : dPs(result, Properties); }; }, function(module, exports, __webpack_require__) { - var def = __webpack_require__(32).f, has = __webpack_require__(67), TAG = __webpack_require__(28)("toStringTag"); + var def = __webpack_require__(32).f, has = __webpack_require__(67), TAG = __webpack_require__(29)("toStringTag"); module.exports = function(it, tag, stat) { it && !has(it = stat ? it : it.prototype, TAG) && def(it, TAG, { configurable: !0, @@ -5392,13 +5427,13 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = _containsWith; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_complement__ = __webpack_require__(318), __WEBPACK_IMPORTED_MODULE_1__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_2__filter__ = __webpack_require__(208), reject = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry2__.a)(function(pred, filterable) { + var __WEBPACK_IMPORTED_MODULE_0__internal_complement__ = __webpack_require__(318), __WEBPACK_IMPORTED_MODULE_1__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_2__filter__ = __webpack_require__(210), reject = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry2__.a)(function(pred, filterable) { return Object(__WEBPACK_IMPORTED_MODULE_2__filter__.a)(Object(__WEBPACK_IMPORTED_MODULE_0__internal_complement__.a)(pred), filterable); }); __webpack_exports__.a = reject; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curryN__ = __webpack_require__(135), __WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__ = __webpack_require__(15), __WEBPACK_IMPORTED_MODULE_2__internal_has__ = __webpack_require__(26), __WEBPACK_IMPORTED_MODULE_3__internal_reduce__ = __webpack_require__(29), __WEBPACK_IMPORTED_MODULE_4__internal_xreduceBy__ = __webpack_require__(615), reduceBy = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curryN__.a)(4, [], Object(__WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__.a)([], __WEBPACK_IMPORTED_MODULE_4__internal_xreduceBy__.a, function(valueFn, valueAcc, keyFn, list) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curryN__ = __webpack_require__(135), __WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__ = __webpack_require__(15), __WEBPACK_IMPORTED_MODULE_2__internal_has__ = __webpack_require__(26), __WEBPACK_IMPORTED_MODULE_3__internal_reduce__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_4__internal_xreduceBy__ = __webpack_require__(615), reduceBy = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curryN__.a)(4, [], Object(__WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__.a)([], __WEBPACK_IMPORTED_MODULE_4__internal_xreduceBy__.a, function(valueFn, valueAcc, keyFn, list) { return Object(__WEBPACK_IMPORTED_MODULE_3__internal_reduce__.a)(function(acc, elt) { var key = keyFn(elt); return acc[key] = valueFn(Object(__WEBPACK_IMPORTED_MODULE_2__internal_has__.a)(key, acc) ? acc[key] : valueAcc, elt), @@ -5429,7 +5464,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = lens; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__internal_isObject__ = __webpack_require__(210), __WEBPACK_IMPORTED_MODULE_2__mergeWithKey__ = __webpack_require__(217), mergeDeepWithKey = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function mergeDeepWithKey(fn, lObj, rObj) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__internal_isObject__ = __webpack_require__(212), __WEBPACK_IMPORTED_MODULE_2__mergeWithKey__ = __webpack_require__(219), mergeDeepWithKey = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function mergeDeepWithKey(fn, lObj, rObj) { return Object(__WEBPACK_IMPORTED_MODULE_2__mergeWithKey__.a)(function(k, lVal, rVal) { return Object(__WEBPACK_IMPORTED_MODULE_1__internal_isObject__.a)(lVal) && Object(__WEBPACK_IMPORTED_MODULE_1__internal_isObject__.a)(rVal) ? mergeDeepWithKey(fn, lVal, rVal) : fn(k, lVal, rVal); }, lObj, rObj); @@ -5715,6 +5750,62 @@ var _publicBundleJs = []byte(`!function(modules) { return !0; } }; +}, function(module, exports, __webpack_require__) { + function get(object, path, defaultValue) { + var result = null == object ? void 0 : baseGet(object, path); + return void 0 === result ? defaultValue : result; + } + var baseGet = __webpack_require__(366); + module.exports = get; +}, function(module, exports, __webpack_require__) { + var getNative = __webpack_require__(70), nativeCreate = getNative(Object, "create"); + module.exports = nativeCreate; +}, function(module, exports, __webpack_require__) { + function ListCache(entries) { + var index = -1, length = null == entries ? 0 : entries.length; + for (this.clear(); ++index < length; ) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + var listCacheClear = __webpack_require__(877), listCacheDelete = __webpack_require__(878), listCacheGet = __webpack_require__(879), listCacheHas = __webpack_require__(880), listCacheSet = __webpack_require__(881); + ListCache.prototype.clear = listCacheClear, ListCache.prototype.delete = listCacheDelete, + ListCache.prototype.get = listCacheGet, ListCache.prototype.has = listCacheHas, + ListCache.prototype.set = listCacheSet, module.exports = ListCache; +}, function(module, exports, __webpack_require__) { + function assocIndexOf(array, key) { + for (var length = array.length; length--; ) if (eq(array[length][0], key)) return length; + return -1; + } + var eq = __webpack_require__(230); + module.exports = assocIndexOf; +}, function(module, exports, __webpack_require__) { + function getMapData(map, key) { + var data = map.__data__; + return isKeyable(key) ? data["string" == typeof key ? "string" : "hash"] : data.map; + } + var isKeyable = __webpack_require__(883); + module.exports = getMapData; +}, function(module, exports) { + function arrayMap(array, iteratee) { + for (var index = -1, length = null == array ? 0 : array.length, result = Array(length); ++index < length; ) result[index] = iteratee(array[index], index, array); + return result; + } + module.exports = arrayMap; +}, function(module, exports, __webpack_require__) { + function toKey(value) { + if ("string" == typeof value || isSymbol(value)) return value; + var result = value + ""; + return "0" == result && 1 / value == -INFINITY ? "-0" : result; + } + var isSymbol = __webpack_require__(82), INFINITY = 1 / 0; + module.exports = toKey; +}, function(module, exports, __webpack_require__) { + function isNaN(value) { + return isNumber(value) && value != +value; + } + var isNumber = __webpack_require__(232); + module.exports = isNaN; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; function Linear(context) { @@ -5881,7 +5972,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_0_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_2_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react__), __WEBPACK_IMPORTED_MODULE_3_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__), __WEBPACK_IMPORTED_MODULE_4_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_5__DefaultTooltipContent__ = (__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react_smooth__), + var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_0_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_2_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react__), __WEBPACK_IMPORTED_MODULE_3_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__), __WEBPACK_IMPORTED_MODULE_4_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_5__DefaultTooltipContent__ = (__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react_smooth__), __webpack_require__(988)), __WEBPACK_IMPORTED_MODULE_6__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_7__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_8__util_PureRender__ = __webpack_require__(8), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; @@ -6010,11 +6101,11 @@ var _publicBundleJs = []byte(`!function(modules) { position: "absolute", top: 0 }, wrapperStyle), translateX = void 0, translateY = void 0; - if (position && Object(__WEBPACK_IMPORTED_MODULE_7__util_DataUtils__.f)(position.x) && Object(__WEBPACK_IMPORTED_MODULE_7__util_DataUtils__.f)(position.y)) translateX = position.x, + if (position && Object(__WEBPACK_IMPORTED_MODULE_7__util_DataUtils__.g)(position.x) && Object(__WEBPACK_IMPORTED_MODULE_7__util_DataUtils__.g)(position.y)) translateX = position.x, translateY = position.y; else { var _state2 = this.state, boxWidth = _state2.boxWidth, boxHeight = _state2.boxHeight; - boxWidth > 0 && boxHeight > 0 && coordinate ? (translateX = position && Object(__WEBPACK_IMPORTED_MODULE_7__util_DataUtils__.f)(position.x) ? position.x : Math.max(coordinate.x + boxWidth + offset > viewBox.x + viewBox.width ? coordinate.x - boxWidth - offset : coordinate.x + offset, viewBox.x), - translateY = position && Object(__WEBPACK_IMPORTED_MODULE_7__util_DataUtils__.f)(position.y) ? position.y : Math.max(coordinate.y + boxHeight + offset > viewBox.y + viewBox.height ? coordinate.y - boxHeight - offset : coordinate.y + offset, viewBox.y)) : outerStyle.visibility = "hidden"; + boxWidth > 0 && boxHeight > 0 && coordinate ? (translateX = position && Object(__WEBPACK_IMPORTED_MODULE_7__util_DataUtils__.g)(position.x) ? position.x : Math.max(coordinate.x + boxWidth + offset > viewBox.x + viewBox.width ? coordinate.x - boxWidth - offset : coordinate.x + offset, viewBox.x), + translateY = position && Object(__WEBPACK_IMPORTED_MODULE_7__util_DataUtils__.g)(position.y) ? position.y : Math.max(coordinate.y + boxHeight + offset > viewBox.y + viewBox.height ? coordinate.y - boxHeight - offset : coordinate.y + offset, viewBox.y)) : outerStyle.visibility = "hidden"; } return outerStyle = _extends({}, outerStyle, Object(__WEBPACK_IMPORTED_MODULE_4_react_smooth__.translateStyle)({ transform: "translate(" + translateX + "px, " + translateY + "px)" @@ -6034,35 +6125,6 @@ var _publicBundleJs = []byte(`!function(modules) { }(__WEBPACK_IMPORTED_MODULE_2_react__.Component), _class2.displayName = "Tooltip", _class2.propTypes = propTypes, _class2.defaultProps = defaultProps, _class = _temp2)) || _class; __webpack_exports__.a = Tooltip; -}, function(module, exports, __webpack_require__) { - function ListCache(entries) { - var index = -1, length = null == entries ? 0 : entries.length; - for (this.clear(); ++index < length; ) { - var entry = entries[index]; - this.set(entry[0], entry[1]); - } - } - var listCacheClear = __webpack_require__(890), listCacheDelete = __webpack_require__(891), listCacheGet = __webpack_require__(892), listCacheHas = __webpack_require__(893), listCacheSet = __webpack_require__(894); - ListCache.prototype.clear = listCacheClear, ListCache.prototype.delete = listCacheDelete, - ListCache.prototype.get = listCacheGet, ListCache.prototype.has = listCacheHas, - ListCache.prototype.set = listCacheSet, module.exports = ListCache; -}, function(module, exports, __webpack_require__) { - function assocIndexOf(array, key) { - for (var length = array.length; length--; ) if (eq(array[length][0], key)) return length; - return -1; - } - var eq = __webpack_require__(236); - module.exports = assocIndexOf; -}, function(module, exports, __webpack_require__) { - var getNative = __webpack_require__(71), nativeCreate = getNative(Object, "create"); - module.exports = nativeCreate; -}, function(module, exports, __webpack_require__) { - function getMapData(map, key) { - var data = map.__data__; - return isKeyable(key) ? data["string" == typeof key ? "string" : "hash"] : data.map; - } - var isKeyable = __webpack_require__(912); - module.exports = getMapData; }, function(module, exports, __webpack_require__) { "use strict"; (function(process) { @@ -6077,7 +6139,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.warn = exports.getTransitionVal = exports.compose = exports.translateStyle = exports.mapObject = exports.debugf = exports.debug = exports.log = exports.generatePrefixStyle = exports.getDashCase = exports.identity = exports.getIntersectionKeys = void 0; - var _intersection2 = __webpack_require__(947), _intersection3 = function(obj) { + var _intersection2 = __webpack_require__(952), _intersection3 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -6149,20 +6211,6 @@ var _publicBundleJs = []byte(`!function(modules) { } }; }).call(exports, __webpack_require__(3)); -}, function(module, exports) { - function arrayMap(array, iteratee) { - for (var index = -1, length = null == array ? 0 : array.length, result = Array(length); ++index < length; ) result[index] = iteratee(array[index], index, array); - return result; - } - module.exports = arrayMap; -}, function(module, exports, __webpack_require__) { - function toKey(value) { - if ("string" == typeof value || isSymbol(value)) return value; - var result = value + ""; - return "0" == result && 1 / value == -INFINITY ? "-0" : result; - } - var isSymbol = __webpack_require__(83), INFINITY = 1 / 0; - module.exports = toKey; }, function(module, exports, __webpack_require__) { function baseExtremum(array, iteratee, comparator) { for (var index = -1, length = array.length; ++index < length; ) { @@ -6171,7 +6219,7 @@ var _publicBundleJs = []byte(`!function(modules) { } return result; } - var isSymbol = __webpack_require__(83); + var isSymbol = __webpack_require__(82); module.exports = baseExtremum; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -6296,7 +6344,7 @@ var _publicBundleJs = []byte(`!function(modules) { Constructor; }; }(), getDeltaAngle = function(startAngle, endAngle) { - return Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.h)(endAngle - startAngle) * Math.min(Math.abs(endAngle - startAngle), 359.999); + return Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.i)(endAngle - startAngle) * Math.min(Math.abs(endAngle - startAngle), 359.999); }, getTangentCircle = function(_ref) { var cx = _ref.cx, cy = _ref.cy, radius = _ref.radius, angle = _ref.angle, sign = _ref.sign, isExternal = _ref.isExternal, cornerRadius = _ref.cornerRadius, centerRadius = cornerRadius * (isExternal ? 1 : -1) + radius, theta = Math.asin(cornerRadius / centerRadius) / __WEBPACK_IMPORTED_MODULE_5__util_PolarUtils__.a, centerAngle = angle + sign * theta; return { @@ -6313,7 +6361,7 @@ var _publicBundleJs = []byte(`!function(modules) { } else path += "L " + cx + "," + cy + " Z"; return path; }, getSectorWithCorner = function(_ref3) { - var cx = _ref3.cx, cy = _ref3.cy, innerRadius = _ref3.innerRadius, outerRadius = _ref3.outerRadius, cornerRadius = _ref3.cornerRadius, startAngle = _ref3.startAngle, endAngle = _ref3.endAngle, sign = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.h)(endAngle - startAngle), _getTangentCircle = getTangentCircle({ + var cx = _ref3.cx, cy = _ref3.cy, innerRadius = _ref3.innerRadius, outerRadius = _ref3.outerRadius, cornerRadius = _ref3.cornerRadius, startAngle = _ref3.startAngle, endAngle = _ref3.endAngle, sign = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.i)(endAngle - startAngle), _getTangentCircle = getTangentCircle({ cx: cx, cy: cy, radius: outerRadius, @@ -6368,7 +6416,7 @@ var _publicBundleJs = []byte(`!function(modules) { value: function() { var _props = this.props, cx = _props.cx, cy = _props.cy, innerRadius = _props.innerRadius, outerRadius = _props.outerRadius, cornerRadius = _props.cornerRadius, startAngle = _props.startAngle, endAngle = _props.endAngle, className = _props.className; if (outerRadius < innerRadius || startAngle === endAngle) return null; - var layerClass = __WEBPACK_IMPORTED_MODULE_2_classnames___default()("recharts-sector", className), deltaRadius = outerRadius - innerRadius, cr = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.b)(cornerRadius, deltaRadius, 0, !0), path = void 0; + var layerClass = __WEBPACK_IMPORTED_MODULE_2_classnames___default()("recharts-sector", className), deltaRadius = outerRadius - innerRadius, cr = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.c)(cornerRadius, deltaRadius, 0, !0), path = void 0; return path = cr > 0 && Math.abs(startAngle - endAngle) < 360 ? getSectorWithCorner({ cx: cx, cy: cy, @@ -6575,7 +6623,8 @@ var _publicBundleJs = []byte(`!function(modules) { tickFormatter: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.func, domain: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.arrayOf(__WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOf([ "auto", "dataMin", "dataMax" ]) ])), scale: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOf([ "auto", "linear", "pow", "sqrt", "log", "identity", "time", "band", "point", "ordinal", "quantile", "quantize", "utcTime", "sequential", "threshold" ]), __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.func ]), - allowDataOverflow: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.bool + allowDataOverflow: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.bool, + allowDuplicatedCategory: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.bool }), _class2.defaultProps = { type: "number", radiusAxisId: 0, @@ -6589,7 +6638,8 @@ var _publicBundleJs = []byte(`!function(modules) { tickCount: 5, domain: [ 0, "auto" ], allowDataOverflow: !1, - scale: "auto" + scale: "auto", + allowDuplicatedCategory: !0 }, _class = _temp)) || _class; __webpack_exports__.a = PolarRadiusAxis; }, function(module, __webpack_exports__, __webpack_require__) { @@ -6737,7 +6787,8 @@ var _publicBundleJs = []byte(`!function(modules) { })), stroke: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.string, orientation: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.oneOf([ "inner", "outer" ]), - tickFormatter: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func + tickFormatter: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func, + allowDuplicatedCategory: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.bool }), _class2.defaultProps = { type: "category", angleAxisId: 0, @@ -6749,7 +6800,8 @@ var _publicBundleJs = []byte(`!function(modules) { axisLine: !0, tickLine: !0, tick: !0, - hide: !1 + hide: !1, + allowDuplicatedCategory: !0 }, _class = _temp)) || _class; __webpack_exports__.a = PolarAngleAxis; }, function(module, __webpack_exports__, __webpack_require__) { @@ -6831,14 +6883,14 @@ var _publicBundleJs = []byte(`!function(modules) { } } } - if ("production" !== process.env.NODE_ENV) var invariant = __webpack_require__(90), warning = __webpack_require__(120), ReactPropTypesSecret = __webpack_require__(173), loggedTypeFailures = {}; + if ("production" !== process.env.NODE_ENV) var invariant = __webpack_require__(90), warning = __webpack_require__(120), ReactPropTypesSecret = __webpack_require__(175), loggedTypeFailures = {}; module.exports = checkPropTypes; }).call(exports, __webpack_require__(3)); }, function(module, exports, __webpack_require__) { "use strict"; module.exports = "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"; }, function(module, exports, __webpack_require__) { - var isObject = __webpack_require__(49); + var isObject = __webpack_require__(50); module.exports = function(it, S) { if (!isObject(it)) return it; var fn, val; @@ -6848,7 +6900,7 @@ var _publicBundleJs = []byte(`!function(modules) { throw TypeError("Can't convert object to primitive value"); }; }, function(module, exports, __webpack_require__) { - var cof = __webpack_require__(176); + var cof = __webpack_require__(178); module.exports = Object("z").propertyIsEnumerable(0) ? Object : function(it) { return "String" == cof(it) ? it.split("") : Object(it); }; @@ -6868,7 +6920,7 @@ var _publicBundleJs = []byte(`!function(modules) { return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); }; }, function(module, exports, __webpack_require__) { - var shared = __webpack_require__(180)("keys"), uid = __webpack_require__(124); + var shared = __webpack_require__(182)("keys"), uid = __webpack_require__(124); module.exports = function(key) { return shared[key] || (shared[key] = uid(key)); }; @@ -6889,7 +6941,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, function(module, exports, __webpack_require__) { "use strict"; var $at = __webpack_require__(476)(!0); - __webpack_require__(185)(String, "String", function(iterated) { + __webpack_require__(187)(String, "String", function(iterated) { this._t = String(iterated), this._i = 0; }, function() { var point, O = this._t, index = this._i; @@ -6903,7 +6955,7 @@ var _publicBundleJs = []byte(`!function(modules) { }); }, function(module, exports, __webpack_require__) { "use strict"; - var LIBRARY = __webpack_require__(186), $export = __webpack_require__(25), redefine = __webpack_require__(275), hide = __webpack_require__(56), has = __webpack_require__(67), Iterators = __webpack_require__(93), $iterCreate = __webpack_require__(477), setToStringTag = __webpack_require__(128), getPrototypeOf = __webpack_require__(273), ITERATOR = __webpack_require__(28)("iterator"), BUGGY = !([].keys && "next" in [].keys()), returnThis = function() { + var LIBRARY = __webpack_require__(188), $export = __webpack_require__(25), redefine = __webpack_require__(275), hide = __webpack_require__(56), has = __webpack_require__(67), Iterators = __webpack_require__(93), $iterCreate = __webpack_require__(477), setToStringTag = __webpack_require__(128), getPrototypeOf = __webpack_require__(273), ITERATOR = __webpack_require__(29)("iterator"), BUGGY = !([].keys && "next" in [].keys()), returnThis = function() { return this; }; module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) { @@ -6936,9 +6988,9 @@ var _publicBundleJs = []byte(`!function(modules) { }, function(module, exports) { module.exports = !0; }, function(module, exports, __webpack_require__) { - exports.f = __webpack_require__(28); + exports.f = __webpack_require__(29); }, function(module, exports, __webpack_require__) { - var META = __webpack_require__(124)("meta"), isObject = __webpack_require__(49), has = __webpack_require__(67), setDesc = __webpack_require__(32).f, id = 0, isExtensible = Object.isExtensible || function() { + var META = __webpack_require__(124)("meta"), isObject = __webpack_require__(50), has = __webpack_require__(67), setDesc = __webpack_require__(32).f, id = 0, isExtensible = Object.isExtensible || function() { return !0; }, FREEZE = !__webpack_require__(66)(function() { return isExtensible(Object.preventExtensions({})); @@ -6975,7 +7027,7 @@ var _publicBundleJs = []byte(`!function(modules) { onFreeze: onFreeze }; }, function(module, exports, __webpack_require__) { - var global = __webpack_require__(36), core = __webpack_require__(22), LIBRARY = __webpack_require__(186), wksExt = __webpack_require__(187), defineProperty = __webpack_require__(32).f; + var global = __webpack_require__(36), core = __webpack_require__(22), LIBRARY = __webpack_require__(188), wksExt = __webpack_require__(189), defineProperty = __webpack_require__(32).f; module.exports = function(name) { var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {}); "_" == name.charAt(0) || name in $Symbol || defineProperty($Symbol, name, { @@ -7109,7 +7161,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.default = toCss; - var _toCssValue = __webpack_require__(194), _toCssValue2 = function(obj) { + var _toCssValue = __webpack_require__(196), _toCssValue2 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -7199,7 +7251,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = prop; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_concat__ = __webpack_require__(33), __WEBPACK_IMPORTED_MODULE_1__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_2__internal_reduce__ = __webpack_require__(29), __WEBPACK_IMPORTED_MODULE_3__map__ = __webpack_require__(27), ap = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry2__.a)(function(applyF, applyX) { + var __WEBPACK_IMPORTED_MODULE_0__internal_concat__ = __webpack_require__(33), __WEBPACK_IMPORTED_MODULE_1__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_2__internal_reduce__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_3__map__ = __webpack_require__(27), ap = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry2__.a)(function(applyF, applyX) { return "function" == typeof applyX["fantasy-land/ap"] ? applyX["fantasy-land/ap"](applyF) : "function" == typeof applyF.ap ? applyF.ap(applyX) : "function" == typeof applyF ? function(x) { return applyF(x)(applyX(x)); } : Object(__WEBPACK_IMPORTED_MODULE_2__internal_reduce__.a)(function(acc, f) { @@ -7262,7 +7314,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = concat; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__ = __webpack_require__(15), __WEBPACK_IMPORTED_MODULE_2__internal_filter__ = __webpack_require__(209), __WEBPACK_IMPORTED_MODULE_3__internal_isObject__ = __webpack_require__(210), __WEBPACK_IMPORTED_MODULE_4__internal_reduce__ = __webpack_require__(29), __WEBPACK_IMPORTED_MODULE_5__internal_xfilter__ = __webpack_require__(610), __WEBPACK_IMPORTED_MODULE_6__keys__ = __webpack_require__(44), filter = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(Object(__WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__.a)([ "filter" ], __WEBPACK_IMPORTED_MODULE_5__internal_xfilter__.a, function(pred, filterable) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__ = __webpack_require__(15), __WEBPACK_IMPORTED_MODULE_2__internal_filter__ = __webpack_require__(211), __WEBPACK_IMPORTED_MODULE_3__internal_isObject__ = __webpack_require__(212), __WEBPACK_IMPORTED_MODULE_4__internal_reduce__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_5__internal_xfilter__ = __webpack_require__(610), __WEBPACK_IMPORTED_MODULE_6__keys__ = __webpack_require__(44), filter = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(Object(__WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__.a)([ "filter" ], __WEBPACK_IMPORTED_MODULE_5__internal_xfilter__.a, function(pred, filterable) { return Object(__WEBPACK_IMPORTED_MODULE_3__internal_isObject__.a)(filterable) ? Object(__WEBPACK_IMPORTED_MODULE_4__internal_reduce__.a)(function(acc, key) { return pred(filterable[key]) && (acc[key] = filterable[key]), acc; }, {}, Object(__WEBPACK_IMPORTED_MODULE_6__keys__.a)(filterable)) : Object(__WEBPACK_IMPORTED_MODULE_2__internal_filter__.a)(pred, filterable); @@ -7296,7 +7348,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = take; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__internal_identity__ = __webpack_require__(214), identity = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(__WEBPACK_IMPORTED_MODULE_1__internal_identity__.a); + var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__internal_identity__ = __webpack_require__(216), identity = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(__WEBPACK_IMPORTED_MODULE_1__internal_identity__.a); __webpack_exports__.a = identity; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -7306,7 +7358,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = _identity; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__identity__ = __webpack_require__(213), __WEBPACK_IMPORTED_MODULE_1__uniqBy__ = __webpack_require__(333), uniq = Object(__WEBPACK_IMPORTED_MODULE_1__uniqBy__.a)(__WEBPACK_IMPORTED_MODULE_0__identity__.a); + var __WEBPACK_IMPORTED_MODULE_0__identity__ = __webpack_require__(215), __WEBPACK_IMPORTED_MODULE_1__uniqBy__ = __webpack_require__(333), uniq = Object(__WEBPACK_IMPORTED_MODULE_1__uniqBy__.a)(__WEBPACK_IMPORTED_MODULE_0__identity__.a); __webpack_exports__.a = uniq; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -7360,19 +7412,41 @@ var _publicBundleJs = []byte(`!function(modules) { function isString(value) { return "string" == typeof value || !isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag; } - var baseGetTag = __webpack_require__(59), isArray = __webpack_require__(16), isObjectLike = __webpack_require__(51), stringTag = "[object String]"; + var baseGetTag = __webpack_require__(59), isArray = __webpack_require__(16), isObjectLike = __webpack_require__(52), stringTag = "[object String]"; module.exports = isString; }, function(module, exports, __webpack_require__) { - function isNaN(value) { - return isNumber(value) && value != +value; + function isKey(value, object) { + if (isArray(value)) return !1; + var type = typeof value; + return !("number" != type && "symbol" != type && "boolean" != type && null != value && !isSymbol(value)) || (reIsPlainProp.test(value) || !reIsDeepProp.test(value) || null != object && value in Object(object)); } - var isNumber = __webpack_require__(227); - module.exports = isNaN; + var isArray = __webpack_require__(16), isSymbol = __webpack_require__(82), reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/; + module.exports = isKey; +}, function(module, exports, __webpack_require__) { + function MapCache(entries) { + var index = -1, length = null == entries ? 0 : entries.length; + for (this.clear(); ++index < length; ) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + var mapCacheClear = __webpack_require__(866), mapCacheDelete = __webpack_require__(882), mapCacheGet = __webpack_require__(884), mapCacheHas = __webpack_require__(885), mapCacheSet = __webpack_require__(886); + MapCache.prototype.clear = mapCacheClear, MapCache.prototype.delete = mapCacheDelete, + MapCache.prototype.get = mapCacheGet, MapCache.prototype.has = mapCacheHas, MapCache.prototype.set = mapCacheSet, + module.exports = MapCache; +}, function(module, exports) { + function eq(value, other) { + return value === other || value !== value && other !== other; + } + module.exports = eq; +}, function(module, exports, __webpack_require__) { + var getNative = __webpack_require__(70), root = __webpack_require__(46), Map = getNative(root, "Map"); + module.exports = Map; }, function(module, exports, __webpack_require__) { function isNumber(value) { return "number" == typeof value || isObjectLike(value) && baseGetTag(value) == numberTag; } - var baseGetTag = __webpack_require__(59), isObjectLike = __webpack_require__(51), numberTag = "[object Number]"; + var baseGetTag = __webpack_require__(59), isObjectLike = __webpack_require__(52), numberTag = "[object Number]"; module.exports = isNumber; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -7394,7 +7468,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__), __WEBPACK_IMPORTED_MODULE_2_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_2_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_prop_types__), __WEBPACK_IMPORTED_MODULE_3__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_4__DefaultLegendContent__ = __webpack_require__(863), __WEBPACK_IMPORTED_MODULE_5__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_6__util_ReactUtils__ = __webpack_require__(7), _extends = Object.assign || function(target) { + var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__), __WEBPACK_IMPORTED_MODULE_2_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_2_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_prop_types__), __WEBPACK_IMPORTED_MODULE_3__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_4__DefaultLegendContent__ = __webpack_require__(889), __WEBPACK_IMPORTED_MODULE_5__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_6__util_ReactUtils__ = __webpack_require__(7), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -7515,7 +7589,7 @@ var _publicBundleJs = []byte(`!function(modules) { key: "getWithHeight", value: function(item, chartWidth) { var layout = item.props.layout; - return "vertical" === layout && Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.f)(item.props.height) ? { + return "vertical" === layout && Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.g)(item.props.height) ? { height: item.props.height } : "horizontal" === layout ? { width: item.props.width || chartWidth @@ -7578,7 +7652,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp, __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__), __WEBPACK_IMPORTED_MODULE_1_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_1_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_prop_types__), __WEBPACK_IMPORTED_MODULE_2_d3_shape__ = __webpack_require__(230), __WEBPACK_IMPORTED_MODULE_3_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_3_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_classnames__), __WEBPACK_IMPORTED_MODULE_4__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_5__util_ReactUtils__ = __webpack_require__(7), _extends = Object.assign || function(target) { + var _class, _class2, _temp, __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__), __WEBPACK_IMPORTED_MODULE_1_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_1_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_prop_types__), __WEBPACK_IMPORTED_MODULE_2_d3_shape__ = __webpack_require__(235), __WEBPACK_IMPORTED_MODULE_3_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_3_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_classnames__), __WEBPACK_IMPORTED_MODULE_4__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_5__util_ReactUtils__ = __webpack_require__(7), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -7669,80 +7743,80 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = Symbols; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_1__src_area__ = (__webpack_require__(864), __webpack_require__(366)); + var __WEBPACK_IMPORTED_MODULE_1__src_area__ = (__webpack_require__(890), __webpack_require__(369)); __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_1__src_area__.a; }); - var __WEBPACK_IMPORTED_MODULE_2__src_line__ = __webpack_require__(231); + var __WEBPACK_IMPORTED_MODULE_2__src_line__ = __webpack_require__(236); __webpack_require__.d(__webpack_exports__, "m", function() { return __WEBPACK_IMPORTED_MODULE_2__src_line__.a; }); - var __WEBPACK_IMPORTED_MODULE_8__src_symbol__ = (__webpack_require__(866), __webpack_require__(869), - __webpack_require__(368), __webpack_require__(369), __webpack_require__(870), __webpack_require__(871)); + var __WEBPACK_IMPORTED_MODULE_8__src_symbol__ = (__webpack_require__(892), __webpack_require__(895), + __webpack_require__(371), __webpack_require__(372), __webpack_require__(896), __webpack_require__(897)); __webpack_require__.d(__webpack_exports__, "t", function() { return __WEBPACK_IMPORTED_MODULE_8__src_symbol__.a; }); - var __WEBPACK_IMPORTED_MODULE_9__src_symbol_circle__ = __webpack_require__(371); + var __WEBPACK_IMPORTED_MODULE_9__src_symbol_circle__ = __webpack_require__(374); __webpack_require__.d(__webpack_exports__, "u", function() { return __WEBPACK_IMPORTED_MODULE_9__src_symbol_circle__.a; }); - var __WEBPACK_IMPORTED_MODULE_10__src_symbol_cross__ = __webpack_require__(372); + var __WEBPACK_IMPORTED_MODULE_10__src_symbol_cross__ = __webpack_require__(375); __webpack_require__.d(__webpack_exports__, "v", function() { return __WEBPACK_IMPORTED_MODULE_10__src_symbol_cross__.a; }); - var __WEBPACK_IMPORTED_MODULE_11__src_symbol_diamond__ = __webpack_require__(373); + var __WEBPACK_IMPORTED_MODULE_11__src_symbol_diamond__ = __webpack_require__(376); __webpack_require__.d(__webpack_exports__, "w", function() { return __WEBPACK_IMPORTED_MODULE_11__src_symbol_diamond__.a; }); - var __WEBPACK_IMPORTED_MODULE_12__src_symbol_square__ = __webpack_require__(375); + var __WEBPACK_IMPORTED_MODULE_12__src_symbol_square__ = __webpack_require__(378); __webpack_require__.d(__webpack_exports__, "x", function() { return __WEBPACK_IMPORTED_MODULE_12__src_symbol_square__.a; }); - var __WEBPACK_IMPORTED_MODULE_13__src_symbol_star__ = __webpack_require__(374); + var __WEBPACK_IMPORTED_MODULE_13__src_symbol_star__ = __webpack_require__(377); __webpack_require__.d(__webpack_exports__, "y", function() { return __WEBPACK_IMPORTED_MODULE_13__src_symbol_star__.a; }); - var __WEBPACK_IMPORTED_MODULE_14__src_symbol_triangle__ = __webpack_require__(376); + var __WEBPACK_IMPORTED_MODULE_14__src_symbol_triangle__ = __webpack_require__(379); __webpack_require__.d(__webpack_exports__, "z", function() { return __WEBPACK_IMPORTED_MODULE_14__src_symbol_triangle__.a; }); - var __WEBPACK_IMPORTED_MODULE_15__src_symbol_wye__ = __webpack_require__(377); + var __WEBPACK_IMPORTED_MODULE_15__src_symbol_wye__ = __webpack_require__(380); __webpack_require__.d(__webpack_exports__, "A", function() { return __WEBPACK_IMPORTED_MODULE_15__src_symbol_wye__.a; }); - var __WEBPACK_IMPORTED_MODULE_16__src_curve_basisClosed__ = __webpack_require__(872); + var __WEBPACK_IMPORTED_MODULE_16__src_curve_basisClosed__ = __webpack_require__(898); __webpack_require__.d(__webpack_exports__, "c", function() { return __WEBPACK_IMPORTED_MODULE_16__src_curve_basisClosed__.a; }); - var __WEBPACK_IMPORTED_MODULE_17__src_curve_basisOpen__ = __webpack_require__(873); + var __WEBPACK_IMPORTED_MODULE_17__src_curve_basisOpen__ = __webpack_require__(899); __webpack_require__.d(__webpack_exports__, "d", function() { return __WEBPACK_IMPORTED_MODULE_17__src_curve_basisOpen__.a; }); - var __WEBPACK_IMPORTED_MODULE_18__src_curve_basis__ = __webpack_require__(154); + var __WEBPACK_IMPORTED_MODULE_18__src_curve_basis__ = __webpack_require__(162); __webpack_require__.d(__webpack_exports__, "b", function() { return __WEBPACK_IMPORTED_MODULE_18__src_curve_basis__.b; }); - var __WEBPACK_IMPORTED_MODULE_26__src_curve_linearClosed__ = (__webpack_require__(874), - __webpack_require__(378), __webpack_require__(379), __webpack_require__(155), __webpack_require__(875), - __webpack_require__(876), __webpack_require__(233), __webpack_require__(877)); + var __WEBPACK_IMPORTED_MODULE_26__src_curve_linearClosed__ = (__webpack_require__(900), + __webpack_require__(381), __webpack_require__(382), __webpack_require__(163), __webpack_require__(901), + __webpack_require__(902), __webpack_require__(238), __webpack_require__(903)); __webpack_require__.d(__webpack_exports__, "f", function() { return __WEBPACK_IMPORTED_MODULE_26__src_curve_linearClosed__.a; }); - var __WEBPACK_IMPORTED_MODULE_27__src_curve_linear__ = __webpack_require__(152); + var __WEBPACK_IMPORTED_MODULE_27__src_curve_linear__ = __webpack_require__(160); __webpack_require__.d(__webpack_exports__, "e", function() { return __WEBPACK_IMPORTED_MODULE_27__src_curve_linear__.a; }); - var __WEBPACK_IMPORTED_MODULE_28__src_curve_monotone__ = __webpack_require__(878); + var __WEBPACK_IMPORTED_MODULE_28__src_curve_monotone__ = __webpack_require__(904); __webpack_require__.d(__webpack_exports__, "g", function() { return __WEBPACK_IMPORTED_MODULE_28__src_curve_monotone__.a; }), __webpack_require__.d(__webpack_exports__, "h", function() { return __WEBPACK_IMPORTED_MODULE_28__src_curve_monotone__.b; }); - var __WEBPACK_IMPORTED_MODULE_29__src_curve_natural__ = __webpack_require__(879); + var __WEBPACK_IMPORTED_MODULE_29__src_curve_natural__ = __webpack_require__(905); __webpack_require__.d(__webpack_exports__, "i", function() { return __WEBPACK_IMPORTED_MODULE_29__src_curve_natural__.a; }); - var __WEBPACK_IMPORTED_MODULE_30__src_curve_step__ = __webpack_require__(880); + var __WEBPACK_IMPORTED_MODULE_30__src_curve_step__ = __webpack_require__(906); __webpack_require__.d(__webpack_exports__, "j", function() { return __WEBPACK_IMPORTED_MODULE_30__src_curve_step__.a; }), __webpack_require__.d(__webpack_exports__, "k", function() { @@ -7750,36 +7824,36 @@ var _publicBundleJs = []byte(`!function(modules) { }), __webpack_require__.d(__webpack_exports__, "l", function() { return __WEBPACK_IMPORTED_MODULE_30__src_curve_step__.c; }); - var __WEBPACK_IMPORTED_MODULE_31__src_stack__ = __webpack_require__(881); + var __WEBPACK_IMPORTED_MODULE_31__src_stack__ = __webpack_require__(907); __webpack_require__.d(__webpack_exports__, "n", function() { return __WEBPACK_IMPORTED_MODULE_31__src_stack__.a; }); - var __WEBPACK_IMPORTED_MODULE_32__src_offset_expand__ = __webpack_require__(882); + var __WEBPACK_IMPORTED_MODULE_32__src_offset_expand__ = __webpack_require__(908); __webpack_require__.d(__webpack_exports__, "o", function() { return __WEBPACK_IMPORTED_MODULE_32__src_offset_expand__.a; }); - var __WEBPACK_IMPORTED_MODULE_34__src_offset_none__ = (__webpack_require__(883), + var __WEBPACK_IMPORTED_MODULE_34__src_offset_none__ = (__webpack_require__(909), __webpack_require__(107)); __webpack_require__.d(__webpack_exports__, "p", function() { return __WEBPACK_IMPORTED_MODULE_34__src_offset_none__.a; }); - var __WEBPACK_IMPORTED_MODULE_35__src_offset_silhouette__ = __webpack_require__(884); + var __WEBPACK_IMPORTED_MODULE_35__src_offset_silhouette__ = __webpack_require__(910); __webpack_require__.d(__webpack_exports__, "q", function() { return __WEBPACK_IMPORTED_MODULE_35__src_offset_silhouette__.a; }); - var __WEBPACK_IMPORTED_MODULE_36__src_offset_wiggle__ = __webpack_require__(885); + var __WEBPACK_IMPORTED_MODULE_36__src_offset_wiggle__ = __webpack_require__(911); __webpack_require__.d(__webpack_exports__, "r", function() { return __WEBPACK_IMPORTED_MODULE_36__src_offset_wiggle__.a; }); - var __WEBPACK_IMPORTED_MODULE_40__src_order_none__ = (__webpack_require__(234), - __webpack_require__(886), __webpack_require__(887), __webpack_require__(108)); + var __WEBPACK_IMPORTED_MODULE_40__src_order_none__ = (__webpack_require__(239), + __webpack_require__(912), __webpack_require__(913), __webpack_require__(108)); __webpack_require__.d(__webpack_exports__, "s", function() { return __WEBPACK_IMPORTED_MODULE_40__src_order_none__.a; }); - __webpack_require__(888); + __webpack_require__(914); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0_d3_path__ = __webpack_require__(105), __WEBPACK_IMPORTED_MODULE_1__constant__ = __webpack_require__(70), __WEBPACK_IMPORTED_MODULE_2__curve_linear__ = __webpack_require__(152), __WEBPACK_IMPORTED_MODULE_3__point__ = __webpack_require__(232); + var __WEBPACK_IMPORTED_MODULE_0_d3_path__ = __webpack_require__(105), __WEBPACK_IMPORTED_MODULE_1__constant__ = __webpack_require__(71), __WEBPACK_IMPORTED_MODULE_2__curve_linear__ = __webpack_require__(160), __WEBPACK_IMPORTED_MODULE_3__point__ = __webpack_require__(237); __webpack_exports__.a = function() { function line(data) { var i, d, buffer, n = data.length, defined0 = !1; @@ -7833,7 +7907,7 @@ var _publicBundleJs = []byte(`!function(modules) { this._context = context, this._alpha = alpha; } __webpack_exports__.a = point; - var __WEBPACK_IMPORTED_MODULE_0__math__ = __webpack_require__(106), __WEBPACK_IMPORTED_MODULE_1__cardinal__ = __webpack_require__(155); + var __WEBPACK_IMPORTED_MODULE_0__math__ = __webpack_require__(106), __WEBPACK_IMPORTED_MODULE_1__cardinal__ = __webpack_require__(163); CatmullRom.prototype = { areaStart: function() { this._line = 0; @@ -7907,36 +7981,16 @@ var _publicBundleJs = []byte(`!function(modules) { function baseIsEqual(value, other, bitmask, customizer, stack) { return value === other || (null == value || null == other || !isObjectLike(value) && !isObjectLike(other) ? value !== value && other !== other : baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack)); } - var baseIsEqualDeep = __webpack_require__(889), isObjectLike = __webpack_require__(51); + var baseIsEqualDeep = __webpack_require__(915), isObjectLike = __webpack_require__(52); module.exports = baseIsEqual; -}, function(module, exports) { - function eq(value, other) { - return value === other || value !== value && other !== other; - } - module.exports = eq; -}, function(module, exports, __webpack_require__) { - var getNative = __webpack_require__(71), root = __webpack_require__(46), Map = getNative(root, "Map"); - module.exports = Map; -}, function(module, exports, __webpack_require__) { - function MapCache(entries) { - var index = -1, length = null == entries ? 0 : entries.length; - for (this.clear(); ++index < length; ) { - var entry = entries[index]; - this.set(entry[0], entry[1]); - } - } - var mapCacheClear = __webpack_require__(904), mapCacheDelete = __webpack_require__(911), mapCacheGet = __webpack_require__(913), mapCacheHas = __webpack_require__(914), mapCacheSet = __webpack_require__(915); - MapCache.prototype.clear = mapCacheClear, MapCache.prototype.delete = mapCacheDelete, - MapCache.prototype.get = mapCacheGet, MapCache.prototype.has = mapCacheHas, MapCache.prototype.set = mapCacheSet, - module.exports = MapCache; }, function(module, exports, __webpack_require__) { function keys(object) { return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object); } - var arrayLikeKeys = __webpack_require__(928), baseKeys = __webpack_require__(934), isArrayLike = __webpack_require__(109); + var arrayLikeKeys = __webpack_require__(933), baseKeys = __webpack_require__(939), isArrayLike = __webpack_require__(109); module.exports = keys; }, function(module, exports, __webpack_require__) { - var baseIsArguments = __webpack_require__(930), isObjectLike = __webpack_require__(51), objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty, propertyIsEnumerable = objectProto.propertyIsEnumerable, isArguments = baseIsArguments(function() { + var baseIsArguments = __webpack_require__(935), isObjectLike = __webpack_require__(52), objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty, propertyIsEnumerable = objectProto.propertyIsEnumerable, isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) { return isObjectLike(value) && hasOwnProperty.call(value, "callee") && !propertyIsEnumerable.call(value, "callee"); @@ -7961,21 +8015,6 @@ var _publicBundleJs = []byte(`!function(modules) { }; } module.exports = baseUnary; -}, function(module, exports, __webpack_require__) { - function get(object, path, defaultValue) { - var result = null == object ? void 0 : baseGet(object, path); - return void 0 === result ? defaultValue : result; - } - var baseGet = __webpack_require__(398); - module.exports = get; -}, function(module, exports, __webpack_require__) { - function isKey(value, object) { - if (isArray(value)) return !1; - var type = typeof value; - return !("number" != type && "symbol" != type && "boolean" != type && null != value && !isSymbol(value)) || (reIsPlainProp.test(value) || !reIsDeepProp.test(value) || null != object && value in Object(object)); - } - var isArray = __webpack_require__(16), isSymbol = __webpack_require__(83), reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/; - module.exports = isKey; }, function(module, exports, __webpack_require__) { function debounce(func, wait, options) { function invokeFunc(time) { @@ -8190,7 +8229,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, __webpack_exports__.a = map; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0_d3_color__ = __webpack_require__(61), __WEBPACK_IMPORTED_MODULE_1__rgb__ = __webpack_require__(423), __WEBPACK_IMPORTED_MODULE_2__array__ = __webpack_require__(426), __WEBPACK_IMPORTED_MODULE_3__date__ = __webpack_require__(427), __WEBPACK_IMPORTED_MODULE_4__number__ = __webpack_require__(165), __WEBPACK_IMPORTED_MODULE_5__object__ = __webpack_require__(428), __WEBPACK_IMPORTED_MODULE_6__string__ = __webpack_require__(429), __WEBPACK_IMPORTED_MODULE_7__constant__ = __webpack_require__(425); + var __WEBPACK_IMPORTED_MODULE_0_d3_color__ = __webpack_require__(61), __WEBPACK_IMPORTED_MODULE_1__rgb__ = __webpack_require__(423), __WEBPACK_IMPORTED_MODULE_2__array__ = __webpack_require__(426), __WEBPACK_IMPORTED_MODULE_3__date__ = __webpack_require__(427), __WEBPACK_IMPORTED_MODULE_4__number__ = __webpack_require__(167), __WEBPACK_IMPORTED_MODULE_5__object__ = __webpack_require__(428), __WEBPACK_IMPORTED_MODULE_6__string__ = __webpack_require__(429), __WEBPACK_IMPORTED_MODULE_7__constant__ = __webpack_require__(425); __webpack_exports__.a = function(a, b) { var c, t = typeof b; return null == b || "boolean" === t ? Object(__WEBPACK_IMPORTED_MODULE_7__constant__.a)(b) : ("number" === t ? __WEBPACK_IMPORTED_MODULE_4__number__.a : "string" === t ? (c = Object(__WEBPACK_IMPORTED_MODULE_0_d3_color__.a)(b)) ? (b = c, @@ -8671,7 +8710,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(52), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_3_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_3_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react__), __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__), __WEBPACK_IMPORTED_MODULE_5_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_5_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react_smooth__), __WEBPACK_IMPORTED_MODULE_6_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_6_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_classnames__), __WEBPACK_IMPORTED_MODULE_7__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_8__shape_Curve__ = __webpack_require__(86), __WEBPACK_IMPORTED_MODULE_9__shape_Dot__ = __webpack_require__(74), __WEBPACK_IMPORTED_MODULE_10__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_11__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_12__ErrorBar__ = __webpack_require__(117), __WEBPACK_IMPORTED_MODULE_13__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { + var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(49), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_3_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_3_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react__), __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__), __WEBPACK_IMPORTED_MODULE_5_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_5_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react_smooth__), __WEBPACK_IMPORTED_MODULE_6_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_6_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_classnames__), __WEBPACK_IMPORTED_MODULE_7__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_8__shape_Curve__ = __webpack_require__(86), __WEBPACK_IMPORTED_MODULE_9__shape_Dot__ = __webpack_require__(74), __WEBPACK_IMPORTED_MODULE_10__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_11__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_12__ErrorBar__ = __webpack_require__(117), __WEBPACK_IMPORTED_MODULE_13__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -8698,7 +8737,7 @@ var _publicBundleJs = []byte(`!function(modules) { _this.state = { isAnimationFinished: !0, totalLength: 0 - }, _this.id = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.i)("recharts-line-"), + }, _this.id = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.j)("recharts-line-"), _this.cachePrevData = function(points) { _this.setState({ prevPoints: points @@ -8821,10 +8860,10 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "renderCurveStatically", value: function(points, needClip, props) { - var _props4 = this.props, type = _props4.type, layout = _props4.layout, connectNulls = _props4.connectNulls, curveProps = _extends({}, Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.k)(this.props), Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.e)(this.props), { + var _props4 = this.props, type = _props4.type, layout = _props4.layout, connectNulls = _props4.connectNulls, id = _props4.id, clipPathId = __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default()(id) ? this.id : id, curveProps = _extends({}, Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.k)(this.props), Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.e)(this.props), { fill: "none", className: "recharts-line-curve", - clipPath: needClip ? "url(#clipPath-" + this.id + ")" : null, + clipPath: needClip ? "url(#clipPath-" + clipPathId + ")" : null, points: points }, props, { type: type, @@ -8859,13 +8898,13 @@ var _publicBundleJs = []byte(`!function(modules) { if (prevPoints) { var stepData = points.map(function(entry, index) { if (prevPoints[index]) { - var prev = prevPoints[index], _interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(prev.x, entry.x), _interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(prev.y, entry.y); + var prev = prevPoints[index], _interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.e)(prev.x, entry.x), _interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.e)(prev.y, entry.y); return _extends({}, entry, { x: _interpolatorX(t), y: _interpolatorY(t) }); } - var interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(2 * width, entry.x), interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(height / 2, entry.y); + var interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.e)(2 * width, entry.x), interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.e)(height / 2, entry.y); return _extends({}, entry, { x: interpolatorX(t), y: interpolatorY(t) @@ -8873,7 +8912,7 @@ var _publicBundleJs = []byte(`!function(modules) { }); return _this3.renderCurveStatically(stepData, needClip); } - var interpolator = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(0, totalLength), curLength = interpolator(t), currentStrokeDasharray = void 0; + var interpolator = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.e)(0, totalLength), curLength = interpolator(t), currentStrokeDasharray = void 0; if (strokeDasharray) { var lines = strokeDasharray.split(/[,\s]+/gim).map(function(num) { return parseFloat(num); @@ -8894,13 +8933,13 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "render", value: function() { - var _props7 = this.props, hide = _props7.hide, dot = _props7.dot, points = _props7.points, className = _props7.className, xAxis = _props7.xAxis, yAxis = _props7.yAxis, top = _props7.top, left = _props7.left, width = _props7.width, height = _props7.height, isAnimationActive = _props7.isAnimationActive; + var _props7 = this.props, hide = _props7.hide, dot = _props7.dot, points = _props7.points, className = _props7.className, xAxis = _props7.xAxis, yAxis = _props7.yAxis, top = _props7.top, left = _props7.left, width = _props7.width, height = _props7.height, isAnimationActive = _props7.isAnimationActive, id = _props7.id; if (hide || !points || !points.length) return null; - var isAnimationFinished = this.state.isAnimationFinished, hasSinglePoint = 1 === points.length, layerClass = __WEBPACK_IMPORTED_MODULE_6_classnames___default()("recharts-line", className), needClip = xAxis && xAxis.allowDataOverflow || yAxis && yAxis.allowDataOverflow; + var isAnimationFinished = this.state.isAnimationFinished, hasSinglePoint = 1 === points.length, layerClass = __WEBPACK_IMPORTED_MODULE_6_classnames___default()("recharts-line", className), needClip = xAxis && xAxis.allowDataOverflow || yAxis && yAxis.allowDataOverflow, clipPathId = __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default()(id) ? this.id : id; return __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_10__container_Layer__.a, { className: layerClass }, needClip ? __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement("defs", null, __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement("clipPath", { - id: "clipPath-" + this.id + id: "clipPath-" + clipPathId }, __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement("rect", { x: left, y: top, @@ -8940,7 +8979,8 @@ var _publicBundleJs = []byte(`!function(modules) { animationBegin: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, animationDuration: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, animationEasing: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOf([ "ease", "ease-in", "ease-out", "ease-in-out", "linear" ]), - animationId: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number + animationId: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, + id: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.string }), _class2.defaultProps = { xAxisId: 0, yAxisId: 0, @@ -9012,7 +9052,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(52), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_3_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_3_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_4_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_4_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react__), __WEBPACK_IMPORTED_MODULE_5_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_5_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_prop_types__), __WEBPACK_IMPORTED_MODULE_6_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_6_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_classnames__), __WEBPACK_IMPORTED_MODULE_7_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_7_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_react_smooth__), __WEBPACK_IMPORTED_MODULE_8__shape_Curve__ = __webpack_require__(86), __WEBPACK_IMPORTED_MODULE_9__shape_Dot__ = __webpack_require__(74), __WEBPACK_IMPORTED_MODULE_10__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_11__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_12__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_13__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_14__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { + var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(49), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN__ = __webpack_require__(159), __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isNaN__), __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_3_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_3_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_4_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_4_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_5_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_5_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react__), __WEBPACK_IMPORTED_MODULE_6_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_6_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_prop_types__), __WEBPACK_IMPORTED_MODULE_7_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_7_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_classnames__), __WEBPACK_IMPORTED_MODULE_8_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_8_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_react_smooth__), __WEBPACK_IMPORTED_MODULE_9__shape_Curve__ = __webpack_require__(86), __WEBPACK_IMPORTED_MODULE_10__shape_Dot__ = __webpack_require__(74), __WEBPACK_IMPORTED_MODULE_11__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_12__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_13__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_15__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -9030,7 +9070,7 @@ var _publicBundleJs = []byte(`!function(modules) { return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor; }; - }(), Area = Object(__WEBPACK_IMPORTED_MODULE_12__util_PureRender__.a)((_temp2 = _class2 = function(_Component) { + }(), Area = Object(__WEBPACK_IMPORTED_MODULE_13__util_PureRender__.a)((_temp2 = _class2 = function(_Component) { function Area() { var _ref, _temp, _this, _ret; _classCallCheck(this, Area); @@ -9038,7 +9078,7 @@ var _publicBundleJs = []byte(`!function(modules) { return _temp = _this = _possibleConstructorReturn(this, (_ref = Area.__proto__ || Object.getPrototypeOf(Area)).call.apply(_ref, [ this ].concat(args))), _this.state = { isAnimationFinished: !0 - }, _this.id = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.i)("recharts-area-"), + }, _this.id = Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.j)("recharts-area-"), _this.cachePrevData = function(points, baseLine) { _this.setState({ prevPoints: points, @@ -9048,12 +9088,12 @@ var _publicBundleJs = []byte(`!function(modules) { var onAnimationEnd = _this.props.onAnimationEnd; _this.setState({ isAnimationFinished: !0 - }), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default()(onAnimationEnd) && onAnimationEnd(); + }), __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction___default()(onAnimationEnd) && onAnimationEnd(); }, _this.handleAnimationStart = function() { var onAnimationStart = _this.props.onAnimationStart; _this.setState({ isAnimationFinished: !1 - }), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default()(onAnimationStart) && onAnimationStart(); + }), __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction___default()(onAnimationStart) && onAnimationStart(); }, _ret = _temp, _possibleConstructorReturn(_this, _ret); } return _inherits(Area, _Component), _createClass(Area, [ { @@ -9067,7 +9107,7 @@ var _publicBundleJs = []byte(`!function(modules) { value: function() { var _this2 = this; if (this.props.isAnimationActive && !this.state.isAnimationFinished) return null; - var _props2 = this.props, dot = _props2.dot, points = _props2.points, dataKey = _props2.dataKey, areaProps = Object(__WEBPACK_IMPORTED_MODULE_13__util_ReactUtils__.k)(this.props), customDotProps = Object(__WEBPACK_IMPORTED_MODULE_13__util_ReactUtils__.k)(dot), dotEvents = Object(__WEBPACK_IMPORTED_MODULE_13__util_ReactUtils__.e)(dot), dots = points.map(function(entry, i) { + var _props2 = this.props, dot = _props2.dot, points = _props2.points, dataKey = _props2.dataKey, areaProps = Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.k)(this.props), customDotProps = Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.k)(dot), dotEvents = Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.e)(dot), dots = points.map(function(entry, i) { var dotProps = _extends({ key: "dot-" + i, r: 3 @@ -9081,7 +9121,7 @@ var _publicBundleJs = []byte(`!function(modules) { }); return _this2.constructor.renderDotItem(dot, dotProps); }); - return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_10__container_Layer__.a, { + return __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_11__container_Layer__.a, { className: "recharts-area-dots" }, dots); } @@ -9091,9 +9131,9 @@ var _publicBundleJs = []byte(`!function(modules) { var _props3 = this.props, baseLine = _props3.baseLine, points = _props3.points, strokeWidth = _props3.strokeWidth, startX = points[0].x, endX = points[points.length - 1].x, width = alpha * Math.abs(startX - endX), maxY = Math.max.apply(null, points.map(function(entry) { return entry.y || 0; })); - return Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.f)(baseLine) ? maxY = Math.max(baseLine, maxY) : baseLine && __WEBPACK_IMPORTED_MODULE_3_lodash_isArray___default()(baseLine) && baseLine.length && (maxY = Math.max(Math.max.apply(null, baseLine.map(function(entry) { + return Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.g)(baseLine) ? maxY = Math.max(baseLine, maxY) : baseLine && __WEBPACK_IMPORTED_MODULE_4_lodash_isArray___default()(baseLine) && baseLine.length && (maxY = Math.max(Math.max.apply(null, baseLine.map(function(entry) { return entry.y || 0; - })), maxY)), Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.f)(maxY) ? __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("rect", { + })), maxY)), Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.g)(maxY) ? __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement("rect", { x: startX < endX ? startX : startX - width, y: 0, width: width, @@ -9106,9 +9146,9 @@ var _publicBundleJs = []byte(`!function(modules) { var _props4 = this.props, baseLine = _props4.baseLine, points = _props4.points, strokeWidth = _props4.strokeWidth, startY = points[0].y, endY = points[points.length - 1].y, height = alpha * Math.abs(startY - endY), maxX = Math.max.apply(null, points.map(function(entry) { return entry.x || 0; })); - return Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.f)(baseLine) ? maxX = Math.max(baseLine, maxX) : baseLine && __WEBPACK_IMPORTED_MODULE_3_lodash_isArray___default()(baseLine) && baseLine.length && (maxX = Math.max(Math.max.apply(null, baseLine.map(function(entry) { + return Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.g)(baseLine) ? maxX = Math.max(baseLine, maxX) : baseLine && __WEBPACK_IMPORTED_MODULE_4_lodash_isArray___default()(baseLine) && baseLine.length && (maxX = Math.max(Math.max.apply(null, baseLine.map(function(entry) { return entry.x || 0; - })), maxX)), Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.f)(maxX) ? __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("rect", { + })), maxX)), Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.g)(maxX) ? __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement("rect", { x: 0, y: startY < endY ? startY : startY - height, width: maxX + (strokeWidth || 1), @@ -9124,21 +9164,21 @@ var _publicBundleJs = []byte(`!function(modules) { key: "renderAreaStatically", value: function(points, baseLine, needClip) { var _props5 = this.props, layout = _props5.layout, type = _props5.type, stroke = _props5.stroke, connectNulls = _props5.connectNulls, isRange = _props5.isRange; - return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_10__container_Layer__.a, { + return __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_11__container_Layer__.a, { clipPath: needClip ? "url(#clipPath-" + this.id + ")" : null - }, __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8__shape_Curve__.a, _extends({}, this.props, { + }, __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__shape_Curve__.a, _extends({}, this.props, { points: points, baseLine: baseLine, stroke: "none", className: "recharts-area-area" - })), "none" !== stroke && __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8__shape_Curve__.a, _extends({}, Object(__WEBPACK_IMPORTED_MODULE_13__util_ReactUtils__.k)(this.props), { + })), "none" !== stroke && __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__shape_Curve__.a, _extends({}, Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.k)(this.props), { className: "recharts-area-curve", layout: layout, type: type, connectNulls: connectNulls, fill: "none", points: points - })), "none" !== stroke && isRange && __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8__shape_Curve__.a, _extends({}, Object(__WEBPACK_IMPORTED_MODULE_13__util_ReactUtils__.k)(this.props), { + })), "none" !== stroke && isRange && __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__shape_Curve__.a, _extends({}, Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.k)(this.props), { className: "recharts-area-curve", layout: layout, type: type, @@ -9150,8 +9190,8 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "renderAreaWithAnimation", value: function(needClip) { - var _this3 = this, _props6 = this.props, points = _props6.points, baseLine = _props6.baseLine, isAnimationActive = _props6.isAnimationActive, animationBegin = _props6.animationBegin, animationDuration = _props6.animationDuration, animationEasing = _props6.animationEasing, animationId = _props6.animationId, _state = this.state, prevPoints = _state.prevPoints, prevBaseLine = _state.prevBaseLine; - return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_7_react_smooth___default.a, { + var _this3 = this, _props6 = this.props, points = _props6.points, baseLine = _props6.baseLine, isAnimationActive = _props6.isAnimationActive, animationBegin = _props6.animationBegin, animationDuration = _props6.animationDuration, animationEasing = _props6.animationEasing, animationId = _props6.animationId, id = _props6.id, _state = this.state, prevPoints = _state.prevPoints, prevBaseLine = _state.prevBaseLine, clipPathId = __WEBPACK_IMPORTED_MODULE_3_lodash_isNil___default()(id) ? this.id : id; + return __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8_react_smooth___default.a, { begin: animationBegin, duration: animationDuration, isActive: isAnimationActive, @@ -9170,7 +9210,7 @@ var _publicBundleJs = []byte(`!function(modules) { if (prevPoints) { var stepPoints = points.map(function(entry, index) { if (prevPoints[index]) { - var prev = prevPoints[index], interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.d)(prev.x, entry.x), interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.d)(prev.y, entry.y); + var prev = prevPoints[index], interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.e)(prev.x, entry.x), interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.e)(prev.y, entry.y); return _extends({}, entry, { x: interpolatorX(t), y: interpolatorY(t) @@ -9178,11 +9218,14 @@ var _publicBundleJs = []byte(`!function(modules) { } return entry; }), stepBaseLine = void 0; - if (Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.f)(baseLine)) { - stepBaseLine = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.d)(prevBaseLine, baseLine)(t); + if (Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.g)(baseLine)) { + stepBaseLine = Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.e)(prevBaseLine, baseLine)(t); + } else if (__WEBPACK_IMPORTED_MODULE_3_lodash_isNil___default()(baseLine) || __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN___default()(baseLine)) { + var _interpolator = Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.e)(prevBaseLine, 0); + stepBaseLine = _interpolator(t); } else stepBaseLine = baseLine.map(function(entry, index) { if (prevBaseLine[index]) { - var prev = prevBaseLine[index], interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.d)(prev.x, entry.x), interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.d)(prev.y, entry.y); + var prev = prevBaseLine[index], interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.e)(prev.x, entry.x), interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.e)(prev.y, entry.y); return _extends({}, entry, { x: interpolatorX(t), y: interpolatorY(t) @@ -9192,10 +9235,10 @@ var _publicBundleJs = []byte(`!function(modules) { }); return _this3.renderAreaStatically(stepPoints, stepBaseLine, needClip); } - return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_10__container_Layer__.a, null, __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("defs", null, __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("clipPath", { - id: "animationClipPath-" + _this3.id - }, _this3.renderClipRect(t))), __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_10__container_Layer__.a, { - clipPath: "url(#animationClipPath-" + _this3.id + ")" + return __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_11__container_Layer__.a, null, __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement("defs", null, __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement("clipPath", { + id: "animationClipPath-" + clipPathId + }, _this3.renderClipRect(t))), __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_11__container_Layer__.a, { + clipPath: "url(#animationClipPath-" + clipPathId + ")" }, _this3.renderAreaStatically(points, baseLine, needClip))); }); } @@ -9208,54 +9251,55 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "render", value: function() { - var _props8 = this.props, hide = _props8.hide, dot = _props8.dot, points = _props8.points, className = _props8.className, top = _props8.top, left = _props8.left, xAxis = _props8.xAxis, yAxis = _props8.yAxis, width = _props8.width, height = _props8.height, isAnimationActive = _props8.isAnimationActive; + var _props8 = this.props, hide = _props8.hide, dot = _props8.dot, points = _props8.points, className = _props8.className, top = _props8.top, left = _props8.left, xAxis = _props8.xAxis, yAxis = _props8.yAxis, width = _props8.width, height = _props8.height, isAnimationActive = _props8.isAnimationActive, id = _props8.id; if (hide || !points || !points.length) return null; - var isAnimationFinished = this.state.isAnimationFinished, hasSinglePoint = 1 === points.length, layerClass = __WEBPACK_IMPORTED_MODULE_6_classnames___default()("recharts-area", className), needClip = xAxis && xAxis.allowDataOverflow || yAxis && yAxis.allowDataOverflow; - return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_10__container_Layer__.a, { + var isAnimationFinished = this.state.isAnimationFinished, hasSinglePoint = 1 === points.length, layerClass = __WEBPACK_IMPORTED_MODULE_7_classnames___default()("recharts-area", className), needClip = xAxis && xAxis.allowDataOverflow || yAxis && yAxis.allowDataOverflow, clipPathId = __WEBPACK_IMPORTED_MODULE_3_lodash_isNil___default()(id) ? this.id : id; + return __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_11__container_Layer__.a, { className: layerClass - }, needClip ? __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("defs", null, __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("clipPath", { - id: "clipPath-" + this.id - }, __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("rect", { + }, needClip ? __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement("defs", null, __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement("clipPath", { + id: "clipPath-" + clipPathId + }, __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement("rect", { x: left, y: top, width: width, height: height - }))) : null, hasSinglePoint ? null : this.renderArea(needClip), (dot || hasSinglePoint) && this.renderDots(), (!isAnimationActive || isAnimationFinished) && __WEBPACK_IMPORTED_MODULE_11__component_LabelList__.a.renderCallByParent(this.props, points)); + }))) : null, hasSinglePoint ? null : this.renderArea(needClip), (dot || hasSinglePoint) && this.renderDots(), (!isAnimationActive || isAnimationFinished) && __WEBPACK_IMPORTED_MODULE_12__component_LabelList__.a.renderCallByParent(this.props, points)); } } ]), Area; - }(__WEBPACK_IMPORTED_MODULE_4_react__.Component), _class2.displayName = "Area", - _class2.propTypes = _extends({}, __WEBPACK_IMPORTED_MODULE_13__util_ReactUtils__.c, __WEBPACK_IMPORTED_MODULE_13__util_ReactUtils__.a, { - className: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string, - dataKey: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func ]).isRequired, - type: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOf([ "basis", "basisClosed", "basisOpen", "linear", "linearClosed", "natural", "monotoneX", "monotoneY", "monotone", "step", "stepBefore", "stepAfter" ]), __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func ]), - unit: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number ]), - name: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number ]), - yAxisId: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number ]), - xAxisId: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number ]), - yAxis: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.object, - xAxis: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.object, - stackId: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string ]), - legendType: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOf(__WEBPACK_IMPORTED_MODULE_13__util_ReactUtils__.b), - connectNulls: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool, - activeDot: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.object, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.element, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool ]), - dot: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.element, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.object, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool ]), - label: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.element, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.object, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool ]), - hide: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool, - layout: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOf([ "horizontal", "vertical" ]), - baseLine: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.array ]), - isRange: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool, - points: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.arrayOf(__WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.shape({ - x: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, - y: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, - value: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.array ]) + }(__WEBPACK_IMPORTED_MODULE_5_react__.Component), _class2.displayName = "Area", + _class2.propTypes = _extends({}, __WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.c, __WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.a, { + className: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string, + dataKey: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func ]).isRequired, + type: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOf([ "basis", "basisClosed", "basisOpen", "linear", "linearClosed", "natural", "monotoneX", "monotoneY", "monotone", "step", "stepBefore", "stepAfter" ]), __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func ]), + unit: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number ]), + name: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number ]), + yAxisId: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number ]), + xAxisId: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number ]), + yAxis: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.object, + xAxis: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.object, + stackId: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string ]), + legendType: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOf(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.b), + connectNulls: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool, + activeDot: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.object, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.element, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool ]), + dot: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.element, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.object, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool ]), + label: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.element, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.object, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool ]), + hide: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool, + layout: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOf([ "horizontal", "vertical" ]), + baseLine: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.array ]), + isRange: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool, + points: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.arrayOf(__WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.shape({ + x: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, + y: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, + value: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.array ]) })), - onAnimationStart: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func, - onAnimationEnd: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func, - animationId: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, - isAnimationActive: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool, - animationBegin: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, - animationDuration: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, - animationEasing: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOf([ "ease", "ease-in", "ease-out", "ease-in-out", "linear" ]) + onAnimationStart: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func, + onAnimationEnd: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func, + animationId: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, + isAnimationActive: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool, + animationBegin: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, + animationDuration: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, + animationEasing: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOf([ "ease", "ease-in", "ease-out", "ease-in-out", "linear" ]), + id: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string }), _class2.defaultProps = { stroke: "#3182bd", fill: "#3182bd", @@ -9268,13 +9312,13 @@ var _publicBundleJs = []byte(`!function(modules) { dot: !1, activeDot: !0, hide: !1, - isAnimationActive: !Object(__WEBPACK_IMPORTED_MODULE_13__util_ReactUtils__.n)(), + isAnimationActive: !Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.n)(), animationBegin: 0, animationDuration: 1500, animationEasing: "ease" }, _class2.getBaseValue = function(props, xAxis, yAxis) { var layout = props.layout, baseValue = props.baseValue; - if (Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.f)(baseValue)) return baseValue; + if (Object(__WEBPACK_IMPORTED_MODULE_15__util_DataUtils__.g)(baseValue)) return baseValue; var numericAxis = "horizontal" === layout ? yAxis : xAxis, domain = numericAxis.scale.domain(); if ("number" === numericAxis.type) { var max = Math.max(domain[0], domain[1]), min = Math.min(domain[0], domain[1]); @@ -9284,22 +9328,22 @@ var _publicBundleJs = []byte(`!function(modules) { }, _class2.getComposedData = function(_ref3) { var props = _ref3.props, xAxis = _ref3.xAxis, yAxis = _ref3.yAxis, xAxisTicks = _ref3.xAxisTicks, yAxisTicks = _ref3.yAxisTicks, bandSize = _ref3.bandSize, dataKey = _ref3.dataKey, stackedData = _ref3.stackedData, dataStartIndex = _ref3.dataStartIndex, displayedData = _ref3.displayedData, offset = _ref3.offset, layout = props.layout, hasStack = stackedData && stackedData.length, baseValue = Area.getBaseValue(props, xAxis, yAxis), isRange = !1, points = displayedData.map(function(entry, index) { var value = void 0; - return hasStack ? value = stackedData[dataStartIndex + index] : (value = Object(__WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__.w)(entry, dataKey), - __WEBPACK_IMPORTED_MODULE_3_lodash_isArray___default()(value) ? isRange = !0 : value = [ baseValue, value ]), + return hasStack ? value = stackedData[dataStartIndex + index] : (value = Object(__WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__.w)(entry, dataKey), + __WEBPACK_IMPORTED_MODULE_4_lodash_isArray___default()(value) ? isRange = !0 : value = [ baseValue, value ]), "horizontal" === layout ? { - x: Object(__WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__.l)({ + x: Object(__WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__.l)({ axis: xAxis, ticks: xAxisTicks, bandSize: bandSize, entry: entry, index: index }), - y: __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default()(value[1]) ? null : yAxis.scale(value[1]), + y: __WEBPACK_IMPORTED_MODULE_3_lodash_isNil___default()(value[1]) ? null : yAxis.scale(value[1]), value: value, payload: entry } : { - x: __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default()(value[1]) ? null : xAxis.scale(value[1]), - y: Object(__WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__.l)({ + x: __WEBPACK_IMPORTED_MODULE_3_lodash_isNil___default()(value[1]) ? null : xAxis.scale(value[1]), + y: Object(__WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__.l)({ axis: yAxis, ticks: yAxisTicks, bandSize: bandSize, @@ -9323,7 +9367,7 @@ var _publicBundleJs = []byte(`!function(modules) { isRange: isRange }, offset); }, _class2.renderDotItem = function(option, props) { - return __WEBPACK_IMPORTED_MODULE_4_react___default.a.isValidElement(option) ? __WEBPACK_IMPORTED_MODULE_4_react___default.a.cloneElement(option, props) : __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default()(option) ? option(props) : __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__shape_Dot__.a, _extends({}, props, { + return __WEBPACK_IMPORTED_MODULE_5_react___default.a.isValidElement(option) ? __WEBPACK_IMPORTED_MODULE_5_react___default.a.cloneElement(option, props) : __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction___default()(option) ? option(props) : __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_10__shape_Dot__.a, _extends({}, props, { className: "recharts-area-dot" })); }, _class = _temp2)) || _class; @@ -9353,7 +9397,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(52), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_2_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_3_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_3_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react__), __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__), __WEBPACK_IMPORTED_MODULE_5_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_5_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_classnames__), __WEBPACK_IMPORTED_MODULE_6_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_6_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react_smooth__), __WEBPACK_IMPORTED_MODULE_7__shape_Rectangle__ = __webpack_require__(85), __WEBPACK_IMPORTED_MODULE_8__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_9__ErrorBar__ = __webpack_require__(117), __WEBPACK_IMPORTED_MODULE_10__component_Cell__ = __webpack_require__(111), __WEBPACK_IMPORTED_MODULE_11__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_12__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_13__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { + var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_0_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_1_lodash_isEqual__ = __webpack_require__(49), __WEBPACK_IMPORTED_MODULE_1_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_3_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_3_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_4_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_4_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react__), __WEBPACK_IMPORTED_MODULE_5_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_5_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_prop_types__), __WEBPACK_IMPORTED_MODULE_6_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_6_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_classnames__), __WEBPACK_IMPORTED_MODULE_7_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_7_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_react_smooth__), __WEBPACK_IMPORTED_MODULE_8__shape_Rectangle__ = __webpack_require__(85), __WEBPACK_IMPORTED_MODULE_9__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_10__ErrorBar__ = __webpack_require__(117), __WEBPACK_IMPORTED_MODULE_11__component_Cell__ = __webpack_require__(111), __WEBPACK_IMPORTED_MODULE_12__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_13__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_14__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_15__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -9371,7 +9415,7 @@ var _publicBundleJs = []byte(`!function(modules) { return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor; }; - }(), Bar = Object(__WEBPACK_IMPORTED_MODULE_12__util_PureRender__.a)((_temp2 = _class2 = function(_Component) { + }(), Bar = Object(__WEBPACK_IMPORTED_MODULE_13__util_PureRender__.a)((_temp2 = _class2 = function(_Component) { function Bar() { var _ref, _temp, _this, _ret; _classCallCheck(this, Bar); @@ -9379,7 +9423,7 @@ var _publicBundleJs = []byte(`!function(modules) { return _temp = _this = _possibleConstructorReturn(this, (_ref = Bar.__proto__ || Object.getPrototypeOf(Bar)).call.apply(_ref, [ this ].concat(args))), _this.state = { isAnimationFinished: !1 - }, _this.id = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.i)("recharts-bar-"), + }, _this.id = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.j)("recharts-bar-"), _this.cachePrevData = function(data) { _this.setState({ prevData: data @@ -9403,19 +9447,19 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "renderRectangle", value: function(option, props) { - return __WEBPACK_IMPORTED_MODULE_3_react___default.a.isValidElement(option) ? __WEBPACK_IMPORTED_MODULE_3_react___default.a.cloneElement(option, props) : __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default()(option) ? option(props) : __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_7__shape_Rectangle__.a, props); + return __WEBPACK_IMPORTED_MODULE_4_react___default.a.isValidElement(option) ? __WEBPACK_IMPORTED_MODULE_4_react___default.a.cloneElement(option, props) : __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction___default()(option) ? option(props) : __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8__shape_Rectangle__.a, props); } }, { key: "renderRectanglesStatically", value: function(data) { - var _this2 = this, shape = this.props.shape, baseProps = Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.k)(this.props); + var _this2 = this, shape = this.props.shape, baseProps = Object(__WEBPACK_IMPORTED_MODULE_15__util_ReactUtils__.k)(this.props); return data && data.map(function(entry, i) { var props = _extends({}, baseProps, entry, { index: i }); - return __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8__container_Layer__.a, _extends({ + return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__container_Layer__.a, _extends({ className: "recharts-bar-rectangle" - }, Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.f)(_this2.props, entry, i), { + }, Object(__WEBPACK_IMPORTED_MODULE_15__util_ReactUtils__.f)(_this2.props, entry, i), { key: "rectangle-" + i }), _this2.renderRectangle(shape, props)); }); @@ -9425,7 +9469,7 @@ var _publicBundleJs = []byte(`!function(modules) { value: function() { var _this3 = this, _props2 = this.props, data = _props2.data, layout = _props2.layout, isAnimationActive = _props2.isAnimationActive, animationBegin = _props2.animationBegin, animationDuration = _props2.animationDuration, animationEasing = _props2.animationEasing, animationId = _props2.animationId, prevData = (_props2.width, this.state.prevData); - return __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_6_react_smooth___default.a, { + return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_7_react_smooth___default.a, { begin: animationBegin, duration: animationDuration, isActive: isAnimationActive, @@ -9443,7 +9487,7 @@ var _publicBundleJs = []byte(`!function(modules) { var t = _ref2.t, stepData = data.map(function(entry, index) { var prev = prevData && prevData[index]; if (prev) { - var interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(prev.x, entry.x), interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(prev.y, entry.y), interpolatorWidth = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(prev.width, entry.width), interpolatorHeight = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(prev.height, entry.height); + var interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.e)(prev.x, entry.x), interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.e)(prev.y, entry.y), interpolatorWidth = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.e)(prev.width, entry.width), interpolatorHeight = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.e)(prev.height, entry.height); return _extends({}, entry, { x: interpolatorX(t), y: interpolatorY(t), @@ -9452,36 +9496,36 @@ var _publicBundleJs = []byte(`!function(modules) { }); } if ("horizontal" === layout) { - var _interpolatorHeight = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(0, entry.height), h = _interpolatorHeight(t); + var _interpolatorHeight = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.e)(0, entry.height), h = _interpolatorHeight(t); return _extends({}, entry, { y: entry.y + entry.height - h, height: h }); } - var interpolator = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(0, entry.width), w = interpolator(t); + var interpolator = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.e)(0, entry.width), w = interpolator(t); return _extends({}, entry, { width: w }); }); - return __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8__container_Layer__.a, null, _this3.renderRectanglesStatically(stepData)); + return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__container_Layer__.a, null, _this3.renderRectanglesStatically(stepData)); }); } }, { key: "renderRectangles", value: function() { var _props3 = this.props, data = _props3.data, isAnimationActive = _props3.isAnimationActive, prevData = this.state.prevData; - return !(isAnimationActive && data && data.length) || prevData && __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default()(prevData, data) ? this.renderRectanglesStatically(data) : this.renderRectanglesWithAnimation(); + return !(isAnimationActive && data && data.length) || prevData && __WEBPACK_IMPORTED_MODULE_1_lodash_isEqual___default()(prevData, data) ? this.renderRectanglesStatically(data) : this.renderRectanglesWithAnimation(); } }, { key: "renderBackground", value: function(sectors) { - var _this4 = this, data = this.props.data, backgroundProps = Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.k)(this.props.background); + var _this4 = this, data = this.props.data, backgroundProps = Object(__WEBPACK_IMPORTED_MODULE_15__util_ReactUtils__.k)(this.props.background); return data.map(function(entry, i) { var background = (entry.value, entry.background), rest = _objectWithoutProperties(entry, [ "value", "background" ]); if (!background) return null; var props = _extends({}, rest, { fill: "#eee" - }, background, backgroundProps, Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.f)(_this4.props, entry, i), { + }, background, backgroundProps, Object(__WEBPACK_IMPORTED_MODULE_15__util_ReactUtils__.f)(_this4.props, entry, i), { index: i, key: "background-bar-" + i, className: "recharts-bar-background-rectangle" @@ -9497,15 +9541,15 @@ var _publicBundleJs = []byte(`!function(modules) { x: dataPoint.x, y: dataPoint.y, value: dataPoint.value, - errorVal: Object(__WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__.w)(dataPoint, dataKey) + errorVal: Object(__WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__.w)(dataPoint, dataKey) }; } if (this.props.isAnimationActive && !this.state.isAnimationFinished) return null; - var _props4 = this.props, data = _props4.data, xAxis = _props4.xAxis, yAxis = _props4.yAxis, layout = _props4.layout, children = _props4.children, errorBarItems = Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_9__ErrorBar__.a); + var _props4 = this.props, data = _props4.data, xAxis = _props4.xAxis, yAxis = _props4.yAxis, layout = _props4.layout, children = _props4.children, errorBarItems = Object(__WEBPACK_IMPORTED_MODULE_15__util_ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_10__ErrorBar__.a); if (!errorBarItems) return null; var offset = "vertical" === layout ? data[0].height / 2 : data[0].width / 2; return errorBarItems.map(function(item, i) { - return __WEBPACK_IMPORTED_MODULE_3_react___default.a.cloneElement(item, { + return __WEBPACK_IMPORTED_MODULE_4_react___default.a.cloneElement(item, { key: i, data: data, xAxis: xAxis, @@ -9519,56 +9563,57 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "render", value: function() { - var _props5 = this.props, hide = _props5.hide, data = _props5.data, className = _props5.className, xAxis = _props5.xAxis, yAxis = _props5.yAxis, left = _props5.left, top = _props5.top, width = _props5.width, height = _props5.height, isAnimationActive = _props5.isAnimationActive, background = _props5.background; + var _props5 = this.props, hide = _props5.hide, data = _props5.data, className = _props5.className, xAxis = _props5.xAxis, yAxis = _props5.yAxis, left = _props5.left, top = _props5.top, width = _props5.width, height = _props5.height, isAnimationActive = _props5.isAnimationActive, background = _props5.background, id = _props5.id; if (hide || !data || !data.length) return null; - var isAnimationFinished = this.state.isAnimationFinished, layerClass = __WEBPACK_IMPORTED_MODULE_5_classnames___default()("recharts-bar", className), needClip = xAxis && xAxis.allowDataOverflow || yAxis && yAxis.allowDataOverflow; - return __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8__container_Layer__.a, { + var isAnimationFinished = this.state.isAnimationFinished, layerClass = __WEBPACK_IMPORTED_MODULE_6_classnames___default()("recharts-bar", className), needClip = xAxis && xAxis.allowDataOverflow || yAxis && yAxis.allowDataOverflow, clipPathId = __WEBPACK_IMPORTED_MODULE_0_lodash_isNil___default()(id) ? this.id : id; + return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__container_Layer__.a, { className: layerClass - }, needClip ? __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement("defs", null, __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement("clipPath", { - id: "clipPath-" + this.id - }, __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement("rect", { + }, needClip ? __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("defs", null, __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("clipPath", { + id: "clipPath-" + clipPathId + }, __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("rect", { x: left, y: top, width: width, height: height - }))) : null, __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8__container_Layer__.a, { + }))) : null, __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__container_Layer__.a, { className: "recharts-bar-rectangles", - clipPath: needClip ? "url(#clipPath-" + this.id + ")" : null - }, background ? this.renderBackground() : null, this.renderRectangles()), this.renderErrorBar(), (!isAnimationActive || isAnimationFinished) && __WEBPACK_IMPORTED_MODULE_11__component_LabelList__.a.renderCallByParent(this.props, data)); + clipPath: needClip ? "url(#clipPath-" + clipPathId + ")" : null + }, background ? this.renderBackground() : null, this.renderRectangles()), this.renderErrorBar(), (!isAnimationActive || isAnimationFinished) && __WEBPACK_IMPORTED_MODULE_12__component_LabelList__.a.renderCallByParent(this.props, data)); } } ]), Bar; - }(__WEBPACK_IMPORTED_MODULE_3_react__.Component), _class2.displayName = "Bar", _class2.propTypes = _extends({}, __WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.c, __WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.a, { - className: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.string, - layout: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOf([ "vertical", "horizontal" ]), - xAxisId: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.string ]), - yAxisId: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.string ]), - yAxis: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.object, - xAxis: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.object, - stackId: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.string ]), - barSize: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, - unit: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number ]), - name: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number ]), - dataKey: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.func ]).isRequired, - legendType: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOf(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.b), - minPointSize: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, - maxBarSize: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, - hide: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.bool, - shape: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.element ]), - data: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.arrayOf(__WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.shape({ - x: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, - y: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, - width: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, - height: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, - radius: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.array ]), - value: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.array ]) + }(__WEBPACK_IMPORTED_MODULE_4_react__.Component), _class2.displayName = "Bar", _class2.propTypes = _extends({}, __WEBPACK_IMPORTED_MODULE_15__util_ReactUtils__.c, __WEBPACK_IMPORTED_MODULE_15__util_ReactUtils__.a, { + className: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string, + layout: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOf([ "vertical", "horizontal" ]), + xAxisId: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string ]), + yAxisId: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string ]), + yAxis: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.object, + xAxis: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.object, + stackId: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string ]), + barSize: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, + unit: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number ]), + name: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number ]), + dataKey: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func ]).isRequired, + legendType: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOf(__WEBPACK_IMPORTED_MODULE_15__util_ReactUtils__.b), + minPointSize: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, + maxBarSize: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, + hide: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool, + shape: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.element ]), + data: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.arrayOf(__WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.shape({ + x: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, + y: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, + width: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, + height: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, + radius: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.array ]), + value: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([ __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.array ]) })), - onAnimationStart: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.func, - onAnimationEnd: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.func, - animationId: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, - isAnimationActive: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.bool, - animationBegin: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, - animationDuration: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.number, - animationEasing: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.oneOf([ "ease", "ease-in", "ease-out", "ease-in-out", "linear" ]) + onAnimationStart: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func, + onAnimationEnd: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func, + animationId: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, + isAnimationActive: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool, + animationBegin: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, + animationDuration: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number, + animationEasing: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOf([ "ease", "ease-in", "ease-out", "ease-in-out", "linear" ]), + id: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string }), _class2.defaultProps = { xAxisId: 0, yAxisId: 0, @@ -9577,24 +9622,24 @@ var _publicBundleJs = []byte(`!function(modules) { hide: !1, data: [], layout: "vertical", - isAnimationActive: !Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.n)(), + isAnimationActive: !Object(__WEBPACK_IMPORTED_MODULE_15__util_ReactUtils__.n)(), animationBegin: 0, animationDuration: 400, animationEasing: "ease", onAnimationStart: function() {}, onAnimationEnd: function() {} }, _class2.getComposedData = function(_ref3) { - var props = _ref3.props, item = _ref3.item, barPosition = _ref3.barPosition, bandSize = _ref3.bandSize, xAxis = _ref3.xAxis, yAxis = _ref3.yAxis, xAxisTicks = _ref3.xAxisTicks, yAxisTicks = _ref3.yAxisTicks, stackedData = _ref3.stackedData, dataStartIndex = _ref3.dataStartIndex, displayedData = _ref3.displayedData, offset = _ref3.offset, pos = Object(__WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__.f)(barPosition, item); + var props = _ref3.props, item = _ref3.item, barPosition = _ref3.barPosition, bandSize = _ref3.bandSize, xAxis = _ref3.xAxis, yAxis = _ref3.yAxis, xAxisTicks = _ref3.xAxisTicks, yAxisTicks = _ref3.yAxisTicks, stackedData = _ref3.stackedData, dataStartIndex = _ref3.dataStartIndex, displayedData = _ref3.displayedData, offset = _ref3.offset, pos = Object(__WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__.f)(barPosition, item); if (!pos) return []; - var layout = props.layout, _item$props = item.props, dataKey = _item$props.dataKey, children = _item$props.children, minPointSize = _item$props.minPointSize, numericAxis = "horizontal" === layout ? yAxis : xAxis, stackedDomain = stackedData ? numericAxis.scale.domain() : null, baseValue = Object(__WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__.j)({ + var layout = props.layout, _item$props = item.props, dataKey = _item$props.dataKey, children = _item$props.children, minPointSize = _item$props.minPointSize, numericAxis = "horizontal" === layout ? yAxis : xAxis, stackedDomain = stackedData ? numericAxis.scale.domain() : null, baseValue = Object(__WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__.j)({ props: props, numericAxis: numericAxis - }), cells = Object(__WEBPACK_IMPORTED_MODULE_14__util_ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_10__component_Cell__.a), rects = displayedData.map(function(entry, index) { + }), cells = Object(__WEBPACK_IMPORTED_MODULE_15__util_ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_11__component_Cell__.a), rects = displayedData.map(function(entry, index) { var value = void 0, x = void 0, y = void 0, width = void 0, height = void 0, background = void 0; - if (stackedData ? value = Object(__WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__.B)(stackedData[dataStartIndex + index], stackedDomain) : (value = Object(__WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__.w)(entry, dataKey), - __WEBPACK_IMPORTED_MODULE_2_lodash_isArray___default()(value) || (value = [ baseValue, value ])), + if (stackedData ? value = Object(__WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__.C)(stackedData[dataStartIndex + index], stackedDomain) : (value = Object(__WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__.w)(entry, dataKey), + __WEBPACK_IMPORTED_MODULE_3_lodash_isArray___default()(value) || (value = [ baseValue, value ])), "horizontal" === layout) { - if (x = Object(__WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__.k)({ + if (x = Object(__WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__.k)({ axis: xAxis, ticks: xAxisTicks, bandSize: bandSize, @@ -9608,10 +9653,10 @@ var _publicBundleJs = []byte(`!function(modules) { width: width, height: yAxis.height }, Math.abs(minPointSize) > 0 && Math.abs(height) < Math.abs(minPointSize)) { - var delta = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.h)(height || minPointSize) * (Math.abs(minPointSize) - Math.abs(height)); + var delta = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.i)(height || minPointSize) * (Math.abs(minPointSize) - Math.abs(height)); y -= delta, height += delta; } - } else if (x = xAxis.scale(value[0]), y = Object(__WEBPACK_IMPORTED_MODULE_15__util_ChartUtils__.k)({ + } else if (x = xAxis.scale(value[0]), y = Object(__WEBPACK_IMPORTED_MODULE_16__util_ChartUtils__.k)({ axis: yAxis, ticks: yAxisTicks, bandSize: bandSize, @@ -9624,7 +9669,7 @@ var _publicBundleJs = []byte(`!function(modules) { width: xAxis.width, height: height }, Math.abs(minPointSize) > 0 && Math.abs(width) < Math.abs(minPointSize)) { - var _delta = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.h)(width || minPointSize) * (Math.abs(minPointSize) - Math.abs(width)); + var _delta = Object(__WEBPACK_IMPORTED_MODULE_14__util_DataUtils__.i)(width || minPointSize) * (Math.abs(minPointSize) - Math.abs(width)); width += _delta; } return _extends({}, entry, { @@ -9663,7 +9708,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(52), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_3_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_3_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react__), __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__), __WEBPACK_IMPORTED_MODULE_5_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_5_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react_smooth__), __WEBPACK_IMPORTED_MODULE_6_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_6_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_classnames__), __WEBPACK_IMPORTED_MODULE_7__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_8__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_9__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_10__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_11__ZAxis__ = __webpack_require__(171), __WEBPACK_IMPORTED_MODULE_12__shape_Curve__ = __webpack_require__(86), __WEBPACK_IMPORTED_MODULE_13__shape_Symbols__ = __webpack_require__(229), __WEBPACK_IMPORTED_MODULE_14__ErrorBar__ = __webpack_require__(117), __WEBPACK_IMPORTED_MODULE_15__component_Cell__ = __webpack_require__(111), __WEBPACK_IMPORTED_MODULE_16__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_17__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { + var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(49), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_3_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_3_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react__), __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__), __WEBPACK_IMPORTED_MODULE_5_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_5_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react_smooth__), __WEBPACK_IMPORTED_MODULE_6_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_6_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_classnames__), __WEBPACK_IMPORTED_MODULE_7__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_8__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_9__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_10__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_11__ZAxis__ = __webpack_require__(173), __WEBPACK_IMPORTED_MODULE_12__shape_Curve__ = __webpack_require__(86), __WEBPACK_IMPORTED_MODULE_13__shape_Symbols__ = __webpack_require__(234), __WEBPACK_IMPORTED_MODULE_14__ErrorBar__ = __webpack_require__(117), __WEBPACK_IMPORTED_MODULE_15__component_Cell__ = __webpack_require__(111), __WEBPACK_IMPORTED_MODULE_16__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_17__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -9701,7 +9746,7 @@ var _publicBundleJs = []byte(`!function(modules) { _this.setState({ isAnimationFinished: !1 }); - }, _this.id = Object(__WEBPACK_IMPORTED_MODULE_16__util_DataUtils__.i)("recharts-scatter-"), + }, _this.id = Object(__WEBPACK_IMPORTED_MODULE_16__util_DataUtils__.j)("recharts-scatter-"), _ret = _temp, _possibleConstructorReturn(_this, _ret); } return _inherits(Scatter, _Component), _createClass(Scatter, [ { @@ -9754,14 +9799,14 @@ var _publicBundleJs = []byte(`!function(modules) { var t = _ref2.t, stepData = points.map(function(entry, index) { var prev = prevPoints && prevPoints[index]; if (prev) { - var interpolatorCx = Object(__WEBPACK_IMPORTED_MODULE_16__util_DataUtils__.d)(prev.cx, entry.cx), interpolatorCy = Object(__WEBPACK_IMPORTED_MODULE_16__util_DataUtils__.d)(prev.cy, entry.cy), interpolatorSize = Object(__WEBPACK_IMPORTED_MODULE_16__util_DataUtils__.d)(prev.size, entry.size); + var interpolatorCx = Object(__WEBPACK_IMPORTED_MODULE_16__util_DataUtils__.e)(prev.cx, entry.cx), interpolatorCy = Object(__WEBPACK_IMPORTED_MODULE_16__util_DataUtils__.e)(prev.cy, entry.cy), interpolatorSize = Object(__WEBPACK_IMPORTED_MODULE_16__util_DataUtils__.e)(prev.size, entry.size); return _extends({}, entry, { cx: interpolatorCx(t), cy: interpolatorCy(t), size: interpolatorSize(t) }); } - var interpolator = Object(__WEBPACK_IMPORTED_MODULE_16__util_DataUtils__.d)(0, entry.size); + var interpolator = Object(__WEBPACK_IMPORTED_MODULE_16__util_DataUtils__.e)(0, entry.size); return _extends({}, entry, { size: interpolator(t) }); @@ -9834,14 +9879,14 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "render", value: function() { - var _props7 = this.props, hide = _props7.hide, points = _props7.points, line = _props7.line, className = _props7.className, xAxis = _props7.xAxis, yAxis = _props7.yAxis, left = _props7.left, top = _props7.top, width = _props7.width, height = _props7.height; + var _props7 = this.props, hide = _props7.hide, points = _props7.points, line = _props7.line, className = _props7.className, xAxis = _props7.xAxis, yAxis = _props7.yAxis, left = _props7.left, top = _props7.top, width = _props7.width, height = _props7.height, id = _props7.id; if (hide || !points || !points.length) return null; - var _state = this.state, isAnimationActive = _state.isAnimationActive, isAnimationFinished = _state.isAnimationFinished, layerClass = __WEBPACK_IMPORTED_MODULE_6_classnames___default()("recharts-scatter", className), needClip = xAxis && xAxis.allowDataOverflow || yAxis && yAxis.allowDataOverflow; + var _state = this.state, isAnimationActive = _state.isAnimationActive, isAnimationFinished = _state.isAnimationFinished, layerClass = __WEBPACK_IMPORTED_MODULE_6_classnames___default()("recharts-scatter", className), needClip = xAxis && xAxis.allowDataOverflow || yAxis && yAxis.allowDataOverflow, clipPathId = __WEBPACK_IMPORTED_MODULE_2_lodash_isNil___default()(id) ? this.id : id; return __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8__container_Layer__.a, { className: layerClass, - clipPath: needClip ? "url(#clipPath-" + this.id + ")" : null + clipPath: needClip ? "url(#clipPath-" + clipPathId + ")" : null }, needClip ? __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement("defs", null, __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement("clipPath", { - id: "clipPath-" + this.id + id: "clipPath-" + clipPathId }, __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement("rect", { x: left, y: top, @@ -9934,6 +9979,9 @@ var _publicBundleJs = []byte(`!function(modules) { cy: cy, x: cx - radius, y: cy - radius, + xAxis: xAxis, + yAxis: yAxis, + zAxis: zAxis, width: 2 * radius, height: 2 * radius, size: size, @@ -10043,12 +10091,12 @@ var _publicBundleJs = []byte(`!function(modules) { }).a; }); }, function(module, exports, __webpack_require__) { - var isObject = __webpack_require__(49), document = __webpack_require__(36).document, is = isObject(document) && isObject(document.createElement); + var isObject = __webpack_require__(50), document = __webpack_require__(36).document, is = isObject(document) && isObject(document.createElement); module.exports = function(it) { return is ? document.createElement(it) : {}; }; }, function(module, exports, __webpack_require__) { - var has = __webpack_require__(67), toIObject = __webpack_require__(75), arrayIndexOf = __webpack_require__(468)(!1), IE_PROTO = __webpack_require__(179)("IE_PROTO"); + var has = __webpack_require__(67), toIObject = __webpack_require__(75), arrayIndexOf = __webpack_require__(468)(!1), IE_PROTO = __webpack_require__(181)("IE_PROTO"); module.exports = function(object, names) { var key, O = toIObject(object), i = 0, result = []; for (key in O) key != IE_PROTO && has(O, key) && result.push(key); @@ -10056,7 +10104,7 @@ var _publicBundleJs = []byte(`!function(modules) { return result; }; }, function(module, exports, __webpack_require__) { - var has = __webpack_require__(67), toObject = __webpack_require__(76), IE_PROTO = __webpack_require__(179)("IE_PROTO"), ObjectProto = Object.prototype; + var has = __webpack_require__(67), toObject = __webpack_require__(76), IE_PROTO = __webpack_require__(181)("IE_PROTO"), ObjectProto = Object.prototype; module.exports = Object.getPrototypeOf || function(O) { return O = toObject(O), has(O, IE_PROTO) ? O[IE_PROTO] : "function" == typeof O.constructor && O instanceof O.constructor ? O.constructor.prototype : O instanceof Object ? ObjectProto : null; }; @@ -10072,7 +10120,7 @@ var _publicBundleJs = []byte(`!function(modules) { module.exports = __webpack_require__(56); }, function(module, exports, __webpack_require__) { __webpack_require__(480); - for (var global = __webpack_require__(36), hide = __webpack_require__(56), Iterators = __webpack_require__(93), TO_STRING_TAG = __webpack_require__(28)("toStringTag"), DOMIterables = "CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","), i = 0; i < DOMIterables.length; i++) { + for (var global = __webpack_require__(36), hide = __webpack_require__(56), Iterators = __webpack_require__(93), TO_STRING_TAG = __webpack_require__(29)("toStringTag"), DOMIterables = "CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","), i = 0; i < DOMIterables.length; i++) { var NAME = DOMIterables[i], Collection = global[NAME], proto = Collection && Collection.prototype; proto && !proto[TO_STRING_TAG] && hide(proto, TO_STRING_TAG, NAME), Iterators[NAME] = Iterators.Array; } @@ -10084,17 +10132,17 @@ var _publicBundleJs = []byte(`!function(modules) { }; }; }, function(module, exports, __webpack_require__) { - var cof = __webpack_require__(176); + var cof = __webpack_require__(178); module.exports = Array.isArray || function(arg) { return "Array" == cof(arg); }; }, function(module, exports, __webpack_require__) { - var $keys = __webpack_require__(272), hiddenKeys = __webpack_require__(181).concat("length", "prototype"); + var $keys = __webpack_require__(272), hiddenKeys = __webpack_require__(183).concat("length", "prototype"); exports.f = Object.getOwnPropertyNames || function(O) { return $keys(O, hiddenKeys); }; }, function(module, exports, __webpack_require__) { - var pIE = __webpack_require__(125), createDesc = __webpack_require__(91), toIObject = __webpack_require__(75), toPrimitive = __webpack_require__(174), has = __webpack_require__(67), IE8_DOM_DEFINE = __webpack_require__(270), gOPD = Object.getOwnPropertyDescriptor; + var pIE = __webpack_require__(125), createDesc = __webpack_require__(91), toIObject = __webpack_require__(75), toPrimitive = __webpack_require__(176), has = __webpack_require__(67), IE8_DOM_DEFINE = __webpack_require__(270), gOPD = Object.getOwnPropertyDescriptor; exports.f = __webpack_require__(37) ? gOPD : function(O, P) { if (O = toIObject(O), P = toPrimitive(P, !0), IE8_DOM_DEFINE) try { return gOPD(O, P); @@ -10123,17 +10171,17 @@ var _publicBundleJs = []byte(`!function(modules) { } }; }, function(module, exports, __webpack_require__) { - var Iterators = __webpack_require__(93), ITERATOR = __webpack_require__(28)("iterator"), ArrayProto = Array.prototype; + var Iterators = __webpack_require__(93), ITERATOR = __webpack_require__(29)("iterator"), ArrayProto = Array.prototype; module.exports = function(it) { return void 0 !== it && (Iterators.Array === it || ArrayProto[ITERATOR] === it); }; }, function(module, exports, __webpack_require__) { - var classof = __webpack_require__(287), ITERATOR = __webpack_require__(28)("iterator"), Iterators = __webpack_require__(93); + var classof = __webpack_require__(287), ITERATOR = __webpack_require__(29)("iterator"), Iterators = __webpack_require__(93); module.exports = __webpack_require__(22).getIteratorMethod = function(it) { if (void 0 != it) return it[ITERATOR] || it["@@iterator"] || Iterators[classof(it)]; }; }, function(module, exports, __webpack_require__) { - var cof = __webpack_require__(176), TAG = __webpack_require__(28)("toStringTag"), ARG = "Arguments" == cof(function() { + var cof = __webpack_require__(178), TAG = __webpack_require__(29)("toStringTag"), ARG = "Arguments" == cof(function() { return arguments; }()), tryGet = function(it, key) { try { @@ -10145,7 +10193,7 @@ var _publicBundleJs = []byte(`!function(modules) { return void 0 === it ? "Undefined" : null === it ? "Null" : "string" == typeof (T = tryGet(O = Object(it), TAG)) ? T : ARG ? cof(O) : "Object" == (B = cof(O)) && "function" == typeof O.callee ? "Arguments" : B; }; }, function(module, exports, __webpack_require__) { - var isObject = __webpack_require__(49); + var isObject = __webpack_require__(50); module.exports = function(it, TYPE) { if (!isObject(it) || it._t !== TYPE) throw TypeError("Incompatible receiver, " + TYPE + " required!"); return it; @@ -10203,7 +10251,7 @@ var _publicBundleJs = []byte(`!function(modules) { return _interopRequireDefault(_RuleList).default; } }); - var _sheets = __webpack_require__(196); + var _sheets = __webpack_require__(198); Object.defineProperty(exports, "sheets", { enumerable: !0, get: function() { @@ -10535,7 +10583,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = values; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__internal_has__ = __webpack_require__(26), __WEBPACK_IMPORTED_MODULE_2__internal_isArray__ = __webpack_require__(57), __WEBPACK_IMPORTED_MODULE_3__internal_isInteger__ = __webpack_require__(201), __WEBPACK_IMPORTED_MODULE_4__assoc__ = __webpack_require__(138), __WEBPACK_IMPORTED_MODULE_5__isNil__ = __webpack_require__(307), assocPath = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function assocPath(path, val, obj) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__internal_has__ = __webpack_require__(26), __WEBPACK_IMPORTED_MODULE_2__internal_isArray__ = __webpack_require__(57), __WEBPACK_IMPORTED_MODULE_3__internal_isInteger__ = __webpack_require__(203), __WEBPACK_IMPORTED_MODULE_4__assoc__ = __webpack_require__(138), __WEBPACK_IMPORTED_MODULE_5__isNil__ = __webpack_require__(307), assocPath = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function assocPath(path, val, obj) { if (0 === path.length) return val; var idx = path[0]; if (path.length > 1) { @@ -10557,7 +10605,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = isNil; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_reduce__ = __webpack_require__(29), __WEBPACK_IMPORTED_MODULE_2__ap__ = __webpack_require__(200), __WEBPACK_IMPORTED_MODULE_3__curryN__ = __webpack_require__(23), __WEBPACK_IMPORTED_MODULE_4__map__ = __webpack_require__(27), liftN = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(arity, fn) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_reduce__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_2__ap__ = __webpack_require__(202), __WEBPACK_IMPORTED_MODULE_3__curryN__ = __webpack_require__(23), __WEBPACK_IMPORTED_MODULE_4__map__ = __webpack_require__(27), liftN = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(arity, fn) { var lifted = Object(__WEBPACK_IMPORTED_MODULE_3__curryN__.a)(arity, fn); return Object(__WEBPACK_IMPORTED_MODULE_3__curryN__.a)(arity, function() { return Object(__WEBPACK_IMPORTED_MODULE_1__internal_reduce__.a)(__WEBPACK_IMPORTED_MODULE_2__ap__.a, Object(__WEBPACK_IMPORTED_MODULE_4__map__.a)(lifted, arguments[0]), Array.prototype.slice.call(arguments, 1)); @@ -10608,7 +10656,7 @@ var _publicBundleJs = []byte(`!function(modules) { } } __webpack_exports__.a = _clone; - var __WEBPACK_IMPORTED_MODULE_0__cloneRegExp__ = __webpack_require__(311), __WEBPACK_IMPORTED_MODULE_1__type__ = __webpack_require__(204); + var __WEBPACK_IMPORTED_MODULE_0__cloneRegExp__ = __webpack_require__(311), __WEBPACK_IMPORTED_MODULE_1__type__ = __webpack_require__(206); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; function _cloneRegExp(pattern) { @@ -10628,7 +10676,7 @@ var _publicBundleJs = []byte(`!function(modules) { return Object(__WEBPACK_IMPORTED_MODULE_0__internal_arity__.a)(arguments[0].length, Object(__WEBPACK_IMPORTED_MODULE_2__reduce__.a)(__WEBPACK_IMPORTED_MODULE_1__internal_pipe__.a, arguments[0], Object(__WEBPACK_IMPORTED_MODULE_3__tail__.a)(arguments))); } __webpack_exports__.a = pipe; - var __WEBPACK_IMPORTED_MODULE_0__internal_arity__ = __webpack_require__(43), __WEBPACK_IMPORTED_MODULE_1__internal_pipe__ = __webpack_require__(601), __WEBPACK_IMPORTED_MODULE_2__reduce__ = __webpack_require__(45), __WEBPACK_IMPORTED_MODULE_3__tail__ = __webpack_require__(206); + var __WEBPACK_IMPORTED_MODULE_0__internal_arity__ = __webpack_require__(43), __WEBPACK_IMPORTED_MODULE_1__internal_pipe__ = __webpack_require__(601), __WEBPACK_IMPORTED_MODULE_2__reduce__ = __webpack_require__(45), __WEBPACK_IMPORTED_MODULE_3__tail__ = __webpack_require__(208); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; function composeK() { @@ -10637,7 +10685,7 @@ var _publicBundleJs = []byte(`!function(modules) { return Object(__WEBPACK_IMPORTED_MODULE_1__compose__.a)(__WEBPACK_IMPORTED_MODULE_1__compose__.a.apply(this, Object(__WEBPACK_IMPORTED_MODULE_2__map__.a)(__WEBPACK_IMPORTED_MODULE_0__chain__.a, init)), last); } __webpack_exports__.a = composeK; - var __WEBPACK_IMPORTED_MODULE_0__chain__ = __webpack_require__(203), __WEBPACK_IMPORTED_MODULE_1__compose__ = __webpack_require__(205), __WEBPACK_IMPORTED_MODULE_2__map__ = __webpack_require__(27); + var __WEBPACK_IMPORTED_MODULE_0__chain__ = __webpack_require__(205), __WEBPACK_IMPORTED_MODULE_1__compose__ = __webpack_require__(207), __WEBPACK_IMPORTED_MODULE_2__map__ = __webpack_require__(27); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; function pipeP() { @@ -10645,7 +10693,7 @@ var _publicBundleJs = []byte(`!function(modules) { return Object(__WEBPACK_IMPORTED_MODULE_0__internal_arity__.a)(arguments[0].length, Object(__WEBPACK_IMPORTED_MODULE_2__reduce__.a)(__WEBPACK_IMPORTED_MODULE_1__internal_pipeP__.a, arguments[0], Object(__WEBPACK_IMPORTED_MODULE_3__tail__.a)(arguments))); } __webpack_exports__.a = pipeP; - var __WEBPACK_IMPORTED_MODULE_0__internal_arity__ = __webpack_require__(43), __WEBPACK_IMPORTED_MODULE_1__internal_pipeP__ = __webpack_require__(603), __WEBPACK_IMPORTED_MODULE_2__reduce__ = __webpack_require__(45), __WEBPACK_IMPORTED_MODULE_3__tail__ = __webpack_require__(206); + var __WEBPACK_IMPORTED_MODULE_0__internal_arity__ = __webpack_require__(43), __WEBPACK_IMPORTED_MODULE_1__internal_pipeP__ = __webpack_require__(603), __WEBPACK_IMPORTED_MODULE_2__reduce__ = __webpack_require__(45), __WEBPACK_IMPORTED_MODULE_3__tail__ = __webpack_require__(208); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; function _indexOf(list, a, idx) { @@ -10684,7 +10732,7 @@ var _publicBundleJs = []byte(`!function(modules) { return -1; } __webpack_exports__.a = _indexOf; - var __WEBPACK_IMPORTED_MODULE_0__equals__ = __webpack_require__(30); + var __WEBPACK_IMPORTED_MODULE_0__equals__ = __webpack_require__(31); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), identical = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(a, b) { @@ -10701,7 +10749,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = _complement; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__curry__ = __webpack_require__(202), __WEBPACK_IMPORTED_MODULE_2__nAry__ = __webpack_require__(139), constructN = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(n, Fn) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__curry__ = __webpack_require__(204), __WEBPACK_IMPORTED_MODULE_2__nAry__ = __webpack_require__(139), constructN = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(n, Fn) { if (n > 10) throw new Error("Constructor with greater than ten arguments"); return 0 === n ? function() { return new Fn(); @@ -10832,7 +10880,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = or; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__internal_isArguments__ = __webpack_require__(300), __WEBPACK_IMPORTED_MODULE_2__internal_isArray__ = __webpack_require__(57), __WEBPACK_IMPORTED_MODULE_3__internal_isObject__ = __webpack_require__(210), __WEBPACK_IMPORTED_MODULE_4__internal_isString__ = __webpack_require__(98), empty = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(function(x) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__internal_isArguments__ = __webpack_require__(300), __WEBPACK_IMPORTED_MODULE_2__internal_isArray__ = __webpack_require__(57), __WEBPACK_IMPORTED_MODULE_3__internal_isObject__ = __webpack_require__(212), __WEBPACK_IMPORTED_MODULE_4__internal_isString__ = __webpack_require__(98), empty = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(function(x) { return null != x && "function" == typeof x["fantasy-land/empty"] ? x["fantasy-land/empty"]() : null != x && null != x.constructor && "function" == typeof x.constructor["fantasy-land/empty"] ? x.constructor["fantasy-land/empty"]() : null != x && "function" == typeof x.empty ? x.empty() : null != x && null != x.constructor && "function" == typeof x.constructor.empty ? x.constructor.empty() : Object(__WEBPACK_IMPORTED_MODULE_2__internal_isArray__.a)(x) ? [] : Object(__WEBPACK_IMPORTED_MODULE_4__internal_isString__.a)(x) ? "" : Object(__WEBPACK_IMPORTED_MODULE_3__internal_isObject__.a)(x) ? {} : Object(__WEBPACK_IMPORTED_MODULE_1__internal_isArguments__.a)(x) ? function() { return arguments; }() : void 0; @@ -10982,7 +11030,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = times; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__ap__ = __webpack_require__(200), __WEBPACK_IMPORTED_MODULE_2__map__ = __webpack_require__(27), __WEBPACK_IMPORTED_MODULE_3__prepend__ = __webpack_require__(346), __WEBPACK_IMPORTED_MODULE_4__reduceRight__ = __webpack_require__(348), sequence = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(of, traversable) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__ap__ = __webpack_require__(202), __WEBPACK_IMPORTED_MODULE_2__map__ = __webpack_require__(27), __WEBPACK_IMPORTED_MODULE_3__prepend__ = __webpack_require__(346), __WEBPACK_IMPORTED_MODULE_4__reduceRight__ = __webpack_require__(348), sequence = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(of, traversable) { return "function" == typeof traversable.sequence ? traversable.sequence(of) : Object(__WEBPACK_IMPORTED_MODULE_4__reduceRight__.a)(function(x, acc) { return Object(__WEBPACK_IMPORTED_MODULE_1__ap__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__map__.a)(__WEBPACK_IMPORTED_MODULE_3__prepend__.a, x), acc); }, of([]), traversable); @@ -11332,7 +11380,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _extends2 = __webpack_require__(10), _extends3 = _interopRequireDefault(_extends2), _getPrototypeOf = __webpack_require__(38), _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf), _classCallCheck2 = __webpack_require__(39), _classCallCheck3 = _interopRequireDefault(_classCallCheck2), _createClass2 = __webpack_require__(40), _createClass3 = _interopRequireDefault(_createClass2), _possibleConstructorReturn2 = __webpack_require__(41), _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2), _inherits2 = __webpack_require__(42), _inherits3 = _interopRequireDefault(_inherits2), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _wrapDisplayName = __webpack_require__(95), _wrapDisplayName2 = _interopRequireDefault(_wrapDisplayName), _hoistNonReactStatics = __webpack_require__(192), _hoistNonReactStatics2 = _interopRequireDefault(_hoistNonReactStatics), _createMuiTheme = __webpack_require__(191), _createMuiTheme2 = _interopRequireDefault(_createMuiTheme), _themeListener = __webpack_require__(190), _themeListener2 = _interopRequireDefault(_themeListener), defaultTheme = void 0, withTheme = function() { + var _extends2 = __webpack_require__(10), _extends3 = _interopRequireDefault(_extends2), _getPrototypeOf = __webpack_require__(38), _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf), _classCallCheck2 = __webpack_require__(39), _classCallCheck3 = _interopRequireDefault(_classCallCheck2), _createClass2 = __webpack_require__(40), _createClass3 = _interopRequireDefault(_createClass2), _possibleConstructorReturn2 = __webpack_require__(41), _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2), _inherits2 = __webpack_require__(42), _inherits3 = _interopRequireDefault(_inherits2), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _wrapDisplayName = __webpack_require__(95), _wrapDisplayName2 = _interopRequireDefault(_wrapDisplayName), _hoistNonReactStatics = __webpack_require__(194), _hoistNonReactStatics2 = _interopRequireDefault(_hoistNonReactStatics), _createMuiTheme = __webpack_require__(193), _createMuiTheme2 = _interopRequireDefault(_createMuiTheme), _themeListener = __webpack_require__(192), _themeListener2 = _interopRequireDefault(_themeListener), defaultTheme = void 0, withTheme = function() { return function(Component) { var WithTheme = function(_React$Component) { function WithTheme(props, context) { @@ -11388,11 +11436,11 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "Layer", function() { return __WEBPACK_IMPORTED_MODULE_2__container_Layer__.a; }); - var __WEBPACK_IMPORTED_MODULE_3__component_Legend__ = __webpack_require__(228); + var __WEBPACK_IMPORTED_MODULE_3__component_Legend__ = __webpack_require__(233); __webpack_require__.d(__webpack_exports__, "Legend", function() { return __WEBPACK_IMPORTED_MODULE_3__component_Legend__.a; }); - var __WEBPACK_IMPORTED_MODULE_4__component_Tooltip__ = __webpack_require__(156); + var __WEBPACK_IMPORTED_MODULE_4__component_Tooltip__ = __webpack_require__(164); __webpack_require__.d(__webpack_exports__, "Tooltip", function() { return __WEBPACK_IMPORTED_MODULE_4__component_Tooltip__.a; }); @@ -11416,7 +11464,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "LabelList", function() { return __WEBPACK_IMPORTED_MODULE_9__component_LabelList__.a; }); - var __WEBPACK_IMPORTED_MODULE_10__shape_Sector__ = __webpack_require__(168); + var __WEBPACK_IMPORTED_MODULE_10__shape_Sector__ = __webpack_require__(170); __webpack_require__.d(__webpack_exports__, "Sector", function() { return __WEBPACK_IMPORTED_MODULE_10__shape_Sector__.a; }); @@ -11440,7 +11488,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "Cross", function() { return __WEBPACK_IMPORTED_MODULE_15__shape_Cross__.a; }); - var __WEBPACK_IMPORTED_MODULE_16__shape_Symbols__ = __webpack_require__(229); + var __WEBPACK_IMPORTED_MODULE_16__shape_Symbols__ = __webpack_require__(234); __webpack_require__.d(__webpack_exports__, "Symbols", function() { return __WEBPACK_IMPORTED_MODULE_16__shape_Symbols__.a; }); @@ -11448,11 +11496,11 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "PolarGrid", function() { return __WEBPACK_IMPORTED_MODULE_17__polar_PolarGrid__.a; }); - var __WEBPACK_IMPORTED_MODULE_18__polar_PolarRadiusAxis__ = __webpack_require__(169); + var __WEBPACK_IMPORTED_MODULE_18__polar_PolarRadiusAxis__ = __webpack_require__(171); __webpack_require__.d(__webpack_exports__, "PolarRadiusAxis", function() { return __WEBPACK_IMPORTED_MODULE_18__polar_PolarRadiusAxis__.a; }); - var __WEBPACK_IMPORTED_MODULE_19__polar_PolarAngleAxis__ = __webpack_require__(170); + var __WEBPACK_IMPORTED_MODULE_19__polar_PolarAngleAxis__ = __webpack_require__(172); __webpack_require__.d(__webpack_exports__, "PolarAngleAxis", function() { return __WEBPACK_IMPORTED_MODULE_19__polar_PolarAngleAxis__.a; }); @@ -11516,7 +11564,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "YAxis", function() { return __WEBPACK_IMPORTED_MODULE_34__cartesian_YAxis__.a; }); - var __WEBPACK_IMPORTED_MODULE_35__cartesian_ZAxis__ = __webpack_require__(171); + var __WEBPACK_IMPORTED_MODULE_35__cartesian_ZAxis__ = __webpack_require__(173); __webpack_require__.d(__webpack_exports__, "ZAxis", function() { return __WEBPACK_IMPORTED_MODULE_35__cartesian_ZAxis__.a; }); @@ -11566,7 +11614,7 @@ var _publicBundleJs = []byte(`!function(modules) { }); }, function(module, exports, __webpack_require__) { var dP = __webpack_require__(833), createDesc = __webpack_require__(838); - module.exports = __webpack_require__(222) ? function(object, key, value) { + module.exports = __webpack_require__(224) ? function(object, key, value) { return dP.f(object, key, createDesc(1, value)); } : function(object, key, value) { return object[key] = value, object; @@ -11580,9 +11628,37 @@ var _publicBundleJs = []byte(`!function(modules) { var freeGlobal = "object" == typeof global && global && global.Object === Object && global; module.exports = freeGlobal; }).call(exports, __webpack_require__(68)); +}, function(module, exports, __webpack_require__) { + function baseGet(object, path) { + path = castPath(path, object); + for (var index = 0, length = path.length; null != object && index < length; ) object = object[toKey(path[index++])]; + return index && index == length ? object : void 0; + } + var castPath = __webpack_require__(367), toKey = __webpack_require__(158); + module.exports = baseGet; +}, function(module, exports, __webpack_require__) { + function castPath(value, object) { + return isArray(value) ? value : isKey(value, object) ? [ value ] : stringToPath(toString(value)); + } + var isArray = __webpack_require__(16), isKey = __webpack_require__(228), stringToPath = __webpack_require__(863), toString = __webpack_require__(887); + module.exports = castPath; +}, function(module, exports) { + function toSource(func) { + if (null != func) { + try { + return funcToString.call(func); + } catch (e) {} + try { + return func + ""; + } catch (e) {} + } + return ""; + } + var funcProto = Function.prototype, funcToString = funcProto.toString; + module.exports = toSource; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0_d3_path__ = __webpack_require__(105), __WEBPACK_IMPORTED_MODULE_1__constant__ = __webpack_require__(70), __WEBPACK_IMPORTED_MODULE_2__curve_linear__ = __webpack_require__(152), __WEBPACK_IMPORTED_MODULE_3__line__ = __webpack_require__(231), __WEBPACK_IMPORTED_MODULE_4__point__ = __webpack_require__(232); + var __WEBPACK_IMPORTED_MODULE_0_d3_path__ = __webpack_require__(105), __WEBPACK_IMPORTED_MODULE_1__constant__ = __webpack_require__(71), __WEBPACK_IMPORTED_MODULE_2__curve_linear__ = __webpack_require__(160), __WEBPACK_IMPORTED_MODULE_3__line__ = __webpack_require__(236), __WEBPACK_IMPORTED_MODULE_4__point__ = __webpack_require__(237); __webpack_exports__.a = function() { function area(data) { var i, j, k, d, buffer, n = data.length, defined0 = !1, x0z = new Array(n), y0z = new Array(n); @@ -11650,7 +11726,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "a", function() { return curveRadialLinear; }), __webpack_exports__.b = curveRadial; - var __WEBPACK_IMPORTED_MODULE_0__linear__ = __webpack_require__(152), curveRadialLinear = curveRadial(__WEBPACK_IMPORTED_MODULE_0__linear__.a); + var __WEBPACK_IMPORTED_MODULE_0__linear__ = __webpack_require__(160), curveRadialLinear = curveRadial(__WEBPACK_IMPORTED_MODULE_0__linear__.a); Radial.prototype = { areaStart: function() { this._curve.areaStart(); @@ -11677,8 +11753,8 @@ var _publicBundleJs = []byte(`!function(modules) { }, l; } __webpack_exports__.a = lineRadial; - var __WEBPACK_IMPORTED_MODULE_0__curve_radial__ = __webpack_require__(367); - __webpack_require__(231); + var __WEBPACK_IMPORTED_MODULE_0__curve_radial__ = __webpack_require__(370); + __webpack_require__(236); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_exports__.a = function(x, y) { @@ -11770,7 +11846,7 @@ var _publicBundleJs = []byte(`!function(modules) { this._context = context, this._k = (1 - tension) / 6; } __webpack_exports__.a = CardinalClosed; - var __WEBPACK_IMPORTED_MODULE_0__noop__ = __webpack_require__(153), __WEBPACK_IMPORTED_MODULE_1__cardinal__ = __webpack_require__(155); + var __WEBPACK_IMPORTED_MODULE_0__noop__ = __webpack_require__(161), __WEBPACK_IMPORTED_MODULE_1__cardinal__ = __webpack_require__(163); CardinalClosed.prototype = { areaStart: __WEBPACK_IMPORTED_MODULE_0__noop__.a, areaEnd: __WEBPACK_IMPORTED_MODULE_0__noop__.a, @@ -11827,7 +11903,7 @@ var _publicBundleJs = []byte(`!function(modules) { this._context = context, this._k = (1 - tension) / 6; } __webpack_exports__.a = CardinalOpen; - var __WEBPACK_IMPORTED_MODULE_0__cardinal__ = __webpack_require__(155); + var __WEBPACK_IMPORTED_MODULE_0__cardinal__ = __webpack_require__(163); CardinalOpen.prototype = { areaStart: function() { this._line = 0; @@ -11922,7 +11998,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _class, _class2, _temp, _isEqual2 = __webpack_require__(52), _isEqual3 = _interopRequireDefault(_isEqual2), _extends = Object.assign || function(target) { + var _class, _class2, _temp, _isEqual2 = __webpack_require__(49), _isEqual3 = _interopRequireDefault(_isEqual2), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -11940,7 +12016,7 @@ var _publicBundleJs = []byte(`!function(modules) { return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor; }; - }(), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _AnimateManager = __webpack_require__(942), _AnimateManager2 = _interopRequireDefault(_AnimateManager), _PureRender = __webpack_require__(945), _PureRender2 = _interopRequireDefault(_PureRender), _easing = __webpack_require__(393), _configUpdate = __webpack_require__(964), _configUpdate2 = _interopRequireDefault(_configUpdate), _util = __webpack_require__(161), Animate = (0, + }(), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _AnimateManager = __webpack_require__(947), _AnimateManager2 = _interopRequireDefault(_AnimateManager), _PureRender = __webpack_require__(950), _PureRender2 = _interopRequireDefault(_PureRender), _easing = __webpack_require__(395), _configUpdate = __webpack_require__(969), _configUpdate2 = _interopRequireDefault(_configUpdate), _util = __webpack_require__(165), Animate = (0, _PureRender2.default)((_temp = _class2 = function(_Component) { function Animate(props, context) { _classCallCheck(this, Animate); @@ -12118,23 +12194,9 @@ var _publicBundleJs = []byte(`!function(modules) { var data = this.__data__ = new ListCache(entries); this.size = data.size; } - var ListCache = __webpack_require__(157), stackClear = __webpack_require__(895), stackDelete = __webpack_require__(896), stackGet = __webpack_require__(897), stackHas = __webpack_require__(898), stackSet = __webpack_require__(899); + var ListCache = __webpack_require__(154), stackClear = __webpack_require__(916), stackDelete = __webpack_require__(917), stackGet = __webpack_require__(918), stackHas = __webpack_require__(919), stackSet = __webpack_require__(920); Stack.prototype.clear = stackClear, Stack.prototype.delete = stackDelete, Stack.prototype.get = stackGet, Stack.prototype.has = stackHas, Stack.prototype.set = stackSet, module.exports = Stack; -}, function(module, exports) { - function toSource(func) { - if (null != func) { - try { - return funcToString.call(func); - } catch (e) {} - try { - return func + ""; - } catch (e) {} - } - return ""; - } - var funcProto = Function.prototype, funcToString = funcProto.toString; - module.exports = toSource; }, function(module, exports, __webpack_require__) { function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { var isPartial = bitmask & COMPARE_PARTIAL_FLAG, arrLength = array.length, othLength = other.length; @@ -12164,14 +12226,14 @@ var _publicBundleJs = []byte(`!function(modules) { } return stack.delete(array), stack.delete(other), result; } - var SetCache = __webpack_require__(384), arraySome = __webpack_require__(918), cacheHas = __webpack_require__(385), COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2; + var SetCache = __webpack_require__(386), arraySome = __webpack_require__(923), cacheHas = __webpack_require__(387), COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2; module.exports = equalArrays; }, function(module, exports, __webpack_require__) { function SetCache(values) { var index = -1, length = null == values ? 0 : values.length; for (this.__data__ = new MapCache(); ++index < length; ) this.add(values[index]); } - var MapCache = __webpack_require__(238), setCacheAdd = __webpack_require__(916), setCacheHas = __webpack_require__(917); + var MapCache = __webpack_require__(229), setCacheAdd = __webpack_require__(921), setCacheHas = __webpack_require__(922); SetCache.prototype.add = SetCache.prototype.push = setCacheAdd, SetCache.prototype.has = setCacheHas, module.exports = SetCache; }, function(module, exports) { @@ -12196,11 +12258,11 @@ var _publicBundleJs = []byte(`!function(modules) { module.exports = arrayFilter; }, function(module, exports, __webpack_require__) { (function(module) { - var root = __webpack_require__(46), stubFalse = __webpack_require__(931), freeExports = "object" == typeof exports && exports && !exports.nodeType && exports, freeModule = freeExports && "object" == typeof module && module && !module.nodeType && module, moduleExports = freeModule && freeModule.exports === freeExports, Buffer = moduleExports ? root.Buffer : void 0, nativeIsBuffer = Buffer ? Buffer.isBuffer : void 0, isBuffer = nativeIsBuffer || stubFalse; + var root = __webpack_require__(46), stubFalse = __webpack_require__(936), freeExports = "object" == typeof exports && exports && !exports.nodeType && exports, freeModule = freeExports && "object" == typeof module && module && !module.nodeType && module, moduleExports = freeModule && freeModule.exports === freeExports, Buffer = moduleExports ? root.Buffer : void 0, nativeIsBuffer = Buffer ? Buffer.isBuffer : void 0, isBuffer = nativeIsBuffer || stubFalse; module.exports = isBuffer; - }).call(exports, __webpack_require__(195)(module)); + }).call(exports, __webpack_require__(197)(module)); }, function(module, exports, __webpack_require__) { - var baseIsTypedArray = __webpack_require__(932), baseUnary = __webpack_require__(243), nodeUtil = __webpack_require__(933), nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray, isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray; + var baseIsTypedArray = __webpack_require__(937), baseUnary = __webpack_require__(245), nodeUtil = __webpack_require__(938), nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray, isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray; module.exports = isTypedArray; }, function(module, exports) { function overArg(func, transform) { @@ -12211,7 +12273,7 @@ var _publicBundleJs = []byte(`!function(modules) { module.exports = overArg; }, function(module, exports, __webpack_require__) { (function(global) { - for (var now = __webpack_require__(944), root = "undefined" == typeof window ? global : window, vendors = [ "moz", "webkit" ], suffix = "AnimationFrame", raf = root["request" + suffix], caf = root["cancel" + suffix] || root["cancelRequest" + suffix], i = 0; !raf && i < vendors.length; i++) raf = root[vendors[i] + "Request" + suffix], + for (var now = __webpack_require__(949), root = "undefined" == typeof window ? global : window, vendors = [ "moz", "webkit" ], suffix = "AnimationFrame", raf = root["request" + suffix], caf = root["cancel" + suffix] || root["cancelRequest" + suffix], i = 0; !raf && i < vendors.length; i++) raf = root[vendors[i] + "Request" + suffix], caf = root[vendors[i] + "Cancel" + suffix] || root[vendors[i] + "CancelRequest" + suffix]; if (!raf || !caf) { var last = 0, id = 0, queue = []; @@ -12255,7 +12317,7 @@ var _publicBundleJs = []byte(`!function(modules) { var Ctor = hasOwnProperty.call(proto, "constructor") && proto.constructor; return "function" == typeof Ctor && Ctor instanceof Ctor && funcToString.call(Ctor) == objectCtorString; } - var baseGetTag = __webpack_require__(59), getPrototype = __webpack_require__(946), isObjectLike = __webpack_require__(51), objectTag = "[object Object]", funcProto = Function.prototype, objectProto = Object.prototype, funcToString = funcProto.toString, hasOwnProperty = objectProto.hasOwnProperty, objectCtorString = funcToString.call(Object); + var baseGetTag = __webpack_require__(59), getPrototype = __webpack_require__(951), isObjectLike = __webpack_require__(52), objectTag = "[object Object]", funcProto = Function.prototype, objectProto = Object.prototype, funcToString = funcProto.toString, hasOwnProperty = objectProto.hasOwnProperty, objectCtorString = funcToString.call(Object); module.exports = isPlainObject; }, function(module, exports, __webpack_require__) { "use strict"; @@ -12269,7 +12331,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.configEasing = exports.configSpring = exports.configBezier = void 0; - var _util = __webpack_require__(161), cubicBezierFactor = function(c1, c2) { + var _util = __webpack_require__(165), cubicBezierFactor = function(c1, c2) { return [ 0, 3 * c1, 3 * c2 - 6 * c1, 3 * c1 - 3 * c2 + 1 ]; }, multyTime = function(params, t) { return params.map(function(param, i) { @@ -12361,10 +12423,10 @@ var _publicBundleJs = []byte(`!function(modules) { function baseRest(func, start) { return setToString(overRest(func, start, identity), func + ""); } - var identity = __webpack_require__(82), overRest = __webpack_require__(955), setToString = __webpack_require__(957); + var identity = __webpack_require__(83), overRest = __webpack_require__(960), setToString = __webpack_require__(962); module.exports = baseRest; }, function(module, exports, __webpack_require__) { - var baseForOwn = __webpack_require__(967), createBaseEach = __webpack_require__(970), baseEach = createBaseEach(baseForOwn); + var baseForOwn = __webpack_require__(972), createBaseEach = __webpack_require__(975), baseEach = createBaseEach(baseForOwn); module.exports = baseEach; }, function(module, exports, __webpack_require__) { function isStrictComparable(value) { @@ -12379,20 +12441,6 @@ var _publicBundleJs = []byte(`!function(modules) { }; } module.exports = matchesStrictComparable; -}, function(module, exports, __webpack_require__) { - function baseGet(object, path) { - path = castPath(path, object); - for (var index = 0, length = path.length; null != object && index < length; ) object = object[toKey(path[index++])]; - return index && index == length ? object : void 0; - } - var castPath = __webpack_require__(399), toKey = __webpack_require__(163); - module.exports = baseGet; -}, function(module, exports, __webpack_require__) { - function castPath(value, object) { - return isArray(value) ? value : isKey(value, object) ? [ value ] : stringToPath(toString(value)); - } - var isArray = __webpack_require__(16), isKey = __webpack_require__(245), stringToPath = __webpack_require__(975), toString = __webpack_require__(978); - module.exports = castPath; }, function(module, exports, __webpack_require__) { function toNumber(value) { if ("number" == typeof value) return value; @@ -12406,7 +12454,7 @@ var _publicBundleJs = []byte(`!function(modules) { var isBinary = reIsBinary.test(value); return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value; } - var isObject = __webpack_require__(47), isSymbol = __webpack_require__(83), NAN = NaN, reTrim = /^\s+|\s+$/g, reIsBadHex = /^[-+]0x[0-9a-f]+$/i, reIsBinary = /^0b[01]+$/i, reIsOctal = /^0o[0-7]+$/i, freeParseInt = parseInt; + var isObject = __webpack_require__(47), isSymbol = __webpack_require__(82), NAN = NaN, reTrim = /^\s+|\s+$/g, reIsBadHex = /^[-+]0x[0-9a-f]+$/i, reIsBinary = /^0b[01]+$/i, reIsOctal = /^0o[0-7]+$/i, freeParseInt = parseInt; module.exports = toNumber; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -12425,7 +12473,7 @@ var _publicBundleJs = []byte(`!function(modules) { }; }).call(__webpack_exports__, __webpack_require__(3)); }, function(module, exports, __webpack_require__) { - var baseFlatten = __webpack_require__(1003), baseOrderBy = __webpack_require__(1005), baseRest = __webpack_require__(394), isIterateeCall = __webpack_require__(403), sortBy = baseRest(function(collection, iteratees) { + var baseFlatten = __webpack_require__(1003), baseOrderBy = __webpack_require__(1005), baseRest = __webpack_require__(396), isIterateeCall = __webpack_require__(403), sortBy = baseRest(function(collection, iteratees) { if (null == collection) return []; var length = iteratees.length; return length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1]) ? iteratees = [] : length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2]) && (iteratees = [ iteratees[0] ]), @@ -12438,7 +12486,7 @@ var _publicBundleJs = []byte(`!function(modules) { var type = typeof index; return !!("number" == type ? isArrayLike(object) && isIndex(index, object.length) : "string" == type && index in object) && eq(object[index], value); } - var eq = __webpack_require__(236), isArrayLike = __webpack_require__(109), isIndex = __webpack_require__(241), isObject = __webpack_require__(47); + var eq = __webpack_require__(230), isArrayLike = __webpack_require__(109), isIndex = __webpack_require__(243), isObject = __webpack_require__(47); module.exports = isIterateeCall; }, function(module, exports) { function baseGt(value, other) { @@ -12449,7 +12497,7 @@ var _publicBundleJs = []byte(`!function(modules) { function min(array) { return array && array.length ? baseExtremum(array, identity, baseLt) : void 0; } - var baseExtremum = __webpack_require__(164), baseLt = __webpack_require__(406), identity = __webpack_require__(82); + var baseExtremum = __webpack_require__(166), baseLt = __webpack_require__(406), identity = __webpack_require__(83); module.exports = min; }, function(module, exports) { function baseLt(value, other) { @@ -12874,7 +12922,7 @@ var _publicBundleJs = []byte(`!function(modules) { return b(t) + ""; }; } - var __WEBPACK_IMPORTED_MODULE_0__number__ = __webpack_require__(165), reA = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g, reB = new RegExp(reA.source, "g"); + var __WEBPACK_IMPORTED_MODULE_0__number__ = __webpack_require__(167), reA = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g, reB = new RegExp(reA.source, "g"); __webpack_exports__.a = function(a, b) { var am, bm, bs, bi = reA.lastIndex = reB.lastIndex = 0, i = -1, s = [], q = []; for (a += "", b += ""; (am = reA.exec(a)) && (bm = reB.exec(b)); ) (bs = bm.index) > bi && (bs = b.slice(bi, bs), @@ -12921,7 +12969,7 @@ var _publicBundleJs = []byte(`!function(modules) { }); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__exponent__ = __webpack_require__(167), __WEBPACK_IMPORTED_MODULE_1__formatGroup__ = __webpack_require__(1052), __WEBPACK_IMPORTED_MODULE_2__formatNumerals__ = __webpack_require__(1053), __WEBPACK_IMPORTED_MODULE_3__formatSpecifier__ = __webpack_require__(433), __WEBPACK_IMPORTED_MODULE_4__formatTypes__ = __webpack_require__(434), __WEBPACK_IMPORTED_MODULE_5__formatPrefixAuto__ = __webpack_require__(435), __WEBPACK_IMPORTED_MODULE_6__identity__ = __webpack_require__(1056), prefixes = [ "y", "z", "a", "f", "p", "n", "µ", "m", "", "k", "M", "G", "T", "P", "E", "Z", "Y" ]; + var __WEBPACK_IMPORTED_MODULE_0__exponent__ = __webpack_require__(169), __WEBPACK_IMPORTED_MODULE_1__formatGroup__ = __webpack_require__(1052), __WEBPACK_IMPORTED_MODULE_2__formatNumerals__ = __webpack_require__(1053), __WEBPACK_IMPORTED_MODULE_3__formatSpecifier__ = __webpack_require__(433), __WEBPACK_IMPORTED_MODULE_4__formatTypes__ = __webpack_require__(434), __WEBPACK_IMPORTED_MODULE_5__formatPrefixAuto__ = __webpack_require__(435), __WEBPACK_IMPORTED_MODULE_6__identity__ = __webpack_require__(1056), prefixes = [ "y", "z", "a", "f", "p", "n", "µ", "m", "", "k", "M", "G", "T", "P", "E", "Z", "Y" ]; __webpack_exports__.a = function(locale) { function newFormat(specifier) { function format(value) { @@ -13101,7 +13149,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, scale; } __webpack_exports__.a = calendar; - var __WEBPACK_IMPORTED_MODULE_0_d3_array__ = __webpack_require__(53), __WEBPACK_IMPORTED_MODULE_1_d3_interpolate__ = __webpack_require__(114), __WEBPACK_IMPORTED_MODULE_2_d3_time__ = __webpack_require__(256), __WEBPACK_IMPORTED_MODULE_3_d3_time_format__ = __webpack_require__(438), __WEBPACK_IMPORTED_MODULE_4__array__ = __webpack_require__(73), __WEBPACK_IMPORTED_MODULE_5__continuous__ = __webpack_require__(166), __WEBPACK_IMPORTED_MODULE_6__nice__ = __webpack_require__(436), durationSecond = 1e3, durationMinute = 60 * durationSecond, durationHour = 60 * durationMinute, durationDay = 24 * durationHour, durationWeek = 7 * durationDay, durationMonth = 30 * durationDay, durationYear = 365 * durationDay; + var __WEBPACK_IMPORTED_MODULE_0_d3_array__ = __webpack_require__(53), __WEBPACK_IMPORTED_MODULE_1_d3_interpolate__ = __webpack_require__(114), __WEBPACK_IMPORTED_MODULE_2_d3_time__ = __webpack_require__(256), __WEBPACK_IMPORTED_MODULE_3_d3_time_format__ = __webpack_require__(438), __WEBPACK_IMPORTED_MODULE_4__array__ = __webpack_require__(73), __WEBPACK_IMPORTED_MODULE_5__continuous__ = __webpack_require__(168), __WEBPACK_IMPORTED_MODULE_6__nice__ = __webpack_require__(436), durationSecond = 1e3, durationMinute = 60 * durationSecond, durationHour = 60 * durationMinute, durationDay = 24 * durationHour, durationWeek = 7 * durationDay, durationMonth = 30 * durationDay, durationYear = 365 * durationDay; __webpack_exports__.b = function() { return calendar(__WEBPACK_IMPORTED_MODULE_2_d3_time__.k, __WEBPACK_IMPORTED_MODULE_2_d3_time__.f, __WEBPACK_IMPORTED_MODULE_2_d3_time__.j, __WEBPACK_IMPORTED_MODULE_2_d3_time__.a, __WEBPACK_IMPORTED_MODULE_2_d3_time__.b, __WEBPACK_IMPORTED_MODULE_2_d3_time__.d, __WEBPACK_IMPORTED_MODULE_2_d3_time__.g, __WEBPACK_IMPORTED_MODULE_2_d3_time__.c, __WEBPACK_IMPORTED_MODULE_3_d3_time_format__.a).domain([ new Date(2e3, 0, 1), new Date(2e3, 0, 2) ]); }; @@ -13633,7 +13681,7 @@ var _publicBundleJs = []byte(`!function(modules) { cx: xScale(x) + (xScale.bandwidth ? xScale.bandwidth() / 2 : 0), cy: yScale(y) + (yScale.bandwidth ? yScale.bandwidth() / 2 : 0) }; - return Object(__WEBPACK_IMPORTED_MODULE_10__util_ChartUtils__.C)(result.cx, xScale) && Object(__WEBPACK_IMPORTED_MODULE_10__util_ChartUtils__.C)(result.cy, yScale) ? result : null; + return Object(__WEBPACK_IMPORTED_MODULE_10__util_ChartUtils__.D)(result.cx, xScale) && Object(__WEBPACK_IMPORTED_MODULE_10__util_ChartUtils__.D)(result.cy, yScale) ? result : null; } }, { key: "renderDot", @@ -13647,7 +13695,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "render", value: function() { - var _props2 = this.props, x = _props2.x, y = _props2.y, r = _props2.r, isX = Object(__WEBPACK_IMPORTED_MODULE_9__util_DataUtils__.e)(x), isY = Object(__WEBPACK_IMPORTED_MODULE_9__util_DataUtils__.e)(y); + var _props2 = this.props, x = _props2.x, y = _props2.y, r = _props2.r, isX = Object(__WEBPACK_IMPORTED_MODULE_9__util_DataUtils__.f)(x), isY = Object(__WEBPACK_IMPORTED_MODULE_9__util_DataUtils__.f)(y); if (!isX || !isY) return null; var coordinate = this.getCoordinate(); if (!coordinate) return null; @@ -13765,7 +13813,7 @@ var _publicBundleJs = []byte(`!function(modules) { var _props = this.props, xAxis = _props.xAxis, yAxis = _props.yAxis, viewBox = _props.viewBox, x = viewBox.x, y = viewBox.y, width = viewBox.width, height = viewBox.height; if (isY) { var value = this.props.y, scale = yAxis.scale, offset = scale.bandwidth ? scale.bandwidth() / 2 : 0, coord = scale(value) + offset; - if (Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.C)(coord, scale)) return "left" === yAxis.orientation ? [ { + if (Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.D)(coord, scale)) return "left" === yAxis.orientation ? [ { x: x, y: coord }, { @@ -13780,7 +13828,7 @@ var _publicBundleJs = []byte(`!function(modules) { } ]; } else if (isX) { var _value = this.props.x, _scale = xAxis.scale, _offset = _scale.bandwidth ? _scale.bandwidth() / 2 : 0, _coord = _scale(_value) + _offset; - if (Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.C)(_coord, _scale)) return "top" === xAxis.orientation ? [ { + if (Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.D)(_coord, _scale)) return "top" === xAxis.orientation ? [ { x: _coord, y: y }, { @@ -13799,7 +13847,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "render", value: function() { - var _props2 = this.props, x = _props2.x, y = _props2.y, shape = _props2.shape, className = _props2.className, isX = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.e)(x), isY = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.e)(y); + var _props2 = this.props, x = _props2.x, y = _props2.y, shape = _props2.shape, className = _props2.className, isX = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(x), isY = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(y); if (!isX && !isY) return null; var endPoints = this.getEndPoints(isX, isY); if (!endPoints) return null; @@ -13896,7 +13944,7 @@ var _publicBundleJs = []byte(`!function(modules) { var _props = this.props, xValue1 = _props.x1, xValue2 = _props.x2, yValue1 = _props.y1, yValue2 = _props.y2, xAxis = _props.xAxis, yAxis = _props.yAxis, xScale = xAxis.scale, yScale = yAxis.scale, xOffset = xScale.bandwidth ? xScale.bandwidth() / 2 : 0, yOffset = yScale.bandwidth ? yScale.bandwidth() / 2 : 0, xRange = xScale.range(), yRange = yScale.range(), x1 = void 0, x2 = void 0, y1 = void 0, y2 = void 0; return x1 = hasX1 ? xScale(xValue1) + xOffset : xRange[0], x2 = hasX2 ? xScale(xValue2) + xOffset : xRange[1], y1 = hasY1 ? yScale(yValue1) + yOffset : yRange[0], y2 = hasY2 ? yScale(yValue2) + yOffset : yRange[1], - Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.C)(x1, xScale) && Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.C)(x2, xScale) && Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.C)(y1, yScale) && Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.C)(y2, yScale) ? { + Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.D)(x1, xScale) && Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.D)(x2, xScale) && Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.D)(y1, yScale) && Object(__WEBPACK_IMPORTED_MODULE_9__util_ChartUtils__.D)(y2, yScale) ? { x: Math.min(x1, x2), y: Math.min(y1, y2), width: Math.abs(x2 - x1), @@ -13913,7 +13961,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "render", value: function() { - var _props2 = this.props, x1 = _props2.x1, x2 = _props2.x2, y1 = _props2.y1, y2 = _props2.y2, className = _props2.className, hasX1 = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.e)(x1), hasX2 = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.e)(x2), hasY1 = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.e)(y1), hasY2 = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.e)(y2); + var _props2 = this.props, x1 = _props2.x1, x2 = _props2.x2, y1 = _props2.y1, y2 = _props2.y2, className = _props2.className, hasX1 = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(x1), hasX2 = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(x2), hasY1 = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(y1), hasY2 = Object(__WEBPACK_IMPORTED_MODULE_8__util_DataUtils__.f)(y2); if (!(hasX1 || hasX2 || hasY1 || hasY2)) return null; var rect = this.getRect(hasX1, hasX2, hasY1, hasY2); if (!rect) return null; @@ -14006,7 +14054,7 @@ var _publicBundleJs = []byte(`!function(modules) { key: "render", value: function() { var _props = this.props, x = _props.x, y = _props.y, width = _props.width, height = _props.height, top = _props.top, left = _props.left, className = _props.className; - return Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.f)(x) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.f)(y) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.f)(width) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.f)(height) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.f)(top) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.f)(left) ? __WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("path", _extends({}, Object(__WEBPACK_IMPORTED_MODULE_5__util_ReactUtils__.k)(this.props), { + return Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.g)(x) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.g)(y) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.g)(width) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.g)(height) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.g)(top) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.g)(left) ? __WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("path", _extends({}, Object(__WEBPACK_IMPORTED_MODULE_5__util_ReactUtils__.k)(this.props), { className: __WEBPACK_IMPORTED_MODULE_2_classnames___default()("recharts-cross", className), d: this.getPath(x, y, width, height, top, left) })) : null; @@ -14034,7 +14082,7 @@ var _publicBundleJs = []byte(`!function(modules) { function maxBy(array, iteratee) { return array && array.length ? baseExtremum(array, baseIteratee(iteratee, 2), baseGt) : void 0; } - var baseExtremum = __webpack_require__(164), baseGt = __webpack_require__(404), baseIteratee = __webpack_require__(110); + var baseExtremum = __webpack_require__(166), baseGt = __webpack_require__(404), baseIteratee = __webpack_require__(110); module.exports = maxBy; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -14056,7 +14104,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(52), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isPlainObject__ = __webpack_require__(392), __WEBPACK_IMPORTED_MODULE_1_lodash_isPlainObject___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isPlainObject__), __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_3_lodash_isNil__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_3_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_4_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_4_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react__), __WEBPACK_IMPORTED_MODULE_5_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_5_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_prop_types__), __WEBPACK_IMPORTED_MODULE_6_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_6_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react_smooth__), __WEBPACK_IMPORTED_MODULE_7_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_7_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_classnames__), __WEBPACK_IMPORTED_MODULE_8__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_9__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_10__shape_Sector__ = __webpack_require__(168), __WEBPACK_IMPORTED_MODULE_11__shape_Curve__ = __webpack_require__(86), __WEBPACK_IMPORTED_MODULE_12__component_Text__ = __webpack_require__(72), __WEBPACK_IMPORTED_MODULE_13__component_Label__ = __webpack_require__(60), __WEBPACK_IMPORTED_MODULE_14__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_15__component_Cell__ = __webpack_require__(111), __WEBPACK_IMPORTED_MODULE_16__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_17__util_PolarUtils__ = __webpack_require__(35), __WEBPACK_IMPORTED_MODULE_18__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_19__util_ChartUtils__ = __webpack_require__(21), __WEBPACK_IMPORTED_MODULE_20__util_LogUtils__ = __webpack_require__(401), _extends = Object.assign || function(target) { + var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(49), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isPlainObject__ = __webpack_require__(394), __WEBPACK_IMPORTED_MODULE_1_lodash_isPlainObject___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isPlainObject__), __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_2_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_3_lodash_isNil__ = __webpack_require__(28), __WEBPACK_IMPORTED_MODULE_3_lodash_isNil___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_isNil__), __WEBPACK_IMPORTED_MODULE_4_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_4_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react__), __WEBPACK_IMPORTED_MODULE_5_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_5_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_prop_types__), __WEBPACK_IMPORTED_MODULE_6_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_6_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react_smooth__), __WEBPACK_IMPORTED_MODULE_7_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_7_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_classnames__), __WEBPACK_IMPORTED_MODULE_8__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_9__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_10__shape_Sector__ = __webpack_require__(170), __WEBPACK_IMPORTED_MODULE_11__shape_Curve__ = __webpack_require__(86), __WEBPACK_IMPORTED_MODULE_12__component_Text__ = __webpack_require__(72), __WEBPACK_IMPORTED_MODULE_13__component_Label__ = __webpack_require__(60), __WEBPACK_IMPORTED_MODULE_14__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_15__component_Cell__ = __webpack_require__(111), __WEBPACK_IMPORTED_MODULE_16__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_17__util_PolarUtils__ = __webpack_require__(35), __WEBPACK_IMPORTED_MODULE_18__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_19__util_ChartUtils__ = __webpack_require__(21), __WEBPACK_IMPORTED_MODULE_20__util_LogUtils__ = __webpack_require__(401), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -14083,7 +14131,7 @@ var _publicBundleJs = []byte(`!function(modules) { _this.state = { isAnimationFinished: !1, isAnimationStarted: !1 - }, _this.id = Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.i)("recharts-pie-"), + }, _this.id = Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.j)("recharts-pie-"), _this.cachePrevData = function(sectors) { _this.setState({ prevSectors: sectors @@ -14200,13 +14248,13 @@ var _publicBundleJs = []byte(`!function(modules) { return sectors.forEach(function(entry, index) { var prev = prevSectors && prevSectors[index], paddingAngle = index > 0 ? entry.paddingAngle : 0; if (prev) { - var angleIp = Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.d)(prev.endAngle - prev.startAngle, entry.endAngle - entry.startAngle), latest = _extends({}, entry, { + var angleIp = Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.e)(prev.endAngle - prev.startAngle, entry.endAngle - entry.startAngle), latest = _extends({}, entry, { startAngle: curAngle + paddingAngle, endAngle: curAngle + angleIp(t) + paddingAngle }); stepData.push(latest), curAngle = latest.endAngle; } else { - var endAngle = entry.endAngle, startAngle = entry.startAngle, interpolatorAngle = Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.d)(0, endAngle - startAngle), deltaAngle = interpolatorAngle(t), _latest = _extends({}, entry, { + var endAngle = entry.endAngle, startAngle = entry.startAngle, interpolatorAngle = Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.e)(0, endAngle - startAngle), deltaAngle = interpolatorAngle(t), _latest = _extends({}, entry, { startAngle: curAngle + paddingAngle, endAngle: curAngle + deltaAngle + paddingAngle }); @@ -14225,7 +14273,7 @@ var _publicBundleJs = []byte(`!function(modules) { key: "render", value: function() { var _props5 = this.props, hide = _props5.hide, sectors = _props5.sectors, className = _props5.className, label = _props5.label, cx = _props5.cx, cy = _props5.cy, innerRadius = _props5.innerRadius, outerRadius = _props5.outerRadius, isAnimationActive = _props5.isAnimationActive, id = _props5.id; - if (hide || !sectors || !sectors.length || !Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.f)(cx) || !Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.f)(cy) || !Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.f)(innerRadius) || !Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.f)(outerRadius)) return null; + if (hide || !sectors || !sectors.length || !Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.g)(cx) || !Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.g)(cy) || !Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.g)(innerRadius) || !Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.g)(outerRadius)) return null; var isAnimationFinished = this.state.isAnimationFinished, layerClass = __WEBPACK_IMPORTED_MODULE_7_classnames___default()("recharts-pie", className); return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__container_Layer__.a, { className: layerClass @@ -14286,7 +14334,7 @@ var _publicBundleJs = []byte(`!function(modules) { nameKey: "name" }, _class2.parseDeltaAngle = function(_ref3) { var startAngle = _ref3.startAngle, endAngle = _ref3.endAngle; - return Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.h)(endAngle - startAngle) * Math.min(Math.abs(endAngle - startAngle), 360); + return Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.i)(endAngle - startAngle) * Math.min(Math.abs(endAngle - startAngle), 360); }, _class2.getRealPieData = function(item) { var _item$props = item.props, data = _item$props.data, children = _item$props.children, presentationProps = Object(__WEBPACK_IMPORTED_MODULE_16__util_ReactUtils__.k)(item.props), cells = Object(__WEBPACK_IMPORTED_MODULE_16__util_ReactUtils__.h)(children, __WEBPACK_IMPORTED_MODULE_15__component_Cell__.a); return data && data.length ? data.map(function(entry, index) { @@ -14299,10 +14347,10 @@ var _publicBundleJs = []byte(`!function(modules) { }, _class2.parseCoordinateOfPie = function(item, offset) { var top = offset.top, left = offset.left, width = offset.width, height = offset.height, maxPieRadius = Object(__WEBPACK_IMPORTED_MODULE_17__util_PolarUtils__.c)(width, height); return { - cx: left + Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.b)(item.props.cx, width, width / 2), - cy: top + Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.b)(item.props.cy, height, height / 2), - innerRadius: Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.b)(item.props.innerRadius, maxPieRadius, 0), - outerRadius: Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.b)(item.props.outerRadius, maxPieRadius, .8 * maxPieRadius), + cx: left + Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.c)(item.props.cx, width, width / 2), + cy: top + Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.c)(item.props.cy, height, height / 2), + innerRadius: Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.c)(item.props.innerRadius, maxPieRadius, 0), + outerRadius: Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.c)(item.props.outerRadius, maxPieRadius, .8 * maxPieRadius), maxRadius: item.props.maxRadius || Math.sqrt(width * width + height * height) / 2 }; }, _class2.getComposedData = function(_ref4) { @@ -14317,14 +14365,14 @@ var _publicBundleJs = []byte(`!function(modules) { realDataKey = valueKey); var sum = pieData.reduce(function(result, entry) { var val = Object(__WEBPACK_IMPORTED_MODULE_19__util_ChartUtils__.w)(entry, realDataKey, 0); - return result + (Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.f)(val) ? val : 0); + return result + (Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.g)(val) ? val : 0); }, 0), sectors = void 0; if (sum > 0) { var prev = void 0; sectors = pieData.map(function(entry, i) { - var val = Object(__WEBPACK_IMPORTED_MODULE_19__util_ChartUtils__.w)(entry, realDataKey, 0), name = Object(__WEBPACK_IMPORTED_MODULE_19__util_ChartUtils__.w)(entry, nameKey, i), percent = (Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.f)(val) ? val : 0) / sum, tempStartAngle = void 0; - tempStartAngle = i ? prev.endAngle + Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.h)(deltaAngle) * paddingAngle : startAngle; - var tempEndAngle = tempStartAngle + Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.h)(deltaAngle) * (minAngle + percent * realTotalAngle), midAngle = (tempStartAngle + tempEndAngle) / 2, middleRadius = (coordinate.innerRadius + coordinate.outerRadius) / 2, tooltipPayload = [ { + var val = Object(__WEBPACK_IMPORTED_MODULE_19__util_ChartUtils__.w)(entry, realDataKey, 0), name = Object(__WEBPACK_IMPORTED_MODULE_19__util_ChartUtils__.w)(entry, nameKey, i), percent = (Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.g)(val) ? val : 0) / sum, tempStartAngle = void 0; + tempStartAngle = i ? prev.endAngle + Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.i)(deltaAngle) * paddingAngle : startAngle; + var tempEndAngle = tempStartAngle + Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.i)(deltaAngle) * (minAngle + percent * realTotalAngle), midAngle = (tempStartAngle + tempEndAngle) / 2, middleRadius = (coordinate.innerRadius + coordinate.outerRadius) / 2, tooltipPayload = [ { name: name, value: val, payload: entry @@ -14342,7 +14390,7 @@ var _publicBundleJs = []byte(`!function(modules) { startAngle: tempStartAngle, endAngle: tempEndAngle, payload: entry, - paddingAngle: Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.h)(deltaAngle) * paddingAngle + paddingAngle: Object(__WEBPACK_IMPORTED_MODULE_18__util_DataUtils__.i)(deltaAngle) * paddingAngle }); }); } @@ -14374,7 +14422,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(52), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_2_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react__), __WEBPACK_IMPORTED_MODULE_3_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__), __WEBPACK_IMPORTED_MODULE_4_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_4_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react_smooth__), __WEBPACK_IMPORTED_MODULE_5_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_5_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_classnames__), __WEBPACK_IMPORTED_MODULE_6__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_7__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_8__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_9__util_PolarUtils__ = __webpack_require__(35), __WEBPACK_IMPORTED_MODULE_10__util_ChartUtils__ = __webpack_require__(21), __WEBPACK_IMPORTED_MODULE_11__shape_Polygon__ = __webpack_require__(258), __WEBPACK_IMPORTED_MODULE_12__shape_Dot__ = __webpack_require__(74), __WEBPACK_IMPORTED_MODULE_13__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_14__component_LabelList__ = __webpack_require__(62), _extends = Object.assign || function(target) { + var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(49), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_2_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react__), __WEBPACK_IMPORTED_MODULE_3_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__), __WEBPACK_IMPORTED_MODULE_4_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_4_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react_smooth__), __WEBPACK_IMPORTED_MODULE_5_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_5_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_classnames__), __WEBPACK_IMPORTED_MODULE_6__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_7__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_8__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_9__util_PolarUtils__ = __webpack_require__(35), __WEBPACK_IMPORTED_MODULE_10__util_ChartUtils__ = __webpack_require__(21), __WEBPACK_IMPORTED_MODULE_11__shape_Polygon__ = __webpack_require__(258), __WEBPACK_IMPORTED_MODULE_12__shape_Dot__ = __webpack_require__(74), __WEBPACK_IMPORTED_MODULE_13__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_14__component_LabelList__ = __webpack_require__(62), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -14492,13 +14540,13 @@ var _publicBundleJs = []byte(`!function(modules) { var t = _ref2.t, stepData = points.map(function(entry, index) { var prev = prevPoints && prevPoints[index]; if (prev) { - var _interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.d)(prev.x, entry.x), _interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.d)(prev.y, entry.y); + var _interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.e)(prev.x, entry.x), _interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.e)(prev.y, entry.y); return _extends({}, entry, { x: _interpolatorX(t), y: _interpolatorY(t) }); } - var interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.d)(entry.cx, entry.x), interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.d)(entry.cy, entry.y); + var interpolatorX = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.e)(entry.cx, entry.x), interpolatorY = Object(__WEBPACK_IMPORTED_MODULE_6__util_DataUtils__.e)(entry.cy, entry.y); return _extends({}, entry, { x: interpolatorX(t), y: interpolatorY(t) @@ -14608,7 +14656,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(52), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_2_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_3_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_3_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react__), __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__), __WEBPACK_IMPORTED_MODULE_5_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_5_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_classnames__), __WEBPACK_IMPORTED_MODULE_6_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_6_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react_smooth__), __WEBPACK_IMPORTED_MODULE_7__shape_Sector__ = __webpack_require__(168), __WEBPACK_IMPORTED_MODULE_8__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_9__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_10__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_11__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_12__component_Cell__ = __webpack_require__(111), __WEBPACK_IMPORTED_MODULE_13__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_14__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { + var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__ = __webpack_require__(49), __WEBPACK_IMPORTED_MODULE_0_lodash_isEqual___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isEqual__), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_1_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_2_lodash_isArray__ = __webpack_require__(16), __WEBPACK_IMPORTED_MODULE_2_lodash_isArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_isArray__), __WEBPACK_IMPORTED_MODULE_3_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_3_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react__), __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__), __WEBPACK_IMPORTED_MODULE_5_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_5_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_classnames__), __WEBPACK_IMPORTED_MODULE_6_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_6_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react_smooth__), __WEBPACK_IMPORTED_MODULE_7__shape_Sector__ = __webpack_require__(170), __WEBPACK_IMPORTED_MODULE_8__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_9__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_10__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_11__component_LabelList__ = __webpack_require__(62), __WEBPACK_IMPORTED_MODULE_12__component_Cell__ = __webpack_require__(111), __WEBPACK_IMPORTED_MODULE_13__util_DataUtils__ = __webpack_require__(12), __WEBPACK_IMPORTED_MODULE_14__util_ChartUtils__ = __webpack_require__(21), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -14658,7 +14706,7 @@ var _publicBundleJs = []byte(`!function(modules) { key: "getDeltaAngle", value: function() { var _props2 = this.props, startAngle = _props2.startAngle, endAngle = _props2.endAngle; - return Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.h)(endAngle - startAngle) * Math.min(Math.abs(endAngle - startAngle), 360); + return Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.i)(endAngle - startAngle) * Math.min(Math.abs(endAngle - startAngle), 360); } }, { key: "renderSectorShape", @@ -14701,13 +14749,13 @@ var _publicBundleJs = []byte(`!function(modules) { var t = _ref2.t, stepData = data.map(function(entry, index) { var prev = prevData && prevData[index]; if (prev) { - var interpolatorStartAngle = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(prev.startAngle, entry.startAngle), interpolatorEndAngle = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(prev.endAngle, entry.endAngle); + var interpolatorStartAngle = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.e)(prev.startAngle, entry.startAngle), interpolatorEndAngle = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.e)(prev.endAngle, entry.endAngle); return _extends({}, entry, { startAngle: interpolatorStartAngle(t), endAngle: interpolatorEndAngle(t) }); } - var endAngle = entry.endAngle, startAngle = entry.startAngle, interpolator = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.d)(startAngle, endAngle); + var endAngle = entry.endAngle, startAngle = entry.startAngle, interpolator = Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.e)(startAngle, endAngle); return _extends({}, entry, { endAngle: interpolator(t) }); @@ -14808,7 +14856,7 @@ var _publicBundleJs = []byte(`!function(modules) { return { data: displayedData.map(function(entry, index) { var value = void 0, innerRadius = void 0, outerRadius = void 0, startAngle = void 0, endAngle = void 0, backgroundSector = void 0; - if (stackedData ? value = Object(__WEBPACK_IMPORTED_MODULE_14__util_ChartUtils__.B)(stackedData[dataStartIndex + index], stackedDomain) : (value = Object(__WEBPACK_IMPORTED_MODULE_14__util_ChartUtils__.w)(entry, dataKey), + if (stackedData ? value = Object(__WEBPACK_IMPORTED_MODULE_14__util_ChartUtils__.C)(stackedData[dataStartIndex + index], stackedDomain) : (value = Object(__WEBPACK_IMPORTED_MODULE_14__util_ChartUtils__.w)(entry, dataKey), __WEBPACK_IMPORTED_MODULE_2_lodash_isArray___default()(value) || (value = [ baseValue, value ])), "radial" === layout) { innerRadius = Object(__WEBPACK_IMPORTED_MODULE_14__util_ChartUtils__.k)({ @@ -14822,7 +14870,7 @@ var _publicBundleJs = []byte(`!function(modules) { outerRadius = innerRadius + pos.size; var deltaAngle = endAngle - startAngle; if (Math.abs(minPointSize) > 0 && Math.abs(deltaAngle) < Math.abs(minPointSize)) { - endAngle += Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.h)(deltaAngle || minPointSize) * (Math.abs(minPointSize) - Math.abs(deltaAngle)); + endAngle += Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.i)(deltaAngle || minPointSize) * (Math.abs(minPointSize) - Math.abs(deltaAngle)); } backgroundSector = { background: { @@ -14846,7 +14894,7 @@ var _publicBundleJs = []byte(`!function(modules) { }), endAngle = startAngle + pos.size; var deltaRadius = outerRadius - innerRadius; if (Math.abs(minPointSize) > 0 && Math.abs(deltaRadius) < Math.abs(minPointSize)) { - outerRadius += Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.h)(deltaRadius || minPointSize) * (Math.abs(minPointSize) - Math.abs(deltaRadius)); + outerRadius += Object(__WEBPACK_IMPORTED_MODULE_13__util_DataUtils__.i)(deltaRadius || minPointSize) * (Math.abs(minPointSize) - Math.abs(deltaRadius)); } } return _extends({}, entry, backgroundSector, { @@ -15155,7 +15203,7 @@ var _publicBundleJs = []byte(`!function(modules) { key: "render", value: function() { var _props10 = this.props, data = _props10.data, className = _props10.className, children = _props10.children, x = _props10.x, y = _props10.y, width = _props10.width, height = _props10.height, _state4 = this.state, startX = _state4.startX, endX = _state4.endX, isTextActive = _state4.isTextActive, isSlideMoving = _state4.isSlideMoving, isTravellerMoving = _state4.isTravellerMoving; - if (!data || !data.length || !Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.f)(x) || !Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.f)(y) || !Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.f)(width) || !Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.f)(height) || width <= 0 || height <= 0) return null; + if (!data || !data.length || !Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.g)(x) || !Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.g)(y) || !Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.g)(width) || !Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.g)(height) || width <= 0 || height <= 0) return null; var layerClass = __WEBPACK_IMPORTED_MODULE_4_classnames___default()("recharts-brush", className), isPanoramic = 1 === __WEBPACK_IMPORTED_MODULE_2_react___default.a.Children.count(children); return __WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8__container_Layer__.a, { className: layerClass, @@ -15263,7 +15311,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "getTickLineCoord", value: function(data) { - var _props2 = this.props, x = _props2.x, y = _props2.y, width = _props2.width, height = _props2.height, orientation = _props2.orientation, tickSize = _props2.tickSize, mirror = _props2.mirror, tickMargin = _props2.tickMargin, x1 = void 0, x2 = void 0, y1 = void 0, y2 = void 0, tx = void 0, ty = void 0, sign = mirror ? -1 : 1, finalTickSize = data.tickSize || tickSize, tickCoord = Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.f)(data.tickCoord) ? data.tickCoord : data.coordinate; + var _props2 = this.props, x = _props2.x, y = _props2.y, width = _props2.width, height = _props2.height, orientation = _props2.orientation, tickSize = _props2.tickSize, mirror = _props2.mirror, tickMargin = _props2.tickMargin, x1 = void 0, x2 = void 0, y1 = void 0, y2 = void 0, tx = void 0, ty = void 0, sign = mirror ? -1 : 1, finalTickSize = data.tickSize || tickSize, tickCoord = Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.g)(data.tickCoord) ? data.tickCoord : data.coordinate; switch (orientation) { case "top": x1 = x2 = data.coordinate, y2 = y + !mirror * height, y1 = y2 - sign * finalTickSize, @@ -15412,7 +15460,7 @@ var _publicBundleJs = []byte(`!function(modules) { key: "getTicks", value: function(props) { var tick = props.tick, ticks = props.ticks, viewBox = props.viewBox, minTickGap = props.minTickGap, orientation = props.orientation, interval = props.interval, tickFormatter = props.tickFormatter, unit = props.unit; - return ticks && ticks.length && tick ? Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.f)(interval) || Object(__WEBPACK_IMPORTED_MODULE_9__util_ReactUtils__.n)() ? CartesianAxis.getNumberIntervalTicks(ticks, Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.f)(interval) ? interval : 0) : "preserveStartEnd" === interval ? CartesianAxis.getTicksStart({ + return ticks && ticks.length && tick ? Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.g)(interval) || Object(__WEBPACK_IMPORTED_MODULE_9__util_ReactUtils__.n)() ? CartesianAxis.getNumberIntervalTicks(ticks, Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.g)(interval) ? interval : 0) : "preserveStartEnd" === interval ? CartesianAxis.getTicksStart({ ticks: ticks, tickFormatter: tickFormatter, viewBox: viewBox, @@ -15445,7 +15493,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "getTicksStart", value: function(_ref2, preserveEnd) { - var ticks = _ref2.ticks, tickFormatter = _ref2.tickFormatter, viewBox = _ref2.viewBox, orientation = _ref2.orientation, minTickGap = _ref2.minTickGap, unit = _ref2.unit, x = viewBox.x, y = viewBox.y, width = viewBox.width, height = viewBox.height, sizeKey = "top" === orientation || "bottom" === orientation ? "width" : "height", result = (ticks || []).slice(), unitSize = unit ? Object(__WEBPACK_IMPORTED_MODULE_5__util_DOMUtils__.c)(unit)[sizeKey] : 0, len = result.length, sign = len >= 2 ? Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.h)(result[1].coordinate - result[0].coordinate) : 1, start = void 0, end = void 0; + var ticks = _ref2.ticks, tickFormatter = _ref2.tickFormatter, viewBox = _ref2.viewBox, orientation = _ref2.orientation, minTickGap = _ref2.minTickGap, unit = _ref2.unit, x = viewBox.x, y = viewBox.y, width = viewBox.width, height = viewBox.height, sizeKey = "top" === orientation || "bottom" === orientation ? "width" : "height", result = (ticks || []).slice(), unitSize = unit ? Object(__WEBPACK_IMPORTED_MODULE_5__util_DOMUtils__.c)(unit)[sizeKey] : 0, len = result.length, sign = len >= 2 ? Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.i)(result[1].coordinate - result[0].coordinate) : 1, start = void 0, end = void 0; if (1 === sign ? (start = "width" === sizeKey ? x : y, end = "width" === sizeKey ? x + width : y + height) : (start = "width" === sizeKey ? x + width : y + height, end = "width" === sizeKey ? x : y), preserveEnd) { var tail = ticks[len - 1], tailContent = __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction___default()(tickFormatter) ? tickFormatter(tail.value) : tail.value, tailSize = Object(__WEBPACK_IMPORTED_MODULE_5__util_DOMUtils__.c)(tailContent)[sizeKey] + unitSize, tailGap = sign * (tail.coordinate + sign * tailSize / 2 - end); @@ -15479,7 +15527,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, { key: "getTicksEnd", value: function(_ref3) { - var ticks = _ref3.ticks, tickFormatter = _ref3.tickFormatter, viewBox = _ref3.viewBox, orientation = _ref3.orientation, minTickGap = _ref3.minTickGap, unit = _ref3.unit, x = viewBox.x, y = viewBox.y, width = viewBox.width, height = viewBox.height, sizeKey = "top" === orientation || "bottom" === orientation ? "width" : "height", unitSize = unit ? Object(__WEBPACK_IMPORTED_MODULE_5__util_DOMUtils__.c)(unit)[sizeKey] : 0, result = (ticks || []).slice(), len = result.length, sign = len >= 2 ? Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.h)(result[1].coordinate - result[0].coordinate) : 1, start = void 0, end = void 0; + var ticks = _ref3.ticks, tickFormatter = _ref3.tickFormatter, viewBox = _ref3.viewBox, orientation = _ref3.orientation, minTickGap = _ref3.minTickGap, unit = _ref3.unit, x = viewBox.x, y = viewBox.y, width = viewBox.width, height = viewBox.height, sizeKey = "top" === orientation || "bottom" === orientation ? "width" : "height", unitSize = unit ? Object(__WEBPACK_IMPORTED_MODULE_5__util_DOMUtils__.c)(unit)[sizeKey] : 0, result = (ticks || []).slice(), len = result.length, sign = len >= 2 ? Object(__WEBPACK_IMPORTED_MODULE_10__util_DataUtils__.i)(result[1].coordinate - result[0].coordinate) : 1, start = void 0, end = void 0; 1 === sign ? (start = "width" === sizeKey ? x : y, end = "width" === sizeKey ? x + width : y + height) : (start = "width" === sizeKey ? x + width : y + height, end = "width" === sizeKey ? x : y); for (var i = len - 1; i >= 0; i--) { @@ -15587,7 +15635,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _stringify = __webpack_require__(1117), _stringify2 = _interopRequireDefault(_stringify), _keys = __webpack_require__(50), _keys2 = _interopRequireDefault(_keys), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _createBreakpoints = __webpack_require__(94), _withWidth = __webpack_require__(1119), _withWidth2 = _interopRequireDefault(_withWidth); + var _stringify = __webpack_require__(1117), _stringify2 = _interopRequireDefault(_stringify), _keys = __webpack_require__(51), _keys2 = _interopRequireDefault(_keys), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _createBreakpoints = __webpack_require__(94), _withWidth = __webpack_require__(1119), _withWidth2 = _interopRequireDefault(_withWidth); HiddenJs.propTypes = { children: _propTypes2.default.node, className: _propTypes2.default.string, @@ -15614,7 +15662,7 @@ var _publicBundleJs = []byte(`!function(modules) { default: obj }; } - var _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _reactDom = __webpack_require__(121), _MuiThemeProvider = __webpack_require__(464), _MuiThemeProvider2 = _interopRequireDefault(_MuiThemeProvider), _createMuiTheme = __webpack_require__(191), _createMuiTheme2 = _interopRequireDefault(_createMuiTheme), _Dashboard = __webpack_require__(518), _Dashboard2 = _interopRequireDefault(_Dashboard), theme = (0, + var _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _reactDom = __webpack_require__(121), _MuiThemeProvider = __webpack_require__(464), _MuiThemeProvider2 = _interopRequireDefault(_MuiThemeProvider), _createMuiTheme = __webpack_require__(193), _createMuiTheme2 = _interopRequireDefault(_createMuiTheme), _Dashboard = __webpack_require__(518), _Dashboard2 = _interopRequireDefault(_Dashboard), theme = (0, _createMuiTheme2.default)({ palette: { type: "dark" @@ -16154,7 +16202,7 @@ var _publicBundleJs = []byte(`!function(modules) { for (var newElement = cloneElement.apply(this, arguments), i = 2; i < arguments.length; i++) validateChildKeys(arguments[i], newElement.type); return validatePropTypes(newElement), newElement; } - var _assign = __webpack_require__(89), emptyObject = __webpack_require__(119), invariant = __webpack_require__(90), warning = __webpack_require__(120), emptyFunction = __webpack_require__(55), checkPropTypes = __webpack_require__(172), hasSymbol = "function" == typeof Symbol && Symbol.for, REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for("react.element") : 60103, REACT_CALL_TYPE = hasSymbol ? Symbol.for("react.call") : 60104, REACT_RETURN_TYPE = hasSymbol ? Symbol.for("react.return") : 60105, REACT_PORTAL_TYPE = hasSymbol ? Symbol.for("react.portal") : 60106, REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for("react.fragment") : 60107, MAYBE_ITERATOR_SYMBOL = "function" == typeof Symbol && Symbol.iterator, FAUX_ITERATOR_SYMBOL = "@@iterator", lowPriorityWarning = function() {}, printWarning = function(format) { + var _assign = __webpack_require__(89), emptyObject = __webpack_require__(119), invariant = __webpack_require__(90), warning = __webpack_require__(120), emptyFunction = __webpack_require__(55), checkPropTypes = __webpack_require__(174), hasSymbol = "function" == typeof Symbol && Symbol.for, REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for("react.element") : 60103, REACT_CALL_TYPE = hasSymbol ? Symbol.for("react.call") : 60104, REACT_RETURN_TYPE = hasSymbol ? Symbol.for("react.return") : 60105, REACT_PORTAL_TYPE = hasSymbol ? Symbol.for("react.portal") : 60106, REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for("react.fragment") : 60107, MAYBE_ITERATOR_SYMBOL = "function" == typeof Symbol && Symbol.iterator, FAUX_ITERATOR_SYMBOL = "@@iterator", lowPriorityWarning = function() {}, printWarning = function(format) { for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) args[_key - 1] = arguments[_key]; var argIndex = 0, message = "Warning: " + format.replace(/%s/g, function() { return args[argIndex++]; @@ -22932,7 +22980,7 @@ var _publicBundleJs = []byte(`!function(modules) { var root = DOMRenderer.createContainer(container, hydrate); this._reactRootContainer = root; } - var React = __webpack_require__(1), invariant = __webpack_require__(90), warning = __webpack_require__(120), ExecutionEnvironment = __webpack_require__(263), _assign = __webpack_require__(89), emptyFunction = __webpack_require__(55), EventListener = __webpack_require__(264), getActiveElement = __webpack_require__(265), shallowEqual = __webpack_require__(122), containsNode = __webpack_require__(266), focusNode = __webpack_require__(267), emptyObject = __webpack_require__(119), checkPropTypes = __webpack_require__(172), hyphenateStyleName = __webpack_require__(460), camelizeStyleName = __webpack_require__(462); + var React = __webpack_require__(1), invariant = __webpack_require__(90), warning = __webpack_require__(120), ExecutionEnvironment = __webpack_require__(263), _assign = __webpack_require__(89), emptyFunction = __webpack_require__(55), EventListener = __webpack_require__(264), getActiveElement = __webpack_require__(265), shallowEqual = __webpack_require__(122), containsNode = __webpack_require__(266), focusNode = __webpack_require__(267), emptyObject = __webpack_require__(119), checkPropTypes = __webpack_require__(174), hyphenateStyleName = __webpack_require__(460), camelizeStyleName = __webpack_require__(462); React || invariant(!1, "ReactDOM was loaded before React. Make sure you load the React package before loading ReactDOM."); var RESERVED_PROPS = { children: !0, @@ -26680,7 +26728,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _extends2 = __webpack_require__(10), _extends3 = _interopRequireDefault(_extends2), _defineProperty2 = __webpack_require__(17), _defineProperty3 = _interopRequireDefault(_defineProperty2), _getPrototypeOf = __webpack_require__(38), _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf), _classCallCheck2 = __webpack_require__(39), _classCallCheck3 = _interopRequireDefault(_classCallCheck2), _createClass2 = __webpack_require__(40), _createClass3 = _interopRequireDefault(_createClass2), _possibleConstructorReturn2 = __webpack_require__(41), _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2), _inherits2 = __webpack_require__(42), _inherits3 = _interopRequireDefault(_inherits2), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _brcast = __webpack_require__(498), _brcast2 = _interopRequireDefault(_brcast), _themeListener = __webpack_require__(190), _themeListener2 = _interopRequireDefault(_themeListener), _exactProp = __webpack_require__(499), _exactProp2 = _interopRequireDefault(_exactProp), MuiThemeProvider = function(_React$Component) { + var _extends2 = __webpack_require__(10), _extends3 = _interopRequireDefault(_extends2), _defineProperty2 = __webpack_require__(17), _defineProperty3 = _interopRequireDefault(_defineProperty2), _getPrototypeOf = __webpack_require__(38), _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf), _classCallCheck2 = __webpack_require__(39), _classCallCheck3 = _interopRequireDefault(_classCallCheck2), _createClass2 = __webpack_require__(40), _createClass3 = _interopRequireDefault(_createClass2), _possibleConstructorReturn2 = __webpack_require__(41), _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2), _inherits2 = __webpack_require__(42), _inherits3 = _interopRequireDefault(_inherits2), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _brcast = __webpack_require__(498), _brcast2 = _interopRequireDefault(_brcast), _themeListener = __webpack_require__(192), _themeListener2 = _interopRequireDefault(_themeListener), _exactProp = __webpack_require__(499), _exactProp2 = _interopRequireDefault(_exactProp), MuiThemeProvider = function(_React$Component) { function MuiThemeProvider(props, context) { (0, _classCallCheck3.default)(this, MuiThemeProvider); var _this = (0, _possibleConstructorReturn3.default)(this, (MuiThemeProvider.__proto__ || (0, @@ -26757,7 +26805,7 @@ var _publicBundleJs = []byte(`!function(modules) { }); }, function(module, exports, __webpack_require__) { "use strict"; - var getKeys = __webpack_require__(92), gOPS = __webpack_require__(182), pIE = __webpack_require__(125), toObject = __webpack_require__(76), IObject = __webpack_require__(175), $assign = Object.assign; + var getKeys = __webpack_require__(92), gOPS = __webpack_require__(184), pIE = __webpack_require__(125), toObject = __webpack_require__(76), IObject = __webpack_require__(177), $assign = Object.assign; module.exports = !$assign || __webpack_require__(66)(function() { var A = {}, B = {}, S = Symbol(), K = "abcdefghijklmnopqrst"; return A[S] = 7, K.split("").forEach(function(k) { @@ -26779,7 +26827,7 @@ var _publicBundleJs = []byte(`!function(modules) { }; }; }, function(module, exports, __webpack_require__) { - var toInteger = __webpack_require__(178), max = Math.max, min = Math.min; + var toInteger = __webpack_require__(180), max = Math.max, min = Math.min; module.exports = function(index, length) { return index = toInteger(index), index < 0 ? max(index + length, 0) : min(index, length); }; @@ -26809,9 +26857,9 @@ var _publicBundleJs = []byte(`!function(modules) { __esModule: !0 }; }, function(module, exports, __webpack_require__) { - __webpack_require__(184), __webpack_require__(276), module.exports = __webpack_require__(187).f("iterator"); + __webpack_require__(186), __webpack_require__(276), module.exports = __webpack_require__(189).f("iterator"); }, function(module, exports, __webpack_require__) { - var toInteger = __webpack_require__(178), defined = __webpack_require__(177); + var toInteger = __webpack_require__(180), defined = __webpack_require__(179); module.exports = function(TO_STRING) { return function(that, pos) { var a, b, s = String(defined(that)), i = toInteger(pos), l = s.length; @@ -26821,7 +26869,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, function(module, exports, __webpack_require__) { "use strict"; var create = __webpack_require__(127), descriptor = __webpack_require__(91), setToStringTag = __webpack_require__(128), IteratorPrototype = {}; - __webpack_require__(56)(IteratorPrototype, __webpack_require__(28)("iterator"), function() { + __webpack_require__(56)(IteratorPrototype, __webpack_require__(29)("iterator"), function() { return this; }), module.exports = function(Constructor, NAME, next) { Constructor.prototype = create(IteratorPrototype, { @@ -26841,7 +26889,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, function(module, exports, __webpack_require__) { "use strict"; var addToUnscopables = __webpack_require__(481), step = __webpack_require__(277), Iterators = __webpack_require__(93), toIObject = __webpack_require__(75); - module.exports = __webpack_require__(185)(Array, "Array", function(iterated, kind) { + module.exports = __webpack_require__(187)(Array, "Array", function(iterated, kind) { this._t = toIObject(iterated), this._i = 0, this._k = kind; }, function() { var O = this._t, kind = this._k, index = this._i++; @@ -26860,7 +26908,7 @@ var _publicBundleJs = []byte(`!function(modules) { module.exports = __webpack_require__(22).Symbol; }, function(module, exports, __webpack_require__) { "use strict"; - var global = __webpack_require__(36), has = __webpack_require__(67), DESCRIPTORS = __webpack_require__(37), $export = __webpack_require__(25), redefine = __webpack_require__(275), META = __webpack_require__(188).KEY, $fails = __webpack_require__(66), shared = __webpack_require__(180), setToStringTag = __webpack_require__(128), uid = __webpack_require__(124), wks = __webpack_require__(28), wksExt = __webpack_require__(187), wksDefine = __webpack_require__(189), enumKeys = __webpack_require__(485), isArray = __webpack_require__(278), anObject = __webpack_require__(65), isObject = __webpack_require__(49), toIObject = __webpack_require__(75), toPrimitive = __webpack_require__(174), createDesc = __webpack_require__(91), _create = __webpack_require__(127), gOPNExt = __webpack_require__(486), $GOPD = __webpack_require__(280), $DP = __webpack_require__(32), $keys = __webpack_require__(92), gOPD = $GOPD.f, dP = $DP.f, gOPN = gOPNExt.f, $Symbol = global.Symbol, $JSON = global.JSON, _stringify = $JSON && $JSON.stringify, HIDDEN = wks("_hidden"), TO_PRIMITIVE = wks("toPrimitive"), isEnum = {}.propertyIsEnumerable, SymbolRegistry = shared("symbol-registry"), AllSymbols = shared("symbols"), OPSymbols = shared("op-symbols"), ObjectProto = Object.prototype, USE_NATIVE = "function" == typeof $Symbol, QObject = global.QObject, setter = !QObject || !QObject.prototype || !QObject.prototype.findChild, setSymbolDesc = DESCRIPTORS && $fails(function() { + var global = __webpack_require__(36), has = __webpack_require__(67), DESCRIPTORS = __webpack_require__(37), $export = __webpack_require__(25), redefine = __webpack_require__(275), META = __webpack_require__(190).KEY, $fails = __webpack_require__(66), shared = __webpack_require__(182), setToStringTag = __webpack_require__(128), uid = __webpack_require__(124), wks = __webpack_require__(29), wksExt = __webpack_require__(189), wksDefine = __webpack_require__(191), enumKeys = __webpack_require__(485), isArray = __webpack_require__(278), anObject = __webpack_require__(65), isObject = __webpack_require__(50), toIObject = __webpack_require__(75), toPrimitive = __webpack_require__(176), createDesc = __webpack_require__(91), _create = __webpack_require__(127), gOPNExt = __webpack_require__(486), $GOPD = __webpack_require__(280), $DP = __webpack_require__(32), $keys = __webpack_require__(92), gOPD = $GOPD.f, dP = $DP.f, gOPN = gOPNExt.f, $Symbol = global.Symbol, $JSON = global.JSON, _stringify = $JSON && $JSON.stringify, HIDDEN = wks("_hidden"), TO_PRIMITIVE = wks("toPrimitive"), isEnum = {}.propertyIsEnumerable, SymbolRegistry = shared("symbol-registry"), AllSymbols = shared("symbols"), OPSymbols = shared("op-symbols"), ObjectProto = Object.prototype, USE_NATIVE = "function" == typeof $Symbol, QObject = global.QObject, setter = !QObject || !QObject.prototype || !QObject.prototype.findChild, setSymbolDesc = DESCRIPTORS && $fails(function() { return 7 != _create(dP({}, "a", { get: function() { return dP(this, "a", { @@ -26920,8 +26968,8 @@ var _publicBundleJs = []byte(`!function(modules) { }, redefine($Symbol.prototype, "toString", function() { return this._k; }), $GOPD.f = $getOwnPropertyDescriptor, $DP.f = $defineProperty, __webpack_require__(279).f = gOPNExt.f = $getOwnPropertyNames, - __webpack_require__(125).f = $propertyIsEnumerable, __webpack_require__(182).f = $getOwnPropertySymbols, - DESCRIPTORS && !__webpack_require__(186) && redefine(ObjectProto, "propertyIsEnumerable", $propertyIsEnumerable, !0), + __webpack_require__(125).f = $propertyIsEnumerable, __webpack_require__(184).f = $getOwnPropertySymbols, + DESCRIPTORS && !__webpack_require__(188) && redefine(ObjectProto, "propertyIsEnumerable", $propertyIsEnumerable, !0), wksExt.f = function(name) { return wrap(wks(name)); }), $export($export.G + $export.W + $export.F * !USE_NATIVE, { @@ -26966,7 +27014,7 @@ var _publicBundleJs = []byte(`!function(modules) { }), $Symbol.prototype[TO_PRIMITIVE] || __webpack_require__(56)($Symbol.prototype, TO_PRIMITIVE, $Symbol.prototype.valueOf), setToStringTag($Symbol, "Symbol"), setToStringTag(Math, "Math", !0), setToStringTag(global.JSON, "JSON", !0); }, function(module, exports, __webpack_require__) { - var getKeys = __webpack_require__(92), gOPS = __webpack_require__(182), pIE = __webpack_require__(125); + var getKeys = __webpack_require__(92), gOPS = __webpack_require__(184), pIE = __webpack_require__(125); module.exports = function(it) { var result = getKeys(it), getSymbols = gOPS.f; if (getSymbols) for (var key, symbols = getSymbols(it), isEnum = pIE.f, i = 0; symbols.length > i; ) isEnum.call(it, key = symbols[i++]) && result.push(key); @@ -26984,9 +27032,9 @@ var _publicBundleJs = []byte(`!function(modules) { return windowNames && "[object Window]" == toString.call(it) ? getWindowNames(it) : gOPN(toIObject(it)); }; }, function(module, exports, __webpack_require__) { - __webpack_require__(189)("asyncIterator"); + __webpack_require__(191)("asyncIterator"); }, function(module, exports, __webpack_require__) { - __webpack_require__(189)("observable"); + __webpack_require__(191)("observable"); }, function(module, exports, __webpack_require__) { module.exports = { default: __webpack_require__(490), @@ -27000,7 +27048,7 @@ var _publicBundleJs = []byte(`!function(modules) { setPrototypeOf: __webpack_require__(492).set }); }, function(module, exports, __webpack_require__) { - var isObject = __webpack_require__(49), anObject = __webpack_require__(65), check = function(O, proto) { + var isObject = __webpack_require__(50), anObject = __webpack_require__(65), check = function(O, proto) { if (anObject(O), !isObject(proto) && null !== proto) throw TypeError(proto + ": can't set as prototype!"); }; module.exports = { @@ -27036,7 +27084,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, function(module, exports, __webpack_require__) { "use strict"; (function(process) { - var emptyFunction = __webpack_require__(55), invariant = __webpack_require__(90), warning = __webpack_require__(120), assign = __webpack_require__(89), ReactPropTypesSecret = __webpack_require__(173), checkPropTypes = __webpack_require__(172); + var emptyFunction = __webpack_require__(55), invariant = __webpack_require__(90), warning = __webpack_require__(120), assign = __webpack_require__(89), ReactPropTypesSecret = __webpack_require__(175), checkPropTypes = __webpack_require__(174); module.exports = function(isValidElement, throwOnDirectAccess) { function getIteratorFn(maybeIterable) { var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]); @@ -27266,7 +27314,7 @@ var _publicBundleJs = []byte(`!function(modules) { }).call(exports, __webpack_require__(3)); }, function(module, exports, __webpack_require__) { "use strict"; - var emptyFunction = __webpack_require__(55), invariant = __webpack_require__(90), ReactPropTypesSecret = __webpack_require__(173); + var emptyFunction = __webpack_require__(55), invariant = __webpack_require__(90), ReactPropTypesSecret = __webpack_require__(175); module.exports = function() { function shim(props, propName, componentName, location, propFullName, secret) { secret !== ReactPropTypesSecret && invariant(!1, "Calling PropTypes validators directly is not supported by the ` + "`" + `prop-types` + "`" + ` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types"); @@ -27344,7 +27392,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.specialProperty = void 0; - var _defineProperty2 = __webpack_require__(17), _defineProperty3 = _interopRequireDefault(_defineProperty2), _keys = __webpack_require__(50), _keys2 = _interopRequireDefault(_keys), _extends3 = __webpack_require__(10), _extends4 = _interopRequireDefault(_extends3); + var _defineProperty2 = __webpack_require__(17), _defineProperty3 = _interopRequireDefault(_defineProperty2), _keys = __webpack_require__(51), _keys2 = _interopRequireDefault(_keys), _extends3 = __webpack_require__(10), _extends4 = _interopRequireDefault(_extends3); exports.default = exactProp; var specialProperty = exports.specialProperty = "exact-prop: ​"; }, function(module, exports, __webpack_require__) { @@ -27523,7 +27571,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.dark = exports.light = void 0; - var _keys = __webpack_require__(50), _keys2 = _interopRequireDefault(_keys), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2); + var _keys = __webpack_require__(51), _keys2 = _interopRequireDefault(_keys), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2); exports.default = createPalette; var _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _deepmerge = __webpack_require__(129), _deepmerge2 = _interopRequireDefault(_deepmerge), _indigo = __webpack_require__(504), _indigo2 = _interopRequireDefault(_indigo), _pink = __webpack_require__(505), _pink2 = _interopRequireDefault(_pink), _grey = __webpack_require__(506), _grey2 = _interopRequireDefault(_grey), _red = __webpack_require__(507), _red2 = _interopRequireDefault(_red), _common = __webpack_require__(508), _common2 = _interopRequireDefault(_common), _colorManipulator = __webpack_require__(509), light = exports.light = { text: { @@ -27826,7 +27874,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.isNumber = exports.isString = exports.formatMs = exports.duration = exports.easing = void 0; - var _keys = __webpack_require__(50), _keys2 = _interopRequireDefault(_keys), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _isNan = __webpack_require__(513), _isNan2 = _interopRequireDefault(_isNan), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), easing = exports.easing = { + var _keys = __webpack_require__(51), _keys2 = _interopRequireDefault(_keys), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _isNan = __webpack_require__(513), _isNan2 = _interopRequireDefault(_isNan), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), easing = exports.easing = { easeInOut: "cubic-bezier(0.4, 0, 0.2, 1)", easeOut: "cubic-bezier(0.0, 0, 0.2, 1)", easeIn: "cubic-bezier(0.4, 0, 1, 1)", @@ -28078,7 +28126,7 @@ var _publicBundleJs = []byte(`!function(modules) { __esModule: !0 }; }, function(module, exports, __webpack_require__) { - __webpack_require__(281), __webpack_require__(184), __webpack_require__(276), __webpack_require__(521), + __webpack_require__(281), __webpack_require__(186), __webpack_require__(276), __webpack_require__(521), __webpack_require__(528), __webpack_require__(531), __webpack_require__(533), module.exports = __webpack_require__(22).Map; }, function(module, exports, __webpack_require__) { "use strict"; @@ -28098,7 +28146,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, strong, !0); }, function(module, exports, __webpack_require__) { "use strict"; - var dP = __webpack_require__(32).f, create = __webpack_require__(127), redefineAll = __webpack_require__(282), ctx = __webpack_require__(64), anInstance = __webpack_require__(283), forOf = __webpack_require__(130), $iterDefine = __webpack_require__(185), step = __webpack_require__(277), setSpecies = __webpack_require__(523), DESCRIPTORS = __webpack_require__(37), fastKey = __webpack_require__(188).fastKey, validate = __webpack_require__(288), SIZE = DESCRIPTORS ? "_s" : "size", getEntry = function(that, key) { + var dP = __webpack_require__(32).f, create = __webpack_require__(127), redefineAll = __webpack_require__(282), ctx = __webpack_require__(64), anInstance = __webpack_require__(283), forOf = __webpack_require__(130), $iterDefine = __webpack_require__(187), step = __webpack_require__(277), setSpecies = __webpack_require__(523), DESCRIPTORS = __webpack_require__(37), fastKey = __webpack_require__(190).fastKey, validate = __webpack_require__(288), SIZE = DESCRIPTORS ? "_s" : "size", getEntry = function(that, key) { var entry, index = fastKey(key); if ("F" !== index) return that._i[index]; for (entry = that._f; entry; entry = entry.n) if (entry.k == key) return entry; @@ -28162,7 +28210,7 @@ var _publicBundleJs = []byte(`!function(modules) { }; }, function(module, exports, __webpack_require__) { "use strict"; - var global = __webpack_require__(36), core = __webpack_require__(22), dP = __webpack_require__(32), DESCRIPTORS = __webpack_require__(37), SPECIES = __webpack_require__(28)("species"); + var global = __webpack_require__(36), core = __webpack_require__(22), dP = __webpack_require__(32), DESCRIPTORS = __webpack_require__(37), SPECIES = __webpack_require__(29)("species"); module.exports = function(KEY) { var C = "function" == typeof core[KEY] ? core[KEY] : global[KEY]; DESCRIPTORS && C && !C[SPECIES] && dP.f(C, SPECIES, { @@ -28174,7 +28222,7 @@ var _publicBundleJs = []byte(`!function(modules) { }; }, function(module, exports, __webpack_require__) { "use strict"; - var global = __webpack_require__(36), $export = __webpack_require__(25), meta = __webpack_require__(188), fails = __webpack_require__(66), hide = __webpack_require__(56), redefineAll = __webpack_require__(282), forOf = __webpack_require__(130), anInstance = __webpack_require__(283), isObject = __webpack_require__(49), setToStringTag = __webpack_require__(128), dP = __webpack_require__(32).f, each = __webpack_require__(525)(0), DESCRIPTORS = __webpack_require__(37); + var global = __webpack_require__(36), $export = __webpack_require__(25), meta = __webpack_require__(190), fails = __webpack_require__(66), hide = __webpack_require__(56), redefineAll = __webpack_require__(282), forOf = __webpack_require__(130), anInstance = __webpack_require__(283), isObject = __webpack_require__(50), setToStringTag = __webpack_require__(128), dP = __webpack_require__(32).f, each = __webpack_require__(525)(0), DESCRIPTORS = __webpack_require__(37); module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK) { var Base = global[NAME], C = Base, ADDER = IS_MAP ? "set" : "add", proto = C && C.prototype, O = {}; return DESCRIPTORS && "function" == typeof C && (IS_WEAK || proto.forEach && !fails(function() { @@ -28197,7 +28245,7 @@ var _publicBundleJs = []byte(`!function(modules) { IS_WEAK || common.setStrong(C, NAME, IS_MAP), C; }; }, function(module, exports, __webpack_require__) { - var ctx = __webpack_require__(64), IObject = __webpack_require__(175), toObject = __webpack_require__(76), toLength = __webpack_require__(123), asc = __webpack_require__(526); + var ctx = __webpack_require__(64), IObject = __webpack_require__(177), toObject = __webpack_require__(76), toLength = __webpack_require__(123), asc = __webpack_require__(526); module.exports = function(TYPE, $create) { var IS_MAP = 1 == TYPE, IS_FILTER = 2 == TYPE, IS_SOME = 3 == TYPE, IS_EVERY = 4 == TYPE, IS_FIND_INDEX = 6 == TYPE, NO_HOLES = 5 == TYPE || IS_FIND_INDEX, create = $create || asc; return function($this, callbackfn, that) { @@ -28224,7 +28272,7 @@ var _publicBundleJs = []byte(`!function(modules) { return new (speciesConstructor(original))(length); }; }, function(module, exports, __webpack_require__) { - var isObject = __webpack_require__(49), isArray = __webpack_require__(278), SPECIES = __webpack_require__(28)("species"); + var isObject = __webpack_require__(50), isArray = __webpack_require__(278), SPECIES = __webpack_require__(29)("species"); module.exports = function(original) { var C; return isArray(original) && (C = original.constructor, "function" != typeof C || C !== Array && !isArray(C.prototype) || (C = void 0), @@ -28468,7 +28516,7 @@ var _publicBundleJs = []byte(`!function(modules) { root = "undefined" != typeof self ? self : "undefined" != typeof window ? window : void 0 !== global ? global : module; var result = (0, _ponyfill2.default)(root); exports.default = result; - }).call(exports, __webpack_require__(68), __webpack_require__(195)(module)); + }).call(exports, __webpack_require__(68), __webpack_require__(197)(module)); }, function(module, exports, __webpack_require__) { "use strict"; function symbolObservablePonyfill(root) { @@ -28534,7 +28582,7 @@ var _publicBundleJs = []byte(`!function(modules) { return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor; }; - }(), _isInBrowser = __webpack_require__(132), _isInBrowser2 = _interopRequireDefault(_isInBrowser), _StyleSheet = __webpack_require__(296), _StyleSheet2 = _interopRequireDefault(_StyleSheet), _PluginsRegistry = __webpack_require__(549), _PluginsRegistry2 = _interopRequireDefault(_PluginsRegistry), _rules = __webpack_require__(550), _rules2 = _interopRequireDefault(_rules), _observables = __webpack_require__(556), _observables2 = _interopRequireDefault(_observables), _functions = __webpack_require__(557), _functions2 = _interopRequireDefault(_functions), _sheets = __webpack_require__(196), _sheets2 = _interopRequireDefault(_sheets), _StyleRule = __webpack_require__(77), _StyleRule2 = _interopRequireDefault(_StyleRule), _createGenerateClassName = __webpack_require__(295), _createGenerateClassName2 = _interopRequireDefault(_createGenerateClassName), _createRule2 = __webpack_require__(131), _createRule3 = _interopRequireDefault(_createRule2), _DomRenderer = __webpack_require__(559), _DomRenderer2 = _interopRequireDefault(_DomRenderer), _VirtualRenderer = __webpack_require__(560), _VirtualRenderer2 = _interopRequireDefault(_VirtualRenderer), defaultPlugins = _rules2.default.concat([ _observables2.default, _functions2.default ]), instanceCounter = 0, Jss = function() { + }(), _isInBrowser = __webpack_require__(132), _isInBrowser2 = _interopRequireDefault(_isInBrowser), _StyleSheet = __webpack_require__(296), _StyleSheet2 = _interopRequireDefault(_StyleSheet), _PluginsRegistry = __webpack_require__(549), _PluginsRegistry2 = _interopRequireDefault(_PluginsRegistry), _rules = __webpack_require__(550), _rules2 = _interopRequireDefault(_rules), _observables = __webpack_require__(556), _observables2 = _interopRequireDefault(_observables), _functions = __webpack_require__(557), _functions2 = _interopRequireDefault(_functions), _sheets = __webpack_require__(198), _sheets2 = _interopRequireDefault(_sheets), _StyleRule = __webpack_require__(77), _StyleRule2 = _interopRequireDefault(_StyleRule), _createGenerateClassName = __webpack_require__(295), _createGenerateClassName2 = _interopRequireDefault(_createGenerateClassName), _createRule2 = __webpack_require__(131), _createRule3 = _interopRequireDefault(_createRule2), _DomRenderer = __webpack_require__(559), _DomRenderer2 = _interopRequireDefault(_DomRenderer), _VirtualRenderer = __webpack_require__(560), _VirtualRenderer2 = _interopRequireDefault(_VirtualRenderer), defaultPlugins = _rules2.default.concat([ _observables2.default, _functions2.default ]), instanceCounter = 0, Jss = function() { function Jss(options) { _classCallCheck(this, Jss), this.id = instanceCounter++, this.version = "9.4.0", this.plugins = new _PluginsRegistry2.default(), this.options = { @@ -28886,7 +28934,7 @@ var _publicBundleJs = []byte(`!function(modules) { return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor; }; - }(), _toCss = __webpack_require__(193), _toCss2 = function(obj) { + }(), _toCss = __webpack_require__(195), _toCss2 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -28928,7 +28976,7 @@ var _publicBundleJs = []byte(`!function(modules) { return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor; }; - }(), _toCss = __webpack_require__(193), _toCss2 = function(obj) { + }(), _toCss = __webpack_require__(195), _toCss2 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -29126,7 +29174,7 @@ var _publicBundleJs = []byte(`!function(modules) { return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor; }; - }(), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _sheets = __webpack_require__(196), _sheets2 = _interopRequireDefault(_sheets), _StyleRule = __webpack_require__(77), _StyleRule2 = _interopRequireDefault(_StyleRule), _toCssValue = __webpack_require__(194), _toCssValue2 = _interopRequireDefault(_toCssValue), CSSRuleTypes = { + }(), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _sheets = __webpack_require__(198), _sheets2 = _interopRequireDefault(_sheets), _StyleRule = __webpack_require__(77), _StyleRule2 = _interopRequireDefault(_StyleRule), _toCssValue = __webpack_require__(196), _toCssValue2 = _interopRequireDefault(_toCssValue), CSSRuleTypes = { STYLE_RULE: 1, KEYFRAMES_RULE: 7 }, getKey = function() { @@ -29744,7 +29792,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.supportedValue = exports.supportedProperty = exports.prefix = void 0; - var _prefix = __webpack_require__(197), _prefix2 = _interopRequireDefault(_prefix), _supportedProperty = __webpack_require__(568), _supportedProperty2 = _interopRequireDefault(_supportedProperty), _supportedValue = __webpack_require__(570), _supportedValue2 = _interopRequireDefault(_supportedValue); + var _prefix = __webpack_require__(199), _prefix2 = _interopRequireDefault(_prefix), _supportedProperty = __webpack_require__(568), _supportedProperty2 = _interopRequireDefault(_supportedProperty), _supportedValue = __webpack_require__(570), _supportedValue2 = _interopRequireDefault(_supportedValue); exports.default = { prefix: _prefix2.default, supportedProperty: _supportedProperty2.default, @@ -29766,7 +29814,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.default = supportedProperty; - var _isInBrowser = __webpack_require__(132), _isInBrowser2 = _interopRequireDefault(_isInBrowser), _prefix = __webpack_require__(197), _prefix2 = _interopRequireDefault(_prefix), _camelize = __webpack_require__(569), _camelize2 = _interopRequireDefault(_camelize), el = void 0, cache = {}; + var _isInBrowser = __webpack_require__(132), _isInBrowser2 = _interopRequireDefault(_isInBrowser), _prefix = __webpack_require__(199), _prefix2 = _interopRequireDefault(_prefix), _camelize = __webpack_require__(569), _camelize2 = _interopRequireDefault(_camelize), el = void 0, cache = {}; if (_isInBrowser2.default) { el = document.createElement("p"); var computed = window.getComputedStyle(document.documentElement, ""); @@ -29808,7 +29856,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.default = supportedValue; - var _isInBrowser = __webpack_require__(132), _isInBrowser2 = _interopRequireDefault(_isInBrowser), _prefix = __webpack_require__(197), _prefix2 = _interopRequireDefault(_prefix), cache = {}, el = void 0; + var _isInBrowser = __webpack_require__(132), _isInBrowser2 = _interopRequireDefault(_isInBrowser), _prefix = __webpack_require__(199), _prefix2 = _interopRequireDefault(_prefix), cache = {}, el = void 0; _isInBrowser2.default && (el = document.createElement("p")); }, function(module, exports, __webpack_require__) { "use strict"; @@ -29883,7 +29931,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _keys = __webpack_require__(50), _keys2 = _interopRequireDefault(_keys), _extends2 = __webpack_require__(10), _extends3 = _interopRequireDefault(_extends2), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _deepmerge = __webpack_require__(129), _deepmerge2 = _interopRequireDefault(_deepmerge); + var _keys = __webpack_require__(51), _keys2 = _interopRequireDefault(_keys), _extends2 = __webpack_require__(10), _extends3 = _interopRequireDefault(_extends2), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _deepmerge = __webpack_require__(129), _deepmerge2 = _interopRequireDefault(_deepmerge); exports.default = getStylesCreator; }).call(exports, __webpack_require__(3)); }, function(module, __webpack_exports__, __webpack_require__) { @@ -29939,7 +29987,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "anyPass", function() { return __WEBPACK_IMPORTED_MODULE_11__anyPass__.a; }); - var __WEBPACK_IMPORTED_MODULE_12__ap__ = __webpack_require__(200); + var __WEBPACK_IMPORTED_MODULE_12__ap__ = __webpack_require__(202); __webpack_require__.d(__webpack_exports__, "ap", function() { return __WEBPACK_IMPORTED_MODULE_12__ap__.a; }); @@ -29991,7 +30039,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "call", function() { return __WEBPACK_IMPORTED_MODULE_24__call__.a; }); - var __WEBPACK_IMPORTED_MODULE_25__chain__ = __webpack_require__(203); + var __WEBPACK_IMPORTED_MODULE_25__chain__ = __webpack_require__(205); __webpack_require__.d(__webpack_exports__, "chain", function() { return __WEBPACK_IMPORTED_MODULE_25__chain__.a; }); @@ -30011,7 +30059,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "complement", function() { return __WEBPACK_IMPORTED_MODULE_29__complement__.a; }); - var __WEBPACK_IMPORTED_MODULE_30__compose__ = __webpack_require__(205); + var __WEBPACK_IMPORTED_MODULE_30__compose__ = __webpack_require__(207); __webpack_require__.d(__webpack_exports__, "compose", function() { return __WEBPACK_IMPORTED_MODULE_30__compose__.a; }); @@ -30023,7 +30071,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "composeP", function() { return __WEBPACK_IMPORTED_MODULE_32__composeP__.a; }); - var __WEBPACK_IMPORTED_MODULE_33__concat__ = __webpack_require__(207); + var __WEBPACK_IMPORTED_MODULE_33__concat__ = __webpack_require__(209); __webpack_require__.d(__webpack_exports__, "concat", function() { return __WEBPACK_IMPORTED_MODULE_33__concat__.a; }); @@ -30051,7 +30099,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "countBy", function() { return __WEBPACK_IMPORTED_MODULE_39__countBy__.a; }); - var __WEBPACK_IMPORTED_MODULE_40__curry__ = __webpack_require__(202); + var __WEBPACK_IMPORTED_MODULE_40__curry__ = __webpack_require__(204); __webpack_require__.d(__webpack_exports__, "curry", function() { return __WEBPACK_IMPORTED_MODULE_40__curry__.a; }); @@ -30135,7 +30183,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "eqProps", function() { return __WEBPACK_IMPORTED_MODULE_60__eqProps__.a; }); - var __WEBPACK_IMPORTED_MODULE_61__equals__ = __webpack_require__(30); + var __WEBPACK_IMPORTED_MODULE_61__equals__ = __webpack_require__(31); __webpack_require__.d(__webpack_exports__, "equals", function() { return __WEBPACK_IMPORTED_MODULE_61__equals__.a; }); @@ -30143,7 +30191,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "evolve", function() { return __WEBPACK_IMPORTED_MODULE_62__evolve__.a; }); - var __WEBPACK_IMPORTED_MODULE_63__filter__ = __webpack_require__(208); + var __WEBPACK_IMPORTED_MODULE_63__filter__ = __webpack_require__(210); __webpack_require__.d(__webpack_exports__, "filter", function() { return __WEBPACK_IMPORTED_MODULE_63__filter__.a; }); @@ -30215,7 +30263,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "identical", function() { return __WEBPACK_IMPORTED_MODULE_80__identical__.a; }); - var __WEBPACK_IMPORTED_MODULE_81__identity__ = __webpack_require__(213); + var __WEBPACK_IMPORTED_MODULE_81__identity__ = __webpack_require__(215); __webpack_require__.d(__webpack_exports__, "identity", function() { return __WEBPACK_IMPORTED_MODULE_81__identity__.a; }); @@ -30423,7 +30471,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "mergeWith", function() { return __WEBPACK_IMPORTED_MODULE_132__mergeWith__.a; }); - var __WEBPACK_IMPORTED_MODULE_133__mergeWithKey__ = __webpack_require__(217); + var __WEBPACK_IMPORTED_MODULE_133__mergeWithKey__ = __webpack_require__(219); __webpack_require__.d(__webpack_exports__, "mergeWithKey", function() { return __WEBPACK_IMPORTED_MODULE_133__mergeWithKey__.a; }); @@ -30567,7 +30615,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "project", function() { return __WEBPACK_IMPORTED_MODULE_168__project__.a; }); - var __WEBPACK_IMPORTED_MODULE_169__prop__ = __webpack_require__(199); + var __WEBPACK_IMPORTED_MODULE_169__prop__ = __webpack_require__(201); __webpack_require__.d(__webpack_exports__, "prop", function() { return __WEBPACK_IMPORTED_MODULE_169__prop__.a; }); @@ -30699,11 +30747,11 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "symmetricDifferenceWith", function() { return __WEBPACK_IMPORTED_MODULE_201__symmetricDifferenceWith__.a; }); - var __WEBPACK_IMPORTED_MODULE_202__tail__ = __webpack_require__(206); + var __WEBPACK_IMPORTED_MODULE_202__tail__ = __webpack_require__(208); __webpack_require__.d(__webpack_exports__, "tail", function() { return __WEBPACK_IMPORTED_MODULE_202__tail__.a; }); - var __WEBPACK_IMPORTED_MODULE_203__take__ = __webpack_require__(212); + var __WEBPACK_IMPORTED_MODULE_203__take__ = __webpack_require__(214); __webpack_require__.d(__webpack_exports__, "take", function() { return __WEBPACK_IMPORTED_MODULE_203__take__.a; }); @@ -30771,7 +30819,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "tryCatch", function() { return __WEBPACK_IMPORTED_MODULE_219__tryCatch__.a; }); - var __WEBPACK_IMPORTED_MODULE_220__type__ = __webpack_require__(204); + var __WEBPACK_IMPORTED_MODULE_220__type__ = __webpack_require__(206); __webpack_require__.d(__webpack_exports__, "type", function() { return __WEBPACK_IMPORTED_MODULE_220__type__.a; }); @@ -30799,7 +30847,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "unionWith", function() { return __WEBPACK_IMPORTED_MODULE_226__unionWith__.a; }); - var __WEBPACK_IMPORTED_MODULE_227__uniq__ = __webpack_require__(215); + var __WEBPACK_IMPORTED_MODULE_227__uniq__ = __webpack_require__(217); __webpack_require__.d(__webpack_exports__, "uniq", function() { return __WEBPACK_IMPORTED_MODULE_227__uniq__.a; }); @@ -30823,7 +30871,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__.d(__webpack_exports__, "until", function() { return __WEBPACK_IMPORTED_MODULE_232__until__.a; }); - var __WEBPACK_IMPORTED_MODULE_233__update__ = __webpack_require__(211); + var __WEBPACK_IMPORTED_MODULE_233__update__ = __webpack_require__(213); __webpack_require__.d(__webpack_exports__, "update", function() { return __WEBPACK_IMPORTED_MODULE_233__update__.a; }); @@ -31047,7 +31095,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = both; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__curry__ = __webpack_require__(202), call = Object(__WEBPACK_IMPORTED_MODULE_0__curry__.a)(function(fn) { + var __WEBPACK_IMPORTED_MODULE_0__curry__ = __webpack_require__(204), call = Object(__WEBPACK_IMPORTED_MODULE_0__curry__.a)(function(fn) { return fn.apply(this, Array.prototype.slice.call(arguments, 1)); }); __webpack_exports__.a = call; @@ -31059,7 +31107,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = _xchain; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__forceReduced__ = __webpack_require__(596), __WEBPACK_IMPORTED_MODULE_1__isArrayLike__ = __webpack_require__(137), __WEBPACK_IMPORTED_MODULE_2__reduce__ = __webpack_require__(29), __WEBPACK_IMPORTED_MODULE_3__xfBase__ = __webpack_require__(19), preservingReduced = function(xf) { + var __WEBPACK_IMPORTED_MODULE_0__forceReduced__ = __webpack_require__(596), __WEBPACK_IMPORTED_MODULE_1__isArrayLike__ = __webpack_require__(137), __WEBPACK_IMPORTED_MODULE_2__reduce__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_3__xfBase__ = __webpack_require__(19), preservingReduced = function(xf) { return { "@@transducer/init": __WEBPACK_IMPORTED_MODULE_3__xfBase__.a.init, "@@transducer/result": function(result) { @@ -31279,7 +31327,7 @@ var _publicBundleJs = []byte(`!function(modules) { return !0; } __webpack_exports__.a = _equals; - var __WEBPACK_IMPORTED_MODULE_0__arrayFromIterator__ = __webpack_require__(606), __WEBPACK_IMPORTED_MODULE_1__containsWith__ = __webpack_require__(143), __WEBPACK_IMPORTED_MODULE_2__functionName__ = __webpack_require__(607), __WEBPACK_IMPORTED_MODULE_3__has__ = __webpack_require__(26), __WEBPACK_IMPORTED_MODULE_4__identical__ = __webpack_require__(317), __WEBPACK_IMPORTED_MODULE_5__keys__ = __webpack_require__(44), __WEBPACK_IMPORTED_MODULE_6__type__ = __webpack_require__(204); + var __WEBPACK_IMPORTED_MODULE_0__arrayFromIterator__ = __webpack_require__(606), __WEBPACK_IMPORTED_MODULE_1__containsWith__ = __webpack_require__(143), __WEBPACK_IMPORTED_MODULE_2__functionName__ = __webpack_require__(607), __WEBPACK_IMPORTED_MODULE_3__has__ = __webpack_require__(26), __WEBPACK_IMPORTED_MODULE_4__identical__ = __webpack_require__(317), __WEBPACK_IMPORTED_MODULE_5__keys__ = __webpack_require__(44), __WEBPACK_IMPORTED_MODULE_6__type__ = __webpack_require__(206); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; function _arrayFromIterator(iter) { @@ -31393,7 +31441,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = descend; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_isInteger__ = __webpack_require__(201), __WEBPACK_IMPORTED_MODULE_2__assoc__ = __webpack_require__(138), __WEBPACK_IMPORTED_MODULE_3__dissoc__ = __webpack_require__(324), __WEBPACK_IMPORTED_MODULE_4__remove__ = __webpack_require__(325), __WEBPACK_IMPORTED_MODULE_5__update__ = __webpack_require__(211), dissocPath = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function dissocPath(path, obj) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_isInteger__ = __webpack_require__(203), __WEBPACK_IMPORTED_MODULE_2__assoc__ = __webpack_require__(138), __WEBPACK_IMPORTED_MODULE_3__dissoc__ = __webpack_require__(324), __WEBPACK_IMPORTED_MODULE_4__remove__ = __webpack_require__(325), __WEBPACK_IMPORTED_MODULE_5__update__ = __webpack_require__(213), dissocPath = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function dissocPath(path, obj) { switch (path.length) { case 0: return obj; @@ -31438,7 +31486,7 @@ var _publicBundleJs = []byte(`!function(modules) { return Object(__WEBPACK_IMPORTED_MODULE_0__take__.a)(n < xs.length ? xs.length - n : 0, xs); } __webpack_exports__.a = dropLast; - var __WEBPACK_IMPORTED_MODULE_0__take__ = __webpack_require__(212); + var __WEBPACK_IMPORTED_MODULE_0__take__ = __webpack_require__(214); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; var __WEBPACK_IMPORTED_MODULE_0__curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__reduced__ = __webpack_require__(58), __WEBPACK_IMPORTED_MODULE_2__xfBase__ = __webpack_require__(19), XTake = function() { @@ -31490,7 +31538,7 @@ var _publicBundleJs = []byte(`!function(modules) { var __WEBPACK_IMPORTED_MODULE_0__slice__ = __webpack_require__(34); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__reduce__ = __webpack_require__(29), __WEBPACK_IMPORTED_MODULE_2__xfBase__ = __webpack_require__(19), XDropLastWhile = function() { + var __WEBPACK_IMPORTED_MODULE_0__curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__reduce__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_2__xfBase__ = __webpack_require__(19), XDropLastWhile = function() { function XDropLastWhile(fn, xf) { this.f = fn, this.retained = [], this.xf = xf; } @@ -31511,7 +31559,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = _xdropLastWhile; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__ = __webpack_require__(15), __WEBPACK_IMPORTED_MODULE_2__internal_xdropRepeatsWith__ = __webpack_require__(327), __WEBPACK_IMPORTED_MODULE_3__dropRepeatsWith__ = __webpack_require__(328), __WEBPACK_IMPORTED_MODULE_4__equals__ = __webpack_require__(30), dropRepeats = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(Object(__WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__.a)([], Object(__WEBPACK_IMPORTED_MODULE_2__internal_xdropRepeatsWith__.a)(__WEBPACK_IMPORTED_MODULE_4__equals__.a), Object(__WEBPACK_IMPORTED_MODULE_3__dropRepeatsWith__.a)(__WEBPACK_IMPORTED_MODULE_4__equals__.a))); + var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__ = __webpack_require__(15), __WEBPACK_IMPORTED_MODULE_2__internal_xdropRepeatsWith__ = __webpack_require__(327), __WEBPACK_IMPORTED_MODULE_3__dropRepeatsWith__ = __webpack_require__(328), __WEBPACK_IMPORTED_MODULE_4__equals__ = __webpack_require__(31), dropRepeats = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(Object(__WEBPACK_IMPORTED_MODULE_1__internal_dispatchable__.a)([], Object(__WEBPACK_IMPORTED_MODULE_2__internal_xdropRepeatsWith__.a)(__WEBPACK_IMPORTED_MODULE_4__equals__.a), Object(__WEBPACK_IMPORTED_MODULE_3__dropRepeatsWith__.a)(__WEBPACK_IMPORTED_MODULE_4__equals__.a))); __webpack_exports__.a = dropRepeats; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -31549,19 +31597,19 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = either; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_2__takeLast__ = __webpack_require__(332), endsWith = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(suffix, list) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_2__takeLast__ = __webpack_require__(332), endsWith = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(suffix, list) { return Object(__WEBPACK_IMPORTED_MODULE_1__equals__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__takeLast__.a)(suffix.length, list), suffix); }); __webpack_exports__.a = endsWith; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(30), eqBy = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(f, x, y) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(31), eqBy = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(f, x, y) { return Object(__WEBPACK_IMPORTED_MODULE_1__equals__.a)(f(x), f(y)); }); __webpack_exports__.a = eqBy; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(30), eqProps = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(prop, obj1, obj2) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(31), eqProps = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(prop, obj1, obj2) { return Object(__WEBPACK_IMPORTED_MODULE_1__equals__.a)(obj1[prop], obj2[prop]); }); __webpack_exports__.a = eqProps; @@ -31779,7 +31827,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = init; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_containsWith__ = __webpack_require__(143), __WEBPACK_IMPORTED_MODULE_1__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_2__internal_filter__ = __webpack_require__(209), innerJoin = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry3__.a)(function(pred, xs, ys) { + var __WEBPACK_IMPORTED_MODULE_0__internal_containsWith__ = __webpack_require__(143), __WEBPACK_IMPORTED_MODULE_1__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_2__internal_filter__ = __webpack_require__(211), innerJoin = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry3__.a)(function(pred, xs, ys) { return Object(__WEBPACK_IMPORTED_MODULE_2__internal_filter__.a)(function(x) { return Object(__WEBPACK_IMPORTED_MODULE_0__internal_containsWith__.a)(pred, x, ys); }, xs); @@ -31801,7 +31849,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = insertAll; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_contains__ = __webpack_require__(81), __WEBPACK_IMPORTED_MODULE_1__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_2__internal_filter__ = __webpack_require__(209), __WEBPACK_IMPORTED_MODULE_3__flip__ = __webpack_require__(146), __WEBPACK_IMPORTED_MODULE_4__uniq__ = __webpack_require__(215), intersection = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry2__.a)(function(list1, list2) { + var __WEBPACK_IMPORTED_MODULE_0__internal_contains__ = __webpack_require__(81), __WEBPACK_IMPORTED_MODULE_1__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_2__internal_filter__ = __webpack_require__(211), __WEBPACK_IMPORTED_MODULE_3__flip__ = __webpack_require__(146), __WEBPACK_IMPORTED_MODULE_4__uniq__ = __webpack_require__(217), intersection = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry2__.a)(function(list1, list2) { var lookupList, filteredList; return list1.length > list2.length ? (lookupList = list1, filteredList = list2) : (lookupList = list2, filteredList = list1), Object(__WEBPACK_IMPORTED_MODULE_4__uniq__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__internal_filter__.a)(Object(__WEBPACK_IMPORTED_MODULE_3__flip__.a)(__WEBPACK_IMPORTED_MODULE_0__internal_contains__.a)(lookupList), filteredList)); @@ -31865,7 +31913,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = intersperse; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_clone__ = __webpack_require__(310), __WEBPACK_IMPORTED_MODULE_1__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_2__internal_isTransformer__ = __webpack_require__(198), __WEBPACK_IMPORTED_MODULE_3__internal_reduce__ = __webpack_require__(29), __WEBPACK_IMPORTED_MODULE_4__internal_stepCat__ = __webpack_require__(667), into = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry3__.a)(function(acc, xf, list) { + var __WEBPACK_IMPORTED_MODULE_0__internal_clone__ = __webpack_require__(310), __WEBPACK_IMPORTED_MODULE_1__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_2__internal_isTransformer__ = __webpack_require__(200), __WEBPACK_IMPORTED_MODULE_3__internal_reduce__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_4__internal_stepCat__ = __webpack_require__(667), into = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry3__.a)(function(acc, xf, list) { return Object(__WEBPACK_IMPORTED_MODULE_2__internal_isTransformer__.a)(acc) ? Object(__WEBPACK_IMPORTED_MODULE_3__internal_reduce__.a)(xf(acc), acc["@@transducer/init"](), list) : Object(__WEBPACK_IMPORTED_MODULE_3__internal_reduce__.a)(xf(Object(__WEBPACK_IMPORTED_MODULE_4__internal_stepCat__.a)(acc)), Object(__WEBPACK_IMPORTED_MODULE_0__internal_clone__.a)(acc, [], [], !1), list); }); __webpack_exports__.a = into; @@ -31879,7 +31927,7 @@ var _publicBundleJs = []byte(`!function(modules) { throw new Error("Cannot create transformer for " + obj); } __webpack_exports__.a = _stepCat; - var __WEBPACK_IMPORTED_MODULE_0__assign__ = __webpack_require__(216), __WEBPACK_IMPORTED_MODULE_1__identity__ = __webpack_require__(214), __WEBPACK_IMPORTED_MODULE_2__isArrayLike__ = __webpack_require__(137), __WEBPACK_IMPORTED_MODULE_3__isTransformer__ = __webpack_require__(198), __WEBPACK_IMPORTED_MODULE_4__objOf__ = __webpack_require__(334), _stepCatArray = { + var __WEBPACK_IMPORTED_MODULE_0__assign__ = __webpack_require__(218), __WEBPACK_IMPORTED_MODULE_1__identity__ = __webpack_require__(216), __WEBPACK_IMPORTED_MODULE_2__isArrayLike__ = __webpack_require__(137), __WEBPACK_IMPORTED_MODULE_3__isTransformer__ = __webpack_require__(200), __WEBPACK_IMPORTED_MODULE_4__objOf__ = __webpack_require__(334), _stepCatArray = { "@@transducer/init": Array, "@@transducer/step": function(xs, x) { return xs.push(x), xs; @@ -31933,7 +31981,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = invertObj; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__empty__ = __webpack_require__(331), __WEBPACK_IMPORTED_MODULE_2__equals__ = __webpack_require__(30), isEmpty = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(function(x) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__empty__ = __webpack_require__(331), __WEBPACK_IMPORTED_MODULE_2__equals__ = __webpack_require__(31), isEmpty = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(function(x) { return null != x && Object(__WEBPACK_IMPORTED_MODULE_2__equals__.a)(x, Object(__WEBPACK_IMPORTED_MODULE_1__empty__.a)(x)); }); __webpack_exports__.a = isEmpty; @@ -31951,7 +31999,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = keysIn; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_isArray__ = __webpack_require__(57), __WEBPACK_IMPORTED_MODULE_2__equals__ = __webpack_require__(30), lastIndexOf = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(target, xs) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_isArray__ = __webpack_require__(57), __WEBPACK_IMPORTED_MODULE_2__equals__ = __webpack_require__(31), lastIndexOf = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(target, xs) { if ("function" != typeof xs.lastIndexOf || Object(__WEBPACK_IMPORTED_MODULE_1__internal_isArray__.a)(xs)) { for (var idx = xs.length - 1; idx >= 0; ) { if (Object(__WEBPACK_IMPORTED_MODULE_2__equals__.a)(xs[idx], target)) return idx; @@ -31964,7 +32012,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = lastIndexOf; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__lens__ = __webpack_require__(147), __WEBPACK_IMPORTED_MODULE_2__nth__ = __webpack_require__(101), __WEBPACK_IMPORTED_MODULE_3__update__ = __webpack_require__(211), lensIndex = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(function(n) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__lens__ = __webpack_require__(147), __WEBPACK_IMPORTED_MODULE_2__nth__ = __webpack_require__(101), __WEBPACK_IMPORTED_MODULE_3__update__ = __webpack_require__(213), lensIndex = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(function(n) { return Object(__WEBPACK_IMPORTED_MODULE_1__lens__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__nth__.a)(n), Object(__WEBPACK_IMPORTED_MODULE_3__update__.a)(n)); }); __webpack_exports__.a = lensIndex; @@ -31976,7 +32024,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = lensPath; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__assoc__ = __webpack_require__(138), __WEBPACK_IMPORTED_MODULE_2__lens__ = __webpack_require__(147), __WEBPACK_IMPORTED_MODULE_3__prop__ = __webpack_require__(199), lensProp = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(function(k) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry1__ = __webpack_require__(4), __WEBPACK_IMPORTED_MODULE_1__assoc__ = __webpack_require__(138), __WEBPACK_IMPORTED_MODULE_2__lens__ = __webpack_require__(147), __WEBPACK_IMPORTED_MODULE_3__prop__ = __webpack_require__(201), lensProp = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry1__.a)(function(k) { return Object(__WEBPACK_IMPORTED_MODULE_2__lens__.a)(Object(__WEBPACK_IMPORTED_MODULE_3__prop__.a)(k), Object(__WEBPACK_IMPORTED_MODULE_1__assoc__.a)(k)); }); __webpack_exports__.a = lensProp; @@ -32010,7 +32058,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = mapAccumRight; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_reduce__ = __webpack_require__(29), __WEBPACK_IMPORTED_MODULE_2__keys__ = __webpack_require__(44), mapObjIndexed = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(fn, obj) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_reduce__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_2__keys__ = __webpack_require__(44), mapObjIndexed = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(fn, obj) { return Object(__WEBPACK_IMPORTED_MODULE_1__internal_reduce__.a)(function(acc, key) { return acc[key] = fn(obj[key], key, obj), acc; }, {}, Object(__WEBPACK_IMPORTED_MODULE_2__keys__.a)(obj)); @@ -32024,7 +32072,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = match; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_isInteger__ = __webpack_require__(201), mathMod = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(m, p) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__internal_isInteger__ = __webpack_require__(203), mathMod = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(m, p) { return Object(__WEBPACK_IMPORTED_MODULE_1__internal_isInteger__.a)(m) ? !Object(__WEBPACK_IMPORTED_MODULE_1__internal_isInteger__.a)(p) || p < 1 ? NaN : (m % p + p) % p : NaN; }); __webpack_exports__.a = mathMod; @@ -32053,13 +32101,13 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = memoize; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_assign__ = __webpack_require__(216), __WEBPACK_IMPORTED_MODULE_1__internal_curry2__ = __webpack_require__(0), merge = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry2__.a)(function(l, r) { + var __WEBPACK_IMPORTED_MODULE_0__internal_assign__ = __webpack_require__(218), __WEBPACK_IMPORTED_MODULE_1__internal_curry2__ = __webpack_require__(0), merge = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry2__.a)(function(l, r) { return Object(__WEBPACK_IMPORTED_MODULE_0__internal_assign__.a)({}, l, r); }); __webpack_exports__.a = merge; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_assign__ = __webpack_require__(216), __WEBPACK_IMPORTED_MODULE_1__internal_curry1__ = __webpack_require__(4), mergeAll = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry1__.a)(function(list) { + var __WEBPACK_IMPORTED_MODULE_0__internal_assign__ = __webpack_require__(218), __WEBPACK_IMPORTED_MODULE_1__internal_curry1__ = __webpack_require__(4), mergeAll = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry1__.a)(function(list) { return __WEBPACK_IMPORTED_MODULE_0__internal_assign__.a.apply(null, [ {} ].concat(list)); }); __webpack_exports__.a = mergeAll; @@ -32089,7 +32137,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = mergeDeepWith; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__mergeWithKey__ = __webpack_require__(217), mergeWith = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(fn, l, r) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__mergeWithKey__ = __webpack_require__(219), mergeWith = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(fn, l, r) { return Object(__WEBPACK_IMPORTED_MODULE_1__mergeWithKey__.a)(function(_, _l, _r) { return fn(_l, _r); }, l, r); @@ -32182,11 +32230,11 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = partialRight; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__filter__ = __webpack_require__(208), __WEBPACK_IMPORTED_MODULE_1__juxt__ = __webpack_require__(336), __WEBPACK_IMPORTED_MODULE_2__reject__ = __webpack_require__(144), partition = Object(__WEBPACK_IMPORTED_MODULE_1__juxt__.a)([ __WEBPACK_IMPORTED_MODULE_0__filter__.a, __WEBPACK_IMPORTED_MODULE_2__reject__.a ]); + var __WEBPACK_IMPORTED_MODULE_0__filter__ = __webpack_require__(210), __WEBPACK_IMPORTED_MODULE_1__juxt__ = __webpack_require__(336), __WEBPACK_IMPORTED_MODULE_2__reject__ = __webpack_require__(144), partition = Object(__WEBPACK_IMPORTED_MODULE_1__juxt__.a)([ __WEBPACK_IMPORTED_MODULE_0__filter__.a, __WEBPACK_IMPORTED_MODULE_2__reject__.a ]); __webpack_exports__.a = partition; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_2__path__ = __webpack_require__(80), pathEq = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(_path, val, obj) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_2__path__ = __webpack_require__(80), pathEq = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(_path, val, obj) { return Object(__WEBPACK_IMPORTED_MODULE_1__equals__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__path__.a)(_path, obj), val); }); __webpack_exports__.a = pathEq; @@ -32232,11 +32280,11 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = product; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_map__ = __webpack_require__(136), __WEBPACK_IMPORTED_MODULE_1__identity__ = __webpack_require__(213), __WEBPACK_IMPORTED_MODULE_2__pickAll__ = __webpack_require__(345), __WEBPACK_IMPORTED_MODULE_3__useWith__ = __webpack_require__(347), project = Object(__WEBPACK_IMPORTED_MODULE_3__useWith__.a)(__WEBPACK_IMPORTED_MODULE_0__internal_map__.a, [ __WEBPACK_IMPORTED_MODULE_2__pickAll__.a, __WEBPACK_IMPORTED_MODULE_1__identity__.a ]); + var __WEBPACK_IMPORTED_MODULE_0__internal_map__ = __webpack_require__(136), __WEBPACK_IMPORTED_MODULE_1__identity__ = __webpack_require__(215), __WEBPACK_IMPORTED_MODULE_2__pickAll__ = __webpack_require__(345), __WEBPACK_IMPORTED_MODULE_3__useWith__ = __webpack_require__(347), project = Object(__WEBPACK_IMPORTED_MODULE_3__useWith__.a)(__WEBPACK_IMPORTED_MODULE_0__internal_map__.a, [ __WEBPACK_IMPORTED_MODULE_2__pickAll__.a, __WEBPACK_IMPORTED_MODULE_1__identity__.a ]); __webpack_exports__.a = project; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(30), propEq = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(name, val, obj) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(31), propEq = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(name, val, obj) { return Object(__WEBPACK_IMPORTED_MODULE_1__equals__.a)(val, obj[name]); }); __webpack_exports__.a = propEq; @@ -32276,7 +32324,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = range; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curryN__ = __webpack_require__(135), __WEBPACK_IMPORTED_MODULE_1__internal_reduce__ = __webpack_require__(29), __WEBPACK_IMPORTED_MODULE_2__internal_reduced__ = __webpack_require__(58), reduceWhile = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curryN__.a)(4, [], function(pred, fn, a, list) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curryN__ = __webpack_require__(135), __WEBPACK_IMPORTED_MODULE_1__internal_reduce__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_2__internal_reduced__ = __webpack_require__(58), reduceWhile = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curryN__.a)(4, [], function(pred, fn, a, list) { return Object(__WEBPACK_IMPORTED_MODULE_1__internal_reduce__.a)(function(acc, x) { return pred(acc, x) ? fn(acc, x) : Object(__WEBPACK_IMPORTED_MODULE_2__internal_reduced__.a)(acc); }, a, list); @@ -32365,7 +32413,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = splitWhen; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_2__take__ = __webpack_require__(212), startsWith = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(prefix, list) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_2__take__ = __webpack_require__(214), startsWith = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(prefix, list) { return Object(__WEBPACK_IMPORTED_MODULE_1__equals__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__take__.a)(prefix.length, list), prefix); }); __webpack_exports__.a = startsWith; @@ -32377,13 +32425,13 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = subtract; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__concat__ = __webpack_require__(207), __WEBPACK_IMPORTED_MODULE_2__difference__ = __webpack_require__(322), symmetricDifference = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(list1, list2) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__concat__ = __webpack_require__(209), __WEBPACK_IMPORTED_MODULE_2__difference__ = __webpack_require__(322), symmetricDifference = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(list1, list2) { return Object(__WEBPACK_IMPORTED_MODULE_1__concat__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__difference__.a)(list1, list2), Object(__WEBPACK_IMPORTED_MODULE_2__difference__.a)(list2, list1)); }); __webpack_exports__.a = symmetricDifference; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__concat__ = __webpack_require__(207), __WEBPACK_IMPORTED_MODULE_2__differenceWith__ = __webpack_require__(323), symmetricDifferenceWith = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(pred, list1, list2) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry3__ = __webpack_require__(5), __WEBPACK_IMPORTED_MODULE_1__concat__ = __webpack_require__(209), __WEBPACK_IMPORTED_MODULE_2__differenceWith__ = __webpack_require__(323), symmetricDifferenceWith = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry3__.a)(function(pred, list1, list2) { return Object(__WEBPACK_IMPORTED_MODULE_1__concat__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__differenceWith__.a)(pred, list1, list2), Object(__WEBPACK_IMPORTED_MODULE_2__differenceWith__.a)(pred, list2, list1)); }); __webpack_exports__.a = symmetricDifferenceWith; @@ -32476,7 +32524,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = toUpper; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_reduce__ = __webpack_require__(29), __WEBPACK_IMPORTED_MODULE_1__internal_xwrap__ = __webpack_require__(298), __WEBPACK_IMPORTED_MODULE_2__curryN__ = __webpack_require__(23), transduce = Object(__WEBPACK_IMPORTED_MODULE_2__curryN__.a)(4, function(xf, fn, acc, list) { + var __WEBPACK_IMPORTED_MODULE_0__internal_reduce__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_1__internal_xwrap__ = __webpack_require__(298), __WEBPACK_IMPORTED_MODULE_2__curryN__ = __webpack_require__(23), transduce = Object(__WEBPACK_IMPORTED_MODULE_2__curryN__.a)(4, function(xf, fn, acc, list) { return Object(__WEBPACK_IMPORTED_MODULE_0__internal_reduce__.a)(xf("function" == typeof fn ? Object(__WEBPACK_IMPORTED_MODULE_1__internal_xwrap__.a)(fn) : fn), acc, list); }); __webpack_exports__.a = transduce; @@ -32553,7 +32601,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = unfold; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_concat__ = __webpack_require__(33), __WEBPACK_IMPORTED_MODULE_1__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_2__compose__ = __webpack_require__(205), __WEBPACK_IMPORTED_MODULE_3__uniq__ = __webpack_require__(215), union = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry2__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__compose__.a)(__WEBPACK_IMPORTED_MODULE_3__uniq__.a, __WEBPACK_IMPORTED_MODULE_0__internal_concat__.a)); + var __WEBPACK_IMPORTED_MODULE_0__internal_concat__ = __webpack_require__(33), __WEBPACK_IMPORTED_MODULE_1__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_2__compose__ = __webpack_require__(207), __WEBPACK_IMPORTED_MODULE_3__uniq__ = __webpack_require__(217), union = Object(__WEBPACK_IMPORTED_MODULE_1__internal_curry2__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__compose__.a)(__WEBPACK_IMPORTED_MODULE_3__uniq__.a, __WEBPACK_IMPORTED_MODULE_0__internal_concat__.a)); __webpack_exports__.a = union; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -32569,7 +32617,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = unless; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_identity__ = __webpack_require__(214), __WEBPACK_IMPORTED_MODULE_1__chain__ = __webpack_require__(203), unnest = Object(__WEBPACK_IMPORTED_MODULE_1__chain__.a)(__WEBPACK_IMPORTED_MODULE_0__internal_identity__.a); + var __WEBPACK_IMPORTED_MODULE_0__internal_identity__ = __webpack_require__(216), __WEBPACK_IMPORTED_MODULE_1__chain__ = __webpack_require__(205), unnest = Object(__WEBPACK_IMPORTED_MODULE_1__chain__.a)(__WEBPACK_IMPORTED_MODULE_0__internal_identity__.a); __webpack_exports__.a = unnest; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -32607,7 +32655,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = when; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(30), __WEBPACK_IMPORTED_MODULE_2__map__ = __webpack_require__(27), __WEBPACK_IMPORTED_MODULE_3__where__ = __webpack_require__(352), whereEq = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(spec, testObj) { + var __WEBPACK_IMPORTED_MODULE_0__internal_curry2__ = __webpack_require__(0), __WEBPACK_IMPORTED_MODULE_1__equals__ = __webpack_require__(31), __WEBPACK_IMPORTED_MODULE_2__map__ = __webpack_require__(27), __WEBPACK_IMPORTED_MODULE_3__where__ = __webpack_require__(352), whereEq = Object(__WEBPACK_IMPORTED_MODULE_0__internal_curry2__.a)(function(spec, testObj) { return Object(__WEBPACK_IMPORTED_MODULE_3__where__.a)(Object(__WEBPACK_IMPORTED_MODULE_2__map__.a)(__WEBPACK_IMPORTED_MODULE_1__equals__.a, spec), testObj); }); __webpack_exports__.a = whereEq; @@ -33360,7 +33408,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _inDOM = __webpack_require__(218), _inDOM2 = function(obj) { + var _inDOM = __webpack_require__(220), _inDOM2 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -33392,7 +33440,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _inDOM = __webpack_require__(218), _inDOM2 = function(obj) { + var _inDOM = __webpack_require__(220), _inDOM2 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -33412,7 +33460,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _inDOM = __webpack_require__(218), _inDOM2 = function(obj) { + var _inDOM = __webpack_require__(220), _inDOM2 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -33645,7 +33693,7 @@ var _publicBundleJs = []byte(`!function(modules) { __esModule: !0 }; }, function(module, exports, __webpack_require__) { - __webpack_require__(184), __webpack_require__(794), module.exports = __webpack_require__(22).Array.from; + __webpack_require__(186), __webpack_require__(794), module.exports = __webpack_require__(22).Array.from; }, function(module, exports, __webpack_require__) { "use strict"; var ctx = __webpack_require__(64), $export = __webpack_require__(25), toObject = __webpack_require__(76), call = __webpack_require__(284), isArrayIter = __webpack_require__(285), toLength = __webpack_require__(123), createProperty = __webpack_require__(795), getIterFn = __webpack_require__(286); @@ -33667,7 +33715,7 @@ var _publicBundleJs = []byte(`!function(modules) { index in object ? $defineProperty.f(object, index, createDesc(0, value)) : object[index] = value; }; }, function(module, exports, __webpack_require__) { - var ITERATOR = __webpack_require__(28)("iterator"), SAFE_CLOSING = !1; + var ITERATOR = __webpack_require__(29)("iterator"), SAFE_CLOSING = !1; try { var riter = [ 7 ][ITERATOR](); riter.return = function() { @@ -35462,7 +35510,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_require__(847), __webpack_require__(848), __webpack_require__(849), __webpack_require__(850), __webpack_require__(852), __webpack_require__(853), __webpack_require__(854), __webpack_require__(855), __webpack_require__(856), __webpack_require__(857), __webpack_require__(858), __webpack_require__(859), - __webpack_require__(860), module.exports = __webpack_require__(220).Math; + __webpack_require__(860), module.exports = __webpack_require__(222).Math; }, function(module, exports, __webpack_require__) { var $export = __webpack_require__(20), log1p = __webpack_require__(364), sqrt = Math.sqrt, $acosh = Math.acosh; $export($export.S + $export.F * !($acosh && 710 == Math.floor($acosh(Number.MAX_VALUE)) && $acosh(1 / 0) == 1 / 0), "Math", { @@ -35472,7 +35520,7 @@ var _publicBundleJs = []byte(`!function(modules) { }); }, function(module, exports, __webpack_require__) { var anObject = __webpack_require__(834), IE8_DOM_DEFINE = __webpack_require__(835), toPrimitive = __webpack_require__(837), dP = Object.defineProperty; - exports.f = __webpack_require__(222) ? Object.defineProperty : function(O, P, Attributes) { + exports.f = __webpack_require__(224) ? Object.defineProperty : function(O, P, Attributes) { if (anObject(O), P = toPrimitive(P, !0), anObject(Attributes), IE8_DOM_DEFINE) try { return dP(O, P, Attributes); } catch (e) {} @@ -35480,13 +35528,13 @@ var _publicBundleJs = []byte(`!function(modules) { return "value" in Attributes && (O[P] = Attributes.value), O; }; }, function(module, exports, __webpack_require__) { - var isObject = __webpack_require__(221); + var isObject = __webpack_require__(223); module.exports = function(it) { if (!isObject(it)) throw TypeError(it + " is not an object!"); return it; }; }, function(module, exports, __webpack_require__) { - module.exports = !__webpack_require__(222) && !__webpack_require__(151)(function() { + module.exports = !__webpack_require__(224) && !__webpack_require__(151)(function() { return 7 != Object.defineProperty(__webpack_require__(836)("div"), "a", { get: function() { return 7; @@ -35494,12 +35542,12 @@ var _publicBundleJs = []byte(`!function(modules) { }).a; }); }, function(module, exports, __webpack_require__) { - var isObject = __webpack_require__(221), document = __webpack_require__(219).document, is = isObject(document) && isObject(document.createElement); + var isObject = __webpack_require__(223), document = __webpack_require__(221).document, is = isObject(document) && isObject(document.createElement); module.exports = function(it) { return is ? document.createElement(it) : {}; }; }, function(module, exports, __webpack_require__) { - var isObject = __webpack_require__(221); + var isObject = __webpack_require__(223); module.exports = function(it, S) { if (!isObject(it)) return it; var fn, val; @@ -35518,8 +35566,8 @@ var _publicBundleJs = []byte(`!function(modules) { }; }; }, function(module, exports, __webpack_require__) { - var global = __webpack_require__(219), hide = __webpack_require__(363), has = __webpack_require__(840), SRC = __webpack_require__(841)("src"), $toString = Function.toString, TPL = ("" + $toString).split("toString"); - __webpack_require__(220).inspectSource = function(it) { + var global = __webpack_require__(221), hide = __webpack_require__(363), has = __webpack_require__(840), SRC = __webpack_require__(841)("src"), $toString = Function.toString, TPL = ("" + $toString).split("toString"); + __webpack_require__(222).inspectSource = function(it) { return $toString.call(it); }, (module.exports = function(O, key, val, safe) { var isFunction = "function" == typeof val; @@ -35584,7 +35632,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }); }, function(module, exports, __webpack_require__) { - var $export = __webpack_require__(20), sign = __webpack_require__(223); + var $export = __webpack_require__(20), sign = __webpack_require__(225); $export($export.S, "Math", { cbrt: function(x) { return sign(x = +x) * Math.pow(Math.abs(x), 1 / 3); @@ -35605,7 +35653,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }); }, function(module, exports, __webpack_require__) { - var $export = __webpack_require__(20), $expm1 = __webpack_require__(224); + var $export = __webpack_require__(20), $expm1 = __webpack_require__(226); $export($export.S + $export.F * ($expm1 != Math.expm1), "Math", { expm1: $expm1 }); @@ -35615,7 +35663,7 @@ var _publicBundleJs = []byte(`!function(modules) { fround: __webpack_require__(851) }); }, function(module, exports, __webpack_require__) { - var sign = __webpack_require__(223), pow = Math.pow, EPSILON = pow(2, -52), EPSILON32 = pow(2, -23), MAX32 = pow(2, 127) * (2 - EPSILON32), MIN32 = pow(2, -126), roundTiesToEven = function(n) { + var sign = __webpack_require__(225), pow = Math.pow, EPSILON = pow(2, -52), EPSILON32 = pow(2, -23), MAX32 = pow(2, 127) * (2 - EPSILON32), MIN32 = pow(2, -126), roundTiesToEven = function(n) { return n + 1 / EPSILON - 1 / EPSILON; }; module.exports = Math.fround || function(x) { @@ -35665,10 +35713,10 @@ var _publicBundleJs = []byte(`!function(modules) { }, function(module, exports, __webpack_require__) { var $export = __webpack_require__(20); $export($export.S, "Math", { - sign: __webpack_require__(223) + sign: __webpack_require__(225) }); }, function(module, exports, __webpack_require__) { - var $export = __webpack_require__(20), expm1 = __webpack_require__(224), exp = Math.exp; + var $export = __webpack_require__(20), expm1 = __webpack_require__(226), exp = Math.exp; $export($export.S + $export.F * __webpack_require__(151)(function() { return -2e-17 != !Math.sinh(-2e-17); }), "Math", { @@ -35677,7 +35725,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }); }, function(module, exports, __webpack_require__) { - var $export = __webpack_require__(20), expm1 = __webpack_require__(224), exp = Math.exp; + var $export = __webpack_require__(20), expm1 = __webpack_require__(226), exp = Math.exp; $export($export.S, "Math", { tanh: function(x) { var a = expm1(x = +x), b = expm1(-x); @@ -35710,6 +35758,200 @@ var _publicBundleJs = []byte(`!function(modules) { } var objectProto = Object.prototype, nativeObjectToString = objectProto.toString; module.exports = objectToString; +}, function(module, exports, __webpack_require__) { + var memoizeCapped = __webpack_require__(864), reLeadingDot = /^\./, rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g, reEscapeChar = /\\(\\)?/g, stringToPath = memoizeCapped(function(string) { + var result = []; + return reLeadingDot.test(string) && result.push(""), string.replace(rePropName, function(match, number, quote, string) { + result.push(quote ? string.replace(reEscapeChar, "$1") : number || match); + }), result; + }); + module.exports = stringToPath; +}, function(module, exports, __webpack_require__) { + function memoizeCapped(func) { + var result = memoize(func, function(key) { + return cache.size === MAX_MEMOIZE_SIZE && cache.clear(), key; + }), cache = result.cache; + return result; + } + var memoize = __webpack_require__(865), MAX_MEMOIZE_SIZE = 500; + module.exports = memoizeCapped; +}, function(module, exports, __webpack_require__) { + function memoize(func, resolver) { + if ("function" != typeof func || null != resolver && "function" != typeof resolver) throw new TypeError(FUNC_ERROR_TEXT); + var memoized = function() { + var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache = memoized.cache; + if (cache.has(key)) return cache.get(key); + var result = func.apply(this, args); + return memoized.cache = cache.set(key, result) || cache, result; + }; + return memoized.cache = new (memoize.Cache || MapCache)(), memoized; + } + var MapCache = __webpack_require__(229), FUNC_ERROR_TEXT = "Expected a function"; + memoize.Cache = MapCache, module.exports = memoize; +}, function(module, exports, __webpack_require__) { + function mapCacheClear() { + this.size = 0, this.__data__ = { + hash: new Hash(), + map: new (Map || ListCache)(), + string: new Hash() + }; + } + var Hash = __webpack_require__(867), ListCache = __webpack_require__(154), Map = __webpack_require__(231); + module.exports = mapCacheClear; +}, function(module, exports, __webpack_require__) { + function Hash(entries) { + var index = -1, length = null == entries ? 0 : entries.length; + for (this.clear(); ++index < length; ) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + var hashClear = __webpack_require__(868), hashDelete = __webpack_require__(873), hashGet = __webpack_require__(874), hashHas = __webpack_require__(875), hashSet = __webpack_require__(876); + Hash.prototype.clear = hashClear, Hash.prototype.delete = hashDelete, Hash.prototype.get = hashGet, + Hash.prototype.has = hashHas, Hash.prototype.set = hashSet, module.exports = Hash; +}, function(module, exports, __webpack_require__) { + function hashClear() { + this.__data__ = nativeCreate ? nativeCreate(null) : {}, this.size = 0; + } + var nativeCreate = __webpack_require__(153); + module.exports = hashClear; +}, function(module, exports, __webpack_require__) { + function baseIsNative(value) { + return !(!isObject(value) || isMasked(value)) && (isFunction(value) ? reIsNative : reIsHostCtor).test(toSource(value)); + } + var isFunction = __webpack_require__(11), isMasked = __webpack_require__(870), isObject = __webpack_require__(47), toSource = __webpack_require__(368), reRegExpChar = /[\\^$.*+?()[\]{}|]/g, reIsHostCtor = /^\[object .+?Constructor\]$/, funcProto = Function.prototype, objectProto = Object.prototype, funcToString = funcProto.toString, hasOwnProperty = objectProto.hasOwnProperty, reIsNative = RegExp("^" + funcToString.call(hasOwnProperty).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"); + module.exports = baseIsNative; +}, function(module, exports, __webpack_require__) { + function isMasked(func) { + return !!maskSrcKey && maskSrcKey in func; + } + var coreJsData = __webpack_require__(871), maskSrcKey = function() { + var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || ""); + return uid ? "Symbol(src)_1." + uid : ""; + }(); + module.exports = isMasked; +}, function(module, exports, __webpack_require__) { + var root = __webpack_require__(46), coreJsData = root["__core-js_shared__"]; + module.exports = coreJsData; +}, function(module, exports) { + function getValue(object, key) { + return null == object ? void 0 : object[key]; + } + module.exports = getValue; +}, function(module, exports) { + function hashDelete(key) { + var result = this.has(key) && delete this.__data__[key]; + return this.size -= result ? 1 : 0, result; + } + module.exports = hashDelete; +}, function(module, exports, __webpack_require__) { + function hashGet(key) { + var data = this.__data__; + if (nativeCreate) { + var result = data[key]; + return result === HASH_UNDEFINED ? void 0 : result; + } + return hasOwnProperty.call(data, key) ? data[key] : void 0; + } + var nativeCreate = __webpack_require__(153), HASH_UNDEFINED = "__lodash_hash_undefined__", objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; + module.exports = hashGet; +}, function(module, exports, __webpack_require__) { + function hashHas(key) { + var data = this.__data__; + return nativeCreate ? void 0 !== data[key] : hasOwnProperty.call(data, key); + } + var nativeCreate = __webpack_require__(153), objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; + module.exports = hashHas; +}, function(module, exports, __webpack_require__) { + function hashSet(key, value) { + var data = this.__data__; + return this.size += this.has(key) ? 0 : 1, data[key] = nativeCreate && void 0 === value ? HASH_UNDEFINED : value, + this; + } + var nativeCreate = __webpack_require__(153), HASH_UNDEFINED = "__lodash_hash_undefined__"; + module.exports = hashSet; +}, function(module, exports) { + function listCacheClear() { + this.__data__ = [], this.size = 0; + } + module.exports = listCacheClear; +}, function(module, exports, __webpack_require__) { + function listCacheDelete(key) { + var data = this.__data__, index = assocIndexOf(data, key); + return !(index < 0) && (index == data.length - 1 ? data.pop() : splice.call(data, index, 1), + --this.size, !0); + } + var assocIndexOf = __webpack_require__(155), arrayProto = Array.prototype, splice = arrayProto.splice; + module.exports = listCacheDelete; +}, function(module, exports, __webpack_require__) { + function listCacheGet(key) { + var data = this.__data__, index = assocIndexOf(data, key); + return index < 0 ? void 0 : data[index][1]; + } + var assocIndexOf = __webpack_require__(155); + module.exports = listCacheGet; +}, function(module, exports, __webpack_require__) { + function listCacheHas(key) { + return assocIndexOf(this.__data__, key) > -1; + } + var assocIndexOf = __webpack_require__(155); + module.exports = listCacheHas; +}, function(module, exports, __webpack_require__) { + function listCacheSet(key, value) { + var data = this.__data__, index = assocIndexOf(data, key); + return index < 0 ? (++this.size, data.push([ key, value ])) : data[index][1] = value, + this; + } + var assocIndexOf = __webpack_require__(155); + module.exports = listCacheSet; +}, function(module, exports, __webpack_require__) { + function mapCacheDelete(key) { + var result = getMapData(this, key).delete(key); + return this.size -= result ? 1 : 0, result; + } + var getMapData = __webpack_require__(156); + module.exports = mapCacheDelete; +}, function(module, exports) { + function isKeyable(value) { + var type = typeof value; + return "string" == type || "number" == type || "symbol" == type || "boolean" == type ? "__proto__" !== value : null === value; + } + module.exports = isKeyable; +}, function(module, exports, __webpack_require__) { + function mapCacheGet(key) { + return getMapData(this, key).get(key); + } + var getMapData = __webpack_require__(156); + module.exports = mapCacheGet; +}, function(module, exports, __webpack_require__) { + function mapCacheHas(key) { + return getMapData(this, key).has(key); + } + var getMapData = __webpack_require__(156); + module.exports = mapCacheHas; +}, function(module, exports, __webpack_require__) { + function mapCacheSet(key, value) { + var data = getMapData(this, key), size = data.size; + return data.set(key, value), this.size += data.size == size ? 0 : 1, this; + } + var getMapData = __webpack_require__(156); + module.exports = mapCacheSet; +}, function(module, exports, __webpack_require__) { + function toString(value) { + return null == value ? "" : baseToString(value); + } + var baseToString = __webpack_require__(888); + module.exports = toString; +}, function(module, exports, __webpack_require__) { + function baseToString(value) { + if ("string" == typeof value) return value; + if (isArray(value)) return arrayMap(value, baseToString) + ""; + if (isSymbol(value)) return symbolToString ? symbolToString.call(value) : ""; + var result = value + ""; + return "0" == result && 1 / value == -INFINITY ? "-0" : result; + } + var Symbol = __webpack_require__(104), arrayMap = __webpack_require__(157), isArray = __webpack_require__(16), isSymbol = __webpack_require__(82), INFINITY = 1 / 0, symbolProto = Symbol ? Symbol.prototype : void 0, symbolToString = symbolProto ? symbolProto.toString : void 0; + module.exports = baseToString; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; function _defineProperty(obj, key, value) { @@ -35738,7 +35980,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp, __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__), __WEBPACK_IMPORTED_MODULE_1_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_1_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_prop_types__), __WEBPACK_IMPORTED_MODULE_2_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_2_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_classnames__), __WEBPACK_IMPORTED_MODULE_3__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_4__container_Surface__ = __webpack_require__(103), __WEBPACK_IMPORTED_MODULE_5__shape_Symbols__ = __webpack_require__(229), __WEBPACK_IMPORTED_MODULE_6__util_ReactUtils__ = __webpack_require__(7), _extends = Object.assign || function(target) { + var _class, _class2, _temp, __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__), __WEBPACK_IMPORTED_MODULE_1_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_1_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_prop_types__), __WEBPACK_IMPORTED_MODULE_2_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_2_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_classnames__), __WEBPACK_IMPORTED_MODULE_3__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_4__container_Surface__ = __webpack_require__(103), __WEBPACK_IMPORTED_MODULE_5__shape_Symbols__ = __webpack_require__(234), __WEBPACK_IMPORTED_MODULE_6__util_ReactUtils__ = __webpack_require__(7), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -35875,7 +36117,7 @@ var _publicBundleJs = []byte(`!function(modules) { __webpack_exports__.a = DefaultLegendContent; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - __webpack_require__(105), __webpack_require__(70), __webpack_require__(106); + __webpack_require__(105), __webpack_require__(71), __webpack_require__(106); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; function Path() { @@ -35928,7 +36170,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, __webpack_exports__.a = path; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - __webpack_require__(70), __webpack_require__(867), __webpack_require__(868), __webpack_require__(106); + __webpack_require__(71), __webpack_require__(893), __webpack_require__(894), __webpack_require__(106); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_exports__.a = function(a, b) { @@ -35941,14 +36183,14 @@ var _publicBundleJs = []byte(`!function(modules) { }; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - __webpack_require__(367), __webpack_require__(366), __webpack_require__(368); + __webpack_require__(370), __webpack_require__(369), __webpack_require__(371); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - __webpack_require__(105), __webpack_require__(370), __webpack_require__(70), __webpack_require__(232), - __webpack_require__(369); + __webpack_require__(105), __webpack_require__(373), __webpack_require__(71), __webpack_require__(237), + __webpack_require__(372); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0_d3_path__ = __webpack_require__(105), __WEBPACK_IMPORTED_MODULE_1__symbol_circle__ = __webpack_require__(371), __WEBPACK_IMPORTED_MODULE_2__symbol_cross__ = __webpack_require__(372), __WEBPACK_IMPORTED_MODULE_3__symbol_diamond__ = __webpack_require__(373), __WEBPACK_IMPORTED_MODULE_4__symbol_star__ = __webpack_require__(374), __WEBPACK_IMPORTED_MODULE_5__symbol_square__ = __webpack_require__(375), __WEBPACK_IMPORTED_MODULE_6__symbol_triangle__ = __webpack_require__(376), __WEBPACK_IMPORTED_MODULE_7__symbol_wye__ = __webpack_require__(377), __WEBPACK_IMPORTED_MODULE_8__constant__ = __webpack_require__(70); + var __WEBPACK_IMPORTED_MODULE_0_d3_path__ = __webpack_require__(105), __WEBPACK_IMPORTED_MODULE_1__symbol_circle__ = __webpack_require__(374), __WEBPACK_IMPORTED_MODULE_2__symbol_cross__ = __webpack_require__(375), __WEBPACK_IMPORTED_MODULE_3__symbol_diamond__ = __webpack_require__(376), __WEBPACK_IMPORTED_MODULE_4__symbol_star__ = __webpack_require__(377), __WEBPACK_IMPORTED_MODULE_5__symbol_square__ = __webpack_require__(378), __WEBPACK_IMPORTED_MODULE_6__symbol_triangle__ = __webpack_require__(379), __WEBPACK_IMPORTED_MODULE_7__symbol_wye__ = __webpack_require__(380), __WEBPACK_IMPORTED_MODULE_8__constant__ = __webpack_require__(71); __WEBPACK_IMPORTED_MODULE_1__symbol_circle__.a, __WEBPACK_IMPORTED_MODULE_2__symbol_cross__.a, __WEBPACK_IMPORTED_MODULE_3__symbol_diamond__.a, __WEBPACK_IMPORTED_MODULE_5__symbol_square__.a, __WEBPACK_IMPORTED_MODULE_4__symbol_star__.a, __WEBPACK_IMPORTED_MODULE_6__symbol_triangle__.a, @@ -35976,7 +36218,7 @@ var _publicBundleJs = []byte(`!function(modules) { function BasisClosed(context) { this._context = context; } - var __WEBPACK_IMPORTED_MODULE_0__noop__ = __webpack_require__(153), __WEBPACK_IMPORTED_MODULE_1__basis__ = __webpack_require__(154); + var __WEBPACK_IMPORTED_MODULE_0__noop__ = __webpack_require__(161), __WEBPACK_IMPORTED_MODULE_1__basis__ = __webpack_require__(162); BasisClosed.prototype = { areaStart: __WEBPACK_IMPORTED_MODULE_0__noop__.a, areaEnd: __WEBPACK_IMPORTED_MODULE_0__noop__.a, @@ -36027,7 +36269,7 @@ var _publicBundleJs = []byte(`!function(modules) { function BasisOpen(context) { this._context = context; } - var __WEBPACK_IMPORTED_MODULE_0__basis__ = __webpack_require__(154); + var __WEBPACK_IMPORTED_MODULE_0__basis__ = __webpack_require__(162); BasisOpen.prototype = { areaStart: function() { this._line = 0; @@ -36074,7 +36316,7 @@ var _publicBundleJs = []byte(`!function(modules) { function Bundle(context, beta) { this._basis = new __WEBPACK_IMPORTED_MODULE_0__basis__.a(context), this._beta = beta; } - var __WEBPACK_IMPORTED_MODULE_0__basis__ = __webpack_require__(154); + var __WEBPACK_IMPORTED_MODULE_0__basis__ = __webpack_require__(162); Bundle.prototype = { lineStart: function() { this._x = [], this._y = [], this._basis.lineStart(); @@ -36102,7 +36344,7 @@ var _publicBundleJs = []byte(`!function(modules) { function CatmullRomClosed(context, alpha) { this._context = context, this._alpha = alpha; } - var __WEBPACK_IMPORTED_MODULE_0__cardinalClosed__ = __webpack_require__(378), __WEBPACK_IMPORTED_MODULE_1__noop__ = __webpack_require__(153), __WEBPACK_IMPORTED_MODULE_2__catmullRom__ = __webpack_require__(233); + var __WEBPACK_IMPORTED_MODULE_0__cardinalClosed__ = __webpack_require__(381), __WEBPACK_IMPORTED_MODULE_1__noop__ = __webpack_require__(161), __WEBPACK_IMPORTED_MODULE_2__catmullRom__ = __webpack_require__(238); CatmullRomClosed.prototype = { areaStart: __WEBPACK_IMPORTED_MODULE_1__noop__.a, areaEnd: __WEBPACK_IMPORTED_MODULE_1__noop__.a, @@ -36163,7 +36405,7 @@ var _publicBundleJs = []byte(`!function(modules) { function CatmullRomOpen(context, alpha) { this._context = context, this._alpha = alpha; } - var __WEBPACK_IMPORTED_MODULE_0__cardinalOpen__ = __webpack_require__(379), __WEBPACK_IMPORTED_MODULE_1__catmullRom__ = __webpack_require__(233); + var __WEBPACK_IMPORTED_MODULE_0__cardinalOpen__ = __webpack_require__(382), __WEBPACK_IMPORTED_MODULE_1__catmullRom__ = __webpack_require__(238); CatmullRomOpen.prototype = { areaStart: function() { this._line = 0; @@ -36220,7 +36462,7 @@ var _publicBundleJs = []byte(`!function(modules) { function LinearClosed(context) { this._context = context; } - var __WEBPACK_IMPORTED_MODULE_0__noop__ = __webpack_require__(153); + var __WEBPACK_IMPORTED_MODULE_0__noop__ = __webpack_require__(161); LinearClosed.prototype = { areaStart: __WEBPACK_IMPORTED_MODULE_0__noop__.a, areaEnd: __WEBPACK_IMPORTED_MODULE_0__noop__.a, @@ -36418,7 +36660,7 @@ var _publicBundleJs = []byte(`!function(modules) { function stackValue(d, key) { return d[key]; } - var __WEBPACK_IMPORTED_MODULE_0__array__ = __webpack_require__(370), __WEBPACK_IMPORTED_MODULE_1__constant__ = __webpack_require__(70), __WEBPACK_IMPORTED_MODULE_2__offset_none__ = __webpack_require__(107), __WEBPACK_IMPORTED_MODULE_3__order_none__ = __webpack_require__(108); + var __WEBPACK_IMPORTED_MODULE_0__array__ = __webpack_require__(373), __WEBPACK_IMPORTED_MODULE_1__constant__ = __webpack_require__(71), __WEBPACK_IMPORTED_MODULE_2__offset_none__ = __webpack_require__(107), __WEBPACK_IMPORTED_MODULE_3__order_none__ = __webpack_require__(108); __webpack_exports__.a = function() { function stack(data) { var i, oz, kz = keys.apply(this, arguments), m = data.length, n = kz.length, sz = new Array(n); @@ -36491,10 +36733,10 @@ var _publicBundleJs = []byte(`!function(modules) { }; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - __webpack_require__(234); + __webpack_require__(239); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - __webpack_require__(108), __webpack_require__(234); + __webpack_require__(108), __webpack_require__(239); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__(108); @@ -36517,47 +36759,13 @@ var _publicBundleJs = []byte(`!function(modules) { } return !!isSameTag && (stack || (stack = new Stack()), equalObjects(object, other, bitmask, customizer, equalFunc, stack)); } - var Stack = __webpack_require__(381), equalArrays = __webpack_require__(383), equalByTag = __webpack_require__(919), equalObjects = __webpack_require__(923), getTag = __webpack_require__(937), isArray = __webpack_require__(16), isBuffer = __webpack_require__(388), isTypedArray = __webpack_require__(389), COMPARE_PARTIAL_FLAG = 1, argsTag = "[object Arguments]", arrayTag = "[object Array]", objectTag = "[object Object]", objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; + var Stack = __webpack_require__(384), equalArrays = __webpack_require__(385), equalByTag = __webpack_require__(924), equalObjects = __webpack_require__(928), getTag = __webpack_require__(942), isArray = __webpack_require__(16), isBuffer = __webpack_require__(390), isTypedArray = __webpack_require__(391), COMPARE_PARTIAL_FLAG = 1, argsTag = "[object Arguments]", arrayTag = "[object Array]", objectTag = "[object Object]", objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; module.exports = baseIsEqualDeep; -}, function(module, exports) { - function listCacheClear() { - this.__data__ = [], this.size = 0; - } - module.exports = listCacheClear; -}, function(module, exports, __webpack_require__) { - function listCacheDelete(key) { - var data = this.__data__, index = assocIndexOf(data, key); - return !(index < 0) && (index == data.length - 1 ? data.pop() : splice.call(data, index, 1), - --this.size, !0); - } - var assocIndexOf = __webpack_require__(158), arrayProto = Array.prototype, splice = arrayProto.splice; - module.exports = listCacheDelete; -}, function(module, exports, __webpack_require__) { - function listCacheGet(key) { - var data = this.__data__, index = assocIndexOf(data, key); - return index < 0 ? void 0 : data[index][1]; - } - var assocIndexOf = __webpack_require__(158); - module.exports = listCacheGet; -}, function(module, exports, __webpack_require__) { - function listCacheHas(key) { - return assocIndexOf(this.__data__, key) > -1; - } - var assocIndexOf = __webpack_require__(158); - module.exports = listCacheHas; -}, function(module, exports, __webpack_require__) { - function listCacheSet(key, value) { - var data = this.__data__, index = assocIndexOf(data, key); - return index < 0 ? (++this.size, data.push([ key, value ])) : data[index][1] = value, - this; - } - var assocIndexOf = __webpack_require__(158); - module.exports = listCacheSet; }, function(module, exports, __webpack_require__) { function stackClear() { this.__data__ = new ListCache(), this.size = 0; } - var ListCache = __webpack_require__(157); + var ListCache = __webpack_require__(154); module.exports = stackClear; }, function(module, exports) { function stackDelete(key) { @@ -36586,122 +36794,8 @@ var _publicBundleJs = []byte(`!function(modules) { } return data.set(key, value), this.size = data.size, this; } - var ListCache = __webpack_require__(157), Map = __webpack_require__(237), MapCache = __webpack_require__(238), LARGE_ARRAY_SIZE = 200; + var ListCache = __webpack_require__(154), Map = __webpack_require__(231), MapCache = __webpack_require__(229), LARGE_ARRAY_SIZE = 200; module.exports = stackSet; -}, function(module, exports, __webpack_require__) { - function baseIsNative(value) { - return !(!isObject(value) || isMasked(value)) && (isFunction(value) ? reIsNative : reIsHostCtor).test(toSource(value)); - } - var isFunction = __webpack_require__(11), isMasked = __webpack_require__(901), isObject = __webpack_require__(47), toSource = __webpack_require__(382), reRegExpChar = /[\\^$.*+?()[\]{}|]/g, reIsHostCtor = /^\[object .+?Constructor\]$/, funcProto = Function.prototype, objectProto = Object.prototype, funcToString = funcProto.toString, hasOwnProperty = objectProto.hasOwnProperty, reIsNative = RegExp("^" + funcToString.call(hasOwnProperty).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"); - module.exports = baseIsNative; -}, function(module, exports, __webpack_require__) { - function isMasked(func) { - return !!maskSrcKey && maskSrcKey in func; - } - var coreJsData = __webpack_require__(902), maskSrcKey = function() { - var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || ""); - return uid ? "Symbol(src)_1." + uid : ""; - }(); - module.exports = isMasked; -}, function(module, exports, __webpack_require__) { - var root = __webpack_require__(46), coreJsData = root["__core-js_shared__"]; - module.exports = coreJsData; -}, function(module, exports) { - function getValue(object, key) { - return null == object ? void 0 : object[key]; - } - module.exports = getValue; -}, function(module, exports, __webpack_require__) { - function mapCacheClear() { - this.size = 0, this.__data__ = { - hash: new Hash(), - map: new (Map || ListCache)(), - string: new Hash() - }; - } - var Hash = __webpack_require__(905), ListCache = __webpack_require__(157), Map = __webpack_require__(237); - module.exports = mapCacheClear; -}, function(module, exports, __webpack_require__) { - function Hash(entries) { - var index = -1, length = null == entries ? 0 : entries.length; - for (this.clear(); ++index < length; ) { - var entry = entries[index]; - this.set(entry[0], entry[1]); - } - } - var hashClear = __webpack_require__(906), hashDelete = __webpack_require__(907), hashGet = __webpack_require__(908), hashHas = __webpack_require__(909), hashSet = __webpack_require__(910); - Hash.prototype.clear = hashClear, Hash.prototype.delete = hashDelete, Hash.prototype.get = hashGet, - Hash.prototype.has = hashHas, Hash.prototype.set = hashSet, module.exports = Hash; -}, function(module, exports, __webpack_require__) { - function hashClear() { - this.__data__ = nativeCreate ? nativeCreate(null) : {}, this.size = 0; - } - var nativeCreate = __webpack_require__(159); - module.exports = hashClear; -}, function(module, exports) { - function hashDelete(key) { - var result = this.has(key) && delete this.__data__[key]; - return this.size -= result ? 1 : 0, result; - } - module.exports = hashDelete; -}, function(module, exports, __webpack_require__) { - function hashGet(key) { - var data = this.__data__; - if (nativeCreate) { - var result = data[key]; - return result === HASH_UNDEFINED ? void 0 : result; - } - return hasOwnProperty.call(data, key) ? data[key] : void 0; - } - var nativeCreate = __webpack_require__(159), HASH_UNDEFINED = "__lodash_hash_undefined__", objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; - module.exports = hashGet; -}, function(module, exports, __webpack_require__) { - function hashHas(key) { - var data = this.__data__; - return nativeCreate ? void 0 !== data[key] : hasOwnProperty.call(data, key); - } - var nativeCreate = __webpack_require__(159), objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; - module.exports = hashHas; -}, function(module, exports, __webpack_require__) { - function hashSet(key, value) { - var data = this.__data__; - return this.size += this.has(key) ? 0 : 1, data[key] = nativeCreate && void 0 === value ? HASH_UNDEFINED : value, - this; - } - var nativeCreate = __webpack_require__(159), HASH_UNDEFINED = "__lodash_hash_undefined__"; - module.exports = hashSet; -}, function(module, exports, __webpack_require__) { - function mapCacheDelete(key) { - var result = getMapData(this, key).delete(key); - return this.size -= result ? 1 : 0, result; - } - var getMapData = __webpack_require__(160); - module.exports = mapCacheDelete; -}, function(module, exports) { - function isKeyable(value) { - var type = typeof value; - return "string" == type || "number" == type || "symbol" == type || "boolean" == type ? "__proto__" !== value : null === value; - } - module.exports = isKeyable; -}, function(module, exports, __webpack_require__) { - function mapCacheGet(key) { - return getMapData(this, key).get(key); - } - var getMapData = __webpack_require__(160); - module.exports = mapCacheGet; -}, function(module, exports, __webpack_require__) { - function mapCacheHas(key) { - return getMapData(this, key).has(key); - } - var getMapData = __webpack_require__(160); - module.exports = mapCacheHas; -}, function(module, exports, __webpack_require__) { - function mapCacheSet(key, value) { - var data = getMapData(this, key), size = data.size; - return data.set(key, value), this.size += data.size == size ? 0 : 1, this; - } - var getMapData = __webpack_require__(160); - module.exports = mapCacheSet; }, function(module, exports) { function setCacheAdd(value) { return this.__data__.set(value, HASH_UNDEFINED), this; @@ -36758,7 +36852,7 @@ var _publicBundleJs = []byte(`!function(modules) { } return !1; } - var Symbol = __webpack_require__(104), Uint8Array = __webpack_require__(920), eq = __webpack_require__(236), equalArrays = __webpack_require__(383), mapToArray = __webpack_require__(921), setToArray = __webpack_require__(922), COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2, boolTag = "[object Boolean]", dateTag = "[object Date]", errorTag = "[object Error]", mapTag = "[object Map]", numberTag = "[object Number]", regexpTag = "[object RegExp]", setTag = "[object Set]", stringTag = "[object String]", symbolTag = "[object Symbol]", arrayBufferTag = "[object ArrayBuffer]", dataViewTag = "[object DataView]", symbolProto = Symbol ? Symbol.prototype : void 0, symbolValueOf = symbolProto ? symbolProto.valueOf : void 0; + var Symbol = __webpack_require__(104), Uint8Array = __webpack_require__(925), eq = __webpack_require__(230), equalArrays = __webpack_require__(385), mapToArray = __webpack_require__(926), setToArray = __webpack_require__(927), COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2, boolTag = "[object Boolean]", dateTag = "[object Date]", errorTag = "[object Error]", mapTag = "[object Map]", numberTag = "[object Number]", regexpTag = "[object RegExp]", setTag = "[object Set]", stringTag = "[object String]", symbolTag = "[object Symbol]", arrayBufferTag = "[object ArrayBuffer]", dataViewTag = "[object DataView]", symbolProto = Symbol ? Symbol.prototype : void 0, symbolValueOf = symbolProto ? symbolProto.valueOf : void 0; module.exports = equalByTag; }, function(module, exports, __webpack_require__) { var root = __webpack_require__(46), Uint8Array = root.Uint8Array; @@ -36807,23 +36901,23 @@ var _publicBundleJs = []byte(`!function(modules) { } return stack.delete(object), stack.delete(other), result; } - var getAllKeys = __webpack_require__(924), COMPARE_PARTIAL_FLAG = 1, objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; + var getAllKeys = __webpack_require__(929), COMPARE_PARTIAL_FLAG = 1, objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; module.exports = equalObjects; }, function(module, exports, __webpack_require__) { function getAllKeys(object) { return baseGetAllKeys(object, keys, getSymbols); } - var baseGetAllKeys = __webpack_require__(925), getSymbols = __webpack_require__(926), keys = __webpack_require__(239); + var baseGetAllKeys = __webpack_require__(930), getSymbols = __webpack_require__(931), keys = __webpack_require__(241); module.exports = getAllKeys; }, function(module, exports, __webpack_require__) { function baseGetAllKeys(object, keysFunc, symbolsFunc) { var result = keysFunc(object); return isArray(object) ? result : arrayPush(result, symbolsFunc(object)); } - var arrayPush = __webpack_require__(386), isArray = __webpack_require__(16); + var arrayPush = __webpack_require__(388), isArray = __webpack_require__(16); module.exports = baseGetAllKeys; }, function(module, exports, __webpack_require__) { - var arrayFilter = __webpack_require__(387), stubArray = __webpack_require__(927), objectProto = Object.prototype, propertyIsEnumerable = objectProto.propertyIsEnumerable, nativeGetSymbols = Object.getOwnPropertySymbols, getSymbols = nativeGetSymbols ? function(object) { + var arrayFilter = __webpack_require__(389), stubArray = __webpack_require__(932), objectProto = Object.prototype, propertyIsEnumerable = objectProto.propertyIsEnumerable, nativeGetSymbols = Object.getOwnPropertySymbols, getSymbols = nativeGetSymbols ? function(object) { return null == object ? [] : (object = Object(object), arrayFilter(nativeGetSymbols(object), function(symbol) { return propertyIsEnumerable.call(object, symbol); })); @@ -36840,7 +36934,7 @@ var _publicBundleJs = []byte(`!function(modules) { for (var key in value) !inherited && !hasOwnProperty.call(value, key) || skipIndexes && ("length" == key || isBuff && ("offset" == key || "parent" == key) || isType && ("buffer" == key || "byteLength" == key || "byteOffset" == key) || isIndex(key, length)) || result.push(key); return result; } - var baseTimes = __webpack_require__(929), isArguments = __webpack_require__(240), isArray = __webpack_require__(16), isBuffer = __webpack_require__(388), isIndex = __webpack_require__(241), isTypedArray = __webpack_require__(389), objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; + var baseTimes = __webpack_require__(934), isArguments = __webpack_require__(242), isArray = __webpack_require__(16), isBuffer = __webpack_require__(390), isIndex = __webpack_require__(243), isTypedArray = __webpack_require__(391), objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; module.exports = arrayLikeKeys; }, function(module, exports) { function baseTimes(n, iteratee) { @@ -36852,7 +36946,7 @@ var _publicBundleJs = []byte(`!function(modules) { function baseIsArguments(value) { return isObjectLike(value) && baseGetTag(value) == argsTag; } - var baseGetTag = __webpack_require__(59), isObjectLike = __webpack_require__(51), argsTag = "[object Arguments]"; + var baseGetTag = __webpack_require__(59), isObjectLike = __webpack_require__(52), argsTag = "[object Arguments]"; module.exports = baseIsArguments; }, function(module, exports) { function stubFalse() { @@ -36863,7 +36957,7 @@ var _publicBundleJs = []byte(`!function(modules) { function baseIsTypedArray(value) { return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[baseGetTag(value)]; } - var baseGetTag = __webpack_require__(59), isLength = __webpack_require__(242), isObjectLike = __webpack_require__(51), typedArrayTags = {}; + var baseGetTag = __webpack_require__(59), isLength = __webpack_require__(244), isObjectLike = __webpack_require__(52), typedArrayTags = {}; typedArrayTags["[object Float32Array]"] = typedArrayTags["[object Float64Array]"] = typedArrayTags["[object Int8Array]"] = typedArrayTags["[object Int16Array]"] = typedArrayTags["[object Int32Array]"] = typedArrayTags["[object Uint8Array]"] = typedArrayTags["[object Uint8ClampedArray]"] = typedArrayTags["[object Uint16Array]"] = typedArrayTags["[object Uint32Array]"] = !0, typedArrayTags["[object Arguments]"] = typedArrayTags["[object Array]"] = typedArrayTags["[object ArrayBuffer]"] = typedArrayTags["[object Boolean]"] = typedArrayTags["[object DataView]"] = typedArrayTags["[object Date]"] = typedArrayTags["[object Error]"] = typedArrayTags["[object Function]"] = typedArrayTags["[object Map]"] = typedArrayTags["[object Number]"] = typedArrayTags["[object Object]"] = typedArrayTags["[object RegExp]"] = typedArrayTags["[object Set]"] = typedArrayTags["[object String]"] = typedArrayTags["[object WeakMap]"] = !1, module.exports = baseIsTypedArray; @@ -36875,7 +36969,7 @@ var _publicBundleJs = []byte(`!function(modules) { } catch (e) {} }(); module.exports = nodeUtil; - }).call(exports, __webpack_require__(195)(module)); + }).call(exports, __webpack_require__(197)(module)); }, function(module, exports, __webpack_require__) { function baseKeys(object) { if (!isPrototype(object)) return nativeKeys(object); @@ -36883,7 +36977,7 @@ var _publicBundleJs = []byte(`!function(modules) { for (var key in Object(object)) hasOwnProperty.call(object, key) && "constructor" != key && result.push(key); return result; } - var isPrototype = __webpack_require__(935), nativeKeys = __webpack_require__(936), objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; + var isPrototype = __webpack_require__(940), nativeKeys = __webpack_require__(941), objectProto = Object.prototype, hasOwnProperty = objectProto.hasOwnProperty; module.exports = baseKeys; }, function(module, exports) { function isPrototype(value) { @@ -36893,10 +36987,10 @@ var _publicBundleJs = []byte(`!function(modules) { var objectProto = Object.prototype; module.exports = isPrototype; }, function(module, exports, __webpack_require__) { - var overArg = __webpack_require__(390), nativeKeys = overArg(Object.keys, Object); + var overArg = __webpack_require__(392), nativeKeys = overArg(Object.keys, Object); module.exports = nativeKeys; }, function(module, exports, __webpack_require__) { - var DataView = __webpack_require__(938), Map = __webpack_require__(237), Promise = __webpack_require__(939), Set = __webpack_require__(940), WeakMap = __webpack_require__(941), baseGetTag = __webpack_require__(59), toSource = __webpack_require__(382), dataViewCtorString = toSource(DataView), mapCtorString = toSource(Map), promiseCtorString = toSource(Promise), setCtorString = toSource(Set), weakMapCtorString = toSource(WeakMap), getTag = baseGetTag; + var DataView = __webpack_require__(943), Map = __webpack_require__(231), Promise = __webpack_require__(944), Set = __webpack_require__(945), WeakMap = __webpack_require__(946), baseGetTag = __webpack_require__(59), toSource = __webpack_require__(368), dataViewCtorString = toSource(DataView), mapCtorString = toSource(Map), promiseCtorString = toSource(Promise), setCtorString = toSource(Set), weakMapCtorString = toSource(WeakMap), getTag = baseGetTag; (DataView && "[object DataView]" != getTag(new DataView(new ArrayBuffer(1))) || Map && "[object Map]" != getTag(new Map()) || Promise && "[object Promise]" != getTag(Promise.resolve()) || Set && "[object Set]" != getTag(new Set()) || WeakMap && "[object WeakMap]" != getTag(new WeakMap())) && (getTag = function(value) { var result = baseGetTag(value), Ctor = "[object Object]" == result ? value.constructor : void 0, ctorString = Ctor ? toSource(Ctor) : ""; if (ctorString) switch (ctorString) { @@ -36918,16 +37012,16 @@ var _publicBundleJs = []byte(`!function(modules) { return result; }), module.exports = getTag; }, function(module, exports, __webpack_require__) { - var getNative = __webpack_require__(71), root = __webpack_require__(46), DataView = getNative(root, "DataView"); + var getNative = __webpack_require__(70), root = __webpack_require__(46), DataView = getNative(root, "DataView"); module.exports = DataView; }, function(module, exports, __webpack_require__) { - var getNative = __webpack_require__(71), root = __webpack_require__(46), Promise = getNative(root, "Promise"); + var getNative = __webpack_require__(70), root = __webpack_require__(46), Promise = getNative(root, "Promise"); module.exports = Promise; }, function(module, exports, __webpack_require__) { - var getNative = __webpack_require__(71), root = __webpack_require__(46), Set = getNative(root, "Set"); + var getNative = __webpack_require__(70), root = __webpack_require__(46), Set = getNative(root, "Set"); module.exports = Set; }, function(module, exports, __webpack_require__) { - var getNative = __webpack_require__(71), root = __webpack_require__(46), WeakMap = getNative(root, "WeakMap"); + var getNative = __webpack_require__(70), root = __webpack_require__(46), WeakMap = getNative(root, "WeakMap"); module.exports = WeakMap; }, function(module, exports, __webpack_require__) { "use strict"; @@ -36974,7 +37068,7 @@ var _publicBundleJs = []byte(`!function(modules) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; exports.default = createAnimateManager; - var _setRafTimeout = __webpack_require__(943), _setRafTimeout2 = function(obj) { + var _setRafTimeout = __webpack_require__(948), _setRafTimeout2 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -36991,7 +37085,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.default = setRafTimeout; - var _raf = __webpack_require__(391), _raf2 = function(obj) { + var _raf = __webpack_require__(393), _raf2 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -37049,17 +37143,17 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.shallowEqual = void 0; - var _isPlainObject2 = __webpack_require__(392), _isPlainObject3 = _interopRequireDefault(_isPlainObject2), _isEqual2 = __webpack_require__(52), _isEqual3 = _interopRequireDefault(_isEqual2), _isArray2 = __webpack_require__(16), _isArray3 = _interopRequireDefault(_isArray2), _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj) { + var _isPlainObject2 = __webpack_require__(394), _isPlainObject3 = _interopRequireDefault(_isPlainObject2), _isEqual2 = __webpack_require__(49), _isEqual3 = _interopRequireDefault(_isEqual2), _isArray2 = __webpack_require__(16), _isArray3 = _interopRequireDefault(_isArray2), _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj) { return typeof obj; } : function(obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; exports.shallowEqual = shallowEqual, exports.default = pureRenderDecorator; }, function(module, exports, __webpack_require__) { - var overArg = __webpack_require__(390), getPrototype = overArg(Object.getPrototypeOf, Object); + var overArg = __webpack_require__(392), getPrototype = overArg(Object.getPrototypeOf, Object); module.exports = getPrototype; }, function(module, exports, __webpack_require__) { - var arrayMap = __webpack_require__(162), baseIntersection = __webpack_require__(948), baseRest = __webpack_require__(394), castArrayLikeObject = __webpack_require__(962), intersection = baseRest(function(arrays) { + var arrayMap = __webpack_require__(157), baseIntersection = __webpack_require__(953), baseRest = __webpack_require__(396), castArrayLikeObject = __webpack_require__(967), intersection = baseRest(function(arrays) { var mapped = arrayMap(arrays, castArrayLikeObject); return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped) : []; }); @@ -37085,19 +37179,19 @@ var _publicBundleJs = []byte(`!function(modules) { } return result; } - var SetCache = __webpack_require__(384), arrayIncludes = __webpack_require__(949), arrayIncludesWith = __webpack_require__(954), arrayMap = __webpack_require__(162), baseUnary = __webpack_require__(243), cacheHas = __webpack_require__(385), nativeMin = Math.min; + var SetCache = __webpack_require__(386), arrayIncludes = __webpack_require__(954), arrayIncludesWith = __webpack_require__(959), arrayMap = __webpack_require__(157), baseUnary = __webpack_require__(245), cacheHas = __webpack_require__(387), nativeMin = Math.min; module.exports = baseIntersection; }, function(module, exports, __webpack_require__) { function arrayIncludes(array, value) { return !!(null == array ? 0 : array.length) && baseIndexOf(array, value, 0) > -1; } - var baseIndexOf = __webpack_require__(950); + var baseIndexOf = __webpack_require__(955); module.exports = arrayIncludes; }, function(module, exports, __webpack_require__) { function baseIndexOf(array, value, fromIndex) { return value === value ? strictIndexOf(array, value, fromIndex) : baseFindIndex(array, baseIsNaN, fromIndex); } - var baseFindIndex = __webpack_require__(951), baseIsNaN = __webpack_require__(952), strictIndexOf = __webpack_require__(953); + var baseFindIndex = __webpack_require__(956), baseIsNaN = __webpack_require__(957), strictIndexOf = __webpack_require__(958); module.exports = baseIndexOf; }, function(module, exports) { function baseFindIndex(array, predicate, fromIndex, fromRight) { @@ -37131,7 +37225,7 @@ var _publicBundleJs = []byte(`!function(modules) { return otherArgs[start] = transform(array), apply(func, this, otherArgs); }; } - var apply = __webpack_require__(956), nativeMax = Math.max; + var apply = __webpack_require__(961), nativeMax = Math.max; module.exports = overRest; }, function(module, exports) { function apply(func, thisArg, args) { @@ -37152,10 +37246,10 @@ var _publicBundleJs = []byte(`!function(modules) { } module.exports = apply; }, function(module, exports, __webpack_require__) { - var baseSetToString = __webpack_require__(958), shortOut = __webpack_require__(961), setToString = shortOut(baseSetToString); + var baseSetToString = __webpack_require__(963), shortOut = __webpack_require__(966), setToString = shortOut(baseSetToString); module.exports = setToString; }, function(module, exports, __webpack_require__) { - var constant = __webpack_require__(959), defineProperty = __webpack_require__(960), identity = __webpack_require__(82), baseSetToString = defineProperty ? function(func, string) { + var constant = __webpack_require__(964), defineProperty = __webpack_require__(965), identity = __webpack_require__(83), baseSetToString = defineProperty ? function(func, string) { return defineProperty(func, "toString", { configurable: !0, enumerable: !1, @@ -37172,7 +37266,7 @@ var _publicBundleJs = []byte(`!function(modules) { } module.exports = constant; }, function(module, exports, __webpack_require__) { - var getNative = __webpack_require__(71), defineProperty = function() { + var getNative = __webpack_require__(70), defineProperty = function() { try { var func = getNative(Object, "defineProperty"); return func({}, "", {}), func; @@ -37196,13 +37290,13 @@ var _publicBundleJs = []byte(`!function(modules) { function castArrayLikeObject(value) { return isArrayLikeObject(value) ? value : []; } - var isArrayLikeObject = __webpack_require__(963); + var isArrayLikeObject = __webpack_require__(968); module.exports = castArrayLikeObject; }, function(module, exports, __webpack_require__) { function isArrayLikeObject(value) { return isObjectLike(value) && isArrayLike(value); } - var isArrayLike = __webpack_require__(109), isObjectLike = __webpack_require__(51); + var isArrayLike = __webpack_require__(109), isObjectLike = __webpack_require__(52); module.exports = isArrayLikeObject; }, function(module, exports, __webpack_require__) { "use strict"; @@ -37229,7 +37323,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _filter2 = __webpack_require__(965), _filter3 = _interopRequireDefault(_filter2), _extends = Object.assign || function(target) { + var _filter2 = __webpack_require__(970), _filter3 = _interopRequireDefault(_filter2), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -37257,7 +37351,7 @@ var _publicBundleJs = []byte(`!function(modules) { if (Symbol.iterator in Object(arr)) return sliceIterator(arr, i); throw new TypeError("Invalid attempt to destructure non-iterable instance"); }; - }(), _raf = __webpack_require__(391), _raf2 = _interopRequireDefault(_raf), _util = __webpack_require__(161), alpha = function(begin, end, k) { + }(), _raf = __webpack_require__(393), _raf2 = _interopRequireDefault(_raf), _util = __webpack_require__(165), alpha = function(begin, end, k) { return begin + (end - begin) * k; }, needContinue = function(_ref) { return _ref.from !== _ref.to; @@ -37323,7 +37417,7 @@ var _publicBundleJs = []byte(`!function(modules) { function filter(collection, predicate) { return (isArray(collection) ? arrayFilter : baseFilter)(collection, baseIteratee(predicate, 3)); } - var arrayFilter = __webpack_require__(387), baseFilter = __webpack_require__(966), baseIteratee = __webpack_require__(110), isArray = __webpack_require__(16); + var arrayFilter = __webpack_require__(389), baseFilter = __webpack_require__(971), baseIteratee = __webpack_require__(110), isArray = __webpack_require__(16); module.exports = filter; }, function(module, exports, __webpack_require__) { function baseFilter(collection, predicate) { @@ -37332,16 +37426,16 @@ var _publicBundleJs = []byte(`!function(modules) { predicate(value, index, collection) && result.push(value); }), result; } - var baseEach = __webpack_require__(395); + var baseEach = __webpack_require__(397); module.exports = baseFilter; }, function(module, exports, __webpack_require__) { function baseForOwn(object, iteratee) { return object && baseFor(object, iteratee, keys); } - var baseFor = __webpack_require__(968), keys = __webpack_require__(239); + var baseFor = __webpack_require__(973), keys = __webpack_require__(241); module.exports = baseForOwn; }, function(module, exports, __webpack_require__) { - var createBaseFor = __webpack_require__(969), baseFor = createBaseFor(); + var createBaseFor = __webpack_require__(974), baseFor = createBaseFor(); module.exports = baseFor; }, function(module, exports) { function createBaseFor(fromRight) { @@ -37372,7 +37466,7 @@ var _publicBundleJs = []byte(`!function(modules) { return object === source || baseIsMatch(object, source, matchData); }; } - var baseIsMatch = __webpack_require__(972), getMatchData = __webpack_require__(973), matchesStrictComparable = __webpack_require__(397); + var baseIsMatch = __webpack_require__(977), getMatchData = __webpack_require__(978), matchesStrictComparable = __webpack_require__(399); module.exports = baseMatches; }, function(module, exports, __webpack_require__) { function baseIsMatch(object, source, matchData, customizer) { @@ -37395,7 +37489,7 @@ var _publicBundleJs = []byte(`!function(modules) { } return !0; } - var Stack = __webpack_require__(381), baseIsEqual = __webpack_require__(235), COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2; + var Stack = __webpack_require__(384), baseIsEqual = __webpack_require__(240), COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2; module.exports = baseIsMatch; }, function(module, exports, __webpack_require__) { function getMatchData(object) { @@ -37405,7 +37499,7 @@ var _publicBundleJs = []byte(`!function(modules) { } return result; } - var isStrictComparable = __webpack_require__(396), keys = __webpack_require__(239); + var isStrictComparable = __webpack_require__(398), keys = __webpack_require__(241); module.exports = getMatchData; }, function(module, exports, __webpack_require__) { function baseMatchesProperty(path, srcValue) { @@ -37414,54 +37508,8 @@ var _publicBundleJs = []byte(`!function(modules) { return void 0 === objValue && objValue === srcValue ? hasIn(object, path) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG); }; } - var baseIsEqual = __webpack_require__(235), get = __webpack_require__(244), hasIn = __webpack_require__(980), isKey = __webpack_require__(245), isStrictComparable = __webpack_require__(396), matchesStrictComparable = __webpack_require__(397), toKey = __webpack_require__(163), COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2; + var baseIsEqual = __webpack_require__(240), get = __webpack_require__(152), hasIn = __webpack_require__(980), isKey = __webpack_require__(228), isStrictComparable = __webpack_require__(398), matchesStrictComparable = __webpack_require__(399), toKey = __webpack_require__(158), COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2; module.exports = baseMatchesProperty; -}, function(module, exports, __webpack_require__) { - var memoizeCapped = __webpack_require__(976), reLeadingDot = /^\./, rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g, reEscapeChar = /\\(\\)?/g, stringToPath = memoizeCapped(function(string) { - var result = []; - return reLeadingDot.test(string) && result.push(""), string.replace(rePropName, function(match, number, quote, string) { - result.push(quote ? string.replace(reEscapeChar, "$1") : number || match); - }), result; - }); - module.exports = stringToPath; -}, function(module, exports, __webpack_require__) { - function memoizeCapped(func) { - var result = memoize(func, function(key) { - return cache.size === MAX_MEMOIZE_SIZE && cache.clear(), key; - }), cache = result.cache; - return result; - } - var memoize = __webpack_require__(977), MAX_MEMOIZE_SIZE = 500; - module.exports = memoizeCapped; -}, function(module, exports, __webpack_require__) { - function memoize(func, resolver) { - if ("function" != typeof func || null != resolver && "function" != typeof resolver) throw new TypeError(FUNC_ERROR_TEXT); - var memoized = function() { - var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache = memoized.cache; - if (cache.has(key)) return cache.get(key); - var result = func.apply(this, args); - return memoized.cache = cache.set(key, result) || cache, result; - }; - return memoized.cache = new (memoize.Cache || MapCache)(), memoized; - } - var MapCache = __webpack_require__(238), FUNC_ERROR_TEXT = "Expected a function"; - memoize.Cache = MapCache, module.exports = memoize; -}, function(module, exports, __webpack_require__) { - function toString(value) { - return null == value ? "" : baseToString(value); - } - var baseToString = __webpack_require__(979); - module.exports = toString; -}, function(module, exports, __webpack_require__) { - function baseToString(value) { - if ("string" == typeof value) return value; - if (isArray(value)) return arrayMap(value, baseToString) + ""; - if (isSymbol(value)) return symbolToString ? symbolToString.call(value) : ""; - var result = value + ""; - return "0" == result && 1 / value == -INFINITY ? "-0" : result; - } - var Symbol = __webpack_require__(104), arrayMap = __webpack_require__(162), isArray = __webpack_require__(16), isSymbol = __webpack_require__(83), INFINITY = 1 / 0, symbolProto = Symbol ? Symbol.prototype : void 0, symbolToString = symbolProto ? symbolProto.toString : void 0; - module.exports = baseToString; }, function(module, exports, __webpack_require__) { function hasIn(object, path) { return null != object && hasPath(object, path, baseHasIn); @@ -37483,13 +37531,13 @@ var _publicBundleJs = []byte(`!function(modules) { } return result || ++index != length ? result : !!(length = null == object ? 0 : object.length) && isLength(length) && isIndex(key, length) && (isArray(object) || isArguments(object)); } - var castPath = __webpack_require__(399), isArguments = __webpack_require__(240), isArray = __webpack_require__(16), isIndex = __webpack_require__(241), isLength = __webpack_require__(242), toKey = __webpack_require__(163); + var castPath = __webpack_require__(367), isArguments = __webpack_require__(242), isArray = __webpack_require__(16), isIndex = __webpack_require__(243), isLength = __webpack_require__(244), toKey = __webpack_require__(158); module.exports = hasPath; }, function(module, exports, __webpack_require__) { function property(path) { return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path); } - var baseProperty = __webpack_require__(984), basePropertyDeep = __webpack_require__(985), isKey = __webpack_require__(245), toKey = __webpack_require__(163); + var baseProperty = __webpack_require__(984), basePropertyDeep = __webpack_require__(985), isKey = __webpack_require__(228), toKey = __webpack_require__(158); module.exports = property; }, function(module, exports) { function baseProperty(key) { @@ -37504,7 +37552,7 @@ var _publicBundleJs = []byte(`!function(modules) { return baseGet(object, path); }; } - var baseGet = __webpack_require__(398); + var baseGet = __webpack_require__(366); module.exports = basePropertyDeep; }, function(module, exports, __webpack_require__) { "use strict"; @@ -37609,7 +37657,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _class, _temp2, _isNumber2 = __webpack_require__(227), _isNumber3 = _interopRequireDefault(_isNumber2), _extends = Object.assign || function(target) { + var _class, _temp2, _isNumber2 = __webpack_require__(232), _isNumber3 = _interopRequireDefault(_isNumber2), _extends = Object.assign || function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]); @@ -37627,7 +37675,7 @@ var _publicBundleJs = []byte(`!function(modules) { return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor; }; - }(), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _Transition = __webpack_require__(149), _Transition2 = _interopRequireDefault(_Transition), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _Animate = __webpack_require__(380), _Animate2 = _interopRequireDefault(_Animate), parseDurationOfSingleTransition = function() { + }(), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _Transition = __webpack_require__(149), _Transition2 = _interopRequireDefault(_Transition), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _Animate = __webpack_require__(383), _Animate2 = _interopRequireDefault(_Animate), parseDurationOfSingleTransition = function() { var options = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, steps = options.steps, duration = options.duration; return steps && steps.length ? steps.reduce(function(result, entry) { return result + ((0, _isNumber3.default)(entry.duration) && entry.duration > 0 ? entry.duration : 0); @@ -37726,7 +37774,7 @@ var _publicBundleJs = []byte(`!function(modules) { Constructor; }; }(), defaultFormatter = function(value) { - return __WEBPACK_IMPORTED_MODULE_0_lodash_isArray___default()(value) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.e)(value[0]) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.e)(value[1]) ? value.join(" ~ ") : value; + return __WEBPACK_IMPORTED_MODULE_0_lodash_isArray___default()(value) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.f)(value[0]) && Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.f)(value[1]) ? value.join(" ~ ") : value; }, DefaultTooltipContent = Object(__WEBPACK_IMPORTED_MODULE_3__util_PureRender__.a)((_temp = _class2 = function(_Component) { function DefaultTooltipContent() { return _classCallCheck(this, DefaultTooltipContent), _possibleConstructorReturn(this, (DefaultTooltipContent.__proto__ || Object.getPrototypeOf(DefaultTooltipContent)).apply(this, arguments)); @@ -37745,7 +37793,7 @@ var _publicBundleJs = []byte(`!function(modules) { paddingTop: 4, paddingBottom: 4, color: entry.color || "#000" - }, itemStyle), hasName = Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.e)(entry.name), finalFormatter = entry.formatter || formatter || defaultFormatter; + }, itemStyle), hasName = Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.f)(entry.name), finalFormatter = entry.formatter || formatter || defaultFormatter; return __WEBPACK_IMPORTED_MODULE_1_react___default.a.createElement("li", { className: "recharts-tooltip-item", key: "tooltip-item-" + i, @@ -37778,7 +37826,7 @@ var _publicBundleJs = []byte(`!function(modules) { whiteSpace: "nowrap" }, wrapperStyle), finalLabelStyle = _extends({ margin: 0 - }, labelStyle), hasLabel = Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.e)(label), finalLabel = hasLabel ? label : ""; + }, labelStyle), hasLabel = Object(__WEBPACK_IMPORTED_MODULE_4__util_DataUtils__.f)(label), finalLabel = hasLabel ? label : ""; return hasLabel && labelFormatter && (finalLabel = labelFormatter(label)), __WEBPACK_IMPORTED_MODULE_1_react___default.a.createElement("div", { className: "recharts-default-tooltip", style: finalStyle @@ -37888,9 +37936,9 @@ var _publicBundleJs = []byte(`!function(modules) { var _state = this.state, containerWidth = _state.containerWidth, containerHeight = _state.containerHeight; if (containerWidth < 0 || containerHeight < 0) return null; var _props = this.props, aspect = _props.aspect, width = _props.width, height = _props.height, minWidth = _props.minWidth, minHeight = _props.minHeight, maxHeight = _props.maxHeight, children = _props.children; - Object(__WEBPACK_IMPORTED_MODULE_6__util_LogUtils__.a)(Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.g)(width) || Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.g)(height), "The width(%s) and height(%s) are both fixed numbers,\n maybe you don't need to use a ResponsiveContainer.", width, height), + Object(__WEBPACK_IMPORTED_MODULE_6__util_LogUtils__.a)(Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.h)(width) || Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.h)(height), "The width(%s) and height(%s) are both fixed numbers,\n maybe you don't need to use a ResponsiveContainer.", width, height), Object(__WEBPACK_IMPORTED_MODULE_6__util_LogUtils__.a)(!aspect || aspect > 0, "The aspect(%s) must be greater than zero.", aspect); - var calculatedWidth = Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.g)(width) ? containerWidth : width, calculatedHeight = Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.g)(height) ? containerHeight : height; + var calculatedWidth = Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.h)(width) ? containerWidth : width, calculatedHeight = Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.h)(height) ? containerHeight : height; return aspect && aspect > 0 && (calculatedHeight = calculatedWidth / aspect, maxHeight && calculatedHeight > maxHeight && (calculatedHeight = maxHeight)), Object(__WEBPACK_IMPORTED_MODULE_6__util_LogUtils__.a)(calculatedWidth > 0 || calculatedHeight > 0, "The width(%s) and height(%s) of chart should be greater than 0,\n please check the style of container, or the props width(%s) and height(%s),\n or add a minWidth(%s) or minHeight(%s) or use aspect(%s) to control the\n height and width.", calculatedWidth, calculatedHeight, width, height, minWidth, minHeight, aspect), __WEBPACK_IMPORTED_MODULE_1_react___default.a.cloneElement(children, { @@ -38683,13 +38731,13 @@ var _publicBundleJs = []byte(`!function(modules) { } return result; } - var arrayPush = __webpack_require__(386), isFlattenable = __webpack_require__(1004); + var arrayPush = __webpack_require__(388), isFlattenable = __webpack_require__(1004); module.exports = baseFlatten; }, function(module, exports, __webpack_require__) { function isFlattenable(value) { return isArray(value) || isArguments(value) || !!(spreadableSymbol && value && value[spreadableSymbol]); } - var Symbol = __webpack_require__(104), isArguments = __webpack_require__(240), isArray = __webpack_require__(16), spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : void 0; + var Symbol = __webpack_require__(104), isArguments = __webpack_require__(242), isArray = __webpack_require__(16), spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : void 0; module.exports = isFlattenable; }, function(module, exports, __webpack_require__) { function baseOrderBy(collection, iteratees, orders) { @@ -38708,7 +38756,7 @@ var _publicBundleJs = []byte(`!function(modules) { return compareMultiple(object, other, orders); }); } - var arrayMap = __webpack_require__(162), baseIteratee = __webpack_require__(110), baseMap = __webpack_require__(1006), baseSortBy = __webpack_require__(1007), baseUnary = __webpack_require__(243), compareMultiple = __webpack_require__(1008), identity = __webpack_require__(82); + var arrayMap = __webpack_require__(157), baseIteratee = __webpack_require__(110), baseMap = __webpack_require__(1006), baseSortBy = __webpack_require__(1007), baseUnary = __webpack_require__(245), compareMultiple = __webpack_require__(1008), identity = __webpack_require__(83); module.exports = baseOrderBy; }, function(module, exports, __webpack_require__) { function baseMap(collection, iteratee) { @@ -38717,7 +38765,7 @@ var _publicBundleJs = []byte(`!function(modules) { result[++index] = iteratee(value, key, collection); }), result; } - var baseEach = __webpack_require__(395), isArrayLike = __webpack_require__(109); + var baseEach = __webpack_require__(397), isArrayLike = __webpack_require__(109); module.exports = baseMap; }, function(module, exports) { function baseSortBy(array, comparer) { @@ -38748,13 +38796,13 @@ var _publicBundleJs = []byte(`!function(modules) { } return 0; } - var isSymbol = __webpack_require__(83); + var isSymbol = __webpack_require__(82); module.exports = compareAscending; }, function(module, exports, __webpack_require__) { function max(array) { return array && array.length ? baseExtremum(array, identity, baseGt) : void 0; } - var baseExtremum = __webpack_require__(164), baseGt = __webpack_require__(404), identity = __webpack_require__(82); + var baseExtremum = __webpack_require__(166), baseGt = __webpack_require__(404), identity = __webpack_require__(83); module.exports = max; }, function(module, exports, __webpack_require__) { "use strict"; @@ -39262,7 +39310,7 @@ var _publicBundleJs = []byte(`!function(modules) { }; }; } - var __WEBPACK_IMPORTED_MODULE_0__number__ = __webpack_require__(165), __WEBPACK_IMPORTED_MODULE_1__parse__ = __webpack_require__(1042); + var __WEBPACK_IMPORTED_MODULE_0__number__ = __webpack_require__(167), __WEBPACK_IMPORTED_MODULE_1__parse__ = __webpack_require__(1042); interpolateTransform(__WEBPACK_IMPORTED_MODULE_1__parse__.a, "px, ", "px)", "deg)"), interpolateTransform(__WEBPACK_IMPORTED_MODULE_1__parse__.b, ", ", ")", ")"); }, function(module, __webpack_exports__, __webpack_require__) { @@ -39458,19 +39506,19 @@ var _publicBundleJs = []byte(`!function(modules) { }; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__exponent__ = __webpack_require__(167); + var __WEBPACK_IMPORTED_MODULE_0__exponent__ = __webpack_require__(169); __webpack_exports__.a = function(step) { return Math.max(0, -Object(__WEBPACK_IMPORTED_MODULE_0__exponent__.a)(Math.abs(step))); }; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__exponent__ = __webpack_require__(167); + var __WEBPACK_IMPORTED_MODULE_0__exponent__ = __webpack_require__(169); __webpack_exports__.a = function(step, value) { return Math.max(0, 3 * Math.max(-8, Math.min(8, Math.floor(Object(__WEBPACK_IMPORTED_MODULE_0__exponent__.a)(value) / 3))) - Object(__WEBPACK_IMPORTED_MODULE_0__exponent__.a)(Math.abs(step))); }; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__exponent__ = __webpack_require__(167); + var __WEBPACK_IMPORTED_MODULE_0__exponent__ = __webpack_require__(169); __webpack_exports__.a = function(step, max) { return step = Math.abs(step), max = Math.abs(max) - step, Math.max(0, Object(__WEBPACK_IMPORTED_MODULE_0__exponent__.a)(max) - Object(__WEBPACK_IMPORTED_MODULE_0__exponent__.a)(step)) + 1; }; @@ -39556,7 +39604,7 @@ var _publicBundleJs = []byte(`!function(modules) { }, scale; } __webpack_exports__.a = log; - var __WEBPACK_IMPORTED_MODULE_0_d3_array__ = __webpack_require__(53), __WEBPACK_IMPORTED_MODULE_1_d3_format__ = __webpack_require__(431), __WEBPACK_IMPORTED_MODULE_2__constant__ = __webpack_require__(254), __WEBPACK_IMPORTED_MODULE_3__nice__ = __webpack_require__(436), __WEBPACK_IMPORTED_MODULE_4__continuous__ = __webpack_require__(166); + var __WEBPACK_IMPORTED_MODULE_0_d3_array__ = __webpack_require__(53), __WEBPACK_IMPORTED_MODULE_1_d3_format__ = __webpack_require__(431), __WEBPACK_IMPORTED_MODULE_2__constant__ = __webpack_require__(254), __WEBPACK_IMPORTED_MODULE_3__nice__ = __webpack_require__(436), __WEBPACK_IMPORTED_MODULE_4__continuous__ = __webpack_require__(168); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; function raise(x, exponent) { @@ -39584,7 +39632,7 @@ var _publicBundleJs = []byte(`!function(modules) { return pow().exponent(.5); } __webpack_exports__.a = pow, __webpack_exports__.b = sqrt; - var __WEBPACK_IMPORTED_MODULE_0__constant__ = __webpack_require__(254), __WEBPACK_IMPORTED_MODULE_1__linear__ = __webpack_require__(113), __WEBPACK_IMPORTED_MODULE_2__continuous__ = __webpack_require__(166); + var __WEBPACK_IMPORTED_MODULE_0__constant__ = __webpack_require__(254), __WEBPACK_IMPORTED_MODULE_1__linear__ = __webpack_require__(113), __WEBPACK_IMPORTED_MODULE_2__continuous__ = __webpack_require__(168); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; function quantile() { @@ -40113,7 +40161,7 @@ var _publicBundleJs = []byte(`!function(modules) { function minBy(array, iteratee) { return array && array.length ? baseExtremum(array, baseIteratee(iteratee, 2), baseLt) : void 0; } - var baseExtremum = __webpack_require__(164), baseIteratee = __webpack_require__(110), baseLt = __webpack_require__(406); + var baseExtremum = __webpack_require__(166), baseIteratee = __webpack_require__(110), baseLt = __webpack_require__(406); module.exports = minBy; }, function(module, exports, __webpack_require__) { function createRange(fromRight) { @@ -40268,7 +40316,7 @@ var _publicBundleJs = []byte(`!function(modules) { key: "render", value: function() { var _props4 = this.props, x = _props4.x, y = _props4.y, width = _props4.width, height = _props4.height, horizontal = _props4.horizontal, vertical = _props4.vertical, horizontalCoordinatesGenerator = _props4.horizontalCoordinatesGenerator, verticalCoordinatesGenerator = _props4.verticalCoordinatesGenerator, xAxis = _props4.xAxis, yAxis = _props4.yAxis, offset = _props4.offset, chartWidth = _props4.chartWidth, chartHeight = _props4.chartHeight; - if (!Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.f)(width) || width <= 0 || !Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.f)(height) || height <= 0 || !Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.f)(x) || x !== +x || !Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.f)(y) || y !== +y) return null; + if (!Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.g)(width) || width <= 0 || !Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.g)(height) || height <= 0 || !Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.g)(x) || x !== +x || !Object(__WEBPACK_IMPORTED_MODULE_5__util_DataUtils__.g)(y) || y !== +y) return null; var _props5 = this.props, horizontalPoints = _props5.horizontalPoints, verticalPoints = _props5.verticalPoints; return horizontalPoints && horizontalPoints.length || !__WEBPACK_IMPORTED_MODULE_0_lodash_isFunction___default()(horizontalCoordinatesGenerator) || (horizontalPoints = horizontalCoordinatesGenerator({ yAxis: yAxis, @@ -40466,7 +40514,7 @@ var _publicBundleJs = []byte(`!function(modules) { }); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__), __WEBPACK_IMPORTED_MODULE_1__generateCategoricalChart__ = __webpack_require__(63), __WEBPACK_IMPORTED_MODULE_2__polar_PolarAngleAxis__ = __webpack_require__(170), __WEBPACK_IMPORTED_MODULE_3__polar_PolarRadiusAxis__ = __webpack_require__(169), __WEBPACK_IMPORTED_MODULE_4__util_PolarUtils__ = __webpack_require__(35), __WEBPACK_IMPORTED_MODULE_5__polar_Pie__ = __webpack_require__(446); + var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__), __WEBPACK_IMPORTED_MODULE_1__generateCategoricalChart__ = __webpack_require__(63), __WEBPACK_IMPORTED_MODULE_2__polar_PolarAngleAxis__ = __webpack_require__(172), __WEBPACK_IMPORTED_MODULE_3__polar_PolarRadiusAxis__ = __webpack_require__(171), __WEBPACK_IMPORTED_MODULE_4__util_PolarUtils__ = __webpack_require__(35), __WEBPACK_IMPORTED_MODULE_5__polar_Pie__ = __webpack_require__(446); __webpack_exports__.a = Object(__WEBPACK_IMPORTED_MODULE_1__generateCategoricalChart__.a)({ chartName: "PieChart", GraphicalChild: __WEBPACK_IMPORTED_MODULE_5__polar_Pie__.a, @@ -40524,7 +40572,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN__ = __webpack_require__(226), __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isNaN__), __WEBPACK_IMPORTED_MODULE_2_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_2_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react__), __WEBPACK_IMPORTED_MODULE_3_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__), __WEBPACK_IMPORTED_MODULE_4_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_4_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react_smooth__), __WEBPACK_IMPORTED_MODULE_5_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_5_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_classnames__), __WEBPACK_IMPORTED_MODULE_6__container_Surface__ = __webpack_require__(103), __WEBPACK_IMPORTED_MODULE_7__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_8__shape_Rectangle__ = __webpack_require__(85), __WEBPACK_IMPORTED_MODULE_9__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_10__component_Tooltip__ = __webpack_require__(156), __WEBPACK_IMPORTED_MODULE_11__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_12__util_ChartUtils__ = __webpack_require__(21), _createClass = function() { + var _class, _class2, _temp2, __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN__ = __webpack_require__(159), __WEBPACK_IMPORTED_MODULE_1_lodash_isNaN___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_isNaN__), __WEBPACK_IMPORTED_MODULE_2_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_2_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react__), __WEBPACK_IMPORTED_MODULE_3_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__), __WEBPACK_IMPORTED_MODULE_4_react_smooth__ = __webpack_require__(48), __WEBPACK_IMPORTED_MODULE_4_react_smooth___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react_smooth__), __WEBPACK_IMPORTED_MODULE_5_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_5_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_classnames__), __WEBPACK_IMPORTED_MODULE_6__container_Surface__ = __webpack_require__(103), __WEBPACK_IMPORTED_MODULE_7__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_8__shape_Rectangle__ = __webpack_require__(85), __WEBPACK_IMPORTED_MODULE_9__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_10__component_Tooltip__ = __webpack_require__(164), __WEBPACK_IMPORTED_MODULE_11__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_12__util_ChartUtils__ = __webpack_require__(21), _createClass = function() { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; @@ -40857,7 +40905,7 @@ var _publicBundleJs = []byte(`!function(modules) { } }), superClass && (Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass); } - var _class, _class2, _temp, __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_1_lodash_sumBy__ = __webpack_require__(1104), __WEBPACK_IMPORTED_MODULE_1_lodash_sumBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_sumBy__), __WEBPACK_IMPORTED_MODULE_2_lodash_min__ = __webpack_require__(405), __WEBPACK_IMPORTED_MODULE_2_lodash_min___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_min__), __WEBPACK_IMPORTED_MODULE_3_lodash_maxBy__ = __webpack_require__(445), __WEBPACK_IMPORTED_MODULE_3_lodash_maxBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_maxBy__), __WEBPACK_IMPORTED_MODULE_4_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_4_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react__), __WEBPACK_IMPORTED_MODULE_5_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_5_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_prop_types__), __WEBPACK_IMPORTED_MODULE_6_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_6_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_classnames__), __WEBPACK_IMPORTED_MODULE_7__container_Surface__ = __webpack_require__(103), __WEBPACK_IMPORTED_MODULE_8__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_9__component_Tooltip__ = __webpack_require__(156), __WEBPACK_IMPORTED_MODULE_10__shape_Rectangle__ = __webpack_require__(85), __WEBPACK_IMPORTED_MODULE_11__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_12__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_13__util_ChartUtils__ = __webpack_require__(21), _createClass = function() { + var _class, _class2, _temp, __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__ = __webpack_require__(11), __WEBPACK_IMPORTED_MODULE_0_lodash_isFunction___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isFunction__), __WEBPACK_IMPORTED_MODULE_1_lodash_sumBy__ = __webpack_require__(1104), __WEBPACK_IMPORTED_MODULE_1_lodash_sumBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_sumBy__), __WEBPACK_IMPORTED_MODULE_2_lodash_min__ = __webpack_require__(405), __WEBPACK_IMPORTED_MODULE_2_lodash_min___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_min__), __WEBPACK_IMPORTED_MODULE_3_lodash_maxBy__ = __webpack_require__(445), __WEBPACK_IMPORTED_MODULE_3_lodash_maxBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_maxBy__), __WEBPACK_IMPORTED_MODULE_4_react__ = __webpack_require__(1), __WEBPACK_IMPORTED_MODULE_4_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react__), __WEBPACK_IMPORTED_MODULE_5_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_5_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_prop_types__), __WEBPACK_IMPORTED_MODULE_6_classnames__ = __webpack_require__(6), __WEBPACK_IMPORTED_MODULE_6_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_classnames__), __WEBPACK_IMPORTED_MODULE_7__container_Surface__ = __webpack_require__(103), __WEBPACK_IMPORTED_MODULE_8__container_Layer__ = __webpack_require__(18), __WEBPACK_IMPORTED_MODULE_9__component_Tooltip__ = __webpack_require__(164), __WEBPACK_IMPORTED_MODULE_10__shape_Rectangle__ = __webpack_require__(85), __WEBPACK_IMPORTED_MODULE_11__util_PureRender__ = __webpack_require__(8), __WEBPACK_IMPORTED_MODULE_12__util_ReactUtils__ = __webpack_require__(7), __WEBPACK_IMPORTED_MODULE_13__util_ChartUtils__ = __webpack_require__(21), _createClass = function() { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; @@ -41052,7 +41100,7 @@ var _publicBundleJs = []byte(`!function(modules) { key: "componentWillReceiveProps", value: function(nextProps) { var _props = this.props, data = _props.data, width = _props.width, height = _props.height, margin = _props.margin, iterations = _props.iterations, nodeWidth = _props.nodeWidth, nodePadding = _props.nodePadding, nameKey = _props.nameKey; - nextProps.data === data && nextProps.width === width && nextProps.height === height && Object(__WEBPACK_IMPORTED_MODULE_11__util_PureRender__.b)(nextProps.margin, margin) && nextProps.iterations === iterations && nextProps.nodeWidth === nodeWidth && nextProps.nodePadding === nodePadding && nextProps.nameKey === nameKey || this.setState(this.createDefaultState(this.props)); + nextProps.data === data && nextProps.width === width && nextProps.height === height && Object(__WEBPACK_IMPORTED_MODULE_11__util_PureRender__.b)(nextProps.margin, margin) && nextProps.iterations === iterations && nextProps.nodeWidth === nodeWidth && nextProps.nodePadding === nodePadding && nextProps.nameKey === nameKey || this.setState(this.createDefaultState(nextProps)); } }, { key: "createDefaultState", @@ -41274,7 +41322,7 @@ var _publicBundleJs = []byte(`!function(modules) { module.exports = baseSum; }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__), __WEBPACK_IMPORTED_MODULE_1__generateCategoricalChart__ = __webpack_require__(63), __WEBPACK_IMPORTED_MODULE_2__polar_Radar__ = __webpack_require__(447), __WEBPACK_IMPORTED_MODULE_3__polar_PolarAngleAxis__ = __webpack_require__(170), __WEBPACK_IMPORTED_MODULE_4__polar_PolarRadiusAxis__ = __webpack_require__(169), __WEBPACK_IMPORTED_MODULE_5__util_PolarUtils__ = __webpack_require__(35); + var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__), __WEBPACK_IMPORTED_MODULE_1__generateCategoricalChart__ = __webpack_require__(63), __WEBPACK_IMPORTED_MODULE_2__polar_Radar__ = __webpack_require__(447), __WEBPACK_IMPORTED_MODULE_3__polar_PolarAngleAxis__ = __webpack_require__(172), __WEBPACK_IMPORTED_MODULE_4__polar_PolarRadiusAxis__ = __webpack_require__(171), __WEBPACK_IMPORTED_MODULE_5__util_PolarUtils__ = __webpack_require__(35); __webpack_exports__.a = Object(__WEBPACK_IMPORTED_MODULE_1__generateCategoricalChart__.a)({ chartName: "RadarChart", GraphicalChild: __WEBPACK_IMPORTED_MODULE_2__polar_Radar__.a, @@ -41288,8 +41336,8 @@ var _publicBundleJs = []byte(`!function(modules) { formatAxisMap: __WEBPACK_IMPORTED_MODULE_5__util_PolarUtils__.b, defaultProps: { layout: "centric", - startAngle: 360, - endAngle: 0, + startAngle: 90, + endAngle: -270, cx: "50%", cy: "50%", innerRadius: 0, @@ -41307,7 +41355,7 @@ var _publicBundleJs = []byte(`!function(modules) { }); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__generateCategoricalChart__ = __webpack_require__(63), __WEBPACK_IMPORTED_MODULE_1__cartesian_Scatter__ = __webpack_require__(262), __WEBPACK_IMPORTED_MODULE_2__cartesian_XAxis__ = __webpack_require__(87), __WEBPACK_IMPORTED_MODULE_3__cartesian_YAxis__ = __webpack_require__(88), __WEBPACK_IMPORTED_MODULE_4__cartesian_ZAxis__ = __webpack_require__(171), __WEBPACK_IMPORTED_MODULE_5__util_CartesianUtils__ = __webpack_require__(118); + var __WEBPACK_IMPORTED_MODULE_0__generateCategoricalChart__ = __webpack_require__(63), __WEBPACK_IMPORTED_MODULE_1__cartesian_Scatter__ = __webpack_require__(262), __WEBPACK_IMPORTED_MODULE_2__cartesian_XAxis__ = __webpack_require__(87), __WEBPACK_IMPORTED_MODULE_3__cartesian_YAxis__ = __webpack_require__(88), __WEBPACK_IMPORTED_MODULE_4__cartesian_ZAxis__ = __webpack_require__(173), __WEBPACK_IMPORTED_MODULE_5__util_CartesianUtils__ = __webpack_require__(118); __webpack_exports__.a = Object(__WEBPACK_IMPORTED_MODULE_0__generateCategoricalChart__.a)({ chartName: "ScatterChart", GraphicalChild: __WEBPACK_IMPORTED_MODULE_1__cartesian_Scatter__.a, @@ -41341,7 +41389,7 @@ var _publicBundleJs = []byte(`!function(modules) { }); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__), __WEBPACK_IMPORTED_MODULE_1__generateCategoricalChart__ = __webpack_require__(63), __WEBPACK_IMPORTED_MODULE_2__polar_PolarAngleAxis__ = __webpack_require__(170), __WEBPACK_IMPORTED_MODULE_3__polar_PolarRadiusAxis__ = __webpack_require__(169), __WEBPACK_IMPORTED_MODULE_4__util_PolarUtils__ = __webpack_require__(35), __WEBPACK_IMPORTED_MODULE_5__polar_RadialBar__ = __webpack_require__(448); + var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(2), __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__), __WEBPACK_IMPORTED_MODULE_1__generateCategoricalChart__ = __webpack_require__(63), __WEBPACK_IMPORTED_MODULE_2__polar_PolarAngleAxis__ = __webpack_require__(172), __WEBPACK_IMPORTED_MODULE_3__polar_PolarRadiusAxis__ = __webpack_require__(171), __WEBPACK_IMPORTED_MODULE_4__util_PolarUtils__ = __webpack_require__(35), __WEBPACK_IMPORTED_MODULE_5__polar_RadialBar__ = __webpack_require__(448); __webpack_exports__.a = Object(__WEBPACK_IMPORTED_MODULE_1__generateCategoricalChart__.a)({ chartName: "RadialBarChart", GraphicalChild: __WEBPACK_IMPORTED_MODULE_5__polar_RadialBar__.a, @@ -41375,7 +41423,7 @@ var _publicBundleJs = []byte(`!function(modules) { }); }, function(module, __webpack_exports__, __webpack_require__) { "use strict"; - var __WEBPACK_IMPORTED_MODULE_0__generateCategoricalChart__ = __webpack_require__(63), __WEBPACK_IMPORTED_MODULE_1__cartesian_Area__ = __webpack_require__(260), __WEBPACK_IMPORTED_MODULE_2__cartesian_Bar__ = __webpack_require__(261), __WEBPACK_IMPORTED_MODULE_3__cartesian_Line__ = __webpack_require__(259), __WEBPACK_IMPORTED_MODULE_4__cartesian_Scatter__ = __webpack_require__(262), __WEBPACK_IMPORTED_MODULE_5__cartesian_XAxis__ = __webpack_require__(87), __WEBPACK_IMPORTED_MODULE_6__cartesian_YAxis__ = __webpack_require__(88), __WEBPACK_IMPORTED_MODULE_7__cartesian_ZAxis__ = __webpack_require__(171), __WEBPACK_IMPORTED_MODULE_8__util_CartesianUtils__ = __webpack_require__(118); + var __WEBPACK_IMPORTED_MODULE_0__generateCategoricalChart__ = __webpack_require__(63), __WEBPACK_IMPORTED_MODULE_1__cartesian_Area__ = __webpack_require__(260), __WEBPACK_IMPORTED_MODULE_2__cartesian_Bar__ = __webpack_require__(261), __WEBPACK_IMPORTED_MODULE_3__cartesian_Line__ = __webpack_require__(259), __WEBPACK_IMPORTED_MODULE_4__cartesian_Scatter__ = __webpack_require__(262), __WEBPACK_IMPORTED_MODULE_5__cartesian_XAxis__ = __webpack_require__(87), __WEBPACK_IMPORTED_MODULE_6__cartesian_YAxis__ = __webpack_require__(88), __WEBPACK_IMPORTED_MODULE_7__cartesian_ZAxis__ = __webpack_require__(173), __WEBPACK_IMPORTED_MODULE_8__util_CartesianUtils__ = __webpack_require__(118); __webpack_exports__.a = Object(__WEBPACK_IMPORTED_MODULE_0__generateCategoricalChart__.a)({ chartName: "ComposedChart", GraphicalChild: [ __WEBPACK_IMPORTED_MODULE_3__cartesian_Line__.a, __WEBPACK_IMPORTED_MODULE_1__cartesian_Area__.a, __WEBPACK_IMPORTED_MODULE_2__cartesian_Bar__.a, __WEBPACK_IMPORTED_MODULE_4__cartesian_Scatter__.a ], @@ -41767,7 +41815,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.isWidthDown = exports.isWidthUp = void 0; - var _extends2 = __webpack_require__(10), _extends3 = _interopRequireDefault(_extends2), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _getPrototypeOf = __webpack_require__(38), _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf), _classCallCheck2 = __webpack_require__(39), _classCallCheck3 = _interopRequireDefault(_classCallCheck2), _createClass2 = __webpack_require__(40), _createClass3 = _interopRequireDefault(_createClass2), _possibleConstructorReturn2 = __webpack_require__(41), _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2), _inherits2 = __webpack_require__(42), _inherits3 = _interopRequireDefault(_inherits2), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _reactEventListener = __webpack_require__(1120), _reactEventListener2 = _interopRequireDefault(_reactEventListener), _debounce = __webpack_require__(246), _debounce2 = _interopRequireDefault(_debounce), _hoistNonReactStatics = __webpack_require__(192), _hoistNonReactStatics2 = _interopRequireDefault(_hoistNonReactStatics), _wrapDisplayName = __webpack_require__(95), _wrapDisplayName2 = _interopRequireDefault(_wrapDisplayName), _withTheme = __webpack_require__(361), _withTheme2 = _interopRequireDefault(_withTheme), _createBreakpoints = __webpack_require__(94), withWidth = (exports.isWidthUp = function(breakpoint, width) { + var _extends2 = __webpack_require__(10), _extends3 = _interopRequireDefault(_extends2), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _getPrototypeOf = __webpack_require__(38), _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf), _classCallCheck2 = __webpack_require__(39), _classCallCheck3 = _interopRequireDefault(_classCallCheck2), _createClass2 = __webpack_require__(40), _createClass3 = _interopRequireDefault(_createClass2), _possibleConstructorReturn2 = __webpack_require__(41), _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2), _inherits2 = __webpack_require__(42), _inherits3 = _interopRequireDefault(_inherits2), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _reactEventListener = __webpack_require__(1120), _reactEventListener2 = _interopRequireDefault(_reactEventListener), _debounce = __webpack_require__(246), _debounce2 = _interopRequireDefault(_debounce), _hoistNonReactStatics = __webpack_require__(194), _hoistNonReactStatics2 = _interopRequireDefault(_hoistNonReactStatics), _wrapDisplayName = __webpack_require__(95), _wrapDisplayName2 = _interopRequireDefault(_wrapDisplayName), _withTheme = __webpack_require__(361), _withTheme2 = _interopRequireDefault(_withTheme), _createBreakpoints = __webpack_require__(94), withWidth = (exports.isWidthUp = function(breakpoint, width) { return arguments.length > 2 && void 0 !== arguments[2] && !arguments[2] ? _createBreakpoints.keys.indexOf(breakpoint) < _createBreakpoints.keys.indexOf(width) : _createBreakpoints.keys.indexOf(breakpoint) <= _createBreakpoints.keys.indexOf(width); }, exports.isWidthDown = function(breakpoint, width) { return arguments.length > 2 && void 0 !== arguments[2] && arguments[2] ? _createBreakpoints.keys.indexOf(width) <= _createBreakpoints.keys.indexOf(breakpoint) : _createBreakpoints.keys.indexOf(width) < _createBreakpoints.keys.indexOf(breakpoint); @@ -41886,7 +41934,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _getPrototypeOf = __webpack_require__(38), _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf), _classCallCheck2 = __webpack_require__(39), _classCallCheck3 = _interopRequireDefault(_classCallCheck2), _createClass2 = __webpack_require__(40), _createClass3 = _interopRequireDefault(_createClass2), _possibleConstructorReturn2 = __webpack_require__(41), _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2), _inherits2 = __webpack_require__(42), _inherits3 = _interopRequireDefault(_inherits2), _typeof2 = __webpack_require__(126), _typeof3 = _interopRequireDefault(_typeof2), _keys = __webpack_require__(50), _keys2 = _interopRequireDefault(_keys), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _assign = __webpack_require__(268), _assign2 = _interopRequireDefault(_assign); + var _getPrototypeOf = __webpack_require__(38), _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf), _classCallCheck2 = __webpack_require__(39), _classCallCheck3 = _interopRequireDefault(_classCallCheck2), _createClass2 = __webpack_require__(40), _createClass3 = _interopRequireDefault(_createClass2), _possibleConstructorReturn2 = __webpack_require__(41), _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2), _inherits2 = __webpack_require__(42), _inherits3 = _interopRequireDefault(_inherits2), _typeof2 = __webpack_require__(126), _typeof3 = _interopRequireDefault(_typeof2), _keys = __webpack_require__(51), _keys2 = _interopRequireDefault(_keys), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _assign = __webpack_require__(268), _assign2 = _interopRequireDefault(_assign); exports.withOptions = withOptions; var _react = __webpack_require__(1), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _shallowEqual = __webpack_require__(122), _shallowEqual2 = _interopRequireDefault(_shallowEqual), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _supports = __webpack_require__(1121), supports = function(obj) { if (obj && obj.__esModule) return obj; @@ -41965,7 +42013,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }), exports.passiveOption = exports.detachEvent = exports.attachEvent = exports.removeEventListener = exports.addEventListener = void 0; - var _defineProperty = __webpack_require__(183), _defineProperty2 = function(obj) { + var _defineProperty = __webpack_require__(185), _defineProperty2 = function(obj) { return obj && obj.__esModule ? obj : { default: obj }; @@ -42018,7 +42066,7 @@ var _publicBundleJs = []byte(`!function(modules) { Object.defineProperty(exports, "__esModule", { value: !0 }); - var _keys = __webpack_require__(50), _keys2 = _interopRequireDefault(_keys), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _defineProperty2 = __webpack_require__(17), _defineProperty3 = _interopRequireDefault(_defineProperty2), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _createBreakpoints = __webpack_require__(94), _helpers = __webpack_require__(69), _withStyles = __webpack_require__(13), _withStyles2 = _interopRequireDefault(_withStyles), styles = function(theme) { + var _keys = __webpack_require__(51), _keys2 = _interopRequireDefault(_keys), _objectWithoutProperties2 = __webpack_require__(9), _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2), _defineProperty2 = __webpack_require__(17), _defineProperty3 = _interopRequireDefault(_defineProperty2), _react = __webpack_require__(1), _react2 = _interopRequireDefault(_react), _propTypes = __webpack_require__(2), _propTypes2 = _interopRequireDefault(_propTypes), _warning = __webpack_require__(14), _warning2 = _interopRequireDefault(_warning), _createBreakpoints = __webpack_require__(94), _helpers = __webpack_require__(69), _withStyles = __webpack_require__(13), _withStyles2 = _interopRequireDefault(_withStyles), styles = function(theme) { var hidden = { display: "none" }; @@ -42067,6 +42115,7 @@ func publicBundleJs() (*asset, error) { return a, nil } +//nolint:misspell var _publicDashboardHtml = []byte(` diff --git a/dashboard/assets/flow-typed/npm/material-ui-icons_vx.x.x.js b/dashboard/assets/flow-typed/npm/material-ui-icons_vx.x.x.js deleted file mode 100644 index fc192a167c..0000000000 --- a/dashboard/assets/flow-typed/npm/material-ui-icons_vx.x.x.js +++ /dev/null @@ -1,6751 +0,0 @@ -// flow-typed signature: 43a747a2bbe1d2b694f4aa761e774cbd -// flow-typed version: <>/material-ui-icons_v^1.0.0-beta.17/flow_v0.59.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'material-ui-icons' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'material-ui-icons' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'material-ui-icons/AccessAlarm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccessAlarms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Accessibility' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Accessible' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccessTime' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccountBalance' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccountBalanceWallet' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccountBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccountCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AcUnit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Adb' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Add' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddAlarm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddAlert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddAPhoto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddLocation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddShoppingCart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddToPhotos' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddToQueue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Adjust' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatFlat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatFlatAngled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatIndividualSuite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatLegroomExtra' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatLegroomNormal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatLegroomReduced' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatReclineExtra' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatReclineNormal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirplanemodeActive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirplanemodeInactive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Airplay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirportShuttle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Alarm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AlarmAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AlarmOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AlarmOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Album' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AllInclusive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AllOut' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Android' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Announcement' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Apps' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Archive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowBack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowDownward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowDropDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowDropDownCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowDropUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowForward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowUpward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArtTrack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AspectRatio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Assessment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Assignment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssignmentInd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssignmentLate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssignmentReturn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssignmentReturned' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssignmentTurnedIn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Assistant' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssistantPhoto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AttachFile' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Attachment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AttachMoney' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Audiotrack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Autorenew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AvTimer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Backspace' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Backup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery20' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery50' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery60' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery80' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery90' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryAlert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging20' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging50' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging60' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging80' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging90' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryChargingFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryStd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryUnknown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BeachAccess' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Beenhere' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Block' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Bluetooth' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BluetoothAudio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BluetoothConnected' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BluetoothDisabled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BluetoothSearching' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BlurCircular' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BlurLinear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BlurOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BlurOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Book' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Bookmark' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BookmarkBorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderBottom' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderClear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderColor' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderHorizontal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderInner' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderOuter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderStyle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderTop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderVertical' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrandingWatermark' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness4' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness6' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness7' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrightnessAuto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrightnessHigh' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrightnessLow' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrightnessMedium' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrokenImage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brush' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BubbleChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BugReport' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Build' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BurstMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Business' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BusinessCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Cached' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Cake' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Call' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallEnd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallMade' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallMerge' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallMissed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallMissedOutgoing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallReceived' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallSplit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallToAction' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Camera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CameraAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CameraEnhance' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CameraFront' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CameraRear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CameraRoll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Cancel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CardGiftcard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CardMembership' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CardTravel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Casino' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Cast' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CastConnected' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CenterFocusStrong' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CenterFocusWeak' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChangeHistory' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Chat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChatBubble' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChatBubbleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Check' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CheckBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CheckBoxOutlineBlank' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CheckCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChevronLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChevronRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChildCare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChildFriendly' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChromeReaderMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Class' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Clear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ClearAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Close' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ClosedCaption' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Cloud' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudDone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudDownload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudQueue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudUpload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Code' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Collections' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CollectionsBookmark' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Colorize' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ColorLens' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Comment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Compare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CompareArrows' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Computer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ConfirmationNumber' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ContactMail' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ContactPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Contacts' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ContentCopy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ContentCut' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ContentPaste' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ControlPoint' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ControlPointDuplicate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Copyright' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Create' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CreateNewFolder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CreditCard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Crop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Crop169' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Crop32' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Crop54' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Crop75' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropDin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropFree' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropOriginal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropRotate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropSquare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dashboard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DataUsage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DateRange' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dehaze' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Delete' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DeleteForever' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DeleteSweep' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Description' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DesktopMac' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DesktopWindows' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Details' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DeveloperBoard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DeveloperMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DeviceHub' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Devices' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DevicesOther' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DialerSip' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dialpad' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Directions' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsBike' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsBoat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsBus' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsCar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsRailway' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsRun' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsSubway' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsTransit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsWalk' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DiscFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dns' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Domain' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Done' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DoneAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DoNotDisturb' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DoNotDisturbAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DoNotDisturbOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DoNotDisturbOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DonutLarge' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DonutSmall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Drafts' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DragHandle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DriveEta' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dvr' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Edit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EditLocation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Eject' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Email' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EnhancedEncryption' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Equalizer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Error' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ErrorOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EuroSymbol' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Event' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EventAvailable' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EventBusy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EventNote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EventSeat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EvStation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExitToApp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExpandLess' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExpandMore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Explicit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Explore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Exposure' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExposureNeg1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExposureNeg2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExposurePlus1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExposurePlus2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExposureZero' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Extension' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Face' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FastForward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FastRewind' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Favorite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FavoriteBorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FeaturedPlayList' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FeaturedVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Feedback' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FiberDvr' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FiberManualRecord' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FiberNew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FiberPin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FiberSmartRecord' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FileDownload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FileUpload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter4' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter6' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter7' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter8' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter9' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter9Plus' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterBAndW' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterCenterFocus' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterDrama' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterFrames' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterHdr' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterList' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterNone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterTiltShift' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterVintage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FindInPage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FindReplace' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Fingerprint' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FirstPage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FitnessCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Flag' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Flare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlashAuto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlashOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlashOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Flight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlightLand' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlightTakeoff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Flip' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlipToBack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlipToFront' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Folder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FolderOpen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FolderShared' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FolderSpecial' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FontDownload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatAlignCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatAlignJustify' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatAlignLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatAlignRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatBold' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatClear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatColorFill' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatColorReset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatColorText' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatIndentDecrease' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatIndentIncrease' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatItalic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatLineSpacing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatListBulleted' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatListNumbered' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatPaint' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatQuote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatShapes' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatSize' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatStrikethrough' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatTextdirectionLToR' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatTextdirectionRToL' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatUnderlined' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Forum' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Forward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Forward10' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Forward30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Forward5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FreeBreakfast' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Fullscreen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FullscreenExit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Functions' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Gamepad' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Games' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Gavel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Gesture' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GetApp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Gif' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GolfCourse' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GpsFixed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GpsNotFixed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GpsOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Grade' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Gradient' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Grain' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GraphicEq' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GridOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GridOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Group' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GroupAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GroupWork' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GTranslate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Hd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HdrOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HdrOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HdrStrong' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HdrWeak' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Headset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HeadsetMic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Healing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Hearing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Help' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HelpOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Highlight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HighlightOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HighQuality' { - declare module.exports: any; -} - -declare module 'material-ui-icons/History' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Home' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Hotel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HotTub' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HourglassEmpty' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HourglassFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Http' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Https' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Image' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ImageAspectRatio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ImportantDevices' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ImportContacts' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ImportExport' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Inbox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/IndeterminateCheckBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/index.es' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Info' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InfoOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Input' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertComment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertDriveFile' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertEmoticon' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertInvitation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertLink' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertPhoto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InvertColors' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InvertColorsOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Iso' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Keyboard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardArrowDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardArrowLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardArrowRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardArrowUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardBackspace' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardCapslock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardHide' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardReturn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardTab' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardVoice' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Kitchen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Label' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LabelOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Landscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Language' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Laptop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LaptopChromebook' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LaptopMac' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LaptopWindows' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LastPage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Launch' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Layers' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LayersClear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LeakAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LeakRemove' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Lens' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LibraryAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LibraryBooks' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LibraryMusic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LightbulbOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LinearScale' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LineStyle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LineWeight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Link' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LinkedCamera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/List' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LiveHelp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LiveTv' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalActivity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalAirport' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalAtm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalBar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalCafe' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalCarWash' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalConvenienceStore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalDining' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalDrink' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalFlorist' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalGasStation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalGroceryStore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalHospital' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalHotel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalLaundryService' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalLibrary' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalMall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalMovies' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalOffer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalParking' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPharmacy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPizza' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPlay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPostOffice' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPrintshop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalSee' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalShipping' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalTaxi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocationCity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocationDisabled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocationOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocationOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocationSearching' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Lock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LockOpen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LockOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Looks' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Looks3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Looks4' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Looks5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Looks6' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LooksOne' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LooksTwo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Loop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Loupe' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LowPriority' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Loyalty' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Mail' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MailOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Map' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Markunread' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MarkunreadMailbox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Memory' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Menu' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MergeType' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Message' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Mic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MicNone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MicOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Mms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ModeComment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ModeEdit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MonetizationOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MoneyOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MonochromePhotos' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Mood' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MoodBad' { - declare module.exports: any; -} - -declare module 'material-ui-icons/More' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MoreHoriz' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MoreVert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Motorcycle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Mouse' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MoveToInbox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Movie' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MovieCreation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MovieFilter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MultilineChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MusicNote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MusicVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MyLocation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Nature' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NaturePeople' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NavigateBefore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NavigateNext' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Navigation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NearMe' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NetworkCell' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NetworkCheck' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NetworkLocked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NetworkWifi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NewReleases' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NextWeek' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Nfc' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NoEncryption' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NoSim' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Note' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NoteAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Notifications' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NotificationsActive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NotificationsNone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NotificationsOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NotificationsPaused' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NotInterested' { - declare module.exports: any; -} - -declare module 'material-ui-icons/OfflinePin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/OndemandVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Opacity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/OpenInBrowser' { - declare module.exports: any; -} - -declare module 'material-ui-icons/OpenInNew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/OpenWith' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Pages' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Pageview' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Palette' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Panorama' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PanoramaFishEye' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PanoramaHorizontal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PanoramaVertical' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PanoramaWideAngle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PanTool' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PartyMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Pause' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PauseCircleFilled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PauseCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Payment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/People' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PeopleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermCameraMic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermContactCalendar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermDataSetting' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermDeviceInformation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermIdentity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermMedia' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermPhoneMsg' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermScanWifi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Person' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PersonAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PersonalVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PersonOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PersonPin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PersonPinCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Pets' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Phone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneAndroid' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneBluetoothSpeaker' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneForwarded' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneInTalk' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneIphone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Phonelink' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonelinkErase' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonelinkLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonelinkOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonelinkRing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonelinkSetup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneLocked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneMissed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonePaused' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Photo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoAlbum' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoCamera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoFilter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoLibrary' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoSizeSelectActual' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoSizeSelectLarge' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoSizeSelectSmall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PictureAsPdf' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PictureInPicture' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PictureInPictureAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PieChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PieChartOutlined' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PinDrop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Place' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlayArrow' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlayCircleFilled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlayCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlayForWork' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlaylistAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlaylistAddCheck' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlaylistPlay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlusOne' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Poll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Polymer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Pool' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PortableWifiOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Portrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Power' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PowerInput' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PowerSettingsNew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PregnantWoman' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PresentToAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Print' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PriorityHigh' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Public' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Publish' { - declare module.exports: any; -} - -declare module 'material-ui-icons/QueryBuilder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/QuestionAnswer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Queue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/QueueMusic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/QueuePlayNext' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Radio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RadioButtonChecked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RadioButtonUnchecked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RateReview' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Receipt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RecentActors' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RecordVoiceOver' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Redeem' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Redo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Refresh' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Remove' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RemoveCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RemoveCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RemoveFromQueue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RemoveRedEye' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RemoveShoppingCart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Reorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Repeat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RepeatOne' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Replay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Replay10' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Replay30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Replay5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Reply' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ReplyAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Report' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ReportProblem' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Restaurant' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RestaurantMenu' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Restore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RestorePage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RingVolume' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Room' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RoomService' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Rotate90DegreesCcw' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RotateLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RotateRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RoundedCorner' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Router' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Rowing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RssFeed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RvHookup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Satellite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Save' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Scanner' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Schedule' { - declare module.exports: any; -} - -declare module 'material-ui-icons/School' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ScreenLockLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ScreenLockPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ScreenLockRotation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ScreenRotation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ScreenShare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SdCard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SdStorage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Search' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Security' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SelectAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Send' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SentimentDissatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SentimentNeutral' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SentimentSatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SentimentVeryDissatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SentimentVerySatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Settings' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsApplications' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsBackupRestore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsBluetooth' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsBrightness' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsCell' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsEthernet' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsInputAntenna' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsInputComponent' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsInputComposite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsInputHdmi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsInputSvideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsOverscan' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsPower' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsRemote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsSystemDaydream' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsVoice' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Share' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Shop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ShoppingBasket' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ShoppingCart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ShopTwo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ShortText' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ShowChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Shuffle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellular0Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellular1Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellular2Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellular3Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellular4Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularConnectedNoInternet0Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularConnectedNoInternet1Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularConnectedNoInternet2Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularConnectedNoInternet3Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularConnectedNoInternet4Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularNoSim' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularNull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi0Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi1Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi1BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi2Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi2BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi3Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi3BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi4Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi4BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifiOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SimCard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SimCardAlert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SkipNext' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SkipPrevious' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Slideshow' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SlowMotionVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Smartphone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SmokeFree' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SmokingRooms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Sms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SmsFailed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Snooze' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Sort' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SortByAlpha' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Spa' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SpaceBar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Speaker' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SpeakerGroup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SpeakerNotes' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SpeakerNotesOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SpeakerPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Spellcheck' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Star' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StarBorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StarHalf' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Stars' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StayCurrentLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StayCurrentPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StayPrimaryLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StayPrimaryPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Stop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StopScreenShare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Storage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Store' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StoreMallDirectory' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Straighten' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Streetview' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StrikethroughS' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Style' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SubdirectoryArrowLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SubdirectoryArrowRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Subject' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Subscriptions' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Subtitles' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Subway' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SupervisorAccount' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SurroundSound' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwapCalls' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwapHoriz' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwapVert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwapVerticalCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwitchCamera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwitchVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Sync' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SyncDisabled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SyncProblem' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SystemUpdate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SystemUpdateAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tab' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tablet' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TabletAndroid' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TabletMac' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TabUnselected' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TagFaces' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TapAndPlay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Terrain' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TextFields' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TextFormat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Textsms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Texture' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Theaters' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ThreeDRotation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ThumbDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ThumbsUpDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ThumbUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Timelapse' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Timeline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Timer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Timer10' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Timer3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TimerOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TimeToLeave' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Title' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Toc' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Today' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Toll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tonality' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TouchApp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Toys' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TrackChanges' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Traffic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Train' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tram' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TransferWithinAStation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Transform' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Translate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TrendingDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TrendingFlat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TrendingUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tune' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TurnedIn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TurnedInNot' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tv' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Unarchive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Undo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/UnfoldLess' { - declare module.exports: any; -} - -declare module 'material-ui-icons/UnfoldMore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Update' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Usb' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VerifiedUser' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VerticalAlignBottom' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VerticalAlignCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VerticalAlignTop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Vibration' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VideoCall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Videocam' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VideocamOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VideogameAsset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VideoLabel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VideoLibrary' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewAgenda' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewArray' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewCarousel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewColumn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewComfy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewCompact' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewDay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewHeadline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewList' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewModule' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewQuilt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewStream' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewWeek' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Vignette' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Visibility' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VisibilityOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VoiceChat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Voicemail' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VolumeDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VolumeMute' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VolumeOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VolumeUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VpnKey' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VpnLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Wallpaper' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Warning' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Watch' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WatchLater' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WbAuto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WbCloudy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WbIncandescent' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WbIridescent' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WbSunny' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Wc' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Web' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WebAsset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Weekend' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Whatshot' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Widgets' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Wifi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WifiLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WifiTethering' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Work' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WrapText' { - declare module.exports: any; -} - -declare module 'material-ui-icons/YoutubeSearchedFor' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ZoomIn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ZoomOut' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ZoomOutMap' { - declare module.exports: any; -} - -// Filename aliases -declare module 'material-ui-icons/AccessAlarm.js' { - declare module.exports: $Exports<'material-ui-icons/AccessAlarm'>; -} -declare module 'material-ui-icons/AccessAlarms.js' { - declare module.exports: $Exports<'material-ui-icons/AccessAlarms'>; -} -declare module 'material-ui-icons/Accessibility.js' { - declare module.exports: $Exports<'material-ui-icons/Accessibility'>; -} -declare module 'material-ui-icons/Accessible.js' { - declare module.exports: $Exports<'material-ui-icons/Accessible'>; -} -declare module 'material-ui-icons/AccessTime.js' { - declare module.exports: $Exports<'material-ui-icons/AccessTime'>; -} -declare module 'material-ui-icons/AccountBalance.js' { - declare module.exports: $Exports<'material-ui-icons/AccountBalance'>; -} -declare module 'material-ui-icons/AccountBalanceWallet.js' { - declare module.exports: $Exports<'material-ui-icons/AccountBalanceWallet'>; -} -declare module 'material-ui-icons/AccountBox.js' { - declare module.exports: $Exports<'material-ui-icons/AccountBox'>; -} -declare module 'material-ui-icons/AccountCircle.js' { - declare module.exports: $Exports<'material-ui-icons/AccountCircle'>; -} -declare module 'material-ui-icons/AcUnit.js' { - declare module.exports: $Exports<'material-ui-icons/AcUnit'>; -} -declare module 'material-ui-icons/Adb.js' { - declare module.exports: $Exports<'material-ui-icons/Adb'>; -} -declare module 'material-ui-icons/Add.js' { - declare module.exports: $Exports<'material-ui-icons/Add'>; -} -declare module 'material-ui-icons/AddAlarm.js' { - declare module.exports: $Exports<'material-ui-icons/AddAlarm'>; -} -declare module 'material-ui-icons/AddAlert.js' { - declare module.exports: $Exports<'material-ui-icons/AddAlert'>; -} -declare module 'material-ui-icons/AddAPhoto.js' { - declare module.exports: $Exports<'material-ui-icons/AddAPhoto'>; -} -declare module 'material-ui-icons/AddBox.js' { - declare module.exports: $Exports<'material-ui-icons/AddBox'>; -} -declare module 'material-ui-icons/AddCircle.js' { - declare module.exports: $Exports<'material-ui-icons/AddCircle'>; -} -declare module 'material-ui-icons/AddCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/AddCircleOutline'>; -} -declare module 'material-ui-icons/AddLocation.js' { - declare module.exports: $Exports<'material-ui-icons/AddLocation'>; -} -declare module 'material-ui-icons/AddShoppingCart.js' { - declare module.exports: $Exports<'material-ui-icons/AddShoppingCart'>; -} -declare module 'material-ui-icons/AddToPhotos.js' { - declare module.exports: $Exports<'material-ui-icons/AddToPhotos'>; -} -declare module 'material-ui-icons/AddToQueue.js' { - declare module.exports: $Exports<'material-ui-icons/AddToQueue'>; -} -declare module 'material-ui-icons/Adjust.js' { - declare module.exports: $Exports<'material-ui-icons/Adjust'>; -} -declare module 'material-ui-icons/AirlineSeatFlat.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatFlat'>; -} -declare module 'material-ui-icons/AirlineSeatFlatAngled.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatFlatAngled'>; -} -declare module 'material-ui-icons/AirlineSeatIndividualSuite.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatIndividualSuite'>; -} -declare module 'material-ui-icons/AirlineSeatLegroomExtra.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatLegroomExtra'>; -} -declare module 'material-ui-icons/AirlineSeatLegroomNormal.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatLegroomNormal'>; -} -declare module 'material-ui-icons/AirlineSeatLegroomReduced.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatLegroomReduced'>; -} -declare module 'material-ui-icons/AirlineSeatReclineExtra.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatReclineExtra'>; -} -declare module 'material-ui-icons/AirlineSeatReclineNormal.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatReclineNormal'>; -} -declare module 'material-ui-icons/AirplanemodeActive.js' { - declare module.exports: $Exports<'material-ui-icons/AirplanemodeActive'>; -} -declare module 'material-ui-icons/AirplanemodeInactive.js' { - declare module.exports: $Exports<'material-ui-icons/AirplanemodeInactive'>; -} -declare module 'material-ui-icons/Airplay.js' { - declare module.exports: $Exports<'material-ui-icons/Airplay'>; -} -declare module 'material-ui-icons/AirportShuttle.js' { - declare module.exports: $Exports<'material-ui-icons/AirportShuttle'>; -} -declare module 'material-ui-icons/Alarm.js' { - declare module.exports: $Exports<'material-ui-icons/Alarm'>; -} -declare module 'material-ui-icons/AlarmAdd.js' { - declare module.exports: $Exports<'material-ui-icons/AlarmAdd'>; -} -declare module 'material-ui-icons/AlarmOff.js' { - declare module.exports: $Exports<'material-ui-icons/AlarmOff'>; -} -declare module 'material-ui-icons/AlarmOn.js' { - declare module.exports: $Exports<'material-ui-icons/AlarmOn'>; -} -declare module 'material-ui-icons/Album.js' { - declare module.exports: $Exports<'material-ui-icons/Album'>; -} -declare module 'material-ui-icons/AllInclusive.js' { - declare module.exports: $Exports<'material-ui-icons/AllInclusive'>; -} -declare module 'material-ui-icons/AllOut.js' { - declare module.exports: $Exports<'material-ui-icons/AllOut'>; -} -declare module 'material-ui-icons/Android.js' { - declare module.exports: $Exports<'material-ui-icons/Android'>; -} -declare module 'material-ui-icons/Announcement.js' { - declare module.exports: $Exports<'material-ui-icons/Announcement'>; -} -declare module 'material-ui-icons/Apps.js' { - declare module.exports: $Exports<'material-ui-icons/Apps'>; -} -declare module 'material-ui-icons/Archive.js' { - declare module.exports: $Exports<'material-ui-icons/Archive'>; -} -declare module 'material-ui-icons/ArrowBack.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowBack'>; -} -declare module 'material-ui-icons/ArrowDownward.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowDownward'>; -} -declare module 'material-ui-icons/ArrowDropDown.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowDropDown'>; -} -declare module 'material-ui-icons/ArrowDropDownCircle.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowDropDownCircle'>; -} -declare module 'material-ui-icons/ArrowDropUp.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowDropUp'>; -} -declare module 'material-ui-icons/ArrowForward.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowForward'>; -} -declare module 'material-ui-icons/ArrowUpward.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowUpward'>; -} -declare module 'material-ui-icons/ArtTrack.js' { - declare module.exports: $Exports<'material-ui-icons/ArtTrack'>; -} -declare module 'material-ui-icons/AspectRatio.js' { - declare module.exports: $Exports<'material-ui-icons/AspectRatio'>; -} -declare module 'material-ui-icons/Assessment.js' { - declare module.exports: $Exports<'material-ui-icons/Assessment'>; -} -declare module 'material-ui-icons/Assignment.js' { - declare module.exports: $Exports<'material-ui-icons/Assignment'>; -} -declare module 'material-ui-icons/AssignmentInd.js' { - declare module.exports: $Exports<'material-ui-icons/AssignmentInd'>; -} -declare module 'material-ui-icons/AssignmentLate.js' { - declare module.exports: $Exports<'material-ui-icons/AssignmentLate'>; -} -declare module 'material-ui-icons/AssignmentReturn.js' { - declare module.exports: $Exports<'material-ui-icons/AssignmentReturn'>; -} -declare module 'material-ui-icons/AssignmentReturned.js' { - declare module.exports: $Exports<'material-ui-icons/AssignmentReturned'>; -} -declare module 'material-ui-icons/AssignmentTurnedIn.js' { - declare module.exports: $Exports<'material-ui-icons/AssignmentTurnedIn'>; -} -declare module 'material-ui-icons/Assistant.js' { - declare module.exports: $Exports<'material-ui-icons/Assistant'>; -} -declare module 'material-ui-icons/AssistantPhoto.js' { - declare module.exports: $Exports<'material-ui-icons/AssistantPhoto'>; -} -declare module 'material-ui-icons/AttachFile.js' { - declare module.exports: $Exports<'material-ui-icons/AttachFile'>; -} -declare module 'material-ui-icons/Attachment.js' { - declare module.exports: $Exports<'material-ui-icons/Attachment'>; -} -declare module 'material-ui-icons/AttachMoney.js' { - declare module.exports: $Exports<'material-ui-icons/AttachMoney'>; -} -declare module 'material-ui-icons/Audiotrack.js' { - declare module.exports: $Exports<'material-ui-icons/Audiotrack'>; -} -declare module 'material-ui-icons/Autorenew.js' { - declare module.exports: $Exports<'material-ui-icons/Autorenew'>; -} -declare module 'material-ui-icons/AvTimer.js' { - declare module.exports: $Exports<'material-ui-icons/AvTimer'>; -} -declare module 'material-ui-icons/Backspace.js' { - declare module.exports: $Exports<'material-ui-icons/Backspace'>; -} -declare module 'material-ui-icons/Backup.js' { - declare module.exports: $Exports<'material-ui-icons/Backup'>; -} -declare module 'material-ui-icons/Battery20.js' { - declare module.exports: $Exports<'material-ui-icons/Battery20'>; -} -declare module 'material-ui-icons/Battery30.js' { - declare module.exports: $Exports<'material-ui-icons/Battery30'>; -} -declare module 'material-ui-icons/Battery50.js' { - declare module.exports: $Exports<'material-ui-icons/Battery50'>; -} -declare module 'material-ui-icons/Battery60.js' { - declare module.exports: $Exports<'material-ui-icons/Battery60'>; -} -declare module 'material-ui-icons/Battery80.js' { - declare module.exports: $Exports<'material-ui-icons/Battery80'>; -} -declare module 'material-ui-icons/Battery90.js' { - declare module.exports: $Exports<'material-ui-icons/Battery90'>; -} -declare module 'material-ui-icons/BatteryAlert.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryAlert'>; -} -declare module 'material-ui-icons/BatteryCharging20.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging20'>; -} -declare module 'material-ui-icons/BatteryCharging30.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging30'>; -} -declare module 'material-ui-icons/BatteryCharging50.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging50'>; -} -declare module 'material-ui-icons/BatteryCharging60.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging60'>; -} -declare module 'material-ui-icons/BatteryCharging80.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging80'>; -} -declare module 'material-ui-icons/BatteryCharging90.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging90'>; -} -declare module 'material-ui-icons/BatteryChargingFull.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryChargingFull'>; -} -declare module 'material-ui-icons/BatteryFull.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryFull'>; -} -declare module 'material-ui-icons/BatteryStd.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryStd'>; -} -declare module 'material-ui-icons/BatteryUnknown.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryUnknown'>; -} -declare module 'material-ui-icons/BeachAccess.js' { - declare module.exports: $Exports<'material-ui-icons/BeachAccess'>; -} -declare module 'material-ui-icons/Beenhere.js' { - declare module.exports: $Exports<'material-ui-icons/Beenhere'>; -} -declare module 'material-ui-icons/Block.js' { - declare module.exports: $Exports<'material-ui-icons/Block'>; -} -declare module 'material-ui-icons/Bluetooth.js' { - declare module.exports: $Exports<'material-ui-icons/Bluetooth'>; -} -declare module 'material-ui-icons/BluetoothAudio.js' { - declare module.exports: $Exports<'material-ui-icons/BluetoothAudio'>; -} -declare module 'material-ui-icons/BluetoothConnected.js' { - declare module.exports: $Exports<'material-ui-icons/BluetoothConnected'>; -} -declare module 'material-ui-icons/BluetoothDisabled.js' { - declare module.exports: $Exports<'material-ui-icons/BluetoothDisabled'>; -} -declare module 'material-ui-icons/BluetoothSearching.js' { - declare module.exports: $Exports<'material-ui-icons/BluetoothSearching'>; -} -declare module 'material-ui-icons/BlurCircular.js' { - declare module.exports: $Exports<'material-ui-icons/BlurCircular'>; -} -declare module 'material-ui-icons/BlurLinear.js' { - declare module.exports: $Exports<'material-ui-icons/BlurLinear'>; -} -declare module 'material-ui-icons/BlurOff.js' { - declare module.exports: $Exports<'material-ui-icons/BlurOff'>; -} -declare module 'material-ui-icons/BlurOn.js' { - declare module.exports: $Exports<'material-ui-icons/BlurOn'>; -} -declare module 'material-ui-icons/Book.js' { - declare module.exports: $Exports<'material-ui-icons/Book'>; -} -declare module 'material-ui-icons/Bookmark.js' { - declare module.exports: $Exports<'material-ui-icons/Bookmark'>; -} -declare module 'material-ui-icons/BookmarkBorder.js' { - declare module.exports: $Exports<'material-ui-icons/BookmarkBorder'>; -} -declare module 'material-ui-icons/BorderAll.js' { - declare module.exports: $Exports<'material-ui-icons/BorderAll'>; -} -declare module 'material-ui-icons/BorderBottom.js' { - declare module.exports: $Exports<'material-ui-icons/BorderBottom'>; -} -declare module 'material-ui-icons/BorderClear.js' { - declare module.exports: $Exports<'material-ui-icons/BorderClear'>; -} -declare module 'material-ui-icons/BorderColor.js' { - declare module.exports: $Exports<'material-ui-icons/BorderColor'>; -} -declare module 'material-ui-icons/BorderHorizontal.js' { - declare module.exports: $Exports<'material-ui-icons/BorderHorizontal'>; -} -declare module 'material-ui-icons/BorderInner.js' { - declare module.exports: $Exports<'material-ui-icons/BorderInner'>; -} -declare module 'material-ui-icons/BorderLeft.js' { - declare module.exports: $Exports<'material-ui-icons/BorderLeft'>; -} -declare module 'material-ui-icons/BorderOuter.js' { - declare module.exports: $Exports<'material-ui-icons/BorderOuter'>; -} -declare module 'material-ui-icons/BorderRight.js' { - declare module.exports: $Exports<'material-ui-icons/BorderRight'>; -} -declare module 'material-ui-icons/BorderStyle.js' { - declare module.exports: $Exports<'material-ui-icons/BorderStyle'>; -} -declare module 'material-ui-icons/BorderTop.js' { - declare module.exports: $Exports<'material-ui-icons/BorderTop'>; -} -declare module 'material-ui-icons/BorderVertical.js' { - declare module.exports: $Exports<'material-ui-icons/BorderVertical'>; -} -declare module 'material-ui-icons/BrandingWatermark.js' { - declare module.exports: $Exports<'material-ui-icons/BrandingWatermark'>; -} -declare module 'material-ui-icons/Brightness1.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness1'>; -} -declare module 'material-ui-icons/Brightness2.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness2'>; -} -declare module 'material-ui-icons/Brightness3.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness3'>; -} -declare module 'material-ui-icons/Brightness4.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness4'>; -} -declare module 'material-ui-icons/Brightness5.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness5'>; -} -declare module 'material-ui-icons/Brightness6.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness6'>; -} -declare module 'material-ui-icons/Brightness7.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness7'>; -} -declare module 'material-ui-icons/BrightnessAuto.js' { - declare module.exports: $Exports<'material-ui-icons/BrightnessAuto'>; -} -declare module 'material-ui-icons/BrightnessHigh.js' { - declare module.exports: $Exports<'material-ui-icons/BrightnessHigh'>; -} -declare module 'material-ui-icons/BrightnessLow.js' { - declare module.exports: $Exports<'material-ui-icons/BrightnessLow'>; -} -declare module 'material-ui-icons/BrightnessMedium.js' { - declare module.exports: $Exports<'material-ui-icons/BrightnessMedium'>; -} -declare module 'material-ui-icons/BrokenImage.js' { - declare module.exports: $Exports<'material-ui-icons/BrokenImage'>; -} -declare module 'material-ui-icons/Brush.js' { - declare module.exports: $Exports<'material-ui-icons/Brush'>; -} -declare module 'material-ui-icons/BubbleChart.js' { - declare module.exports: $Exports<'material-ui-icons/BubbleChart'>; -} -declare module 'material-ui-icons/BugReport.js' { - declare module.exports: $Exports<'material-ui-icons/BugReport'>; -} -declare module 'material-ui-icons/Build.js' { - declare module.exports: $Exports<'material-ui-icons/Build'>; -} -declare module 'material-ui-icons/BurstMode.js' { - declare module.exports: $Exports<'material-ui-icons/BurstMode'>; -} -declare module 'material-ui-icons/Business.js' { - declare module.exports: $Exports<'material-ui-icons/Business'>; -} -declare module 'material-ui-icons/BusinessCenter.js' { - declare module.exports: $Exports<'material-ui-icons/BusinessCenter'>; -} -declare module 'material-ui-icons/Cached.js' { - declare module.exports: $Exports<'material-ui-icons/Cached'>; -} -declare module 'material-ui-icons/Cake.js' { - declare module.exports: $Exports<'material-ui-icons/Cake'>; -} -declare module 'material-ui-icons/Call.js' { - declare module.exports: $Exports<'material-ui-icons/Call'>; -} -declare module 'material-ui-icons/CallEnd.js' { - declare module.exports: $Exports<'material-ui-icons/CallEnd'>; -} -declare module 'material-ui-icons/CallMade.js' { - declare module.exports: $Exports<'material-ui-icons/CallMade'>; -} -declare module 'material-ui-icons/CallMerge.js' { - declare module.exports: $Exports<'material-ui-icons/CallMerge'>; -} -declare module 'material-ui-icons/CallMissed.js' { - declare module.exports: $Exports<'material-ui-icons/CallMissed'>; -} -declare module 'material-ui-icons/CallMissedOutgoing.js' { - declare module.exports: $Exports<'material-ui-icons/CallMissedOutgoing'>; -} -declare module 'material-ui-icons/CallReceived.js' { - declare module.exports: $Exports<'material-ui-icons/CallReceived'>; -} -declare module 'material-ui-icons/CallSplit.js' { - declare module.exports: $Exports<'material-ui-icons/CallSplit'>; -} -declare module 'material-ui-icons/CallToAction.js' { - declare module.exports: $Exports<'material-ui-icons/CallToAction'>; -} -declare module 'material-ui-icons/Camera.js' { - declare module.exports: $Exports<'material-ui-icons/Camera'>; -} -declare module 'material-ui-icons/CameraAlt.js' { - declare module.exports: $Exports<'material-ui-icons/CameraAlt'>; -} -declare module 'material-ui-icons/CameraEnhance.js' { - declare module.exports: $Exports<'material-ui-icons/CameraEnhance'>; -} -declare module 'material-ui-icons/CameraFront.js' { - declare module.exports: $Exports<'material-ui-icons/CameraFront'>; -} -declare module 'material-ui-icons/CameraRear.js' { - declare module.exports: $Exports<'material-ui-icons/CameraRear'>; -} -declare module 'material-ui-icons/CameraRoll.js' { - declare module.exports: $Exports<'material-ui-icons/CameraRoll'>; -} -declare module 'material-ui-icons/Cancel.js' { - declare module.exports: $Exports<'material-ui-icons/Cancel'>; -} -declare module 'material-ui-icons/CardGiftcard.js' { - declare module.exports: $Exports<'material-ui-icons/CardGiftcard'>; -} -declare module 'material-ui-icons/CardMembership.js' { - declare module.exports: $Exports<'material-ui-icons/CardMembership'>; -} -declare module 'material-ui-icons/CardTravel.js' { - declare module.exports: $Exports<'material-ui-icons/CardTravel'>; -} -declare module 'material-ui-icons/Casino.js' { - declare module.exports: $Exports<'material-ui-icons/Casino'>; -} -declare module 'material-ui-icons/Cast.js' { - declare module.exports: $Exports<'material-ui-icons/Cast'>; -} -declare module 'material-ui-icons/CastConnected.js' { - declare module.exports: $Exports<'material-ui-icons/CastConnected'>; -} -declare module 'material-ui-icons/CenterFocusStrong.js' { - declare module.exports: $Exports<'material-ui-icons/CenterFocusStrong'>; -} -declare module 'material-ui-icons/CenterFocusWeak.js' { - declare module.exports: $Exports<'material-ui-icons/CenterFocusWeak'>; -} -declare module 'material-ui-icons/ChangeHistory.js' { - declare module.exports: $Exports<'material-ui-icons/ChangeHistory'>; -} -declare module 'material-ui-icons/Chat.js' { - declare module.exports: $Exports<'material-ui-icons/Chat'>; -} -declare module 'material-ui-icons/ChatBubble.js' { - declare module.exports: $Exports<'material-ui-icons/ChatBubble'>; -} -declare module 'material-ui-icons/ChatBubbleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/ChatBubbleOutline'>; -} -declare module 'material-ui-icons/Check.js' { - declare module.exports: $Exports<'material-ui-icons/Check'>; -} -declare module 'material-ui-icons/CheckBox.js' { - declare module.exports: $Exports<'material-ui-icons/CheckBox'>; -} -declare module 'material-ui-icons/CheckBoxOutlineBlank.js' { - declare module.exports: $Exports<'material-ui-icons/CheckBoxOutlineBlank'>; -} -declare module 'material-ui-icons/CheckCircle.js' { - declare module.exports: $Exports<'material-ui-icons/CheckCircle'>; -} -declare module 'material-ui-icons/ChevronLeft.js' { - declare module.exports: $Exports<'material-ui-icons/ChevronLeft'>; -} -declare module 'material-ui-icons/ChevronRight.js' { - declare module.exports: $Exports<'material-ui-icons/ChevronRight'>; -} -declare module 'material-ui-icons/ChildCare.js' { - declare module.exports: $Exports<'material-ui-icons/ChildCare'>; -} -declare module 'material-ui-icons/ChildFriendly.js' { - declare module.exports: $Exports<'material-ui-icons/ChildFriendly'>; -} -declare module 'material-ui-icons/ChromeReaderMode.js' { - declare module.exports: $Exports<'material-ui-icons/ChromeReaderMode'>; -} -declare module 'material-ui-icons/Class.js' { - declare module.exports: $Exports<'material-ui-icons/Class'>; -} -declare module 'material-ui-icons/Clear.js' { - declare module.exports: $Exports<'material-ui-icons/Clear'>; -} -declare module 'material-ui-icons/ClearAll.js' { - declare module.exports: $Exports<'material-ui-icons/ClearAll'>; -} -declare module 'material-ui-icons/Close.js' { - declare module.exports: $Exports<'material-ui-icons/Close'>; -} -declare module 'material-ui-icons/ClosedCaption.js' { - declare module.exports: $Exports<'material-ui-icons/ClosedCaption'>; -} -declare module 'material-ui-icons/Cloud.js' { - declare module.exports: $Exports<'material-ui-icons/Cloud'>; -} -declare module 'material-ui-icons/CloudCircle.js' { - declare module.exports: $Exports<'material-ui-icons/CloudCircle'>; -} -declare module 'material-ui-icons/CloudDone.js' { - declare module.exports: $Exports<'material-ui-icons/CloudDone'>; -} -declare module 'material-ui-icons/CloudDownload.js' { - declare module.exports: $Exports<'material-ui-icons/CloudDownload'>; -} -declare module 'material-ui-icons/CloudOff.js' { - declare module.exports: $Exports<'material-ui-icons/CloudOff'>; -} -declare module 'material-ui-icons/CloudQueue.js' { - declare module.exports: $Exports<'material-ui-icons/CloudQueue'>; -} -declare module 'material-ui-icons/CloudUpload.js' { - declare module.exports: $Exports<'material-ui-icons/CloudUpload'>; -} -declare module 'material-ui-icons/Code.js' { - declare module.exports: $Exports<'material-ui-icons/Code'>; -} -declare module 'material-ui-icons/Collections.js' { - declare module.exports: $Exports<'material-ui-icons/Collections'>; -} -declare module 'material-ui-icons/CollectionsBookmark.js' { - declare module.exports: $Exports<'material-ui-icons/CollectionsBookmark'>; -} -declare module 'material-ui-icons/Colorize.js' { - declare module.exports: $Exports<'material-ui-icons/Colorize'>; -} -declare module 'material-ui-icons/ColorLens.js' { - declare module.exports: $Exports<'material-ui-icons/ColorLens'>; -} -declare module 'material-ui-icons/Comment.js' { - declare module.exports: $Exports<'material-ui-icons/Comment'>; -} -declare module 'material-ui-icons/Compare.js' { - declare module.exports: $Exports<'material-ui-icons/Compare'>; -} -declare module 'material-ui-icons/CompareArrows.js' { - declare module.exports: $Exports<'material-ui-icons/CompareArrows'>; -} -declare module 'material-ui-icons/Computer.js' { - declare module.exports: $Exports<'material-ui-icons/Computer'>; -} -declare module 'material-ui-icons/ConfirmationNumber.js' { - declare module.exports: $Exports<'material-ui-icons/ConfirmationNumber'>; -} -declare module 'material-ui-icons/ContactMail.js' { - declare module.exports: $Exports<'material-ui-icons/ContactMail'>; -} -declare module 'material-ui-icons/ContactPhone.js' { - declare module.exports: $Exports<'material-ui-icons/ContactPhone'>; -} -declare module 'material-ui-icons/Contacts.js' { - declare module.exports: $Exports<'material-ui-icons/Contacts'>; -} -declare module 'material-ui-icons/ContentCopy.js' { - declare module.exports: $Exports<'material-ui-icons/ContentCopy'>; -} -declare module 'material-ui-icons/ContentCut.js' { - declare module.exports: $Exports<'material-ui-icons/ContentCut'>; -} -declare module 'material-ui-icons/ContentPaste.js' { - declare module.exports: $Exports<'material-ui-icons/ContentPaste'>; -} -declare module 'material-ui-icons/ControlPoint.js' { - declare module.exports: $Exports<'material-ui-icons/ControlPoint'>; -} -declare module 'material-ui-icons/ControlPointDuplicate.js' { - declare module.exports: $Exports<'material-ui-icons/ControlPointDuplicate'>; -} -declare module 'material-ui-icons/Copyright.js' { - declare module.exports: $Exports<'material-ui-icons/Copyright'>; -} -declare module 'material-ui-icons/Create.js' { - declare module.exports: $Exports<'material-ui-icons/Create'>; -} -declare module 'material-ui-icons/CreateNewFolder.js' { - declare module.exports: $Exports<'material-ui-icons/CreateNewFolder'>; -} -declare module 'material-ui-icons/CreditCard.js' { - declare module.exports: $Exports<'material-ui-icons/CreditCard'>; -} -declare module 'material-ui-icons/Crop.js' { - declare module.exports: $Exports<'material-ui-icons/Crop'>; -} -declare module 'material-ui-icons/Crop169.js' { - declare module.exports: $Exports<'material-ui-icons/Crop169'>; -} -declare module 'material-ui-icons/Crop32.js' { - declare module.exports: $Exports<'material-ui-icons/Crop32'>; -} -declare module 'material-ui-icons/Crop54.js' { - declare module.exports: $Exports<'material-ui-icons/Crop54'>; -} -declare module 'material-ui-icons/Crop75.js' { - declare module.exports: $Exports<'material-ui-icons/Crop75'>; -} -declare module 'material-ui-icons/CropDin.js' { - declare module.exports: $Exports<'material-ui-icons/CropDin'>; -} -declare module 'material-ui-icons/CropFree.js' { - declare module.exports: $Exports<'material-ui-icons/CropFree'>; -} -declare module 'material-ui-icons/CropLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/CropLandscape'>; -} -declare module 'material-ui-icons/CropOriginal.js' { - declare module.exports: $Exports<'material-ui-icons/CropOriginal'>; -} -declare module 'material-ui-icons/CropPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/CropPortrait'>; -} -declare module 'material-ui-icons/CropRotate.js' { - declare module.exports: $Exports<'material-ui-icons/CropRotate'>; -} -declare module 'material-ui-icons/CropSquare.js' { - declare module.exports: $Exports<'material-ui-icons/CropSquare'>; -} -declare module 'material-ui-icons/Dashboard.js' { - declare module.exports: $Exports<'material-ui-icons/Dashboard'>; -} -declare module 'material-ui-icons/DataUsage.js' { - declare module.exports: $Exports<'material-ui-icons/DataUsage'>; -} -declare module 'material-ui-icons/DateRange.js' { - declare module.exports: $Exports<'material-ui-icons/DateRange'>; -} -declare module 'material-ui-icons/Dehaze.js' { - declare module.exports: $Exports<'material-ui-icons/Dehaze'>; -} -declare module 'material-ui-icons/Delete.js' { - declare module.exports: $Exports<'material-ui-icons/Delete'>; -} -declare module 'material-ui-icons/DeleteForever.js' { - declare module.exports: $Exports<'material-ui-icons/DeleteForever'>; -} -declare module 'material-ui-icons/DeleteSweep.js' { - declare module.exports: $Exports<'material-ui-icons/DeleteSweep'>; -} -declare module 'material-ui-icons/Description.js' { - declare module.exports: $Exports<'material-ui-icons/Description'>; -} -declare module 'material-ui-icons/DesktopMac.js' { - declare module.exports: $Exports<'material-ui-icons/DesktopMac'>; -} -declare module 'material-ui-icons/DesktopWindows.js' { - declare module.exports: $Exports<'material-ui-icons/DesktopWindows'>; -} -declare module 'material-ui-icons/Details.js' { - declare module.exports: $Exports<'material-ui-icons/Details'>; -} -declare module 'material-ui-icons/DeveloperBoard.js' { - declare module.exports: $Exports<'material-ui-icons/DeveloperBoard'>; -} -declare module 'material-ui-icons/DeveloperMode.js' { - declare module.exports: $Exports<'material-ui-icons/DeveloperMode'>; -} -declare module 'material-ui-icons/DeviceHub.js' { - declare module.exports: $Exports<'material-ui-icons/DeviceHub'>; -} -declare module 'material-ui-icons/Devices.js' { - declare module.exports: $Exports<'material-ui-icons/Devices'>; -} -declare module 'material-ui-icons/DevicesOther.js' { - declare module.exports: $Exports<'material-ui-icons/DevicesOther'>; -} -declare module 'material-ui-icons/DialerSip.js' { - declare module.exports: $Exports<'material-ui-icons/DialerSip'>; -} -declare module 'material-ui-icons/Dialpad.js' { - declare module.exports: $Exports<'material-ui-icons/Dialpad'>; -} -declare module 'material-ui-icons/Directions.js' { - declare module.exports: $Exports<'material-ui-icons/Directions'>; -} -declare module 'material-ui-icons/DirectionsBike.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsBike'>; -} -declare module 'material-ui-icons/DirectionsBoat.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsBoat'>; -} -declare module 'material-ui-icons/DirectionsBus.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsBus'>; -} -declare module 'material-ui-icons/DirectionsCar.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsCar'>; -} -declare module 'material-ui-icons/DirectionsRailway.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsRailway'>; -} -declare module 'material-ui-icons/DirectionsRun.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsRun'>; -} -declare module 'material-ui-icons/DirectionsSubway.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsSubway'>; -} -declare module 'material-ui-icons/DirectionsTransit.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsTransit'>; -} -declare module 'material-ui-icons/DirectionsWalk.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsWalk'>; -} -declare module 'material-ui-icons/DiscFull.js' { - declare module.exports: $Exports<'material-ui-icons/DiscFull'>; -} -declare module 'material-ui-icons/Dns.js' { - declare module.exports: $Exports<'material-ui-icons/Dns'>; -} -declare module 'material-ui-icons/Dock.js' { - declare module.exports: $Exports<'material-ui-icons/Dock'>; -} -declare module 'material-ui-icons/Domain.js' { - declare module.exports: $Exports<'material-ui-icons/Domain'>; -} -declare module 'material-ui-icons/Done.js' { - declare module.exports: $Exports<'material-ui-icons/Done'>; -} -declare module 'material-ui-icons/DoneAll.js' { - declare module.exports: $Exports<'material-ui-icons/DoneAll'>; -} -declare module 'material-ui-icons/DoNotDisturb.js' { - declare module.exports: $Exports<'material-ui-icons/DoNotDisturb'>; -} -declare module 'material-ui-icons/DoNotDisturbAlt.js' { - declare module.exports: $Exports<'material-ui-icons/DoNotDisturbAlt'>; -} -declare module 'material-ui-icons/DoNotDisturbOff.js' { - declare module.exports: $Exports<'material-ui-icons/DoNotDisturbOff'>; -} -declare module 'material-ui-icons/DoNotDisturbOn.js' { - declare module.exports: $Exports<'material-ui-icons/DoNotDisturbOn'>; -} -declare module 'material-ui-icons/DonutLarge.js' { - declare module.exports: $Exports<'material-ui-icons/DonutLarge'>; -} -declare module 'material-ui-icons/DonutSmall.js' { - declare module.exports: $Exports<'material-ui-icons/DonutSmall'>; -} -declare module 'material-ui-icons/Drafts.js' { - declare module.exports: $Exports<'material-ui-icons/Drafts'>; -} -declare module 'material-ui-icons/DragHandle.js' { - declare module.exports: $Exports<'material-ui-icons/DragHandle'>; -} -declare module 'material-ui-icons/DriveEta.js' { - declare module.exports: $Exports<'material-ui-icons/DriveEta'>; -} -declare module 'material-ui-icons/Dvr.js' { - declare module.exports: $Exports<'material-ui-icons/Dvr'>; -} -declare module 'material-ui-icons/Edit.js' { - declare module.exports: $Exports<'material-ui-icons/Edit'>; -} -declare module 'material-ui-icons/EditLocation.js' { - declare module.exports: $Exports<'material-ui-icons/EditLocation'>; -} -declare module 'material-ui-icons/Eject.js' { - declare module.exports: $Exports<'material-ui-icons/Eject'>; -} -declare module 'material-ui-icons/Email.js' { - declare module.exports: $Exports<'material-ui-icons/Email'>; -} -declare module 'material-ui-icons/EnhancedEncryption.js' { - declare module.exports: $Exports<'material-ui-icons/EnhancedEncryption'>; -} -declare module 'material-ui-icons/Equalizer.js' { - declare module.exports: $Exports<'material-ui-icons/Equalizer'>; -} -declare module 'material-ui-icons/Error.js' { - declare module.exports: $Exports<'material-ui-icons/Error'>; -} -declare module 'material-ui-icons/ErrorOutline.js' { - declare module.exports: $Exports<'material-ui-icons/ErrorOutline'>; -} -declare module 'material-ui-icons/EuroSymbol.js' { - declare module.exports: $Exports<'material-ui-icons/EuroSymbol'>; -} -declare module 'material-ui-icons/Event.js' { - declare module.exports: $Exports<'material-ui-icons/Event'>; -} -declare module 'material-ui-icons/EventAvailable.js' { - declare module.exports: $Exports<'material-ui-icons/EventAvailable'>; -} -declare module 'material-ui-icons/EventBusy.js' { - declare module.exports: $Exports<'material-ui-icons/EventBusy'>; -} -declare module 'material-ui-icons/EventNote.js' { - declare module.exports: $Exports<'material-ui-icons/EventNote'>; -} -declare module 'material-ui-icons/EventSeat.js' { - declare module.exports: $Exports<'material-ui-icons/EventSeat'>; -} -declare module 'material-ui-icons/EvStation.js' { - declare module.exports: $Exports<'material-ui-icons/EvStation'>; -} -declare module 'material-ui-icons/ExitToApp.js' { - declare module.exports: $Exports<'material-ui-icons/ExitToApp'>; -} -declare module 'material-ui-icons/ExpandLess.js' { - declare module.exports: $Exports<'material-ui-icons/ExpandLess'>; -} -declare module 'material-ui-icons/ExpandMore.js' { - declare module.exports: $Exports<'material-ui-icons/ExpandMore'>; -} -declare module 'material-ui-icons/Explicit.js' { - declare module.exports: $Exports<'material-ui-icons/Explicit'>; -} -declare module 'material-ui-icons/Explore.js' { - declare module.exports: $Exports<'material-ui-icons/Explore'>; -} -declare module 'material-ui-icons/Exposure.js' { - declare module.exports: $Exports<'material-ui-icons/Exposure'>; -} -declare module 'material-ui-icons/ExposureNeg1.js' { - declare module.exports: $Exports<'material-ui-icons/ExposureNeg1'>; -} -declare module 'material-ui-icons/ExposureNeg2.js' { - declare module.exports: $Exports<'material-ui-icons/ExposureNeg2'>; -} -declare module 'material-ui-icons/ExposurePlus1.js' { - declare module.exports: $Exports<'material-ui-icons/ExposurePlus1'>; -} -declare module 'material-ui-icons/ExposurePlus2.js' { - declare module.exports: $Exports<'material-ui-icons/ExposurePlus2'>; -} -declare module 'material-ui-icons/ExposureZero.js' { - declare module.exports: $Exports<'material-ui-icons/ExposureZero'>; -} -declare module 'material-ui-icons/Extension.js' { - declare module.exports: $Exports<'material-ui-icons/Extension'>; -} -declare module 'material-ui-icons/Face.js' { - declare module.exports: $Exports<'material-ui-icons/Face'>; -} -declare module 'material-ui-icons/FastForward.js' { - declare module.exports: $Exports<'material-ui-icons/FastForward'>; -} -declare module 'material-ui-icons/FastRewind.js' { - declare module.exports: $Exports<'material-ui-icons/FastRewind'>; -} -declare module 'material-ui-icons/Favorite.js' { - declare module.exports: $Exports<'material-ui-icons/Favorite'>; -} -declare module 'material-ui-icons/FavoriteBorder.js' { - declare module.exports: $Exports<'material-ui-icons/FavoriteBorder'>; -} -declare module 'material-ui-icons/FeaturedPlayList.js' { - declare module.exports: $Exports<'material-ui-icons/FeaturedPlayList'>; -} -declare module 'material-ui-icons/FeaturedVideo.js' { - declare module.exports: $Exports<'material-ui-icons/FeaturedVideo'>; -} -declare module 'material-ui-icons/Feedback.js' { - declare module.exports: $Exports<'material-ui-icons/Feedback'>; -} -declare module 'material-ui-icons/FiberDvr.js' { - declare module.exports: $Exports<'material-ui-icons/FiberDvr'>; -} -declare module 'material-ui-icons/FiberManualRecord.js' { - declare module.exports: $Exports<'material-ui-icons/FiberManualRecord'>; -} -declare module 'material-ui-icons/FiberNew.js' { - declare module.exports: $Exports<'material-ui-icons/FiberNew'>; -} -declare module 'material-ui-icons/FiberPin.js' { - declare module.exports: $Exports<'material-ui-icons/FiberPin'>; -} -declare module 'material-ui-icons/FiberSmartRecord.js' { - declare module.exports: $Exports<'material-ui-icons/FiberSmartRecord'>; -} -declare module 'material-ui-icons/FileDownload.js' { - declare module.exports: $Exports<'material-ui-icons/FileDownload'>; -} -declare module 'material-ui-icons/FileUpload.js' { - declare module.exports: $Exports<'material-ui-icons/FileUpload'>; -} -declare module 'material-ui-icons/Filter.js' { - declare module.exports: $Exports<'material-ui-icons/Filter'>; -} -declare module 'material-ui-icons/Filter1.js' { - declare module.exports: $Exports<'material-ui-icons/Filter1'>; -} -declare module 'material-ui-icons/Filter2.js' { - declare module.exports: $Exports<'material-ui-icons/Filter2'>; -} -declare module 'material-ui-icons/Filter3.js' { - declare module.exports: $Exports<'material-ui-icons/Filter3'>; -} -declare module 'material-ui-icons/Filter4.js' { - declare module.exports: $Exports<'material-ui-icons/Filter4'>; -} -declare module 'material-ui-icons/Filter5.js' { - declare module.exports: $Exports<'material-ui-icons/Filter5'>; -} -declare module 'material-ui-icons/Filter6.js' { - declare module.exports: $Exports<'material-ui-icons/Filter6'>; -} -declare module 'material-ui-icons/Filter7.js' { - declare module.exports: $Exports<'material-ui-icons/Filter7'>; -} -declare module 'material-ui-icons/Filter8.js' { - declare module.exports: $Exports<'material-ui-icons/Filter8'>; -} -declare module 'material-ui-icons/Filter9.js' { - declare module.exports: $Exports<'material-ui-icons/Filter9'>; -} -declare module 'material-ui-icons/Filter9Plus.js' { - declare module.exports: $Exports<'material-ui-icons/Filter9Plus'>; -} -declare module 'material-ui-icons/FilterBAndW.js' { - declare module.exports: $Exports<'material-ui-icons/FilterBAndW'>; -} -declare module 'material-ui-icons/FilterCenterFocus.js' { - declare module.exports: $Exports<'material-ui-icons/FilterCenterFocus'>; -} -declare module 'material-ui-icons/FilterDrama.js' { - declare module.exports: $Exports<'material-ui-icons/FilterDrama'>; -} -declare module 'material-ui-icons/FilterFrames.js' { - declare module.exports: $Exports<'material-ui-icons/FilterFrames'>; -} -declare module 'material-ui-icons/FilterHdr.js' { - declare module.exports: $Exports<'material-ui-icons/FilterHdr'>; -} -declare module 'material-ui-icons/FilterList.js' { - declare module.exports: $Exports<'material-ui-icons/FilterList'>; -} -declare module 'material-ui-icons/FilterNone.js' { - declare module.exports: $Exports<'material-ui-icons/FilterNone'>; -} -declare module 'material-ui-icons/FilterTiltShift.js' { - declare module.exports: $Exports<'material-ui-icons/FilterTiltShift'>; -} -declare module 'material-ui-icons/FilterVintage.js' { - declare module.exports: $Exports<'material-ui-icons/FilterVintage'>; -} -declare module 'material-ui-icons/FindInPage.js' { - declare module.exports: $Exports<'material-ui-icons/FindInPage'>; -} -declare module 'material-ui-icons/FindReplace.js' { - declare module.exports: $Exports<'material-ui-icons/FindReplace'>; -} -declare module 'material-ui-icons/Fingerprint.js' { - declare module.exports: $Exports<'material-ui-icons/Fingerprint'>; -} -declare module 'material-ui-icons/FirstPage.js' { - declare module.exports: $Exports<'material-ui-icons/FirstPage'>; -} -declare module 'material-ui-icons/FitnessCenter.js' { - declare module.exports: $Exports<'material-ui-icons/FitnessCenter'>; -} -declare module 'material-ui-icons/Flag.js' { - declare module.exports: $Exports<'material-ui-icons/Flag'>; -} -declare module 'material-ui-icons/Flare.js' { - declare module.exports: $Exports<'material-ui-icons/Flare'>; -} -declare module 'material-ui-icons/FlashAuto.js' { - declare module.exports: $Exports<'material-ui-icons/FlashAuto'>; -} -declare module 'material-ui-icons/FlashOff.js' { - declare module.exports: $Exports<'material-ui-icons/FlashOff'>; -} -declare module 'material-ui-icons/FlashOn.js' { - declare module.exports: $Exports<'material-ui-icons/FlashOn'>; -} -declare module 'material-ui-icons/Flight.js' { - declare module.exports: $Exports<'material-ui-icons/Flight'>; -} -declare module 'material-ui-icons/FlightLand.js' { - declare module.exports: $Exports<'material-ui-icons/FlightLand'>; -} -declare module 'material-ui-icons/FlightTakeoff.js' { - declare module.exports: $Exports<'material-ui-icons/FlightTakeoff'>; -} -declare module 'material-ui-icons/Flip.js' { - declare module.exports: $Exports<'material-ui-icons/Flip'>; -} -declare module 'material-ui-icons/FlipToBack.js' { - declare module.exports: $Exports<'material-ui-icons/FlipToBack'>; -} -declare module 'material-ui-icons/FlipToFront.js' { - declare module.exports: $Exports<'material-ui-icons/FlipToFront'>; -} -declare module 'material-ui-icons/Folder.js' { - declare module.exports: $Exports<'material-ui-icons/Folder'>; -} -declare module 'material-ui-icons/FolderOpen.js' { - declare module.exports: $Exports<'material-ui-icons/FolderOpen'>; -} -declare module 'material-ui-icons/FolderShared.js' { - declare module.exports: $Exports<'material-ui-icons/FolderShared'>; -} -declare module 'material-ui-icons/FolderSpecial.js' { - declare module.exports: $Exports<'material-ui-icons/FolderSpecial'>; -} -declare module 'material-ui-icons/FontDownload.js' { - declare module.exports: $Exports<'material-ui-icons/FontDownload'>; -} -declare module 'material-ui-icons/FormatAlignCenter.js' { - declare module.exports: $Exports<'material-ui-icons/FormatAlignCenter'>; -} -declare module 'material-ui-icons/FormatAlignJustify.js' { - declare module.exports: $Exports<'material-ui-icons/FormatAlignJustify'>; -} -declare module 'material-ui-icons/FormatAlignLeft.js' { - declare module.exports: $Exports<'material-ui-icons/FormatAlignLeft'>; -} -declare module 'material-ui-icons/FormatAlignRight.js' { - declare module.exports: $Exports<'material-ui-icons/FormatAlignRight'>; -} -declare module 'material-ui-icons/FormatBold.js' { - declare module.exports: $Exports<'material-ui-icons/FormatBold'>; -} -declare module 'material-ui-icons/FormatClear.js' { - declare module.exports: $Exports<'material-ui-icons/FormatClear'>; -} -declare module 'material-ui-icons/FormatColorFill.js' { - declare module.exports: $Exports<'material-ui-icons/FormatColorFill'>; -} -declare module 'material-ui-icons/FormatColorReset.js' { - declare module.exports: $Exports<'material-ui-icons/FormatColorReset'>; -} -declare module 'material-ui-icons/FormatColorText.js' { - declare module.exports: $Exports<'material-ui-icons/FormatColorText'>; -} -declare module 'material-ui-icons/FormatIndentDecrease.js' { - declare module.exports: $Exports<'material-ui-icons/FormatIndentDecrease'>; -} -declare module 'material-ui-icons/FormatIndentIncrease.js' { - declare module.exports: $Exports<'material-ui-icons/FormatIndentIncrease'>; -} -declare module 'material-ui-icons/FormatItalic.js' { - declare module.exports: $Exports<'material-ui-icons/FormatItalic'>; -} -declare module 'material-ui-icons/FormatLineSpacing.js' { - declare module.exports: $Exports<'material-ui-icons/FormatLineSpacing'>; -} -declare module 'material-ui-icons/FormatListBulleted.js' { - declare module.exports: $Exports<'material-ui-icons/FormatListBulleted'>; -} -declare module 'material-ui-icons/FormatListNumbered.js' { - declare module.exports: $Exports<'material-ui-icons/FormatListNumbered'>; -} -declare module 'material-ui-icons/FormatPaint.js' { - declare module.exports: $Exports<'material-ui-icons/FormatPaint'>; -} -declare module 'material-ui-icons/FormatQuote.js' { - declare module.exports: $Exports<'material-ui-icons/FormatQuote'>; -} -declare module 'material-ui-icons/FormatShapes.js' { - declare module.exports: $Exports<'material-ui-icons/FormatShapes'>; -} -declare module 'material-ui-icons/FormatSize.js' { - declare module.exports: $Exports<'material-ui-icons/FormatSize'>; -} -declare module 'material-ui-icons/FormatStrikethrough.js' { - declare module.exports: $Exports<'material-ui-icons/FormatStrikethrough'>; -} -declare module 'material-ui-icons/FormatTextdirectionLToR.js' { - declare module.exports: $Exports<'material-ui-icons/FormatTextdirectionLToR'>; -} -declare module 'material-ui-icons/FormatTextdirectionRToL.js' { - declare module.exports: $Exports<'material-ui-icons/FormatTextdirectionRToL'>; -} -declare module 'material-ui-icons/FormatUnderlined.js' { - declare module.exports: $Exports<'material-ui-icons/FormatUnderlined'>; -} -declare module 'material-ui-icons/Forum.js' { - declare module.exports: $Exports<'material-ui-icons/Forum'>; -} -declare module 'material-ui-icons/Forward.js' { - declare module.exports: $Exports<'material-ui-icons/Forward'>; -} -declare module 'material-ui-icons/Forward10.js' { - declare module.exports: $Exports<'material-ui-icons/Forward10'>; -} -declare module 'material-ui-icons/Forward30.js' { - declare module.exports: $Exports<'material-ui-icons/Forward30'>; -} -declare module 'material-ui-icons/Forward5.js' { - declare module.exports: $Exports<'material-ui-icons/Forward5'>; -} -declare module 'material-ui-icons/FreeBreakfast.js' { - declare module.exports: $Exports<'material-ui-icons/FreeBreakfast'>; -} -declare module 'material-ui-icons/Fullscreen.js' { - declare module.exports: $Exports<'material-ui-icons/Fullscreen'>; -} -declare module 'material-ui-icons/FullscreenExit.js' { - declare module.exports: $Exports<'material-ui-icons/FullscreenExit'>; -} -declare module 'material-ui-icons/Functions.js' { - declare module.exports: $Exports<'material-ui-icons/Functions'>; -} -declare module 'material-ui-icons/Gamepad.js' { - declare module.exports: $Exports<'material-ui-icons/Gamepad'>; -} -declare module 'material-ui-icons/Games.js' { - declare module.exports: $Exports<'material-ui-icons/Games'>; -} -declare module 'material-ui-icons/Gavel.js' { - declare module.exports: $Exports<'material-ui-icons/Gavel'>; -} -declare module 'material-ui-icons/Gesture.js' { - declare module.exports: $Exports<'material-ui-icons/Gesture'>; -} -declare module 'material-ui-icons/GetApp.js' { - declare module.exports: $Exports<'material-ui-icons/GetApp'>; -} -declare module 'material-ui-icons/Gif.js' { - declare module.exports: $Exports<'material-ui-icons/Gif'>; -} -declare module 'material-ui-icons/GolfCourse.js' { - declare module.exports: $Exports<'material-ui-icons/GolfCourse'>; -} -declare module 'material-ui-icons/GpsFixed.js' { - declare module.exports: $Exports<'material-ui-icons/GpsFixed'>; -} -declare module 'material-ui-icons/GpsNotFixed.js' { - declare module.exports: $Exports<'material-ui-icons/GpsNotFixed'>; -} -declare module 'material-ui-icons/GpsOff.js' { - declare module.exports: $Exports<'material-ui-icons/GpsOff'>; -} -declare module 'material-ui-icons/Grade.js' { - declare module.exports: $Exports<'material-ui-icons/Grade'>; -} -declare module 'material-ui-icons/Gradient.js' { - declare module.exports: $Exports<'material-ui-icons/Gradient'>; -} -declare module 'material-ui-icons/Grain.js' { - declare module.exports: $Exports<'material-ui-icons/Grain'>; -} -declare module 'material-ui-icons/GraphicEq.js' { - declare module.exports: $Exports<'material-ui-icons/GraphicEq'>; -} -declare module 'material-ui-icons/GridOff.js' { - declare module.exports: $Exports<'material-ui-icons/GridOff'>; -} -declare module 'material-ui-icons/GridOn.js' { - declare module.exports: $Exports<'material-ui-icons/GridOn'>; -} -declare module 'material-ui-icons/Group.js' { - declare module.exports: $Exports<'material-ui-icons/Group'>; -} -declare module 'material-ui-icons/GroupAdd.js' { - declare module.exports: $Exports<'material-ui-icons/GroupAdd'>; -} -declare module 'material-ui-icons/GroupWork.js' { - declare module.exports: $Exports<'material-ui-icons/GroupWork'>; -} -declare module 'material-ui-icons/GTranslate.js' { - declare module.exports: $Exports<'material-ui-icons/GTranslate'>; -} -declare module 'material-ui-icons/Hd.js' { - declare module.exports: $Exports<'material-ui-icons/Hd'>; -} -declare module 'material-ui-icons/HdrOff.js' { - declare module.exports: $Exports<'material-ui-icons/HdrOff'>; -} -declare module 'material-ui-icons/HdrOn.js' { - declare module.exports: $Exports<'material-ui-icons/HdrOn'>; -} -declare module 'material-ui-icons/HdrStrong.js' { - declare module.exports: $Exports<'material-ui-icons/HdrStrong'>; -} -declare module 'material-ui-icons/HdrWeak.js' { - declare module.exports: $Exports<'material-ui-icons/HdrWeak'>; -} -declare module 'material-ui-icons/Headset.js' { - declare module.exports: $Exports<'material-ui-icons/Headset'>; -} -declare module 'material-ui-icons/HeadsetMic.js' { - declare module.exports: $Exports<'material-ui-icons/HeadsetMic'>; -} -declare module 'material-ui-icons/Healing.js' { - declare module.exports: $Exports<'material-ui-icons/Healing'>; -} -declare module 'material-ui-icons/Hearing.js' { - declare module.exports: $Exports<'material-ui-icons/Hearing'>; -} -declare module 'material-ui-icons/Help.js' { - declare module.exports: $Exports<'material-ui-icons/Help'>; -} -declare module 'material-ui-icons/HelpOutline.js' { - declare module.exports: $Exports<'material-ui-icons/HelpOutline'>; -} -declare module 'material-ui-icons/Highlight.js' { - declare module.exports: $Exports<'material-ui-icons/Highlight'>; -} -declare module 'material-ui-icons/HighlightOff.js' { - declare module.exports: $Exports<'material-ui-icons/HighlightOff'>; -} -declare module 'material-ui-icons/HighQuality.js' { - declare module.exports: $Exports<'material-ui-icons/HighQuality'>; -} -declare module 'material-ui-icons/History.js' { - declare module.exports: $Exports<'material-ui-icons/History'>; -} -declare module 'material-ui-icons/Home.js' { - declare module.exports: $Exports<'material-ui-icons/Home'>; -} -declare module 'material-ui-icons/Hotel.js' { - declare module.exports: $Exports<'material-ui-icons/Hotel'>; -} -declare module 'material-ui-icons/HotTub.js' { - declare module.exports: $Exports<'material-ui-icons/HotTub'>; -} -declare module 'material-ui-icons/HourglassEmpty.js' { - declare module.exports: $Exports<'material-ui-icons/HourglassEmpty'>; -} -declare module 'material-ui-icons/HourglassFull.js' { - declare module.exports: $Exports<'material-ui-icons/HourglassFull'>; -} -declare module 'material-ui-icons/Http.js' { - declare module.exports: $Exports<'material-ui-icons/Http'>; -} -declare module 'material-ui-icons/Https.js' { - declare module.exports: $Exports<'material-ui-icons/Https'>; -} -declare module 'material-ui-icons/Image.js' { - declare module.exports: $Exports<'material-ui-icons/Image'>; -} -declare module 'material-ui-icons/ImageAspectRatio.js' { - declare module.exports: $Exports<'material-ui-icons/ImageAspectRatio'>; -} -declare module 'material-ui-icons/ImportantDevices.js' { - declare module.exports: $Exports<'material-ui-icons/ImportantDevices'>; -} -declare module 'material-ui-icons/ImportContacts.js' { - declare module.exports: $Exports<'material-ui-icons/ImportContacts'>; -} -declare module 'material-ui-icons/ImportExport.js' { - declare module.exports: $Exports<'material-ui-icons/ImportExport'>; -} -declare module 'material-ui-icons/Inbox.js' { - declare module.exports: $Exports<'material-ui-icons/Inbox'>; -} -declare module 'material-ui-icons/IndeterminateCheckBox.js' { - declare module.exports: $Exports<'material-ui-icons/IndeterminateCheckBox'>; -} -declare module 'material-ui-icons/index.es.js' { - declare module.exports: $Exports<'material-ui-icons/index.es'>; -} -declare module 'material-ui-icons/index' { - declare module.exports: $Exports<'material-ui-icons'>; -} -declare module 'material-ui-icons/index.js' { - declare module.exports: $Exports<'material-ui-icons'>; -} -declare module 'material-ui-icons/Info.js' { - declare module.exports: $Exports<'material-ui-icons/Info'>; -} -declare module 'material-ui-icons/InfoOutline.js' { - declare module.exports: $Exports<'material-ui-icons/InfoOutline'>; -} -declare module 'material-ui-icons/Input.js' { - declare module.exports: $Exports<'material-ui-icons/Input'>; -} -declare module 'material-ui-icons/InsertChart.js' { - declare module.exports: $Exports<'material-ui-icons/InsertChart'>; -} -declare module 'material-ui-icons/InsertComment.js' { - declare module.exports: $Exports<'material-ui-icons/InsertComment'>; -} -declare module 'material-ui-icons/InsertDriveFile.js' { - declare module.exports: $Exports<'material-ui-icons/InsertDriveFile'>; -} -declare module 'material-ui-icons/InsertEmoticon.js' { - declare module.exports: $Exports<'material-ui-icons/InsertEmoticon'>; -} -declare module 'material-ui-icons/InsertInvitation.js' { - declare module.exports: $Exports<'material-ui-icons/InsertInvitation'>; -} -declare module 'material-ui-icons/InsertLink.js' { - declare module.exports: $Exports<'material-ui-icons/InsertLink'>; -} -declare module 'material-ui-icons/InsertPhoto.js' { - declare module.exports: $Exports<'material-ui-icons/InsertPhoto'>; -} -declare module 'material-ui-icons/InvertColors.js' { - declare module.exports: $Exports<'material-ui-icons/InvertColors'>; -} -declare module 'material-ui-icons/InvertColorsOff.js' { - declare module.exports: $Exports<'material-ui-icons/InvertColorsOff'>; -} -declare module 'material-ui-icons/Iso.js' { - declare module.exports: $Exports<'material-ui-icons/Iso'>; -} -declare module 'material-ui-icons/Keyboard.js' { - declare module.exports: $Exports<'material-ui-icons/Keyboard'>; -} -declare module 'material-ui-icons/KeyboardArrowDown.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardArrowDown'>; -} -declare module 'material-ui-icons/KeyboardArrowLeft.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardArrowLeft'>; -} -declare module 'material-ui-icons/KeyboardArrowRight.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardArrowRight'>; -} -declare module 'material-ui-icons/KeyboardArrowUp.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardArrowUp'>; -} -declare module 'material-ui-icons/KeyboardBackspace.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardBackspace'>; -} -declare module 'material-ui-icons/KeyboardCapslock.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardCapslock'>; -} -declare module 'material-ui-icons/KeyboardHide.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardHide'>; -} -declare module 'material-ui-icons/KeyboardReturn.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardReturn'>; -} -declare module 'material-ui-icons/KeyboardTab.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardTab'>; -} -declare module 'material-ui-icons/KeyboardVoice.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardVoice'>; -} -declare module 'material-ui-icons/Kitchen.js' { - declare module.exports: $Exports<'material-ui-icons/Kitchen'>; -} -declare module 'material-ui-icons/Label.js' { - declare module.exports: $Exports<'material-ui-icons/Label'>; -} -declare module 'material-ui-icons/LabelOutline.js' { - declare module.exports: $Exports<'material-ui-icons/LabelOutline'>; -} -declare module 'material-ui-icons/Landscape.js' { - declare module.exports: $Exports<'material-ui-icons/Landscape'>; -} -declare module 'material-ui-icons/Language.js' { - declare module.exports: $Exports<'material-ui-icons/Language'>; -} -declare module 'material-ui-icons/Laptop.js' { - declare module.exports: $Exports<'material-ui-icons/Laptop'>; -} -declare module 'material-ui-icons/LaptopChromebook.js' { - declare module.exports: $Exports<'material-ui-icons/LaptopChromebook'>; -} -declare module 'material-ui-icons/LaptopMac.js' { - declare module.exports: $Exports<'material-ui-icons/LaptopMac'>; -} -declare module 'material-ui-icons/LaptopWindows.js' { - declare module.exports: $Exports<'material-ui-icons/LaptopWindows'>; -} -declare module 'material-ui-icons/LastPage.js' { - declare module.exports: $Exports<'material-ui-icons/LastPage'>; -} -declare module 'material-ui-icons/Launch.js' { - declare module.exports: $Exports<'material-ui-icons/Launch'>; -} -declare module 'material-ui-icons/Layers.js' { - declare module.exports: $Exports<'material-ui-icons/Layers'>; -} -declare module 'material-ui-icons/LayersClear.js' { - declare module.exports: $Exports<'material-ui-icons/LayersClear'>; -} -declare module 'material-ui-icons/LeakAdd.js' { - declare module.exports: $Exports<'material-ui-icons/LeakAdd'>; -} -declare module 'material-ui-icons/LeakRemove.js' { - declare module.exports: $Exports<'material-ui-icons/LeakRemove'>; -} -declare module 'material-ui-icons/Lens.js' { - declare module.exports: $Exports<'material-ui-icons/Lens'>; -} -declare module 'material-ui-icons/LibraryAdd.js' { - declare module.exports: $Exports<'material-ui-icons/LibraryAdd'>; -} -declare module 'material-ui-icons/LibraryBooks.js' { - declare module.exports: $Exports<'material-ui-icons/LibraryBooks'>; -} -declare module 'material-ui-icons/LibraryMusic.js' { - declare module.exports: $Exports<'material-ui-icons/LibraryMusic'>; -} -declare module 'material-ui-icons/LightbulbOutline.js' { - declare module.exports: $Exports<'material-ui-icons/LightbulbOutline'>; -} -declare module 'material-ui-icons/LinearScale.js' { - declare module.exports: $Exports<'material-ui-icons/LinearScale'>; -} -declare module 'material-ui-icons/LineStyle.js' { - declare module.exports: $Exports<'material-ui-icons/LineStyle'>; -} -declare module 'material-ui-icons/LineWeight.js' { - declare module.exports: $Exports<'material-ui-icons/LineWeight'>; -} -declare module 'material-ui-icons/Link.js' { - declare module.exports: $Exports<'material-ui-icons/Link'>; -} -declare module 'material-ui-icons/LinkedCamera.js' { - declare module.exports: $Exports<'material-ui-icons/LinkedCamera'>; -} -declare module 'material-ui-icons/List.js' { - declare module.exports: $Exports<'material-ui-icons/List'>; -} -declare module 'material-ui-icons/LiveHelp.js' { - declare module.exports: $Exports<'material-ui-icons/LiveHelp'>; -} -declare module 'material-ui-icons/LiveTv.js' { - declare module.exports: $Exports<'material-ui-icons/LiveTv'>; -} -declare module 'material-ui-icons/LocalActivity.js' { - declare module.exports: $Exports<'material-ui-icons/LocalActivity'>; -} -declare module 'material-ui-icons/LocalAirport.js' { - declare module.exports: $Exports<'material-ui-icons/LocalAirport'>; -} -declare module 'material-ui-icons/LocalAtm.js' { - declare module.exports: $Exports<'material-ui-icons/LocalAtm'>; -} -declare module 'material-ui-icons/LocalBar.js' { - declare module.exports: $Exports<'material-ui-icons/LocalBar'>; -} -declare module 'material-ui-icons/LocalCafe.js' { - declare module.exports: $Exports<'material-ui-icons/LocalCafe'>; -} -declare module 'material-ui-icons/LocalCarWash.js' { - declare module.exports: $Exports<'material-ui-icons/LocalCarWash'>; -} -declare module 'material-ui-icons/LocalConvenienceStore.js' { - declare module.exports: $Exports<'material-ui-icons/LocalConvenienceStore'>; -} -declare module 'material-ui-icons/LocalDining.js' { - declare module.exports: $Exports<'material-ui-icons/LocalDining'>; -} -declare module 'material-ui-icons/LocalDrink.js' { - declare module.exports: $Exports<'material-ui-icons/LocalDrink'>; -} -declare module 'material-ui-icons/LocalFlorist.js' { - declare module.exports: $Exports<'material-ui-icons/LocalFlorist'>; -} -declare module 'material-ui-icons/LocalGasStation.js' { - declare module.exports: $Exports<'material-ui-icons/LocalGasStation'>; -} -declare module 'material-ui-icons/LocalGroceryStore.js' { - declare module.exports: $Exports<'material-ui-icons/LocalGroceryStore'>; -} -declare module 'material-ui-icons/LocalHospital.js' { - declare module.exports: $Exports<'material-ui-icons/LocalHospital'>; -} -declare module 'material-ui-icons/LocalHotel.js' { - declare module.exports: $Exports<'material-ui-icons/LocalHotel'>; -} -declare module 'material-ui-icons/LocalLaundryService.js' { - declare module.exports: $Exports<'material-ui-icons/LocalLaundryService'>; -} -declare module 'material-ui-icons/LocalLibrary.js' { - declare module.exports: $Exports<'material-ui-icons/LocalLibrary'>; -} -declare module 'material-ui-icons/LocalMall.js' { - declare module.exports: $Exports<'material-ui-icons/LocalMall'>; -} -declare module 'material-ui-icons/LocalMovies.js' { - declare module.exports: $Exports<'material-ui-icons/LocalMovies'>; -} -declare module 'material-ui-icons/LocalOffer.js' { - declare module.exports: $Exports<'material-ui-icons/LocalOffer'>; -} -declare module 'material-ui-icons/LocalParking.js' { - declare module.exports: $Exports<'material-ui-icons/LocalParking'>; -} -declare module 'material-ui-icons/LocalPharmacy.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPharmacy'>; -} -declare module 'material-ui-icons/LocalPhone.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPhone'>; -} -declare module 'material-ui-icons/LocalPizza.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPizza'>; -} -declare module 'material-ui-icons/LocalPlay.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPlay'>; -} -declare module 'material-ui-icons/LocalPostOffice.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPostOffice'>; -} -declare module 'material-ui-icons/LocalPrintshop.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPrintshop'>; -} -declare module 'material-ui-icons/LocalSee.js' { - declare module.exports: $Exports<'material-ui-icons/LocalSee'>; -} -declare module 'material-ui-icons/LocalShipping.js' { - declare module.exports: $Exports<'material-ui-icons/LocalShipping'>; -} -declare module 'material-ui-icons/LocalTaxi.js' { - declare module.exports: $Exports<'material-ui-icons/LocalTaxi'>; -} -declare module 'material-ui-icons/LocationCity.js' { - declare module.exports: $Exports<'material-ui-icons/LocationCity'>; -} -declare module 'material-ui-icons/LocationDisabled.js' { - declare module.exports: $Exports<'material-ui-icons/LocationDisabled'>; -} -declare module 'material-ui-icons/LocationOff.js' { - declare module.exports: $Exports<'material-ui-icons/LocationOff'>; -} -declare module 'material-ui-icons/LocationOn.js' { - declare module.exports: $Exports<'material-ui-icons/LocationOn'>; -} -declare module 'material-ui-icons/LocationSearching.js' { - declare module.exports: $Exports<'material-ui-icons/LocationSearching'>; -} -declare module 'material-ui-icons/Lock.js' { - declare module.exports: $Exports<'material-ui-icons/Lock'>; -} -declare module 'material-ui-icons/LockOpen.js' { - declare module.exports: $Exports<'material-ui-icons/LockOpen'>; -} -declare module 'material-ui-icons/LockOutline.js' { - declare module.exports: $Exports<'material-ui-icons/LockOutline'>; -} -declare module 'material-ui-icons/Looks.js' { - declare module.exports: $Exports<'material-ui-icons/Looks'>; -} -declare module 'material-ui-icons/Looks3.js' { - declare module.exports: $Exports<'material-ui-icons/Looks3'>; -} -declare module 'material-ui-icons/Looks4.js' { - declare module.exports: $Exports<'material-ui-icons/Looks4'>; -} -declare module 'material-ui-icons/Looks5.js' { - declare module.exports: $Exports<'material-ui-icons/Looks5'>; -} -declare module 'material-ui-icons/Looks6.js' { - declare module.exports: $Exports<'material-ui-icons/Looks6'>; -} -declare module 'material-ui-icons/LooksOne.js' { - declare module.exports: $Exports<'material-ui-icons/LooksOne'>; -} -declare module 'material-ui-icons/LooksTwo.js' { - declare module.exports: $Exports<'material-ui-icons/LooksTwo'>; -} -declare module 'material-ui-icons/Loop.js' { - declare module.exports: $Exports<'material-ui-icons/Loop'>; -} -declare module 'material-ui-icons/Loupe.js' { - declare module.exports: $Exports<'material-ui-icons/Loupe'>; -} -declare module 'material-ui-icons/LowPriority.js' { - declare module.exports: $Exports<'material-ui-icons/LowPriority'>; -} -declare module 'material-ui-icons/Loyalty.js' { - declare module.exports: $Exports<'material-ui-icons/Loyalty'>; -} -declare module 'material-ui-icons/Mail.js' { - declare module.exports: $Exports<'material-ui-icons/Mail'>; -} -declare module 'material-ui-icons/MailOutline.js' { - declare module.exports: $Exports<'material-ui-icons/MailOutline'>; -} -declare module 'material-ui-icons/Map.js' { - declare module.exports: $Exports<'material-ui-icons/Map'>; -} -declare module 'material-ui-icons/Markunread.js' { - declare module.exports: $Exports<'material-ui-icons/Markunread'>; -} -declare module 'material-ui-icons/MarkunreadMailbox.js' { - declare module.exports: $Exports<'material-ui-icons/MarkunreadMailbox'>; -} -declare module 'material-ui-icons/Memory.js' { - declare module.exports: $Exports<'material-ui-icons/Memory'>; -} -declare module 'material-ui-icons/Menu.js' { - declare module.exports: $Exports<'material-ui-icons/Menu'>; -} -declare module 'material-ui-icons/MergeType.js' { - declare module.exports: $Exports<'material-ui-icons/MergeType'>; -} -declare module 'material-ui-icons/Message.js' { - declare module.exports: $Exports<'material-ui-icons/Message'>; -} -declare module 'material-ui-icons/Mic.js' { - declare module.exports: $Exports<'material-ui-icons/Mic'>; -} -declare module 'material-ui-icons/MicNone.js' { - declare module.exports: $Exports<'material-ui-icons/MicNone'>; -} -declare module 'material-ui-icons/MicOff.js' { - declare module.exports: $Exports<'material-ui-icons/MicOff'>; -} -declare module 'material-ui-icons/Mms.js' { - declare module.exports: $Exports<'material-ui-icons/Mms'>; -} -declare module 'material-ui-icons/ModeComment.js' { - declare module.exports: $Exports<'material-ui-icons/ModeComment'>; -} -declare module 'material-ui-icons/ModeEdit.js' { - declare module.exports: $Exports<'material-ui-icons/ModeEdit'>; -} -declare module 'material-ui-icons/MonetizationOn.js' { - declare module.exports: $Exports<'material-ui-icons/MonetizationOn'>; -} -declare module 'material-ui-icons/MoneyOff.js' { - declare module.exports: $Exports<'material-ui-icons/MoneyOff'>; -} -declare module 'material-ui-icons/MonochromePhotos.js' { - declare module.exports: $Exports<'material-ui-icons/MonochromePhotos'>; -} -declare module 'material-ui-icons/Mood.js' { - declare module.exports: $Exports<'material-ui-icons/Mood'>; -} -declare module 'material-ui-icons/MoodBad.js' { - declare module.exports: $Exports<'material-ui-icons/MoodBad'>; -} -declare module 'material-ui-icons/More.js' { - declare module.exports: $Exports<'material-ui-icons/More'>; -} -declare module 'material-ui-icons/MoreHoriz.js' { - declare module.exports: $Exports<'material-ui-icons/MoreHoriz'>; -} -declare module 'material-ui-icons/MoreVert.js' { - declare module.exports: $Exports<'material-ui-icons/MoreVert'>; -} -declare module 'material-ui-icons/Motorcycle.js' { - declare module.exports: $Exports<'material-ui-icons/Motorcycle'>; -} -declare module 'material-ui-icons/Mouse.js' { - declare module.exports: $Exports<'material-ui-icons/Mouse'>; -} -declare module 'material-ui-icons/MoveToInbox.js' { - declare module.exports: $Exports<'material-ui-icons/MoveToInbox'>; -} -declare module 'material-ui-icons/Movie.js' { - declare module.exports: $Exports<'material-ui-icons/Movie'>; -} -declare module 'material-ui-icons/MovieCreation.js' { - declare module.exports: $Exports<'material-ui-icons/MovieCreation'>; -} -declare module 'material-ui-icons/MovieFilter.js' { - declare module.exports: $Exports<'material-ui-icons/MovieFilter'>; -} -declare module 'material-ui-icons/MultilineChart.js' { - declare module.exports: $Exports<'material-ui-icons/MultilineChart'>; -} -declare module 'material-ui-icons/MusicNote.js' { - declare module.exports: $Exports<'material-ui-icons/MusicNote'>; -} -declare module 'material-ui-icons/MusicVideo.js' { - declare module.exports: $Exports<'material-ui-icons/MusicVideo'>; -} -declare module 'material-ui-icons/MyLocation.js' { - declare module.exports: $Exports<'material-ui-icons/MyLocation'>; -} -declare module 'material-ui-icons/Nature.js' { - declare module.exports: $Exports<'material-ui-icons/Nature'>; -} -declare module 'material-ui-icons/NaturePeople.js' { - declare module.exports: $Exports<'material-ui-icons/NaturePeople'>; -} -declare module 'material-ui-icons/NavigateBefore.js' { - declare module.exports: $Exports<'material-ui-icons/NavigateBefore'>; -} -declare module 'material-ui-icons/NavigateNext.js' { - declare module.exports: $Exports<'material-ui-icons/NavigateNext'>; -} -declare module 'material-ui-icons/Navigation.js' { - declare module.exports: $Exports<'material-ui-icons/Navigation'>; -} -declare module 'material-ui-icons/NearMe.js' { - declare module.exports: $Exports<'material-ui-icons/NearMe'>; -} -declare module 'material-ui-icons/NetworkCell.js' { - declare module.exports: $Exports<'material-ui-icons/NetworkCell'>; -} -declare module 'material-ui-icons/NetworkCheck.js' { - declare module.exports: $Exports<'material-ui-icons/NetworkCheck'>; -} -declare module 'material-ui-icons/NetworkLocked.js' { - declare module.exports: $Exports<'material-ui-icons/NetworkLocked'>; -} -declare module 'material-ui-icons/NetworkWifi.js' { - declare module.exports: $Exports<'material-ui-icons/NetworkWifi'>; -} -declare module 'material-ui-icons/NewReleases.js' { - declare module.exports: $Exports<'material-ui-icons/NewReleases'>; -} -declare module 'material-ui-icons/NextWeek.js' { - declare module.exports: $Exports<'material-ui-icons/NextWeek'>; -} -declare module 'material-ui-icons/Nfc.js' { - declare module.exports: $Exports<'material-ui-icons/Nfc'>; -} -declare module 'material-ui-icons/NoEncryption.js' { - declare module.exports: $Exports<'material-ui-icons/NoEncryption'>; -} -declare module 'material-ui-icons/NoSim.js' { - declare module.exports: $Exports<'material-ui-icons/NoSim'>; -} -declare module 'material-ui-icons/Note.js' { - declare module.exports: $Exports<'material-ui-icons/Note'>; -} -declare module 'material-ui-icons/NoteAdd.js' { - declare module.exports: $Exports<'material-ui-icons/NoteAdd'>; -} -declare module 'material-ui-icons/Notifications.js' { - declare module.exports: $Exports<'material-ui-icons/Notifications'>; -} -declare module 'material-ui-icons/NotificationsActive.js' { - declare module.exports: $Exports<'material-ui-icons/NotificationsActive'>; -} -declare module 'material-ui-icons/NotificationsNone.js' { - declare module.exports: $Exports<'material-ui-icons/NotificationsNone'>; -} -declare module 'material-ui-icons/NotificationsOff.js' { - declare module.exports: $Exports<'material-ui-icons/NotificationsOff'>; -} -declare module 'material-ui-icons/NotificationsPaused.js' { - declare module.exports: $Exports<'material-ui-icons/NotificationsPaused'>; -} -declare module 'material-ui-icons/NotInterested.js' { - declare module.exports: $Exports<'material-ui-icons/NotInterested'>; -} -declare module 'material-ui-icons/OfflinePin.js' { - declare module.exports: $Exports<'material-ui-icons/OfflinePin'>; -} -declare module 'material-ui-icons/OndemandVideo.js' { - declare module.exports: $Exports<'material-ui-icons/OndemandVideo'>; -} -declare module 'material-ui-icons/Opacity.js' { - declare module.exports: $Exports<'material-ui-icons/Opacity'>; -} -declare module 'material-ui-icons/OpenInBrowser.js' { - declare module.exports: $Exports<'material-ui-icons/OpenInBrowser'>; -} -declare module 'material-ui-icons/OpenInNew.js' { - declare module.exports: $Exports<'material-ui-icons/OpenInNew'>; -} -declare module 'material-ui-icons/OpenWith.js' { - declare module.exports: $Exports<'material-ui-icons/OpenWith'>; -} -declare module 'material-ui-icons/Pages.js' { - declare module.exports: $Exports<'material-ui-icons/Pages'>; -} -declare module 'material-ui-icons/Pageview.js' { - declare module.exports: $Exports<'material-ui-icons/Pageview'>; -} -declare module 'material-ui-icons/Palette.js' { - declare module.exports: $Exports<'material-ui-icons/Palette'>; -} -declare module 'material-ui-icons/Panorama.js' { - declare module.exports: $Exports<'material-ui-icons/Panorama'>; -} -declare module 'material-ui-icons/PanoramaFishEye.js' { - declare module.exports: $Exports<'material-ui-icons/PanoramaFishEye'>; -} -declare module 'material-ui-icons/PanoramaHorizontal.js' { - declare module.exports: $Exports<'material-ui-icons/PanoramaHorizontal'>; -} -declare module 'material-ui-icons/PanoramaVertical.js' { - declare module.exports: $Exports<'material-ui-icons/PanoramaVertical'>; -} -declare module 'material-ui-icons/PanoramaWideAngle.js' { - declare module.exports: $Exports<'material-ui-icons/PanoramaWideAngle'>; -} -declare module 'material-ui-icons/PanTool.js' { - declare module.exports: $Exports<'material-ui-icons/PanTool'>; -} -declare module 'material-ui-icons/PartyMode.js' { - declare module.exports: $Exports<'material-ui-icons/PartyMode'>; -} -declare module 'material-ui-icons/Pause.js' { - declare module.exports: $Exports<'material-ui-icons/Pause'>; -} -declare module 'material-ui-icons/PauseCircleFilled.js' { - declare module.exports: $Exports<'material-ui-icons/PauseCircleFilled'>; -} -declare module 'material-ui-icons/PauseCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/PauseCircleOutline'>; -} -declare module 'material-ui-icons/Payment.js' { - declare module.exports: $Exports<'material-ui-icons/Payment'>; -} -declare module 'material-ui-icons/People.js' { - declare module.exports: $Exports<'material-ui-icons/People'>; -} -declare module 'material-ui-icons/PeopleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/PeopleOutline'>; -} -declare module 'material-ui-icons/PermCameraMic.js' { - declare module.exports: $Exports<'material-ui-icons/PermCameraMic'>; -} -declare module 'material-ui-icons/PermContactCalendar.js' { - declare module.exports: $Exports<'material-ui-icons/PermContactCalendar'>; -} -declare module 'material-ui-icons/PermDataSetting.js' { - declare module.exports: $Exports<'material-ui-icons/PermDataSetting'>; -} -declare module 'material-ui-icons/PermDeviceInformation.js' { - declare module.exports: $Exports<'material-ui-icons/PermDeviceInformation'>; -} -declare module 'material-ui-icons/PermIdentity.js' { - declare module.exports: $Exports<'material-ui-icons/PermIdentity'>; -} -declare module 'material-ui-icons/PermMedia.js' { - declare module.exports: $Exports<'material-ui-icons/PermMedia'>; -} -declare module 'material-ui-icons/PermPhoneMsg.js' { - declare module.exports: $Exports<'material-ui-icons/PermPhoneMsg'>; -} -declare module 'material-ui-icons/PermScanWifi.js' { - declare module.exports: $Exports<'material-ui-icons/PermScanWifi'>; -} -declare module 'material-ui-icons/Person.js' { - declare module.exports: $Exports<'material-ui-icons/Person'>; -} -declare module 'material-ui-icons/PersonAdd.js' { - declare module.exports: $Exports<'material-ui-icons/PersonAdd'>; -} -declare module 'material-ui-icons/PersonalVideo.js' { - declare module.exports: $Exports<'material-ui-icons/PersonalVideo'>; -} -declare module 'material-ui-icons/PersonOutline.js' { - declare module.exports: $Exports<'material-ui-icons/PersonOutline'>; -} -declare module 'material-ui-icons/PersonPin.js' { - declare module.exports: $Exports<'material-ui-icons/PersonPin'>; -} -declare module 'material-ui-icons/PersonPinCircle.js' { - declare module.exports: $Exports<'material-ui-icons/PersonPinCircle'>; -} -declare module 'material-ui-icons/Pets.js' { - declare module.exports: $Exports<'material-ui-icons/Pets'>; -} -declare module 'material-ui-icons/Phone.js' { - declare module.exports: $Exports<'material-ui-icons/Phone'>; -} -declare module 'material-ui-icons/PhoneAndroid.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneAndroid'>; -} -declare module 'material-ui-icons/PhoneBluetoothSpeaker.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneBluetoothSpeaker'>; -} -declare module 'material-ui-icons/PhoneForwarded.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneForwarded'>; -} -declare module 'material-ui-icons/PhoneInTalk.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneInTalk'>; -} -declare module 'material-ui-icons/PhoneIphone.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneIphone'>; -} -declare module 'material-ui-icons/Phonelink.js' { - declare module.exports: $Exports<'material-ui-icons/Phonelink'>; -} -declare module 'material-ui-icons/PhonelinkErase.js' { - declare module.exports: $Exports<'material-ui-icons/PhonelinkErase'>; -} -declare module 'material-ui-icons/PhonelinkLock.js' { - declare module.exports: $Exports<'material-ui-icons/PhonelinkLock'>; -} -declare module 'material-ui-icons/PhonelinkOff.js' { - declare module.exports: $Exports<'material-ui-icons/PhonelinkOff'>; -} -declare module 'material-ui-icons/PhonelinkRing.js' { - declare module.exports: $Exports<'material-ui-icons/PhonelinkRing'>; -} -declare module 'material-ui-icons/PhonelinkSetup.js' { - declare module.exports: $Exports<'material-ui-icons/PhonelinkSetup'>; -} -declare module 'material-ui-icons/PhoneLocked.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneLocked'>; -} -declare module 'material-ui-icons/PhoneMissed.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneMissed'>; -} -declare module 'material-ui-icons/PhonePaused.js' { - declare module.exports: $Exports<'material-ui-icons/PhonePaused'>; -} -declare module 'material-ui-icons/Photo.js' { - declare module.exports: $Exports<'material-ui-icons/Photo'>; -} -declare module 'material-ui-icons/PhotoAlbum.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoAlbum'>; -} -declare module 'material-ui-icons/PhotoCamera.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoCamera'>; -} -declare module 'material-ui-icons/PhotoFilter.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoFilter'>; -} -declare module 'material-ui-icons/PhotoLibrary.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoLibrary'>; -} -declare module 'material-ui-icons/PhotoSizeSelectActual.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoSizeSelectActual'>; -} -declare module 'material-ui-icons/PhotoSizeSelectLarge.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoSizeSelectLarge'>; -} -declare module 'material-ui-icons/PhotoSizeSelectSmall.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoSizeSelectSmall'>; -} -declare module 'material-ui-icons/PictureAsPdf.js' { - declare module.exports: $Exports<'material-ui-icons/PictureAsPdf'>; -} -declare module 'material-ui-icons/PictureInPicture.js' { - declare module.exports: $Exports<'material-ui-icons/PictureInPicture'>; -} -declare module 'material-ui-icons/PictureInPictureAlt.js' { - declare module.exports: $Exports<'material-ui-icons/PictureInPictureAlt'>; -} -declare module 'material-ui-icons/PieChart.js' { - declare module.exports: $Exports<'material-ui-icons/PieChart'>; -} -declare module 'material-ui-icons/PieChartOutlined.js' { - declare module.exports: $Exports<'material-ui-icons/PieChartOutlined'>; -} -declare module 'material-ui-icons/PinDrop.js' { - declare module.exports: $Exports<'material-ui-icons/PinDrop'>; -} -declare module 'material-ui-icons/Place.js' { - declare module.exports: $Exports<'material-ui-icons/Place'>; -} -declare module 'material-ui-icons/PlayArrow.js' { - declare module.exports: $Exports<'material-ui-icons/PlayArrow'>; -} -declare module 'material-ui-icons/PlayCircleFilled.js' { - declare module.exports: $Exports<'material-ui-icons/PlayCircleFilled'>; -} -declare module 'material-ui-icons/PlayCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/PlayCircleOutline'>; -} -declare module 'material-ui-icons/PlayForWork.js' { - declare module.exports: $Exports<'material-ui-icons/PlayForWork'>; -} -declare module 'material-ui-icons/PlaylistAdd.js' { - declare module.exports: $Exports<'material-ui-icons/PlaylistAdd'>; -} -declare module 'material-ui-icons/PlaylistAddCheck.js' { - declare module.exports: $Exports<'material-ui-icons/PlaylistAddCheck'>; -} -declare module 'material-ui-icons/PlaylistPlay.js' { - declare module.exports: $Exports<'material-ui-icons/PlaylistPlay'>; -} -declare module 'material-ui-icons/PlusOne.js' { - declare module.exports: $Exports<'material-ui-icons/PlusOne'>; -} -declare module 'material-ui-icons/Poll.js' { - declare module.exports: $Exports<'material-ui-icons/Poll'>; -} -declare module 'material-ui-icons/Polymer.js' { - declare module.exports: $Exports<'material-ui-icons/Polymer'>; -} -declare module 'material-ui-icons/Pool.js' { - declare module.exports: $Exports<'material-ui-icons/Pool'>; -} -declare module 'material-ui-icons/PortableWifiOff.js' { - declare module.exports: $Exports<'material-ui-icons/PortableWifiOff'>; -} -declare module 'material-ui-icons/Portrait.js' { - declare module.exports: $Exports<'material-ui-icons/Portrait'>; -} -declare module 'material-ui-icons/Power.js' { - declare module.exports: $Exports<'material-ui-icons/Power'>; -} -declare module 'material-ui-icons/PowerInput.js' { - declare module.exports: $Exports<'material-ui-icons/PowerInput'>; -} -declare module 'material-ui-icons/PowerSettingsNew.js' { - declare module.exports: $Exports<'material-ui-icons/PowerSettingsNew'>; -} -declare module 'material-ui-icons/PregnantWoman.js' { - declare module.exports: $Exports<'material-ui-icons/PregnantWoman'>; -} -declare module 'material-ui-icons/PresentToAll.js' { - declare module.exports: $Exports<'material-ui-icons/PresentToAll'>; -} -declare module 'material-ui-icons/Print.js' { - declare module.exports: $Exports<'material-ui-icons/Print'>; -} -declare module 'material-ui-icons/PriorityHigh.js' { - declare module.exports: $Exports<'material-ui-icons/PriorityHigh'>; -} -declare module 'material-ui-icons/Public.js' { - declare module.exports: $Exports<'material-ui-icons/Public'>; -} -declare module 'material-ui-icons/Publish.js' { - declare module.exports: $Exports<'material-ui-icons/Publish'>; -} -declare module 'material-ui-icons/QueryBuilder.js' { - declare module.exports: $Exports<'material-ui-icons/QueryBuilder'>; -} -declare module 'material-ui-icons/QuestionAnswer.js' { - declare module.exports: $Exports<'material-ui-icons/QuestionAnswer'>; -} -declare module 'material-ui-icons/Queue.js' { - declare module.exports: $Exports<'material-ui-icons/Queue'>; -} -declare module 'material-ui-icons/QueueMusic.js' { - declare module.exports: $Exports<'material-ui-icons/QueueMusic'>; -} -declare module 'material-ui-icons/QueuePlayNext.js' { - declare module.exports: $Exports<'material-ui-icons/QueuePlayNext'>; -} -declare module 'material-ui-icons/Radio.js' { - declare module.exports: $Exports<'material-ui-icons/Radio'>; -} -declare module 'material-ui-icons/RadioButtonChecked.js' { - declare module.exports: $Exports<'material-ui-icons/RadioButtonChecked'>; -} -declare module 'material-ui-icons/RadioButtonUnchecked.js' { - declare module.exports: $Exports<'material-ui-icons/RadioButtonUnchecked'>; -} -declare module 'material-ui-icons/RateReview.js' { - declare module.exports: $Exports<'material-ui-icons/RateReview'>; -} -declare module 'material-ui-icons/Receipt.js' { - declare module.exports: $Exports<'material-ui-icons/Receipt'>; -} -declare module 'material-ui-icons/RecentActors.js' { - declare module.exports: $Exports<'material-ui-icons/RecentActors'>; -} -declare module 'material-ui-icons/RecordVoiceOver.js' { - declare module.exports: $Exports<'material-ui-icons/RecordVoiceOver'>; -} -declare module 'material-ui-icons/Redeem.js' { - declare module.exports: $Exports<'material-ui-icons/Redeem'>; -} -declare module 'material-ui-icons/Redo.js' { - declare module.exports: $Exports<'material-ui-icons/Redo'>; -} -declare module 'material-ui-icons/Refresh.js' { - declare module.exports: $Exports<'material-ui-icons/Refresh'>; -} -declare module 'material-ui-icons/Remove.js' { - declare module.exports: $Exports<'material-ui-icons/Remove'>; -} -declare module 'material-ui-icons/RemoveCircle.js' { - declare module.exports: $Exports<'material-ui-icons/RemoveCircle'>; -} -declare module 'material-ui-icons/RemoveCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/RemoveCircleOutline'>; -} -declare module 'material-ui-icons/RemoveFromQueue.js' { - declare module.exports: $Exports<'material-ui-icons/RemoveFromQueue'>; -} -declare module 'material-ui-icons/RemoveRedEye.js' { - declare module.exports: $Exports<'material-ui-icons/RemoveRedEye'>; -} -declare module 'material-ui-icons/RemoveShoppingCart.js' { - declare module.exports: $Exports<'material-ui-icons/RemoveShoppingCart'>; -} -declare module 'material-ui-icons/Reorder.js' { - declare module.exports: $Exports<'material-ui-icons/Reorder'>; -} -declare module 'material-ui-icons/Repeat.js' { - declare module.exports: $Exports<'material-ui-icons/Repeat'>; -} -declare module 'material-ui-icons/RepeatOne.js' { - declare module.exports: $Exports<'material-ui-icons/RepeatOne'>; -} -declare module 'material-ui-icons/Replay.js' { - declare module.exports: $Exports<'material-ui-icons/Replay'>; -} -declare module 'material-ui-icons/Replay10.js' { - declare module.exports: $Exports<'material-ui-icons/Replay10'>; -} -declare module 'material-ui-icons/Replay30.js' { - declare module.exports: $Exports<'material-ui-icons/Replay30'>; -} -declare module 'material-ui-icons/Replay5.js' { - declare module.exports: $Exports<'material-ui-icons/Replay5'>; -} -declare module 'material-ui-icons/Reply.js' { - declare module.exports: $Exports<'material-ui-icons/Reply'>; -} -declare module 'material-ui-icons/ReplyAll.js' { - declare module.exports: $Exports<'material-ui-icons/ReplyAll'>; -} -declare module 'material-ui-icons/Report.js' { - declare module.exports: $Exports<'material-ui-icons/Report'>; -} -declare module 'material-ui-icons/ReportProblem.js' { - declare module.exports: $Exports<'material-ui-icons/ReportProblem'>; -} -declare module 'material-ui-icons/Restaurant.js' { - declare module.exports: $Exports<'material-ui-icons/Restaurant'>; -} -declare module 'material-ui-icons/RestaurantMenu.js' { - declare module.exports: $Exports<'material-ui-icons/RestaurantMenu'>; -} -declare module 'material-ui-icons/Restore.js' { - declare module.exports: $Exports<'material-ui-icons/Restore'>; -} -declare module 'material-ui-icons/RestorePage.js' { - declare module.exports: $Exports<'material-ui-icons/RestorePage'>; -} -declare module 'material-ui-icons/RingVolume.js' { - declare module.exports: $Exports<'material-ui-icons/RingVolume'>; -} -declare module 'material-ui-icons/Room.js' { - declare module.exports: $Exports<'material-ui-icons/Room'>; -} -declare module 'material-ui-icons/RoomService.js' { - declare module.exports: $Exports<'material-ui-icons/RoomService'>; -} -declare module 'material-ui-icons/Rotate90DegreesCcw.js' { - declare module.exports: $Exports<'material-ui-icons/Rotate90DegreesCcw'>; -} -declare module 'material-ui-icons/RotateLeft.js' { - declare module.exports: $Exports<'material-ui-icons/RotateLeft'>; -} -declare module 'material-ui-icons/RotateRight.js' { - declare module.exports: $Exports<'material-ui-icons/RotateRight'>; -} -declare module 'material-ui-icons/RoundedCorner.js' { - declare module.exports: $Exports<'material-ui-icons/RoundedCorner'>; -} -declare module 'material-ui-icons/Router.js' { - declare module.exports: $Exports<'material-ui-icons/Router'>; -} -declare module 'material-ui-icons/Rowing.js' { - declare module.exports: $Exports<'material-ui-icons/Rowing'>; -} -declare module 'material-ui-icons/RssFeed.js' { - declare module.exports: $Exports<'material-ui-icons/RssFeed'>; -} -declare module 'material-ui-icons/RvHookup.js' { - declare module.exports: $Exports<'material-ui-icons/RvHookup'>; -} -declare module 'material-ui-icons/Satellite.js' { - declare module.exports: $Exports<'material-ui-icons/Satellite'>; -} -declare module 'material-ui-icons/Save.js' { - declare module.exports: $Exports<'material-ui-icons/Save'>; -} -declare module 'material-ui-icons/Scanner.js' { - declare module.exports: $Exports<'material-ui-icons/Scanner'>; -} -declare module 'material-ui-icons/Schedule.js' { - declare module.exports: $Exports<'material-ui-icons/Schedule'>; -} -declare module 'material-ui-icons/School.js' { - declare module.exports: $Exports<'material-ui-icons/School'>; -} -declare module 'material-ui-icons/ScreenLockLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/ScreenLockLandscape'>; -} -declare module 'material-ui-icons/ScreenLockPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/ScreenLockPortrait'>; -} -declare module 'material-ui-icons/ScreenLockRotation.js' { - declare module.exports: $Exports<'material-ui-icons/ScreenLockRotation'>; -} -declare module 'material-ui-icons/ScreenRotation.js' { - declare module.exports: $Exports<'material-ui-icons/ScreenRotation'>; -} -declare module 'material-ui-icons/ScreenShare.js' { - declare module.exports: $Exports<'material-ui-icons/ScreenShare'>; -} -declare module 'material-ui-icons/SdCard.js' { - declare module.exports: $Exports<'material-ui-icons/SdCard'>; -} -declare module 'material-ui-icons/SdStorage.js' { - declare module.exports: $Exports<'material-ui-icons/SdStorage'>; -} -declare module 'material-ui-icons/Search.js' { - declare module.exports: $Exports<'material-ui-icons/Search'>; -} -declare module 'material-ui-icons/Security.js' { - declare module.exports: $Exports<'material-ui-icons/Security'>; -} -declare module 'material-ui-icons/SelectAll.js' { - declare module.exports: $Exports<'material-ui-icons/SelectAll'>; -} -declare module 'material-ui-icons/Send.js' { - declare module.exports: $Exports<'material-ui-icons/Send'>; -} -declare module 'material-ui-icons/SentimentDissatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/SentimentDissatisfied'>; -} -declare module 'material-ui-icons/SentimentNeutral.js' { - declare module.exports: $Exports<'material-ui-icons/SentimentNeutral'>; -} -declare module 'material-ui-icons/SentimentSatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/SentimentSatisfied'>; -} -declare module 'material-ui-icons/SentimentVeryDissatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/SentimentVeryDissatisfied'>; -} -declare module 'material-ui-icons/SentimentVerySatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/SentimentVerySatisfied'>; -} -declare module 'material-ui-icons/Settings.js' { - declare module.exports: $Exports<'material-ui-icons/Settings'>; -} -declare module 'material-ui-icons/SettingsApplications.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsApplications'>; -} -declare module 'material-ui-icons/SettingsBackupRestore.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsBackupRestore'>; -} -declare module 'material-ui-icons/SettingsBluetooth.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsBluetooth'>; -} -declare module 'material-ui-icons/SettingsBrightness.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsBrightness'>; -} -declare module 'material-ui-icons/SettingsCell.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsCell'>; -} -declare module 'material-ui-icons/SettingsEthernet.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsEthernet'>; -} -declare module 'material-ui-icons/SettingsInputAntenna.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsInputAntenna'>; -} -declare module 'material-ui-icons/SettingsInputComponent.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsInputComponent'>; -} -declare module 'material-ui-icons/SettingsInputComposite.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsInputComposite'>; -} -declare module 'material-ui-icons/SettingsInputHdmi.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsInputHdmi'>; -} -declare module 'material-ui-icons/SettingsInputSvideo.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsInputSvideo'>; -} -declare module 'material-ui-icons/SettingsOverscan.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsOverscan'>; -} -declare module 'material-ui-icons/SettingsPhone.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsPhone'>; -} -declare module 'material-ui-icons/SettingsPower.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsPower'>; -} -declare module 'material-ui-icons/SettingsRemote.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsRemote'>; -} -declare module 'material-ui-icons/SettingsSystemDaydream.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsSystemDaydream'>; -} -declare module 'material-ui-icons/SettingsVoice.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsVoice'>; -} -declare module 'material-ui-icons/Share.js' { - declare module.exports: $Exports<'material-ui-icons/Share'>; -} -declare module 'material-ui-icons/Shop.js' { - declare module.exports: $Exports<'material-ui-icons/Shop'>; -} -declare module 'material-ui-icons/ShoppingBasket.js' { - declare module.exports: $Exports<'material-ui-icons/ShoppingBasket'>; -} -declare module 'material-ui-icons/ShoppingCart.js' { - declare module.exports: $Exports<'material-ui-icons/ShoppingCart'>; -} -declare module 'material-ui-icons/ShopTwo.js' { - declare module.exports: $Exports<'material-ui-icons/ShopTwo'>; -} -declare module 'material-ui-icons/ShortText.js' { - declare module.exports: $Exports<'material-ui-icons/ShortText'>; -} -declare module 'material-ui-icons/ShowChart.js' { - declare module.exports: $Exports<'material-ui-icons/ShowChart'>; -} -declare module 'material-ui-icons/Shuffle.js' { - declare module.exports: $Exports<'material-ui-icons/Shuffle'>; -} -declare module 'material-ui-icons/SignalCellular0Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellular0Bar'>; -} -declare module 'material-ui-icons/SignalCellular1Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellular1Bar'>; -} -declare module 'material-ui-icons/SignalCellular2Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellular2Bar'>; -} -declare module 'material-ui-icons/SignalCellular3Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellular3Bar'>; -} -declare module 'material-ui-icons/SignalCellular4Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellular4Bar'>; -} -declare module 'material-ui-icons/SignalCellularConnectedNoInternet0Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularConnectedNoInternet0Bar'>; -} -declare module 'material-ui-icons/SignalCellularConnectedNoInternet1Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularConnectedNoInternet1Bar'>; -} -declare module 'material-ui-icons/SignalCellularConnectedNoInternet2Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularConnectedNoInternet2Bar'>; -} -declare module 'material-ui-icons/SignalCellularConnectedNoInternet3Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularConnectedNoInternet3Bar'>; -} -declare module 'material-ui-icons/SignalCellularConnectedNoInternet4Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularConnectedNoInternet4Bar'>; -} -declare module 'material-ui-icons/SignalCellularNoSim.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularNoSim'>; -} -declare module 'material-ui-icons/SignalCellularNull.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularNull'>; -} -declare module 'material-ui-icons/SignalCellularOff.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularOff'>; -} -declare module 'material-ui-icons/SignalWifi0Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi0Bar'>; -} -declare module 'material-ui-icons/SignalWifi1Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi1Bar'>; -} -declare module 'material-ui-icons/SignalWifi1BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi1BarLock'>; -} -declare module 'material-ui-icons/SignalWifi2Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi2Bar'>; -} -declare module 'material-ui-icons/SignalWifi2BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi2BarLock'>; -} -declare module 'material-ui-icons/SignalWifi3Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi3Bar'>; -} -declare module 'material-ui-icons/SignalWifi3BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi3BarLock'>; -} -declare module 'material-ui-icons/SignalWifi4Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi4Bar'>; -} -declare module 'material-ui-icons/SignalWifi4BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi4BarLock'>; -} -declare module 'material-ui-icons/SignalWifiOff.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifiOff'>; -} -declare module 'material-ui-icons/SimCard.js' { - declare module.exports: $Exports<'material-ui-icons/SimCard'>; -} -declare module 'material-ui-icons/SimCardAlert.js' { - declare module.exports: $Exports<'material-ui-icons/SimCardAlert'>; -} -declare module 'material-ui-icons/SkipNext.js' { - declare module.exports: $Exports<'material-ui-icons/SkipNext'>; -} -declare module 'material-ui-icons/SkipPrevious.js' { - declare module.exports: $Exports<'material-ui-icons/SkipPrevious'>; -} -declare module 'material-ui-icons/Slideshow.js' { - declare module.exports: $Exports<'material-ui-icons/Slideshow'>; -} -declare module 'material-ui-icons/SlowMotionVideo.js' { - declare module.exports: $Exports<'material-ui-icons/SlowMotionVideo'>; -} -declare module 'material-ui-icons/Smartphone.js' { - declare module.exports: $Exports<'material-ui-icons/Smartphone'>; -} -declare module 'material-ui-icons/SmokeFree.js' { - declare module.exports: $Exports<'material-ui-icons/SmokeFree'>; -} -declare module 'material-ui-icons/SmokingRooms.js' { - declare module.exports: $Exports<'material-ui-icons/SmokingRooms'>; -} -declare module 'material-ui-icons/Sms.js' { - declare module.exports: $Exports<'material-ui-icons/Sms'>; -} -declare module 'material-ui-icons/SmsFailed.js' { - declare module.exports: $Exports<'material-ui-icons/SmsFailed'>; -} -declare module 'material-ui-icons/Snooze.js' { - declare module.exports: $Exports<'material-ui-icons/Snooze'>; -} -declare module 'material-ui-icons/Sort.js' { - declare module.exports: $Exports<'material-ui-icons/Sort'>; -} -declare module 'material-ui-icons/SortByAlpha.js' { - declare module.exports: $Exports<'material-ui-icons/SortByAlpha'>; -} -declare module 'material-ui-icons/Spa.js' { - declare module.exports: $Exports<'material-ui-icons/Spa'>; -} -declare module 'material-ui-icons/SpaceBar.js' { - declare module.exports: $Exports<'material-ui-icons/SpaceBar'>; -} -declare module 'material-ui-icons/Speaker.js' { - declare module.exports: $Exports<'material-ui-icons/Speaker'>; -} -declare module 'material-ui-icons/SpeakerGroup.js' { - declare module.exports: $Exports<'material-ui-icons/SpeakerGroup'>; -} -declare module 'material-ui-icons/SpeakerNotes.js' { - declare module.exports: $Exports<'material-ui-icons/SpeakerNotes'>; -} -declare module 'material-ui-icons/SpeakerNotesOff.js' { - declare module.exports: $Exports<'material-ui-icons/SpeakerNotesOff'>; -} -declare module 'material-ui-icons/SpeakerPhone.js' { - declare module.exports: $Exports<'material-ui-icons/SpeakerPhone'>; -} -declare module 'material-ui-icons/Spellcheck.js' { - declare module.exports: $Exports<'material-ui-icons/Spellcheck'>; -} -declare module 'material-ui-icons/Star.js' { - declare module.exports: $Exports<'material-ui-icons/Star'>; -} -declare module 'material-ui-icons/StarBorder.js' { - declare module.exports: $Exports<'material-ui-icons/StarBorder'>; -} -declare module 'material-ui-icons/StarHalf.js' { - declare module.exports: $Exports<'material-ui-icons/StarHalf'>; -} -declare module 'material-ui-icons/Stars.js' { - declare module.exports: $Exports<'material-ui-icons/Stars'>; -} -declare module 'material-ui-icons/StayCurrentLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/StayCurrentLandscape'>; -} -declare module 'material-ui-icons/StayCurrentPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/StayCurrentPortrait'>; -} -declare module 'material-ui-icons/StayPrimaryLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/StayPrimaryLandscape'>; -} -declare module 'material-ui-icons/StayPrimaryPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/StayPrimaryPortrait'>; -} -declare module 'material-ui-icons/Stop.js' { - declare module.exports: $Exports<'material-ui-icons/Stop'>; -} -declare module 'material-ui-icons/StopScreenShare.js' { - declare module.exports: $Exports<'material-ui-icons/StopScreenShare'>; -} -declare module 'material-ui-icons/Storage.js' { - declare module.exports: $Exports<'material-ui-icons/Storage'>; -} -declare module 'material-ui-icons/Store.js' { - declare module.exports: $Exports<'material-ui-icons/Store'>; -} -declare module 'material-ui-icons/StoreMallDirectory.js' { - declare module.exports: $Exports<'material-ui-icons/StoreMallDirectory'>; -} -declare module 'material-ui-icons/Straighten.js' { - declare module.exports: $Exports<'material-ui-icons/Straighten'>; -} -declare module 'material-ui-icons/Streetview.js' { - declare module.exports: $Exports<'material-ui-icons/Streetview'>; -} -declare module 'material-ui-icons/StrikethroughS.js' { - declare module.exports: $Exports<'material-ui-icons/StrikethroughS'>; -} -declare module 'material-ui-icons/Style.js' { - declare module.exports: $Exports<'material-ui-icons/Style'>; -} -declare module 'material-ui-icons/SubdirectoryArrowLeft.js' { - declare module.exports: $Exports<'material-ui-icons/SubdirectoryArrowLeft'>; -} -declare module 'material-ui-icons/SubdirectoryArrowRight.js' { - declare module.exports: $Exports<'material-ui-icons/SubdirectoryArrowRight'>; -} -declare module 'material-ui-icons/Subject.js' { - declare module.exports: $Exports<'material-ui-icons/Subject'>; -} -declare module 'material-ui-icons/Subscriptions.js' { - declare module.exports: $Exports<'material-ui-icons/Subscriptions'>; -} -declare module 'material-ui-icons/Subtitles.js' { - declare module.exports: $Exports<'material-ui-icons/Subtitles'>; -} -declare module 'material-ui-icons/Subway.js' { - declare module.exports: $Exports<'material-ui-icons/Subway'>; -} -declare module 'material-ui-icons/SupervisorAccount.js' { - declare module.exports: $Exports<'material-ui-icons/SupervisorAccount'>; -} -declare module 'material-ui-icons/SurroundSound.js' { - declare module.exports: $Exports<'material-ui-icons/SurroundSound'>; -} -declare module 'material-ui-icons/SwapCalls.js' { - declare module.exports: $Exports<'material-ui-icons/SwapCalls'>; -} -declare module 'material-ui-icons/SwapHoriz.js' { - declare module.exports: $Exports<'material-ui-icons/SwapHoriz'>; -} -declare module 'material-ui-icons/SwapVert.js' { - declare module.exports: $Exports<'material-ui-icons/SwapVert'>; -} -declare module 'material-ui-icons/SwapVerticalCircle.js' { - declare module.exports: $Exports<'material-ui-icons/SwapVerticalCircle'>; -} -declare module 'material-ui-icons/SwitchCamera.js' { - declare module.exports: $Exports<'material-ui-icons/SwitchCamera'>; -} -declare module 'material-ui-icons/SwitchVideo.js' { - declare module.exports: $Exports<'material-ui-icons/SwitchVideo'>; -} -declare module 'material-ui-icons/Sync.js' { - declare module.exports: $Exports<'material-ui-icons/Sync'>; -} -declare module 'material-ui-icons/SyncDisabled.js' { - declare module.exports: $Exports<'material-ui-icons/SyncDisabled'>; -} -declare module 'material-ui-icons/SyncProblem.js' { - declare module.exports: $Exports<'material-ui-icons/SyncProblem'>; -} -declare module 'material-ui-icons/SystemUpdate.js' { - declare module.exports: $Exports<'material-ui-icons/SystemUpdate'>; -} -declare module 'material-ui-icons/SystemUpdateAlt.js' { - declare module.exports: $Exports<'material-ui-icons/SystemUpdateAlt'>; -} -declare module 'material-ui-icons/Tab.js' { - declare module.exports: $Exports<'material-ui-icons/Tab'>; -} -declare module 'material-ui-icons/Tablet.js' { - declare module.exports: $Exports<'material-ui-icons/Tablet'>; -} -declare module 'material-ui-icons/TabletAndroid.js' { - declare module.exports: $Exports<'material-ui-icons/TabletAndroid'>; -} -declare module 'material-ui-icons/TabletMac.js' { - declare module.exports: $Exports<'material-ui-icons/TabletMac'>; -} -declare module 'material-ui-icons/TabUnselected.js' { - declare module.exports: $Exports<'material-ui-icons/TabUnselected'>; -} -declare module 'material-ui-icons/TagFaces.js' { - declare module.exports: $Exports<'material-ui-icons/TagFaces'>; -} -declare module 'material-ui-icons/TapAndPlay.js' { - declare module.exports: $Exports<'material-ui-icons/TapAndPlay'>; -} -declare module 'material-ui-icons/Terrain.js' { - declare module.exports: $Exports<'material-ui-icons/Terrain'>; -} -declare module 'material-ui-icons/TextFields.js' { - declare module.exports: $Exports<'material-ui-icons/TextFields'>; -} -declare module 'material-ui-icons/TextFormat.js' { - declare module.exports: $Exports<'material-ui-icons/TextFormat'>; -} -declare module 'material-ui-icons/Textsms.js' { - declare module.exports: $Exports<'material-ui-icons/Textsms'>; -} -declare module 'material-ui-icons/Texture.js' { - declare module.exports: $Exports<'material-ui-icons/Texture'>; -} -declare module 'material-ui-icons/Theaters.js' { - declare module.exports: $Exports<'material-ui-icons/Theaters'>; -} -declare module 'material-ui-icons/ThreeDRotation.js' { - declare module.exports: $Exports<'material-ui-icons/ThreeDRotation'>; -} -declare module 'material-ui-icons/ThumbDown.js' { - declare module.exports: $Exports<'material-ui-icons/ThumbDown'>; -} -declare module 'material-ui-icons/ThumbsUpDown.js' { - declare module.exports: $Exports<'material-ui-icons/ThumbsUpDown'>; -} -declare module 'material-ui-icons/ThumbUp.js' { - declare module.exports: $Exports<'material-ui-icons/ThumbUp'>; -} -declare module 'material-ui-icons/Timelapse.js' { - declare module.exports: $Exports<'material-ui-icons/Timelapse'>; -} -declare module 'material-ui-icons/Timeline.js' { - declare module.exports: $Exports<'material-ui-icons/Timeline'>; -} -declare module 'material-ui-icons/Timer.js' { - declare module.exports: $Exports<'material-ui-icons/Timer'>; -} -declare module 'material-ui-icons/Timer10.js' { - declare module.exports: $Exports<'material-ui-icons/Timer10'>; -} -declare module 'material-ui-icons/Timer3.js' { - declare module.exports: $Exports<'material-ui-icons/Timer3'>; -} -declare module 'material-ui-icons/TimerOff.js' { - declare module.exports: $Exports<'material-ui-icons/TimerOff'>; -} -declare module 'material-ui-icons/TimeToLeave.js' { - declare module.exports: $Exports<'material-ui-icons/TimeToLeave'>; -} -declare module 'material-ui-icons/Title.js' { - declare module.exports: $Exports<'material-ui-icons/Title'>; -} -declare module 'material-ui-icons/Toc.js' { - declare module.exports: $Exports<'material-ui-icons/Toc'>; -} -declare module 'material-ui-icons/Today.js' { - declare module.exports: $Exports<'material-ui-icons/Today'>; -} -declare module 'material-ui-icons/Toll.js' { - declare module.exports: $Exports<'material-ui-icons/Toll'>; -} -declare module 'material-ui-icons/Tonality.js' { - declare module.exports: $Exports<'material-ui-icons/Tonality'>; -} -declare module 'material-ui-icons/TouchApp.js' { - declare module.exports: $Exports<'material-ui-icons/TouchApp'>; -} -declare module 'material-ui-icons/Toys.js' { - declare module.exports: $Exports<'material-ui-icons/Toys'>; -} -declare module 'material-ui-icons/TrackChanges.js' { - declare module.exports: $Exports<'material-ui-icons/TrackChanges'>; -} -declare module 'material-ui-icons/Traffic.js' { - declare module.exports: $Exports<'material-ui-icons/Traffic'>; -} -declare module 'material-ui-icons/Train.js' { - declare module.exports: $Exports<'material-ui-icons/Train'>; -} -declare module 'material-ui-icons/Tram.js' { - declare module.exports: $Exports<'material-ui-icons/Tram'>; -} -declare module 'material-ui-icons/TransferWithinAStation.js' { - declare module.exports: $Exports<'material-ui-icons/TransferWithinAStation'>; -} -declare module 'material-ui-icons/Transform.js' { - declare module.exports: $Exports<'material-ui-icons/Transform'>; -} -declare module 'material-ui-icons/Translate.js' { - declare module.exports: $Exports<'material-ui-icons/Translate'>; -} -declare module 'material-ui-icons/TrendingDown.js' { - declare module.exports: $Exports<'material-ui-icons/TrendingDown'>; -} -declare module 'material-ui-icons/TrendingFlat.js' { - declare module.exports: $Exports<'material-ui-icons/TrendingFlat'>; -} -declare module 'material-ui-icons/TrendingUp.js' { - declare module.exports: $Exports<'material-ui-icons/TrendingUp'>; -} -declare module 'material-ui-icons/Tune.js' { - declare module.exports: $Exports<'material-ui-icons/Tune'>; -} -declare module 'material-ui-icons/TurnedIn.js' { - declare module.exports: $Exports<'material-ui-icons/TurnedIn'>; -} -declare module 'material-ui-icons/TurnedInNot.js' { - declare module.exports: $Exports<'material-ui-icons/TurnedInNot'>; -} -declare module 'material-ui-icons/Tv.js' { - declare module.exports: $Exports<'material-ui-icons/Tv'>; -} -declare module 'material-ui-icons/Unarchive.js' { - declare module.exports: $Exports<'material-ui-icons/Unarchive'>; -} -declare module 'material-ui-icons/Undo.js' { - declare module.exports: $Exports<'material-ui-icons/Undo'>; -} -declare module 'material-ui-icons/UnfoldLess.js' { - declare module.exports: $Exports<'material-ui-icons/UnfoldLess'>; -} -declare module 'material-ui-icons/UnfoldMore.js' { - declare module.exports: $Exports<'material-ui-icons/UnfoldMore'>; -} -declare module 'material-ui-icons/Update.js' { - declare module.exports: $Exports<'material-ui-icons/Update'>; -} -declare module 'material-ui-icons/Usb.js' { - declare module.exports: $Exports<'material-ui-icons/Usb'>; -} -declare module 'material-ui-icons/VerifiedUser.js' { - declare module.exports: $Exports<'material-ui-icons/VerifiedUser'>; -} -declare module 'material-ui-icons/VerticalAlignBottom.js' { - declare module.exports: $Exports<'material-ui-icons/VerticalAlignBottom'>; -} -declare module 'material-ui-icons/VerticalAlignCenter.js' { - declare module.exports: $Exports<'material-ui-icons/VerticalAlignCenter'>; -} -declare module 'material-ui-icons/VerticalAlignTop.js' { - declare module.exports: $Exports<'material-ui-icons/VerticalAlignTop'>; -} -declare module 'material-ui-icons/Vibration.js' { - declare module.exports: $Exports<'material-ui-icons/Vibration'>; -} -declare module 'material-ui-icons/VideoCall.js' { - declare module.exports: $Exports<'material-ui-icons/VideoCall'>; -} -declare module 'material-ui-icons/Videocam.js' { - declare module.exports: $Exports<'material-ui-icons/Videocam'>; -} -declare module 'material-ui-icons/VideocamOff.js' { - declare module.exports: $Exports<'material-ui-icons/VideocamOff'>; -} -declare module 'material-ui-icons/VideogameAsset.js' { - declare module.exports: $Exports<'material-ui-icons/VideogameAsset'>; -} -declare module 'material-ui-icons/VideoLabel.js' { - declare module.exports: $Exports<'material-ui-icons/VideoLabel'>; -} -declare module 'material-ui-icons/VideoLibrary.js' { - declare module.exports: $Exports<'material-ui-icons/VideoLibrary'>; -} -declare module 'material-ui-icons/ViewAgenda.js' { - declare module.exports: $Exports<'material-ui-icons/ViewAgenda'>; -} -declare module 'material-ui-icons/ViewArray.js' { - declare module.exports: $Exports<'material-ui-icons/ViewArray'>; -} -declare module 'material-ui-icons/ViewCarousel.js' { - declare module.exports: $Exports<'material-ui-icons/ViewCarousel'>; -} -declare module 'material-ui-icons/ViewColumn.js' { - declare module.exports: $Exports<'material-ui-icons/ViewColumn'>; -} -declare module 'material-ui-icons/ViewComfy.js' { - declare module.exports: $Exports<'material-ui-icons/ViewComfy'>; -} -declare module 'material-ui-icons/ViewCompact.js' { - declare module.exports: $Exports<'material-ui-icons/ViewCompact'>; -} -declare module 'material-ui-icons/ViewDay.js' { - declare module.exports: $Exports<'material-ui-icons/ViewDay'>; -} -declare module 'material-ui-icons/ViewHeadline.js' { - declare module.exports: $Exports<'material-ui-icons/ViewHeadline'>; -} -declare module 'material-ui-icons/ViewList.js' { - declare module.exports: $Exports<'material-ui-icons/ViewList'>; -} -declare module 'material-ui-icons/ViewModule.js' { - declare module.exports: $Exports<'material-ui-icons/ViewModule'>; -} -declare module 'material-ui-icons/ViewQuilt.js' { - declare module.exports: $Exports<'material-ui-icons/ViewQuilt'>; -} -declare module 'material-ui-icons/ViewStream.js' { - declare module.exports: $Exports<'material-ui-icons/ViewStream'>; -} -declare module 'material-ui-icons/ViewWeek.js' { - declare module.exports: $Exports<'material-ui-icons/ViewWeek'>; -} -declare module 'material-ui-icons/Vignette.js' { - declare module.exports: $Exports<'material-ui-icons/Vignette'>; -} -declare module 'material-ui-icons/Visibility.js' { - declare module.exports: $Exports<'material-ui-icons/Visibility'>; -} -declare module 'material-ui-icons/VisibilityOff.js' { - declare module.exports: $Exports<'material-ui-icons/VisibilityOff'>; -} -declare module 'material-ui-icons/VoiceChat.js' { - declare module.exports: $Exports<'material-ui-icons/VoiceChat'>; -} -declare module 'material-ui-icons/Voicemail.js' { - declare module.exports: $Exports<'material-ui-icons/Voicemail'>; -} -declare module 'material-ui-icons/VolumeDown.js' { - declare module.exports: $Exports<'material-ui-icons/VolumeDown'>; -} -declare module 'material-ui-icons/VolumeMute.js' { - declare module.exports: $Exports<'material-ui-icons/VolumeMute'>; -} -declare module 'material-ui-icons/VolumeOff.js' { - declare module.exports: $Exports<'material-ui-icons/VolumeOff'>; -} -declare module 'material-ui-icons/VolumeUp.js' { - declare module.exports: $Exports<'material-ui-icons/VolumeUp'>; -} -declare module 'material-ui-icons/VpnKey.js' { - declare module.exports: $Exports<'material-ui-icons/VpnKey'>; -} -declare module 'material-ui-icons/VpnLock.js' { - declare module.exports: $Exports<'material-ui-icons/VpnLock'>; -} -declare module 'material-ui-icons/Wallpaper.js' { - declare module.exports: $Exports<'material-ui-icons/Wallpaper'>; -} -declare module 'material-ui-icons/Warning.js' { - declare module.exports: $Exports<'material-ui-icons/Warning'>; -} -declare module 'material-ui-icons/Watch.js' { - declare module.exports: $Exports<'material-ui-icons/Watch'>; -} -declare module 'material-ui-icons/WatchLater.js' { - declare module.exports: $Exports<'material-ui-icons/WatchLater'>; -} -declare module 'material-ui-icons/WbAuto.js' { - declare module.exports: $Exports<'material-ui-icons/WbAuto'>; -} -declare module 'material-ui-icons/WbCloudy.js' { - declare module.exports: $Exports<'material-ui-icons/WbCloudy'>; -} -declare module 'material-ui-icons/WbIncandescent.js' { - declare module.exports: $Exports<'material-ui-icons/WbIncandescent'>; -} -declare module 'material-ui-icons/WbIridescent.js' { - declare module.exports: $Exports<'material-ui-icons/WbIridescent'>; -} -declare module 'material-ui-icons/WbSunny.js' { - declare module.exports: $Exports<'material-ui-icons/WbSunny'>; -} -declare module 'material-ui-icons/Wc.js' { - declare module.exports: $Exports<'material-ui-icons/Wc'>; -} -declare module 'material-ui-icons/Web.js' { - declare module.exports: $Exports<'material-ui-icons/Web'>; -} -declare module 'material-ui-icons/WebAsset.js' { - declare module.exports: $Exports<'material-ui-icons/WebAsset'>; -} -declare module 'material-ui-icons/Weekend.js' { - declare module.exports: $Exports<'material-ui-icons/Weekend'>; -} -declare module 'material-ui-icons/Whatshot.js' { - declare module.exports: $Exports<'material-ui-icons/Whatshot'>; -} -declare module 'material-ui-icons/Widgets.js' { - declare module.exports: $Exports<'material-ui-icons/Widgets'>; -} -declare module 'material-ui-icons/Wifi.js' { - declare module.exports: $Exports<'material-ui-icons/Wifi'>; -} -declare module 'material-ui-icons/WifiLock.js' { - declare module.exports: $Exports<'material-ui-icons/WifiLock'>; -} -declare module 'material-ui-icons/WifiTethering.js' { - declare module.exports: $Exports<'material-ui-icons/WifiTethering'>; -} -declare module 'material-ui-icons/Work.js' { - declare module.exports: $Exports<'material-ui-icons/Work'>; -} -declare module 'material-ui-icons/WrapText.js' { - declare module.exports: $Exports<'material-ui-icons/WrapText'>; -} -declare module 'material-ui-icons/YoutubeSearchedFor.js' { - declare module.exports: $Exports<'material-ui-icons/YoutubeSearchedFor'>; -} -declare module 'material-ui-icons/ZoomIn.js' { - declare module.exports: $Exports<'material-ui-icons/ZoomIn'>; -} -declare module 'material-ui-icons/ZoomOut.js' { - declare module.exports: $Exports<'material-ui-icons/ZoomOut'>; -} -declare module 'material-ui-icons/ZoomOutMap.js' { - declare module.exports: $Exports<'material-ui-icons/ZoomOutMap'>; -} diff --git a/dashboard/assets/flow-typed/npm/path_vx.x.x.js b/dashboard/assets/flow-typed/npm/path_vx.x.x.js deleted file mode 100644 index 8936c42ba2..0000000000 --- a/dashboard/assets/flow-typed/npm/path_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: e931b17fb0a809fe442a2efc46879228 -// flow-typed version: <>/path_v^0.12.7/flow_v0.59.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'path' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'path' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'path/path' { - declare module.exports: any; -} - -// Filename aliases -declare module 'path/path.js' { - declare module.exports: $Exports<'path/path'>; -} diff --git a/dashboard/assets/flow-typed/npm/react-transition-group_vx.x.x.js b/dashboard/assets/flow-typed/npm/react-transition-group_vx.x.x.js deleted file mode 100644 index cf458143fb..0000000000 --- a/dashboard/assets/flow-typed/npm/react-transition-group_vx.x.x.js +++ /dev/null @@ -1,87 +0,0 @@ -// flow-typed signature: 342a3d0c93da454166459879159cf1af -// flow-typed version: <>/react-transition-group_v^2.2.1/flow_v0.59.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-transition-group' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'react-transition-group' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'react-transition-group/CSSTransition' { - declare module.exports: any; -} - -declare module 'react-transition-group/dist/react-transition-group' { - declare module.exports: any; -} - -declare module 'react-transition-group/dist/react-transition-group.min' { - declare module.exports: any; -} - -declare module 'react-transition-group/Transition' { - declare module.exports: any; -} - -declare module 'react-transition-group/TransitionGroup' { - declare module.exports: any; -} - -declare module 'react-transition-group/utils/ChildMapping' { - declare module.exports: any; -} - -declare module 'react-transition-group/utils/PropTypes' { - declare module.exports: any; -} - -declare module 'react-transition-group/utils/SimpleSet' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-transition-group/CSSTransition.js' { - declare module.exports: $Exports<'react-transition-group/CSSTransition'>; -} -declare module 'react-transition-group/dist/react-transition-group.js' { - declare module.exports: $Exports<'react-transition-group/dist/react-transition-group'>; -} -declare module 'react-transition-group/dist/react-transition-group.min.js' { - declare module.exports: $Exports<'react-transition-group/dist/react-transition-group.min'>; -} -declare module 'react-transition-group/index' { - declare module.exports: $Exports<'react-transition-group'>; -} -declare module 'react-transition-group/index.js' { - declare module.exports: $Exports<'react-transition-group'>; -} -declare module 'react-transition-group/Transition.js' { - declare module.exports: $Exports<'react-transition-group/Transition'>; -} -declare module 'react-transition-group/TransitionGroup.js' { - declare module.exports: $Exports<'react-transition-group/TransitionGroup'>; -} -declare module 'react-transition-group/utils/ChildMapping.js' { - declare module.exports: $Exports<'react-transition-group/utils/ChildMapping'>; -} -declare module 'react-transition-group/utils/PropTypes.js' { - declare module.exports: $Exports<'react-transition-group/utils/PropTypes'>; -} -declare module 'react-transition-group/utils/SimpleSet.js' { - declare module.exports: $Exports<'react-transition-group/utils/SimpleSet'>; -} diff --git a/dashboard/assets/flow-typed/npm/recharts_vx.x.x.js b/dashboard/assets/flow-typed/npm/recharts_vx.x.x.js deleted file mode 100644 index e6cfbfa17f..0000000000 --- a/dashboard/assets/flow-typed/npm/recharts_vx.x.x.js +++ /dev/null @@ -1,1572 +0,0 @@ -// flow-typed signature: 6912de747520bc787bc8599c098dba0b -// flow-typed version: <>/recharts_v^1.0.0-beta.5/flow_v0.59.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'recharts' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'recharts' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'recharts/demo/component/AreaChart' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/BarChart' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/BrushDemo' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/CartesianAxis' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/CartesianGrid' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/ComposedChart' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/Curve' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/CustomLineDot' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/DemoRadarItem' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/DemoSankeyLink' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/DemoSankeyNode' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/DemoTreemapItem' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/index' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/Legend' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/LineChart' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/Pie' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/PieChart' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/PolarAngleAxis' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/PolarGrid' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/PolarRadiusAxis' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/RadarChart' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/RadialBarChart' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/Rectangle' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/ResponsiveContainer' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/Sankey' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/ScatterChart' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/Sector' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/TextDemo' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/Treemap' { - declare module.exports: any; -} - -declare module 'recharts/demo/component/utils' { - declare module.exports: any; -} - -declare module 'recharts/demo/container/App' { - declare module.exports: any; -} - -declare module 'recharts/demo/index' { - declare module.exports: any; -} - -declare module 'recharts/demo/webpack.config' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/Area' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/Bar' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/Brush' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/CartesianAxis' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/CartesianGrid' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/ErrorBar' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/Line' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/ReferenceArea' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/ReferenceDot' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/ReferenceLine' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/Scatter' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/XAxis' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/YAxis' { - declare module.exports: any; -} - -declare module 'recharts/es6/cartesian/ZAxis' { - declare module.exports: any; -} - -declare module 'recharts/es6/chart/AreaChart' { - declare module.exports: any; -} - -declare module 'recharts/es6/chart/BarChart' { - declare module.exports: any; -} - -declare module 'recharts/es6/chart/ComposedChart' { - declare module.exports: any; -} - -declare module 'recharts/es6/chart/generateCategoricalChart' { - declare module.exports: any; -} - -declare module 'recharts/es6/chart/LineChart' { - declare module.exports: any; -} - -declare module 'recharts/es6/chart/PieChart' { - declare module.exports: any; -} - -declare module 'recharts/es6/chart/RadarChart' { - declare module.exports: any; -} - -declare module 'recharts/es6/chart/RadialBarChart' { - declare module.exports: any; -} - -declare module 'recharts/es6/chart/Sankey' { - declare module.exports: any; -} - -declare module 'recharts/es6/chart/ScatterChart' { - declare module.exports: any; -} - -declare module 'recharts/es6/chart/Treemap' { - declare module.exports: any; -} - -declare module 'recharts/es6/component/Cell' { - declare module.exports: any; -} - -declare module 'recharts/es6/component/DefaultLegendContent' { - declare module.exports: any; -} - -declare module 'recharts/es6/component/DefaultTooltipContent' { - declare module.exports: any; -} - -declare module 'recharts/es6/component/Label' { - declare module.exports: any; -} - -declare module 'recharts/es6/component/LabelList' { - declare module.exports: any; -} - -declare module 'recharts/es6/component/Legend' { - declare module.exports: any; -} - -declare module 'recharts/es6/component/ResponsiveContainer' { - declare module.exports: any; -} - -declare module 'recharts/es6/component/Text' { - declare module.exports: any; -} - -declare module 'recharts/es6/component/Tooltip' { - declare module.exports: any; -} - -declare module 'recharts/es6/container/Layer' { - declare module.exports: any; -} - -declare module 'recharts/es6/container/Surface' { - declare module.exports: any; -} - -declare module 'recharts/es6/index' { - declare module.exports: any; -} - -declare module 'recharts/es6/polar/Pie' { - declare module.exports: any; -} - -declare module 'recharts/es6/polar/PolarAngleAxis' { - declare module.exports: any; -} - -declare module 'recharts/es6/polar/PolarGrid' { - declare module.exports: any; -} - -declare module 'recharts/es6/polar/PolarRadiusAxis' { - declare module.exports: any; -} - -declare module 'recharts/es6/polar/Radar' { - declare module.exports: any; -} - -declare module 'recharts/es6/polar/RadialBar' { - declare module.exports: any; -} - -declare module 'recharts/es6/polyfill' { - declare module.exports: any; -} - -declare module 'recharts/es6/shape/Cross' { - declare module.exports: any; -} - -declare module 'recharts/es6/shape/Curve' { - declare module.exports: any; -} - -declare module 'recharts/es6/shape/Dot' { - declare module.exports: any; -} - -declare module 'recharts/es6/shape/Polygon' { - declare module.exports: any; -} - -declare module 'recharts/es6/shape/Rectangle' { - declare module.exports: any; -} - -declare module 'recharts/es6/shape/Sector' { - declare module.exports: any; -} - -declare module 'recharts/es6/shape/Symbols' { - declare module.exports: any; -} - -declare module 'recharts/es6/util/AnimationDecorator' { - declare module.exports: any; -} - -declare module 'recharts/es6/util/CartesianUtils' { - declare module.exports: any; -} - -declare module 'recharts/es6/util/ChartUtils' { - declare module.exports: any; -} - -declare module 'recharts/es6/util/CssPrefixUtils' { - declare module.exports: any; -} - -declare module 'recharts/es6/util/DataUtils' { - declare module.exports: any; -} - -declare module 'recharts/es6/util/DOMUtils' { - declare module.exports: any; -} - -declare module 'recharts/es6/util/Events' { - declare module.exports: any; -} - -declare module 'recharts/es6/util/LogUtils' { - declare module.exports: any; -} - -declare module 'recharts/es6/util/PolarUtils' { - declare module.exports: any; -} - -declare module 'recharts/es6/util/PureRender' { - declare module.exports: any; -} - -declare module 'recharts/es6/util/ReactUtils' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/Area' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/Bar' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/Brush' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/CartesianAxis' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/CartesianGrid' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/ErrorBar' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/Line' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/ReferenceArea' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/ReferenceDot' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/ReferenceLine' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/Scatter' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/XAxis' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/YAxis' { - declare module.exports: any; -} - -declare module 'recharts/lib/cartesian/ZAxis' { - declare module.exports: any; -} - -declare module 'recharts/lib/chart/AreaChart' { - declare module.exports: any; -} - -declare module 'recharts/lib/chart/BarChart' { - declare module.exports: any; -} - -declare module 'recharts/lib/chart/ComposedChart' { - declare module.exports: any; -} - -declare module 'recharts/lib/chart/generateCategoricalChart' { - declare module.exports: any; -} - -declare module 'recharts/lib/chart/LineChart' { - declare module.exports: any; -} - -declare module 'recharts/lib/chart/PieChart' { - declare module.exports: any; -} - -declare module 'recharts/lib/chart/RadarChart' { - declare module.exports: any; -} - -declare module 'recharts/lib/chart/RadialBarChart' { - declare module.exports: any; -} - -declare module 'recharts/lib/chart/Sankey' { - declare module.exports: any; -} - -declare module 'recharts/lib/chart/ScatterChart' { - declare module.exports: any; -} - -declare module 'recharts/lib/chart/Treemap' { - declare module.exports: any; -} - -declare module 'recharts/lib/component/Cell' { - declare module.exports: any; -} - -declare module 'recharts/lib/component/DefaultLegendContent' { - declare module.exports: any; -} - -declare module 'recharts/lib/component/DefaultTooltipContent' { - declare module.exports: any; -} - -declare module 'recharts/lib/component/Label' { - declare module.exports: any; -} - -declare module 'recharts/lib/component/LabelList' { - declare module.exports: any; -} - -declare module 'recharts/lib/component/Legend' { - declare module.exports: any; -} - -declare module 'recharts/lib/component/ResponsiveContainer' { - declare module.exports: any; -} - -declare module 'recharts/lib/component/Text' { - declare module.exports: any; -} - -declare module 'recharts/lib/component/Tooltip' { - declare module.exports: any; -} - -declare module 'recharts/lib/container/Layer' { - declare module.exports: any; -} - -declare module 'recharts/lib/container/Surface' { - declare module.exports: any; -} - -declare module 'recharts/lib/index' { - declare module.exports: any; -} - -declare module 'recharts/lib/polar/Pie' { - declare module.exports: any; -} - -declare module 'recharts/lib/polar/PolarAngleAxis' { - declare module.exports: any; -} - -declare module 'recharts/lib/polar/PolarGrid' { - declare module.exports: any; -} - -declare module 'recharts/lib/polar/PolarRadiusAxis' { - declare module.exports: any; -} - -declare module 'recharts/lib/polar/Radar' { - declare module.exports: any; -} - -declare module 'recharts/lib/polar/RadialBar' { - declare module.exports: any; -} - -declare module 'recharts/lib/polyfill' { - declare module.exports: any; -} - -declare module 'recharts/lib/shape/Cross' { - declare module.exports: any; -} - -declare module 'recharts/lib/shape/Curve' { - declare module.exports: any; -} - -declare module 'recharts/lib/shape/Dot' { - declare module.exports: any; -} - -declare module 'recharts/lib/shape/Polygon' { - declare module.exports: any; -} - -declare module 'recharts/lib/shape/Rectangle' { - declare module.exports: any; -} - -declare module 'recharts/lib/shape/Sector' { - declare module.exports: any; -} - -declare module 'recharts/lib/shape/Symbols' { - declare module.exports: any; -} - -declare module 'recharts/lib/util/AnimationDecorator' { - declare module.exports: any; -} - -declare module 'recharts/lib/util/CartesianUtils' { - declare module.exports: any; -} - -declare module 'recharts/lib/util/ChartUtils' { - declare module.exports: any; -} - -declare module 'recharts/lib/util/CssPrefixUtils' { - declare module.exports: any; -} - -declare module 'recharts/lib/util/DataUtils' { - declare module.exports: any; -} - -declare module 'recharts/lib/util/DOMUtils' { - declare module.exports: any; -} - -declare module 'recharts/lib/util/Events' { - declare module.exports: any; -} - -declare module 'recharts/lib/util/LogUtils' { - declare module.exports: any; -} - -declare module 'recharts/lib/util/PolarUtils' { - declare module.exports: any; -} - -declare module 'recharts/lib/util/PureRender' { - declare module.exports: any; -} - -declare module 'recharts/lib/util/ReactUtils' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/Area' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/Bar' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/Brush' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/CartesianAxis' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/CartesianGrid' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/ErrorBar' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/Line' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/ReferenceArea' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/ReferenceDot' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/ReferenceLine' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/Scatter' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/XAxis' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/YAxis' { - declare module.exports: any; -} - -declare module 'recharts/src/cartesian/ZAxis' { - declare module.exports: any; -} - -declare module 'recharts/src/chart/AreaChart' { - declare module.exports: any; -} - -declare module 'recharts/src/chart/BarChart' { - declare module.exports: any; -} - -declare module 'recharts/src/chart/ComposedChart' { - declare module.exports: any; -} - -declare module 'recharts/src/chart/generateCategoricalChart' { - declare module.exports: any; -} - -declare module 'recharts/src/chart/LineChart' { - declare module.exports: any; -} - -declare module 'recharts/src/chart/PieChart' { - declare module.exports: any; -} - -declare module 'recharts/src/chart/RadarChart' { - declare module.exports: any; -} - -declare module 'recharts/src/chart/RadialBarChart' { - declare module.exports: any; -} - -declare module 'recharts/src/chart/Sankey' { - declare module.exports: any; -} - -declare module 'recharts/src/chart/ScatterChart' { - declare module.exports: any; -} - -declare module 'recharts/src/chart/Treemap' { - declare module.exports: any; -} - -declare module 'recharts/src/component/Cell' { - declare module.exports: any; -} - -declare module 'recharts/src/component/DefaultLegendContent' { - declare module.exports: any; -} - -declare module 'recharts/src/component/DefaultTooltipContent' { - declare module.exports: any; -} - -declare module 'recharts/src/component/Label' { - declare module.exports: any; -} - -declare module 'recharts/src/component/LabelList' { - declare module.exports: any; -} - -declare module 'recharts/src/component/Legend' { - declare module.exports: any; -} - -declare module 'recharts/src/component/ResponsiveContainer' { - declare module.exports: any; -} - -declare module 'recharts/src/component/Text' { - declare module.exports: any; -} - -declare module 'recharts/src/component/Tooltip' { - declare module.exports: any; -} - -declare module 'recharts/src/container/Layer' { - declare module.exports: any; -} - -declare module 'recharts/src/container/Surface' { - declare module.exports: any; -} - -declare module 'recharts/src/index' { - declare module.exports: any; -} - -declare module 'recharts/src/polar/Pie' { - declare module.exports: any; -} - -declare module 'recharts/src/polar/PolarAngleAxis' { - declare module.exports: any; -} - -declare module 'recharts/src/polar/PolarGrid' { - declare module.exports: any; -} - -declare module 'recharts/src/polar/PolarRadiusAxis' { - declare module.exports: any; -} - -declare module 'recharts/src/polar/Radar' { - declare module.exports: any; -} - -declare module 'recharts/src/polar/RadialBar' { - declare module.exports: any; -} - -declare module 'recharts/src/polyfill' { - declare module.exports: any; -} - -declare module 'recharts/src/shape/Cross' { - declare module.exports: any; -} - -declare module 'recharts/src/shape/Curve' { - declare module.exports: any; -} - -declare module 'recharts/src/shape/Dot' { - declare module.exports: any; -} - -declare module 'recharts/src/shape/Polygon' { - declare module.exports: any; -} - -declare module 'recharts/src/shape/Rectangle' { - declare module.exports: any; -} - -declare module 'recharts/src/shape/Sector' { - declare module.exports: any; -} - -declare module 'recharts/src/shape/Symbols' { - declare module.exports: any; -} - -declare module 'recharts/src/util/AnimationDecorator' { - declare module.exports: any; -} - -declare module 'recharts/src/util/CartesianUtils' { - declare module.exports: any; -} - -declare module 'recharts/src/util/ChartUtils' { - declare module.exports: any; -} - -declare module 'recharts/src/util/CssPrefixUtils' { - declare module.exports: any; -} - -declare module 'recharts/src/util/DataUtils' { - declare module.exports: any; -} - -declare module 'recharts/src/util/DOMUtils' { - declare module.exports: any; -} - -declare module 'recharts/src/util/Events' { - declare module.exports: any; -} - -declare module 'recharts/src/util/LogUtils' { - declare module.exports: any; -} - -declare module 'recharts/src/util/PolarUtils' { - declare module.exports: any; -} - -declare module 'recharts/src/util/PureRender' { - declare module.exports: any; -} - -declare module 'recharts/src/util/ReactUtils' { - declare module.exports: any; -} - -declare module 'recharts/umd/Recharts' { - declare module.exports: any; -} - -declare module 'recharts/umd/Recharts.min' { - declare module.exports: any; -} - -// Filename aliases -declare module 'recharts/demo/component/AreaChart.js' { - declare module.exports: $Exports<'recharts/demo/component/AreaChart'>; -} -declare module 'recharts/demo/component/BarChart.js' { - declare module.exports: $Exports<'recharts/demo/component/BarChart'>; -} -declare module 'recharts/demo/component/BrushDemo.js' { - declare module.exports: $Exports<'recharts/demo/component/BrushDemo'>; -} -declare module 'recharts/demo/component/CartesianAxis.js' { - declare module.exports: $Exports<'recharts/demo/component/CartesianAxis'>; -} -declare module 'recharts/demo/component/CartesianGrid.js' { - declare module.exports: $Exports<'recharts/demo/component/CartesianGrid'>; -} -declare module 'recharts/demo/component/ComposedChart.js' { - declare module.exports: $Exports<'recharts/demo/component/ComposedChart'>; -} -declare module 'recharts/demo/component/Curve.js' { - declare module.exports: $Exports<'recharts/demo/component/Curve'>; -} -declare module 'recharts/demo/component/CustomLineDot.js' { - declare module.exports: $Exports<'recharts/demo/component/CustomLineDot'>; -} -declare module 'recharts/demo/component/DemoRadarItem.js' { - declare module.exports: $Exports<'recharts/demo/component/DemoRadarItem'>; -} -declare module 'recharts/demo/component/DemoSankeyLink.js' { - declare module.exports: $Exports<'recharts/demo/component/DemoSankeyLink'>; -} -declare module 'recharts/demo/component/DemoSankeyNode.js' { - declare module.exports: $Exports<'recharts/demo/component/DemoSankeyNode'>; -} -declare module 'recharts/demo/component/DemoTreemapItem.js' { - declare module.exports: $Exports<'recharts/demo/component/DemoTreemapItem'>; -} -declare module 'recharts/demo/component/index.js' { - declare module.exports: $Exports<'recharts/demo/component/index'>; -} -declare module 'recharts/demo/component/Legend.js' { - declare module.exports: $Exports<'recharts/demo/component/Legend'>; -} -declare module 'recharts/demo/component/LineChart.js' { - declare module.exports: $Exports<'recharts/demo/component/LineChart'>; -} -declare module 'recharts/demo/component/Pie.js' { - declare module.exports: $Exports<'recharts/demo/component/Pie'>; -} -declare module 'recharts/demo/component/PieChart.js' { - declare module.exports: $Exports<'recharts/demo/component/PieChart'>; -} -declare module 'recharts/demo/component/PolarAngleAxis.js' { - declare module.exports: $Exports<'recharts/demo/component/PolarAngleAxis'>; -} -declare module 'recharts/demo/component/PolarGrid.js' { - declare module.exports: $Exports<'recharts/demo/component/PolarGrid'>; -} -declare module 'recharts/demo/component/PolarRadiusAxis.js' { - declare module.exports: $Exports<'recharts/demo/component/PolarRadiusAxis'>; -} -declare module 'recharts/demo/component/RadarChart.js' { - declare module.exports: $Exports<'recharts/demo/component/RadarChart'>; -} -declare module 'recharts/demo/component/RadialBarChart.js' { - declare module.exports: $Exports<'recharts/demo/component/RadialBarChart'>; -} -declare module 'recharts/demo/component/Rectangle.js' { - declare module.exports: $Exports<'recharts/demo/component/Rectangle'>; -} -declare module 'recharts/demo/component/ResponsiveContainer.js' { - declare module.exports: $Exports<'recharts/demo/component/ResponsiveContainer'>; -} -declare module 'recharts/demo/component/Sankey.js' { - declare module.exports: $Exports<'recharts/demo/component/Sankey'>; -} -declare module 'recharts/demo/component/ScatterChart.js' { - declare module.exports: $Exports<'recharts/demo/component/ScatterChart'>; -} -declare module 'recharts/demo/component/Sector.js' { - declare module.exports: $Exports<'recharts/demo/component/Sector'>; -} -declare module 'recharts/demo/component/TextDemo.js' { - declare module.exports: $Exports<'recharts/demo/component/TextDemo'>; -} -declare module 'recharts/demo/component/Treemap.js' { - declare module.exports: $Exports<'recharts/demo/component/Treemap'>; -} -declare module 'recharts/demo/component/utils.js' { - declare module.exports: $Exports<'recharts/demo/component/utils'>; -} -declare module 'recharts/demo/container/App.js' { - declare module.exports: $Exports<'recharts/demo/container/App'>; -} -declare module 'recharts/demo/index.js' { - declare module.exports: $Exports<'recharts/demo/index'>; -} -declare module 'recharts/demo/webpack.config.js' { - declare module.exports: $Exports<'recharts/demo/webpack.config'>; -} -declare module 'recharts/es6/cartesian/Area.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/Area'>; -} -declare module 'recharts/es6/cartesian/Bar.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/Bar'>; -} -declare module 'recharts/es6/cartesian/Brush.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/Brush'>; -} -declare module 'recharts/es6/cartesian/CartesianAxis.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/CartesianAxis'>; -} -declare module 'recharts/es6/cartesian/CartesianGrid.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/CartesianGrid'>; -} -declare module 'recharts/es6/cartesian/ErrorBar.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/ErrorBar'>; -} -declare module 'recharts/es6/cartesian/Line.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/Line'>; -} -declare module 'recharts/es6/cartesian/ReferenceArea.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/ReferenceArea'>; -} -declare module 'recharts/es6/cartesian/ReferenceDot.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/ReferenceDot'>; -} -declare module 'recharts/es6/cartesian/ReferenceLine.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/ReferenceLine'>; -} -declare module 'recharts/es6/cartesian/Scatter.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/Scatter'>; -} -declare module 'recharts/es6/cartesian/XAxis.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/XAxis'>; -} -declare module 'recharts/es6/cartesian/YAxis.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/YAxis'>; -} -declare module 'recharts/es6/cartesian/ZAxis.js' { - declare module.exports: $Exports<'recharts/es6/cartesian/ZAxis'>; -} -declare module 'recharts/es6/chart/AreaChart.js' { - declare module.exports: $Exports<'recharts/es6/chart/AreaChart'>; -} -declare module 'recharts/es6/chart/BarChart.js' { - declare module.exports: $Exports<'recharts/es6/chart/BarChart'>; -} -declare module 'recharts/es6/chart/ComposedChart.js' { - declare module.exports: $Exports<'recharts/es6/chart/ComposedChart'>; -} -declare module 'recharts/es6/chart/generateCategoricalChart.js' { - declare module.exports: $Exports<'recharts/es6/chart/generateCategoricalChart'>; -} -declare module 'recharts/es6/chart/LineChart.js' { - declare module.exports: $Exports<'recharts/es6/chart/LineChart'>; -} -declare module 'recharts/es6/chart/PieChart.js' { - declare module.exports: $Exports<'recharts/es6/chart/PieChart'>; -} -declare module 'recharts/es6/chart/RadarChart.js' { - declare module.exports: $Exports<'recharts/es6/chart/RadarChart'>; -} -declare module 'recharts/es6/chart/RadialBarChart.js' { - declare module.exports: $Exports<'recharts/es6/chart/RadialBarChart'>; -} -declare module 'recharts/es6/chart/Sankey.js' { - declare module.exports: $Exports<'recharts/es6/chart/Sankey'>; -} -declare module 'recharts/es6/chart/ScatterChart.js' { - declare module.exports: $Exports<'recharts/es6/chart/ScatterChart'>; -} -declare module 'recharts/es6/chart/Treemap.js' { - declare module.exports: $Exports<'recharts/es6/chart/Treemap'>; -} -declare module 'recharts/es6/component/Cell.js' { - declare module.exports: $Exports<'recharts/es6/component/Cell'>; -} -declare module 'recharts/es6/component/DefaultLegendContent.js' { - declare module.exports: $Exports<'recharts/es6/component/DefaultLegendContent'>; -} -declare module 'recharts/es6/component/DefaultTooltipContent.js' { - declare module.exports: $Exports<'recharts/es6/component/DefaultTooltipContent'>; -} -declare module 'recharts/es6/component/Label.js' { - declare module.exports: $Exports<'recharts/es6/component/Label'>; -} -declare module 'recharts/es6/component/LabelList.js' { - declare module.exports: $Exports<'recharts/es6/component/LabelList'>; -} -declare module 'recharts/es6/component/Legend.js' { - declare module.exports: $Exports<'recharts/es6/component/Legend'>; -} -declare module 'recharts/es6/component/ResponsiveContainer.js' { - declare module.exports: $Exports<'recharts/es6/component/ResponsiveContainer'>; -} -declare module 'recharts/es6/component/Text.js' { - declare module.exports: $Exports<'recharts/es6/component/Text'>; -} -declare module 'recharts/es6/component/Tooltip.js' { - declare module.exports: $Exports<'recharts/es6/component/Tooltip'>; -} -declare module 'recharts/es6/container/Layer.js' { - declare module.exports: $Exports<'recharts/es6/container/Layer'>; -} -declare module 'recharts/es6/container/Surface.js' { - declare module.exports: $Exports<'recharts/es6/container/Surface'>; -} -declare module 'recharts/es6/index.js' { - declare module.exports: $Exports<'recharts/es6/index'>; -} -declare module 'recharts/es6/polar/Pie.js' { - declare module.exports: $Exports<'recharts/es6/polar/Pie'>; -} -declare module 'recharts/es6/polar/PolarAngleAxis.js' { - declare module.exports: $Exports<'recharts/es6/polar/PolarAngleAxis'>; -} -declare module 'recharts/es6/polar/PolarGrid.js' { - declare module.exports: $Exports<'recharts/es6/polar/PolarGrid'>; -} -declare module 'recharts/es6/polar/PolarRadiusAxis.js' { - declare module.exports: $Exports<'recharts/es6/polar/PolarRadiusAxis'>; -} -declare module 'recharts/es6/polar/Radar.js' { - declare module.exports: $Exports<'recharts/es6/polar/Radar'>; -} -declare module 'recharts/es6/polar/RadialBar.js' { - declare module.exports: $Exports<'recharts/es6/polar/RadialBar'>; -} -declare module 'recharts/es6/polyfill.js' { - declare module.exports: $Exports<'recharts/es6/polyfill'>; -} -declare module 'recharts/es6/shape/Cross.js' { - declare module.exports: $Exports<'recharts/es6/shape/Cross'>; -} -declare module 'recharts/es6/shape/Curve.js' { - declare module.exports: $Exports<'recharts/es6/shape/Curve'>; -} -declare module 'recharts/es6/shape/Dot.js' { - declare module.exports: $Exports<'recharts/es6/shape/Dot'>; -} -declare module 'recharts/es6/shape/Polygon.js' { - declare module.exports: $Exports<'recharts/es6/shape/Polygon'>; -} -declare module 'recharts/es6/shape/Rectangle.js' { - declare module.exports: $Exports<'recharts/es6/shape/Rectangle'>; -} -declare module 'recharts/es6/shape/Sector.js' { - declare module.exports: $Exports<'recharts/es6/shape/Sector'>; -} -declare module 'recharts/es6/shape/Symbols.js' { - declare module.exports: $Exports<'recharts/es6/shape/Symbols'>; -} -declare module 'recharts/es6/util/AnimationDecorator.js' { - declare module.exports: $Exports<'recharts/es6/util/AnimationDecorator'>; -} -declare module 'recharts/es6/util/CartesianUtils.js' { - declare module.exports: $Exports<'recharts/es6/util/CartesianUtils'>; -} -declare module 'recharts/es6/util/ChartUtils.js' { - declare module.exports: $Exports<'recharts/es6/util/ChartUtils'>; -} -declare module 'recharts/es6/util/CssPrefixUtils.js' { - declare module.exports: $Exports<'recharts/es6/util/CssPrefixUtils'>; -} -declare module 'recharts/es6/util/DataUtils.js' { - declare module.exports: $Exports<'recharts/es6/util/DataUtils'>; -} -declare module 'recharts/es6/util/DOMUtils.js' { - declare module.exports: $Exports<'recharts/es6/util/DOMUtils'>; -} -declare module 'recharts/es6/util/Events.js' { - declare module.exports: $Exports<'recharts/es6/util/Events'>; -} -declare module 'recharts/es6/util/LogUtils.js' { - declare module.exports: $Exports<'recharts/es6/util/LogUtils'>; -} -declare module 'recharts/es6/util/PolarUtils.js' { - declare module.exports: $Exports<'recharts/es6/util/PolarUtils'>; -} -declare module 'recharts/es6/util/PureRender.js' { - declare module.exports: $Exports<'recharts/es6/util/PureRender'>; -} -declare module 'recharts/es6/util/ReactUtils.js' { - declare module.exports: $Exports<'recharts/es6/util/ReactUtils'>; -} -declare module 'recharts/lib/cartesian/Area.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/Area'>; -} -declare module 'recharts/lib/cartesian/Bar.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/Bar'>; -} -declare module 'recharts/lib/cartesian/Brush.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/Brush'>; -} -declare module 'recharts/lib/cartesian/CartesianAxis.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/CartesianAxis'>; -} -declare module 'recharts/lib/cartesian/CartesianGrid.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/CartesianGrid'>; -} -declare module 'recharts/lib/cartesian/ErrorBar.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/ErrorBar'>; -} -declare module 'recharts/lib/cartesian/Line.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/Line'>; -} -declare module 'recharts/lib/cartesian/ReferenceArea.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/ReferenceArea'>; -} -declare module 'recharts/lib/cartesian/ReferenceDot.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/ReferenceDot'>; -} -declare module 'recharts/lib/cartesian/ReferenceLine.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/ReferenceLine'>; -} -declare module 'recharts/lib/cartesian/Scatter.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/Scatter'>; -} -declare module 'recharts/lib/cartesian/XAxis.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/XAxis'>; -} -declare module 'recharts/lib/cartesian/YAxis.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/YAxis'>; -} -declare module 'recharts/lib/cartesian/ZAxis.js' { - declare module.exports: $Exports<'recharts/lib/cartesian/ZAxis'>; -} -declare module 'recharts/lib/chart/AreaChart.js' { - declare module.exports: $Exports<'recharts/lib/chart/AreaChart'>; -} -declare module 'recharts/lib/chart/BarChart.js' { - declare module.exports: $Exports<'recharts/lib/chart/BarChart'>; -} -declare module 'recharts/lib/chart/ComposedChart.js' { - declare module.exports: $Exports<'recharts/lib/chart/ComposedChart'>; -} -declare module 'recharts/lib/chart/generateCategoricalChart.js' { - declare module.exports: $Exports<'recharts/lib/chart/generateCategoricalChart'>; -} -declare module 'recharts/lib/chart/LineChart.js' { - declare module.exports: $Exports<'recharts/lib/chart/LineChart'>; -} -declare module 'recharts/lib/chart/PieChart.js' { - declare module.exports: $Exports<'recharts/lib/chart/PieChart'>; -} -declare module 'recharts/lib/chart/RadarChart.js' { - declare module.exports: $Exports<'recharts/lib/chart/RadarChart'>; -} -declare module 'recharts/lib/chart/RadialBarChart.js' { - declare module.exports: $Exports<'recharts/lib/chart/RadialBarChart'>; -} -declare module 'recharts/lib/chart/Sankey.js' { - declare module.exports: $Exports<'recharts/lib/chart/Sankey'>; -} -declare module 'recharts/lib/chart/ScatterChart.js' { - declare module.exports: $Exports<'recharts/lib/chart/ScatterChart'>; -} -declare module 'recharts/lib/chart/Treemap.js' { - declare module.exports: $Exports<'recharts/lib/chart/Treemap'>; -} -declare module 'recharts/lib/component/Cell.js' { - declare module.exports: $Exports<'recharts/lib/component/Cell'>; -} -declare module 'recharts/lib/component/DefaultLegendContent.js' { - declare module.exports: $Exports<'recharts/lib/component/DefaultLegendContent'>; -} -declare module 'recharts/lib/component/DefaultTooltipContent.js' { - declare module.exports: $Exports<'recharts/lib/component/DefaultTooltipContent'>; -} -declare module 'recharts/lib/component/Label.js' { - declare module.exports: $Exports<'recharts/lib/component/Label'>; -} -declare module 'recharts/lib/component/LabelList.js' { - declare module.exports: $Exports<'recharts/lib/component/LabelList'>; -} -declare module 'recharts/lib/component/Legend.js' { - declare module.exports: $Exports<'recharts/lib/component/Legend'>; -} -declare module 'recharts/lib/component/ResponsiveContainer.js' { - declare module.exports: $Exports<'recharts/lib/component/ResponsiveContainer'>; -} -declare module 'recharts/lib/component/Text.js' { - declare module.exports: $Exports<'recharts/lib/component/Text'>; -} -declare module 'recharts/lib/component/Tooltip.js' { - declare module.exports: $Exports<'recharts/lib/component/Tooltip'>; -} -declare module 'recharts/lib/container/Layer.js' { - declare module.exports: $Exports<'recharts/lib/container/Layer'>; -} -declare module 'recharts/lib/container/Surface.js' { - declare module.exports: $Exports<'recharts/lib/container/Surface'>; -} -declare module 'recharts/lib/index.js' { - declare module.exports: $Exports<'recharts/lib/index'>; -} -declare module 'recharts/lib/polar/Pie.js' { - declare module.exports: $Exports<'recharts/lib/polar/Pie'>; -} -declare module 'recharts/lib/polar/PolarAngleAxis.js' { - declare module.exports: $Exports<'recharts/lib/polar/PolarAngleAxis'>; -} -declare module 'recharts/lib/polar/PolarGrid.js' { - declare module.exports: $Exports<'recharts/lib/polar/PolarGrid'>; -} -declare module 'recharts/lib/polar/PolarRadiusAxis.js' { - declare module.exports: $Exports<'recharts/lib/polar/PolarRadiusAxis'>; -} -declare module 'recharts/lib/polar/Radar.js' { - declare module.exports: $Exports<'recharts/lib/polar/Radar'>; -} -declare module 'recharts/lib/polar/RadialBar.js' { - declare module.exports: $Exports<'recharts/lib/polar/RadialBar'>; -} -declare module 'recharts/lib/polyfill.js' { - declare module.exports: $Exports<'recharts/lib/polyfill'>; -} -declare module 'recharts/lib/shape/Cross.js' { - declare module.exports: $Exports<'recharts/lib/shape/Cross'>; -} -declare module 'recharts/lib/shape/Curve.js' { - declare module.exports: $Exports<'recharts/lib/shape/Curve'>; -} -declare module 'recharts/lib/shape/Dot.js' { - declare module.exports: $Exports<'recharts/lib/shape/Dot'>; -} -declare module 'recharts/lib/shape/Polygon.js' { - declare module.exports: $Exports<'recharts/lib/shape/Polygon'>; -} -declare module 'recharts/lib/shape/Rectangle.js' { - declare module.exports: $Exports<'recharts/lib/shape/Rectangle'>; -} -declare module 'recharts/lib/shape/Sector.js' { - declare module.exports: $Exports<'recharts/lib/shape/Sector'>; -} -declare module 'recharts/lib/shape/Symbols.js' { - declare module.exports: $Exports<'recharts/lib/shape/Symbols'>; -} -declare module 'recharts/lib/util/AnimationDecorator.js' { - declare module.exports: $Exports<'recharts/lib/util/AnimationDecorator'>; -} -declare module 'recharts/lib/util/CartesianUtils.js' { - declare module.exports: $Exports<'recharts/lib/util/CartesianUtils'>; -} -declare module 'recharts/lib/util/ChartUtils.js' { - declare module.exports: $Exports<'recharts/lib/util/ChartUtils'>; -} -declare module 'recharts/lib/util/CssPrefixUtils.js' { - declare module.exports: $Exports<'recharts/lib/util/CssPrefixUtils'>; -} -declare module 'recharts/lib/util/DataUtils.js' { - declare module.exports: $Exports<'recharts/lib/util/DataUtils'>; -} -declare module 'recharts/lib/util/DOMUtils.js' { - declare module.exports: $Exports<'recharts/lib/util/DOMUtils'>; -} -declare module 'recharts/lib/util/Events.js' { - declare module.exports: $Exports<'recharts/lib/util/Events'>; -} -declare module 'recharts/lib/util/LogUtils.js' { - declare module.exports: $Exports<'recharts/lib/util/LogUtils'>; -} -declare module 'recharts/lib/util/PolarUtils.js' { - declare module.exports: $Exports<'recharts/lib/util/PolarUtils'>; -} -declare module 'recharts/lib/util/PureRender.js' { - declare module.exports: $Exports<'recharts/lib/util/PureRender'>; -} -declare module 'recharts/lib/util/ReactUtils.js' { - declare module.exports: $Exports<'recharts/lib/util/ReactUtils'>; -} -declare module 'recharts/src/cartesian/Area.js' { - declare module.exports: $Exports<'recharts/src/cartesian/Area'>; -} -declare module 'recharts/src/cartesian/Bar.js' { - declare module.exports: $Exports<'recharts/src/cartesian/Bar'>; -} -declare module 'recharts/src/cartesian/Brush.js' { - declare module.exports: $Exports<'recharts/src/cartesian/Brush'>; -} -declare module 'recharts/src/cartesian/CartesianAxis.js' { - declare module.exports: $Exports<'recharts/src/cartesian/CartesianAxis'>; -} -declare module 'recharts/src/cartesian/CartesianGrid.js' { - declare module.exports: $Exports<'recharts/src/cartesian/CartesianGrid'>; -} -declare module 'recharts/src/cartesian/ErrorBar.js' { - declare module.exports: $Exports<'recharts/src/cartesian/ErrorBar'>; -} -declare module 'recharts/src/cartesian/Line.js' { - declare module.exports: $Exports<'recharts/src/cartesian/Line'>; -} -declare module 'recharts/src/cartesian/ReferenceArea.js' { - declare module.exports: $Exports<'recharts/src/cartesian/ReferenceArea'>; -} -declare module 'recharts/src/cartesian/ReferenceDot.js' { - declare module.exports: $Exports<'recharts/src/cartesian/ReferenceDot'>; -} -declare module 'recharts/src/cartesian/ReferenceLine.js' { - declare module.exports: $Exports<'recharts/src/cartesian/ReferenceLine'>; -} -declare module 'recharts/src/cartesian/Scatter.js' { - declare module.exports: $Exports<'recharts/src/cartesian/Scatter'>; -} -declare module 'recharts/src/cartesian/XAxis.js' { - declare module.exports: $Exports<'recharts/src/cartesian/XAxis'>; -} -declare module 'recharts/src/cartesian/YAxis.js' { - declare module.exports: $Exports<'recharts/src/cartesian/YAxis'>; -} -declare module 'recharts/src/cartesian/ZAxis.js' { - declare module.exports: $Exports<'recharts/src/cartesian/ZAxis'>; -} -declare module 'recharts/src/chart/AreaChart.js' { - declare module.exports: $Exports<'recharts/src/chart/AreaChart'>; -} -declare module 'recharts/src/chart/BarChart.js' { - declare module.exports: $Exports<'recharts/src/chart/BarChart'>; -} -declare module 'recharts/src/chart/ComposedChart.js' { - declare module.exports: $Exports<'recharts/src/chart/ComposedChart'>; -} -declare module 'recharts/src/chart/generateCategoricalChart.js' { - declare module.exports: $Exports<'recharts/src/chart/generateCategoricalChart'>; -} -declare module 'recharts/src/chart/LineChart.js' { - declare module.exports: $Exports<'recharts/src/chart/LineChart'>; -} -declare module 'recharts/src/chart/PieChart.js' { - declare module.exports: $Exports<'recharts/src/chart/PieChart'>; -} -declare module 'recharts/src/chart/RadarChart.js' { - declare module.exports: $Exports<'recharts/src/chart/RadarChart'>; -} -declare module 'recharts/src/chart/RadialBarChart.js' { - declare module.exports: $Exports<'recharts/src/chart/RadialBarChart'>; -} -declare module 'recharts/src/chart/Sankey.js' { - declare module.exports: $Exports<'recharts/src/chart/Sankey'>; -} -declare module 'recharts/src/chart/ScatterChart.js' { - declare module.exports: $Exports<'recharts/src/chart/ScatterChart'>; -} -declare module 'recharts/src/chart/Treemap.js' { - declare module.exports: $Exports<'recharts/src/chart/Treemap'>; -} -declare module 'recharts/src/component/Cell.js' { - declare module.exports: $Exports<'recharts/src/component/Cell'>; -} -declare module 'recharts/src/component/DefaultLegendContent.js' { - declare module.exports: $Exports<'recharts/src/component/DefaultLegendContent'>; -} -declare module 'recharts/src/component/DefaultTooltipContent.js' { - declare module.exports: $Exports<'recharts/src/component/DefaultTooltipContent'>; -} -declare module 'recharts/src/component/Label.js' { - declare module.exports: $Exports<'recharts/src/component/Label'>; -} -declare module 'recharts/src/component/LabelList.js' { - declare module.exports: $Exports<'recharts/src/component/LabelList'>; -} -declare module 'recharts/src/component/Legend.js' { - declare module.exports: $Exports<'recharts/src/component/Legend'>; -} -declare module 'recharts/src/component/ResponsiveContainer.js' { - declare module.exports: $Exports<'recharts/src/component/ResponsiveContainer'>; -} -declare module 'recharts/src/component/Text.js' { - declare module.exports: $Exports<'recharts/src/component/Text'>; -} -declare module 'recharts/src/component/Tooltip.js' { - declare module.exports: $Exports<'recharts/src/component/Tooltip'>; -} -declare module 'recharts/src/container/Layer.js' { - declare module.exports: $Exports<'recharts/src/container/Layer'>; -} -declare module 'recharts/src/container/Surface.js' { - declare module.exports: $Exports<'recharts/src/container/Surface'>; -} -declare module 'recharts/src/index.js' { - declare module.exports: $Exports<'recharts/src/index'>; -} -declare module 'recharts/src/polar/Pie.js' { - declare module.exports: $Exports<'recharts/src/polar/Pie'>; -} -declare module 'recharts/src/polar/PolarAngleAxis.js' { - declare module.exports: $Exports<'recharts/src/polar/PolarAngleAxis'>; -} -declare module 'recharts/src/polar/PolarGrid.js' { - declare module.exports: $Exports<'recharts/src/polar/PolarGrid'>; -} -declare module 'recharts/src/polar/PolarRadiusAxis.js' { - declare module.exports: $Exports<'recharts/src/polar/PolarRadiusAxis'>; -} -declare module 'recharts/src/polar/Radar.js' { - declare module.exports: $Exports<'recharts/src/polar/Radar'>; -} -declare module 'recharts/src/polar/RadialBar.js' { - declare module.exports: $Exports<'recharts/src/polar/RadialBar'>; -} -declare module 'recharts/src/polyfill.js' { - declare module.exports: $Exports<'recharts/src/polyfill'>; -} -declare module 'recharts/src/shape/Cross.js' { - declare module.exports: $Exports<'recharts/src/shape/Cross'>; -} -declare module 'recharts/src/shape/Curve.js' { - declare module.exports: $Exports<'recharts/src/shape/Curve'>; -} -declare module 'recharts/src/shape/Dot.js' { - declare module.exports: $Exports<'recharts/src/shape/Dot'>; -} -declare module 'recharts/src/shape/Polygon.js' { - declare module.exports: $Exports<'recharts/src/shape/Polygon'>; -} -declare module 'recharts/src/shape/Rectangle.js' { - declare module.exports: $Exports<'recharts/src/shape/Rectangle'>; -} -declare module 'recharts/src/shape/Sector.js' { - declare module.exports: $Exports<'recharts/src/shape/Sector'>; -} -declare module 'recharts/src/shape/Symbols.js' { - declare module.exports: $Exports<'recharts/src/shape/Symbols'>; -} -declare module 'recharts/src/util/AnimationDecorator.js' { - declare module.exports: $Exports<'recharts/src/util/AnimationDecorator'>; -} -declare module 'recharts/src/util/CartesianUtils.js' { - declare module.exports: $Exports<'recharts/src/util/CartesianUtils'>; -} -declare module 'recharts/src/util/ChartUtils.js' { - declare module.exports: $Exports<'recharts/src/util/ChartUtils'>; -} -declare module 'recharts/src/util/CssPrefixUtils.js' { - declare module.exports: $Exports<'recharts/src/util/CssPrefixUtils'>; -} -declare module 'recharts/src/util/DataUtils.js' { - declare module.exports: $Exports<'recharts/src/util/DataUtils'>; -} -declare module 'recharts/src/util/DOMUtils.js' { - declare module.exports: $Exports<'recharts/src/util/DOMUtils'>; -} -declare module 'recharts/src/util/Events.js' { - declare module.exports: $Exports<'recharts/src/util/Events'>; -} -declare module 'recharts/src/util/LogUtils.js' { - declare module.exports: $Exports<'recharts/src/util/LogUtils'>; -} -declare module 'recharts/src/util/PolarUtils.js' { - declare module.exports: $Exports<'recharts/src/util/PolarUtils'>; -} -declare module 'recharts/src/util/PureRender.js' { - declare module.exports: $Exports<'recharts/src/util/PureRender'>; -} -declare module 'recharts/src/util/ReactUtils.js' { - declare module.exports: $Exports<'recharts/src/util/ReactUtils'>; -} -declare module 'recharts/umd/Recharts.js' { - declare module.exports: $Exports<'recharts/umd/Recharts'>; -} -declare module 'recharts/umd/Recharts.min.js' { - declare module.exports: $Exports<'recharts/umd/Recharts.min'>; -} diff --git a/dashboard/assets/package-lock.json b/dashboard/assets/package-lock.json new file mode 100644 index 0000000000..38a7cea24f --- /dev/null +++ b/dashboard/assets/package-lock.json @@ -0,0 +1,6806 @@ +{ + "requires": true, + "lockfileVersion": 1, + "dependencies": { + "@babel/code-frame": { + "version": "7.0.0-beta.31", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.31.tgz", + "integrity": "sha512-yd7CkUughvHQoEahQqcMdrZw6o/6PwUxiRkfZuVDVHCDe77mysD/suoNyk5mK6phTnRW1kyIbPHyCJgxw++LXg==", + "requires": { + "chalk": "2.3.0", + "esutils": "2.0.2", + "js-tokens": "3.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", + "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", + "requires": { + "color-convert": "1.9.1" + } + }, + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", + "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", + "requires": { + "ansi-styles": "3.2.0", + "escape-string-regexp": "1.0.5", + "supports-color": "4.5.0" + } + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "2.0.0" + } + } + } + }, + "@babel/helper-function-name": { + "version": "7.0.0-beta.31", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.31.tgz", + "integrity": "sha512-c+DAyp8LMm2nzSs2uXEuxp4LYGSUYEyHtU3fU57avFChjsnTmmpWmXj2dv0yUxHTEydgVAv5fIzA+4KJwoqWDA==", + "requires": { + "@babel/helper-get-function-arity": "7.0.0-beta.31", + "@babel/template": "7.0.0-beta.31", + "@babel/traverse": "7.0.0-beta.31", + "@babel/types": "7.0.0-beta.31" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.0.0-beta.31", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.31.tgz", + "integrity": "sha512-m7rVVX/dMLbbB9NCzKYRrrFb0qZxgpmQ4Wv6y7zEsB6skoJHRuXVeb/hAFze79vXBbuD63ci7AVHXzAdZSk9KQ==", + "requires": { + "@babel/types": "7.0.0-beta.31" + } + }, + "@babel/template": { + "version": "7.0.0-beta.31", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.0.0-beta.31.tgz", + "integrity": "sha512-97IRmLvoDhIDSQkqklVt3UCxJsv0LUEVb/0DzXWtc8Lgiyxj567qZkmTG9aR21CmcJVVIvq2Y/moZj4oEpl5AA==", + "requires": { + "@babel/code-frame": "7.0.0-beta.31", + "@babel/types": "7.0.0-beta.31", + "babylon": "7.0.0-beta.31", + "lodash": "4.17.4" + }, + "dependencies": { + "babylon": { + "version": "7.0.0-beta.31", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.31.tgz", + "integrity": "sha512-6lm2mV3S51yEnKmQQNnswoABL1U1H1KHoCCVwdwI3hvIv+W7ya4ki7Aw4o4KxtUHjNKkK5WpZb22rrMMOcJXJQ==" + } + } + }, + "@babel/traverse": { + "version": "7.0.0-beta.31", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.0.0-beta.31.tgz", + "integrity": "sha512-3N+VJW+KlezEjFBG7WSYeMyC5kIqVLPb/PGSzCDPFcJrnArluD1GIl7Y3xC7cjKiTq2/JohaLWHVPjJWHlo9Gg==", + "requires": { + "@babel/code-frame": "7.0.0-beta.31", + "@babel/helper-function-name": "7.0.0-beta.31", + "@babel/types": "7.0.0-beta.31", + "babylon": "7.0.0-beta.31", + "debug": "3.1.0", + "globals": "10.4.0", + "invariant": "2.2.2", + "lodash": "4.17.4" + }, + "dependencies": { + "babylon": { + "version": "7.0.0-beta.31", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.31.tgz", + "integrity": "sha512-6lm2mV3S51yEnKmQQNnswoABL1U1H1KHoCCVwdwI3hvIv+W7ya4ki7Aw4o4KxtUHjNKkK5WpZb22rrMMOcJXJQ==" + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "globals": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-10.4.0.tgz", + "integrity": "sha512-uNUtxIZpGyuaq+5BqGGQHsL4wUlJAXRqOm6g3Y48/CWNGTLONgBibI0lh6lGxjR2HljFYUfszb+mk4WkgMntsA==" + } + } + }, + "@babel/types": { + "version": "7.0.0-beta.31", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.0.0-beta.31.tgz", + "integrity": "sha512-exAHB+NeFGxkfQ5dSUD03xl3zYGneeSk2Mw2ldTt/nTvYxuDiuSp3DlxgUBgzbdTFG4fbwPk0WtKWOoTXCmNGg==", + "requires": { + "esutils": "2.0.2", + "lodash": "4.17.4", + "to-fast-properties": "2.0.0" + }, + "dependencies": { + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + } + } + }, + "acorn": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.2.1.tgz", + "integrity": "sha512-jG0u7c4Ly+3QkkW18V+NRDN+4bWHdln30NL1ZL2AvFZZmQe/BfopYCtghCKKVBUSetZ4QKcyA0pY6/4Gw8Pv8w==" + }, + "acorn-dynamic-import": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz", + "integrity": "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ=", + "requires": { + "acorn": "4.0.13" + }, + "dependencies": { + "acorn": { + "version": "4.0.13", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", + "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" + } + } + }, + "acorn-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", + "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", + "requires": { + "acorn": "3.3.0" + }, + "dependencies": { + "acorn": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" + } + } + }, + "ajv": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", + "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "requires": { + "co": "4.6.0", + "fast-deep-equal": "1.0.0", + "fast-json-stable-stringify": "2.0.0", + "json-schema-traverse": "0.3.1" + } + }, + "ajv-keywords": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz", + "integrity": "sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=" + }, + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "requires": { + "kind-of": "3.2.2", + "longest": "1.0.1", + "repeat-string": "1.6.1" + } + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + }, + "ansi-escapes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz", + "integrity": "sha512-O/klc27mWNUigtv0F8NJWbLF00OcegQalkqKURWdosW08YZKi4m6CnSUSvIZG1otNJbTWhN01Hhz389DW7mvDQ==" + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "anymatch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", + "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", + "requires": { + "micromatch": "2.3.11", + "normalize-path": "2.1.1" + } + }, + "argparse": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", + "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=", + "requires": { + "sprintf-js": "1.0.3" + } + }, + "aria-query": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-0.7.0.tgz", + "integrity": "sha512-/r2lHl09V3o74+2MLKEdewoj37YZqiQZnfen1O4iNlrOjUgeKuu1U2yF3iKh6HJxqF+OXkLMfQv65Z/cvxD6vA==", + "requires": { + "ast-types-flow": "0.0.7" + } + }, + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "requires": { + "arr-flatten": "1.1.0" + } + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + }, + "array-includes": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz", + "integrity": "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=", + "requires": { + "define-properties": "1.1.2", + "es-abstract": "1.10.0" + } + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "requires": { + "array-uniq": "1.0.3" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" + }, + "asn1.js": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.9.2.tgz", + "integrity": "sha512-b/OsSjvWEo8Pi8H0zsDd2P6Uqo2TK2pH8gNLSJtNLM2Db0v2QaAZ0pBQJXVjAn4gBuugeVDr7s63ZogpUIwWDg==", + "requires": { + "bn.js": "4.11.8", + "inherits": "2.0.3", + "minimalistic-assert": "1.0.0" + } + }, + "assert": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", + "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", + "requires": { + "util": "0.10.3" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + }, + "async": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz", + "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==", + "requires": { + "lodash": "4.17.4" + } + }, + "async-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", + "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "autoprefixer": { + "version": "6.7.7", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz", + "integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=", + "requires": { + "browserslist": "1.7.7", + "caniuse-db": "1.0.30000784", + "normalize-range": "0.1.2", + "num2fraction": "1.2.2", + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0" + }, + "dependencies": { + "browserslist": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", + "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "requires": { + "caniuse-db": "1.0.30000784", + "electron-to-chromium": "1.3.30" + } + } + } + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" + }, + "axobject-query": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-0.1.0.tgz", + "integrity": "sha1-YvWdvFnJ+SQnWco0mWDnov48NsA=", + "requires": { + "ast-types-flow": "0.0.7" + } + }, + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "requires": { + "chalk": "1.1.3", + "esutils": "2.0.2", + "js-tokens": "3.0.2" + } + }, + "babel-core": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz", + "integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=", + "requires": { + "babel-code-frame": "6.26.0", + "babel-generator": "6.26.0", + "babel-helpers": "6.24.1", + "babel-messages": "6.23.0", + "babel-register": "6.26.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0", + "babylon": "6.18.0", + "convert-source-map": "1.5.1", + "debug": "2.6.9", + "json5": "0.5.1", + "lodash": "4.17.4", + "minimatch": "3.0.4", + "path-is-absolute": "1.0.1", + "private": "0.1.8", + "slash": "1.0.0", + "source-map": "0.5.7" + } + }, + "babel-eslint": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-8.0.3.tgz", + "integrity": "sha512-7D4iUpylEiKJPGbeSAlNddGcmA41PadgZ6UAb6JVyh003h3d0EbZusYFBR/+nBgqtaVJM2J2zUVa3N0hrpMH6g==", + "requires": { + "@babel/code-frame": "7.0.0-beta.31", + "@babel/traverse": "7.0.0-beta.31", + "@babel/types": "7.0.0-beta.31", + "babylon": "7.0.0-beta.31" + }, + "dependencies": { + "babylon": { + "version": "7.0.0-beta.31", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.31.tgz", + "integrity": "sha512-6lm2mV3S51yEnKmQQNnswoABL1U1H1KHoCCVwdwI3hvIv+W7ya4ki7Aw4o4KxtUHjNKkK5WpZb22rrMMOcJXJQ==" + } + } + }, + "babel-generator": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz", + "integrity": "sha1-rBriAHC3n248odMmlhMFN3TyDcU=", + "requires": { + "babel-messages": "6.23.0", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "detect-indent": "4.0.0", + "jsesc": "1.3.0", + "lodash": "4.17.4", + "source-map": "0.5.7", + "trim-right": "1.0.1" + } + }, + "babel-helper-bindify-decorators": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz", + "integrity": "sha1-FMGeXxQte0fxmlJDHlKxzLxAozA=", + "requires": { + "babel-runtime": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-builder-binary-assignment-operator-visitor": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz", + "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=", + "requires": { + "babel-helper-explode-assignable-expression": "6.24.1", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-builder-react-jsx": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz", + "integrity": "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=", + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "esutils": "2.0.2" + } + }, + "babel-helper-call-delegate": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz", + "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=", + "requires": { + "babel-helper-hoist-variables": "6.24.1", + "babel-runtime": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-define-map": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz", + "integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=", + "requires": { + "babel-helper-function-name": "6.24.1", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "lodash": "4.17.4" + } + }, + "babel-helper-explode-assignable-expression": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz", + "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=", + "requires": { + "babel-runtime": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-explode-class": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz", + "integrity": "sha1-fcKjkQ3uAHBW4eMdZAztPVTqqes=", + "requires": { + "babel-helper-bindify-decorators": "6.24.1", + "babel-runtime": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", + "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", + "requires": { + "babel-helper-get-function-arity": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-get-function-arity": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", + "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-hoist-variables": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz", + "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=", + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-optimise-call-expression": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz", + "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=", + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-regex": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz", + "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=", + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "lodash": "4.17.4" + } + }, + "babel-helper-remap-async-to-generator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz", + "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=", + "requires": { + "babel-helper-function-name": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helper-replace-supers": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz", + "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=", + "requires": { + "babel-helper-optimise-call-expression": "6.24.1", + "babel-messages": "6.23.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-helpers": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", + "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=", + "requires": { + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-loader": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.2.tgz", + "integrity": "sha512-jRwlFbINAeyDStqK6Dd5YuY0k5YuzQUvlz2ZamuXrXmxav3pNqe9vfJ402+2G+OmlJSXxCOpB6Uz0INM7RQe2A==", + "requires": { + "find-cache-dir": "1.0.0", + "loader-utils": "1.1.0", + "mkdirp": "0.5.1" + } + }, + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", + "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-check-es2015-constants": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz", + "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-syntax-async-functions": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz", + "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=" + }, + "babel-plugin-syntax-async-generators": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz", + "integrity": "sha1-a8lj67FuzLrmuStZbrfzXDQqi5o=" + }, + "babel-plugin-syntax-class-constructor-call": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz", + "integrity": "sha1-nLnTn+Q8hgC+yBRkVt3L1OGnZBY=" + }, + "babel-plugin-syntax-class-properties": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz", + "integrity": "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=" + }, + "babel-plugin-syntax-decorators": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz", + "integrity": "sha1-MSVjtNvePMgGzuPkFszurd0RrAs=" + }, + "babel-plugin-syntax-do-expressions": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz", + "integrity": "sha1-V0d1YTmqJtOQ0JQQsDdEugfkeW0=" + }, + "babel-plugin-syntax-dynamic-import": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz", + "integrity": "sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo=" + }, + "babel-plugin-syntax-exponentiation-operator": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz", + "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=" + }, + "babel-plugin-syntax-export-extensions": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz", + "integrity": "sha1-cKFITw+QiaToStRLrDU8lbmxJyE=" + }, + "babel-plugin-syntax-flow": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz", + "integrity": "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=" + }, + "babel-plugin-syntax-function-bind": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz", + "integrity": "sha1-SMSV8Xe98xqYHnMvVa3AvdJgH0Y=" + }, + "babel-plugin-syntax-jsx": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + }, + "babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", + "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" + }, + "babel-plugin-syntax-trailing-function-commas": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz", + "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=" + }, + "babel-plugin-transform-async-generator-functions": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz", + "integrity": "sha1-8FiQAUX9PpkHpt3yjaWfIVJYpds=", + "requires": { + "babel-helper-remap-async-to-generator": "6.24.1", + "babel-plugin-syntax-async-generators": "6.13.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-async-to-generator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz", + "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=", + "requires": { + "babel-helper-remap-async-to-generator": "6.24.1", + "babel-plugin-syntax-async-functions": "6.13.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-class-constructor-call": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz", + "integrity": "sha1-gNwoVQWsBn3LjWxl4vbxGrd2Xvk=", + "requires": { + "babel-plugin-syntax-class-constructor-call": "6.18.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-plugin-transform-class-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz", + "integrity": "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=", + "requires": { + "babel-helper-function-name": "6.24.1", + "babel-plugin-syntax-class-properties": "6.13.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-plugin-transform-decorators": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz", + "integrity": "sha1-eIAT2PjGtSIr33s0Q5Df13Vp4k0=", + "requires": { + "babel-helper-explode-class": "6.24.1", + "babel-plugin-syntax-decorators": "6.13.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-decorators-legacy": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-decorators-legacy/-/babel-plugin-transform-decorators-legacy-1.3.4.tgz", + "integrity": "sha1-dBtY9sW86eYCfgiC2cmU8E82aSU=", + "requires": { + "babel-plugin-syntax-decorators": "6.13.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-plugin-transform-do-expressions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz", + "integrity": "sha1-KMyvkoEtlJws0SgfaQyP3EaK6bs=", + "requires": { + "babel-plugin-syntax-do-expressions": "6.13.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-arrow-functions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", + "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-block-scoped-functions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz", + "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-block-scoping": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz", + "integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=", + "requires": { + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0", + "lodash": "4.17.4" + } + }, + "babel-plugin-transform-es2015-classes": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz", + "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=", + "requires": { + "babel-helper-define-map": "6.26.0", + "babel-helper-function-name": "6.24.1", + "babel-helper-optimise-call-expression": "6.24.1", + "babel-helper-replace-supers": "6.24.1", + "babel-messages": "6.23.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-computed-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz", + "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=", + "requires": { + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-plugin-transform-es2015-destructuring": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", + "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-duplicate-keys": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz", + "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=", + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-for-of": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz", + "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz", + "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=", + "requires": { + "babel-helper-function-name": "6.24.1", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-literals": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz", + "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-modules-amd": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz", + "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=", + "requires": { + "babel-plugin-transform-es2015-modules-commonjs": "6.26.0", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-plugin-transform-es2015-modules-commonjs": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz", + "integrity": "sha1-DYOUApt9xqvhqX7xgeAHWN0uXYo=", + "requires": { + "babel-plugin-transform-strict-mode": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-modules-systemjs": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz", + "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=", + "requires": { + "babel-helper-hoist-variables": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-plugin-transform-es2015-modules-umd": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz", + "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=", + "requires": { + "babel-plugin-transform-es2015-modules-amd": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0" + } + }, + "babel-plugin-transform-es2015-object-super": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz", + "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=", + "requires": { + "babel-helper-replace-supers": "6.24.1", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-parameters": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz", + "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=", + "requires": { + "babel-helper-call-delegate": "6.24.1", + "babel-helper-get-function-arity": "6.24.1", + "babel-runtime": "6.26.0", + "babel-template": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-shorthand-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz", + "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=", + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-spread": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz", + "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-sticky-regex": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", + "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=", + "requires": { + "babel-helper-regex": "6.26.0", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-plugin-transform-es2015-template-literals": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz", + "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-typeof-symbol": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz", + "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-es2015-unicode-regex": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", + "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=", + "requires": { + "babel-helper-regex": "6.26.0", + "babel-runtime": "6.26.0", + "regexpu-core": "2.0.0" + } + }, + "babel-plugin-transform-exponentiation-operator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz", + "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=", + "requires": { + "babel-helper-builder-binary-assignment-operator-visitor": "6.24.1", + "babel-plugin-syntax-exponentiation-operator": "6.13.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-export-extensions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz", + "integrity": "sha1-U3OLR+deghhYnuqUbLvTkQm75lM=", + "requires": { + "babel-plugin-syntax-export-extensions": "6.13.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-flow-strip-types": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz", + "integrity": "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=", + "requires": { + "babel-plugin-syntax-flow": "6.18.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-function-bind": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz", + "integrity": "sha1-xvuOlqwpajELjPjqQBRiQH3fapc=", + "requires": { + "babel-plugin-syntax-function-bind": "6.13.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-object-rest-spread": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", + "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=", + "requires": { + "babel-plugin-syntax-object-rest-spread": "6.13.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-react-display-name": { + "version": "6.25.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz", + "integrity": "sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-react-jsx": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz", + "integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=", + "requires": { + "babel-helper-builder-react-jsx": "6.26.0", + "babel-plugin-syntax-jsx": "6.18.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-react-jsx-self": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz", + "integrity": "sha1-322AqdomEqEh5t3XVYvL7PBuY24=", + "requires": { + "babel-plugin-syntax-jsx": "6.18.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-react-jsx-source": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz", + "integrity": "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=", + "requires": { + "babel-plugin-syntax-jsx": "6.18.0", + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-regenerator": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz", + "integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=", + "requires": { + "regenerator-transform": "0.10.1" + } + }, + "babel-plugin-transform-runtime": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz", + "integrity": "sha1-iEkNRGUC6puOfvsP4J7E2ZR5se4=", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "babel-plugin-transform-strict-mode": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz", + "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=", + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0" + } + }, + "babel-polyfill": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz", + "integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=", + "requires": { + "babel-runtime": "6.26.0", + "core-js": "2.5.3", + "regenerator-runtime": "0.10.5" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", + "integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=" + } + } + }, + "babel-preset-env": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.6.1.tgz", + "integrity": "sha512-W6VIyA6Ch9ePMI7VptNn2wBM6dbG0eSz25HEiL40nQXCsXGTGZSTZu1Iap+cj3Q0S5a7T9+529l/5Bkvd+afNA==", + "requires": { + "babel-plugin-check-es2015-constants": "6.22.0", + "babel-plugin-syntax-trailing-function-commas": "6.22.0", + "babel-plugin-transform-async-to-generator": "6.24.1", + "babel-plugin-transform-es2015-arrow-functions": "6.22.0", + "babel-plugin-transform-es2015-block-scoped-functions": "6.22.0", + "babel-plugin-transform-es2015-block-scoping": "6.26.0", + "babel-plugin-transform-es2015-classes": "6.24.1", + "babel-plugin-transform-es2015-computed-properties": "6.24.1", + "babel-plugin-transform-es2015-destructuring": "6.23.0", + "babel-plugin-transform-es2015-duplicate-keys": "6.24.1", + "babel-plugin-transform-es2015-for-of": "6.23.0", + "babel-plugin-transform-es2015-function-name": "6.24.1", + "babel-plugin-transform-es2015-literals": "6.22.0", + "babel-plugin-transform-es2015-modules-amd": "6.24.1", + "babel-plugin-transform-es2015-modules-commonjs": "6.26.0", + "babel-plugin-transform-es2015-modules-systemjs": "6.24.1", + "babel-plugin-transform-es2015-modules-umd": "6.24.1", + "babel-plugin-transform-es2015-object-super": "6.24.1", + "babel-plugin-transform-es2015-parameters": "6.24.1", + "babel-plugin-transform-es2015-shorthand-properties": "6.24.1", + "babel-plugin-transform-es2015-spread": "6.22.0", + "babel-plugin-transform-es2015-sticky-regex": "6.24.1", + "babel-plugin-transform-es2015-template-literals": "6.22.0", + "babel-plugin-transform-es2015-typeof-symbol": "6.23.0", + "babel-plugin-transform-es2015-unicode-regex": "6.24.1", + "babel-plugin-transform-exponentiation-operator": "6.24.1", + "babel-plugin-transform-regenerator": "6.26.0", + "browserslist": "2.10.0", + "invariant": "2.2.2", + "semver": "5.4.1" + } + }, + "babel-preset-flow": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz", + "integrity": "sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0=", + "requires": { + "babel-plugin-transform-flow-strip-types": "6.22.0" + } + }, + "babel-preset-react": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-react/-/babel-preset-react-6.24.1.tgz", + "integrity": "sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A=", + "requires": { + "babel-plugin-syntax-jsx": "6.18.0", + "babel-plugin-transform-react-display-name": "6.25.0", + "babel-plugin-transform-react-jsx": "6.24.1", + "babel-plugin-transform-react-jsx-self": "6.22.0", + "babel-plugin-transform-react-jsx-source": "6.22.0", + "babel-preset-flow": "6.23.0" + } + }, + "babel-preset-stage-0": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz", + "integrity": "sha1-VkLRUEL5E4TX5a+LyIsduVsDnmo=", + "requires": { + "babel-plugin-transform-do-expressions": "6.22.0", + "babel-plugin-transform-function-bind": "6.22.0", + "babel-preset-stage-1": "6.24.1" + } + }, + "babel-preset-stage-1": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz", + "integrity": "sha1-dpLNfc1oSZB+auSgqFWJz7niv7A=", + "requires": { + "babel-plugin-transform-class-constructor-call": "6.24.1", + "babel-plugin-transform-export-extensions": "6.22.0", + "babel-preset-stage-2": "6.24.1" + } + }, + "babel-preset-stage-2": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz", + "integrity": "sha1-2eKWD7PXEYfw5k7sYrwHdnIZvcE=", + "requires": { + "babel-plugin-syntax-dynamic-import": "6.18.0", + "babel-plugin-transform-class-properties": "6.24.1", + "babel-plugin-transform-decorators": "6.24.1", + "babel-preset-stage-3": "6.24.1" + } + }, + "babel-preset-stage-3": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz", + "integrity": "sha1-g2raCp56f6N8sTj7kyb4eTSkg5U=", + "requires": { + "babel-plugin-syntax-trailing-function-commas": "6.22.0", + "babel-plugin-transform-async-generator-functions": "6.24.1", + "babel-plugin-transform-async-to-generator": "6.24.1", + "babel-plugin-transform-exponentiation-operator": "6.24.1", + "babel-plugin-transform-object-rest-spread": "6.26.0" + } + }, + "babel-register": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz", + "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=", + "requires": { + "babel-core": "6.26.0", + "babel-runtime": "6.26.0", + "core-js": "2.5.3", + "home-or-tmp": "2.0.0", + "lodash": "4.17.4", + "mkdirp": "0.5.1", + "source-map-support": "0.4.18" + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "requires": { + "core-js": "2.5.3", + "regenerator-runtime": "0.11.1" + } + }, + "babel-template": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", + "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", + "requires": { + "babel-runtime": "6.26.0", + "babel-traverse": "6.26.0", + "babel-types": "6.26.0", + "babylon": "6.18.0", + "lodash": "4.17.4" + } + }, + "babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", + "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", + "requires": { + "babel-code-frame": "6.26.0", + "babel-messages": "6.23.0", + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "babylon": "6.18.0", + "debug": "2.6.9", + "globals": "9.18.0", + "invariant": "2.2.2", + "lodash": "4.17.4" + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", + "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", + "requires": { + "babel-runtime": "6.26.0", + "esutils": "2.0.2", + "lodash": "4.17.4", + "to-fast-properties": "1.0.3" + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "base64-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz", + "integrity": "sha512-dwVUVIXsBZXwTuwnXI9RK8sBmgq09NDHzyR9SAph9eqk76gKK2JSQmZARC2zRC81JC2QTtxD0ARU5qTS25gIGw==" + }, + "bcrypt-pbkdf": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", + "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "big.js": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", + "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==" + }, + "binary": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", + "integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=", + "requires": { + "buffers": "0.1.1", + "chainsaw": "0.1.0" + } + }, + "binary-extensions": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz", + "integrity": "sha1-RqoXUftqL5PuXmibsQh9SxTGwgU=" + }, + "bn.js": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", + "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==" + }, + "boom": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", + "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", + "requires": { + "hoek": "4.2.0" + } + }, + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "requires": { + "expand-range": "1.8.2", + "preserve": "0.2.0", + "repeat-element": "1.1.2" + } + }, + "brcast": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/brcast/-/brcast-3.0.1.tgz", + "integrity": "sha512-eI3yqf9YEqyGl9PCNTR46MGvDylGtaHjalcz6Q3fAPnP/PhpKkkve52vFdfGpwp4VUvK6LUr4TQN+2stCrEwTg==" + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + }, + "browserify-aes": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.1.1.tgz", + "integrity": "sha512-UGnTYAnB2a3YuYKIRy1/4FB2HdM866E0qC46JXvVTYKlBlZlnvfpSfY6OKfXZAkv70eJ2a1SqzpAo5CRhZGDFg==", + "requires": { + "buffer-xor": "1.0.3", + "cipher-base": "1.0.4", + "create-hash": "1.1.3", + "evp_bytestokey": "1.0.3", + "inherits": "2.0.3", + "safe-buffer": "5.1.1" + } + }, + "browserify-cipher": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.0.tgz", + "integrity": "sha1-mYgkSHS/XtTijalWZtzWasj8Njo=", + "requires": { + "browserify-aes": "1.1.1", + "browserify-des": "1.0.0", + "evp_bytestokey": "1.0.3" + } + }, + "browserify-des": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.0.tgz", + "integrity": "sha1-2qJ3cXRwki7S/hhZQRihdUOXId0=", + "requires": { + "cipher-base": "1.0.4", + "des.js": "1.0.0", + "inherits": "2.0.3" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "requires": { + "bn.js": "4.11.8", + "randombytes": "2.0.5" + } + }, + "browserify-sign": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", + "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "requires": { + "bn.js": "4.11.8", + "browserify-rsa": "4.0.1", + "create-hash": "1.1.3", + "create-hmac": "1.1.6", + "elliptic": "6.4.0", + "inherits": "2.0.3", + "parse-asn1": "5.1.0" + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "requires": { + "pako": "1.0.6" + } + }, + "browserslist": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.10.0.tgz", + "integrity": "sha512-WyvzSLsuAVPOjbljXnyeWl14Ae+ukAT8MUuagKVzIDvwBxl4UAwD1xqtyQs2eWYPGUKMeC3Ol62goqYuKqTTcw==", + "requires": { + "caniuse-lite": "1.0.30000784", + "electron-to-chromium": "1.3.30" + } + }, + "buffer": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", + "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", + "requires": { + "base64-js": "1.2.1", + "ieee754": "1.1.8", + "isarray": "1.0.0" + } + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + }, + "buffers": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", + "integrity": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=" + }, + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + }, + "caller-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", + "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", + "requires": { + "callsites": "0.2.0" + } + }, + "callsites": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", + "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=" + }, + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + }, + "caniuse-api": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz", + "integrity": "sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=", + "requires": { + "browserslist": "1.7.7", + "caniuse-db": "1.0.30000784", + "lodash.memoize": "4.1.2", + "lodash.uniq": "4.5.0" + }, + "dependencies": { + "browserslist": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", + "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "requires": { + "caniuse-db": "1.0.30000784", + "electron-to-chromium": "1.3.30" + } + } + } + }, + "caniuse-db": { + "version": "1.0.30000784", + "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000784.tgz", + "integrity": "sha1-G+lQEtlInHcZB0+BruV9vf/mNhs=" + }, + "caniuse-lite": { + "version": "1.0.30000784", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000784.tgz", + "integrity": "sha1-EpztdOmhKApEGIC2zSvOMO9Z5sA=" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "requires": { + "align-text": "0.1.4", + "lazy-cache": "1.0.4" + } + }, + "chain-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/chain-function/-/chain-function-1.0.0.tgz", + "integrity": "sha1-DUqzfn4Y6tC9xHuSB2QRjOWHM9w=" + }, + "chainsaw": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", + "integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=", + "requires": { + "traverse": "0.3.9" + } + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "requires": { + "ansi-styles": "2.2.1", + "escape-string-regexp": "1.0.5", + "has-ansi": "2.0.0", + "strip-ansi": "3.0.1", + "supports-color": "2.0.0" + } + }, + "change-emitter": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/change-emitter/-/change-emitter-0.1.6.tgz", + "integrity": "sha1-6LL+PX8at9aaMhma/5HqaTFAlRU=" + }, + "chardet": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", + "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=" + }, + "charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=" + }, + "child-process": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/child-process/-/child-process-1.0.2.tgz", + "integrity": "sha1-mJdNx+0e5MYin44wX6cxOmiFp/I=" + }, + "chokidar": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", + "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", + "requires": { + "anymatch": "1.3.2", + "async-each": "1.0.1", + "glob-parent": "2.0.0", + "inherits": "2.0.3", + "is-binary-path": "1.0.1", + "is-glob": "2.0.1", + "path-is-absolute": "1.0.1", + "readdirp": "2.1.0" + } + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "requires": { + "inherits": "2.0.3", + "safe-buffer": "5.1.1" + } + }, + "circular-json": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", + "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==" + }, + "clap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz", + "integrity": "sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==", + "requires": { + "chalk": "1.1.3" + } + }, + "classnames": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.5.tgz", + "integrity": "sha1-+zgB1FNGdknvNgPH1hoCvRKb3m0=" + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "requires": { + "restore-cursor": "2.0.0" + } + }, + "cli-width": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", + "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=" + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wrap-ansi": "2.1.0" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "1.0.1" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + } + } + }, + "clone": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz", + "integrity": "sha1-KY1+IjFmD0DAA8LtMUDezz9TCF8=" + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + }, + "coa": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz", + "integrity": "sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=", + "requires": { + "q": "1.5.1" + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + }, + "color": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz", + "integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=", + "requires": { + "clone": "1.0.3", + "color-convert": "1.9.1", + "color-string": "0.3.0" + } + }, + "color-convert": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz", + "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "color-string": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz", + "integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=", + "requires": { + "color-name": "1.1.3" + } + }, + "colormin": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz", + "integrity": "sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=", + "requires": { + "color": "0.11.4", + "css-color-names": "0.0.4", + "has": "1.0.1" + } + }, + "colors": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", + "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=" + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "requires": { + "delayed-stream": "1.0.0" + } + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concat-stream": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz", + "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=", + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.3", + "typedarray": "0.0.6" + } + }, + "console-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", + "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", + "requires": { + "date-now": "0.1.4" + } + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + }, + "contains-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", + "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=" + }, + "convert-source-map": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz", + "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=" + }, + "core-js": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz", + "integrity": "sha1-isw4NFgk8W2DZbfJtCWRaOjtYD4=" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "create-ecdh": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz", + "integrity": "sha1-iIxyNZbN92EvZJgjPuvXo1MBc30=", + "requires": { + "bn.js": "4.11.8", + "elliptic": "6.4.0" + } + }, + "create-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.1.3.tgz", + "integrity": "sha1-YGBCrIuSYnUPSDyt2rD1gZFy2P0=", + "requires": { + "cipher-base": "1.0.4", + "inherits": "2.0.3", + "ripemd160": "2.0.1", + "sha.js": "2.4.9" + } + }, + "create-hmac": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.6.tgz", + "integrity": "sha1-rLniIaThe9sHbpBlfEK5PjcmzwY=", + "requires": { + "cipher-base": "1.0.4", + "create-hash": "1.1.3", + "inherits": "2.0.3", + "ripemd160": "2.0.1", + "safe-buffer": "5.1.1", + "sha.js": "2.4.9" + } + }, + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "requires": { + "lru-cache": "4.1.1", + "shebang-command": "1.2.0", + "which": "1.3.0" + } + }, + "crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=" + }, + "cryptiles": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", + "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", + "requires": { + "boom": "5.2.0" + }, + "dependencies": { + "boom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", + "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", + "requires": { + "hoek": "4.2.0" + } + } + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "requires": { + "browserify-cipher": "1.0.0", + "browserify-sign": "4.0.4", + "create-ecdh": "4.0.0", + "create-hash": "1.1.3", + "create-hmac": "1.1.6", + "diffie-hellman": "5.0.2", + "inherits": "2.0.3", + "pbkdf2": "3.0.14", + "public-encrypt": "4.0.0", + "randombytes": "2.0.5", + "randomfill": "1.0.3" + } + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" + }, + "css-loader": { + "version": "0.28.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-0.28.7.tgz", + "integrity": "sha512-GxMpax8a/VgcfRrVy0gXD6yLd5ePYbXX/5zGgTVYp4wXtJklS8Z2VaUArJgc//f6/Dzil7BaJObdSv8eKKCPgg==", + "requires": { + "babel-code-frame": "6.26.0", + "css-selector-tokenizer": "0.7.0", + "cssnano": "3.10.0", + "icss-utils": "2.1.0", + "loader-utils": "1.1.0", + "lodash.camelcase": "4.3.0", + "object-assign": "4.1.1", + "postcss": "5.2.18", + "postcss-modules-extract-imports": "1.1.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-selector-tokenizer": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz", + "integrity": "sha1-5piEdK6MlTR3v15+/s/OzNnPTIY=", + "requires": { + "cssesc": "0.1.0", + "fastparse": "1.1.1", + "regexpu-core": "1.0.0" + }, + "dependencies": { + "regexpu-core": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz", + "integrity": "sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=", + "requires": { + "regenerate": "1.3.3", + "regjsgen": "0.2.0", + "regjsparser": "0.1.5" + } + } + } + }, + "css-vendor": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-0.3.8.tgz", + "integrity": "sha1-ZCHP0wNM5mT+dnOXL9ARn8KJQfo=", + "requires": { + "is-in-browser": "1.1.3" + } + }, + "cssesc": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz", + "integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=" + }, + "cssnano": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz", + "integrity": "sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=", + "requires": { + "autoprefixer": "6.7.7", + "decamelize": "1.2.0", + "defined": "1.0.0", + "has": "1.0.1", + "object-assign": "4.1.1", + "postcss": "5.2.18", + "postcss-calc": "5.3.1", + "postcss-colormin": "2.2.2", + "postcss-convert-values": "2.6.1", + "postcss-discard-comments": "2.0.4", + "postcss-discard-duplicates": "2.1.0", + "postcss-discard-empty": "2.1.0", + "postcss-discard-overridden": "0.1.1", + "postcss-discard-unused": "2.2.3", + "postcss-filter-plugins": "2.0.2", + "postcss-merge-idents": "2.1.7", + "postcss-merge-longhand": "2.0.2", + "postcss-merge-rules": "2.1.2", + "postcss-minify-font-values": "1.0.5", + "postcss-minify-gradients": "1.0.5", + "postcss-minify-params": "1.2.2", + "postcss-minify-selectors": "2.1.1", + "postcss-normalize-charset": "1.1.1", + "postcss-normalize-url": "3.0.8", + "postcss-ordered-values": "2.2.3", + "postcss-reduce-idents": "2.4.0", + "postcss-reduce-initial": "1.0.1", + "postcss-reduce-transforms": "1.0.4", + "postcss-svgo": "2.1.6", + "postcss-unique-selectors": "2.0.2", + "postcss-value-parser": "3.3.0", + "postcss-zindex": "2.2.0" + } + }, + "csso": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz", + "integrity": "sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=", + "requires": { + "clap": "1.2.3", + "source-map": "0.5.7" + } + }, + "d": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", + "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", + "requires": { + "es5-ext": "0.10.37" + } + }, + "d3-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.1.tgz", + "integrity": "sha512-CyINJQ0SOUHojDdFDH4JEM0552vCR1utGyLHegJHyYH0JyCpSeTPxi4OBqHMA2jJZq4NH782LtaJWBImqI/HBw==" + }, + "d3-collection": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.4.tgz", + "integrity": "sha1-NC39EoN8kJdPM/HMCnha6lcNzcI=" + }, + "d3-color": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.0.3.tgz", + "integrity": "sha1-vHZD/KjlOoNH4vva/6I2eWtYUJs=" + }, + "d3-format": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.2.1.tgz", + "integrity": "sha512-U4zRVLDXW61bmqoo+OJ/V687e1T5nVd3TAKAJKgtpZ/P1JsMgyod0y9br+mlQOryTAACdiXI3wCjuERHFNp91w==" + }, + "d3-interpolate": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.1.6.tgz", + "integrity": "sha512-mOnv5a+pZzkNIHtw/V6I+w9Lqm9L5bG3OTXPM5A+QO0yyVMQ4W1uZhR+VOJmazaOZXri2ppbiZ5BUNWT0pFM9A==", + "requires": { + "d3-color": "1.0.3" + } + }, + "d3-path": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.5.tgz", + "integrity": "sha1-JB6xhJvZ6egCHA0KeZ+KDo5EF2Q=" + }, + "d3-scale": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-1.0.6.tgz", + "integrity": "sha1-vOGdqA06DPQiyVQ64zIghiILNO0=", + "requires": { + "d3-array": "1.2.1", + "d3-collection": "1.0.4", + "d3-color": "1.0.3", + "d3-format": "1.2.1", + "d3-interpolate": "1.1.6", + "d3-time": "1.0.8", + "d3-time-format": "2.1.1" + } + }, + "d3-shape": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.2.0.tgz", + "integrity": "sha1-RdAVOPBkuv0F6j1tLLdI/YxB93c=", + "requires": { + "d3-path": "1.0.5" + } + }, + "d3-time": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.0.8.tgz", + "integrity": "sha512-YRZkNhphZh3KcnBfitvF3c6E0JOFGikHZ4YqD+Lzv83ZHn1/u6yGenRU1m+KAk9J1GnZMnKcrtfvSktlA1DXNQ==" + }, + "d3-time-format": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.1.1.tgz", + "integrity": "sha512-8kAkymq2WMfzW7e+s/IUNAtN/y3gZXGRrdGfo6R8NKPAA85UBTxZg5E61bR6nLwjPjj4d3zywSQe1CkYLPFyrw==", + "requires": { + "d3-time": "1.0.8" + } + }, + "damerau-levenshtein": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz", + "integrity": "sha1-AxkcQyy27qFou3fzpV/9zLiXhRQ=" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "1.0.0" + } + }, + "date-now": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", + "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "requires": { + "mimic-response": "1.0.0" + } + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + }, + "deepmerge": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.0.1.tgz", + "integrity": "sha512-VIPwiMJqJ13ZQfaCsIFnp5Me9tnjURiaIFxfz7EH0Ci0dTSQpZtSLrqOicXqEd/z2r+z+Klk9GzmnRsgpgbOsQ==" + }, + "define-properties": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", + "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", + "requires": { + "foreach": "2.0.5", + "object-keys": "1.0.11" + } + }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" + }, + "del": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", + "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", + "requires": { + "globby": "5.0.0", + "is-path-cwd": "1.0.0", + "is-path-in-cwd": "1.0.0", + "object-assign": "4.1.1", + "pify": "2.3.0", + "pinkie-promise": "2.0.1", + "rimraf": "2.6.2" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "requires": { + "inherits": "2.0.3", + "minimalistic-assert": "1.0.0" + } + }, + "detect-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", + "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", + "requires": { + "repeating": "2.0.1" + } + }, + "diffie-hellman": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.2.tgz", + "integrity": "sha1-tYNXOScM/ias9jIJn97SoH8gnl4=", + "requires": { + "bn.js": "4.11.8", + "miller-rabin": "4.0.1", + "randombytes": "2.0.5" + } + }, + "doctrine": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.0.2.tgz", + "integrity": "sha512-y0tm5Pq6ywp3qSTZ1vPgVdAnbDEoeoc5wlOHXoY1c4Wug/a7JvqHIl7BTvwodaHmejWkK/9dSb3sCYfyo/om8A==", + "requires": { + "esutils": "2.0.2" + } + }, + "dom-helpers": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.3.1.tgz", + "integrity": "sha512-2Sm+JaYn74OiTM2wHvxJOo3roiq/h25Yi69Fqk269cNUwIXsCvATB6CRSFC9Am/20G2b28hGv/+7NiWydIrPvg==" + }, + "dom-walk": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz", + "integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=" + }, + "domain-browser": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz", + "integrity": "sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw=" + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "optional": true, + "requires": { + "jsbn": "0.1.1" + } + }, + "electron-releases": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/electron-releases/-/electron-releases-2.1.0.tgz", + "integrity": "sha512-cyKFD1bTE/UgULXfaueIN1k5EPFzs+FRc/rvCY5tIynefAPqopQEgjr0EzY+U3Dqrk/G4m9tXSPuZ77v6dL/Rw==" + }, + "electron-to-chromium": { + "version": "1.3.30", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz", + "integrity": "sha512-zx1Prv7kYLfc4OA60FhxGbSo4qrEjgSzpo1/37i7l9ltXPYOoQBtjQxY9KmsgfHnBxHlBGXwLlsbt/gub1w5lw==", + "requires": { + "electron-releases": "2.1.0" + } + }, + "elliptic": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz", + "integrity": "sha1-ysmvh2LIWDYYcAPI3+GT5eLq5d8=", + "requires": { + "bn.js": "4.11.8", + "brorand": "1.1.0", + "hash.js": "1.1.3", + "hmac-drbg": "1.0.1", + "inherits": "2.0.3", + "minimalistic-assert": "1.0.0", + "minimalistic-crypto-utils": "1.0.1" + } + }, + "emoji-regex": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.5.1.tgz", + "integrity": "sha512-PAHp6TxrCy7MGMFidro8uikr+zlJJKJ/Q6mm2ExZ7HwkyR9lSVFfE3kt36qcwa24BQL7y0G9axycGjK1A/0uNQ==" + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" + }, + "encoding": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", + "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", + "requires": { + "iconv-lite": "0.4.19" + } + }, + "enhanced-resolve": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz", + "integrity": "sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24=", + "requires": { + "graceful-fs": "4.1.11", + "memory-fs": "0.4.1", + "object-assign": "4.1.1", + "tapable": "0.2.8" + } + }, + "errno": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.6.tgz", + "integrity": "sha512-IsORQDpaaSwcDP4ZZnHxgE85werpo34VYn1Ud3mq+eUsF593faR8oCZNXrROVkpFu2TsbrNhHin0aUrTsQ9vNw==", + "requires": { + "prr": "1.0.1" + } + }, + "error-ex": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", + "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "requires": { + "is-arrayish": "0.2.1" + } + }, + "es-abstract": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz", + "integrity": "sha512-/uh/DhdqIOSkAWifU+8nG78vlQxdLckUdI/sPgy0VhuXi2qJ7T8czBmqIYtLQVpCIFYafChnsRsB5pyb1JdmCQ==", + "requires": { + "es-to-primitive": "1.1.1", + "function-bind": "1.1.1", + "has": "1.0.1", + "is-callable": "1.1.3", + "is-regex": "1.0.4" + } + }, + "es-to-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", + "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", + "requires": { + "is-callable": "1.1.3", + "is-date-object": "1.0.1", + "is-symbol": "1.0.1" + } + }, + "es5-ext": { + "version": "0.10.37", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.37.tgz", + "integrity": "sha1-DudB0Ui4AGm6J9AgOTdWryV978M=", + "requires": { + "es6-iterator": "2.0.3", + "es6-symbol": "3.1.1" + } + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.37", + "es6-symbol": "3.1.1" + } + }, + "es6-map": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", + "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=", + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.37", + "es6-iterator": "2.0.3", + "es6-set": "0.1.5", + "es6-symbol": "3.1.1", + "event-emitter": "0.3.5" + } + }, + "es6-set": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", + "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=", + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.37", + "es6-iterator": "2.0.3", + "es6-symbol": "3.1.1", + "event-emitter": "0.3.5" + } + }, + "es6-symbol": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", + "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.37" + } + }, + "es6-weak-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz", + "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=", + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.37", + "es6-iterator": "2.0.3", + "es6-symbol": "3.1.1" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "escope": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz", + "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=", + "requires": { + "es6-map": "0.1.5", + "es6-weak-map": "2.0.2", + "esrecurse": "4.2.0", + "estraverse": "4.2.0" + } + }, + "eslint": { + "version": "4.13.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-4.13.1.tgz", + "integrity": "sha512-UCJVV50RtLHYzBp1DZ8CMPtRSg4iVZvjgO9IJHIKyWU/AnJVjtdRikoUPLB29n5pzMB7TnsLQWf0V6VUJfoPfw==", + "requires": { + "ajv": "5.5.2", + "babel-code-frame": "6.26.0", + "chalk": "2.3.0", + "concat-stream": "1.6.0", + "cross-spawn": "5.1.0", + "debug": "3.1.0", + "doctrine": "2.0.2", + "eslint-scope": "3.7.1", + "espree": "3.5.2", + "esquery": "1.0.0", + "estraverse": "4.2.0", + "esutils": "2.0.2", + "file-entry-cache": "2.0.0", + "functional-red-black-tree": "1.0.1", + "glob": "7.1.2", + "globals": "11.1.0", + "ignore": "3.3.7", + "imurmurhash": "0.1.4", + "inquirer": "3.3.0", + "is-resolvable": "1.0.1", + "js-yaml": "3.10.0", + "json-stable-stringify-without-jsonify": "1.0.1", + "levn": "0.3.0", + "lodash": "4.17.4", + "minimatch": "3.0.4", + "mkdirp": "0.5.1", + "natural-compare": "1.4.0", + "optionator": "0.8.2", + "path-is-inside": "1.0.2", + "pluralize": "7.0.0", + "progress": "2.0.0", + "require-uncached": "1.0.3", + "semver": "5.4.1", + "strip-ansi": "4.0.0", + "strip-json-comments": "2.0.1", + "table": "4.0.2", + "text-table": "0.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + }, + "ansi-styles": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", + "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", + "requires": { + "color-convert": "1.9.1" + } + }, + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", + "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", + "requires": { + "ansi-styles": "3.2.0", + "escape-string-regexp": "1.0.5", + "supports-color": "4.5.0" + } + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "esprima": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz", + "integrity": "sha512-oftTcaMu/EGrEIu904mWteKIv8vMuOgGYo7EhVJJN00R/EED9DCua/xxHRdYnKtcECzVg7xOWhflvJMnqcFZjw==" + }, + "globals": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.1.0.tgz", + "integrity": "sha512-uEuWt9mqTlPDwSqi+sHjD4nWU/1N+q0fiWI9T1mZpD2UENqX20CFD5T/ziLZvztPaBKl7ZylUi1q6Qfm7E2CiQ==" + }, + "js-yaml": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz", + "integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==", + "requires": { + "argparse": "1.0.9", + "esprima": "4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "requires": { + "ansi-regex": "3.0.0" + } + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "2.0.0" + } + } + } + }, + "eslint-config-airbnb": { + "version": "16.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-16.1.0.tgz", + "integrity": "sha512-zLyOhVWhzB/jwbz7IPSbkUuj7X2ox4PHXTcZkEmDqTvd0baJmJyuxlFPDlZOE/Y5bC+HQRaEkT3FoHo9wIdRiw==", + "requires": { + "eslint-config-airbnb-base": "12.1.0" + } + }, + "eslint-config-airbnb-base": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz", + "integrity": "sha512-/vjm0Px5ZCpmJqnjIzcFb9TKZrKWz0gnuG/7Gfkt0Db1ELJR51xkZth+t14rYdqWgX836XbuxtArbIHlVhbLBA==", + "requires": { + "eslint-restricted-globals": "0.1.1" + } + }, + "eslint-import-resolver-node": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz", + "integrity": "sha512-yUtXS15gIcij68NmXmP9Ni77AQuCN0itXbCc/jWd8C6/yKZaSNXicpC8cgvjnxVdmfsosIXrjpzFq7GcDryb6A==", + "requires": { + "debug": "2.6.9", + "resolve": "1.5.0" + } + }, + "eslint-loader": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-1.9.0.tgz", + "integrity": "sha512-40aN976qSNPyb9ejTqjEthZITpls1SVKtwguahmH1dzGCwQU/vySE+xX33VZmD8csU0ahVNCtFlsPgKqRBiqgg==", + "requires": { + "loader-fs-cache": "1.0.1", + "loader-utils": "1.1.0", + "object-assign": "4.1.1", + "object-hash": "1.2.0", + "rimraf": "2.6.2" + } + }, + "eslint-module-utils": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz", + "integrity": "sha512-jDI/X5l/6D1rRD/3T43q8Qgbls2nq5km5KSqiwlyUbGo5+04fXhMKdCPhjwbqAa6HXWaMxj8Q4hQDIh7IadJQw==", + "requires": { + "debug": "2.6.9", + "pkg-dir": "1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "requires": { + "path-exists": "2.1.0", + "pinkie-promise": "2.0.1" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "requires": { + "pinkie-promise": "2.0.1" + } + }, + "pkg-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", + "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", + "requires": { + "find-up": "1.1.2" + } + } + } + }, + "eslint-plugin-flowtype": { + "version": "2.40.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.40.1.tgz", + "integrity": "sha512-0EBDPR3/iguDQin7nb5WMT1ZWYB95eNllY+oiFZjvLa1oqE0BGO6ZSFnMdNE9HEkajB6Cw850PRIBbp+O+EzYQ==", + "requires": { + "lodash": "4.17.4" + } + }, + "eslint-plugin-import": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz", + "integrity": "sha512-Rf7dfKJxZ16QuTgVv1OYNxkZcsu/hULFnC+e+w0Gzi6jMC3guQoWQgxYxc54IDRinlb6/0v5z/PxxIKmVctN+g==", + "requires": { + "builtin-modules": "1.1.1", + "contains-path": "0.1.0", + "debug": "2.6.9", + "doctrine": "1.5.0", + "eslint-import-resolver-node": "0.3.1", + "eslint-module-utils": "2.1.1", + "has": "1.0.1", + "lodash.cond": "4.5.2", + "minimatch": "3.0.4", + "read-pkg-up": "2.0.0" + }, + "dependencies": { + "doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", + "requires": { + "esutils": "2.0.2", + "isarray": "1.0.0" + } + } + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.0.3.tgz", + "integrity": "sha1-VFg9GuRCSDFi4EDhPMMYZUZRAOU=", + "requires": { + "aria-query": "0.7.0", + "array-includes": "3.0.3", + "ast-types-flow": "0.0.7", + "axobject-query": "0.1.0", + "damerau-levenshtein": "1.0.4", + "emoji-regex": "6.5.1", + "jsx-ast-utils": "2.0.1" + } + }, + "eslint-plugin-react": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.5.1.tgz", + "integrity": "sha512-YGSjB9Qu6QbVTroUZi66pYky3DfoIPLdHQ/wmrBGyBRnwxQsBXAov9j2rpXt/55i8nyMv6IRWJv2s4d4YnduzQ==", + "requires": { + "doctrine": "2.0.2", + "has": "1.0.1", + "jsx-ast-utils": "2.0.1", + "prop-types": "15.6.0" + } + }, + "eslint-restricted-globals": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz", + "integrity": "sha1-NfDVy8ZMLj7WLpO0saevBbp+1Nc=" + }, + "eslint-scope": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz", + "integrity": "sha1-PWPD7f2gLgbgGkUq2IyqzHzctug=", + "requires": { + "esrecurse": "4.2.0", + "estraverse": "4.2.0" + } + }, + "espree": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.2.tgz", + "integrity": "sha512-sadKeYwaR/aJ3stC2CdvgXu1T16TdYN+qwCpcWbMnGJ8s0zNWemzrvb2GbD4OhmJ/fwpJjudThAlLobGbWZbCQ==", + "requires": { + "acorn": "5.2.1", + "acorn-jsx": "3.0.1" + } + }, + "esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=" + }, + "esquery": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz", + "integrity": "sha1-z7qLV9f7qT8XKYqKAGoEzaE9gPo=", + "requires": { + "estraverse": "4.2.0" + } + }, + "esrecurse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.0.tgz", + "integrity": "sha1-+pVo2Y04I/mkHZHpAtyrnqblsWM=", + "requires": { + "estraverse": "4.2.0", + "object-assign": "4.1.1" + } + }, + "estraverse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" + }, + "event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", + "requires": { + "d": "1.0.0", + "es5-ext": "0.10.37" + } + }, + "events": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", + "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=" + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "requires": { + "md5.js": "1.3.4", + "safe-buffer": "5.1.1" + } + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "requires": { + "cross-spawn": "5.1.0", + "get-stream": "3.0.0", + "is-stream": "1.1.0", + "npm-run-path": "2.0.2", + "p-finally": "1.0.0", + "signal-exit": "3.0.2", + "strip-eof": "1.0.0" + } + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "requires": { + "is-posix-bracket": "0.1.1" + } + }, + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "requires": { + "fill-range": "2.2.3" + } + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + }, + "external-editor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.1.0.tgz", + "integrity": "sha512-E44iT5QVOUJBKij4IIV3uvxuNlbKS38Tw1HiupxEIHPv9qtC2PrDYohbXV5U+1jnfIXttny8gUhj+oZvflFlzA==", + "requires": { + "chardet": "0.4.2", + "iconv-lite": "0.4.19", + "tmp": "0.0.33" + } + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "requires": { + "is-extglob": "1.0.0" + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz", + "integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=" + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "fastparse": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.1.tgz", + "integrity": "sha1-0eJkOzipTXWDtHkGDmxK/8lAcfg=" + }, + "fbjs": { + "version": "0.8.16", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz", + "integrity": "sha1-XmdDL1UNxBtXK/VYR7ispk5TN9s=", + "requires": { + "core-js": "1.2.7", + "isomorphic-fetch": "2.2.1", + "loose-envify": "1.3.1", + "object-assign": "4.1.1", + "promise": "7.3.1", + "setimmediate": "1.0.5", + "ua-parser-js": "0.7.17" + }, + "dependencies": { + "core-js": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", + "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" + } + } + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "requires": { + "escape-string-regexp": "1.0.5" + } + }, + "file-entry-cache": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", + "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=", + "requires": { + "flat-cache": "1.3.0", + "object-assign": "4.1.1" + } + }, + "file-loader": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-1.1.6.tgz", + "integrity": "sha512-873ztuL+/hfvXbLDJ262PGO6XjERnybJu2gW1/5j8HUfxSiFJI9Hj/DhZ50ZGRUxBvuNiazb/cM2rh9pqrxP6Q==", + "requires": { + "loader-utils": "1.1.0", + "schema-utils": "0.3.0" + } + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=" + }, + "fill-range": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", + "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", + "requires": { + "is-number": "2.1.0", + "isobject": "2.1.0", + "randomatic": "1.1.7", + "repeat-element": "1.1.2", + "repeat-string": "1.6.1" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "find-cache-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", + "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", + "requires": { + "commondir": "1.0.1", + "make-dir": "1.1.0", + "pkg-dir": "2.0.0" + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "requires": { + "locate-path": "2.0.0" + } + }, + "flat-cache": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz", + "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=", + "requires": { + "circular-json": "0.3.3", + "del": "2.2.2", + "graceful-fs": "4.1.11", + "write": "0.2.1" + } + }, + "flatten": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz", + "integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I=" + }, + "flow-bin": { + "version": "0.61.0", + "resolved": "https://registry.npmjs.org/flow-bin/-/flow-bin-0.61.0.tgz", + "integrity": "sha512-w6SGi5CDfKLNGzYssRhW6N37qKclDXijsxDQ5M8c3WbivRYta0Horv22bwakegfKBVDnyeS0lRW3OqBC74eq2g==" + }, + "flow-bin-loader": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/flow-bin-loader/-/flow-bin-loader-1.0.2.tgz", + "integrity": "sha1-5c6CL/S51tXYJnAk21OnaYNIC+M=", + "requires": { + "child-process": "1.0.2" + } + }, + "flow-typed": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/flow-typed/-/flow-typed-2.2.3.tgz", + "integrity": "sha512-xCKOrKn/DnA4BPbNKyp3s2vW7Pzvff1zJhEdzNviTgwpiEkTG6uxQLjofcqvKdzTyZ/PjHBzkx02iyhP/2NrCg==", + "requires": { + "babel-polyfill": "6.26.0", + "colors": "1.1.2", + "fs-extra": "4.0.3", + "github": "0.2.4", + "glob": "7.1.2", + "got": "7.1.0", + "md5": "2.2.1", + "mkdirp": "0.5.1", + "request": "2.83.0", + "rimraf": "2.6.2", + "semver": "5.4.1", + "table": "4.0.2", + "through": "2.3.8", + "unzip": "0.1.11", + "which": "1.3.0", + "yargs": "4.8.1" + } + }, + "font-awesome": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz", + "integrity": "sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM=" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + }, + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "requires": { + "for-in": "1.0.2" + } + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz", + "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=", + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.5", + "mime-types": "2.1.17" + } + }, + "fs-extra": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", + "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", + "requires": { + "graceful-fs": "4.1.11", + "jsonfile": "4.0.0", + "universalify": "0.1.1" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fstream": { + "version": "0.1.31", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz", + "integrity": "sha1-czfwWPu7vvqMn1YaKMqwhJICyYg=", + "requires": { + "graceful-fs": "3.0.11", + "inherits": "2.0.3", + "mkdirp": "0.5.1", + "rimraf": "2.6.2" + }, + "dependencies": { + "graceful-fs": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", + "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", + "requires": { + "natives": "1.1.1" + } + } + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + }, + "get-caller-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", + "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=" + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "1.0.0" + } + }, + "github": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/github/-/github-0.2.4.tgz", + "integrity": "sha1-JPp/DhP6EblGr5ETTFGYKpHOU4s=", + "requires": { + "mime": "1.6.0" + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "requires": { + "glob-parent": "2.0.0", + "is-glob": "2.0.1" + } + }, + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "requires": { + "is-glob": "2.0.1" + } + }, + "global": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz", + "integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=", + "requires": { + "min-document": "2.19.0", + "process": "0.5.2" + } + }, + "globals": { + "version": "9.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", + "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" + }, + "globby": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", + "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", + "requires": { + "array-union": "1.0.2", + "arrify": "1.0.1", + "glob": "7.1.2", + "object-assign": "4.1.1", + "pify": "2.3.0", + "pinkie-promise": "2.0.1" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "got": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", + "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "requires": { + "decompress-response": "3.3.0", + "duplexer3": "0.1.4", + "get-stream": "3.0.0", + "is-plain-obj": "1.1.0", + "is-retry-allowed": "1.1.0", + "is-stream": "1.1.0", + "isurl": "1.0.0", + "lowercase-keys": "1.0.0", + "p-cancelable": "0.3.0", + "p-timeout": "1.2.1", + "safe-buffer": "5.1.1", + "timed-out": "4.0.1", + "url-parse-lax": "1.0.0", + "url-to-options": "1.0.1" + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", + "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", + "requires": { + "ajv": "5.5.2", + "har-schema": "2.0.0" + } + }, + "has": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz", + "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=", + "requires": { + "function-bind": "1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "requires": { + "ansi-regex": "2.1.1" + } + }, + "has-flag": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", + "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" + }, + "has-symbol-support-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.1.tgz", + "integrity": "sha512-JkaetveU7hFbqnAC1EV1sF4rlojU2D4Usc5CmS69l6NfmPDnpnFUegzFg33eDkkpNCxZ0mQp65HwUDrNFS/8MA==" + }, + "has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "requires": { + "has-symbol-support-x": "1.4.1" + } + }, + "hash-base": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-2.0.2.tgz", + "integrity": "sha1-ZuodhW206KVHDK32/OI65SRO8uE=", + "requires": { + "inherits": "2.0.3" + } + }, + "hash.js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz", + "integrity": "sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==", + "requires": { + "inherits": "2.0.3", + "minimalistic-assert": "1.0.0" + } + }, + "hawk": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", + "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", + "requires": { + "boom": "4.3.1", + "cryptiles": "3.1.2", + "hoek": "4.2.0", + "sntp": "2.1.0" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "requires": { + "hash.js": "1.1.3", + "minimalistic-assert": "1.0.0", + "minimalistic-crypto-utils": "1.0.1" + } + }, + "hoek": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz", + "integrity": "sha512-v0XCLxICi9nPfYrS9RL8HbYnXi9obYAeLbSP00BmnZwCK9+Ih9WOjoZ8YoHCoav2csqn4FOz4Orldsy2dmDwmQ==" + }, + "hoist-non-react-statics": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.3.1.tgz", + "integrity": "sha1-ND24TGAYxlB3iJgkATWhQg7iLOA=" + }, + "home-or-tmp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", + "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=", + "requires": { + "os-homedir": "1.0.2", + "os-tmpdir": "1.0.2" + } + }, + "hosted-git-info": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", + "integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==" + }, + "html-comment-regex": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.1.tgz", + "integrity": "sha1-ZouTd26q5V696POtRkswekljYl4=" + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "1.0.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + }, + "iconv-lite": { + "version": "0.4.19", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", + "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==" + }, + "icss-replace-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", + "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=" + }, + "icss-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz", + "integrity": "sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=", + "requires": { + "postcss": "6.0.14" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", + "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", + "requires": { + "color-convert": "1.9.1" + } + }, + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", + "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", + "requires": { + "ansi-styles": "3.2.0", + "escape-string-regexp": "1.0.5", + "supports-color": "4.5.0" + } + }, + "postcss": { + "version": "6.0.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz", + "integrity": "sha512-NJ1z0f+1offCgadPhz+DvGm5Mkci+mmV5BqD13S992o0Xk9eElxUfPPF+t2ksH5R/17gz4xVK8KWocUQ5o3Rog==", + "requires": { + "chalk": "2.3.0", + "source-map": "0.6.1", + "supports-color": "4.5.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "2.0.0" + } + } + } + }, + "ieee754": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz", + "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=" + }, + "ignore": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.7.tgz", + "integrity": "sha512-YGG3ejvBNHRqu0559EOxxNFihD0AjpvHlC/pdGKd3X3ofe+CoJkYazwNJYTNebqpPKN+VVQbh4ZFn1DivMNuHA==" + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + }, + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "inquirer": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", + "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", + "requires": { + "ansi-escapes": "3.0.0", + "chalk": "2.3.0", + "cli-cursor": "2.1.0", + "cli-width": "2.2.0", + "external-editor": "2.1.0", + "figures": "2.0.0", + "lodash": "4.17.4", + "mute-stream": "0.0.7", + "run-async": "2.3.0", + "rx-lite": "4.0.8", + "rx-lite-aggregates": "4.0.8", + "string-width": "2.1.1", + "strip-ansi": "4.0.0", + "through": "2.3.8" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + }, + "ansi-styles": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", + "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", + "requires": { + "color-convert": "1.9.1" + } + }, + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", + "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", + "requires": { + "ansi-styles": "3.2.0", + "escape-string-regexp": "1.0.5", + "supports-color": "4.5.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "requires": { + "ansi-regex": "3.0.0" + } + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "2.0.0" + } + } + } + }, + "interpret": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", + "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=" + }, + "invariant": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz", + "integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=", + "requires": { + "loose-envify": "1.3.1" + } + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" + }, + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=" + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "requires": { + "binary-extensions": "1.11.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "requires": { + "builtin-modules": "1.1.1" + } + }, + "is-callable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz", + "integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=" + }, + "is-date-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=" + }, + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "requires": { + "is-primitive": "2.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + }, + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "requires": { + "number-is-nan": "1.0.1" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "is-function": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz", + "integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=" + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "requires": { + "is-extglob": "1.0.0" + } + }, + "is-in-browser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", + "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" + }, + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "requires": { + "kind-of": "3.2.2" + } + }, + "is-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz", + "integrity": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=" + }, + "is-path-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", + "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=" + }, + "is-path-in-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz", + "integrity": "sha1-ZHdYK4IU1gI0YJRWcAO+ip6sBNw=", + "requires": { + "is-path-inside": "1.0.1" + } + }, + "is-path-inside": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", + "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", + "requires": { + "path-is-inside": "1.0.2" + } + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "requires": { + "isobject": "3.0.1" + } + }, + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=" + }, + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=" + }, + "is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" + }, + "is-regex": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "requires": { + "has": "1.0.1" + } + }, + "is-resolvable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.1.tgz", + "integrity": "sha512-y5CXYbzvB3jTnWAZH1Nl7ykUWb6T3BcTs56HUruwBf8MhF56n1HWqhDWnVFo8GHrUPDgvUUNVhrc2U8W7iqz5g==" + }, + "is-retry-allowed": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", + "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=" + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + }, + "is-svg": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz", + "integrity": "sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk=", + "requires": { + "html-comment-regex": "1.1.1" + } + }, + "is-symbol": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", + "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "isomorphic-fetch": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", + "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", + "requires": { + "node-fetch": "1.7.3", + "whatwg-fetch": "2.0.3" + } + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "requires": { + "has-to-string-tag-x": "1.4.1", + "is-object": "1.0.1" + } + }, + "js-base64": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.0.tgz", + "integrity": "sha512-Wehd+7Pf9tFvGb+ydPm9TjYjV8X1YHOVyG8QyELZxEMqOhemVwGRmoG8iQ/soqI3n8v4xn59zaLxiCJiaaRzKA==" + }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" + }, + "js-yaml": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz", + "integrity": "sha1-XJZ93YN6m/3KXy3oQlOr6KHAO4A=", + "requires": { + "argparse": "1.0.9", + "esprima": "2.7.3" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "optional": true + }, + "jsesc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", + "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=" + }, + "json-loader": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz", + "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "4.1.11" + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "jss": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/jss/-/jss-9.4.0.tgz", + "integrity": "sha512-ckJpElL5CimehboeLDQoHeY7mlxn0KPnPn2EZVbn6pomhfbTXiQJ6fAJXSp9rUM2hPtE0PG8Swzdy9vhB2v82w==", + "requires": { + "is-in-browser": "1.1.3", + "symbol-observable": "1.1.0", + "warning": "3.0.0" + } + }, + "jss-camel-case": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/jss-camel-case/-/jss-camel-case-6.0.0.tgz", + "integrity": "sha512-XAYa7JpGkLdlLgEfuzSQSVONRzSVvv4Tvyv5H8hLmJuHeFHTWwVrJrW1Cg/buED3izXKwTU2KBGpeXjIR5Eaew==" + }, + "jss-compose": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/jss-compose/-/jss-compose-5.0.0.tgz", + "integrity": "sha512-YofRYuiA0+VbeOw0VjgkyO380sA4+TWDrW52nSluD9n+1FWOlDzNbgpZ/Sb3Y46+DcAbOS21W5jo6SAqUEiuwA==", + "requires": { + "warning": "3.0.0" + } + }, + "jss-default-unit": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/jss-default-unit/-/jss-default-unit-8.0.2.tgz", + "integrity": "sha512-WxNHrF/18CdoAGw2H0FqOEvJdREXVXLazn7PQYU7V6/BWkCV0GkmWsppNiExdw8dP4TU1ma1dT9zBNJ95feLmg==" + }, + "jss-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/jss-expand/-/jss-expand-5.1.0.tgz", + "integrity": "sha512-WTxmNipgj0V8kr8gc8Gc6Et7uQZH60H7FFNG9zZHjR6TPJoj7TDK+/EBxwRHtCRQD4B8RTwoa7MyEKD4ReKfXw==" + }, + "jss-extend": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jss-extend/-/jss-extend-6.1.0.tgz", + "integrity": "sha512-bSNwLDOZnMxABsUqvq2lwLJ/MMFs8ThligiLZBOUeyoZCoHqAbcTghvunk2QDVxiOhRTDS57VvhXVJZETW58Bw==", + "requires": { + "warning": "3.0.0" + } + }, + "jss-global": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/jss-global/-/jss-global-3.0.0.tgz", + "integrity": "sha512-wxYn7vL+TImyQYGAfdplg7yaxnPQ9RaXY/cIA8hawaVnmmWxDHzBK32u1y+RAvWboa3lW83ya3nVZ/C+jyjZ5Q==" + }, + "jss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/jss-nested/-/jss-nested-6.0.1.tgz", + "integrity": "sha512-rn964TralHOZxoyEgeq3hXY8hyuCElnvQoVrQwKHVmu55VRDd6IqExAx9be5HgK0yN/+hQdgAXQl/GUrBbbSTA==", + "requires": { + "warning": "3.0.0" + } + }, + "jss-preset-default": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jss-preset-default/-/jss-preset-default-4.0.1.tgz", + "integrity": "sha512-ZBj1ifZAPDn8iiC9PuB1jDCm/I0Bn53UNL9NHBgOY6AyMorDPgEb3IRjt6H+OHKwnEuCHw8tC/e3/q4I4DgTIw==", + "requires": { + "jss-camel-case": "6.0.0", + "jss-compose": "5.0.0", + "jss-default-unit": "8.0.2", + "jss-expand": "5.1.0", + "jss-extend": "6.1.0", + "jss-global": "3.0.0", + "jss-nested": "6.0.1", + "jss-props-sort": "6.0.0", + "jss-template": "1.0.0", + "jss-vendor-prefixer": "7.0.0" + } + }, + "jss-props-sort": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/jss-props-sort/-/jss-props-sort-6.0.0.tgz", + "integrity": "sha512-E89UDcrphmI0LzmvYk25Hp4aE5ZBsXqMWlkFXS0EtPkunJkRr+WXdCNYbXbksIPnKlBenGB9OxzQY+mVc70S+g==" + }, + "jss-template": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/jss-template/-/jss-template-1.0.0.tgz", + "integrity": "sha512-NFAgcAp8V2fUxffWGGQ5zAolJq3neAvNjmWIwSmy9M6bmXTK9rnTu0fBlAcUh0ALC94B596/2TRphdkE5WRECQ==", + "requires": { + "warning": "3.0.0" + } + }, + "jss-vendor-prefixer": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/jss-vendor-prefixer/-/jss-vendor-prefixer-7.0.0.tgz", + "integrity": "sha512-Agd+FKmvsI0HLcYXkvy8GYOw3AAASBUpsmIRvVQheps+JWaN892uFOInTr0DRydwaD91vSSUCU4NssschvF7MA==", + "requires": { + "css-vendor": "0.3.8" + } + }, + "jsx-ast-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz", + "integrity": "sha1-6AGxs5mF4g//yHtA43SAgOLcrH8=", + "requires": { + "array-includes": "3.0.3" + } + }, + "keycode": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/keycode/-/keycode-2.1.9.tgz", + "integrity": "sha1-lkojxU5IiUBbSGGlyfBIDUUUHfo=" + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "1.1.6" + } + }, + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "requires": { + "invert-kv": "1.0.0" + } + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "requires": { + "prelude-ls": "1.1.2", + "type-check": "0.3.2" + } + }, + "load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "requires": { + "graceful-fs": "4.1.11", + "parse-json": "2.2.0", + "pify": "2.3.0", + "strip-bom": "3.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "loader-fs-cache": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.1.tgz", + "integrity": "sha1-VuC/CL2XCLJqdltoUJhAyN7J/bw=", + "requires": { + "find-cache-dir": "0.1.1", + "mkdirp": "0.5.1" + }, + "dependencies": { + "find-cache-dir": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", + "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=", + "requires": { + "commondir": "1.0.1", + "mkdirp": "0.5.1", + "pkg-dir": "1.0.0" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "requires": { + "path-exists": "2.1.0", + "pinkie-promise": "2.0.1" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "requires": { + "pinkie-promise": "2.0.1" + } + }, + "pkg-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", + "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", + "requires": { + "find-up": "1.1.2" + } + } + } + }, + "loader-runner": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz", + "integrity": "sha1-9IKuqC1UPgeSFwDVpG7yb9rGuKI=" + }, + "loader-utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", + "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", + "requires": { + "big.js": "3.2.0", + "emojis-list": "2.1.0", + "json5": "0.5.1" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "requires": { + "p-locate": "2.0.0", + "path-exists": "3.0.0" + } + }, + "lodash": { + "version": "4.17.4", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", + "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=" + }, + "lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" + }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" + }, + "lodash.cond": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/lodash.cond/-/lodash.cond-4.5.2.tgz", + "integrity": "sha1-9HGh2khr5g9quVXRcRVSPdHSVdU=" + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" + }, + "loose-envify": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", + "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", + "requires": { + "js-tokens": "3.0.2" + } + }, + "lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=" + }, + "lru-cache": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", + "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", + "requires": { + "pseudomap": "1.0.2", + "yallist": "2.1.2" + } + }, + "macaddress": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/macaddress/-/macaddress-0.2.8.tgz", + "integrity": "sha1-WQTcU3w57G2+/q6QIycTX6hRHxI=" + }, + "make-dir": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.1.0.tgz", + "integrity": "sha512-0Pkui4wLJ7rxvmfUvs87skoEaxmu0hCUApF8nonzpl7q//FWp9zu8W61Scz4sd/kUiqDxvUhtoam2efDyiBzcA==", + "requires": { + "pify": "3.0.0" + } + }, + "match-stream": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/match-stream/-/match-stream-0.0.2.tgz", + "integrity": "sha1-mesFAJOzTf+t5CG5rAtBCpz6F88=", + "requires": { + "buffers": "0.1.1", + "readable-stream": "1.0.34" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "material-ui": { + "version": "1.0.0-beta.24", + "resolved": "https://registry.npmjs.org/material-ui/-/material-ui-1.0.0-beta.24.tgz", + "integrity": "sha512-tPKQeR9RXXSJFj/QIhU5+mAnnZm5Gk6WcTufbVBDd0946wpfMJA2NY2J+M/SK9NXe+BTTVUCnWY92UCw5YA9tA==", + "requires": { + "babel-runtime": "6.26.0", + "brcast": "3.0.1", + "classnames": "2.2.5", + "deepmerge": "2.0.1", + "dom-helpers": "3.3.1", + "hoist-non-react-statics": "2.3.1", + "jss": "9.4.0", + "jss-preset-default": "4.0.1", + "keycode": "2.1.9", + "lodash": "4.17.4", + "normalize-scroll-left": "0.1.2", + "prop-types": "15.6.0", + "react-event-listener": "0.5.2", + "react-jss": "8.2.0", + "react-popper": "0.7.4", + "react-scrollbar-size": "2.0.2", + "react-transition-group": "2.2.1", + "recompose": "0.26.0", + "scroll": "2.0.1", + "warning": "3.0.0" + } + }, + "material-ui-icons": { + "version": "1.0.0-beta.17", + "resolved": "https://registry.npmjs.org/material-ui-icons/-/material-ui-icons-1.0.0-beta.17.tgz", + "integrity": "sha1-XxmvVKLZnu7zR6VUFKaFPhyFDcM=", + "requires": { + "recompose": "0.26.0" + } + }, + "math-expression-evaluator": { + "version": "1.2.17", + "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz", + "integrity": "sha1-3oGf282E3M2PrlnGrreWFbnSZqw=" + }, + "md5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz", + "integrity": "sha1-U6s41f48iJG6RlMp6iP6wFQBJvk=", + "requires": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "1.1.6" + } + }, + "md5.js": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz", + "integrity": "sha1-6b296UogpawYsENA/Fdk1bCdkB0=", + "requires": { + "hash-base": "3.0.4", + "inherits": "2.0.3" + }, + "dependencies": { + "hash-base": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", + "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "requires": { + "inherits": "2.0.3", + "safe-buffer": "5.1.1" + } + } + } + }, + "mem": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz", + "integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=", + "requires": { + "mimic-fn": "1.1.0" + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "requires": { + "errno": "0.1.6", + "readable-stream": "2.3.3" + } + }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "requires": { + "arr-diff": "2.0.0", + "array-unique": "0.2.1", + "braces": "1.8.5", + "expand-brackets": "0.1.5", + "extglob": "0.3.2", + "filename-regex": "2.0.1", + "is-extglob": "1.0.0", + "is-glob": "2.0.1", + "kind-of": "3.2.2", + "normalize-path": "2.1.1", + "object.omit": "2.0.1", + "parse-glob": "3.0.4", + "regex-cache": "0.4.4" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "requires": { + "bn.js": "4.11.8", + "brorand": "1.1.0" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", + "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" + }, + "mime-types": { + "version": "2.1.17", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", + "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", + "requires": { + "mime-db": "1.30.0" + } + }, + "mimic-fn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.1.0.tgz", + "integrity": "sha1-5md4PZLonb00KBi1IwudYqZyrRg=" + }, + "mimic-response": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.0.tgz", + "integrity": "sha1-3z02Uqc/3ta5sLJBRub9BSNTRY4=" + }, + "min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", + "requires": { + "dom-walk": "0.1.1" + } + }, + "minimalistic-assert": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz", + "integrity": "sha1-cCvi3aazf0g2vLP121ZkG2Sh09M=" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "1.1.8" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=" + }, + "natives": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.1.tgz", + "integrity": "sha512-8eRaxn8u/4wN8tGkhlc2cgwwvOLMLUMUn4IYTexMgWd+LyUDfeXVkk2ygQR0hvIHbJQXgHujia3ieUUDwNGkEA==" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + }, + "node-fetch": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", + "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", + "requires": { + "encoding": "0.1.12", + "is-stream": "1.1.0" + } + }, + "node-libs-browser": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz", + "integrity": "sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==", + "requires": { + "assert": "1.4.1", + "browserify-zlib": "0.2.0", + "buffer": "4.9.1", + "console-browserify": "1.1.0", + "constants-browserify": "1.0.0", + "crypto-browserify": "3.12.0", + "domain-browser": "1.1.7", + "events": "1.1.1", + "https-browserify": "1.0.0", + "os-browserify": "0.3.0", + "path-browserify": "0.0.0", + "process": "0.11.10", + "punycode": "1.4.1", + "querystring-es3": "0.2.1", + "readable-stream": "2.3.3", + "stream-browserify": "2.0.1", + "stream-http": "2.7.2", + "string_decoder": "1.0.3", + "timers-browserify": "2.0.4", + "tty-browserify": "0.0.0", + "url": "0.11.0", + "util": "0.10.3", + "vm-browserify": "0.0.4" + }, + "dependencies": { + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + } + } + }, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", + "requires": { + "hosted-git-info": "2.5.0", + "is-builtin-module": "1.0.0", + "semver": "5.4.1", + "validate-npm-package-license": "3.0.1" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "1.1.0" + } + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + }, + "normalize-scroll-left": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-scroll-left/-/normalize-scroll-left-0.1.2.tgz", + "integrity": "sha512-F9YMRls0zCF6BFIE2YnXDRpHPpfd91nOIaNdDgrx5YMoPLo8Wqj+6jNXHQsYBavJeXP4ww8HCt0xQAKc5qk2Fg==" + }, + "normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "requires": { + "object-assign": "4.1.1", + "prepend-http": "1.0.4", + "query-string": "4.3.4", + "sort-keys": "1.1.2" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "requires": { + "path-key": "2.0.1" + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.2.0.tgz", + "integrity": "sha512-smRWXzkvxw72VquyZ0wggySl7PFUtoDhvhpdwgESXxUrH7vVhhp9asfup1+rVLrhsl7L45Ee1Q/l5R2Ul4MwUg==" + }, + "object-keys": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz", + "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=" + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "requires": { + "for-own": "0.1.5", + "is-extendable": "0.1.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1.0.2" + } + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "requires": { + "mimic-fn": "1.1.0" + } + }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "requires": { + "deep-is": "0.1.3", + "fast-levenshtein": "2.0.6", + "levn": "0.3.0", + "prelude-ls": "1.1.2", + "type-check": "0.3.2", + "wordwrap": "1.0.0" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "requires": { + "lcid": "1.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + }, + "over": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/over/-/over-0.0.5.tgz", + "integrity": "sha1-8phS5w/X4l82DgE6jsRMgq7bVwg=" + }, + "p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==" + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + }, + "p-limit": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.1.0.tgz", + "integrity": "sha1-sH/y2aXYi+yAYDWJWiurZqJ5iLw=" + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "requires": { + "p-limit": "1.1.0" + } + }, + "p-timeout": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", + "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=", + "requires": { + "p-finally": "1.0.0" + } + }, + "pako": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz", + "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==" + }, + "parse-asn1": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.0.tgz", + "integrity": "sha1-N8T5t+06tlx0gXtfJICTf7+XxxI=", + "requires": { + "asn1.js": "4.9.2", + "browserify-aes": "1.1.1", + "create-hash": "1.1.3", + "evp_bytestokey": "1.0.3", + "pbkdf2": "3.0.14" + } + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "requires": { + "glob-base": "0.3.0", + "is-dotfile": "1.0.3", + "is-extglob": "1.0.0", + "is-glob": "2.0.1" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "requires": { + "error-ex": "1.3.1" + } + }, + "path": { + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=", + "requires": { + "process": "0.11.10", + "util": "0.10.3" + }, + "dependencies": { + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + } + } + }, + "path-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", + "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + }, + "path-parse": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", + "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=" + }, + "path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "requires": { + "pify": "2.3.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "pbkdf2": { + "version": "3.0.14", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.14.tgz", + "integrity": "sha512-gjsZW9O34fm0R7PaLHRJmLLVfSoesxztjPjE9o6R+qtVJij90ltg1joIovN9GKrRW3t1PzhDDG3UMEMFfZ+1wA==", + "requires": { + "create-hash": "1.1.3", + "create-hmac": "1.1.6", + "ripemd160": "2.0.1", + "safe-buffer": "5.1.1", + "sha.js": "2.4.9" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "2.0.4" + } + }, + "pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "requires": { + "find-up": "2.1.0" + } + }, + "pluralize": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", + "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==" + }, + "popper.js": { + "version": "1.12.9", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.12.9.tgz", + "integrity": "sha1-DfvC3/lsRRuzMu3Pz6r1ZtMx1bM=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "1.1.3", + "js-base64": "2.4.0", + "source-map": "0.5.7", + "supports-color": "3.2.3" + }, + "dependencies": { + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "1.0.0" + } + } + } + }, + "postcss-calc": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz", + "integrity": "sha1-d7rnypKK2FcW4v2kLyYb98HWW14=", + "requires": { + "postcss": "5.2.18", + "postcss-message-helpers": "2.0.0", + "reduce-css-calc": "1.3.0" + } + }, + "postcss-colormin": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz", + "integrity": "sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks=", + "requires": { + "colormin": "1.1.2", + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0" + } + }, + "postcss-convert-values": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz", + "integrity": "sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0=", + "requires": { + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0" + } + }, + "postcss-discard-comments": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz", + "integrity": "sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0=", + "requires": { + "postcss": "5.2.18" + } + }, + "postcss-discard-duplicates": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz", + "integrity": "sha1-uavye4isGIFYpesSq8riAmO5GTI=", + "requires": { + "postcss": "5.2.18" + } + }, + "postcss-discard-empty": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz", + "integrity": "sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU=", + "requires": { + "postcss": "5.2.18" + } + }, + "postcss-discard-overridden": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz", + "integrity": "sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg=", + "requires": { + "postcss": "5.2.18" + } + }, + "postcss-discard-unused": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz", + "integrity": "sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM=", + "requires": { + "postcss": "5.2.18", + "uniqs": "2.0.0" + } + }, + "postcss-filter-plugins": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz", + "integrity": "sha1-bYWGJTTXNaxCDkqFgG4fXUKG2Ew=", + "requires": { + "postcss": "5.2.18", + "uniqid": "4.1.1" + } + }, + "postcss-merge-idents": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz", + "integrity": "sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=", + "requires": { + "has": "1.0.1", + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0" + } + }, + "postcss-merge-longhand": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz", + "integrity": "sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg=", + "requires": { + "postcss": "5.2.18" + } + }, + "postcss-merge-rules": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz", + "integrity": "sha1-0d9d+qexrMO+VT8OnhDofGG19yE=", + "requires": { + "browserslist": "1.7.7", + "caniuse-api": "1.6.1", + "postcss": "5.2.18", + "postcss-selector-parser": "2.2.3", + "vendors": "1.0.1" + }, + "dependencies": { + "browserslist": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", + "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "requires": { + "caniuse-db": "1.0.30000784", + "electron-to-chromium": "1.3.30" + } + } + } + }, + "postcss-message-helpers": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz", + "integrity": "sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4=" + }, + "postcss-minify-font-values": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz", + "integrity": "sha1-S1jttWZB66fIR0qzUmyv17vey2k=", + "requires": { + "object-assign": "4.1.1", + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0" + } + }, + "postcss-minify-gradients": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz", + "integrity": "sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE=", + "requires": { + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0" + } + }, + "postcss-minify-params": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz", + "integrity": "sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM=", + "requires": { + "alphanum-sort": "1.0.2", + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0", + "uniqs": "2.0.0" + } + }, + "postcss-minify-selectors": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz", + "integrity": "sha1-ssapjAByz5G5MtGkllCBFDEXNb8=", + "requires": { + "alphanum-sort": "1.0.2", + "has": "1.0.1", + "postcss": "5.2.18", + "postcss-selector-parser": "2.2.3" + } + }, + "postcss-modules-extract-imports": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz", + "integrity": "sha1-thTJcgvmgW6u41+zpfqh26agXds=", + "requires": { + "postcss": "6.0.14" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", + "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", + "requires": { + "color-convert": "1.9.1" + } + }, + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", + "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", + "requires": { + "ansi-styles": "3.2.0", + "escape-string-regexp": "1.0.5", + "supports-color": "4.5.0" + } + }, + "postcss": { + "version": "6.0.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz", + "integrity": "sha512-NJ1z0f+1offCgadPhz+DvGm5Mkci+mmV5BqD13S992o0Xk9eElxUfPPF+t2ksH5R/17gz4xVK8KWocUQ5o3Rog==", + "requires": { + "chalk": "2.3.0", + "source-map": "0.6.1", + "supports-color": "4.5.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "2.0.0" + } + } + } + }, + "postcss-modules-local-by-default": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz", + "integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=", + "requires": { + "css-selector-tokenizer": "0.7.0", + "postcss": "6.0.14" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", + "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", + "requires": { + "color-convert": "1.9.1" + } + }, + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", + "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", + "requires": { + "ansi-styles": "3.2.0", + "escape-string-regexp": "1.0.5", + "supports-color": "4.5.0" + } + }, + "postcss": { + "version": "6.0.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz", + "integrity": "sha512-NJ1z0f+1offCgadPhz+DvGm5Mkci+mmV5BqD13S992o0Xk9eElxUfPPF+t2ksH5R/17gz4xVK8KWocUQ5o3Rog==", + "requires": { + "chalk": "2.3.0", + "source-map": "0.6.1", + "supports-color": "4.5.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "2.0.0" + } + } + } + }, + "postcss-modules-scope": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz", + "integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=", + "requires": { + "css-selector-tokenizer": "0.7.0", + "postcss": "6.0.14" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", + "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", + "requires": { + "color-convert": "1.9.1" + } + }, + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", + "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", + "requires": { + "ansi-styles": "3.2.0", + "escape-string-regexp": "1.0.5", + "supports-color": "4.5.0" + } + }, + "postcss": { + "version": "6.0.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz", + "integrity": "sha512-NJ1z0f+1offCgadPhz+DvGm5Mkci+mmV5BqD13S992o0Xk9eElxUfPPF+t2ksH5R/17gz4xVK8KWocUQ5o3Rog==", + "requires": { + "chalk": "2.3.0", + "source-map": "0.6.1", + "supports-color": "4.5.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "2.0.0" + } + } + } + }, + "postcss-modules-values": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz", + "integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=", + "requires": { + "icss-replace-symbols": "1.1.0", + "postcss": "6.0.14" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", + "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", + "requires": { + "color-convert": "1.9.1" + } + }, + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", + "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", + "requires": { + "ansi-styles": "3.2.0", + "escape-string-regexp": "1.0.5", + "supports-color": "4.5.0" + } + }, + "postcss": { + "version": "6.0.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz", + "integrity": "sha512-NJ1z0f+1offCgadPhz+DvGm5Mkci+mmV5BqD13S992o0Xk9eElxUfPPF+t2ksH5R/17gz4xVK8KWocUQ5o3Rog==", + "requires": { + "chalk": "2.3.0", + "source-map": "0.6.1", + "supports-color": "4.5.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "2.0.0" + } + } + } + }, + "postcss-normalize-charset": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz", + "integrity": "sha1-757nEhLX/nWceO0WL2HtYrXLk/E=", + "requires": { + "postcss": "5.2.18" + } + }, + "postcss-normalize-url": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz", + "integrity": "sha1-EI90s/L82viRov+j6kWSJ5/HgiI=", + "requires": { + "is-absolute-url": "2.1.0", + "normalize-url": "1.9.1", + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0" + } + }, + "postcss-ordered-values": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz", + "integrity": "sha1-7sbCpntsQSqNsgQud/6NpD+VwR0=", + "requires": { + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0" + } + }, + "postcss-reduce-idents": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz", + "integrity": "sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM=", + "requires": { + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0" + } + }, + "postcss-reduce-initial": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz", + "integrity": "sha1-aPgGlfBF0IJjqHmtJA343WT2ROo=", + "requires": { + "postcss": "5.2.18" + } + }, + "postcss-reduce-transforms": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz", + "integrity": "sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=", + "requires": { + "has": "1.0.1", + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0" + } + }, + "postcss-selector-parser": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz", + "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=", + "requires": { + "flatten": "1.0.2", + "indexes-of": "1.0.1", + "uniq": "1.0.1" + } + }, + "postcss-svgo": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz", + "integrity": "sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0=", + "requires": { + "is-svg": "2.1.0", + "postcss": "5.2.18", + "postcss-value-parser": "3.3.0", + "svgo": "0.7.2" + } + }, + "postcss-unique-selectors": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz", + "integrity": "sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0=", + "requires": { + "alphanum-sort": "1.0.2", + "postcss": "5.2.18", + "uniqs": "2.0.0" + } + }, + "postcss-value-parser": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", + "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=" + }, + "postcss-zindex": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz", + "integrity": "sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=", + "requires": { + "has": "1.0.1", + "postcss": "5.2.18", + "uniqs": "2.0.0" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=" + }, + "private": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==" + }, + "process": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/process/-/process-0.5.2.tgz", + "integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=" + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "progress": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz", + "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=" + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "requires": { + "asap": "2.0.6" + } + }, + "prop-types": { + "version": "15.6.0", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.0.tgz", + "integrity": "sha1-zq8IMCL8RrSjX2nhPvda7Q1jmFY=", + "requires": { + "fbjs": "0.8.16", + "loose-envify": "1.3.1", + "object-assign": "4.1.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" + }, + "public-encrypt": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.0.tgz", + "integrity": "sha1-OfaZ86RlYN1eusvKaTyvfGXBjMY=", + "requires": { + "bn.js": "4.11.8", + "browserify-rsa": "4.0.1", + "create-hash": "1.1.3", + "parse-asn1": "5.1.0", + "randombytes": "2.0.5" + } + }, + "pullstream": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/pullstream/-/pullstream-0.4.1.tgz", + "integrity": "sha1-1vs79a7Wl+gxFQ6xACwlo/iuExQ=", + "requires": { + "over": "0.0.5", + "readable-stream": "1.0.34", + "setimmediate": "1.0.5", + "slice-stream": "1.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + }, + "qs": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", + "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "requires": { + "object-assign": "4.1.1", + "strict-uri-encode": "1.1.0" + } + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + }, + "raf": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.0.tgz", + "integrity": "sha512-pDP/NMRAXoTfrhCfyfSEwJAKLaxBU9eApMeBPB1TkDouZmvPerIClV8lTAd+uF8ZiTaVl69e1FCxQrAd/VTjGw==", + "requires": { + "performance-now": "2.1.0" + } + }, + "rafl": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/rafl/-/rafl-1.2.2.tgz", + "integrity": "sha1-/pMPdYIRAg1H44gV9Rlqi+QVB0A=", + "requires": { + "global": "4.3.2" + } + }, + "ramda": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.25.0.tgz", + "integrity": "sha512-GXpfrYVPwx3K7RQ6aYT8KPS8XViSXUVJT1ONhoKPE9VAleW42YE+U+8VEyGWt41EnEQW7gwecYJriTI0pKoecQ==" + }, + "randomatic": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", + "integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==", + "requires": { + "is-number": "3.0.0", + "kind-of": "4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "randombytes": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.5.tgz", + "integrity": "sha512-8T7Zn1AhMsQ/HI1SjcCfT/t4ii3eAqco3yOcSzS4mozsOz69lHLsoMXmF9nZgnFanYscnSlUSgs8uZyKzpE6kg==", + "requires": { + "safe-buffer": "5.1.1" + } + }, + "randomfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.3.tgz", + "integrity": "sha512-YL6GrhrWoic0Eq8rXVbMptH7dAxCs0J+mh5Y0euNekPPYaxEmdVGim6GdoxoRzKW2yJoU8tueifS7mYxvcFDEQ==", + "requires": { + "randombytes": "2.0.5", + "safe-buffer": "5.1.1" + } + }, + "react": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-16.2.0.tgz", + "integrity": "sha512-ZmIomM7EE1DvPEnSFAHZn9Vs9zJl5A9H7el0EGTE6ZbW9FKe/14IYAlPbC8iH25YarEQxZL+E8VW7Mi7kfQrDQ==", + "requires": { + "fbjs": "0.8.16", + "loose-envify": "1.3.1", + "object-assign": "4.1.1", + "prop-types": "15.6.0" + } + }, + "react-dom": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.2.0.tgz", + "integrity": "sha512-zpGAdwHVn9K0091d+hr+R0qrjoJ84cIBFL2uU60KvWBPfZ7LPSrfqviTxGHWN0sjPZb2hxWzMexwrvJdKePvjg==", + "requires": { + "fbjs": "0.8.16", + "loose-envify": "1.3.1", + "object-assign": "4.1.1", + "prop-types": "15.6.0" + } + }, + "react-event-listener": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/react-event-listener/-/react-event-listener-0.5.2.tgz", + "integrity": "sha512-E22Sc/PtzVWw/fRidkEy1ZNnpSMJARUVV/5LymsDe4NjIHzNcVpNLV/R2Kt40NN8X6tu/X5p2inCny7vqd97mg==", + "requires": { + "babel-runtime": "6.26.0", + "fbjs": "0.8.16", + "prop-types": "15.6.0", + "warning": "3.0.0" + } + }, + "react-fa": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/react-fa/-/react-fa-5.0.0.tgz", + "integrity": "sha512-pBEJigNkDJPAP/P9mQXT55VbJbbtwqi4ayieXuFvGpd+gl3aZ9IbjjVKJihdhdysJP0XRgrSa3sT3yOmkQi8wQ==", + "requires": { + "font-awesome": "4.7.0", + "prop-types": "15.6.0" + } + }, + "react-jss": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/react-jss/-/react-jss-8.2.0.tgz", + "integrity": "sha512-GaD9lPMFeNaLGbgrGNVKn8MwqxEULfi2+nuU0chYALK4wivhVJ2qya7UN6UNXzqxb+rjR1rOqdUQejHKCTQRTg==", + "requires": { + "hoist-non-react-statics": "2.3.1", + "jss": "9.4.0", + "jss-preset-default": "4.0.1", + "prop-types": "15.6.0", + "theming": "1.3.0" + } + }, + "react-popper": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-0.7.4.tgz", + "integrity": "sha512-dx1fcKYYkidq7f71I1g+YX7g3QBLZ9taqiSRdJ7wbP7v/o7F6JsrUaNWGbVNul+TqdDDIZ5/k0xPUol9baqQJQ==", + "requires": { + "popper.js": "1.12.9", + "prop-types": "15.6.0" + } + }, + "react-resize-detector": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/react-resize-detector/-/react-resize-detector-1.1.0.tgz", + "integrity": "sha512-68KVcQlhcWQGXMAie82YueCa4f4yqwEoiQbVyYlSgJEin1zMtNBLLeU/+6FLNf1TTgjwSfpbMTJTw/uU0HNgtQ==", + "requires": { + "prop-types": "15.6.0" + } + }, + "react-scrollbar-size": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/react-scrollbar-size/-/react-scrollbar-size-2.0.2.tgz", + "integrity": "sha512-scpDs2PZFf9CJteBeDu7jkk7s+YX06Si4rQGVHsH6vjR/p7417q1Jv5SpOblLLesOgNrfWekwoHQG1g0/p3tvw==", + "requires": { + "babel-runtime": "6.26.0", + "prop-types": "15.6.0", + "react-event-listener": "0.5.2" + } + }, + "react-smooth": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-1.0.0.tgz", + "integrity": "sha1-sp2+vd3bBtIbWwiWIWf7nqwYl9g=", + "requires": { + "lodash": "4.17.4", + "prop-types": "15.6.0", + "raf": "3.4.0", + "react-transition-group": "2.2.1" + } + }, + "react-transition-group": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.2.1.tgz", + "integrity": "sha512-q54UBM22bs/CekG8r3+vi9TugSqh0t7qcEVycaRc9M0p0aCEu+h6rp/RFiW7fHfgd1IKpd9oILFTl5QK+FpiPA==", + "requires": { + "chain-function": "1.0.0", + "classnames": "2.2.5", + "dom-helpers": "3.3.1", + "loose-envify": "1.3.1", + "prop-types": "15.6.0", + "warning": "3.0.0" + } + }, + "read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "requires": { + "load-json-file": "2.0.0", + "normalize-package-data": "2.4.0", + "path-type": "2.0.0" + } + }, + "read-pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "requires": { + "find-up": "2.1.0", + "read-pkg": "2.0.0" + } + }, + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "1.0.7", + "safe-buffer": "5.1.1", + "string_decoder": "1.0.3", + "util-deprecate": "1.0.2" + } + }, + "readdirp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", + "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", + "requires": { + "graceful-fs": "4.1.11", + "minimatch": "3.0.4", + "readable-stream": "2.3.3", + "set-immediate-shim": "1.0.1" + } + }, + "recharts": { + "version": "1.0.0-beta.7", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-1.0.0-beta.7.tgz", + "integrity": "sha1-/M+T6vWVH3Q4y3a1pd0P50rVRFA=", + "requires": { + "classnames": "2.2.5", + "core-js": "2.5.1", + "d3-interpolate": "1.1.6", + "d3-scale": "1.0.6", + "d3-shape": "1.2.0", + "lodash": "4.17.4", + "prop-types": "15.6.0", + "react-resize-detector": "1.1.0", + "react-smooth": "1.0.0", + "recharts-scale": "0.3.2", + "reduce-css-calc": "1.3.0" + }, + "dependencies": { + "core-js": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz", + "integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs=" + } + } + }, + "recharts-scale": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.3.2.tgz", + "integrity": "sha1-2sdiFxSkdl0VLLKtvDDHO4MSCMk=" + }, + "recompose": { + "version": "0.26.0", + "resolved": "https://registry.npmjs.org/recompose/-/recompose-0.26.0.tgz", + "integrity": "sha512-KwOu6ztO0mN5vy3+zDcc45lgnaUoaQse/a5yLVqtzTK13czSWnFGmXbQVmnoMgDkI5POd1EwIKSbjU1V7xdZog==", + "requires": { + "change-emitter": "0.1.6", + "fbjs": "0.8.16", + "hoist-non-react-statics": "2.3.1", + "symbol-observable": "1.1.0" + } + }, + "reduce-css-calc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz", + "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=", + "requires": { + "balanced-match": "0.4.2", + "math-expression-evaluator": "1.2.17", + "reduce-function-call": "1.0.2" + }, + "dependencies": { + "balanced-match": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", + "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=" + } + } + }, + "reduce-function-call": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz", + "integrity": "sha1-WiAL+S4ON3UXUv5FsKszD9S2vpk=", + "requires": { + "balanced-match": "0.4.2" + }, + "dependencies": { + "balanced-match": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", + "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=" + } + } + }, + "regenerate": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz", + "integrity": "sha512-jVpo1GadrDAK59t/0jRx5VxYWQEDkkEKi6+HjE3joFVLfDOh9Xrdh0dF1eSq+BI/SwvTQ44gSscJ8N5zYL61sg==" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + }, + "regenerator-transform": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz", + "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==", + "requires": { + "babel-runtime": "6.26.0", + "babel-types": "6.26.0", + "private": "0.1.8" + } + }, + "regex-cache": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", + "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", + "requires": { + "is-equal-shallow": "0.1.3" + } + }, + "regexpu-core": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz", + "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=", + "requires": { + "regenerate": "1.3.3", + "regjsgen": "0.2.0", + "regjsparser": "0.1.5" + } + }, + "regjsgen": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", + "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=" + }, + "regjsparser": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", + "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", + "requires": { + "jsesc": "0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + } + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "requires": { + "is-finite": "1.0.2" + } + }, + "request": { + "version": "2.83.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz", + "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==", + "requires": { + "aws-sign2": "0.7.0", + "aws4": "1.6.0", + "caseless": "0.12.0", + "combined-stream": "1.0.5", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.3.1", + "har-validator": "5.0.3", + "hawk": "6.0.2", + "http-signature": "1.2.0", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.17", + "oauth-sign": "0.8.2", + "performance-now": "2.1.0", + "qs": "6.5.1", + "safe-buffer": "5.1.1", + "stringstream": "0.0.5", + "tough-cookie": "2.3.3", + "tunnel-agent": "0.6.0", + "uuid": "3.1.0" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + }, + "require-uncached": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", + "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", + "requires": { + "caller-path": "0.1.0", + "resolve-from": "1.0.1" + } + }, + "resolve": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz", + "integrity": "sha512-hgoSGrc3pjzAPHNBg+KnFcK2HwlHTs/YrAGUr6qgTVUZmXv1UEXXl0bZNBKMA9fud6lRYFdPGz0xXxycPzmmiw==", + "requires": { + "path-parse": "1.0.5" + } + }, + "resolve-from": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", + "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=" + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "requires": { + "onetime": "2.0.1", + "signal-exit": "3.0.2" + } + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "requires": { + "align-text": "0.1.4" + } + }, + "rimraf": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", + "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "requires": { + "glob": "7.1.2" + } + }, + "ripemd160": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.1.tgz", + "integrity": "sha1-D0WEKVxTo2KK9+bXmsohzlfRxuc=", + "requires": { + "hash-base": "2.0.2", + "inherits": "2.0.3" + } + }, + "run-async": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", + "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", + "requires": { + "is-promise": "2.1.0" + } + }, + "rx-lite": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", + "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=" + }, + "rx-lite-aggregates": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz", + "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=", + "requires": { + "rx-lite": "4.0.8" + } + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "schema-utils": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz", + "integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=", + "requires": { + "ajv": "5.5.2" + } + }, + "scroll": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/scroll/-/scroll-2.0.1.tgz", + "integrity": "sha1-tMfSfovPOuiligQvJyaK4/VfnM0=", + "requires": { + "rafl": "1.2.2" + } + }, + "semver": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", + "integrity": "sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg==" + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "set-immediate-shim": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", + "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=" + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "sha.js": { + "version": "2.4.9", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.9.tgz", + "integrity": "sha512-G8zektVqbiPHrylgew9Zg1VRB1L/DtXNUVAM6q4QLy8NE3qtHlFXTf8VLL4k1Yl6c7NMjtZUTdXV+X44nFaT6A==", + "requires": { + "inherits": "2.0.3", + "safe-buffer": "5.1.1" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "requires": { + "shebang-regex": "1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=" + }, + "slice-ansi": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz", + "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==", + "requires": { + "is-fullwidth-code-point": "2.0.0" + } + }, + "slice-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slice-stream/-/slice-stream-1.0.0.tgz", + "integrity": "sha1-WzO9ZvATsaf4ZGCwPUY97DmtPqA=", + "requires": { + "readable-stream": "1.0.34" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "sntp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", + "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", + "requires": { + "hoek": "4.2.0" + } + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "requires": { + "is-plain-obj": "1.1.0" + } + }, + "source-list-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz", + "integrity": "sha512-I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, + "source-map-support": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", + "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", + "requires": { + "source-map": "0.5.7" + } + }, + "spdx-correct": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", + "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", + "requires": { + "spdx-license-ids": "1.2.2" + } + }, + "spdx-expression-parse": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", + "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=" + }, + "spdx-license-ids": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", + "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=" + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "sshpk": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", + "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.1", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "tweetnacl": "0.14.5" + } + }, + "stream-browserify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", + "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.3" + } + }, + "stream-http": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.7.2.tgz", + "integrity": "sha512-c0yTD2rbQzXtSsFSVhtpvY/vS6u066PcXOX9kBB3mSO76RiUQzL340uJkGBWnlBg4/HZzqiUXtaVA7wcRcJgEw==", + "requires": { + "builtin-status-codes": "3.0.0", + "inherits": "2.0.3", + "readable-stream": "2.3.3", + "to-arraybuffer": "1.0.1", + "xtend": "4.0.1" + } + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "requires": { + "is-fullwidth-code-point": "2.0.0", + "strip-ansi": "4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "requires": { + "ansi-regex": "3.0.0" + } + } + } + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "requires": { + "safe-buffer": "5.1.1" + } + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=" + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "2.1.1" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + }, + "style-loader": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.19.1.tgz", + "integrity": "sha512-IRE+ijgojrygQi3rsqT0U4dd+UcPCqcVvauZpCnQrGAlEe+FUIyrK93bUDScamesjP08JlQNsFJU+KmPedP5Og==", + "requires": { + "loader-utils": "1.1.0", + "schema-utils": "0.3.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + }, + "svgo": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz", + "integrity": "sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U=", + "requires": { + "coa": "1.0.4", + "colors": "1.1.2", + "csso": "2.3.2", + "js-yaml": "3.7.0", + "mkdirp": "0.5.1", + "sax": "1.2.4", + "whet.extend": "0.9.9" + } + }, + "symbol-observable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.1.0.tgz", + "integrity": "sha512-dQoid9tqQ+uotGhuTKEY11X4xhyYePVnqGSoSm3OGKh2E8LZ6RPULp1uXTctk33IeERlrRJYoVSBglsL05F5Uw==" + }, + "table": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/table/-/table-4.0.2.tgz", + "integrity": "sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA==", + "requires": { + "ajv": "5.5.2", + "ajv-keywords": "2.1.1", + "chalk": "2.3.0", + "lodash": "4.17.4", + "slice-ansi": "1.0.0", + "string-width": "2.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", + "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", + "requires": { + "color-convert": "1.9.1" + } + }, + "chalk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", + "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", + "requires": { + "ansi-styles": "3.2.0", + "escape-string-regexp": "1.0.5", + "supports-color": "4.5.0" + } + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "2.0.0" + } + } + } + }, + "tapable": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz", + "integrity": "sha1-mTcqXJmb8t8WCvwNdL7U9HlIzSI=" + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "theming": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/theming/-/theming-1.3.0.tgz", + "integrity": "sha512-ya5Ef7XDGbTPBv5ENTwrwkPUexrlPeiAg/EI9kdlUAZhNlRbCdhMKRgjNX1IcmsmiPcqDQZE6BpSaH+cr31FKw==", + "requires": { + "brcast": "3.0.1", + "is-function": "1.0.1", + "is-plain-object": "2.0.4", + "prop-types": "15.6.0" + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" + }, + "timers-browserify": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.4.tgz", + "integrity": "sha512-uZYhyU3EX8O7HQP+J9fTVYwsq90Vr68xPEFo7yrVImIxYvHgukBEgOB/SgGoorWVTzGM/3Z+wUNnboA4M8jWrg==", + "requires": { + "setimmediate": "1.0.5" + } + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "requires": { + "os-tmpdir": "1.0.2" + } + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", + "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" + }, + "tough-cookie": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", + "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", + "requires": { + "punycode": "1.4.1" + } + }, + "traverse": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", + "integrity": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=" + }, + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=" + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "5.1.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "optional": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "requires": { + "prelude-ls": "1.1.2" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "ua-parser-js": { + "version": "0.7.17", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz", + "integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g==" + }, + "uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", + "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", + "requires": { + "source-map": "0.5.7", + "uglify-to-browserify": "1.0.2", + "yargs": "3.10.0" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "requires": { + "center-align": "0.1.3", + "right-align": "0.1.3", + "wordwrap": "0.0.2" + } + }, + "window-size": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", + "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=" + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" + }, + "yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", + "requires": { + "camelcase": "1.2.1", + "cliui": "2.1.0", + "decamelize": "1.2.0", + "window-size": "0.1.0" + } + } + } + }, + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "optional": true + }, + "uglifyjs-webpack-plugin": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz", + "integrity": "sha1-uVH0q7a9YX5m9j64kUmOORdj4wk=", + "requires": { + "source-map": "0.5.7", + "uglify-js": "2.8.29", + "webpack-sources": "1.1.0" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "uniqid": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/uniqid/-/uniqid-4.1.1.tgz", + "integrity": "sha1-iSIN32t1GuUrX3JISGNShZa7hME=", + "requires": { + "macaddress": "0.2.8" + } + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" + }, + "universalify": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz", + "integrity": "sha1-+nG63UQ3r0wUiEHjs7Fl+enlkLc=" + }, + "unzip": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/unzip/-/unzip-0.1.11.tgz", + "integrity": "sha1-iXScY7BY19kNYZ+GuYqhU107l/A=", + "requires": { + "binary": "0.3.0", + "fstream": "0.1.31", + "match-stream": "0.0.2", + "pullstream": "0.4.1", + "readable-stream": "1.0.34", + "setimmediate": "1.0.5" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "0.0.1", + "string_decoder": "0.10.31" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + } + } + }, + "url-loader": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-0.6.2.tgz", + "integrity": "sha512-h3qf9TNn53BpuXTTcpC+UehiRrl0Cv45Yr/xWayApjw6G8Bg2dGke7rIwDQ39piciWCWrC+WiqLjOh3SUp9n0Q==", + "requires": { + "loader-utils": "1.1.0", + "mime": "1.6.0", + "schema-utils": "0.3.0" + } + }, + "url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", + "requires": { + "prepend-http": "1.0.4" + } + }, + "url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=" + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "requires": { + "inherits": "2.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "uuid": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz", + "integrity": "sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==" + }, + "validate-npm-package-license": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", + "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", + "requires": { + "spdx-correct": "1.0.2", + "spdx-expression-parse": "1.0.4" + } + }, + "vendors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.1.tgz", + "integrity": "sha1-N61zyO5Bf7PVgOeFMSMH0nSEfyI=" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + } + }, + "vm-browserify": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", + "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", + "requires": { + "indexof": "0.0.1" + } + }, + "warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/warning/-/warning-3.0.0.tgz", + "integrity": "sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w=", + "requires": { + "loose-envify": "1.3.1" + } + }, + "watchpack": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.4.0.tgz", + "integrity": "sha1-ShRyvLuVK9Cpu0A2gB+VTfs5+qw=", + "requires": { + "async": "2.6.0", + "chokidar": "1.7.0", + "graceful-fs": "4.1.11" + } + }, + "webpack": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-3.10.0.tgz", + "integrity": "sha512-fxxKXoicjdXNUMY7LIdY89tkJJJ0m1Oo8PQutZ5rLgWbV5QVKI15Cn7+/IHnRTd3vfKfiwBx6SBqlorAuNA8LA==", + "requires": { + "acorn": "5.2.1", + "acorn-dynamic-import": "2.0.2", + "ajv": "5.5.2", + "ajv-keywords": "2.1.1", + "async": "2.6.0", + "enhanced-resolve": "3.4.1", + "escope": "3.6.0", + "interpret": "1.1.0", + "json-loader": "0.5.7", + "json5": "0.5.1", + "loader-runner": "2.3.0", + "loader-utils": "1.1.0", + "memory-fs": "0.4.1", + "mkdirp": "0.5.1", + "node-libs-browser": "2.1.0", + "source-map": "0.5.7", + "supports-color": "4.5.0", + "tapable": "0.2.8", + "uglifyjs-webpack-plugin": "0.4.6", + "watchpack": "1.4.0", + "webpack-sources": "1.1.0", + "yargs": "8.0.2" + }, + "dependencies": { + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" + }, + "os-locale": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", + "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", + "requires": { + "execa": "0.7.0", + "lcid": "1.0.0", + "mem": "1.1.0" + } + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "requires": { + "has-flag": "2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "yargs": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz", + "integrity": "sha1-YpmpBVsc78lp/355wdkY3Osiw2A=", + "requires": { + "camelcase": "4.1.0", + "cliui": "3.2.0", + "decamelize": "1.2.0", + "get-caller-file": "1.0.2", + "os-locale": "2.1.0", + "read-pkg-up": "2.0.0", + "require-directory": "2.1.1", + "require-main-filename": "1.0.1", + "set-blocking": "2.0.0", + "string-width": "2.1.1", + "which-module": "2.0.0", + "y18n": "3.2.1", + "yargs-parser": "7.0.0" + } + }, + "yargs-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz", + "integrity": "sha1-jQrELxbqVd69MyyvTEA4s+P139k=", + "requires": { + "camelcase": "4.1.0" + } + } + } + }, + "webpack-sources": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.1.0.tgz", + "integrity": "sha512-aqYp18kPphgoO5c/+NaUvEeACtZjMESmDChuD3NBciVpah3XpMEU9VAAtIaB1BsfJWWTSdv8Vv1m3T0aRk2dUw==", + "requires": { + "source-list-map": "2.0.0", + "source-map": "0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "whatwg-fetch": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", + "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=" + }, + "whet.extend": { + "version": "0.9.9", + "resolved": "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz", + "integrity": "sha1-+HfVv2SMl+WqVC+twW1qJZucEaE=" + }, + "which": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz", + "integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==", + "requires": { + "isexe": "2.0.0" + } + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" + }, + "window-size": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", + "integrity": "sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU=" + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "1.0.1" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "write": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", + "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", + "requires": { + "mkdirp": "0.5.1" + } + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + }, + "y18n": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", + "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" + }, + "yargs": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz", + "integrity": "sha1-wMQpJMpKqmsObaFznfshZDn53cA=", + "requires": { + "cliui": "3.2.0", + "decamelize": "1.2.0", + "get-caller-file": "1.0.2", + "lodash.assign": "4.2.0", + "os-locale": "1.4.0", + "read-pkg-up": "1.0.1", + "require-directory": "2.1.1", + "require-main-filename": "1.0.1", + "set-blocking": "2.0.0", + "string-width": "1.0.2", + "which-module": "1.0.0", + "window-size": "0.2.0", + "y18n": "3.2.1", + "yargs-parser": "2.4.1" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "requires": { + "path-exists": "2.1.0", + "pinkie-promise": "2.0.1" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "1.0.1" + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "requires": { + "graceful-fs": "4.1.11", + "parse-json": "2.2.0", + "pify": "2.3.0", + "pinkie-promise": "2.0.1", + "strip-bom": "2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "requires": { + "pinkie-promise": "2.0.1" + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "requires": { + "graceful-fs": "4.1.11", + "pify": "2.3.0", + "pinkie-promise": "2.0.1" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "requires": { + "load-json-file": "1.1.0", + "normalize-package-data": "2.4.0", + "path-type": "1.1.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "requires": { + "find-up": "1.1.2", + "read-pkg": "1.1.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "0.2.1" + } + } + } + }, + "yargs-parser": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz", + "integrity": "sha1-hVaN488VD/SfpRgl8DqMiA3cxcQ=", + "requires": { + "camelcase": "3.0.0", + "lodash.assign": "4.2.0" + } + } + } +} diff --git a/dashboard/dashboard.go b/dashboard/dashboard.go index 31058dceb2..513099e01e 100644 --- a/dashboard/dashboard.go +++ b/dashboard/dashboard.go @@ -18,7 +18,8 @@ package dashboard //go:generate ./assets/node_modules/.bin/webpack --config ./assets/webpack.config.js --context ./assets //go:generate go-bindata -nometadata -o assets.go -prefix assets -nocompress -pkg dashboard assets/public/... -//go:generate gofmt -s -w . +//go:generate gofmt -s -w assets.go +//go:generate sed -i "s#var _public#//nolint:misspell\\n&#" assets.go import ( "fmt"