react-dom 15.4.0-rc.4 → 15.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * ReactDOMServer v15.4.0-rc.4
2
+ * ReactDOMServer v15.4.0
3
3
  */
4
4
 
5
5
  ;(function(f) {
@@ -118,7 +118,7 @@ module.exports = ARIADOMPropertyConfig;
118
118
 
119
119
  var ReactDOMComponentTree = _dereq_(32);
120
120
 
121
- var focusNode = _dereq_(133);
121
+ var focusNode = _dereq_(134);
122
122
 
123
123
  var AutoFocusUtils = {
124
124
  focusDOMComponent: function () {
@@ -127,7 +127,7 @@ var AutoFocusUtils = {
127
127
  };
128
128
 
129
129
  module.exports = AutoFocusUtils;
130
- },{"133":133,"32":32}],3:[function(_dereq_,module,exports){
130
+ },{"134":134,"32":32}],3:[function(_dereq_,module,exports){
131
131
  /**
132
132
  * Copyright 2013-present Facebook, Inc.
133
133
  * All rights reserved.
@@ -141,7 +141,7 @@ module.exports = AutoFocusUtils;
141
141
  'use strict';
142
142
 
143
143
  var EventPropagators = _dereq_(19);
144
- var ExecutionEnvironment = _dereq_(125);
144
+ var ExecutionEnvironment = _dereq_(126);
145
145
  var FallbackCompositionState = _dereq_(20);
146
146
  var SyntheticCompositionEvent = _dereq_(82);
147
147
  var SyntheticInputEvent = _dereq_(86);
@@ -512,7 +512,7 @@ var BeforeInputEventPlugin = {
512
512
  };
513
513
 
514
514
  module.exports = BeforeInputEventPlugin;
515
- },{"125":125,"19":19,"20":20,"82":82,"86":86}],4:[function(_dereq_,module,exports){
515
+ },{"126":126,"19":19,"20":20,"82":82,"86":86}],4:[function(_dereq_,module,exports){
516
516
  /**
517
517
  * Copyright 2013-present, Facebook, Inc.
518
518
  * All rights reserved.
@@ -674,14 +674,14 @@ module.exports = CSSProperty;
674
674
  'use strict';
675
675
 
676
676
  var CSSProperty = _dereq_(4);
677
- var ExecutionEnvironment = _dereq_(125);
677
+ var ExecutionEnvironment = _dereq_(126);
678
678
  var ReactInstrumentation = _dereq_(59);
679
679
 
680
- var camelizeStyleName = _dereq_(127);
680
+ var camelizeStyleName = _dereq_(128);
681
681
  var dangerousStyleValue = _dereq_(99);
682
- var hyphenateStyleName = _dereq_(138);
683
- var memoizeStringOnly = _dereq_(142);
684
- var warning = _dereq_(146);
682
+ var hyphenateStyleName = _dereq_(139);
683
+ var memoizeStringOnly = _dereq_(143);
684
+ var warning = _dereq_(147);
685
685
 
686
686
  var processStyleName = memoizeStringOnly(function (styleName) {
687
687
  return hyphenateStyleName(styleName);
@@ -869,7 +869,7 @@ var CSSPropertyOperations = {
869
869
  };
870
870
 
871
871
  module.exports = CSSPropertyOperations;
872
- },{"125":125,"127":127,"138":138,"142":142,"146":146,"4":4,"59":59,"99":99}],6:[function(_dereq_,module,exports){
872
+ },{"126":126,"128":128,"139":139,"143":143,"147":147,"4":4,"59":59,"99":99}],6:[function(_dereq_,module,exports){
873
873
  /**
874
874
  * Copyright 2013-present, Facebook, Inc.
875
875
  * All rights reserved.
@@ -883,13 +883,13 @@ module.exports = CSSPropertyOperations;
883
883
 
884
884
  'use strict';
885
885
 
886
- var _prodInvariant = _dereq_(115);
886
+ var _prodInvariant = _dereq_(116);
887
887
 
888
888
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
889
889
 
890
890
  var PooledClass = _dereq_(24);
891
891
 
892
- var invariant = _dereq_(139);
892
+ var invariant = _dereq_(140);
893
893
 
894
894
  /**
895
895
  * A specialized pseudo-event module to help keep track of components waiting to
@@ -988,7 +988,7 @@ var CallbackQueue = function () {
988
988
  }();
989
989
 
990
990
  module.exports = PooledClass.addPoolingTo(CallbackQueue);
991
- },{"115":115,"139":139,"24":24}],7:[function(_dereq_,module,exports){
991
+ },{"116":116,"140":140,"24":24}],7:[function(_dereq_,module,exports){
992
992
  /**
993
993
  * Copyright 2013-present, Facebook, Inc.
994
994
  * All rights reserved.
@@ -1003,14 +1003,14 @@ module.exports = PooledClass.addPoolingTo(CallbackQueue);
1003
1003
 
1004
1004
  var EventPluginHub = _dereq_(16);
1005
1005
  var EventPropagators = _dereq_(19);
1006
- var ExecutionEnvironment = _dereq_(125);
1006
+ var ExecutionEnvironment = _dereq_(126);
1007
1007
  var ReactDOMComponentTree = _dereq_(32);
1008
1008
  var ReactUpdates = _dereq_(75);
1009
1009
  var SyntheticEvent = _dereq_(84);
1010
1010
 
1011
1011
  var getEventTarget = _dereq_(106);
1012
- var isEventSupported = _dereq_(112);
1013
- var isTextInputElement = _dereq_(113);
1012
+ var isEventSupported = _dereq_(113);
1013
+ var isTextInputElement = _dereq_(114);
1014
1014
 
1015
1015
  var eventTypes = {
1016
1016
  change: {
@@ -1309,7 +1309,7 @@ var ChangeEventPlugin = {
1309
1309
  };
1310
1310
 
1311
1311
  module.exports = ChangeEventPlugin;
1312
- },{"106":106,"112":112,"113":113,"125":125,"16":16,"19":19,"32":32,"75":75,"84":84}],8:[function(_dereq_,module,exports){
1312
+ },{"106":106,"113":113,"114":114,"126":126,"16":16,"19":19,"32":32,"75":75,"84":84}],8:[function(_dereq_,module,exports){
1313
1313
  /**
1314
1314
  * Copyright 2013-present, Facebook, Inc.
1315
1315
  * All rights reserved.
@@ -1328,8 +1328,8 @@ var ReactDOMComponentTree = _dereq_(32);
1328
1328
  var ReactInstrumentation = _dereq_(59);
1329
1329
 
1330
1330
  var createMicrosoftUnsafeLocalFunction = _dereq_(98);
1331
- var setInnerHTML = _dereq_(116);
1332
- var setTextContent = _dereq_(117);
1331
+ var setInnerHTML = _dereq_(117);
1332
+ var setTextContent = _dereq_(118);
1333
1333
 
1334
1334
  function getNodeAfter(parentNode, node) {
1335
1335
  // Special case for text components, which return [open, close] comments
@@ -1534,7 +1534,7 @@ var DOMChildrenOperations = {
1534
1534
  };
1535
1535
 
1536
1536
  module.exports = DOMChildrenOperations;
1537
- },{"116":116,"117":117,"13":13,"32":32,"59":59,"9":9,"98":98}],9:[function(_dereq_,module,exports){
1537
+ },{"117":117,"118":118,"13":13,"32":32,"59":59,"9":9,"98":98}],9:[function(_dereq_,module,exports){
1538
1538
  /**
1539
1539
  * Copyright 2015-present, Facebook, Inc.
1540
1540
  * All rights reserved.
@@ -1548,10 +1548,10 @@ module.exports = DOMChildrenOperations;
1548
1548
  'use strict';
1549
1549
 
1550
1550
  var DOMNamespaces = _dereq_(10);
1551
- var setInnerHTML = _dereq_(116);
1551
+ var setInnerHTML = _dereq_(117);
1552
1552
 
1553
1553
  var createMicrosoftUnsafeLocalFunction = _dereq_(98);
1554
- var setTextContent = _dereq_(117);
1554
+ var setTextContent = _dereq_(118);
1555
1555
 
1556
1556
  var ELEMENT_NODE_TYPE = 1;
1557
1557
  var DOCUMENT_FRAGMENT_NODE_TYPE = 11;
@@ -1652,7 +1652,7 @@ DOMLazyTree.queueHTML = queueHTML;
1652
1652
  DOMLazyTree.queueText = queueText;
1653
1653
 
1654
1654
  module.exports = DOMLazyTree;
1655
- },{"10":10,"116":116,"117":117,"98":98}],10:[function(_dereq_,module,exports){
1655
+ },{"10":10,"117":117,"118":118,"98":98}],10:[function(_dereq_,module,exports){
1656
1656
  /**
1657
1657
  * Copyright 2013-present, Facebook, Inc.
1658
1658
  * All rights reserved.
@@ -1685,9 +1685,9 @@ module.exports = DOMNamespaces;
1685
1685
 
1686
1686
  'use strict';
1687
1687
 
1688
- var _prodInvariant = _dereq_(115);
1688
+ var _prodInvariant = _dereq_(116);
1689
1689
 
1690
- var invariant = _dereq_(139);
1690
+ var invariant = _dereq_(140);
1691
1691
 
1692
1692
  function checkMask(value, bitmask) {
1693
1693
  return (value & bitmask) === bitmask;
@@ -1882,7 +1882,7 @@ var DOMProperty = {
1882
1882
  };
1883
1883
 
1884
1884
  module.exports = DOMProperty;
1885
- },{"115":115,"139":139}],12:[function(_dereq_,module,exports){
1885
+ },{"116":116,"140":140}],12:[function(_dereq_,module,exports){
1886
1886
  /**
1887
1887
  * Copyright 2013-present, Facebook, Inc.
1888
1888
  * All rights reserved.
@@ -1899,8 +1899,8 @@ var DOMProperty = _dereq_(11);
1899
1899
  var ReactDOMComponentTree = _dereq_(32);
1900
1900
  var ReactInstrumentation = _dereq_(59);
1901
1901
 
1902
- var quoteAttributeValueForBrowser = _dereq_(114);
1903
- var warning = _dereq_(146);
1902
+ var quoteAttributeValueForBrowser = _dereq_(115);
1903
+ var warning = _dereq_(147);
1904
1904
 
1905
1905
  var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + DOMProperty.ATTRIBUTE_NAME_START_CHAR + '][' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');
1906
1906
  var illegalAttributeNameCache = {};
@@ -2119,7 +2119,7 @@ var DOMPropertyOperations = {
2119
2119
  };
2120
2120
 
2121
2121
  module.exports = DOMPropertyOperations;
2122
- },{"11":11,"114":114,"146":146,"32":32,"59":59}],13:[function(_dereq_,module,exports){
2122
+ },{"11":11,"115":115,"147":147,"32":32,"59":59}],13:[function(_dereq_,module,exports){
2123
2123
  /**
2124
2124
  * Copyright 2013-present, Facebook, Inc.
2125
2125
  * All rights reserved.
@@ -2132,14 +2132,14 @@ module.exports = DOMPropertyOperations;
2132
2132
 
2133
2133
  'use strict';
2134
2134
 
2135
- var _prodInvariant = _dereq_(115);
2135
+ var _prodInvariant = _dereq_(116);
2136
2136
 
2137
2137
  var DOMLazyTree = _dereq_(9);
2138
- var ExecutionEnvironment = _dereq_(125);
2138
+ var ExecutionEnvironment = _dereq_(126);
2139
2139
 
2140
- var createNodesFromMarkup = _dereq_(130);
2141
- var emptyFunction = _dereq_(131);
2142
- var invariant = _dereq_(139);
2140
+ var createNodesFromMarkup = _dereq_(131);
2141
+ var emptyFunction = _dereq_(132);
2142
+ var invariant = _dereq_(140);
2143
2143
 
2144
2144
  var Danger = {
2145
2145
 
@@ -2167,7 +2167,7 @@ var Danger = {
2167
2167
  };
2168
2168
 
2169
2169
  module.exports = Danger;
2170
- },{"115":115,"125":125,"130":130,"131":131,"139":139,"9":9}],14:[function(_dereq_,module,exports){
2170
+ },{"116":116,"126":126,"131":131,"132":132,"140":140,"9":9}],14:[function(_dereq_,module,exports){
2171
2171
  /**
2172
2172
  * Copyright 2013-present, Facebook, Inc.
2173
2173
  * All rights reserved.
@@ -2306,7 +2306,7 @@ module.exports = EnterLeaveEventPlugin;
2306
2306
 
2307
2307
  'use strict';
2308
2308
 
2309
- var _prodInvariant = _dereq_(115);
2309
+ var _prodInvariant = _dereq_(116);
2310
2310
 
2311
2311
  var EventPluginRegistry = _dereq_(17);
2312
2312
  var EventPluginUtils = _dereq_(18);
@@ -2314,7 +2314,7 @@ var ReactErrorUtils = _dereq_(50);
2314
2314
 
2315
2315
  var accumulateInto = _dereq_(95);
2316
2316
  var forEachAccumulated = _dereq_(102);
2317
- var invariant = _dereq_(139);
2317
+ var invariant = _dereq_(140);
2318
2318
 
2319
2319
  /**
2320
2320
  * Internal store for event listeners
@@ -2544,7 +2544,7 @@ var EventPluginHub = {
2544
2544
  };
2545
2545
 
2546
2546
  module.exports = EventPluginHub;
2547
- },{"102":102,"115":115,"139":139,"17":17,"18":18,"50":50,"95":95}],17:[function(_dereq_,module,exports){
2547
+ },{"102":102,"116":116,"140":140,"17":17,"18":18,"50":50,"95":95}],17:[function(_dereq_,module,exports){
2548
2548
  /**
2549
2549
  * Copyright 2013-present, Facebook, Inc.
2550
2550
  * All rights reserved.
@@ -2558,9 +2558,9 @@ module.exports = EventPluginHub;
2558
2558
 
2559
2559
  'use strict';
2560
2560
 
2561
- var _prodInvariant = _dereq_(115);
2561
+ var _prodInvariant = _dereq_(116);
2562
2562
 
2563
- var invariant = _dereq_(139);
2563
+ var invariant = _dereq_(140);
2564
2564
 
2565
2565
  /**
2566
2566
  * Injectable ordering of event plugins.
@@ -2799,7 +2799,7 @@ var EventPluginRegistry = {
2799
2799
  };
2800
2800
 
2801
2801
  module.exports = EventPluginRegistry;
2802
- },{"115":115,"139":139}],18:[function(_dereq_,module,exports){
2802
+ },{"116":116,"140":140}],18:[function(_dereq_,module,exports){
2803
2803
  /**
2804
2804
  * Copyright 2013-present, Facebook, Inc.
2805
2805
  * All rights reserved.
@@ -2812,12 +2812,12 @@ module.exports = EventPluginRegistry;
2812
2812
 
2813
2813
  'use strict';
2814
2814
 
2815
- var _prodInvariant = _dereq_(115);
2815
+ var _prodInvariant = _dereq_(116);
2816
2816
 
2817
2817
  var ReactErrorUtils = _dereq_(50);
2818
2818
 
2819
- var invariant = _dereq_(139);
2820
- var warning = _dereq_(146);
2819
+ var invariant = _dereq_(140);
2820
+ var warning = _dereq_(147);
2821
2821
 
2822
2822
  /**
2823
2823
  * Injected dependencies:
@@ -3025,7 +3025,7 @@ var EventPluginUtils = {
3025
3025
  };
3026
3026
 
3027
3027
  module.exports = EventPluginUtils;
3028
- },{"115":115,"139":139,"146":146,"50":50}],19:[function(_dereq_,module,exports){
3028
+ },{"116":116,"140":140,"147":147,"50":50}],19:[function(_dereq_,module,exports){
3029
3029
  /**
3030
3030
  * Copyright 2013-present, Facebook, Inc.
3031
3031
  * All rights reserved.
@@ -3043,7 +3043,7 @@ var EventPluginUtils = _dereq_(18);
3043
3043
 
3044
3044
  var accumulateInto = _dereq_(95);
3045
3045
  var forEachAccumulated = _dereq_(102);
3046
- var warning = _dereq_(146);
3046
+ var warning = _dereq_(147);
3047
3047
 
3048
3048
  var getListener = EventPluginHub.getListener;
3049
3049
 
@@ -3159,7 +3159,7 @@ var EventPropagators = {
3159
3159
  };
3160
3160
 
3161
3161
  module.exports = EventPropagators;
3162
- },{"102":102,"146":146,"16":16,"18":18,"95":95}],20:[function(_dereq_,module,exports){
3162
+ },{"102":102,"147":147,"16":16,"18":18,"95":95}],20:[function(_dereq_,module,exports){
3163
3163
  /**
3164
3164
  * Copyright 2013-present, Facebook, Inc.
3165
3165
  * All rights reserved.
@@ -3172,11 +3172,11 @@ module.exports = EventPropagators;
3172
3172
 
3173
3173
  'use strict';
3174
3174
 
3175
- var _assign = _dereq_(147);
3175
+ var _assign = _dereq_(148);
3176
3176
 
3177
3177
  var PooledClass = _dereq_(24);
3178
3178
 
3179
- var getTextContentAccessor = _dereq_(109);
3179
+ var getTextContentAccessor = _dereq_(110);
3180
3180
 
3181
3181
  /**
3182
3182
  * This helper class stores information about text content of a target node,
@@ -3254,7 +3254,7 @@ _assign(FallbackCompositionState.prototype, {
3254
3254
  PooledClass.addPoolingTo(FallbackCompositionState);
3255
3255
 
3256
3256
  module.exports = FallbackCompositionState;
3257
- },{"109":109,"147":147,"24":24}],21:[function(_dereq_,module,exports){
3257
+ },{"110":110,"148":148,"24":24}],21:[function(_dereq_,module,exports){
3258
3258
  /**
3259
3259
  * Copyright 2013-present, Facebook, Inc.
3260
3260
  * All rights reserved.
@@ -3538,13 +3538,13 @@ module.exports = KeyEscapeUtils;
3538
3538
 
3539
3539
  'use strict';
3540
3540
 
3541
- var _prodInvariant = _dereq_(115);
3541
+ var _prodInvariant = _dereq_(116);
3542
3542
 
3543
- var React = _dereq_(123);
3543
+ var React = _dereq_(124);
3544
3544
  var ReactPropTypesSecret = _dereq_(66);
3545
3545
 
3546
- var invariant = _dereq_(139);
3547
- var warning = _dereq_(146);
3546
+ var invariant = _dereq_(140);
3547
+ var warning = _dereq_(147);
3548
3548
 
3549
3549
  var hasReadOnlyValue = {
3550
3550
  'button': true,
@@ -3660,7 +3660,7 @@ var LinkedValueUtils = {
3660
3660
  };
3661
3661
 
3662
3662
  module.exports = LinkedValueUtils;
3663
- },{"115":115,"123":123,"139":139,"146":146,"66":66}],24:[function(_dereq_,module,exports){
3663
+ },{"116":116,"124":124,"140":140,"147":147,"66":66}],24:[function(_dereq_,module,exports){
3664
3664
  /**
3665
3665
  * Copyright 2013-present, Facebook, Inc.
3666
3666
  * All rights reserved.
@@ -3674,9 +3674,9 @@ module.exports = LinkedValueUtils;
3674
3674
 
3675
3675
  'use strict';
3676
3676
 
3677
- var _prodInvariant = _dereq_(115);
3677
+ var _prodInvariant = _dereq_(116);
3678
3678
 
3679
- var invariant = _dereq_(139);
3679
+ var invariant = _dereq_(140);
3680
3680
 
3681
3681
  /**
3682
3682
  * Static poolers. Several custom versions for each potential number of
@@ -3784,7 +3784,7 @@ var PooledClass = {
3784
3784
  };
3785
3785
 
3786
3786
  module.exports = PooledClass;
3787
- },{"115":115,"139":139}],25:[function(_dereq_,module,exports){
3787
+ },{"116":116,"140":140}],25:[function(_dereq_,module,exports){
3788
3788
  /**
3789
3789
  * Copyright 2013-present, Facebook, Inc.
3790
3790
  * All rights reserved.
@@ -3797,14 +3797,14 @@ module.exports = PooledClass;
3797
3797
 
3798
3798
  'use strict';
3799
3799
 
3800
- var _assign = _dereq_(147);
3800
+ var _assign = _dereq_(148);
3801
3801
 
3802
3802
  var EventPluginRegistry = _dereq_(17);
3803
3803
  var ReactEventEmitterMixin = _dereq_(51);
3804
3804
  var ViewportMetrics = _dereq_(94);
3805
3805
 
3806
- var getVendorPrefixedEventName = _dereq_(110);
3807
- var isEventSupported = _dereq_(112);
3806
+ var getVendorPrefixedEventName = _dereq_(111);
3807
+ var isEventSupported = _dereq_(113);
3808
3808
 
3809
3809
  /**
3810
3810
  * Summary of `ReactBrowserEventEmitter` event handling:
@@ -4112,7 +4112,7 @@ var ReactBrowserEventEmitter = _assign({}, ReactEventEmitterMixin, {
4112
4112
  });
4113
4113
 
4114
4114
  module.exports = ReactBrowserEventEmitter;
4115
- },{"110":110,"112":112,"147":147,"17":17,"51":51,"94":94}],26:[function(_dereq_,module,exports){
4115
+ },{"111":111,"113":113,"148":148,"17":17,"51":51,"94":94}],26:[function(_dereq_,module,exports){
4116
4116
  (function (process){
4117
4117
  /**
4118
4118
  * Copyright 2014-present, Facebook, Inc.
@@ -4128,11 +4128,11 @@ module.exports = ReactBrowserEventEmitter;
4128
4128
 
4129
4129
  var ReactReconciler = _dereq_(68);
4130
4130
 
4131
- var instantiateReactComponent = _dereq_(111);
4131
+ var instantiateReactComponent = _dereq_(112);
4132
4132
  var KeyEscapeUtils = _dereq_(22);
4133
- var shouldUpdateReactComponent = _dereq_(118);
4134
- var traverseAllChildren = _dereq_(119);
4135
- var warning = _dereq_(146);
4133
+ var shouldUpdateReactComponent = _dereq_(119);
4134
+ var traverseAllChildren = _dereq_(120);
4135
+ var warning = _dereq_(147);
4136
4136
 
4137
4137
  var ReactComponentTreeHook;
4138
4138
 
@@ -4142,7 +4142,7 @@ if (typeof process !== 'undefined' && process.env && "development" === 'test') {
4142
4142
  // https://github.com/facebook/react/issues/7240
4143
4143
  // Remove the inline requires when we don't need them anymore:
4144
4144
  // https://github.com/facebook/react/pull/7178
4145
- ReactComponentTreeHook = _dereq_(121);
4145
+ ReactComponentTreeHook = _dereq_(122);
4146
4146
  }
4147
4147
 
4148
4148
  function instantiateChild(childInstances, child, name, selfDebugID) {
@@ -4150,7 +4150,7 @@ function instantiateChild(childInstances, child, name, selfDebugID) {
4150
4150
  var keyUnique = childInstances[name] === undefined;
4151
4151
  if ("development" !== 'production') {
4152
4152
  if (!ReactComponentTreeHook) {
4153
- ReactComponentTreeHook = _dereq_(121);
4153
+ ReactComponentTreeHook = _dereq_(122);
4154
4154
  }
4155
4155
  if (!keyUnique) {
4156
4156
  "development" !== 'production' ? warning(false, 'flattenChildren(...): Encountered two children with the same key, ' + '`%s`. Child keys must be unique; when two children share a key, only ' + 'the first child will be used.%s', KeyEscapeUtils.unescape(name), ReactComponentTreeHook.getStackAddendumByID(selfDebugID)) : void 0;
@@ -4268,7 +4268,7 @@ var ReactChildReconciler = {
4268
4268
 
4269
4269
  module.exports = ReactChildReconciler;
4270
4270
  }).call(this,undefined)
4271
- },{"111":111,"118":118,"119":119,"121":121,"146":146,"22":22,"68":68}],27:[function(_dereq_,module,exports){
4271
+ },{"112":112,"119":119,"120":120,"122":122,"147":147,"22":22,"68":68}],27:[function(_dereq_,module,exports){
4272
4272
  /**
4273
4273
  * Copyright 2013-present, Facebook, Inc.
4274
4274
  * All rights reserved.
@@ -4312,9 +4312,9 @@ module.exports = ReactComponentBrowserEnvironment;
4312
4312
 
4313
4313
  'use strict';
4314
4314
 
4315
- var _prodInvariant = _dereq_(115);
4315
+ var _prodInvariant = _dereq_(116);
4316
4316
 
4317
- var invariant = _dereq_(139);
4317
+ var invariant = _dereq_(140);
4318
4318
 
4319
4319
  var injected = false;
4320
4320
 
@@ -4344,7 +4344,7 @@ var ReactComponentEnvironment = {
4344
4344
  };
4345
4345
 
4346
4346
  module.exports = ReactComponentEnvironment;
4347
- },{"115":115,"139":139}],29:[function(_dereq_,module,exports){
4347
+ },{"116":116,"140":140}],29:[function(_dereq_,module,exports){
4348
4348
  /**
4349
4349
  * Copyright 2013-present, Facebook, Inc.
4350
4350
  * All rights reserved.
@@ -4357,12 +4357,12 @@ module.exports = ReactComponentEnvironment;
4357
4357
 
4358
4358
  'use strict';
4359
4359
 
4360
- var _prodInvariant = _dereq_(115),
4361
- _assign = _dereq_(147);
4360
+ var _prodInvariant = _dereq_(116),
4361
+ _assign = _dereq_(148);
4362
4362
 
4363
- var React = _dereq_(123);
4363
+ var React = _dereq_(124);
4364
4364
  var ReactComponentEnvironment = _dereq_(28);
4365
- var ReactCurrentOwner = _dereq_(122);
4365
+ var ReactCurrentOwner = _dereq_(123);
4366
4366
  var ReactErrorUtils = _dereq_(50);
4367
4367
  var ReactInstanceMap = _dereq_(58);
4368
4368
  var ReactInstrumentation = _dereq_(59);
@@ -4373,11 +4373,11 @@ if ("development" !== 'production') {
4373
4373
  var checkReactTypeSpec = _dereq_(97);
4374
4374
  }
4375
4375
 
4376
- var emptyObject = _dereq_(132);
4377
- var invariant = _dereq_(139);
4378
- var shallowEqual = _dereq_(145);
4379
- var shouldUpdateReactComponent = _dereq_(118);
4380
- var warning = _dereq_(146);
4376
+ var emptyObject = _dereq_(133);
4377
+ var invariant = _dereq_(140);
4378
+ var shallowEqual = _dereq_(146);
4379
+ var shouldUpdateReactComponent = _dereq_(119);
4380
+ var warning = _dereq_(147);
4381
4381
 
4382
4382
  var CompositeTypes = {
4383
4383
  ImpureClass: 0,
@@ -5188,10 +5188,10 @@ var ReactCompositeComponent = {
5188
5188
  * @final
5189
5189
  * @private
5190
5190
  */
5191
- attachRef: function (ref, component, transaction) {
5191
+ attachRef: function (ref, component) {
5192
5192
  var inst = this.getPublicInstance();
5193
5193
  !(inst != null) ? "development" !== 'production' ? invariant(false, 'Stateless function components cannot have refs.') : _prodInvariant('110') : void 0;
5194
- var publicComponentInstance = component.getPublicInstance(transaction);
5194
+ var publicComponentInstance = component.getPublicInstance();
5195
5195
  if ("development" !== 'production') {
5196
5196
  var componentName = component && component.getName ? component.getName() : 'a component';
5197
5197
  "development" !== 'production' ? warning(publicComponentInstance != null || component._compositeType !== CompositeTypes.StatelessFunctional, 'Stateless function components cannot be given refs ' + '(See ref "%s" in %s created by %s). ' + 'Attempts to access this ref will fail.', ref, componentName, this.getName()) : void 0;
@@ -5246,7 +5246,7 @@ var ReactCompositeComponent = {
5246
5246
  };
5247
5247
 
5248
5248
  module.exports = ReactCompositeComponent;
5249
- },{"115":115,"118":118,"122":122,"123":123,"132":132,"139":139,"145":145,"146":146,"147":147,"28":28,"50":50,"58":58,"59":59,"63":63,"68":68,"97":97}],30:[function(_dereq_,module,exports){
5249
+ },{"116":116,"119":119,"123":123,"124":124,"133":133,"140":140,"146":146,"147":147,"148":148,"28":28,"50":50,"58":58,"59":59,"63":63,"68":68,"97":97}],30:[function(_dereq_,module,exports){
5250
5250
  /**
5251
5251
  * Copyright 2013-present, Facebook, Inc.
5252
5252
  * All rights reserved.
@@ -5261,8 +5261,8 @@ module.exports = ReactCompositeComponent;
5261
5261
 
5262
5262
  'use strict';
5263
5263
 
5264
- var _prodInvariant = _dereq_(115),
5265
- _assign = _dereq_(147);
5264
+ var _prodInvariant = _dereq_(116),
5265
+ _assign = _dereq_(148);
5266
5266
 
5267
5267
  var AutoFocusUtils = _dereq_(2);
5268
5268
  var CSSPropertyOperations = _dereq_(5);
@@ -5283,13 +5283,13 @@ var ReactInstrumentation = _dereq_(59);
5283
5283
  var ReactMultiChild = _dereq_(62);
5284
5284
  var ReactServerRenderingTransaction = _dereq_(72);
5285
5285
 
5286
- var emptyFunction = _dereq_(131);
5286
+ var emptyFunction = _dereq_(132);
5287
5287
  var escapeTextContentForBrowser = _dereq_(100);
5288
- var invariant = _dereq_(139);
5289
- var isEventSupported = _dereq_(112);
5290
- var shallowEqual = _dereq_(145);
5291
- var validateDOMNesting = _dereq_(120);
5292
- var warning = _dereq_(146);
5288
+ var invariant = _dereq_(140);
5289
+ var isEventSupported = _dereq_(113);
5290
+ var shallowEqual = _dereq_(146);
5291
+ var validateDOMNesting = _dereq_(121);
5292
+ var warning = _dereq_(147);
5293
5293
 
5294
5294
  var Flags = ReactDOMComponentFlags;
5295
5295
  var deleteListener = EventPluginHub.deleteListener;
@@ -6241,7 +6241,7 @@ ReactDOMComponent.Mixin = {
6241
6241
  _assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);
6242
6242
 
6243
6243
  module.exports = ReactDOMComponent;
6244
- },{"10":10,"100":100,"11":11,"112":112,"115":115,"12":12,"120":120,"131":131,"139":139,"145":145,"146":146,"147":147,"16":16,"17":17,"2":2,"25":25,"31":31,"32":32,"36":36,"37":37,"38":38,"43":43,"5":5,"59":59,"62":62,"72":72,"9":9}],31:[function(_dereq_,module,exports){
6244
+ },{"10":10,"100":100,"11":11,"113":113,"116":116,"12":12,"121":121,"132":132,"140":140,"146":146,"147":147,"148":148,"16":16,"17":17,"2":2,"25":25,"31":31,"32":32,"36":36,"37":37,"38":38,"43":43,"5":5,"59":59,"62":62,"72":72,"9":9}],31:[function(_dereq_,module,exports){
6245
6245
  /**
6246
6246
  * Copyright 2015-present, Facebook, Inc.
6247
6247
  * All rights reserved.
@@ -6272,12 +6272,12 @@ module.exports = ReactDOMComponentFlags;
6272
6272
 
6273
6273
  'use strict';
6274
6274
 
6275
- var _prodInvariant = _dereq_(115);
6275
+ var _prodInvariant = _dereq_(116);
6276
6276
 
6277
6277
  var DOMProperty = _dereq_(11);
6278
6278
  var ReactDOMComponentFlags = _dereq_(31);
6279
6279
 
6280
- var invariant = _dereq_(139);
6280
+ var invariant = _dereq_(140);
6281
6281
 
6282
6282
  var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
6283
6283
  var Flags = ReactDOMComponentFlags;
@@ -6447,7 +6447,7 @@ var ReactDOMComponentTree = {
6447
6447
  };
6448
6448
 
6449
6449
  module.exports = ReactDOMComponentTree;
6450
- },{"11":11,"115":115,"139":139,"31":31}],33:[function(_dereq_,module,exports){
6450
+ },{"11":11,"116":116,"140":140,"31":31}],33:[function(_dereq_,module,exports){
6451
6451
  /**
6452
6452
  * Copyright 2013-present, Facebook, Inc.
6453
6453
  * All rights reserved.
@@ -6460,7 +6460,7 @@ module.exports = ReactDOMComponentTree;
6460
6460
 
6461
6461
  'use strict';
6462
6462
 
6463
- var validateDOMNesting = _dereq_(120);
6463
+ var validateDOMNesting = _dereq_(121);
6464
6464
 
6465
6465
  var DOC_NODE_TYPE = 9;
6466
6466
 
@@ -6480,7 +6480,7 @@ function ReactDOMContainerInfo(topLevelWrapper, node) {
6480
6480
  }
6481
6481
 
6482
6482
  module.exports = ReactDOMContainerInfo;
6483
- },{"120":120}],34:[function(_dereq_,module,exports){
6483
+ },{"121":121}],34:[function(_dereq_,module,exports){
6484
6484
  /**
6485
6485
  * Copyright 2014-present, Facebook, Inc.
6486
6486
  * All rights reserved.
@@ -6493,7 +6493,7 @@ module.exports = ReactDOMContainerInfo;
6493
6493
 
6494
6494
  'use strict';
6495
6495
 
6496
- var _assign = _dereq_(147);
6496
+ var _assign = _dereq_(148);
6497
6497
 
6498
6498
  var DOMLazyTree = _dereq_(9);
6499
6499
  var ReactDOMComponentTree = _dereq_(32);
@@ -6540,7 +6540,7 @@ _assign(ReactDOMEmptyComponent.prototype, {
6540
6540
  });
6541
6541
 
6542
6542
  module.exports = ReactDOMEmptyComponent;
6543
- },{"147":147,"32":32,"9":9}],35:[function(_dereq_,module,exports){
6543
+ },{"148":148,"32":32,"9":9}],35:[function(_dereq_,module,exports){
6544
6544
  /**
6545
6545
  * Copyright 2013-present, Facebook, Inc.
6546
6546
  * All rights reserved.
@@ -6587,16 +6587,16 @@ module.exports = ReactDOMIDOperations;
6587
6587
 
6588
6588
  'use strict';
6589
6589
 
6590
- var _prodInvariant = _dereq_(115),
6591
- _assign = _dereq_(147);
6590
+ var _prodInvariant = _dereq_(116),
6591
+ _assign = _dereq_(148);
6592
6592
 
6593
6593
  var DOMPropertyOperations = _dereq_(12);
6594
6594
  var LinkedValueUtils = _dereq_(23);
6595
6595
  var ReactDOMComponentTree = _dereq_(32);
6596
6596
  var ReactUpdates = _dereq_(75);
6597
6597
 
6598
- var invariant = _dereq_(139);
6599
- var warning = _dereq_(146);
6598
+ var invariant = _dereq_(140);
6599
+ var warning = _dereq_(147);
6600
6600
 
6601
6601
  var didWarnValueLink = false;
6602
6602
  var didWarnCheckedLink = false;
@@ -6842,7 +6842,7 @@ function _handleChange(event) {
6842
6842
  }
6843
6843
 
6844
6844
  module.exports = ReactDOMInput;
6845
- },{"115":115,"12":12,"139":139,"146":146,"147":147,"23":23,"32":32,"75":75}],37:[function(_dereq_,module,exports){
6845
+ },{"116":116,"12":12,"140":140,"147":147,"148":148,"23":23,"32":32,"75":75}],37:[function(_dereq_,module,exports){
6846
6846
  /**
6847
6847
  * Copyright 2013-present, Facebook, Inc.
6848
6848
  * All rights reserved.
@@ -6855,13 +6855,13 @@ module.exports = ReactDOMInput;
6855
6855
 
6856
6856
  'use strict';
6857
6857
 
6858
- var _assign = _dereq_(147);
6858
+ var _assign = _dereq_(148);
6859
6859
 
6860
- var React = _dereq_(123);
6860
+ var React = _dereq_(124);
6861
6861
  var ReactDOMComponentTree = _dereq_(32);
6862
6862
  var ReactDOMSelect = _dereq_(38);
6863
6863
 
6864
- var warning = _dereq_(146);
6864
+ var warning = _dereq_(147);
6865
6865
  var didWarnInvalidOptionChildren = false;
6866
6866
 
6867
6867
  function flattenChildren(children) {
@@ -6965,7 +6965,7 @@ var ReactDOMOption = {
6965
6965
  };
6966
6966
 
6967
6967
  module.exports = ReactDOMOption;
6968
- },{"123":123,"146":146,"147":147,"32":32,"38":38}],38:[function(_dereq_,module,exports){
6968
+ },{"124":124,"147":147,"148":148,"32":32,"38":38}],38:[function(_dereq_,module,exports){
6969
6969
  /**
6970
6970
  * Copyright 2013-present, Facebook, Inc.
6971
6971
  * All rights reserved.
@@ -6978,13 +6978,13 @@ module.exports = ReactDOMOption;
6978
6978
 
6979
6979
  'use strict';
6980
6980
 
6981
- var _assign = _dereq_(147);
6981
+ var _assign = _dereq_(148);
6982
6982
 
6983
6983
  var LinkedValueUtils = _dereq_(23);
6984
6984
  var ReactDOMComponentTree = _dereq_(32);
6985
6985
  var ReactUpdates = _dereq_(75);
6986
6986
 
6987
- var warning = _dereq_(146);
6987
+ var warning = _dereq_(147);
6988
6988
 
6989
6989
  var didWarnValueLink = false;
6990
6990
  var didWarnValueDefaultValue = false;
@@ -7165,7 +7165,7 @@ function _handleChange(event) {
7165
7165
  }
7166
7166
 
7167
7167
  module.exports = ReactDOMSelect;
7168
- },{"146":146,"147":147,"23":23,"32":32,"75":75}],39:[function(_dereq_,module,exports){
7168
+ },{"147":147,"148":148,"23":23,"32":32,"75":75}],39:[function(_dereq_,module,exports){
7169
7169
  /**
7170
7170
  * Copyright 2013-present, Facebook, Inc.
7171
7171
  * All rights reserved.
@@ -7178,10 +7178,10 @@ module.exports = ReactDOMSelect;
7178
7178
 
7179
7179
  'use strict';
7180
7180
 
7181
- var ExecutionEnvironment = _dereq_(125);
7181
+ var ExecutionEnvironment = _dereq_(126);
7182
7182
 
7183
- var getNodeForCharacterOffset = _dereq_(108);
7184
- var getTextContentAccessor = _dereq_(109);
7183
+ var getNodeForCharacterOffset = _dereq_(109);
7184
+ var getTextContentAccessor = _dereq_(110);
7185
7185
 
7186
7186
  /**
7187
7187
  * While `isCollapsed` is available on the Selection object and `collapsed`
@@ -7377,7 +7377,7 @@ var ReactDOMSelection = {
7377
7377
  };
7378
7378
 
7379
7379
  module.exports = ReactDOMSelection;
7380
- },{"108":108,"109":109,"125":125}],40:[function(_dereq_,module,exports){
7380
+ },{"109":109,"110":110,"126":126}],40:[function(_dereq_,module,exports){
7381
7381
  /**
7382
7382
  * Copyright 2013-present, Facebook, Inc.
7383
7383
  * All rights reserved.
@@ -7432,16 +7432,16 @@ module.exports = ReactDOMServer;
7432
7432
 
7433
7433
  'use strict';
7434
7434
 
7435
- var _prodInvariant = _dereq_(115),
7436
- _assign = _dereq_(147);
7435
+ var _prodInvariant = _dereq_(116),
7436
+ _assign = _dereq_(148);
7437
7437
 
7438
7438
  var DOMChildrenOperations = _dereq_(8);
7439
7439
  var DOMLazyTree = _dereq_(9);
7440
7440
  var ReactDOMComponentTree = _dereq_(32);
7441
7441
 
7442
7442
  var escapeTextContentForBrowser = _dereq_(100);
7443
- var invariant = _dereq_(139);
7444
- var validateDOMNesting = _dereq_(120);
7443
+ var invariant = _dereq_(140);
7444
+ var validateDOMNesting = _dereq_(121);
7445
7445
 
7446
7446
  /**
7447
7447
  * Text nodes violate a couple assumptions that React makes about components:
@@ -7583,7 +7583,7 @@ _assign(ReactDOMTextComponent.prototype, {
7583
7583
  });
7584
7584
 
7585
7585
  module.exports = ReactDOMTextComponent;
7586
- },{"100":100,"115":115,"120":120,"139":139,"147":147,"32":32,"8":8,"9":9}],43:[function(_dereq_,module,exports){
7586
+ },{"100":100,"116":116,"121":121,"140":140,"148":148,"32":32,"8":8,"9":9}],43:[function(_dereq_,module,exports){
7587
7587
  /**
7588
7588
  * Copyright 2013-present, Facebook, Inc.
7589
7589
  * All rights reserved.
@@ -7596,15 +7596,15 @@ module.exports = ReactDOMTextComponent;
7596
7596
 
7597
7597
  'use strict';
7598
7598
 
7599
- var _prodInvariant = _dereq_(115),
7600
- _assign = _dereq_(147);
7599
+ var _prodInvariant = _dereq_(116),
7600
+ _assign = _dereq_(148);
7601
7601
 
7602
7602
  var LinkedValueUtils = _dereq_(23);
7603
7603
  var ReactDOMComponentTree = _dereq_(32);
7604
7604
  var ReactUpdates = _dereq_(75);
7605
7605
 
7606
- var invariant = _dereq_(139);
7607
- var warning = _dereq_(146);
7606
+ var invariant = _dereq_(140);
7607
+ var warning = _dereq_(147);
7608
7608
 
7609
7609
  var didWarnValueLink = false;
7610
7610
  var didWarnValDefaultVal = false;
@@ -7737,7 +7737,7 @@ function _handleChange(event) {
7737
7737
  }
7738
7738
 
7739
7739
  module.exports = ReactDOMTextarea;
7740
- },{"115":115,"139":139,"146":146,"147":147,"23":23,"32":32,"75":75}],44:[function(_dereq_,module,exports){
7740
+ },{"116":116,"140":140,"147":147,"148":148,"23":23,"32":32,"75":75}],44:[function(_dereq_,module,exports){
7741
7741
  /**
7742
7742
  * Copyright 2015-present, Facebook, Inc.
7743
7743
  * All rights reserved.
@@ -7750,9 +7750,9 @@ module.exports = ReactDOMTextarea;
7750
7750
 
7751
7751
  'use strict';
7752
7752
 
7753
- var _prodInvariant = _dereq_(115);
7753
+ var _prodInvariant = _dereq_(116);
7754
7754
 
7755
- var invariant = _dereq_(139);
7755
+ var invariant = _dereq_(140);
7756
7756
 
7757
7757
  /**
7758
7758
  * Return the lowest common ancestor of A and B, or null if they are in
@@ -7873,7 +7873,7 @@ module.exports = {
7873
7873
  traverseTwoPhase: traverseTwoPhase,
7874
7874
  traverseEnterLeave: traverseEnterLeave
7875
7875
  };
7876
- },{"115":115,"139":139}],45:[function(_dereq_,module,exports){
7876
+ },{"116":116,"140":140}],45:[function(_dereq_,module,exports){
7877
7877
  /**
7878
7878
  * Copyright 2016-present, Facebook, Inc.
7879
7879
  * All rights reserved.
@@ -7889,11 +7889,11 @@ module.exports = {
7889
7889
 
7890
7890
  var ReactInvalidSetStateWarningHook = _dereq_(60);
7891
7891
  var ReactHostOperationHistoryHook = _dereq_(55);
7892
- var ReactComponentTreeHook = _dereq_(121);
7893
- var ExecutionEnvironment = _dereq_(125);
7892
+ var ReactComponentTreeHook = _dereq_(122);
7893
+ var ExecutionEnvironment = _dereq_(126);
7894
7894
 
7895
- var performanceNow = _dereq_(144);
7896
- var warning = _dereq_(146);
7895
+ var performanceNow = _dereq_(145);
7896
+ var warning = _dereq_(147);
7897
7897
 
7898
7898
  var hooks = [];
7899
7899
  var didHookThrowForEvent = {};
@@ -8040,12 +8040,11 @@ function pauseCurrentLifeCycleTimer() {
8040
8040
  }
8041
8041
 
8042
8042
  function resumeCurrentLifeCycleTimer() {
8043
- var _lifeCycleTimerStack$ = lifeCycleTimerStack.pop();
8044
-
8045
- var startTime = _lifeCycleTimerStack$.startTime;
8046
- var nestedFlushStartTime = _lifeCycleTimerStack$.nestedFlushStartTime;
8047
- var debugID = _lifeCycleTimerStack$.debugID;
8048
- var timerType = _lifeCycleTimerStack$.timerType;
8043
+ var _lifeCycleTimerStack$ = lifeCycleTimerStack.pop(),
8044
+ startTime = _lifeCycleTimerStack$.startTime,
8045
+ nestedFlushStartTime = _lifeCycleTimerStack$.nestedFlushStartTime,
8046
+ debugID = _lifeCycleTimerStack$.debugID,
8047
+ timerType = _lifeCycleTimerStack$.timerType;
8049
8048
 
8050
8049
  var nestedFlushDuration = performanceNow() - nestedFlushStartTime;
8051
8050
  currentTimerStartTime = startTime;
@@ -8235,7 +8234,7 @@ if (/[?&]react_perf\b/.test(url)) {
8235
8234
  }
8236
8235
 
8237
8236
  module.exports = ReactDebugTool;
8238
- },{"121":121,"125":125,"144":144,"146":146,"55":55,"60":60}],46:[function(_dereq_,module,exports){
8237
+ },{"122":122,"126":126,"145":145,"147":147,"55":55,"60":60}],46:[function(_dereq_,module,exports){
8239
8238
  /**
8240
8239
  * Copyright 2013-present, Facebook, Inc.
8241
8240
  * All rights reserved.
@@ -8248,12 +8247,12 @@ module.exports = ReactDebugTool;
8248
8247
 
8249
8248
  'use strict';
8250
8249
 
8251
- var _assign = _dereq_(147);
8250
+ var _assign = _dereq_(148);
8252
8251
 
8253
8252
  var ReactUpdates = _dereq_(75);
8254
8253
  var Transaction = _dereq_(93);
8255
8254
 
8256
- var emptyFunction = _dereq_(131);
8255
+ var emptyFunction = _dereq_(132);
8257
8256
 
8258
8257
  var RESET_BATCHED_UPDATES = {
8259
8258
  initialize: emptyFunction,
@@ -8303,7 +8302,7 @@ var ReactDefaultBatchingStrategy = {
8303
8302
  };
8304
8303
 
8305
8304
  module.exports = ReactDefaultBatchingStrategy;
8306
- },{"131":131,"147":147,"75":75,"93":93}],47:[function(_dereq_,module,exports){
8305
+ },{"132":132,"148":148,"75":75,"93":93}],47:[function(_dereq_,module,exports){
8307
8306
  /**
8308
8307
  * Copyright 2013-present, Facebook, Inc.
8309
8308
  * All rights reserved.
@@ -8562,16 +8561,16 @@ module.exports = ReactEventEmitterMixin;
8562
8561
 
8563
8562
  'use strict';
8564
8563
 
8565
- var _assign = _dereq_(147);
8564
+ var _assign = _dereq_(148);
8566
8565
 
8567
- var EventListener = _dereq_(124);
8568
- var ExecutionEnvironment = _dereq_(125);
8566
+ var EventListener = _dereq_(125);
8567
+ var ExecutionEnvironment = _dereq_(126);
8569
8568
  var PooledClass = _dereq_(24);
8570
8569
  var ReactDOMComponentTree = _dereq_(32);
8571
8570
  var ReactUpdates = _dereq_(75);
8572
8571
 
8573
8572
  var getEventTarget = _dereq_(106);
8574
- var getUnboundedScrollPosition = _dereq_(136);
8573
+ var getUnboundedScrollPosition = _dereq_(137);
8575
8574
 
8576
8575
  /**
8577
8576
  * Find the deepest React component completely containing the root of the
@@ -8704,7 +8703,7 @@ var ReactEventListener = {
8704
8703
  };
8705
8704
 
8706
8705
  module.exports = ReactEventListener;
8707
- },{"106":106,"124":124,"125":125,"136":136,"147":147,"24":24,"32":32,"75":75}],53:[function(_dereq_,module,exports){
8706
+ },{"106":106,"125":125,"126":126,"137":137,"148":148,"24":24,"32":32,"75":75}],53:[function(_dereq_,module,exports){
8708
8707
  /**
8709
8708
  * Copyright 2013-present, Facebook, Inc.
8710
8709
  * All rights reserved.
@@ -8739,10 +8738,10 @@ module.exports = ReactFeatureFlags;
8739
8738
 
8740
8739
  'use strict';
8741
8740
 
8742
- var _prodInvariant = _dereq_(115),
8743
- _assign = _dereq_(147);
8741
+ var _prodInvariant = _dereq_(116),
8742
+ _assign = _dereq_(148);
8744
8743
 
8745
- var invariant = _dereq_(139);
8744
+ var invariant = _dereq_(140);
8746
8745
 
8747
8746
  var genericComponentClass = null;
8748
8747
  // This registry keeps track of wrapper classes around host tags.
@@ -8802,7 +8801,7 @@ var ReactHostComponent = {
8802
8801
  };
8803
8802
 
8804
8803
  module.exports = ReactHostComponent;
8805
- },{"115":115,"139":139,"147":147}],55:[function(_dereq_,module,exports){
8804
+ },{"116":116,"140":140,"148":148}],55:[function(_dereq_,module,exports){
8806
8805
  /**
8807
8806
  * Copyright 2016-present, Facebook, Inc.
8808
8807
  * All rights reserved.
@@ -8885,9 +8884,9 @@ module.exports = ReactInjection;
8885
8884
 
8886
8885
  var ReactDOMSelection = _dereq_(39);
8887
8886
 
8888
- var containsNode = _dereq_(128);
8889
- var focusNode = _dereq_(133);
8890
- var getActiveElement = _dereq_(134);
8887
+ var containsNode = _dereq_(129);
8888
+ var focusNode = _dereq_(134);
8889
+ var getActiveElement = _dereq_(135);
8891
8890
 
8892
8891
  function isInDocument(node) {
8893
8892
  return containsNode(document.documentElement, node);
@@ -8994,7 +8993,7 @@ var ReactInputSelection = {
8994
8993
  };
8995
8994
 
8996
8995
  module.exports = ReactInputSelection;
8997
- },{"128":128,"133":133,"134":134,"39":39}],58:[function(_dereq_,module,exports){
8996
+ },{"129":129,"134":134,"135":135,"39":39}],58:[function(_dereq_,module,exports){
8998
8997
  /**
8999
8998
  * Copyright 2013-present, Facebook, Inc.
9000
8999
  * All rights reserved.
@@ -9080,7 +9079,7 @@ module.exports = { debugTool: debugTool };
9080
9079
 
9081
9080
  'use strict';
9082
9081
 
9083
- var warning = _dereq_(146);
9082
+ var warning = _dereq_(147);
9084
9083
 
9085
9084
  if ("development" !== 'production') {
9086
9085
  var processingChildContext = false;
@@ -9103,7 +9102,7 @@ var ReactInvalidSetStateWarningHook = {
9103
9102
  };
9104
9103
 
9105
9104
  module.exports = ReactInvalidSetStateWarningHook;
9106
- },{"146":146}],61:[function(_dereq_,module,exports){
9105
+ },{"147":147}],61:[function(_dereq_,module,exports){
9107
9106
  /**
9108
9107
  * Copyright 2013-present, Facebook, Inc.
9109
9108
  * All rights reserved.
@@ -9166,19 +9165,19 @@ module.exports = ReactMarkupChecksum;
9166
9165
 
9167
9166
  'use strict';
9168
9167
 
9169
- var _prodInvariant = _dereq_(115);
9168
+ var _prodInvariant = _dereq_(116);
9170
9169
 
9171
9170
  var ReactComponentEnvironment = _dereq_(28);
9172
9171
  var ReactInstanceMap = _dereq_(58);
9173
9172
  var ReactInstrumentation = _dereq_(59);
9174
9173
 
9175
- var ReactCurrentOwner = _dereq_(122);
9174
+ var ReactCurrentOwner = _dereq_(123);
9176
9175
  var ReactReconciler = _dereq_(68);
9177
9176
  var ReactChildReconciler = _dereq_(26);
9178
9177
 
9179
- var emptyFunction = _dereq_(131);
9178
+ var emptyFunction = _dereq_(132);
9180
9179
  var flattenChildren = _dereq_(101);
9181
- var invariant = _dereq_(139);
9180
+ var invariant = _dereq_(140);
9182
9181
 
9183
9182
  /**
9184
9183
  * Make an update for markup to be rendered and inserted at a supplied index.
@@ -9603,7 +9602,7 @@ var ReactMultiChild = {
9603
9602
  };
9604
9603
 
9605
9604
  module.exports = ReactMultiChild;
9606
- },{"101":101,"115":115,"122":122,"131":131,"139":139,"26":26,"28":28,"58":58,"59":59,"68":68}],63:[function(_dereq_,module,exports){
9605
+ },{"101":101,"116":116,"123":123,"132":132,"140":140,"26":26,"28":28,"58":58,"59":59,"68":68}],63:[function(_dereq_,module,exports){
9607
9606
  /**
9608
9607
  * Copyright 2013-present, Facebook, Inc.
9609
9608
  * All rights reserved.
@@ -9617,11 +9616,11 @@ module.exports = ReactMultiChild;
9617
9616
 
9618
9617
  'use strict';
9619
9618
 
9620
- var _prodInvariant = _dereq_(115);
9619
+ var _prodInvariant = _dereq_(116);
9621
9620
 
9622
- var React = _dereq_(123);
9621
+ var React = _dereq_(124);
9623
9622
 
9624
- var invariant = _dereq_(139);
9623
+ var invariant = _dereq_(140);
9625
9624
 
9626
9625
  var ReactNodeTypes = {
9627
9626
  HOST: 0,
@@ -9643,7 +9642,7 @@ var ReactNodeTypes = {
9643
9642
  };
9644
9643
 
9645
9644
  module.exports = ReactNodeTypes;
9646
- },{"115":115,"123":123,"139":139}],64:[function(_dereq_,module,exports){
9645
+ },{"116":116,"124":124,"140":140}],64:[function(_dereq_,module,exports){
9647
9646
  /**
9648
9647
  * Copyright 2013-present, Facebook, Inc.
9649
9648
  * All rights reserved.
@@ -9657,9 +9656,9 @@ module.exports = ReactNodeTypes;
9657
9656
 
9658
9657
  'use strict';
9659
9658
 
9660
- var _prodInvariant = _dereq_(115);
9659
+ var _prodInvariant = _dereq_(116);
9661
9660
 
9662
- var invariant = _dereq_(139);
9661
+ var invariant = _dereq_(140);
9663
9662
 
9664
9663
  /**
9665
9664
  * @param {?object} object
@@ -9710,9 +9709,9 @@ var ReactOwner = {
9710
9709
  * @final
9711
9710
  * @internal
9712
9711
  */
9713
- addComponentAsRefTo: function (component, ref, owner, transaction) {
9712
+ addComponentAsRefTo: function (component, ref, owner) {
9714
9713
  !isValidOwner(owner) ? "development" !== 'production' ? invariant(false, 'addComponentAsRefTo(...): Only a ReactOwner can have refs. You might be adding a ref to a component that was not created inside a component\'s `render` method, or you have multiple copies of React loaded (details: https://fb.me/react-refs-must-have-owner).') : _prodInvariant('119') : void 0;
9715
- owner.attachRef(ref, component, transaction);
9714
+ owner.attachRef(ref, component);
9716
9715
  },
9717
9716
 
9718
9717
  /**
@@ -9737,7 +9736,7 @@ var ReactOwner = {
9737
9736
  };
9738
9737
 
9739
9738
  module.exports = ReactOwner;
9740
- },{"115":115,"139":139}],65:[function(_dereq_,module,exports){
9739
+ },{"116":116,"140":140}],65:[function(_dereq_,module,exports){
9741
9740
  /**
9742
9741
  * Copyright 2013-present, Facebook, Inc.
9743
9742
  * All rights reserved.
@@ -9792,7 +9791,7 @@ module.exports = ReactPropTypesSecret;
9792
9791
 
9793
9792
  'use strict';
9794
9793
 
9795
- var _assign = _dereq_(147);
9794
+ var _assign = _dereq_(148);
9796
9795
 
9797
9796
  var CallbackQueue = _dereq_(6);
9798
9797
  var PooledClass = _dereq_(24);
@@ -9957,7 +9956,7 @@ _assign(ReactReconcileTransaction.prototype, Transaction, Mixin);
9957
9956
  PooledClass.addPoolingTo(ReactReconcileTransaction);
9958
9957
 
9959
9958
  module.exports = ReactReconcileTransaction;
9960
- },{"147":147,"24":24,"25":25,"57":57,"59":59,"6":6,"74":74,"93":93}],68:[function(_dereq_,module,exports){
9959
+ },{"148":148,"24":24,"25":25,"57":57,"59":59,"6":6,"74":74,"93":93}],68:[function(_dereq_,module,exports){
9961
9960
  /**
9962
9961
  * Copyright 2013-present, Facebook, Inc.
9963
9962
  * All rights reserved.
@@ -9973,14 +9972,14 @@ module.exports = ReactReconcileTransaction;
9973
9972
  var ReactRef = _dereq_(69);
9974
9973
  var ReactInstrumentation = _dereq_(59);
9975
9974
 
9976
- var warning = _dereq_(146);
9975
+ var warning = _dereq_(147);
9977
9976
 
9978
9977
  /**
9979
9978
  * Helper to call ReactRef.attachRefs with this composite component, split out
9980
9979
  * to avoid allocations in the transaction mount-ready queue.
9981
9980
  */
9982
- function attachRefs(transaction) {
9983
- ReactRef.attachRefs(this, this._currentElement, transaction);
9981
+ function attachRefs() {
9982
+ ReactRef.attachRefs(this, this._currentElement);
9984
9983
  }
9985
9984
 
9986
9985
  var ReactReconciler = {
@@ -10125,7 +10124,7 @@ var ReactReconciler = {
10125
10124
  };
10126
10125
 
10127
10126
  module.exports = ReactReconciler;
10128
- },{"146":146,"59":59,"69":69}],69:[function(_dereq_,module,exports){
10127
+ },{"147":147,"59":59,"69":69}],69:[function(_dereq_,module,exports){
10129
10128
  /**
10130
10129
  * Copyright 2013-present, Facebook, Inc.
10131
10130
  * All rights reserved.
@@ -10143,12 +10142,12 @@ var ReactOwner = _dereq_(64);
10143
10142
 
10144
10143
  var ReactRef = {};
10145
10144
 
10146
- function attachRef(ref, component, owner, transaction) {
10145
+ function attachRef(ref, component, owner) {
10147
10146
  if (typeof ref === 'function') {
10148
- ref(component.getPublicInstance(transaction));
10147
+ ref(component.getPublicInstance());
10149
10148
  } else {
10150
10149
  // Legacy ref
10151
- ReactOwner.addComponentAsRefTo(component, ref, owner, transaction);
10150
+ ReactOwner.addComponentAsRefTo(component, ref, owner);
10152
10151
  }
10153
10152
  }
10154
10153
 
@@ -10161,13 +10160,13 @@ function detachRef(ref, component, owner) {
10161
10160
  }
10162
10161
  }
10163
10162
 
10164
- ReactRef.attachRefs = function (instance, element, transaction) {
10163
+ ReactRef.attachRefs = function (instance, element) {
10165
10164
  if (element === null || typeof element !== 'object') {
10166
10165
  return;
10167
10166
  }
10168
10167
  var ref = element.ref;
10169
10168
  if (ref != null) {
10170
- attachRef(ref, instance, element._owner, transaction);
10169
+ attachRef(ref, instance, element._owner);
10171
10170
  }
10172
10171
  };
10173
10172
 
@@ -10248,9 +10247,9 @@ module.exports = ReactServerBatchingStrategy;
10248
10247
  */
10249
10248
  'use strict';
10250
10249
 
10251
- var _prodInvariant = _dereq_(115);
10250
+ var _prodInvariant = _dereq_(116);
10252
10251
 
10253
- var React = _dereq_(123);
10252
+ var React = _dereq_(124);
10254
10253
  var ReactDOMContainerInfo = _dereq_(33);
10255
10254
  var ReactDefaultBatchingStrategy = _dereq_(46);
10256
10255
  var ReactInstrumentation = _dereq_(59);
@@ -10260,9 +10259,9 @@ var ReactServerBatchingStrategy = _dereq_(70);
10260
10259
  var ReactServerRenderingTransaction = _dereq_(72);
10261
10260
  var ReactUpdates = _dereq_(75);
10262
10261
 
10263
- var emptyObject = _dereq_(132);
10264
- var instantiateReactComponent = _dereq_(111);
10265
- var invariant = _dereq_(139);
10262
+ var emptyObject = _dereq_(133);
10263
+ var instantiateReactComponent = _dereq_(112);
10264
+ var invariant = _dereq_(140);
10266
10265
 
10267
10266
  var pendingTransactions = 0;
10268
10267
 
@@ -10326,7 +10325,7 @@ module.exports = {
10326
10325
  renderToString: renderToString,
10327
10326
  renderToStaticMarkup: renderToStaticMarkup
10328
10327
  };
10329
- },{"111":111,"115":115,"123":123,"132":132,"139":139,"33":33,"46":46,"59":59,"61":61,"68":68,"70":70,"72":72,"75":75}],72:[function(_dereq_,module,exports){
10328
+ },{"112":112,"116":116,"124":124,"133":133,"140":140,"33":33,"46":46,"59":59,"61":61,"68":68,"70":70,"72":72,"75":75}],72:[function(_dereq_,module,exports){
10330
10329
  /**
10331
10330
  * Copyright 2014-present, Facebook, Inc.
10332
10331
  * All rights reserved.
@@ -10339,7 +10338,7 @@ module.exports = {
10339
10338
 
10340
10339
  'use strict';
10341
10340
 
10342
- var _assign = _dereq_(147);
10341
+ var _assign = _dereq_(148);
10343
10342
 
10344
10343
  var PooledClass = _dereq_(24);
10345
10344
  var Transaction = _dereq_(93);
@@ -10416,7 +10415,7 @@ _assign(ReactServerRenderingTransaction.prototype, Transaction, Mixin);
10416
10415
  PooledClass.addPoolingTo(ReactServerRenderingTransaction);
10417
10416
 
10418
10417
  module.exports = ReactServerRenderingTransaction;
10419
- },{"147":147,"24":24,"59":59,"73":73,"93":93}],73:[function(_dereq_,module,exports){
10418
+ },{"148":148,"24":24,"59":59,"73":73,"93":93}],73:[function(_dereq_,module,exports){
10420
10419
  /**
10421
10420
  * Copyright 2015-present, Facebook, Inc.
10422
10421
  * All rights reserved.
@@ -10434,7 +10433,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
10434
10433
 
10435
10434
  var ReactUpdateQueue = _dereq_(74);
10436
10435
 
10437
- var warning = _dereq_(146);
10436
+ var warning = _dereq_(147);
10438
10437
 
10439
10438
  function warnNoop(publicInstance, callerName) {
10440
10439
  if ("development" !== 'production') {
@@ -10555,7 +10554,7 @@ var ReactServerUpdateQueue = function () {
10555
10554
  }();
10556
10555
 
10557
10556
  module.exports = ReactServerUpdateQueue;
10558
- },{"146":146,"74":74}],74:[function(_dereq_,module,exports){
10557
+ },{"147":147,"74":74}],74:[function(_dereq_,module,exports){
10559
10558
  /**
10560
10559
  * Copyright 2015-present, Facebook, Inc.
10561
10560
  * All rights reserved.
@@ -10568,15 +10567,15 @@ module.exports = ReactServerUpdateQueue;
10568
10567
 
10569
10568
  'use strict';
10570
10569
 
10571
- var _prodInvariant = _dereq_(115);
10570
+ var _prodInvariant = _dereq_(116);
10572
10571
 
10573
- var ReactCurrentOwner = _dereq_(122);
10572
+ var ReactCurrentOwner = _dereq_(123);
10574
10573
  var ReactInstanceMap = _dereq_(58);
10575
10574
  var ReactInstrumentation = _dereq_(59);
10576
10575
  var ReactUpdates = _dereq_(75);
10577
10576
 
10578
- var invariant = _dereq_(139);
10579
- var warning = _dereq_(146);
10577
+ var invariant = _dereq_(140);
10578
+ var warning = _dereq_(147);
10580
10579
 
10581
10580
  function enqueueUpdate(internalInstance) {
10582
10581
  ReactUpdates.enqueueUpdate(internalInstance);
@@ -10781,7 +10780,7 @@ var ReactUpdateQueue = {
10781
10780
  };
10782
10781
 
10783
10782
  module.exports = ReactUpdateQueue;
10784
- },{"115":115,"122":122,"139":139,"146":146,"58":58,"59":59,"75":75}],75:[function(_dereq_,module,exports){
10783
+ },{"116":116,"123":123,"140":140,"147":147,"58":58,"59":59,"75":75}],75:[function(_dereq_,module,exports){
10785
10784
  /**
10786
10785
  * Copyright 2013-present, Facebook, Inc.
10787
10786
  * All rights reserved.
@@ -10794,8 +10793,8 @@ module.exports = ReactUpdateQueue;
10794
10793
 
10795
10794
  'use strict';
10796
10795
 
10797
- var _prodInvariant = _dereq_(115),
10798
- _assign = _dereq_(147);
10796
+ var _prodInvariant = _dereq_(116),
10797
+ _assign = _dereq_(148);
10799
10798
 
10800
10799
  var CallbackQueue = _dereq_(6);
10801
10800
  var PooledClass = _dereq_(24);
@@ -10803,7 +10802,7 @@ var ReactFeatureFlags = _dereq_(53);
10803
10802
  var ReactReconciler = _dereq_(68);
10804
10803
  var Transaction = _dereq_(93);
10805
10804
 
10806
- var invariant = _dereq_(139);
10805
+ var invariant = _dereq_(140);
10807
10806
 
10808
10807
  var dirtyComponents = [];
10809
10808
  var updateBatchNumber = 0;
@@ -11032,7 +11031,7 @@ var ReactUpdates = {
11032
11031
  };
11033
11032
 
11034
11033
  module.exports = ReactUpdates;
11035
- },{"115":115,"139":139,"147":147,"24":24,"53":53,"6":6,"68":68,"93":93}],76:[function(_dereq_,module,exports){
11034
+ },{"116":116,"140":140,"148":148,"24":24,"53":53,"6":6,"68":68,"93":93}],76:[function(_dereq_,module,exports){
11036
11035
  /**
11037
11036
  * Copyright 2013-present, Facebook, Inc.
11038
11037
  * All rights reserved.
@@ -11045,7 +11044,7 @@ module.exports = ReactUpdates;
11045
11044
 
11046
11045
  'use strict';
11047
11046
 
11048
- module.exports = '15.4.0-rc.4';
11047
+ module.exports = '15.4.0';
11049
11048
  },{}],77:[function(_dereq_,module,exports){
11050
11049
  /**
11051
11050
  * Copyright 2013-present, Facebook, Inc.
@@ -11362,14 +11361,14 @@ module.exports = SVGDOMPropertyConfig;
11362
11361
  'use strict';
11363
11362
 
11364
11363
  var EventPropagators = _dereq_(19);
11365
- var ExecutionEnvironment = _dereq_(125);
11364
+ var ExecutionEnvironment = _dereq_(126);
11366
11365
  var ReactDOMComponentTree = _dereq_(32);
11367
11366
  var ReactInputSelection = _dereq_(57);
11368
11367
  var SyntheticEvent = _dereq_(84);
11369
11368
 
11370
- var getActiveElement = _dereq_(134);
11371
- var isTextInputElement = _dereq_(113);
11372
- var shallowEqual = _dereq_(145);
11369
+ var getActiveElement = _dereq_(135);
11370
+ var isTextInputElement = _dereq_(114);
11371
+ var shallowEqual = _dereq_(146);
11373
11372
 
11374
11373
  var skipSelectionChangeEvent = ExecutionEnvironment.canUseDOM && 'documentMode' in document && document.documentMode <= 11;
11375
11374
 
@@ -11539,7 +11538,7 @@ var SelectEventPlugin = {
11539
11538
  };
11540
11539
 
11541
11540
  module.exports = SelectEventPlugin;
11542
- },{"113":113,"125":125,"134":134,"145":145,"19":19,"32":32,"57":57,"84":84}],79:[function(_dereq_,module,exports){
11541
+ },{"114":114,"126":126,"135":135,"146":146,"19":19,"32":32,"57":57,"84":84}],79:[function(_dereq_,module,exports){
11543
11542
  /**
11544
11543
  * Copyright 2013-present, Facebook, Inc.
11545
11544
  * All rights reserved.
@@ -11553,9 +11552,9 @@ module.exports = SelectEventPlugin;
11553
11552
 
11554
11553
  'use strict';
11555
11554
 
11556
- var _prodInvariant = _dereq_(115);
11555
+ var _prodInvariant = _dereq_(116);
11557
11556
 
11558
- var EventListener = _dereq_(124);
11557
+ var EventListener = _dereq_(125);
11559
11558
  var EventPropagators = _dereq_(19);
11560
11559
  var ReactDOMComponentTree = _dereq_(32);
11561
11560
  var SyntheticAnimationEvent = _dereq_(80);
@@ -11570,9 +11569,9 @@ var SyntheticTransitionEvent = _dereq_(90);
11570
11569
  var SyntheticUIEvent = _dereq_(91);
11571
11570
  var SyntheticWheelEvent = _dereq_(92);
11572
11571
 
11573
- var emptyFunction = _dereq_(131);
11572
+ var emptyFunction = _dereq_(132);
11574
11573
  var getEventCharCode = _dereq_(103);
11575
- var invariant = _dereq_(139);
11574
+ var invariant = _dereq_(140);
11576
11575
 
11577
11576
  /**
11578
11577
  * Turns
@@ -11782,7 +11781,7 @@ var SimpleEventPlugin = {
11782
11781
  };
11783
11782
 
11784
11783
  module.exports = SimpleEventPlugin;
11785
- },{"103":103,"115":115,"124":124,"131":131,"139":139,"19":19,"32":32,"80":80,"81":81,"83":83,"84":84,"85":85,"87":87,"88":88,"89":89,"90":90,"91":91,"92":92}],80:[function(_dereq_,module,exports){
11784
+ },{"103":103,"116":116,"125":125,"132":132,"140":140,"19":19,"32":32,"80":80,"81":81,"83":83,"84":84,"85":85,"87":87,"88":88,"89":89,"90":90,"91":91,"92":92}],80:[function(_dereq_,module,exports){
11786
11785
  /**
11787
11786
  * Copyright 2013-present, Facebook, Inc.
11788
11787
  * All rights reserved.
@@ -11944,12 +11943,12 @@ module.exports = SyntheticDragEvent;
11944
11943
 
11945
11944
  'use strict';
11946
11945
 
11947
- var _assign = _dereq_(147);
11946
+ var _assign = _dereq_(148);
11948
11947
 
11949
11948
  var PooledClass = _dereq_(24);
11950
11949
 
11951
- var emptyFunction = _dereq_(131);
11952
- var warning = _dereq_(146);
11950
+ var emptyFunction = _dereq_(132);
11951
+ var warning = _dereq_(147);
11953
11952
 
11954
11953
  var didWarnForAddedNewProperty = false;
11955
11954
  var isProxySupported = typeof Proxy === 'function';
@@ -12199,7 +12198,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
12199
12198
  "development" !== 'production' ? warning(warningCondition, 'This synthetic event is reused for performance reasons. If you\'re seeing this, ' + 'you\'re %s `%s` on a released/nullified synthetic event. %s. ' + 'If you must keep the original synthetic event around, use event.persist(). ' + 'See https://fb.me/react-event-pooling for more information.', action, propName, result) : void 0;
12200
12199
  }
12201
12200
  }
12202
- },{"131":131,"146":146,"147":147,"24":24}],85:[function(_dereq_,module,exports){
12201
+ },{"132":132,"147":147,"148":148,"24":24}],85:[function(_dereq_,module,exports){
12203
12202
  /**
12204
12203
  * Copyright 2013-present, Facebook, Inc.
12205
12204
  * All rights reserved.
@@ -12639,9 +12638,9 @@ module.exports = SyntheticWheelEvent;
12639
12638
 
12640
12639
  'use strict';
12641
12640
 
12642
- var _prodInvariant = _dereq_(115);
12641
+ var _prodInvariant = _dereq_(116);
12643
12642
 
12644
- var invariant = _dereq_(139);
12643
+ var invariant = _dereq_(140);
12645
12644
 
12646
12645
  var OBSERVED_ERROR = {};
12647
12646
 
@@ -12850,7 +12849,7 @@ var TransactionImpl = {
12850
12849
  };
12851
12850
 
12852
12851
  module.exports = TransactionImpl;
12853
- },{"115":115,"139":139}],94:[function(_dereq_,module,exports){
12852
+ },{"116":116,"140":140}],94:[function(_dereq_,module,exports){
12854
12853
  /**
12855
12854
  * Copyright 2013-present, Facebook, Inc.
12856
12855
  * All rights reserved.
@@ -12891,9 +12890,9 @@ module.exports = ViewportMetrics;
12891
12890
 
12892
12891
  'use strict';
12893
12892
 
12894
- var _prodInvariant = _dereq_(115);
12893
+ var _prodInvariant = _dereq_(116);
12895
12894
 
12896
- var invariant = _dereq_(139);
12895
+ var invariant = _dereq_(140);
12897
12896
 
12898
12897
  /**
12899
12898
  * Accumulates items that must not be null or undefined into the first one. This
@@ -12935,7 +12934,7 @@ function accumulateInto(current, next) {
12935
12934
  }
12936
12935
 
12937
12936
  module.exports = accumulateInto;
12938
- },{"115":115,"139":139}],96:[function(_dereq_,module,exports){
12937
+ },{"116":116,"140":140}],96:[function(_dereq_,module,exports){
12939
12938
  /**
12940
12939
  * Copyright 2013-present, Facebook, Inc.
12941
12940
  * All rights reserved.
@@ -12993,13 +12992,13 @@ module.exports = adler32;
12993
12992
 
12994
12993
  'use strict';
12995
12994
 
12996
- var _prodInvariant = _dereq_(115);
12995
+ var _prodInvariant = _dereq_(116);
12997
12996
 
12998
12997
  var ReactPropTypeLocationNames = _dereq_(65);
12999
12998
  var ReactPropTypesSecret = _dereq_(66);
13000
12999
 
13001
- var invariant = _dereq_(139);
13002
- var warning = _dereq_(146);
13000
+ var invariant = _dereq_(140);
13001
+ var warning = _dereq_(147);
13003
13002
 
13004
13003
  var ReactComponentTreeHook;
13005
13004
 
@@ -13009,7 +13008,7 @@ if (typeof process !== 'undefined' && process.env && "development" === 'test') {
13009
13008
  // https://github.com/facebook/react/issues/7240
13010
13009
  // Remove the inline requires when we don't need them anymore:
13011
13010
  // https://github.com/facebook/react/pull/7178
13012
- ReactComponentTreeHook = _dereq_(121);
13011
+ ReactComponentTreeHook = _dereq_(122);
13013
13012
  }
13014
13013
 
13015
13014
  var loggedTypeFailures = {};
@@ -13051,7 +13050,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
13051
13050
 
13052
13051
  if ("development" !== 'production') {
13053
13052
  if (!ReactComponentTreeHook) {
13054
- ReactComponentTreeHook = _dereq_(121);
13053
+ ReactComponentTreeHook = _dereq_(122);
13055
13054
  }
13056
13055
  if (debugID !== null) {
13057
13056
  componentStackInfo = ReactComponentTreeHook.getStackAddendumByID(debugID);
@@ -13068,7 +13067,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
13068
13067
 
13069
13068
  module.exports = checkReactTypeSpec;
13070
13069
  }).call(this,undefined)
13071
- },{"115":115,"121":121,"139":139,"146":146,"65":65,"66":66}],98:[function(_dereq_,module,exports){
13070
+ },{"116":116,"122":122,"140":140,"147":147,"65":65,"66":66}],98:[function(_dereq_,module,exports){
13072
13071
  /**
13073
13072
  * Copyright 2013-present, Facebook, Inc.
13074
13073
  * All rights reserved.
@@ -13114,7 +13113,7 @@ module.exports = createMicrosoftUnsafeLocalFunction;
13114
13113
  'use strict';
13115
13114
 
13116
13115
  var CSSProperty = _dereq_(4);
13117
- var warning = _dereq_(146);
13116
+ var warning = _dereq_(147);
13118
13117
 
13119
13118
  var isUnitlessNumber = CSSProperty.isUnitlessNumber;
13120
13119
  var styleWarnings = {};
@@ -13179,7 +13178,7 @@ function dangerousStyleValue(name, value, component) {
13179
13178
  }
13180
13179
 
13181
13180
  module.exports = dangerousStyleValue;
13182
- },{"146":146,"4":4}],100:[function(_dereq_,module,exports){
13181
+ },{"147":147,"4":4}],100:[function(_dereq_,module,exports){
13183
13182
  /**
13184
13183
  * Copyright 2016-present, Facebook, Inc.
13185
13184
  * All rights reserved.
@@ -13318,8 +13317,8 @@ module.exports = escapeTextContentForBrowser;
13318
13317
  'use strict';
13319
13318
 
13320
13319
  var KeyEscapeUtils = _dereq_(22);
13321
- var traverseAllChildren = _dereq_(119);
13322
- var warning = _dereq_(146);
13320
+ var traverseAllChildren = _dereq_(120);
13321
+ var warning = _dereq_(147);
13323
13322
 
13324
13323
  var ReactComponentTreeHook;
13325
13324
 
@@ -13329,7 +13328,7 @@ if (typeof process !== 'undefined' && process.env && "development" === 'test') {
13329
13328
  // https://github.com/facebook/react/issues/7240
13330
13329
  // Remove the inline requires when we don't need them anymore:
13331
13330
  // https://github.com/facebook/react/pull/7178
13332
- ReactComponentTreeHook = _dereq_(121);
13331
+ ReactComponentTreeHook = _dereq_(122);
13333
13332
  }
13334
13333
 
13335
13334
  /**
@@ -13345,7 +13344,7 @@ function flattenSingleChildIntoContext(traverseContext, child, name, selfDebugID
13345
13344
  var keyUnique = result[name] === undefined;
13346
13345
  if ("development" !== 'production') {
13347
13346
  if (!ReactComponentTreeHook) {
13348
- ReactComponentTreeHook = _dereq_(121);
13347
+ ReactComponentTreeHook = _dereq_(122);
13349
13348
  }
13350
13349
  if (!keyUnique) {
13351
13350
  "development" !== 'production' ? warning(false, 'flattenChildren(...): Encountered two children with the same key, ' + '`%s`. Child keys must be unique; when two children share a key, only ' + 'the first child will be used.%s', KeyEscapeUtils.unescape(name), ReactComponentTreeHook.getStackAddendumByID(selfDebugID)) : void 0;
@@ -13380,7 +13379,7 @@ function flattenChildren(children, selfDebugID) {
13380
13379
 
13381
13380
  module.exports = flattenChildren;
13382
13381
  }).call(this,undefined)
13383
- },{"119":119,"121":121,"146":146,"22":22}],102:[function(_dereq_,module,exports){
13382
+ },{"120":120,"122":122,"147":147,"22":22}],102:[function(_dereq_,module,exports){
13384
13383
  /**
13385
13384
  * Copyright 2013-present, Facebook, Inc.
13386
13385
  * All rights reserved.
@@ -13683,6 +13682,27 @@ function getIteratorFn(maybeIterable) {
13683
13682
 
13684
13683
  module.exports = getIteratorFn;
13685
13684
  },{}],108:[function(_dereq_,module,exports){
13685
+ /**
13686
+ * Copyright 2013-present, Facebook, Inc.
13687
+ * All rights reserved.
13688
+ *
13689
+ * This source code is licensed under the BSD-style license found in the
13690
+ * LICENSE file in the root directory of this source tree. An additional grant
13691
+ * of patent rights can be found in the PATENTS file in the same directory.
13692
+ *
13693
+ *
13694
+ */
13695
+
13696
+ 'use strict';
13697
+
13698
+ var nextDebugID = 1;
13699
+
13700
+ function getNextDebugID() {
13701
+ return nextDebugID++;
13702
+ }
13703
+
13704
+ module.exports = getNextDebugID;
13705
+ },{}],109:[function(_dereq_,module,exports){
13686
13706
  /**
13687
13707
  * Copyright 2013-present, Facebook, Inc.
13688
13708
  * All rights reserved.
@@ -13756,7 +13776,7 @@ function getNodeForCharacterOffset(root, offset) {
13756
13776
  }
13757
13777
 
13758
13778
  module.exports = getNodeForCharacterOffset;
13759
- },{}],109:[function(_dereq_,module,exports){
13779
+ },{}],110:[function(_dereq_,module,exports){
13760
13780
  /**
13761
13781
  * Copyright 2013-present, Facebook, Inc.
13762
13782
  * All rights reserved.
@@ -13769,7 +13789,7 @@ module.exports = getNodeForCharacterOffset;
13769
13789
 
13770
13790
  'use strict';
13771
13791
 
13772
- var ExecutionEnvironment = _dereq_(125);
13792
+ var ExecutionEnvironment = _dereq_(126);
13773
13793
 
13774
13794
  var contentKey = null;
13775
13795
 
@@ -13789,7 +13809,7 @@ function getTextContentAccessor() {
13789
13809
  }
13790
13810
 
13791
13811
  module.exports = getTextContentAccessor;
13792
- },{"125":125}],110:[function(_dereq_,module,exports){
13812
+ },{"126":126}],111:[function(_dereq_,module,exports){
13793
13813
  /**
13794
13814
  * Copyright 2013-present, Facebook, Inc.
13795
13815
  * All rights reserved.
@@ -13802,7 +13822,7 @@ module.exports = getTextContentAccessor;
13802
13822
 
13803
13823
  'use strict';
13804
13824
 
13805
- var ExecutionEnvironment = _dereq_(125);
13825
+ var ExecutionEnvironment = _dereq_(126);
13806
13826
 
13807
13827
  /**
13808
13828
  * Generate a mapping of standard vendor prefixes using the defined style property and event name.
@@ -13890,7 +13910,7 @@ function getVendorPrefixedEventName(eventName) {
13890
13910
  }
13891
13911
 
13892
13912
  module.exports = getVendorPrefixedEventName;
13893
- },{"125":125}],111:[function(_dereq_,module,exports){
13913
+ },{"126":126}],112:[function(_dereq_,module,exports){
13894
13914
  /**
13895
13915
  * Copyright 2013-present, Facebook, Inc.
13896
13916
  * All rights reserved.
@@ -13903,15 +13923,16 @@ module.exports = getVendorPrefixedEventName;
13903
13923
 
13904
13924
  'use strict';
13905
13925
 
13906
- var _prodInvariant = _dereq_(115),
13907
- _assign = _dereq_(147);
13926
+ var _prodInvariant = _dereq_(116),
13927
+ _assign = _dereq_(148);
13908
13928
 
13909
13929
  var ReactCompositeComponent = _dereq_(29);
13910
13930
  var ReactEmptyComponent = _dereq_(49);
13911
13931
  var ReactHostComponent = _dereq_(54);
13912
13932
 
13913
- var invariant = _dereq_(139);
13914
- var warning = _dereq_(146);
13933
+ var getNextDebugID = _dereq_(108);
13934
+ var invariant = _dereq_(140);
13935
+ var warning = _dereq_(147);
13915
13936
 
13916
13937
  // To avoid a cyclic dependency, we create the final class in this module
13917
13938
  var ReactCompositeComponentWrapper = function (element) {
@@ -13942,8 +13963,6 @@ function isInternalComponentType(type) {
13942
13963
  return typeof type === 'function' && typeof type.prototype !== 'undefined' && typeof type.prototype.mountComponent === 'function' && typeof type.prototype.receiveComponent === 'function';
13943
13964
  }
13944
13965
 
13945
- var nextDebugID = 1;
13946
-
13947
13966
  /**
13948
13967
  * Given a ReactNode, create an instance that will actually be mounted.
13949
13968
  *
@@ -13994,7 +14013,7 @@ function instantiateReactComponent(node, shouldHaveDebugID) {
13994
14013
  instance._mountImage = null;
13995
14014
 
13996
14015
  if ("development" !== 'production') {
13997
- instance._debugID = shouldHaveDebugID ? nextDebugID++ : 0;
14016
+ instance._debugID = shouldHaveDebugID ? getNextDebugID() : 0;
13998
14017
  }
13999
14018
 
14000
14019
  // Internal instances should fully constructed at this point, so they should
@@ -14009,7 +14028,7 @@ function instantiateReactComponent(node, shouldHaveDebugID) {
14009
14028
  }
14010
14029
 
14011
14030
  module.exports = instantiateReactComponent;
14012
- },{"115":115,"139":139,"146":146,"147":147,"29":29,"49":49,"54":54}],112:[function(_dereq_,module,exports){
14031
+ },{"108":108,"116":116,"140":140,"147":147,"148":148,"29":29,"49":49,"54":54}],113:[function(_dereq_,module,exports){
14013
14032
  /**
14014
14033
  * Copyright 2013-present, Facebook, Inc.
14015
14034
  * All rights reserved.
@@ -14022,7 +14041,7 @@ module.exports = instantiateReactComponent;
14022
14041
 
14023
14042
  'use strict';
14024
14043
 
14025
- var ExecutionEnvironment = _dereq_(125);
14044
+ var ExecutionEnvironment = _dereq_(126);
14026
14045
 
14027
14046
  var useHasFeature;
14028
14047
  if (ExecutionEnvironment.canUseDOM) {
@@ -14069,7 +14088,7 @@ function isEventSupported(eventNameSuffix, capture) {
14069
14088
  }
14070
14089
 
14071
14090
  module.exports = isEventSupported;
14072
- },{"125":125}],113:[function(_dereq_,module,exports){
14091
+ },{"126":126}],114:[function(_dereq_,module,exports){
14073
14092
  /**
14074
14093
  * Copyright 2013-present, Facebook, Inc.
14075
14094
  * All rights reserved.
@@ -14120,7 +14139,7 @@ function isTextInputElement(elem) {
14120
14139
  }
14121
14140
 
14122
14141
  module.exports = isTextInputElement;
14123
- },{}],114:[function(_dereq_,module,exports){
14142
+ },{}],115:[function(_dereq_,module,exports){
14124
14143
  /**
14125
14144
  * Copyright 2013-present, Facebook, Inc.
14126
14145
  * All rights reserved.
@@ -14146,7 +14165,7 @@ function quoteAttributeValueForBrowser(value) {
14146
14165
  }
14147
14166
 
14148
14167
  module.exports = quoteAttributeValueForBrowser;
14149
- },{"100":100}],115:[function(_dereq_,module,exports){
14168
+ },{"100":100}],116:[function(_dereq_,module,exports){
14150
14169
  /**
14151
14170
  * Copyright (c) 2013-present, Facebook, Inc.
14152
14171
  * All rights reserved.
@@ -14185,7 +14204,7 @@ function reactProdInvariant(code) {
14185
14204
  }
14186
14205
 
14187
14206
  module.exports = reactProdInvariant;
14188
- },{}],116:[function(_dereq_,module,exports){
14207
+ },{}],117:[function(_dereq_,module,exports){
14189
14208
  /**
14190
14209
  * Copyright 2013-present, Facebook, Inc.
14191
14210
  * All rights reserved.
@@ -14198,7 +14217,7 @@ module.exports = reactProdInvariant;
14198
14217
 
14199
14218
  'use strict';
14200
14219
 
14201
- var ExecutionEnvironment = _dereq_(125);
14220
+ var ExecutionEnvironment = _dereq_(126);
14202
14221
  var DOMNamespaces = _dereq_(10);
14203
14222
 
14204
14223
  var WHITESPACE_TEST = /^[ \r\n\t\f]/;
@@ -14283,7 +14302,7 @@ if (ExecutionEnvironment.canUseDOM) {
14283
14302
  }
14284
14303
 
14285
14304
  module.exports = setInnerHTML;
14286
- },{"10":10,"125":125,"98":98}],117:[function(_dereq_,module,exports){
14305
+ },{"10":10,"126":126,"98":98}],118:[function(_dereq_,module,exports){
14287
14306
  /**
14288
14307
  * Copyright 2013-present, Facebook, Inc.
14289
14308
  * All rights reserved.
@@ -14296,9 +14315,9 @@ module.exports = setInnerHTML;
14296
14315
 
14297
14316
  'use strict';
14298
14317
 
14299
- var ExecutionEnvironment = _dereq_(125);
14318
+ var ExecutionEnvironment = _dereq_(126);
14300
14319
  var escapeTextContentForBrowser = _dereq_(100);
14301
- var setInnerHTML = _dereq_(116);
14320
+ var setInnerHTML = _dereq_(117);
14302
14321
 
14303
14322
  /**
14304
14323
  * Set the textContent property of a node, ensuring that whitespace is preserved
@@ -14335,7 +14354,7 @@ if (ExecutionEnvironment.canUseDOM) {
14335
14354
  }
14336
14355
 
14337
14356
  module.exports = setTextContent;
14338
- },{"100":100,"116":116,"125":125}],118:[function(_dereq_,module,exports){
14357
+ },{"100":100,"117":117,"126":126}],119:[function(_dereq_,module,exports){
14339
14358
  /**
14340
14359
  * Copyright 2013-present, Facebook, Inc.
14341
14360
  * All rights reserved.
@@ -14377,7 +14396,7 @@ function shouldUpdateReactComponent(prevElement, nextElement) {
14377
14396
  }
14378
14397
 
14379
14398
  module.exports = shouldUpdateReactComponent;
14380
- },{}],119:[function(_dereq_,module,exports){
14399
+ },{}],120:[function(_dereq_,module,exports){
14381
14400
  /**
14382
14401
  * Copyright 2013-present, Facebook, Inc.
14383
14402
  * All rights reserved.
@@ -14390,15 +14409,15 @@ module.exports = shouldUpdateReactComponent;
14390
14409
 
14391
14410
  'use strict';
14392
14411
 
14393
- var _prodInvariant = _dereq_(115);
14412
+ var _prodInvariant = _dereq_(116);
14394
14413
 
14395
- var ReactCurrentOwner = _dereq_(122);
14414
+ var ReactCurrentOwner = _dereq_(123);
14396
14415
  var REACT_ELEMENT_TYPE = _dereq_(48);
14397
14416
 
14398
14417
  var getIteratorFn = _dereq_(107);
14399
- var invariant = _dereq_(139);
14418
+ var invariant = _dereq_(140);
14400
14419
  var KeyEscapeUtils = _dereq_(22);
14401
- var warning = _dereq_(146);
14420
+ var warning = _dereq_(147);
14402
14421
 
14403
14422
  var SEPARATOR = '.';
14404
14423
  var SUBSEPARATOR = ':';
@@ -14553,7 +14572,7 @@ function traverseAllChildren(children, callback, traverseContext) {
14553
14572
  }
14554
14573
 
14555
14574
  module.exports = traverseAllChildren;
14556
- },{"107":107,"115":115,"122":122,"139":139,"146":146,"22":22,"48":48}],120:[function(_dereq_,module,exports){
14575
+ },{"107":107,"116":116,"123":123,"140":140,"147":147,"22":22,"48":48}],121:[function(_dereq_,module,exports){
14557
14576
  /**
14558
14577
  * Copyright 2015-present, Facebook, Inc.
14559
14578
  * All rights reserved.
@@ -14566,10 +14585,10 @@ module.exports = traverseAllChildren;
14566
14585
 
14567
14586
  'use strict';
14568
14587
 
14569
- var _assign = _dereq_(147);
14588
+ var _assign = _dereq_(148);
14570
14589
 
14571
- var emptyFunction = _dereq_(131);
14572
- var warning = _dereq_(146);
14590
+ var emptyFunction = _dereq_(132);
14591
+ var warning = _dereq_(147);
14573
14592
 
14574
14593
  var validateDOMNesting = emptyFunction;
14575
14594
 
@@ -14935,7 +14954,7 @@ if ("development" !== 'production') {
14935
14954
  }
14936
14955
 
14937
14956
  module.exports = validateDOMNesting;
14938
- },{"131":131,"146":146,"147":147}],121:[function(_dereq_,module,exports){
14957
+ },{"132":132,"147":147,"148":148}],122:[function(_dereq_,module,exports){
14939
14958
  /**
14940
14959
  * Copyright 2013-present, Facebook, Inc.
14941
14960
  * All rights reserved.
@@ -14953,7 +14972,7 @@ module.exports = validateDOMNesting;
14953
14972
  var ReactInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
14954
14973
 
14955
14974
  module.exports = ReactInternals.ReactComponentTreeHook;
14956
- },{}],122:[function(_dereq_,module,exports){
14975
+ },{}],123:[function(_dereq_,module,exports){
14957
14976
  /**
14958
14977
  * Copyright 2013-present, Facebook, Inc.
14959
14978
  * All rights reserved.
@@ -14971,7 +14990,7 @@ module.exports = ReactInternals.ReactComponentTreeHook;
14971
14990
  var ReactInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
14972
14991
 
14973
14992
  module.exports = ReactInternals.ReactCurrentOwner;
14974
- },{}],123:[function(_dereq_,module,exports){
14993
+ },{}],124:[function(_dereq_,module,exports){
14975
14994
  /**
14976
14995
  * Copyright 2013-present, Facebook, Inc.
14977
14996
  * All rights reserved.
@@ -14987,7 +15006,7 @@ module.exports = ReactInternals.ReactCurrentOwner;
14987
15006
  'use strict';
14988
15007
 
14989
15008
  module.exports = React;
14990
- },{}],124:[function(_dereq_,module,exports){
15009
+ },{}],125:[function(_dereq_,module,exports){
14991
15010
  'use strict';
14992
15011
 
14993
15012
  /**
@@ -15008,7 +15027,7 @@ module.exports = React;
15008
15027
  * @typechecks
15009
15028
  */
15010
15029
 
15011
- var emptyFunction = _dereq_(131);
15030
+ var emptyFunction = _dereq_(132);
15012
15031
 
15013
15032
  /**
15014
15033
  * Upstream version of event listener. Does not take into account specific
@@ -15071,7 +15090,7 @@ var EventListener = {
15071
15090
  };
15072
15091
 
15073
15092
  module.exports = EventListener;
15074
- },{"131":131}],125:[function(_dereq_,module,exports){
15093
+ },{"132":132}],126:[function(_dereq_,module,exports){
15075
15094
  /**
15076
15095
  * Copyright (c) 2013-present, Facebook, Inc.
15077
15096
  * All rights reserved.
@@ -15107,7 +15126,7 @@ var ExecutionEnvironment = {
15107
15126
  };
15108
15127
 
15109
15128
  module.exports = ExecutionEnvironment;
15110
- },{}],126:[function(_dereq_,module,exports){
15129
+ },{}],127:[function(_dereq_,module,exports){
15111
15130
  "use strict";
15112
15131
 
15113
15132
  /**
@@ -15139,7 +15158,7 @@ function camelize(string) {
15139
15158
  }
15140
15159
 
15141
15160
  module.exports = camelize;
15142
- },{}],127:[function(_dereq_,module,exports){
15161
+ },{}],128:[function(_dereq_,module,exports){
15143
15162
  /**
15144
15163
  * Copyright (c) 2013-present, Facebook, Inc.
15145
15164
  * All rights reserved.
@@ -15153,7 +15172,7 @@ module.exports = camelize;
15153
15172
 
15154
15173
  'use strict';
15155
15174
 
15156
- var camelize = _dereq_(126);
15175
+ var camelize = _dereq_(127);
15157
15176
 
15158
15177
  var msPattern = /^-ms-/;
15159
15178
 
@@ -15179,7 +15198,7 @@ function camelizeStyleName(string) {
15179
15198
  }
15180
15199
 
15181
15200
  module.exports = camelizeStyleName;
15182
- },{"126":126}],128:[function(_dereq_,module,exports){
15201
+ },{"127":127}],129:[function(_dereq_,module,exports){
15183
15202
  'use strict';
15184
15203
 
15185
15204
  /**
@@ -15193,7 +15212,7 @@ module.exports = camelizeStyleName;
15193
15212
  *
15194
15213
  */
15195
15214
 
15196
- var isTextNode = _dereq_(141);
15215
+ var isTextNode = _dereq_(142);
15197
15216
 
15198
15217
  /*eslint-disable no-bitwise */
15199
15218
 
@@ -15219,7 +15238,7 @@ function containsNode(outerNode, innerNode) {
15219
15238
  }
15220
15239
 
15221
15240
  module.exports = containsNode;
15222
- },{"141":141}],129:[function(_dereq_,module,exports){
15241
+ },{"142":142}],130:[function(_dereq_,module,exports){
15223
15242
  'use strict';
15224
15243
 
15225
15244
  /**
@@ -15233,7 +15252,7 @@ module.exports = containsNode;
15233
15252
  * @typechecks
15234
15253
  */
15235
15254
 
15236
- var invariant = _dereq_(139);
15255
+ var invariant = _dereq_(140);
15237
15256
 
15238
15257
  /**
15239
15258
  * Convert array-like objects to arrays.
@@ -15346,7 +15365,7 @@ function createArrayFromMixed(obj) {
15346
15365
  }
15347
15366
 
15348
15367
  module.exports = createArrayFromMixed;
15349
- },{"139":139}],130:[function(_dereq_,module,exports){
15368
+ },{"140":140}],131:[function(_dereq_,module,exports){
15350
15369
  'use strict';
15351
15370
 
15352
15371
  /**
@@ -15362,11 +15381,11 @@ module.exports = createArrayFromMixed;
15362
15381
 
15363
15382
  /*eslint-disable fb-www/unsafe-html*/
15364
15383
 
15365
- var ExecutionEnvironment = _dereq_(125);
15384
+ var ExecutionEnvironment = _dereq_(126);
15366
15385
 
15367
- var createArrayFromMixed = _dereq_(129);
15368
- var getMarkupWrap = _dereq_(135);
15369
- var invariant = _dereq_(139);
15386
+ var createArrayFromMixed = _dereq_(130);
15387
+ var getMarkupWrap = _dereq_(136);
15388
+ var invariant = _dereq_(140);
15370
15389
 
15371
15390
  /**
15372
15391
  * Dummy container used to render all markup.
@@ -15430,7 +15449,7 @@ function createNodesFromMarkup(markup, handleScript) {
15430
15449
  }
15431
15450
 
15432
15451
  module.exports = createNodesFromMarkup;
15433
- },{"125":125,"129":129,"135":135,"139":139}],131:[function(_dereq_,module,exports){
15452
+ },{"126":126,"130":130,"136":136,"140":140}],132:[function(_dereq_,module,exports){
15434
15453
  "use strict";
15435
15454
 
15436
15455
  /**
@@ -15469,7 +15488,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
15469
15488
  };
15470
15489
 
15471
15490
  module.exports = emptyFunction;
15472
- },{}],132:[function(_dereq_,module,exports){
15491
+ },{}],133:[function(_dereq_,module,exports){
15473
15492
  /**
15474
15493
  * Copyright (c) 2013-present, Facebook, Inc.
15475
15494
  * All rights reserved.
@@ -15489,7 +15508,7 @@ if ("development" !== 'production') {
15489
15508
  }
15490
15509
 
15491
15510
  module.exports = emptyObject;
15492
- },{}],133:[function(_dereq_,module,exports){
15511
+ },{}],134:[function(_dereq_,module,exports){
15493
15512
  /**
15494
15513
  * Copyright (c) 2013-present, Facebook, Inc.
15495
15514
  * All rights reserved.
@@ -15516,7 +15535,7 @@ function focusNode(node) {
15516
15535
  }
15517
15536
 
15518
15537
  module.exports = focusNode;
15519
- },{}],134:[function(_dereq_,module,exports){
15538
+ },{}],135:[function(_dereq_,module,exports){
15520
15539
  'use strict';
15521
15540
 
15522
15541
  /**
@@ -15551,7 +15570,7 @@ function getActiveElement() /*?DOMElement*/{
15551
15570
  }
15552
15571
 
15553
15572
  module.exports = getActiveElement;
15554
- },{}],135:[function(_dereq_,module,exports){
15573
+ },{}],136:[function(_dereq_,module,exports){
15555
15574
  'use strict';
15556
15575
 
15557
15576
  /**
@@ -15566,9 +15585,9 @@ module.exports = getActiveElement;
15566
15585
 
15567
15586
  /*eslint-disable fb-www/unsafe-html */
15568
15587
 
15569
- var ExecutionEnvironment = _dereq_(125);
15588
+ var ExecutionEnvironment = _dereq_(126);
15570
15589
 
15571
- var invariant = _dereq_(139);
15590
+ var invariant = _dereq_(140);
15572
15591
 
15573
15592
  /**
15574
15593
  * Dummy container used to detect which wraps are necessary.
@@ -15646,7 +15665,7 @@ function getMarkupWrap(nodeName) {
15646
15665
  }
15647
15666
 
15648
15667
  module.exports = getMarkupWrap;
15649
- },{"125":125,"139":139}],136:[function(_dereq_,module,exports){
15668
+ },{"126":126,"140":140}],137:[function(_dereq_,module,exports){
15650
15669
  /**
15651
15670
  * Copyright (c) 2013-present, Facebook, Inc.
15652
15671
  * All rights reserved.
@@ -15685,7 +15704,7 @@ function getUnboundedScrollPosition(scrollable) {
15685
15704
  }
15686
15705
 
15687
15706
  module.exports = getUnboundedScrollPosition;
15688
- },{}],137:[function(_dereq_,module,exports){
15707
+ },{}],138:[function(_dereq_,module,exports){
15689
15708
  'use strict';
15690
15709
 
15691
15710
  /**
@@ -15718,7 +15737,7 @@ function hyphenate(string) {
15718
15737
  }
15719
15738
 
15720
15739
  module.exports = hyphenate;
15721
- },{}],138:[function(_dereq_,module,exports){
15740
+ },{}],139:[function(_dereq_,module,exports){
15722
15741
  /**
15723
15742
  * Copyright (c) 2013-present, Facebook, Inc.
15724
15743
  * All rights reserved.
@@ -15732,7 +15751,7 @@ module.exports = hyphenate;
15732
15751
 
15733
15752
  'use strict';
15734
15753
 
15735
- var hyphenate = _dereq_(137);
15754
+ var hyphenate = _dereq_(138);
15736
15755
 
15737
15756
  var msPattern = /^ms-/;
15738
15757
 
@@ -15757,7 +15776,7 @@ function hyphenateStyleName(string) {
15757
15776
  }
15758
15777
 
15759
15778
  module.exports = hyphenateStyleName;
15760
- },{"137":137}],139:[function(_dereq_,module,exports){
15779
+ },{"138":138}],140:[function(_dereq_,module,exports){
15761
15780
  /**
15762
15781
  * Copyright (c) 2013-present, Facebook, Inc.
15763
15782
  * All rights reserved.
@@ -15807,7 +15826,7 @@ function invariant(condition, format, a, b, c, d, e, f) {
15807
15826
  }
15808
15827
 
15809
15828
  module.exports = invariant;
15810
- },{}],140:[function(_dereq_,module,exports){
15829
+ },{}],141:[function(_dereq_,module,exports){
15811
15830
  'use strict';
15812
15831
 
15813
15832
  /**
@@ -15830,7 +15849,7 @@ function isNode(object) {
15830
15849
  }
15831
15850
 
15832
15851
  module.exports = isNode;
15833
- },{}],141:[function(_dereq_,module,exports){
15852
+ },{}],142:[function(_dereq_,module,exports){
15834
15853
  'use strict';
15835
15854
 
15836
15855
  /**
@@ -15844,7 +15863,7 @@ module.exports = isNode;
15844
15863
  * @typechecks
15845
15864
  */
15846
15865
 
15847
- var isNode = _dereq_(140);
15866
+ var isNode = _dereq_(141);
15848
15867
 
15849
15868
  /**
15850
15869
  * @param {*} object The object to check.
@@ -15855,7 +15874,7 @@ function isTextNode(object) {
15855
15874
  }
15856
15875
 
15857
15876
  module.exports = isTextNode;
15858
- },{"140":140}],142:[function(_dereq_,module,exports){
15877
+ },{"141":141}],143:[function(_dereq_,module,exports){
15859
15878
  /**
15860
15879
  * Copyright (c) 2013-present, Facebook, Inc.
15861
15880
  * All rights reserved.
@@ -15885,7 +15904,7 @@ function memoizeStringOnly(callback) {
15885
15904
  }
15886
15905
 
15887
15906
  module.exports = memoizeStringOnly;
15888
- },{}],143:[function(_dereq_,module,exports){
15907
+ },{}],144:[function(_dereq_,module,exports){
15889
15908
  /**
15890
15909
  * Copyright (c) 2013-present, Facebook, Inc.
15891
15910
  * All rights reserved.
@@ -15899,7 +15918,7 @@ module.exports = memoizeStringOnly;
15899
15918
 
15900
15919
  'use strict';
15901
15920
 
15902
- var ExecutionEnvironment = _dereq_(125);
15921
+ var ExecutionEnvironment = _dereq_(126);
15903
15922
 
15904
15923
  var performance;
15905
15924
 
@@ -15908,7 +15927,7 @@ if (ExecutionEnvironment.canUseDOM) {
15908
15927
  }
15909
15928
 
15910
15929
  module.exports = performance || {};
15911
- },{"125":125}],144:[function(_dereq_,module,exports){
15930
+ },{"126":126}],145:[function(_dereq_,module,exports){
15912
15931
  'use strict';
15913
15932
 
15914
15933
  /**
@@ -15922,7 +15941,7 @@ module.exports = performance || {};
15922
15941
  * @typechecks
15923
15942
  */
15924
15943
 
15925
- var performance = _dereq_(143);
15944
+ var performance = _dereq_(144);
15926
15945
 
15927
15946
  var performanceNow;
15928
15947
 
@@ -15942,7 +15961,7 @@ if (performance.now) {
15942
15961
  }
15943
15962
 
15944
15963
  module.exports = performanceNow;
15945
- },{"143":143}],145:[function(_dereq_,module,exports){
15964
+ },{"144":144}],146:[function(_dereq_,module,exports){
15946
15965
  /**
15947
15966
  * Copyright (c) 2013-present, Facebook, Inc.
15948
15967
  * All rights reserved.
@@ -16010,7 +16029,7 @@ function shallowEqual(objA, objB) {
16010
16029
  }
16011
16030
 
16012
16031
  module.exports = shallowEqual;
16013
- },{}],146:[function(_dereq_,module,exports){
16032
+ },{}],147:[function(_dereq_,module,exports){
16014
16033
  /**
16015
16034
  * Copyright 2014-2015, Facebook, Inc.
16016
16035
  * All rights reserved.
@@ -16023,7 +16042,7 @@ module.exports = shallowEqual;
16023
16042
 
16024
16043
  'use strict';
16025
16044
 
16026
- var emptyFunction = _dereq_(131);
16045
+ var emptyFunction = _dereq_(132);
16027
16046
 
16028
16047
  /**
16029
16048
  * Similar to invariant but only logs a warning if the condition is not met.
@@ -16077,7 +16096,7 @@ if ("development" !== 'production') {
16077
16096
  }
16078
16097
 
16079
16098
  module.exports = warning;
16080
- },{"131":131}],147:[function(_dereq_,module,exports){
16099
+ },{"132":132}],148:[function(_dereq_,module,exports){
16081
16100
  'use strict';
16082
16101
  /* eslint-disable no-unused-vars */
16083
16102
  var hasOwnProperty = Object.prototype.hasOwnProperty;