@@ -3163,11 +3163,12 @@ return /******/ (function(modules) { // webpackBootstrap
31633163
31643164 return {
31653165 componentDidMount: function() {
3166- if(! this.handleClickOutside)
3166+ if(typeof this.handleClickOutside !== "function" )
31673167 throw new Error("Component lacks a handleClickOutside(event) function for processing outside click events.");
31683168
31693169 var fn = this.__outsideClickHandler = (function(localNode, eventHandler) {
31703170 return function(evt) {
3171+ evt.stopPropagation();
31713172 var source = evt.target;
31723173 var found = false;
31733174 // If source=local then this event came from "somewhere"
@@ -3222,7 +3223,7 @@ return /******/ (function(modules) { // webpackBootstrap
32223223 * Can be called to explicitly disable event listening
32233224 * for clicks and touches outside of this element.
32243225 */
3225- disableOnClickOutside: function(fn ) {
3226+ disableOnClickOutside: function() {
32263227 var fn = this.__outsideClickHandler;
32273228 document.removeEventListener("mousedown", fn);
32283229 document.removeEventListener("touchstart", fn);
@@ -7402,11 +7403,11 @@ return /******/ (function(modules) { // webpackBootstrap
74027403 var _again = true;_function: while (_again) {
74037404 var object = _x,
74047405 property = _x2,
7405- receiver = _x3;desc = parent = getter = undefined; _again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
7406+ receiver = _x3;_again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
74067407 var parent = Object.getPrototypeOf(object);if (parent === null) {
74077408 return undefined;
74087409 } else {
7409- _x = parent;_x2 = property;_x3 = receiver;_again = true;continue _function;
7410+ _x = parent;_x2 = property;_x3 = receiver;_again = true;desc = parent = undefined; continue _function;
74107411 }
74117412 } else if ("value" in desc) {
74127413 return desc.value;
@@ -9342,12 +9343,14 @@ return /******/ (function(modules) { // webpackBootstrap
93429343 Licensed under the MIT License (MIT), see
93439344 http://jedwatson.github.io/classnames
93449345 */
9346+ /* global define */
93459347
93469348 (function () {
93479349 'use strict';
93489350
9349- function classNames () {
9351+ var hasOwn = {}.hasOwnProperty;
93509352
9353+ function classNames () {
93519354 var classes = '';
93529355
93539356 for (var i = 0; i < arguments.length; i++) {
@@ -9356,15 +9359,13 @@ return /******/ (function(modules) { // webpackBootstrap
93569359
93579360 var argType = typeof arg;
93589361
9359- if ('string' === argType || 'number' === argType ) {
9362+ if (argType === 'string' || argType === 'number' ) {
93609363 classes += ' ' + arg;
9361-
93629364 } else if (Array.isArray(arg)) {
93639365 classes += ' ' + classNames.apply(null, arg);
9364-
9365- } else if ('object' === argType) {
9366+ } else if (argType === 'object') {
93669367 for (var key in arg) {
9367- if (arg.hasOwnProperty( key) && arg[key]) {
9368+ if (hasOwn.call(arg, key) && arg[key]) {
93689369 classes += ' ' + key;
93699370 }
93709371 }
@@ -9376,15 +9377,14 @@ return /******/ (function(modules) { // webpackBootstrap
93769377
93779378 if (typeof module !== 'undefined' && module.exports) {
93789379 module.exports = classNames;
9379- } else if (true){
9380- // AMD. Register as an anonymous module.
9380+ } else if (true) {
9381+ // register as 'classnames', consistent with npm package name
93819382 !(__WEBPACK_AMD_DEFINE_RESULT__ = function () {
93829383 return classNames;
93839384 }.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
93849385 } else {
93859386 window.classNames = classNames;
93869387 }
9387-
93889388 }());
93899389
93909390
@@ -9419,11 +9419,11 @@ return /******/ (function(modules) { // webpackBootstrap
94199419 var _again = true;_function: while (_again) {
94209420 var object = _x,
94219421 property = _x2,
9422- receiver = _x3;desc = parent = getter = undefined; _again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
9422+ receiver = _x3;_again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
94239423 var parent = Object.getPrototypeOf(object);if (parent === null) {
94249424 return undefined;
94259425 } else {
9426- _x = parent;_x2 = property;_x3 = receiver;_again = true;continue _function;
9426+ _x = parent;_x2 = property;_x3 = receiver;_again = true;desc = parent = undefined; continue _function;
94279427 }
94289428 } else if ("value" in desc) {
94299429 return desc.value;
@@ -9516,11 +9516,11 @@ return /******/ (function(modules) { // webpackBootstrap
95169516 var _again = true;_function: while (_again) {
95179517 var object = _x,
95189518 property = _x2,
9519- receiver = _x3;desc = parent = getter = undefined; _again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
9519+ receiver = _x3;_again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
95209520 var parent = Object.getPrototypeOf(object);if (parent === null) {
95219521 return undefined;
95229522 } else {
9523- _x = parent;_x2 = property;_x3 = receiver;_again = true;continue _function;
9523+ _x = parent;_x2 = property;_x3 = receiver;_again = true;desc = parent = undefined; continue _function;
95249524 }
95259525 } else if ("value" in desc) {
95269526 return desc.value;
@@ -10019,11 +10019,11 @@ return /******/ (function(modules) { // webpackBootstrap
1001910019 var _again = true;_function: while (_again) {
1002010020 var object = _x,
1002110021 property = _x2,
10022- receiver = _x3;desc = parent = getter = undefined; _again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
10022+ receiver = _x3;_again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
1002310023 var parent = Object.getPrototypeOf(object);if (parent === null) {
1002410024 return undefined;
1002510025 } else {
10026- _x = parent;_x2 = property;_x3 = receiver;_again = true;continue _function;
10026+ _x = parent;_x2 = property;_x3 = receiver;_again = true;desc = parent = undefined; continue _function;
1002710027 }
1002810028 } else if ('value' in desc) {
1002910029 return desc.value;
@@ -10238,11 +10238,11 @@ return /******/ (function(modules) { // webpackBootstrap
1023810238 var _again = true;_function: while (_again) {
1023910239 var object = _x,
1024010240 property = _x2,
10241- receiver = _x3;desc = parent = getter = undefined; _again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
10241+ receiver = _x3;_again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
1024210242 var parent = Object.getPrototypeOf(object);if (parent === null) {
1024310243 return undefined;
1024410244 } else {
10245- _x = parent;_x2 = property;_x3 = receiver;_again = true;continue _function;
10245+ _x = parent;_x2 = property;_x3 = receiver;_again = true;desc = parent = undefined; continue _function;
1024610246 }
1024710247 } else if ('value' in desc) {
1024810248 return desc.value;
@@ -10525,11 +10525,11 @@ return /******/ (function(modules) { // webpackBootstrap
1052510525 var _again = true;_function: while (_again) {
1052610526 var object = _x,
1052710527 property = _x2,
10528- receiver = _x3;desc = parent = getter = undefined; _again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
10528+ receiver = _x3;_again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
1052910529 var parent = Object.getPrototypeOf(object);if (parent === null) {
1053010530 return undefined;
1053110531 } else {
10532- _x = parent;_x2 = property;_x3 = receiver;_again = true;continue _function;
10532+ _x = parent;_x2 = property;_x3 = receiver;_again = true;desc = parent = undefined; continue _function;
1053310533 }
1053410534 } else if ('value' in desc) {
1053510535 return desc.value;
@@ -10637,11 +10637,11 @@ return /******/ (function(modules) { // webpackBootstrap
1063710637 var _again = true;_function: while (_again) {
1063810638 var object = _x,
1063910639 property = _x2,
10640- receiver = _x3;desc = parent = getter = undefined; _again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
10640+ receiver = _x3;_again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
1064110641 var parent = Object.getPrototypeOf(object);if (parent === null) {
1064210642 return undefined;
1064310643 } else {
10644- _x = parent;_x2 = property;_x3 = receiver;_again = true;continue _function;
10644+ _x = parent;_x2 = property;_x3 = receiver;_again = true;desc = parent = undefined; continue _function;
1064510645 }
1064610646 } else if ('value' in desc) {
1064710647 return desc.value;
@@ -11204,11 +11204,11 @@ return /******/ (function(modules) { // webpackBootstrap
1120411204 var _again = true;_function: while (_again) {
1120511205 var object = _x,
1120611206 property = _x2,
11207- receiver = _x3;desc = parent = getter = undefined; _again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
11207+ receiver = _x3;_again = false;if (object === null) object = Function.prototype;var desc = Object.getOwnPropertyDescriptor(object, property);if (desc === undefined) {
1120811208 var parent = Object.getPrototypeOf(object);if (parent === null) {
1120911209 return undefined;
1121011210 } else {
11211- _x = parent;_x2 = property;_x3 = receiver;_again = true;continue _function;
11211+ _x = parent;_x2 = property;_x3 = receiver;_again = true;desc = parent = undefined; continue _function;
1121211212 }
1121311213 } else if ("value" in desc) {
1121411214 return desc.value;
0 commit comments