react-rails 1.8.1 → 1.8.2

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.
@@ -45,8 +45,8 @@
45
45
  /***/ function(module, exports, __webpack_require__) {
46
46
 
47
47
  var React = __webpack_require__(1);
48
- var ReactDOM = __webpack_require__(33);
49
- var ReactDOMServer = __webpack_require__(196);
48
+ var ReactDOM = __webpack_require__(35);
49
+ var ReactDOMServer = __webpack_require__(199);
50
50
 
51
51
  window.React = React;
52
52
  window.ReactDOM = ReactDOM;
@@ -83,13 +83,14 @@
83
83
 
84
84
  var ReactChildren = __webpack_require__(5);
85
85
  var ReactComponent = __webpack_require__(17);
86
- var ReactClass = __webpack_require__(20);
87
- var ReactDOMFactories = __webpack_require__(25);
86
+ var ReactPureComponent = __webpack_require__(20);
87
+ var ReactClass = __webpack_require__(21);
88
+ var ReactDOMFactories = __webpack_require__(26);
88
89
  var ReactElement = __webpack_require__(9);
89
- var ReactPropTypes = __webpack_require__(30);
90
- var ReactVersion = __webpack_require__(31);
90
+ var ReactPropTypes = __webpack_require__(32);
91
+ var ReactVersion = __webpack_require__(33);
91
92
 
92
- var onlyChild = __webpack_require__(32);
93
+ var onlyChild = __webpack_require__(34);
93
94
  var warning = __webpack_require__(11);
94
95
 
95
96
  var createElement = ReactElement.createElement;
@@ -97,7 +98,7 @@
97
98
  var cloneElement = ReactElement.cloneElement;
98
99
 
99
100
  if (process.env.NODE_ENV !== 'production') {
100
- var ReactElementValidator = __webpack_require__(27);
101
+ var ReactElementValidator = __webpack_require__(28);
101
102
  createElement = ReactElementValidator.createElement;
102
103
  createFactory = ReactElementValidator.createFactory;
103
104
  cloneElement = ReactElementValidator.cloneElement;
@@ -127,6 +128,7 @@
127
128
  },
128
129
 
129
130
  Component: ReactComponent,
131
+ PureComponent: ReactPureComponent,
130
132
 
131
133
  createElement: createElement,
132
134
  cloneElement: cloneElement,
@@ -160,7 +162,6 @@
160
162
  /***/ function(module, exports) {
161
163
 
162
164
  // shim for using process in browser
163
-
164
165
  var process = module.exports = {};
165
166
 
166
167
  // cached from whatever global is present so that test runners that stub it
@@ -172,21 +173,63 @@
172
173
  var cachedClearTimeout;
173
174
 
174
175
  (function () {
175
- try {
176
- cachedSetTimeout = setTimeout;
177
- } catch (e) {
178
- cachedSetTimeout = function () {
179
- throw new Error('setTimeout is not defined');
176
+ try {
177
+ cachedSetTimeout = setTimeout;
178
+ } catch (e) {
179
+ cachedSetTimeout = function () {
180
+ throw new Error('setTimeout is not defined');
181
+ }
180
182
  }
181
- }
182
- try {
183
- cachedClearTimeout = clearTimeout;
184
- } catch (e) {
185
- cachedClearTimeout = function () {
186
- throw new Error('clearTimeout is not defined');
183
+ try {
184
+ cachedClearTimeout = clearTimeout;
185
+ } catch (e) {
186
+ cachedClearTimeout = function () {
187
+ throw new Error('clearTimeout is not defined');
188
+ }
187
189
  }
188
- }
189
190
  } ())
191
+ function runTimeout(fun) {
192
+ if (cachedSetTimeout === setTimeout) {
193
+ //normal enviroments in sane situations
194
+ return setTimeout(fun, 0);
195
+ }
196
+ try {
197
+ // when when somebody has screwed with setTimeout but no I.E. maddness
198
+ return cachedSetTimeout(fun, 0);
199
+ } catch(e){
200
+ try {
201
+ // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
202
+ return cachedSetTimeout.call(null, fun, 0);
203
+ } catch(e){
204
+ // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
205
+ return cachedSetTimeout.call(this, fun, 0);
206
+ }
207
+ }
208
+
209
+
210
+ }
211
+ function runClearTimeout(marker) {
212
+ if (cachedClearTimeout === clearTimeout) {
213
+ //normal enviroments in sane situations
214
+ return clearTimeout(marker);
215
+ }
216
+ try {
217
+ // when when somebody has screwed with setTimeout but no I.E. maddness
218
+ return cachedClearTimeout(marker);
219
+ } catch (e){
220
+ try {
221
+ // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
222
+ return cachedClearTimeout.call(null, marker);
223
+ } catch (e){
224
+ // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
225
+ // Some versions of I.E. have different rules for clearTimeout vs setTimeout
226
+ return cachedClearTimeout.call(this, marker);
227
+ }
228
+ }
229
+
230
+
231
+
232
+ }
190
233
  var queue = [];
191
234
  var draining = false;
192
235
  var currentQueue;
@@ -211,7 +254,7 @@
211
254
  if (draining) {
212
255
  return;
213
256
  }
214
- var timeout = cachedSetTimeout.call(null, cleanUpNextTick);
257
+ var timeout = runTimeout(cleanUpNextTick);
215
258
  draining = true;
216
259
 
217
260
  var len = queue.length;
@@ -228,7 +271,7 @@
228
271
  }
229
272
  currentQueue = null;
230
273
  draining = false;
231
- cachedClearTimeout.call(null, timeout);
274
+ runClearTimeout(timeout);
232
275
  }
233
276
 
234
277
  process.nextTick = function (fun) {
@@ -240,7 +283,7 @@
240
283
  }
241
284
  queue.push(new Item(fun, args));
242
285
  if (queue.length === 1 && !draining) {
243
- cachedSetTimeout.call(null, drainQueue, 0);
286
+ runTimeout(drainQueue);
244
287
  }
245
288
  };
246
289
 
@@ -894,6 +937,7 @@
894
937
  // This can be replaced with a WeakMap once they are implemented in
895
938
  // commonly used development environments.
896
939
  element._store = {};
940
+ var shadowChildren = Array.isArray(props.children) ? props.children.slice(0) : props.children;
897
941
 
898
942
  // To make comparing ReactElements easier for testing purposes, we make
899
943
  // the validation flag non-enumerable (where possible, which should
@@ -913,6 +957,12 @@
913
957
  writable: false,
914
958
  value: self
915
959
  });
960
+ Object.defineProperty(element, '_shadowChildren', {
961
+ configurable: false,
962
+ enumerable: false,
963
+ writable: false,
964
+ value: shadowChildren
965
+ });
916
966
  // Two elements created in two different places should be considered
917
967
  // equal for testing purposes and therefore we hide it from enumeration.
918
968
  Object.defineProperty(element, '_source', {
@@ -924,6 +974,7 @@
924
974
  } else {
925
975
  element._store.validated = false;
926
976
  element._self = self;
977
+ element._shadowChildren = shadowChildren;
927
978
  element._source = source;
928
979
  }
929
980
  if (Object.freeze) {
@@ -1424,7 +1475,14 @@
1424
1475
  }
1425
1476
  } else {
1426
1477
  if (process.env.NODE_ENV !== 'production') {
1427
- process.env.NODE_ENV !== 'production' ? warning(didWarnAboutMaps, 'Using Maps as children is not yet fully supported. It is an ' + 'experimental feature that might be removed. Convert it to a ' + 'sequence / iterable of keyed ReactElements instead.') : void 0;
1478
+ var mapsAsChildrenAddendum = '';
1479
+ if (ReactCurrentOwner.current) {
1480
+ var mapsAsChildrenOwnerName = ReactCurrentOwner.current.getName();
1481
+ if (mapsAsChildrenOwnerName) {
1482
+ mapsAsChildrenAddendum = ' Check the render method of `' + mapsAsChildrenOwnerName + '`.';
1483
+ }
1484
+ }
1485
+ process.env.NODE_ENV !== 'production' ? warning(didWarnAboutMaps, 'Using Maps as children is not yet fully supported. It is an ' + 'experimental feature that might be removed. Convert it to a ' + 'sequence / iterable of keyed ReactElements instead.%s', mapsAsChildrenAddendum) : void 0;
1428
1486
  didWarnAboutMaps = true;
1429
1487
  }
1430
1488
  // Iterator will provide entry [k,v] tuples rather than values.
@@ -1849,6 +1907,53 @@
1849
1907
 
1850
1908
  /***/ },
1851
1909
  /* 20 */
1910
+ /***/ function(module, exports, __webpack_require__) {
1911
+
1912
+ /**
1913
+ * Copyright 2013-present, Facebook, Inc.
1914
+ * All rights reserved.
1915
+ *
1916
+ * This source code is licensed under the BSD-style license found in the
1917
+ * LICENSE file in the root directory of this source tree. An additional grant
1918
+ * of patent rights can be found in the PATENTS file in the same directory.
1919
+ *
1920
+ * @providesModule ReactPureComponent
1921
+ */
1922
+
1923
+ 'use strict';
1924
+
1925
+ var _assign = __webpack_require__(4);
1926
+
1927
+ var ReactComponent = __webpack_require__(17);
1928
+ var ReactNoopUpdateQueue = __webpack_require__(18);
1929
+
1930
+ var emptyObject = __webpack_require__(19);
1931
+
1932
+ /**
1933
+ * Base class helpers for the updating state of a component.
1934
+ */
1935
+ function ReactPureComponent(props, context, updater) {
1936
+ // Duplicated from ReactComponent.
1937
+ this.props = props;
1938
+ this.context = context;
1939
+ this.refs = emptyObject;
1940
+ // We initialize the default updater but the real one gets injected by the
1941
+ // renderer.
1942
+ this.updater = updater || ReactNoopUpdateQueue;
1943
+ }
1944
+
1945
+ function ComponentDummy() {}
1946
+ ComponentDummy.prototype = ReactComponent.prototype;
1947
+ ReactPureComponent.prototype = new ComponentDummy();
1948
+ ReactPureComponent.prototype.constructor = ReactPureComponent;
1949
+ // Avoid an extra prototype jump for these methods.
1950
+ _assign(ReactPureComponent.prototype, ReactComponent.prototype);
1951
+ ReactPureComponent.prototype.isPureReactComponent = true;
1952
+
1953
+ module.exports = ReactPureComponent;
1954
+
1955
+ /***/ },
1956
+ /* 21 */
1852
1957
  /***/ function(module, exports, __webpack_require__) {
1853
1958
 
1854
1959
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -1869,14 +1974,14 @@
1869
1974
 
1870
1975
  var ReactComponent = __webpack_require__(17);
1871
1976
  var ReactElement = __webpack_require__(9);
1872
- var ReactPropTypeLocations = __webpack_require__(21);
1873
- var ReactPropTypeLocationNames = __webpack_require__(23);
1977
+ var ReactPropTypeLocations = __webpack_require__(22);
1978
+ var ReactPropTypeLocationNames = __webpack_require__(24);
1874
1979
  var ReactNoopUpdateQueue = __webpack_require__(18);
1875
1980
 
1876
1981
  var emptyObject = __webpack_require__(19);
1877
1982
  var invariant = __webpack_require__(8);
1878
- var keyMirror = __webpack_require__(22);
1879
- var keyOf = __webpack_require__(24);
1983
+ var keyMirror = __webpack_require__(23);
1984
+ var keyOf = __webpack_require__(25);
1880
1985
  var warning = __webpack_require__(11);
1881
1986
 
1882
1987
  var MIXINS_KEY = keyOf({ mixins: null });
@@ -2238,6 +2343,13 @@
2238
2343
  */
2239
2344
  function mixSpecIntoComponent(Constructor, spec) {
2240
2345
  if (!spec) {
2346
+ if (process.env.NODE_ENV !== 'production') {
2347
+ var typeofSpec = typeof spec;
2348
+ var isMixinValid = typeofSpec === 'object' && spec !== null;
2349
+
2350
+ process.env.NODE_ENV !== 'production' ? warning(isMixinValid, '%s: You\'re attempting to include a mixin that is either null ' + 'or not an object. Check the mixins included by the component, ' + 'as well as any mixins they include themselves. ' + 'Expected object but got %s.', Constructor.displayName || 'ReactClass', spec === null ? null : typeofSpec) : void 0;
2351
+ }
2352
+
2241
2353
  return;
2242
2354
  }
2243
2355
 
@@ -2579,7 +2691,7 @@
2579
2691
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
2580
2692
 
2581
2693
  /***/ },
2582
- /* 21 */
2694
+ /* 22 */
2583
2695
  /***/ function(module, exports, __webpack_require__) {
2584
2696
 
2585
2697
  /**
@@ -2595,7 +2707,7 @@
2595
2707
 
2596
2708
  'use strict';
2597
2709
 
2598
- var keyMirror = __webpack_require__(22);
2710
+ var keyMirror = __webpack_require__(23);
2599
2711
 
2600
2712
  var ReactPropTypeLocations = keyMirror({
2601
2713
  prop: null,
@@ -2606,7 +2718,7 @@
2606
2718
  module.exports = ReactPropTypeLocations;
2607
2719
 
2608
2720
  /***/ },
2609
- /* 22 */
2721
+ /* 23 */
2610
2722
  /***/ function(module, exports, __webpack_require__) {
2611
2723
 
2612
2724
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -2659,7 +2771,7 @@
2659
2771
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
2660
2772
 
2661
2773
  /***/ },
2662
- /* 23 */
2774
+ /* 24 */
2663
2775
  /***/ function(module, exports, __webpack_require__) {
2664
2776
 
2665
2777
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -2689,7 +2801,7 @@
2689
2801
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
2690
2802
 
2691
2803
  /***/ },
2692
- /* 24 */
2804
+ /* 25 */
2693
2805
  /***/ function(module, exports) {
2694
2806
 
2695
2807
  "use strict";
@@ -2728,7 +2840,7 @@
2728
2840
  module.exports = keyOf;
2729
2841
 
2730
2842
  /***/ },
2731
- /* 25 */
2843
+ /* 26 */
2732
2844
  /***/ function(module, exports, __webpack_require__) {
2733
2845
 
2734
2846
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -2746,7 +2858,7 @@
2746
2858
 
2747
2859
  var ReactElement = __webpack_require__(9);
2748
2860
 
2749
- var mapObject = __webpack_require__(26);
2861
+ var mapObject = __webpack_require__(27);
2750
2862
 
2751
2863
  /**
2752
2864
  * Create a factory that creates HTML tag elements.
@@ -2756,7 +2868,7 @@
2756
2868
  */
2757
2869
  function createDOMFactory(tag) {
2758
2870
  if (process.env.NODE_ENV !== 'production') {
2759
- var ReactElementValidator = __webpack_require__(27);
2871
+ var ReactElementValidator = __webpack_require__(28);
2760
2872
  return ReactElementValidator.createFactory(tag);
2761
2873
  }
2762
2874
  return ReactElement.createFactory(tag);
@@ -2910,7 +3022,7 @@
2910
3022
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
2911
3023
 
2912
3024
  /***/ },
2913
- /* 26 */
3025
+ /* 27 */
2914
3026
  /***/ function(module, exports) {
2915
3027
 
2916
3028
  /**
@@ -2965,7 +3077,7 @@
2965
3077
  module.exports = mapObject;
2966
3078
 
2967
3079
  /***/ },
2968
- /* 27 */
3080
+ /* 28 */
2969
3081
  /***/ function(module, exports, __webpack_require__) {
2970
3082
 
2971
3083
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -2989,11 +3101,11 @@
2989
3101
  'use strict';
2990
3102
 
2991
3103
  var ReactCurrentOwner = __webpack_require__(10);
2992
- var ReactComponentTreeDevtool = __webpack_require__(28);
3104
+ var ReactComponentTreeDevtool = __webpack_require__(29);
2993
3105
  var ReactElement = __webpack_require__(9);
2994
- var ReactPropTypeLocations = __webpack_require__(21);
3106
+ var ReactPropTypeLocations = __webpack_require__(22);
2995
3107
 
2996
- var checkReactTypeSpec = __webpack_require__(29);
3108
+ var checkReactTypeSpec = __webpack_require__(30);
2997
3109
 
2998
3110
  var canDefineProperty = __webpack_require__(13);
2999
3111
  var getIteratorFn = __webpack_require__(15);
@@ -3197,7 +3309,7 @@
3197
3309
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
3198
3310
 
3199
3311
  /***/ },
3200
- /* 28 */
3312
+ /* 29 */
3201
3313
  /***/ function(module, exports, __webpack_require__) {
3202
3314
 
3203
3315
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -3421,7 +3533,7 @@
3421
3533
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
3422
3534
 
3423
3535
  /***/ },
3424
- /* 29 */
3536
+ /* 30 */
3425
3537
  /***/ function(module, exports, __webpack_require__) {
3426
3538
 
3427
3539
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -3439,11 +3551,23 @@
3439
3551
 
3440
3552
  var _prodInvariant = __webpack_require__(7);
3441
3553
 
3442
- var ReactPropTypeLocationNames = __webpack_require__(23);
3554
+ var ReactPropTypeLocationNames = __webpack_require__(24);
3555
+ var ReactPropTypesSecret = __webpack_require__(31);
3443
3556
 
3444
3557
  var invariant = __webpack_require__(8);
3445
3558
  var warning = __webpack_require__(11);
3446
3559
 
3560
+ var ReactComponentTreeDevtool;
3561
+
3562
+ if (typeof process !== 'undefined' && process.env && process.env.NODE_ENV === 'test') {
3563
+ // Temporary hack.
3564
+ // Inline requires don't work well with Jest:
3565
+ // https://github.com/facebook/react/issues/7240
3566
+ // Remove the inline requires when we don't need them anymore:
3567
+ // https://github.com/facebook/react/pull/7178
3568
+ ReactComponentTreeDevtool = __webpack_require__(29);
3569
+ }
3570
+
3447
3571
  var loggedTypeFailures = {};
3448
3572
 
3449
3573
  /**
@@ -3469,7 +3593,7 @@
3469
3593
  // This is intentionally an invariant that gets caught. It's the same
3470
3594
  // behavior as without this statement except with a better message.
3471
3595
  !(typeof typeSpecs[typeSpecName] === 'function') ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s: %s type `%s` is invalid; it must be a function, usually from React.PropTypes.', componentName || 'React class', ReactPropTypeLocationNames[location], typeSpecName) : _prodInvariant('84', componentName || 'React class', ReactPropTypeLocationNames[location], typeSpecName) : void 0;
3472
- error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location);
3596
+ error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);
3473
3597
  } catch (ex) {
3474
3598
  error = ex;
3475
3599
  }
@@ -3482,7 +3606,9 @@
3482
3606
  var componentStackInfo = '';
3483
3607
 
3484
3608
  if (process.env.NODE_ENV !== 'production') {
3485
- var ReactComponentTreeDevtool = __webpack_require__(28);
3609
+ if (!ReactComponentTreeDevtool) {
3610
+ ReactComponentTreeDevtool = __webpack_require__(29);
3611
+ }
3486
3612
  if (debugID !== null) {
3487
3613
  componentStackInfo = ReactComponentTreeDevtool.getStackAddendumByID(debugID);
3488
3614
  } else if (element !== null) {
@@ -3500,10 +3626,31 @@
3500
3626
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
3501
3627
 
3502
3628
  /***/ },
3503
- /* 30 */
3504
- /***/ function(module, exports, __webpack_require__) {
3629
+ /* 31 */
3630
+ /***/ function(module, exports) {
3505
3631
 
3506
3632
  /**
3633
+ * Copyright 2013-present, Facebook, Inc.
3634
+ * All rights reserved.
3635
+ *
3636
+ * This source code is licensed under the BSD-style license found in the
3637
+ * LICENSE file in the root directory of this source tree. An additional grant
3638
+ * of patent rights can be found in the PATENTS file in the same directory.
3639
+ *
3640
+ * @providesModule ReactPropTypesSecret
3641
+ */
3642
+
3643
+ 'use strict';
3644
+
3645
+ var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
3646
+
3647
+ module.exports = ReactPropTypesSecret;
3648
+
3649
+ /***/ },
3650
+ /* 32 */
3651
+ /***/ function(module, exports, __webpack_require__) {
3652
+
3653
+ /* WEBPACK VAR INJECTION */(function(process) {/**
3507
3654
  * Copyright 2013-present, Facebook, Inc.
3508
3655
  * All rights reserved.
3509
3656
  *
@@ -3517,10 +3664,12 @@
3517
3664
  'use strict';
3518
3665
 
3519
3666
  var ReactElement = __webpack_require__(9);
3520
- var ReactPropTypeLocationNames = __webpack_require__(23);
3667
+ var ReactPropTypeLocationNames = __webpack_require__(24);
3668
+ var ReactPropTypesSecret = __webpack_require__(31);
3521
3669
 
3522
3670
  var emptyFunction = __webpack_require__(12);
3523
3671
  var getIteratorFn = __webpack_require__(15);
3672
+ var warning = __webpack_require__(11);
3524
3673
 
3525
3674
  /**
3526
3675
  * Collection of methods that allow declaration and validation of props that are
@@ -3610,9 +3759,21 @@
3610
3759
  /*eslint-enable no-self-compare*/
3611
3760
 
3612
3761
  function createChainableTypeChecker(validate) {
3613
- function checkType(isRequired, props, propName, componentName, location, propFullName) {
3762
+ if (process.env.NODE_ENV !== 'production') {
3763
+ var manualPropTypeCallCache = {};
3764
+ }
3765
+ function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {
3614
3766
  componentName = componentName || ANONYMOUS;
3615
3767
  propFullName = propFullName || propName;
3768
+ if (process.env.NODE_ENV !== 'production') {
3769
+ if (secret !== ReactPropTypesSecret && typeof console !== 'undefined') {
3770
+ var cacheKey = componentName + ':' + propName;
3771
+ if (!manualPropTypeCallCache[cacheKey]) {
3772
+ process.env.NODE_ENV !== 'production' ? warning(false, 'You are manually calling a React.PropTypes validation ' + 'function for the `%s` prop on `%s`. This is deprecated ' + 'and will not work in the next major version. You may be ' + 'seeing this warning due to a third-party PropTypes library. ' + 'See https://fb.me/react-warning-dont-call-proptypes for details.', propFullName, componentName) : void 0;
3773
+ manualPropTypeCallCache[cacheKey] = true;
3774
+ }
3775
+ }
3776
+ }
3616
3777
  if (props[propName] == null) {
3617
3778
  var locationName = ReactPropTypeLocationNames[location];
3618
3779
  if (isRequired) {
@@ -3631,7 +3792,7 @@
3631
3792
  }
3632
3793
 
3633
3794
  function createPrimitiveTypeChecker(expectedType) {
3634
- function validate(props, propName, componentName, location, propFullName) {
3795
+ function validate(props, propName, componentName, location, propFullName, secret) {
3635
3796
  var propValue = props[propName];
3636
3797
  var propType = getPropType(propValue);
3637
3798
  if (propType !== expectedType) {
@@ -3664,7 +3825,7 @@
3664
3825
  return new Error('Invalid ' + locationName + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));
3665
3826
  }
3666
3827
  for (var i = 0; i < propValue.length; i++) {
3667
- var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']');
3828
+ var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);
3668
3829
  if (error instanceof Error) {
3669
3830
  return error;
3670
3831
  }
@@ -3676,9 +3837,11 @@
3676
3837
 
3677
3838
  function createElementTypeChecker() {
3678
3839
  function validate(props, propName, componentName, location, propFullName) {
3679
- if (!ReactElement.isValidElement(props[propName])) {
3840
+ var propValue = props[propName];
3841
+ if (!ReactElement.isValidElement(propValue)) {
3680
3842
  var locationName = ReactPropTypeLocationNames[location];
3681
- return new Error('Invalid ' + locationName + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a single ReactElement.'));
3843
+ var propType = getPropType(propValue);
3844
+ return new Error('Invalid ' + locationName + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));
3682
3845
  }
3683
3846
  return null;
3684
3847
  }
@@ -3700,9 +3863,8 @@
3700
3863
 
3701
3864
  function createEnumTypeChecker(expectedValues) {
3702
3865
  if (!Array.isArray(expectedValues)) {
3703
- return createChainableTypeChecker(function () {
3704
- return new Error('Invalid argument supplied to oneOf, expected an instance of array.');
3705
- });
3866
+ process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid argument supplied to oneOf, expected an instance of array.') : void 0;
3867
+ return emptyFunction.thatReturnsNull;
3706
3868
  }
3707
3869
 
3708
3870
  function validate(props, propName, componentName, location, propFullName) {
@@ -3733,7 +3895,7 @@
3733
3895
  }
3734
3896
  for (var key in propValue) {
3735
3897
  if (propValue.hasOwnProperty(key)) {
3736
- var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key);
3898
+ var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
3737
3899
  if (error instanceof Error) {
3738
3900
  return error;
3739
3901
  }
@@ -3746,15 +3908,14 @@
3746
3908
 
3747
3909
  function createUnionTypeChecker(arrayOfTypeCheckers) {
3748
3910
  if (!Array.isArray(arrayOfTypeCheckers)) {
3749
- return createChainableTypeChecker(function () {
3750
- return new Error('Invalid argument supplied to oneOfType, expected an instance of array.');
3751
- });
3911
+ process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;
3912
+ return emptyFunction.thatReturnsNull;
3752
3913
  }
3753
3914
 
3754
3915
  function validate(props, propName, componentName, location, propFullName) {
3755
3916
  for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
3756
3917
  var checker = arrayOfTypeCheckers[i];
3757
- if (checker(props, propName, componentName, location, propFullName) == null) {
3918
+ if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret) == null) {
3758
3919
  return null;
3759
3920
  }
3760
3921
  }
@@ -3789,7 +3950,7 @@
3789
3950
  if (!checker) {
3790
3951
  continue;
3791
3952
  }
3792
- var error = checker(propValue, key, componentName, location, propFullName + '.' + key);
3953
+ var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
3793
3954
  if (error) {
3794
3955
  return error;
3795
3956
  }
@@ -3906,9 +4067,10 @@
3906
4067
  }
3907
4068
 
3908
4069
  module.exports = ReactPropTypes;
4070
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
3909
4071
 
3910
4072
  /***/ },
3911
- /* 31 */
4073
+ /* 33 */
3912
4074
  /***/ function(module, exports) {
3913
4075
 
3914
4076
  /**
@@ -3924,10 +4086,10 @@
3924
4086
 
3925
4087
  'use strict';
3926
4088
 
3927
- module.exports = '15.2.1';
4089
+ module.exports = '15.3.0';
3928
4090
 
3929
4091
  /***/ },
3930
- /* 32 */
4092
+ /* 34 */
3931
4093
  /***/ function(module, exports, __webpack_require__) {
3932
4094
 
3933
4095
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -3971,16 +4133,16 @@
3971
4133
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
3972
4134
 
3973
4135
  /***/ },
3974
- /* 33 */
4136
+ /* 35 */
3975
4137
  /***/ function(module, exports, __webpack_require__) {
3976
4138
 
3977
4139
  'use strict';
3978
4140
 
3979
- module.exports = __webpack_require__(34);
4141
+ module.exports = __webpack_require__(36);
3980
4142
 
3981
4143
 
3982
4144
  /***/ },
3983
- /* 34 */
4145
+ /* 36 */
3984
4146
  /***/ function(module, exports, __webpack_require__) {
3985
4147
 
3986
4148
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -3998,21 +4160,21 @@
3998
4160
 
3999
4161
  'use strict';
4000
4162
 
4001
- var ReactDOMComponentTree = __webpack_require__(35);
4002
- var ReactDefaultInjection = __webpack_require__(38);
4003
- var ReactMount = __webpack_require__(164);
4004
- var ReactReconciler = __webpack_require__(58);
4005
- var ReactUpdates = __webpack_require__(55);
4006
- var ReactVersion = __webpack_require__(31);
4163
+ var ReactDOMComponentTree = __webpack_require__(37);
4164
+ var ReactDefaultInjection = __webpack_require__(40);
4165
+ var ReactMount = __webpack_require__(167);
4166
+ var ReactReconciler = __webpack_require__(60);
4167
+ var ReactUpdates = __webpack_require__(57);
4168
+ var ReactVersion = __webpack_require__(33);
4007
4169
 
4008
- var findDOMNode = __webpack_require__(169);
4009
- var getHostComponentFromComposite = __webpack_require__(170);
4010
- var renderSubtreeIntoContainer = __webpack_require__(171);
4170
+ var findDOMNode = __webpack_require__(172);
4171
+ var getHostComponentFromComposite = __webpack_require__(173);
4172
+ var renderSubtreeIntoContainer = __webpack_require__(174);
4011
4173
  var warning = __webpack_require__(11);
4012
4174
 
4013
4175
  ReactDefaultInjection.inject();
4014
4176
 
4015
- var React = {
4177
+ var ReactDOM = {
4016
4178
  findDOMNode: findDOMNode,
4017
4179
  render: ReactMount.render,
4018
4180
  unmountComponentAtNode: ReactMount.unmountComponentAtNode,
@@ -4048,7 +4210,7 @@
4048
4210
  }
4049
4211
 
4050
4212
  if (process.env.NODE_ENV !== 'production') {
4051
- var ExecutionEnvironment = __webpack_require__(48);
4213
+ var ExecutionEnvironment = __webpack_require__(50);
4052
4214
  if (ExecutionEnvironment.canUseDOM && window.top === window.self) {
4053
4215
 
4054
4216
  // First check if devtools is not installed
@@ -4083,11 +4245,11 @@
4083
4245
  }
4084
4246
  }
4085
4247
 
4086
- module.exports = React;
4248
+ module.exports = ReactDOM;
4087
4249
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
4088
4250
 
4089
4251
  /***/ },
4090
- /* 35 */
4252
+ /* 37 */
4091
4253
  /***/ function(module, exports, __webpack_require__) {
4092
4254
 
4093
4255
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -4105,8 +4267,8 @@
4105
4267
 
4106
4268
  var _prodInvariant = __webpack_require__(7);
4107
4269
 
4108
- var DOMProperty = __webpack_require__(36);
4109
- var ReactDOMComponentFlags = __webpack_require__(37);
4270
+ var DOMProperty = __webpack_require__(38);
4271
+ var ReactDOMComponentFlags = __webpack_require__(39);
4110
4272
 
4111
4273
  var invariant = __webpack_require__(8);
4112
4274
 
@@ -4281,7 +4443,7 @@
4281
4443
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
4282
4444
 
4283
4445
  /***/ },
4284
- /* 36 */
4446
+ /* 38 */
4285
4447
  /***/ function(module, exports, __webpack_require__) {
4286
4448
 
4287
4449
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -4493,7 +4655,7 @@
4493
4655
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
4494
4656
 
4495
4657
  /***/ },
4496
- /* 37 */
4658
+ /* 39 */
4497
4659
  /***/ function(module, exports) {
4498
4660
 
4499
4661
  /**
@@ -4516,7 +4678,7 @@
4516
4678
  module.exports = ReactDOMComponentFlags;
4517
4679
 
4518
4680
  /***/ },
4519
- /* 38 */
4681
+ /* 40 */
4520
4682
  /***/ function(module, exports, __webpack_require__) {
4521
4683
 
4522
4684
  /**
@@ -4532,24 +4694,24 @@
4532
4694
 
4533
4695
  'use strict';
4534
4696
 
4535
- var BeforeInputEventPlugin = __webpack_require__(39);
4536
- var ChangeEventPlugin = __webpack_require__(54);
4537
- var DefaultEventPluginOrder = __webpack_require__(71);
4538
- var EnterLeaveEventPlugin = __webpack_require__(72);
4539
- var HTMLDOMPropertyConfig = __webpack_require__(77);
4540
- var ReactComponentBrowserEnvironment = __webpack_require__(78);
4541
- var ReactDOMComponent = __webpack_require__(92);
4542
- var ReactDOMComponentTree = __webpack_require__(35);
4543
- var ReactDOMEmptyComponent = __webpack_require__(135);
4544
- var ReactDOMTreeTraversal = __webpack_require__(136);
4545
- var ReactDOMTextComponent = __webpack_require__(137);
4546
- var ReactDefaultBatchingStrategy = __webpack_require__(138);
4547
- var ReactEventListener = __webpack_require__(139);
4548
- var ReactInjection = __webpack_require__(142);
4549
- var ReactReconcileTransaction = __webpack_require__(143);
4550
- var SVGDOMPropertyConfig = __webpack_require__(151);
4551
- var SelectEventPlugin = __webpack_require__(152);
4552
- var SimpleEventPlugin = __webpack_require__(153);
4697
+ var BeforeInputEventPlugin = __webpack_require__(41);
4698
+ var ChangeEventPlugin = __webpack_require__(56);
4699
+ var DefaultEventPluginOrder = __webpack_require__(74);
4700
+ var EnterLeaveEventPlugin = __webpack_require__(75);
4701
+ var HTMLDOMPropertyConfig = __webpack_require__(80);
4702
+ var ReactComponentBrowserEnvironment = __webpack_require__(81);
4703
+ var ReactDOMComponent = __webpack_require__(95);
4704
+ var ReactDOMComponentTree = __webpack_require__(37);
4705
+ var ReactDOMEmptyComponent = __webpack_require__(138);
4706
+ var ReactDOMTreeTraversal = __webpack_require__(139);
4707
+ var ReactDOMTextComponent = __webpack_require__(140);
4708
+ var ReactDefaultBatchingStrategy = __webpack_require__(141);
4709
+ var ReactEventListener = __webpack_require__(142);
4710
+ var ReactInjection = __webpack_require__(145);
4711
+ var ReactReconcileTransaction = __webpack_require__(146);
4712
+ var SVGDOMPropertyConfig = __webpack_require__(154);
4713
+ var SelectEventPlugin = __webpack_require__(155);
4714
+ var SimpleEventPlugin = __webpack_require__(156);
4553
4715
 
4554
4716
  var alreadyInjected = false;
4555
4717
 
@@ -4605,7 +4767,7 @@
4605
4767
  };
4606
4768
 
4607
4769
  /***/ },
4608
- /* 39 */
4770
+ /* 41 */
4609
4771
  /***/ function(module, exports, __webpack_require__) {
4610
4772
 
4611
4773
  /**
@@ -4621,14 +4783,14 @@
4621
4783
 
4622
4784
  'use strict';
4623
4785
 
4624
- var EventConstants = __webpack_require__(40);
4625
- var EventPropagators = __webpack_require__(41);
4626
- var ExecutionEnvironment = __webpack_require__(48);
4627
- var FallbackCompositionState = __webpack_require__(49);
4628
- var SyntheticCompositionEvent = __webpack_require__(51);
4629
- var SyntheticInputEvent = __webpack_require__(53);
4786
+ var EventConstants = __webpack_require__(42);
4787
+ var EventPropagators = __webpack_require__(43);
4788
+ var ExecutionEnvironment = __webpack_require__(50);
4789
+ var FallbackCompositionState = __webpack_require__(51);
4790
+ var SyntheticCompositionEvent = __webpack_require__(53);
4791
+ var SyntheticInputEvent = __webpack_require__(55);
4630
4792
 
4631
- var keyOf = __webpack_require__(24);
4793
+ var keyOf = __webpack_require__(25);
4632
4794
 
4633
4795
  var END_KEYCODES = [9, 13, 27, 32]; // Tab, Return, Esc, Space
4634
4796
  var START_KEYCODE = 229;
@@ -4998,7 +5160,7 @@
4998
5160
  module.exports = BeforeInputEventPlugin;
4999
5161
 
5000
5162
  /***/ },
5001
- /* 40 */
5163
+ /* 42 */
5002
5164
  /***/ function(module, exports, __webpack_require__) {
5003
5165
 
5004
5166
  /**
@@ -5014,7 +5176,7 @@
5014
5176
 
5015
5177
  'use strict';
5016
5178
 
5017
- var keyMirror = __webpack_require__(22);
5179
+ var keyMirror = __webpack_require__(23);
5018
5180
 
5019
5181
  var PropagationPhases = keyMirror({ bubbled: null, captured: null });
5020
5182
 
@@ -5100,7 +5262,7 @@
5100
5262
  module.exports = EventConstants;
5101
5263
 
5102
5264
  /***/ },
5103
- /* 41 */
5265
+ /* 43 */
5104
5266
  /***/ function(module, exports, __webpack_require__) {
5105
5267
 
5106
5268
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -5116,12 +5278,12 @@
5116
5278
 
5117
5279
  'use strict';
5118
5280
 
5119
- var EventConstants = __webpack_require__(40);
5120
- var EventPluginHub = __webpack_require__(42);
5121
- var EventPluginUtils = __webpack_require__(44);
5281
+ var EventConstants = __webpack_require__(42);
5282
+ var EventPluginHub = __webpack_require__(44);
5283
+ var EventPluginUtils = __webpack_require__(46);
5122
5284
 
5123
- var accumulateInto = __webpack_require__(46);
5124
- var forEachAccumulated = __webpack_require__(47);
5285
+ var accumulateInto = __webpack_require__(48);
5286
+ var forEachAccumulated = __webpack_require__(49);
5125
5287
  var warning = __webpack_require__(11);
5126
5288
 
5127
5289
  var PropagationPhases = EventConstants.PropagationPhases;
@@ -5243,7 +5405,7 @@
5243
5405
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
5244
5406
 
5245
5407
  /***/ },
5246
- /* 42 */
5408
+ /* 44 */
5247
5409
  /***/ function(module, exports, __webpack_require__) {
5248
5410
 
5249
5411
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -5261,12 +5423,12 @@
5261
5423
 
5262
5424
  var _prodInvariant = __webpack_require__(7);
5263
5425
 
5264
- var EventPluginRegistry = __webpack_require__(43);
5265
- var EventPluginUtils = __webpack_require__(44);
5266
- var ReactErrorUtils = __webpack_require__(45);
5426
+ var EventPluginRegistry = __webpack_require__(45);
5427
+ var EventPluginUtils = __webpack_require__(46);
5428
+ var ReactErrorUtils = __webpack_require__(47);
5267
5429
 
5268
- var accumulateInto = __webpack_require__(46);
5269
- var forEachAccumulated = __webpack_require__(47);
5430
+ var accumulateInto = __webpack_require__(48);
5431
+ var forEachAccumulated = __webpack_require__(49);
5270
5432
  var invariant = __webpack_require__(8);
5271
5433
 
5272
5434
  /**
@@ -5303,6 +5465,10 @@
5303
5465
  return executeDispatchesAndRelease(e, false);
5304
5466
  };
5305
5467
 
5468
+ var getDictionaryKey = function (inst) {
5469
+ return '.' + inst._rootNodeID;
5470
+ };
5471
+
5306
5472
  /**
5307
5473
  * This is a unified interface for event plugins to be installed and configured.
5308
5474
  *
@@ -5346,7 +5512,7 @@
5346
5512
  },
5347
5513
 
5348
5514
  /**
5349
- * Stores `listener` at `listenerBank[registrationName][id]`. Is idempotent.
5515
+ * Stores `listener` at `listenerBank[registrationName][key]`. Is idempotent.
5350
5516
  *
5351
5517
  * @param {object} inst The instance, which is the source of events.
5352
5518
  * @param {string} registrationName Name of listener (e.g. `onClick`).
@@ -5355,8 +5521,9 @@
5355
5521
  putListener: function (inst, registrationName, listener) {
5356
5522
  !(typeof listener === 'function') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Expected %s listener to be a function, instead got type %s', registrationName, typeof listener) : _prodInvariant('94', registrationName, typeof listener) : void 0;
5357
5523
 
5524
+ var key = getDictionaryKey(inst);
5358
5525
  var bankForRegistrationName = listenerBank[registrationName] || (listenerBank[registrationName] = {});
5359
- bankForRegistrationName[inst._rootNodeID] = listener;
5526
+ bankForRegistrationName[key] = listener;
5360
5527
 
5361
5528
  var PluginModule = EventPluginRegistry.registrationNameModules[registrationName];
5362
5529
  if (PluginModule && PluginModule.didPutListener) {
@@ -5371,7 +5538,8 @@
5371
5538
  */
5372
5539
  getListener: function (inst, registrationName) {
5373
5540
  var bankForRegistrationName = listenerBank[registrationName];
5374
- return bankForRegistrationName && bankForRegistrationName[inst._rootNodeID];
5541
+ var key = getDictionaryKey(inst);
5542
+ return bankForRegistrationName && bankForRegistrationName[key];
5375
5543
  },
5376
5544
 
5377
5545
  /**
@@ -5389,7 +5557,8 @@
5389
5557
  var bankForRegistrationName = listenerBank[registrationName];
5390
5558
  // TODO: This should never be null -- when is it?
5391
5559
  if (bankForRegistrationName) {
5392
- delete bankForRegistrationName[inst._rootNodeID];
5560
+ var key = getDictionaryKey(inst);
5561
+ delete bankForRegistrationName[key];
5393
5562
  }
5394
5563
  },
5395
5564
 
@@ -5399,12 +5568,13 @@
5399
5568
  * @param {object} inst The instance, which is the source of events.
5400
5569
  */
5401
5570
  deleteAllListeners: function (inst) {
5571
+ var key = getDictionaryKey(inst);
5402
5572
  for (var registrationName in listenerBank) {
5403
5573
  if (!listenerBank.hasOwnProperty(registrationName)) {
5404
5574
  continue;
5405
5575
  }
5406
5576
 
5407
- if (!listenerBank[registrationName][inst._rootNodeID]) {
5577
+ if (!listenerBank[registrationName][key]) {
5408
5578
  continue;
5409
5579
  }
5410
5580
 
@@ -5413,7 +5583,7 @@
5413
5583
  PluginModule.willDeleteListener(inst, registrationName);
5414
5584
  }
5415
5585
 
5416
- delete listenerBank[registrationName][inst._rootNodeID];
5586
+ delete listenerBank[registrationName][key];
5417
5587
  }
5418
5588
  },
5419
5589
 
@@ -5490,7 +5660,7 @@
5490
5660
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
5491
5661
 
5492
5662
  /***/ },
5493
- /* 43 */
5663
+ /* 45 */
5494
5664
  /***/ function(module, exports, __webpack_require__) {
5495
5665
 
5496
5666
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -5743,7 +5913,7 @@
5743
5913
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
5744
5914
 
5745
5915
  /***/ },
5746
- /* 44 */
5916
+ /* 46 */
5747
5917
  /***/ function(module, exports, __webpack_require__) {
5748
5918
 
5749
5919
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -5761,8 +5931,8 @@
5761
5931
 
5762
5932
  var _prodInvariant = __webpack_require__(7);
5763
5933
 
5764
- var EventConstants = __webpack_require__(40);
5765
- var ReactErrorUtils = __webpack_require__(45);
5934
+ var EventConstants = __webpack_require__(42);
5935
+ var ReactErrorUtils = __webpack_require__(47);
5766
5936
 
5767
5937
  var invariant = __webpack_require__(8);
5768
5938
  var warning = __webpack_require__(11);
@@ -5978,7 +6148,7 @@
5978
6148
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
5979
6149
 
5980
6150
  /***/ },
5981
- /* 45 */
6151
+ /* 47 */
5982
6152
  /***/ function(module, exports, __webpack_require__) {
5983
6153
 
5984
6154
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -6060,7 +6230,7 @@
6060
6230
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
6061
6231
 
6062
6232
  /***/ },
6063
- /* 46 */
6233
+ /* 48 */
6064
6234
  /***/ function(module, exports, __webpack_require__) {
6065
6235
 
6066
6236
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -6124,7 +6294,7 @@
6124
6294
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
6125
6295
 
6126
6296
  /***/ },
6127
- /* 47 */
6297
+ /* 49 */
6128
6298
  /***/ function(module, exports) {
6129
6299
 
6130
6300
  /**
@@ -6160,7 +6330,7 @@
6160
6330
  module.exports = forEachAccumulated;
6161
6331
 
6162
6332
  /***/ },
6163
- /* 48 */
6333
+ /* 50 */
6164
6334
  /***/ function(module, exports) {
6165
6335
 
6166
6336
  /**
@@ -6200,7 +6370,7 @@
6200
6370
  module.exports = ExecutionEnvironment;
6201
6371
 
6202
6372
  /***/ },
6203
- /* 49 */
6373
+ /* 51 */
6204
6374
  /***/ function(module, exports, __webpack_require__) {
6205
6375
 
6206
6376
  /**
@@ -6220,7 +6390,7 @@
6220
6390
 
6221
6391
  var PooledClass = __webpack_require__(6);
6222
6392
 
6223
- var getTextContentAccessor = __webpack_require__(50);
6393
+ var getTextContentAccessor = __webpack_require__(52);
6224
6394
 
6225
6395
  /**
6226
6396
  * This helper class stores information about text content of a target node,
@@ -6300,7 +6470,7 @@
6300
6470
  module.exports = FallbackCompositionState;
6301
6471
 
6302
6472
  /***/ },
6303
- /* 50 */
6473
+ /* 52 */
6304
6474
  /***/ function(module, exports, __webpack_require__) {
6305
6475
 
6306
6476
  /**
@@ -6316,7 +6486,7 @@
6316
6486
 
6317
6487
  'use strict';
6318
6488
 
6319
- var ExecutionEnvironment = __webpack_require__(48);
6489
+ var ExecutionEnvironment = __webpack_require__(50);
6320
6490
 
6321
6491
  var contentKey = null;
6322
6492
 
@@ -6338,7 +6508,7 @@
6338
6508
  module.exports = getTextContentAccessor;
6339
6509
 
6340
6510
  /***/ },
6341
- /* 51 */
6511
+ /* 53 */
6342
6512
  /***/ function(module, exports, __webpack_require__) {
6343
6513
 
6344
6514
  /**
@@ -6354,7 +6524,7 @@
6354
6524
 
6355
6525
  'use strict';
6356
6526
 
6357
- var SyntheticEvent = __webpack_require__(52);
6527
+ var SyntheticEvent = __webpack_require__(54);
6358
6528
 
6359
6529
  /**
6360
6530
  * @interface Event
@@ -6379,7 +6549,7 @@
6379
6549
  module.exports = SyntheticCompositionEvent;
6380
6550
 
6381
6551
  /***/ },
6382
- /* 52 */
6552
+ /* 54 */
6383
6553
  /***/ function(module, exports, __webpack_require__) {
6384
6554
 
6385
6555
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -6645,7 +6815,7 @@
6645
6815
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
6646
6816
 
6647
6817
  /***/ },
6648
- /* 53 */
6818
+ /* 55 */
6649
6819
  /***/ function(module, exports, __webpack_require__) {
6650
6820
 
6651
6821
  /**
@@ -6661,7 +6831,7 @@
6661
6831
 
6662
6832
  'use strict';
6663
6833
 
6664
- var SyntheticEvent = __webpack_require__(52);
6834
+ var SyntheticEvent = __webpack_require__(54);
6665
6835
 
6666
6836
  /**
6667
6837
  * @interface Event
@@ -6687,7 +6857,7 @@
6687
6857
  module.exports = SyntheticInputEvent;
6688
6858
 
6689
6859
  /***/ },
6690
- /* 54 */
6860
+ /* 56 */
6691
6861
  /***/ function(module, exports, __webpack_require__) {
6692
6862
 
6693
6863
  /**
@@ -6703,18 +6873,18 @@
6703
6873
 
6704
6874
  'use strict';
6705
6875
 
6706
- var EventConstants = __webpack_require__(40);
6707
- var EventPluginHub = __webpack_require__(42);
6708
- var EventPropagators = __webpack_require__(41);
6709
- var ExecutionEnvironment = __webpack_require__(48);
6710
- var ReactDOMComponentTree = __webpack_require__(35);
6711
- var ReactUpdates = __webpack_require__(55);
6712
- var SyntheticEvent = __webpack_require__(52);
6876
+ var EventConstants = __webpack_require__(42);
6877
+ var EventPluginHub = __webpack_require__(44);
6878
+ var EventPropagators = __webpack_require__(43);
6879
+ var ExecutionEnvironment = __webpack_require__(50);
6880
+ var ReactDOMComponentTree = __webpack_require__(37);
6881
+ var ReactUpdates = __webpack_require__(57);
6882
+ var SyntheticEvent = __webpack_require__(54);
6713
6883
 
6714
- var getEventTarget = __webpack_require__(68);
6715
- var isEventSupported = __webpack_require__(69);
6716
- var isTextInputElement = __webpack_require__(70);
6717
- var keyOf = __webpack_require__(24);
6884
+ var getEventTarget = __webpack_require__(71);
6885
+ var isEventSupported = __webpack_require__(72);
6886
+ var isTextInputElement = __webpack_require__(73);
6887
+ var keyOf = __webpack_require__(25);
6718
6888
 
6719
6889
  var topLevelTypes = EventConstants.topLevelTypes;
6720
6890
 
@@ -7017,7 +7187,7 @@
7017
7187
  module.exports = ChangeEventPlugin;
7018
7188
 
7019
7189
  /***/ },
7020
- /* 55 */
7190
+ /* 57 */
7021
7191
  /***/ function(module, exports, __webpack_require__) {
7022
7192
 
7023
7193
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -7036,11 +7206,11 @@
7036
7206
  var _prodInvariant = __webpack_require__(7),
7037
7207
  _assign = __webpack_require__(4);
7038
7208
 
7039
- var CallbackQueue = __webpack_require__(56);
7209
+ var CallbackQueue = __webpack_require__(58);
7040
7210
  var PooledClass = __webpack_require__(6);
7041
- var ReactFeatureFlags = __webpack_require__(57);
7042
- var ReactReconciler = __webpack_require__(58);
7043
- var Transaction = __webpack_require__(67);
7211
+ var ReactFeatureFlags = __webpack_require__(59);
7212
+ var ReactReconciler = __webpack_require__(60);
7213
+ var Transaction = __webpack_require__(70);
7044
7214
 
7045
7215
  var invariant = __webpack_require__(8);
7046
7216
 
@@ -7274,7 +7444,7 @@
7274
7444
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
7275
7445
 
7276
7446
  /***/ },
7277
- /* 56 */
7447
+ /* 58 */
7278
7448
  /***/ function(module, exports, __webpack_require__) {
7279
7449
 
7280
7450
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -7386,7 +7556,7 @@
7386
7556
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
7387
7557
 
7388
7558
  /***/ },
7389
- /* 57 */
7559
+ /* 59 */
7390
7560
  /***/ function(module, exports) {
7391
7561
 
7392
7562
  /**
@@ -7413,7 +7583,7 @@
7413
7583
  module.exports = ReactFeatureFlags;
7414
7584
 
7415
7585
  /***/ },
7416
- /* 58 */
7586
+ /* 60 */
7417
7587
  /***/ function(module, exports, __webpack_require__) {
7418
7588
 
7419
7589
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -7429,12 +7599,10 @@
7429
7599
 
7430
7600
  'use strict';
7431
7601
 
7432
- var _prodInvariant = __webpack_require__(7);
7433
-
7434
- var ReactRef = __webpack_require__(59);
7435
- var ReactInstrumentation = __webpack_require__(61);
7602
+ var ReactRef = __webpack_require__(61);
7603
+ var ReactInstrumentation = __webpack_require__(63);
7436
7604
 
7437
- var invariant = __webpack_require__(8);
7605
+ var warning = __webpack_require__(11);
7438
7606
 
7439
7607
  /**
7440
7608
  * Helper to call ReactRef.attachRefs with this composite component, split out
@@ -7571,7 +7739,7 @@
7571
7739
  if (internalInstance._updateBatchNumber !== updateBatchNumber) {
7572
7740
  // The component's enqueued batch number should always be the current
7573
7741
  // batch or the following one.
7574
- !(internalInstance._updateBatchNumber == null || internalInstance._updateBatchNumber === updateBatchNumber + 1) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'performUpdateIfNecessary: Unexpected batch number (current %s, pending %s)', updateBatchNumber, internalInstance._updateBatchNumber) : _prodInvariant('121', updateBatchNumber, internalInstance._updateBatchNumber) : void 0;
7742
+ process.env.NODE_ENV !== 'production' ? warning(internalInstance._updateBatchNumber == null || internalInstance._updateBatchNumber === updateBatchNumber + 1, 'performUpdateIfNecessary: Unexpected batch number (current %s, ' + 'pending %s)', updateBatchNumber, internalInstance._updateBatchNumber) : void 0;
7575
7743
  return;
7576
7744
  }
7577
7745
  if (process.env.NODE_ENV !== 'production') {
@@ -7595,7 +7763,7 @@
7595
7763
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
7596
7764
 
7597
7765
  /***/ },
7598
- /* 59 */
7766
+ /* 61 */
7599
7767
  /***/ function(module, exports, __webpack_require__) {
7600
7768
 
7601
7769
  /**
@@ -7611,7 +7779,7 @@
7611
7779
 
7612
7780
  'use strict';
7613
7781
 
7614
- var ReactOwner = __webpack_require__(60);
7782
+ var ReactOwner = __webpack_require__(62);
7615
7783
 
7616
7784
  var ReactRef = {};
7617
7785
 
@@ -7661,7 +7829,9 @@
7661
7829
 
7662
7830
  return(
7663
7831
  // This has a few false positives w/r/t empty components.
7664
- prevEmpty || nextEmpty || nextElement._owner !== prevElement._owner || nextElement.ref !== prevElement.ref
7832
+ prevEmpty || nextEmpty || nextElement.ref !== prevElement.ref ||
7833
+ // If owner changes but we have an unchanged function ref, don't update refs
7834
+ typeof nextElement.ref === 'string' && nextElement._owner !== prevElement._owner
7665
7835
  );
7666
7836
  };
7667
7837
 
@@ -7678,7 +7848,7 @@
7678
7848
  module.exports = ReactRef;
7679
7849
 
7680
7850
  /***/ },
7681
- /* 60 */
7851
+ /* 62 */
7682
7852
  /***/ function(module, exports, __webpack_require__) {
7683
7853
 
7684
7854
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -7778,7 +7948,7 @@
7778
7948
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
7779
7949
 
7780
7950
  /***/ },
7781
- /* 61 */
7951
+ /* 63 */
7782
7952
  /***/ function(module, exports, __webpack_require__) {
7783
7953
 
7784
7954
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -7797,7 +7967,7 @@
7797
7967
  var debugTool = null;
7798
7968
 
7799
7969
  if (process.env.NODE_ENV !== 'production') {
7800
- var ReactDebugTool = __webpack_require__(62);
7970
+ var ReactDebugTool = __webpack_require__(64);
7801
7971
  debugTool = ReactDebugTool;
7802
7972
  }
7803
7973
 
@@ -7805,7 +7975,7 @@
7805
7975
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
7806
7976
 
7807
7977
  /***/ },
7808
- /* 62 */
7978
+ /* 64 */
7809
7979
  /***/ function(module, exports, __webpack_require__) {
7810
7980
 
7811
7981
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -7821,12 +7991,13 @@
7821
7991
 
7822
7992
  'use strict';
7823
7993
 
7824
- var ReactInvalidSetStateWarningDevTool = __webpack_require__(63);
7825
- var ReactHostOperationHistoryDevtool = __webpack_require__(64);
7826
- var ReactComponentTreeDevtool = __webpack_require__(28);
7827
- var ExecutionEnvironment = __webpack_require__(48);
7994
+ var ReactInvalidSetStateWarningDevTool = __webpack_require__(65);
7995
+ var ReactHostOperationHistoryDevtool = __webpack_require__(66);
7996
+ var ReactComponentTreeDevtool = __webpack_require__(29);
7997
+ var ReactChildrenMutationWarningDevtool = __webpack_require__(67);
7998
+ var ExecutionEnvironment = __webpack_require__(50);
7828
7999
 
7829
- var performanceNow = __webpack_require__(65);
8000
+ var performanceNow = __webpack_require__(68);
7830
8001
  var warning = __webpack_require__(11);
7831
8002
 
7832
8003
  var eventHandlers = [];
@@ -7856,6 +8027,8 @@
7856
8027
  var currentTimerNestedFlushDuration = null;
7857
8028
  var currentTimerType = null;
7858
8029
 
8030
+ var lifeCycleTimerHasWarned = false;
8031
+
7859
8032
  function clearHistory() {
7860
8033
  ReactComponentTreeDevtool.purgeUnmountedComponents();
7861
8034
  ReactHostOperationHistoryDevtool.clearHistory();
@@ -7913,7 +8086,10 @@
7913
8086
  if (currentFlushNesting === 0) {
7914
8087
  return;
7915
8088
  }
7916
- process.env.NODE_ENV !== 'production' ? warning(!currentTimerType, 'There is an internal error in the React performance measurement code. ' + 'Did not expect %s timer to start while %s timer is still in ' + 'progress for %s instance.', timerType, currentTimerType || 'no', debugID === currentTimerDebugID ? 'the same' : 'another') : void 0;
8089
+ if (currentTimerType && !lifeCycleTimerHasWarned) {
8090
+ process.env.NODE_ENV !== 'production' ? warning(false, 'There is an internal error in the React performance measurement code. ' + 'Did not expect %s timer to start while %s timer is still in ' + 'progress for %s instance.', timerType, currentTimerType || 'no', debugID === currentTimerDebugID ? 'the same' : 'another') : void 0;
8091
+ lifeCycleTimerHasWarned = true;
8092
+ }
7917
8093
  currentTimerStartTime = performanceNow();
7918
8094
  currentTimerNestedFlushDuration = 0;
7919
8095
  currentTimerDebugID = debugID;
@@ -7924,7 +8100,10 @@
7924
8100
  if (currentFlushNesting === 0) {
7925
8101
  return;
7926
8102
  }
7927
- process.env.NODE_ENV !== 'production' ? warning(currentTimerType === timerType, 'There is an internal error in the React performance measurement code. ' + 'We did not expect %s timer to stop while %s timer is still in ' + 'progress for %s instance. Please report this as a bug in React.', timerType, currentTimerType || 'no', debugID === currentTimerDebugID ? 'the same' : 'another') : void 0;
8103
+ if (currentTimerType !== timerType && !lifeCycleTimerHasWarned) {
8104
+ process.env.NODE_ENV !== 'production' ? warning(false, 'There is an internal error in the React performance measurement code. ' + 'We did not expect %s timer to stop while %s timer is still in ' + 'progress for %s instance. Please report this as a bug in React.', timerType, currentTimerType || 'no', debugID === currentTimerDebugID ? 'the same' : 'another') : void 0;
8105
+ lifeCycleTimerHasWarned = true;
8106
+ }
7928
8107
  if (isProfiling) {
7929
8108
  currentFlushMeasurements.push({
7930
8109
  timerType: timerType,
@@ -8050,6 +8229,14 @@
8050
8229
  checkDebugID(debugID);
8051
8230
  emitEvent('onHostOperation', debugID, type, payload);
8052
8231
  },
8232
+ onComponentHasMounted: function (debugID) {
8233
+ checkDebugID(debugID);
8234
+ emitEvent('onComponentHasMounted', debugID);
8235
+ },
8236
+ onComponentHasUpdated: function (debugID) {
8237
+ checkDebugID(debugID);
8238
+ emitEvent('onComponentHasUpdated', debugID);
8239
+ },
8053
8240
  onSetState: function () {
8054
8241
  emitEvent('onSetState');
8055
8242
  },
@@ -8105,6 +8292,7 @@
8105
8292
 
8106
8293
  ReactDebugTool.addDevtool(ReactInvalidSetStateWarningDevTool);
8107
8294
  ReactDebugTool.addDevtool(ReactComponentTreeDevtool);
8295
+ ReactDebugTool.addDevtool(ReactChildrenMutationWarningDevtool);
8108
8296
  var url = ExecutionEnvironment.canUseDOM && window.location.href || '';
8109
8297
  if (/[?&]react_perf\b/.test(url)) {
8110
8298
  ReactDebugTool.beginProfiling();
@@ -8114,7 +8302,7 @@
8114
8302
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
8115
8303
 
8116
8304
  /***/ },
8117
- /* 63 */
8305
+ /* 65 */
8118
8306
  /***/ function(module, exports, __webpack_require__) {
8119
8307
 
8120
8308
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -8156,7 +8344,7 @@
8156
8344
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
8157
8345
 
8158
8346
  /***/ },
8159
- /* 64 */
8347
+ /* 66 */
8160
8348
  /***/ function(module, exports) {
8161
8349
 
8162
8350
  /**
@@ -8198,61 +8386,129 @@
8198
8386
  module.exports = ReactHostOperationHistoryDevtool;
8199
8387
 
8200
8388
  /***/ },
8201
- /* 65 */
8389
+ /* 67 */
8202
8390
  /***/ function(module, exports, __webpack_require__) {
8203
8391
 
8204
- 'use strict';
8205
-
8206
- /**
8207
- * Copyright (c) 2013-present, Facebook, Inc.
8392
+ /* WEBPACK VAR INJECTION */(function(process) {/**
8393
+ * Copyright 2013-present, Facebook, Inc.
8208
8394
  * All rights reserved.
8209
8395
  *
8210
8396
  * This source code is licensed under the BSD-style license found in the
8211
8397
  * LICENSE file in the root directory of this source tree. An additional grant
8212
8398
  * of patent rights can be found in the PATENTS file in the same directory.
8213
8399
  *
8214
- * @typechecks
8400
+ * @providesModule ReactChildrenMutationWarningDevtool
8215
8401
  */
8216
8402
 
8217
- var performance = __webpack_require__(66);
8218
-
8219
- var performanceNow;
8220
-
8221
- /**
8222
- * Detect if we can use `window.performance.now()` and gracefully fallback to
8223
- * `Date.now()` if it doesn't exist. We need to support Firefox < 15 for now
8224
- * because of Facebook's testing infrastructure.
8225
- */
8226
- if (performance.now) {
8227
- performanceNow = function performanceNow() {
8228
- return performance.now();
8229
- };
8230
- } else {
8231
- performanceNow = function performanceNow() {
8232
- return Date.now();
8233
- };
8234
- }
8403
+ 'use strict';
8235
8404
 
8236
- module.exports = performanceNow;
8405
+ var ReactComponentTreeDevtool = __webpack_require__(29);
8237
8406
 
8238
- /***/ },
8239
- /* 66 */
8240
- /***/ function(module, exports, __webpack_require__) {
8407
+ var warning = __webpack_require__(11);
8241
8408
 
8242
- /**
8243
- * Copyright (c) 2013-present, Facebook, Inc.
8244
- * All rights reserved.
8245
- *
8246
- * This source code is licensed under the BSD-style license found in the
8247
- * LICENSE file in the root directory of this source tree. An additional grant
8248
- * of patent rights can be found in the PATENTS file in the same directory.
8249
- *
8250
- * @typechecks
8251
- */
8409
+ var elements = {};
8410
+
8411
+ function handleElement(debugID, element) {
8412
+ if (element == null) {
8413
+ return;
8414
+ }
8415
+ if (element._shadowChildren === undefined) {
8416
+ return;
8417
+ }
8418
+ if (element._shadowChildren === element.props.children) {
8419
+ return;
8420
+ }
8421
+ var isMutated = false;
8422
+ if (Array.isArray(element._shadowChildren)) {
8423
+ if (element._shadowChildren.length === element.props.children.length) {
8424
+ for (var i = 0; i < element._shadowChildren.length; i++) {
8425
+ if (element._shadowChildren[i] !== element.props.children[i]) {
8426
+ isMutated = true;
8427
+ }
8428
+ }
8429
+ } else {
8430
+ isMutated = true;
8431
+ }
8432
+ }
8433
+ process.env.NODE_ENV !== 'production' ? warning(Array.isArray(element._shadowChildren) && !isMutated, 'Component\'s children should not be mutated.%s', ReactComponentTreeDevtool.getStackAddendumByID(debugID)) : void 0;
8434
+ }
8435
+
8436
+ var ReactDOMUnknownPropertyDevtool = {
8437
+ onBeforeMountComponent: function (debugID, element) {
8438
+ elements[debugID] = element;
8439
+ },
8440
+ onBeforeUpdateComponent: function (debugID, element) {
8441
+ elements[debugID] = element;
8442
+ },
8443
+ onComponentHasMounted: function (debugID) {
8444
+ handleElement(debugID, elements[debugID]);
8445
+ delete elements[debugID];
8446
+ },
8447
+ onComponentHasUpdated: function (debugID) {
8448
+ handleElement(debugID, elements[debugID]);
8449
+ delete elements[debugID];
8450
+ }
8451
+ };
8452
+
8453
+ module.exports = ReactDOMUnknownPropertyDevtool;
8454
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
8455
+
8456
+ /***/ },
8457
+ /* 68 */
8458
+ /***/ function(module, exports, __webpack_require__) {
8459
+
8460
+ 'use strict';
8461
+
8462
+ /**
8463
+ * Copyright (c) 2013-present, Facebook, Inc.
8464
+ * All rights reserved.
8465
+ *
8466
+ * This source code is licensed under the BSD-style license found in the
8467
+ * LICENSE file in the root directory of this source tree. An additional grant
8468
+ * of patent rights can be found in the PATENTS file in the same directory.
8469
+ *
8470
+ * @typechecks
8471
+ */
8472
+
8473
+ var performance = __webpack_require__(69);
8474
+
8475
+ var performanceNow;
8476
+
8477
+ /**
8478
+ * Detect if we can use `window.performance.now()` and gracefully fallback to
8479
+ * `Date.now()` if it doesn't exist. We need to support Firefox < 15 for now
8480
+ * because of Facebook's testing infrastructure.
8481
+ */
8482
+ if (performance.now) {
8483
+ performanceNow = function performanceNow() {
8484
+ return performance.now();
8485
+ };
8486
+ } else {
8487
+ performanceNow = function performanceNow() {
8488
+ return Date.now();
8489
+ };
8490
+ }
8491
+
8492
+ module.exports = performanceNow;
8493
+
8494
+ /***/ },
8495
+ /* 69 */
8496
+ /***/ function(module, exports, __webpack_require__) {
8497
+
8498
+ /**
8499
+ * Copyright (c) 2013-present, Facebook, Inc.
8500
+ * All rights reserved.
8501
+ *
8502
+ * This source code is licensed under the BSD-style license found in the
8503
+ * LICENSE file in the root directory of this source tree. An additional grant
8504
+ * of patent rights can be found in the PATENTS file in the same directory.
8505
+ *
8506
+ * @typechecks
8507
+ */
8252
8508
 
8253
8509
  'use strict';
8254
8510
 
8255
- var ExecutionEnvironment = __webpack_require__(48);
8511
+ var ExecutionEnvironment = __webpack_require__(50);
8256
8512
 
8257
8513
  var performance;
8258
8514
 
@@ -8263,7 +8519,7 @@
8263
8519
  module.exports = performance || {};
8264
8520
 
8265
8521
  /***/ },
8266
- /* 67 */
8522
+ /* 70 */
8267
8523
  /***/ function(module, exports, __webpack_require__) {
8268
8524
 
8269
8525
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -8502,7 +8758,7 @@
8502
8758
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
8503
8759
 
8504
8760
  /***/ },
8505
- /* 68 */
8761
+ /* 71 */
8506
8762
  /***/ function(module, exports) {
8507
8763
 
8508
8764
  /**
@@ -8542,7 +8798,7 @@
8542
8798
  module.exports = getEventTarget;
8543
8799
 
8544
8800
  /***/ },
8545
- /* 69 */
8801
+ /* 72 */
8546
8802
  /***/ function(module, exports, __webpack_require__) {
8547
8803
 
8548
8804
  /**
@@ -8558,7 +8814,7 @@
8558
8814
 
8559
8815
  'use strict';
8560
8816
 
8561
- var ExecutionEnvironment = __webpack_require__(48);
8817
+ var ExecutionEnvironment = __webpack_require__(50);
8562
8818
 
8563
8819
  var useHasFeature;
8564
8820
  if (ExecutionEnvironment.canUseDOM) {
@@ -8607,7 +8863,7 @@
8607
8863
  module.exports = isEventSupported;
8608
8864
 
8609
8865
  /***/ },
8610
- /* 70 */
8866
+ /* 73 */
8611
8867
  /***/ function(module, exports) {
8612
8868
 
8613
8869
  /**
@@ -8663,7 +8919,7 @@
8663
8919
  module.exports = isTextInputElement;
8664
8920
 
8665
8921
  /***/ },
8666
- /* 71 */
8922
+ /* 74 */
8667
8923
  /***/ function(module, exports, __webpack_require__) {
8668
8924
 
8669
8925
  /**
@@ -8679,7 +8935,7 @@
8679
8935
 
8680
8936
  'use strict';
8681
8937
 
8682
- var keyOf = __webpack_require__(24);
8938
+ var keyOf = __webpack_require__(25);
8683
8939
 
8684
8940
  /**
8685
8941
  * Module that is injectable into `EventPluginHub`, that specifies a
@@ -8695,7 +8951,7 @@
8695
8951
  module.exports = DefaultEventPluginOrder;
8696
8952
 
8697
8953
  /***/ },
8698
- /* 72 */
8954
+ /* 75 */
8699
8955
  /***/ function(module, exports, __webpack_require__) {
8700
8956
 
8701
8957
  /**
@@ -8711,12 +8967,12 @@
8711
8967
 
8712
8968
  'use strict';
8713
8969
 
8714
- var EventConstants = __webpack_require__(40);
8715
- var EventPropagators = __webpack_require__(41);
8716
- var ReactDOMComponentTree = __webpack_require__(35);
8717
- var SyntheticMouseEvent = __webpack_require__(73);
8970
+ var EventConstants = __webpack_require__(42);
8971
+ var EventPropagators = __webpack_require__(43);
8972
+ var ReactDOMComponentTree = __webpack_require__(37);
8973
+ var SyntheticMouseEvent = __webpack_require__(76);
8718
8974
 
8719
- var keyOf = __webpack_require__(24);
8975
+ var keyOf = __webpack_require__(25);
8720
8976
 
8721
8977
  var topLevelTypes = EventConstants.topLevelTypes;
8722
8978
 
@@ -8805,7 +9061,7 @@
8805
9061
  module.exports = EnterLeaveEventPlugin;
8806
9062
 
8807
9063
  /***/ },
8808
- /* 73 */
9064
+ /* 76 */
8809
9065
  /***/ function(module, exports, __webpack_require__) {
8810
9066
 
8811
9067
  /**
@@ -8821,10 +9077,10 @@
8821
9077
 
8822
9078
  'use strict';
8823
9079
 
8824
- var SyntheticUIEvent = __webpack_require__(74);
8825
- var ViewportMetrics = __webpack_require__(75);
9080
+ var SyntheticUIEvent = __webpack_require__(77);
9081
+ var ViewportMetrics = __webpack_require__(78);
8826
9082
 
8827
- var getEventModifierState = __webpack_require__(76);
9083
+ var getEventModifierState = __webpack_require__(79);
8828
9084
 
8829
9085
  /**
8830
9086
  * @interface MouseEvent
@@ -8882,7 +9138,7 @@
8882
9138
  module.exports = SyntheticMouseEvent;
8883
9139
 
8884
9140
  /***/ },
8885
- /* 74 */
9141
+ /* 77 */
8886
9142
  /***/ function(module, exports, __webpack_require__) {
8887
9143
 
8888
9144
  /**
@@ -8898,9 +9154,9 @@
8898
9154
 
8899
9155
  'use strict';
8900
9156
 
8901
- var SyntheticEvent = __webpack_require__(52);
9157
+ var SyntheticEvent = __webpack_require__(54);
8902
9158
 
8903
- var getEventTarget = __webpack_require__(68);
9159
+ var getEventTarget = __webpack_require__(71);
8904
9160
 
8905
9161
  /**
8906
9162
  * @interface UIEvent
@@ -8946,7 +9202,7 @@
8946
9202
  module.exports = SyntheticUIEvent;
8947
9203
 
8948
9204
  /***/ },
8949
- /* 75 */
9205
+ /* 78 */
8950
9206
  /***/ function(module, exports) {
8951
9207
 
8952
9208
  /**
@@ -8978,7 +9234,7 @@
8978
9234
  module.exports = ViewportMetrics;
8979
9235
 
8980
9236
  /***/ },
8981
- /* 76 */
9237
+ /* 79 */
8982
9238
  /***/ function(module, exports) {
8983
9239
 
8984
9240
  /**
@@ -9026,7 +9282,7 @@
9026
9282
  module.exports = getEventModifierState;
9027
9283
 
9028
9284
  /***/ },
9029
- /* 77 */
9285
+ /* 80 */
9030
9286
  /***/ function(module, exports, __webpack_require__) {
9031
9287
 
9032
9288
  /**
@@ -9042,7 +9298,7 @@
9042
9298
 
9043
9299
  'use strict';
9044
9300
 
9045
- var DOMProperty = __webpack_require__(36);
9301
+ var DOMProperty = __webpack_require__(38);
9046
9302
 
9047
9303
  var MUST_USE_PROPERTY = DOMProperty.injection.MUST_USE_PROPERTY;
9048
9304
  var HAS_BOOLEAN_VALUE = DOMProperty.injection.HAS_BOOLEAN_VALUE;
@@ -9148,6 +9404,7 @@
9148
9404
  profile: 0,
9149
9405
  radioGroup: 0,
9150
9406
  readOnly: HAS_BOOLEAN_VALUE,
9407
+ referrerPolicy: 0,
9151
9408
  rel: 0,
9152
9409
  required: HAS_BOOLEAN_VALUE,
9153
9410
  reversed: HAS_BOOLEAN_VALUE,
@@ -9239,7 +9496,7 @@
9239
9496
  module.exports = HTMLDOMPropertyConfig;
9240
9497
 
9241
9498
  /***/ },
9242
- /* 78 */
9499
+ /* 81 */
9243
9500
  /***/ function(module, exports, __webpack_require__) {
9244
9501
 
9245
9502
  /**
@@ -9255,8 +9512,8 @@
9255
9512
 
9256
9513
  'use strict';
9257
9514
 
9258
- var DOMChildrenOperations = __webpack_require__(79);
9259
- var ReactDOMIDOperations = __webpack_require__(91);
9515
+ var DOMChildrenOperations = __webpack_require__(82);
9516
+ var ReactDOMIDOperations = __webpack_require__(94);
9260
9517
 
9261
9518
  /**
9262
9519
  * Abstracts away all functionality of the reconciler that requires knowledge of
@@ -9283,7 +9540,7 @@
9283
9540
  module.exports = ReactComponentBrowserEnvironment;
9284
9541
 
9285
9542
  /***/ },
9286
- /* 79 */
9543
+ /* 82 */
9287
9544
  /***/ function(module, exports, __webpack_require__) {
9288
9545
 
9289
9546
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -9299,15 +9556,15 @@
9299
9556
 
9300
9557
  'use strict';
9301
9558
 
9302
- var DOMLazyTree = __webpack_require__(80);
9303
- var Danger = __webpack_require__(86);
9304
- var ReactMultiChildUpdateTypes = __webpack_require__(90);
9305
- var ReactDOMComponentTree = __webpack_require__(35);
9306
- var ReactInstrumentation = __webpack_require__(61);
9559
+ var DOMLazyTree = __webpack_require__(83);
9560
+ var Danger = __webpack_require__(89);
9561
+ var ReactMultiChildUpdateTypes = __webpack_require__(93);
9562
+ var ReactDOMComponentTree = __webpack_require__(37);
9563
+ var ReactInstrumentation = __webpack_require__(63);
9307
9564
 
9308
- var createMicrosoftUnsafeLocalFunction = __webpack_require__(83);
9309
- var setInnerHTML = __webpack_require__(82);
9310
- var setTextContent = __webpack_require__(84);
9565
+ var createMicrosoftUnsafeLocalFunction = __webpack_require__(86);
9566
+ var setInnerHTML = __webpack_require__(85);
9567
+ var setTextContent = __webpack_require__(87);
9311
9568
 
9312
9569
  function getNodeAfter(parentNode, node) {
9313
9570
  // Special case for text components, which return [open, close] comments
@@ -9483,7 +9740,7 @@
9483
9740
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
9484
9741
 
9485
9742
  /***/ },
9486
- /* 80 */
9743
+ /* 83 */
9487
9744
  /***/ function(module, exports, __webpack_require__) {
9488
9745
 
9489
9746
  /**
@@ -9499,11 +9756,11 @@
9499
9756
 
9500
9757
  'use strict';
9501
9758
 
9502
- var DOMNamespaces = __webpack_require__(81);
9503
- var setInnerHTML = __webpack_require__(82);
9759
+ var DOMNamespaces = __webpack_require__(84);
9760
+ var setInnerHTML = __webpack_require__(85);
9504
9761
 
9505
- var createMicrosoftUnsafeLocalFunction = __webpack_require__(83);
9506
- var setTextContent = __webpack_require__(84);
9762
+ var createMicrosoftUnsafeLocalFunction = __webpack_require__(86);
9763
+ var setTextContent = __webpack_require__(87);
9507
9764
 
9508
9765
  var ELEMENT_NODE_TYPE = 1;
9509
9766
  var DOCUMENT_FRAGMENT_NODE_TYPE = 11;
@@ -9606,7 +9863,7 @@
9606
9863
  module.exports = DOMLazyTree;
9607
9864
 
9608
9865
  /***/ },
9609
- /* 81 */
9866
+ /* 84 */
9610
9867
  /***/ function(module, exports) {
9611
9868
 
9612
9869
  /**
@@ -9631,7 +9888,7 @@
9631
9888
  module.exports = DOMNamespaces;
9632
9889
 
9633
9890
  /***/ },
9634
- /* 82 */
9891
+ /* 85 */
9635
9892
  /***/ function(module, exports, __webpack_require__) {
9636
9893
 
9637
9894
  /**
@@ -9647,13 +9904,13 @@
9647
9904
 
9648
9905
  'use strict';
9649
9906
 
9650
- var ExecutionEnvironment = __webpack_require__(48);
9651
- var DOMNamespaces = __webpack_require__(81);
9907
+ var ExecutionEnvironment = __webpack_require__(50);
9908
+ var DOMNamespaces = __webpack_require__(84);
9652
9909
 
9653
9910
  var WHITESPACE_TEST = /^[ \r\n\t\f]/;
9654
9911
  var NONVISIBLE_TEST = /<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/;
9655
9912
 
9656
- var createMicrosoftUnsafeLocalFunction = __webpack_require__(83);
9913
+ var createMicrosoftUnsafeLocalFunction = __webpack_require__(86);
9657
9914
 
9658
9915
  // SVG temp container for IE lacking innerHTML
9659
9916
  var reusableSVGContainer;
@@ -9734,7 +9991,7 @@
9734
9991
  module.exports = setInnerHTML;
9735
9992
 
9736
9993
  /***/ },
9737
- /* 83 */
9994
+ /* 86 */
9738
9995
  /***/ function(module, exports) {
9739
9996
 
9740
9997
  /**
@@ -9771,7 +10028,7 @@
9771
10028
  module.exports = createMicrosoftUnsafeLocalFunction;
9772
10029
 
9773
10030
  /***/ },
9774
- /* 84 */
10031
+ /* 87 */
9775
10032
  /***/ function(module, exports, __webpack_require__) {
9776
10033
 
9777
10034
  /**
@@ -9787,9 +10044,9 @@
9787
10044
 
9788
10045
  'use strict';
9789
10046
 
9790
- var ExecutionEnvironment = __webpack_require__(48);
9791
- var escapeTextContentForBrowser = __webpack_require__(85);
9792
- var setInnerHTML = __webpack_require__(82);
10047
+ var ExecutionEnvironment = __webpack_require__(50);
10048
+ var escapeTextContentForBrowser = __webpack_require__(88);
10049
+ var setInnerHTML = __webpack_require__(85);
9793
10050
 
9794
10051
  /**
9795
10052
  * Set the textContent property of a node, ensuring that whitespace is preserved
@@ -9824,7 +10081,7 @@
9824
10081
  module.exports = setTextContent;
9825
10082
 
9826
10083
  /***/ },
9827
- /* 85 */
10084
+ /* 88 */
9828
10085
  /***/ function(module, exports) {
9829
10086
 
9830
10087
  /**
@@ -9951,7 +10208,7 @@
9951
10208
  module.exports = escapeTextContentForBrowser;
9952
10209
 
9953
10210
  /***/ },
9954
- /* 86 */
10211
+ /* 89 */
9955
10212
  /***/ function(module, exports, __webpack_require__) {
9956
10213
 
9957
10214
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -9969,10 +10226,10 @@
9969
10226
 
9970
10227
  var _prodInvariant = __webpack_require__(7);
9971
10228
 
9972
- var DOMLazyTree = __webpack_require__(80);
9973
- var ExecutionEnvironment = __webpack_require__(48);
10229
+ var DOMLazyTree = __webpack_require__(83);
10230
+ var ExecutionEnvironment = __webpack_require__(50);
9974
10231
 
9975
- var createNodesFromMarkup = __webpack_require__(87);
10232
+ var createNodesFromMarkup = __webpack_require__(90);
9976
10233
  var emptyFunction = __webpack_require__(12);
9977
10234
  var invariant = __webpack_require__(8);
9978
10235
 
@@ -10005,7 +10262,7 @@
10005
10262
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
10006
10263
 
10007
10264
  /***/ },
10008
- /* 87 */
10265
+ /* 90 */
10009
10266
  /***/ function(module, exports, __webpack_require__) {
10010
10267
 
10011
10268
  /* WEBPACK VAR INJECTION */(function(process) {'use strict';
@@ -10023,10 +10280,10 @@
10023
10280
 
10024
10281
  /*eslint-disable fb-www/unsafe-html*/
10025
10282
 
10026
- var ExecutionEnvironment = __webpack_require__(48);
10283
+ var ExecutionEnvironment = __webpack_require__(50);
10027
10284
 
10028
- var createArrayFromMixed = __webpack_require__(88);
10029
- var getMarkupWrap = __webpack_require__(89);
10285
+ var createArrayFromMixed = __webpack_require__(91);
10286
+ var getMarkupWrap = __webpack_require__(92);
10030
10287
  var invariant = __webpack_require__(8);
10031
10288
 
10032
10289
  /**
@@ -10094,7 +10351,7 @@
10094
10351
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
10095
10352
 
10096
10353
  /***/ },
10097
- /* 88 */
10354
+ /* 91 */
10098
10355
  /***/ function(module, exports, __webpack_require__) {
10099
10356
 
10100
10357
  /* WEBPACK VAR INJECTION */(function(process) {'use strict';
@@ -10226,7 +10483,7 @@
10226
10483
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
10227
10484
 
10228
10485
  /***/ },
10229
- /* 89 */
10486
+ /* 92 */
10230
10487
  /***/ function(module, exports, __webpack_require__) {
10231
10488
 
10232
10489
  /* WEBPACK VAR INJECTION */(function(process) {'use strict';
@@ -10243,7 +10500,7 @@
10243
10500
 
10244
10501
  /*eslint-disable fb-www/unsafe-html */
10245
10502
 
10246
- var ExecutionEnvironment = __webpack_require__(48);
10503
+ var ExecutionEnvironment = __webpack_require__(50);
10247
10504
 
10248
10505
  var invariant = __webpack_require__(8);
10249
10506
 
@@ -10326,7 +10583,7 @@
10326
10583
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
10327
10584
 
10328
10585
  /***/ },
10329
- /* 90 */
10586
+ /* 93 */
10330
10587
  /***/ function(module, exports, __webpack_require__) {
10331
10588
 
10332
10589
  /**
@@ -10342,7 +10599,7 @@
10342
10599
 
10343
10600
  'use strict';
10344
10601
 
10345
- var keyMirror = __webpack_require__(22);
10602
+ var keyMirror = __webpack_require__(23);
10346
10603
 
10347
10604
  /**
10348
10605
  * When a component's children are updated, a series of update configuration
@@ -10363,7 +10620,7 @@
10363
10620
  module.exports = ReactMultiChildUpdateTypes;
10364
10621
 
10365
10622
  /***/ },
10366
- /* 91 */
10623
+ /* 94 */
10367
10624
  /***/ function(module, exports, __webpack_require__) {
10368
10625
 
10369
10626
  /**
@@ -10379,8 +10636,8 @@
10379
10636
 
10380
10637
  'use strict';
10381
10638
 
10382
- var DOMChildrenOperations = __webpack_require__(79);
10383
- var ReactDOMComponentTree = __webpack_require__(35);
10639
+ var DOMChildrenOperations = __webpack_require__(82);
10640
+ var ReactDOMComponentTree = __webpack_require__(37);
10384
10641
 
10385
10642
  /**
10386
10643
  * Operations used to process updates to DOM nodes.
@@ -10402,7 +10659,7 @@
10402
10659
  module.exports = ReactDOMIDOperations;
10403
10660
 
10404
10661
  /***/ },
10405
- /* 92 */
10662
+ /* 95 */
10406
10663
  /***/ function(module, exports, __webpack_require__) {
10407
10664
 
10408
10665
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -10423,35 +10680,35 @@
10423
10680
  var _prodInvariant = __webpack_require__(7),
10424
10681
  _assign = __webpack_require__(4);
10425
10682
 
10426
- var AutoFocusUtils = __webpack_require__(93);
10427
- var CSSPropertyOperations = __webpack_require__(95);
10428
- var DOMLazyTree = __webpack_require__(80);
10429
- var DOMNamespaces = __webpack_require__(81);
10430
- var DOMProperty = __webpack_require__(36);
10431
- var DOMPropertyOperations = __webpack_require__(103);
10432
- var EventConstants = __webpack_require__(40);
10433
- var EventPluginHub = __webpack_require__(42);
10434
- var EventPluginRegistry = __webpack_require__(43);
10435
- var ReactBrowserEventEmitter = __webpack_require__(109);
10436
- var ReactComponentBrowserEnvironment = __webpack_require__(78);
10437
- var ReactDOMButton = __webpack_require__(112);
10438
- var ReactDOMComponentFlags = __webpack_require__(37);
10439
- var ReactDOMComponentTree = __webpack_require__(35);
10440
- var ReactDOMInput = __webpack_require__(114);
10441
- var ReactDOMOption = __webpack_require__(116);
10442
- var ReactDOMSelect = __webpack_require__(117);
10443
- var ReactDOMTextarea = __webpack_require__(118);
10444
- var ReactInstrumentation = __webpack_require__(61);
10445
- var ReactMultiChild = __webpack_require__(119);
10446
- var ReactServerRenderingTransaction = __webpack_require__(130);
10683
+ var AutoFocusUtils = __webpack_require__(96);
10684
+ var CSSPropertyOperations = __webpack_require__(98);
10685
+ var DOMLazyTree = __webpack_require__(83);
10686
+ var DOMNamespaces = __webpack_require__(84);
10687
+ var DOMProperty = __webpack_require__(38);
10688
+ var DOMPropertyOperations = __webpack_require__(106);
10689
+ var EventConstants = __webpack_require__(42);
10690
+ var EventPluginHub = __webpack_require__(44);
10691
+ var EventPluginRegistry = __webpack_require__(45);
10692
+ var ReactBrowserEventEmitter = __webpack_require__(112);
10693
+ var ReactComponentBrowserEnvironment = __webpack_require__(81);
10694
+ var ReactDOMButton = __webpack_require__(115);
10695
+ var ReactDOMComponentFlags = __webpack_require__(39);
10696
+ var ReactDOMComponentTree = __webpack_require__(37);
10697
+ var ReactDOMInput = __webpack_require__(117);
10698
+ var ReactDOMOption = __webpack_require__(119);
10699
+ var ReactDOMSelect = __webpack_require__(120);
10700
+ var ReactDOMTextarea = __webpack_require__(121);
10701
+ var ReactInstrumentation = __webpack_require__(63);
10702
+ var ReactMultiChild = __webpack_require__(122);
10703
+ var ReactServerRenderingTransaction = __webpack_require__(134);
10447
10704
 
10448
10705
  var emptyFunction = __webpack_require__(12);
10449
- var escapeTextContentForBrowser = __webpack_require__(85);
10706
+ var escapeTextContentForBrowser = __webpack_require__(88);
10450
10707
  var invariant = __webpack_require__(8);
10451
- var isEventSupported = __webpack_require__(69);
10452
- var keyOf = __webpack_require__(24);
10453
- var shallowEqual = __webpack_require__(133);
10454
- var validateDOMNesting = __webpack_require__(134);
10708
+ var isEventSupported = __webpack_require__(72);
10709
+ var keyOf = __webpack_require__(25);
10710
+ var shallowEqual = __webpack_require__(129);
10711
+ var validateDOMNesting = __webpack_require__(137);
10455
10712
  var warning = __webpack_require__(11);
10456
10713
 
10457
10714
  var Flags = ReactDOMComponentFlags;
@@ -10818,6 +11075,8 @@
10818
11075
  * @return {string} The computed markup.
10819
11076
  */
10820
11077
  mountComponent: function (transaction, hostParent, hostContainerInfo, context) {
11078
+ var _this = this;
11079
+
10821
11080
  this._rootNodeID = globalIdCounter++;
10822
11081
  this._domID = hostContainerInfo._idCounter++;
10823
11082
  this._hostParent = hostParent;
@@ -10973,6 +11232,15 @@
10973
11232
  break;
10974
11233
  }
10975
11234
 
11235
+ if (process.env.NODE_ENV !== 'production') {
11236
+ if (this._debugID) {
11237
+ var callback = function () {
11238
+ return ReactInstrumentation.debugTool.onComponentHasMounted(_this._debugID);
11239
+ };
11240
+ transaction.getReactMountReady().enqueue(callback, this);
11241
+ }
11242
+ }
11243
+
10976
11244
  return mountImage;
10977
11245
  },
10978
11246
 
@@ -11141,6 +11409,8 @@
11141
11409
  * @overridable
11142
11410
  */
11143
11411
  updateComponent: function (transaction, prevElement, nextElement, context) {
11412
+ var _this2 = this;
11413
+
11144
11414
  var lastProps = prevElement.props;
11145
11415
  var nextProps = this._currentElement.props;
11146
11416
 
@@ -11178,6 +11448,15 @@
11178
11448
  // reconciliation
11179
11449
  transaction.getReactMountReady().enqueue(postUpdateSelectWrapper, this);
11180
11450
  }
11451
+
11452
+ if (process.env.NODE_ENV !== 'production') {
11453
+ if (this._debugID) {
11454
+ var callback = function () {
11455
+ return ReactInstrumentation.debugTool.onComponentHasUpdated(_this2._debugID);
11456
+ };
11457
+ transaction.getReactMountReady().enqueue(callback, this);
11458
+ }
11459
+ }
11181
11460
  },
11182
11461
 
11183
11462
  /**
@@ -11411,7 +11690,7 @@
11411
11690
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
11412
11691
 
11413
11692
  /***/ },
11414
- /* 93 */
11693
+ /* 96 */
11415
11694
  /***/ function(module, exports, __webpack_require__) {
11416
11695
 
11417
11696
  /**
@@ -11427,9 +11706,9 @@
11427
11706
 
11428
11707
  'use strict';
11429
11708
 
11430
- var ReactDOMComponentTree = __webpack_require__(35);
11709
+ var ReactDOMComponentTree = __webpack_require__(37);
11431
11710
 
11432
- var focusNode = __webpack_require__(94);
11711
+ var focusNode = __webpack_require__(97);
11433
11712
 
11434
11713
  var AutoFocusUtils = {
11435
11714
  focusDOMComponent: function () {
@@ -11440,7 +11719,7 @@
11440
11719
  module.exports = AutoFocusUtils;
11441
11720
 
11442
11721
  /***/ },
11443
- /* 94 */
11722
+ /* 97 */
11444
11723
  /***/ function(module, exports) {
11445
11724
 
11446
11725
  /**
@@ -11471,7 +11750,7 @@
11471
11750
  module.exports = focusNode;
11472
11751
 
11473
11752
  /***/ },
11474
- /* 95 */
11753
+ /* 98 */
11475
11754
  /***/ function(module, exports, __webpack_require__) {
11476
11755
 
11477
11756
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -11487,14 +11766,14 @@
11487
11766
 
11488
11767
  'use strict';
11489
11768
 
11490
- var CSSProperty = __webpack_require__(96);
11491
- var ExecutionEnvironment = __webpack_require__(48);
11492
- var ReactInstrumentation = __webpack_require__(61);
11769
+ var CSSProperty = __webpack_require__(99);
11770
+ var ExecutionEnvironment = __webpack_require__(50);
11771
+ var ReactInstrumentation = __webpack_require__(63);
11493
11772
 
11494
- var camelizeStyleName = __webpack_require__(97);
11495
- var dangerousStyleValue = __webpack_require__(99);
11496
- var hyphenateStyleName = __webpack_require__(100);
11497
- var memoizeStringOnly = __webpack_require__(102);
11773
+ var camelizeStyleName = __webpack_require__(100);
11774
+ var dangerousStyleValue = __webpack_require__(102);
11775
+ var hyphenateStyleName = __webpack_require__(103);
11776
+ var memoizeStringOnly = __webpack_require__(105);
11498
11777
  var warning = __webpack_require__(11);
11499
11778
 
11500
11779
  var processStyleName = memoizeStringOnly(function (styleName) {
@@ -11682,7 +11961,7 @@
11682
11961
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
11683
11962
 
11684
11963
  /***/ },
11685
- /* 96 */
11964
+ /* 99 */
11686
11965
  /***/ function(module, exports) {
11687
11966
 
11688
11967
  /**
@@ -11835,7 +12114,7 @@
11835
12114
  module.exports = CSSProperty;
11836
12115
 
11837
12116
  /***/ },
11838
- /* 97 */
12117
+ /* 100 */
11839
12118
  /***/ function(module, exports, __webpack_require__) {
11840
12119
 
11841
12120
  /**
@@ -11851,7 +12130,7 @@
11851
12130
 
11852
12131
  'use strict';
11853
12132
 
11854
- var camelize = __webpack_require__(98);
12133
+ var camelize = __webpack_require__(101);
11855
12134
 
11856
12135
  var msPattern = /^-ms-/;
11857
12136
 
@@ -11879,7 +12158,7 @@
11879
12158
  module.exports = camelizeStyleName;
11880
12159
 
11881
12160
  /***/ },
11882
- /* 98 */
12161
+ /* 101 */
11883
12162
  /***/ function(module, exports) {
11884
12163
 
11885
12164
  "use strict";
@@ -11915,7 +12194,7 @@
11915
12194
  module.exports = camelize;
11916
12195
 
11917
12196
  /***/ },
11918
- /* 99 */
12197
+ /* 102 */
11919
12198
  /***/ function(module, exports, __webpack_require__) {
11920
12199
 
11921
12200
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -11931,7 +12210,7 @@
11931
12210
 
11932
12211
  'use strict';
11933
12212
 
11934
- var CSSProperty = __webpack_require__(96);
12213
+ var CSSProperty = __webpack_require__(99);
11935
12214
  var warning = __webpack_require__(11);
11936
12215
 
11937
12216
  var isUnitlessNumber = CSSProperty.isUnitlessNumber;
@@ -12000,7 +12279,7 @@
12000
12279
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
12001
12280
 
12002
12281
  /***/ },
12003
- /* 100 */
12282
+ /* 103 */
12004
12283
  /***/ function(module, exports, __webpack_require__) {
12005
12284
 
12006
12285
  /**
@@ -12016,7 +12295,7 @@
12016
12295
 
12017
12296
  'use strict';
12018
12297
 
12019
- var hyphenate = __webpack_require__(101);
12298
+ var hyphenate = __webpack_require__(104);
12020
12299
 
12021
12300
  var msPattern = /^ms-/;
12022
12301
 
@@ -12043,7 +12322,7 @@
12043
12322
  module.exports = hyphenateStyleName;
12044
12323
 
12045
12324
  /***/ },
12046
- /* 101 */
12325
+ /* 104 */
12047
12326
  /***/ function(module, exports) {
12048
12327
 
12049
12328
  'use strict';
@@ -12080,7 +12359,7 @@
12080
12359
  module.exports = hyphenate;
12081
12360
 
12082
12361
  /***/ },
12083
- /* 102 */
12362
+ /* 105 */
12084
12363
  /***/ function(module, exports) {
12085
12364
 
12086
12365
  /**
@@ -12114,7 +12393,7 @@
12114
12393
  module.exports = memoizeStringOnly;
12115
12394
 
12116
12395
  /***/ },
12117
- /* 103 */
12396
+ /* 106 */
12118
12397
  /***/ function(module, exports, __webpack_require__) {
12119
12398
 
12120
12399
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -12130,12 +12409,12 @@
12130
12409
 
12131
12410
  'use strict';
12132
12411
 
12133
- var DOMProperty = __webpack_require__(36);
12134
- var ReactDOMComponentTree = __webpack_require__(35);
12135
- var ReactDOMInstrumentation = __webpack_require__(104);
12136
- var ReactInstrumentation = __webpack_require__(61);
12412
+ var DOMProperty = __webpack_require__(38);
12413
+ var ReactDOMComponentTree = __webpack_require__(37);
12414
+ var ReactDOMInstrumentation = __webpack_require__(107);
12415
+ var ReactInstrumentation = __webpack_require__(63);
12137
12416
 
12138
- var quoteAttributeValueForBrowser = __webpack_require__(108);
12417
+ var quoteAttributeValueForBrowser = __webpack_require__(111);
12139
12418
  var warning = __webpack_require__(11);
12140
12419
 
12141
12420
  var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + DOMProperty.ATTRIBUTE_NAME_START_CHAR + '][' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');
@@ -12348,7 +12627,7 @@
12348
12627
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
12349
12628
 
12350
12629
  /***/ },
12351
- /* 104 */
12630
+ /* 107 */
12352
12631
  /***/ function(module, exports, __webpack_require__) {
12353
12632
 
12354
12633
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -12367,7 +12646,7 @@
12367
12646
  var debugTool = null;
12368
12647
 
12369
12648
  if (process.env.NODE_ENV !== 'production') {
12370
- var ReactDOMDebugTool = __webpack_require__(105);
12649
+ var ReactDOMDebugTool = __webpack_require__(108);
12371
12650
  debugTool = ReactDOMDebugTool;
12372
12651
  }
12373
12652
 
@@ -12375,7 +12654,7 @@
12375
12654
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
12376
12655
 
12377
12656
  /***/ },
12378
- /* 105 */
12657
+ /* 108 */
12379
12658
  /***/ function(module, exports, __webpack_require__) {
12380
12659
 
12381
12660
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -12391,9 +12670,9 @@
12391
12670
 
12392
12671
  'use strict';
12393
12672
 
12394
- var ReactDOMNullInputValuePropDevtool = __webpack_require__(106);
12395
- var ReactDOMUnknownPropertyDevtool = __webpack_require__(107);
12396
- var ReactDebugTool = __webpack_require__(62);
12673
+ var ReactDOMNullInputValuePropDevtool = __webpack_require__(109);
12674
+ var ReactDOMUnknownPropertyDevtool = __webpack_require__(110);
12675
+ var ReactDebugTool = __webpack_require__(64);
12397
12676
 
12398
12677
  var warning = __webpack_require__(11);
12399
12678
 
@@ -12448,7 +12727,7 @@
12448
12727
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
12449
12728
 
12450
12729
  /***/ },
12451
- /* 106 */
12730
+ /* 109 */
12452
12731
  /***/ function(module, exports, __webpack_require__) {
12453
12732
 
12454
12733
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -12464,7 +12743,7 @@
12464
12743
 
12465
12744
  'use strict';
12466
12745
 
12467
- var ReactComponentTreeDevtool = __webpack_require__(28);
12746
+ var ReactComponentTreeDevtool = __webpack_require__(29);
12468
12747
 
12469
12748
  var warning = __webpack_require__(11);
12470
12749
 
@@ -12497,7 +12776,7 @@
12497
12776
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
12498
12777
 
12499
12778
  /***/ },
12500
- /* 107 */
12779
+ /* 110 */
12501
12780
  /***/ function(module, exports, __webpack_require__) {
12502
12781
 
12503
12782
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -12513,9 +12792,9 @@
12513
12792
 
12514
12793
  'use strict';
12515
12794
 
12516
- var DOMProperty = __webpack_require__(36);
12517
- var EventPluginRegistry = __webpack_require__(43);
12518
- var ReactComponentTreeDevtool = __webpack_require__(28);
12795
+ var DOMProperty = __webpack_require__(38);
12796
+ var EventPluginRegistry = __webpack_require__(45);
12797
+ var ReactComponentTreeDevtool = __webpack_require__(29);
12519
12798
 
12520
12799
  var warning = __webpack_require__(11);
12521
12800
 
@@ -12615,7 +12894,7 @@
12615
12894
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
12616
12895
 
12617
12896
  /***/ },
12618
- /* 108 */
12897
+ /* 111 */
12619
12898
  /***/ function(module, exports, __webpack_require__) {
12620
12899
 
12621
12900
  /**
@@ -12631,7 +12910,7 @@
12631
12910
 
12632
12911
  'use strict';
12633
12912
 
12634
- var escapeTextContentForBrowser = __webpack_require__(85);
12913
+ var escapeTextContentForBrowser = __webpack_require__(88);
12635
12914
 
12636
12915
  /**
12637
12916
  * Escapes attribute value to prevent scripting attacks.
@@ -12646,7 +12925,7 @@
12646
12925
  module.exports = quoteAttributeValueForBrowser;
12647
12926
 
12648
12927
  /***/ },
12649
- /* 109 */
12928
+ /* 112 */
12650
12929
  /***/ function(module, exports, __webpack_require__) {
12651
12930
 
12652
12931
  /**
@@ -12664,13 +12943,13 @@
12664
12943
 
12665
12944
  var _assign = __webpack_require__(4);
12666
12945
 
12667
- var EventConstants = __webpack_require__(40);
12668
- var EventPluginRegistry = __webpack_require__(43);
12669
- var ReactEventEmitterMixin = __webpack_require__(110);
12670
- var ViewportMetrics = __webpack_require__(75);
12946
+ var EventConstants = __webpack_require__(42);
12947
+ var EventPluginRegistry = __webpack_require__(45);
12948
+ var ReactEventEmitterMixin = __webpack_require__(113);
12949
+ var ViewportMetrics = __webpack_require__(78);
12671
12950
 
12672
- var getVendorPrefixedEventName = __webpack_require__(111);
12673
- var isEventSupported = __webpack_require__(69);
12951
+ var getVendorPrefixedEventName = __webpack_require__(114);
12952
+ var isEventSupported = __webpack_require__(72);
12674
12953
 
12675
12954
  /**
12676
12955
  * Summary of `ReactBrowserEventEmitter` event handling:
@@ -12968,7 +13247,7 @@
12968
13247
  module.exports = ReactBrowserEventEmitter;
12969
13248
 
12970
13249
  /***/ },
12971
- /* 110 */
13250
+ /* 113 */
12972
13251
  /***/ function(module, exports, __webpack_require__) {
12973
13252
 
12974
13253
  /**
@@ -12984,7 +13263,7 @@
12984
13263
 
12985
13264
  'use strict';
12986
13265
 
12987
- var EventPluginHub = __webpack_require__(42);
13266
+ var EventPluginHub = __webpack_require__(44);
12988
13267
 
12989
13268
  function runEventQueueInBatch(events) {
12990
13269
  EventPluginHub.enqueueEvents(events);
@@ -13006,7 +13285,7 @@
13006
13285
  module.exports = ReactEventEmitterMixin;
13007
13286
 
13008
13287
  /***/ },
13009
- /* 111 */
13288
+ /* 114 */
13010
13289
  /***/ function(module, exports, __webpack_require__) {
13011
13290
 
13012
13291
  /**
@@ -13022,7 +13301,7 @@
13022
13301
 
13023
13302
  'use strict';
13024
13303
 
13025
- var ExecutionEnvironment = __webpack_require__(48);
13304
+ var ExecutionEnvironment = __webpack_require__(50);
13026
13305
 
13027
13306
  /**
13028
13307
  * Generate a mapping of standard vendor prefixes using the defined style property and event name.
@@ -13112,7 +13391,7 @@
13112
13391
  module.exports = getVendorPrefixedEventName;
13113
13392
 
13114
13393
  /***/ },
13115
- /* 112 */
13394
+ /* 115 */
13116
13395
  /***/ function(module, exports, __webpack_require__) {
13117
13396
 
13118
13397
  /**
@@ -13128,7 +13407,7 @@
13128
13407
 
13129
13408
  'use strict';
13130
13409
 
13131
- var DisabledInputUtils = __webpack_require__(113);
13410
+ var DisabledInputUtils = __webpack_require__(116);
13132
13411
 
13133
13412
  /**
13134
13413
  * Implements a <button> host component that does not receive mouse events
@@ -13141,7 +13420,7 @@
13141
13420
  module.exports = ReactDOMButton;
13142
13421
 
13143
13422
  /***/ },
13144
- /* 113 */
13423
+ /* 116 */
13145
13424
  /***/ function(module, exports) {
13146
13425
 
13147
13426
  /**
@@ -13196,7 +13475,7 @@
13196
13475
  module.exports = DisabledInputUtils;
13197
13476
 
13198
13477
  /***/ },
13199
- /* 114 */
13478
+ /* 117 */
13200
13479
  /***/ function(module, exports, __webpack_require__) {
13201
13480
 
13202
13481
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -13215,11 +13494,11 @@
13215
13494
  var _prodInvariant = __webpack_require__(7),
13216
13495
  _assign = __webpack_require__(4);
13217
13496
 
13218
- var DisabledInputUtils = __webpack_require__(113);
13219
- var DOMPropertyOperations = __webpack_require__(103);
13220
- var LinkedValueUtils = __webpack_require__(115);
13221
- var ReactDOMComponentTree = __webpack_require__(35);
13222
- var ReactUpdates = __webpack_require__(55);
13497
+ var DisabledInputUtils = __webpack_require__(116);
13498
+ var DOMPropertyOperations = __webpack_require__(106);
13499
+ var LinkedValueUtils = __webpack_require__(118);
13500
+ var ReactDOMComponentTree = __webpack_require__(37);
13501
+ var ReactUpdates = __webpack_require__(57);
13223
13502
 
13224
13503
  var invariant = __webpack_require__(8);
13225
13504
  var warning = __webpack_require__(11);
@@ -13267,7 +13546,10 @@
13267
13546
  var hostProps = _assign({
13268
13547
  // Make sure we set .type before any other properties (setting .value
13269
13548
  // before .type means .value is lost in IE11 and below)
13270
- type: undefined
13549
+ type: undefined,
13550
+ // Make sure we set .step before .value (setting .value before .step
13551
+ // means .value is rounded on mount, based upon step precision)
13552
+ step: undefined
13271
13553
  }, DisabledInputUtils.getHostProps(inst, props), {
13272
13554
  defaultChecked: undefined,
13273
13555
  defaultValue: undefined,
@@ -13446,7 +13728,7 @@
13446
13728
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
13447
13729
 
13448
13730
  /***/ },
13449
- /* 115 */
13731
+ /* 118 */
13450
13732
  /***/ function(module, exports, __webpack_require__) {
13451
13733
 
13452
13734
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -13464,8 +13746,9 @@
13464
13746
 
13465
13747
  var _prodInvariant = __webpack_require__(7);
13466
13748
 
13467
- var ReactPropTypes = __webpack_require__(30);
13468
- var ReactPropTypeLocations = __webpack_require__(21);
13749
+ var ReactPropTypes = __webpack_require__(32);
13750
+ var ReactPropTypeLocations = __webpack_require__(22);
13751
+ var ReactPropTypesSecret = __webpack_require__(31);
13469
13752
 
13470
13753
  var invariant = __webpack_require__(8);
13471
13754
  var warning = __webpack_require__(11);
@@ -13528,7 +13811,7 @@
13528
13811
  checkPropTypes: function (tagName, props, owner) {
13529
13812
  for (var propName in propTypes) {
13530
13813
  if (propTypes.hasOwnProperty(propName)) {
13531
- var error = propTypes[propName](props, propName, tagName, ReactPropTypeLocations.prop);
13814
+ var error = propTypes[propName](props, propName, tagName, ReactPropTypeLocations.prop, null, ReactPropTypesSecret);
13532
13815
  }
13533
13816
  if (error instanceof Error && !(error.message in loggedTypeFailures)) {
13534
13817
  // Only monitor this failure once because there tends to be a lot of the
@@ -13587,7 +13870,7 @@
13587
13870
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
13588
13871
 
13589
13872
  /***/ },
13590
- /* 116 */
13873
+ /* 119 */
13591
13874
  /***/ function(module, exports, __webpack_require__) {
13592
13875
 
13593
13876
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -13606,8 +13889,8 @@
13606
13889
  var _assign = __webpack_require__(4);
13607
13890
 
13608
13891
  var ReactChildren = __webpack_require__(5);
13609
- var ReactDOMComponentTree = __webpack_require__(35);
13610
- var ReactDOMSelect = __webpack_require__(117);
13892
+ var ReactDOMComponentTree = __webpack_require__(37);
13893
+ var ReactDOMSelect = __webpack_require__(120);
13611
13894
 
13612
13895
  var warning = __webpack_require__(11);
13613
13896
  var didWarnInvalidOptionChildren = false;
@@ -13716,7 +13999,7 @@
13716
13999
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
13717
14000
 
13718
14001
  /***/ },
13719
- /* 117 */
14002
+ /* 120 */
13720
14003
  /***/ function(module, exports, __webpack_require__) {
13721
14004
 
13722
14005
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -13734,10 +14017,10 @@
13734
14017
 
13735
14018
  var _assign = __webpack_require__(4);
13736
14019
 
13737
- var DisabledInputUtils = __webpack_require__(113);
13738
- var LinkedValueUtils = __webpack_require__(115);
13739
- var ReactDOMComponentTree = __webpack_require__(35);
13740
- var ReactUpdates = __webpack_require__(55);
14020
+ var DisabledInputUtils = __webpack_require__(116);
14021
+ var LinkedValueUtils = __webpack_require__(118);
14022
+ var ReactDOMComponentTree = __webpack_require__(37);
14023
+ var ReactUpdates = __webpack_require__(57);
13741
14024
 
13742
14025
  var warning = __webpack_require__(11);
13743
14026
 
@@ -13922,7 +14205,7 @@
13922
14205
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
13923
14206
 
13924
14207
  /***/ },
13925
- /* 118 */
14208
+ /* 121 */
13926
14209
  /***/ function(module, exports, __webpack_require__) {
13927
14210
 
13928
14211
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -13941,10 +14224,10 @@
13941
14224
  var _prodInvariant = __webpack_require__(7),
13942
14225
  _assign = __webpack_require__(4);
13943
14226
 
13944
- var DisabledInputUtils = __webpack_require__(113);
13945
- var LinkedValueUtils = __webpack_require__(115);
13946
- var ReactDOMComponentTree = __webpack_require__(35);
13947
- var ReactUpdates = __webpack_require__(55);
14227
+ var DisabledInputUtils = __webpack_require__(116);
14228
+ var LinkedValueUtils = __webpack_require__(118);
14229
+ var ReactDOMComponentTree = __webpack_require__(37);
14230
+ var ReactUpdates = __webpack_require__(57);
13948
14231
 
13949
14232
  var invariant = __webpack_require__(8);
13950
14233
  var warning = __webpack_require__(11);
@@ -14083,7 +14366,7 @@
14083
14366
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
14084
14367
 
14085
14368
  /***/ },
14086
- /* 119 */
14369
+ /* 122 */
14087
14370
  /***/ function(module, exports, __webpack_require__) {
14088
14371
 
14089
14372
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -14101,17 +14384,17 @@
14101
14384
 
14102
14385
  var _prodInvariant = __webpack_require__(7);
14103
14386
 
14104
- var ReactComponentEnvironment = __webpack_require__(120);
14105
- var ReactInstanceMap = __webpack_require__(121);
14106
- var ReactInstrumentation = __webpack_require__(61);
14107
- var ReactMultiChildUpdateTypes = __webpack_require__(90);
14387
+ var ReactComponentEnvironment = __webpack_require__(123);
14388
+ var ReactInstanceMap = __webpack_require__(124);
14389
+ var ReactInstrumentation = __webpack_require__(63);
14390
+ var ReactMultiChildUpdateTypes = __webpack_require__(93);
14108
14391
 
14109
14392
  var ReactCurrentOwner = __webpack_require__(10);
14110
- var ReactReconciler = __webpack_require__(58);
14111
- var ReactChildReconciler = __webpack_require__(122);
14393
+ var ReactReconciler = __webpack_require__(60);
14394
+ var ReactChildReconciler = __webpack_require__(125);
14112
14395
 
14113
14396
  var emptyFunction = __webpack_require__(12);
14114
- var flattenChildren = __webpack_require__(129);
14397
+ var flattenChildren = __webpack_require__(133);
14115
14398
  var invariant = __webpack_require__(8);
14116
14399
 
14117
14400
  /**
@@ -14288,7 +14571,7 @@
14288
14571
  return ReactChildReconciler.instantiateChildren(nestedChildren, transaction, context);
14289
14572
  },
14290
14573
 
14291
- _reconcilerUpdateChildren: function (prevChildren, nextNestedChildrenElements, removedNodes, transaction, context) {
14574
+ _reconcilerUpdateChildren: function (prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context) {
14292
14575
  var nextChildren;
14293
14576
  if (process.env.NODE_ENV !== 'production') {
14294
14577
  if (this._currentElement) {
@@ -14298,12 +14581,12 @@
14298
14581
  } finally {
14299
14582
  ReactCurrentOwner.current = null;
14300
14583
  }
14301
- ReactChildReconciler.updateChildren(prevChildren, nextChildren, removedNodes, transaction, context);
14584
+ ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context);
14302
14585
  return nextChildren;
14303
14586
  }
14304
14587
  }
14305
14588
  nextChildren = flattenChildren(nextNestedChildrenElements);
14306
- ReactChildReconciler.updateChildren(prevChildren, nextChildren, removedNodes, transaction, context);
14589
+ ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context);
14307
14590
  return nextChildren;
14308
14591
  },
14309
14592
 
@@ -14400,7 +14683,8 @@
14400
14683
  _updateChildren: function (nextNestedChildrenElements, transaction, context) {
14401
14684
  var prevChildren = this._renderedChildren;
14402
14685
  var removedNodes = {};
14403
- var nextChildren = this._reconcilerUpdateChildren(prevChildren, nextNestedChildrenElements, removedNodes, transaction, context);
14686
+ var mountImages = [];
14687
+ var nextChildren = this._reconcilerUpdateChildren(prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context);
14404
14688
  if (!nextChildren && !prevChildren) {
14405
14689
  return;
14406
14690
  }
@@ -14408,8 +14692,10 @@
14408
14692
  var name;
14409
14693
  // `nextIndex` will increment for each child in `nextChildren`, but
14410
14694
  // `lastIndex` will be the last index visited in `prevChildren`.
14411
- var lastIndex = 0;
14412
14695
  var nextIndex = 0;
14696
+ var lastIndex = 0;
14697
+ // `nextMountIndex` will increment for each newly mounted child.
14698
+ var nextMountIndex = 0;
14413
14699
  var lastPlacedNode = null;
14414
14700
  for (name in nextChildren) {
14415
14701
  if (!nextChildren.hasOwnProperty(name)) {
@@ -14428,7 +14714,8 @@
14428
14714
  // The `removedNodes` loop below will actually remove the child.
14429
14715
  }
14430
14716
  // The child must be instantiated before it's mounted.
14431
- updates = enqueue(updates, this._mountChildAtIndex(nextChild, lastPlacedNode, nextIndex, transaction, context));
14717
+ updates = enqueue(updates, this._mountChildAtIndex(nextChild, mountImages[nextMountIndex], lastPlacedNode, nextIndex, transaction, context));
14718
+ nextMountIndex++;
14432
14719
  }
14433
14720
  nextIndex++;
14434
14721
  lastPlacedNode = ReactReconciler.getHostNode(nextChild);
@@ -14511,8 +14798,7 @@
14511
14798
  * @param {ReactReconcileTransaction} transaction
14512
14799
  * @private
14513
14800
  */
14514
- _mountChildAtIndex: function (child, afterNode, index, transaction, context) {
14515
- var mountImage = ReactReconciler.mountComponent(child, transaction, this, this._hostContainerInfo, context);
14801
+ _mountChildAtIndex: function (child, mountImage, afterNode, index, transaction, context) {
14516
14802
  child._mountIndex = index;
14517
14803
  return this.createChild(child, afterNode, mountImage);
14518
14804
  },
@@ -14539,7 +14825,7 @@
14539
14825
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
14540
14826
 
14541
14827
  /***/ },
14542
- /* 120 */
14828
+ /* 123 */
14543
14829
  /***/ function(module, exports, __webpack_require__) {
14544
14830
 
14545
14831
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -14598,7 +14884,7 @@
14598
14884
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
14599
14885
 
14600
14886
  /***/ },
14601
- /* 121 */
14887
+ /* 124 */
14602
14888
  /***/ function(module, exports) {
14603
14889
 
14604
14890
  /**
@@ -14651,7 +14937,7 @@
14651
14937
  module.exports = ReactInstanceMap;
14652
14938
 
14653
14939
  /***/ },
14654
- /* 122 */
14940
+ /* 125 */
14655
14941
  /***/ function(module, exports, __webpack_require__) {
14656
14942
 
14657
14943
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -14667,19 +14953,32 @@
14667
14953
 
14668
14954
  'use strict';
14669
14955
 
14670
- var ReactReconciler = __webpack_require__(58);
14956
+ var ReactReconciler = __webpack_require__(60);
14671
14957
 
14672
- var instantiateReactComponent = __webpack_require__(123);
14958
+ var instantiateReactComponent = __webpack_require__(126);
14673
14959
  var KeyEscapeUtils = __webpack_require__(16);
14674
- var shouldUpdateReactComponent = __webpack_require__(126);
14960
+ var shouldUpdateReactComponent = __webpack_require__(130);
14675
14961
  var traverseAllChildren = __webpack_require__(14);
14676
14962
  var warning = __webpack_require__(11);
14677
14963
 
14964
+ var ReactComponentTreeDevtool;
14965
+
14966
+ if (typeof process !== 'undefined' && process.env && process.env.NODE_ENV === 'test') {
14967
+ // Temporary hack.
14968
+ // Inline requires don't work well with Jest:
14969
+ // https://github.com/facebook/react/issues/7240
14970
+ // Remove the inline requires when we don't need them anymore:
14971
+ // https://github.com/facebook/react/pull/7178
14972
+ ReactComponentTreeDevtool = __webpack_require__(29);
14973
+ }
14974
+
14678
14975
  function instantiateChild(childInstances, child, name, selfDebugID) {
14679
14976
  // We found a component instance.
14680
14977
  var keyUnique = childInstances[name] === undefined;
14681
14978
  if (process.env.NODE_ENV !== 'production') {
14682
- var ReactComponentTreeDevtool = __webpack_require__(28);
14979
+ if (!ReactComponentTreeDevtool) {
14980
+ ReactComponentTreeDevtool = __webpack_require__(29);
14981
+ }
14683
14982
  process.env.NODE_ENV !== 'production' ? warning(keyUnique, '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), ReactComponentTreeDevtool.getStackAddendumByID(selfDebugID)) : void 0;
14684
14983
  }
14685
14984
  if (child != null && keyUnique) {
@@ -14728,7 +15027,7 @@
14728
15027
  * @return {?object} A new set of child instances.
14729
15028
  * @internal
14730
15029
  */
14731
- updateChildren: function (prevChildren, nextChildren, removedNodes, transaction, context) {
15030
+ updateChildren: function (prevChildren, nextChildren, mountImages, removedNodes, transaction, hostParent, hostContainerInfo, context) {
14732
15031
  // We currently don't have a way to track moves here but if we use iterators
14733
15032
  // instead of for..in we can zip the iterators and check if an item has
14734
15033
  // moved.
@@ -14757,6 +15056,10 @@
14757
15056
  // The child must be instantiated before it's mounted.
14758
15057
  var nextChildInstance = instantiateReactComponent(nextElement, true);
14759
15058
  nextChildren[name] = nextChildInstance;
15059
+ // Creating mount image now ensures refs are resolved in right order
15060
+ // (see https://github.com/facebook/react/pull/7101 for explanation).
15061
+ var nextChildMountImage = ReactReconciler.mountComponent(nextChildInstance, transaction, hostParent, hostContainerInfo, context);
15062
+ mountImages.push(nextChildMountImage);
14760
15063
  }
14761
15064
  }
14762
15065
  // Unmount children that are no longer present.
@@ -14791,7 +15094,7 @@
14791
15094
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
14792
15095
 
14793
15096
  /***/ },
14794
- /* 123 */
15097
+ /* 126 */
14795
15098
  /***/ function(module, exports, __webpack_require__) {
14796
15099
 
14797
15100
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -14810,10 +15113,10 @@
14810
15113
  var _prodInvariant = __webpack_require__(7),
14811
15114
  _assign = __webpack_require__(4);
14812
15115
 
14813
- var ReactCompositeComponent = __webpack_require__(124);
14814
- var ReactEmptyComponent = __webpack_require__(127);
14815
- var ReactHostComponent = __webpack_require__(128);
14816
- var ReactInstrumentation = __webpack_require__(61);
15116
+ var ReactCompositeComponent = __webpack_require__(127);
15117
+ var ReactEmptyComponent = __webpack_require__(131);
15118
+ var ReactHostComponent = __webpack_require__(132);
15119
+ var ReactInstrumentation = __webpack_require__(63);
14817
15120
 
14818
15121
  var invariant = __webpack_require__(8);
14819
15122
  var warning = __webpack_require__(11);
@@ -14943,7 +15246,7 @@
14943
15246
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
14944
15247
 
14945
15248
  /***/ },
14946
- /* 124 */
15249
+ /* 127 */
14947
15250
  /***/ function(module, exports, __webpack_require__) {
14948
15251
 
14949
15252
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -14962,23 +15265,29 @@
14962
15265
  var _prodInvariant = __webpack_require__(7),
14963
15266
  _assign = __webpack_require__(4);
14964
15267
 
14965
- var ReactComponentEnvironment = __webpack_require__(120);
15268
+ var ReactComponentEnvironment = __webpack_require__(123);
14966
15269
  var ReactCurrentOwner = __webpack_require__(10);
14967
15270
  var ReactElement = __webpack_require__(9);
14968
- var ReactErrorUtils = __webpack_require__(45);
14969
- var ReactInstanceMap = __webpack_require__(121);
14970
- var ReactInstrumentation = __webpack_require__(61);
14971
- var ReactNodeTypes = __webpack_require__(125);
14972
- var ReactPropTypeLocations = __webpack_require__(21);
14973
- var ReactReconciler = __webpack_require__(58);
14974
-
14975
- var checkReactTypeSpec = __webpack_require__(29);
14976
-
15271
+ var ReactErrorUtils = __webpack_require__(47);
15272
+ var ReactInstanceMap = __webpack_require__(124);
15273
+ var ReactInstrumentation = __webpack_require__(63);
15274
+ var ReactNodeTypes = __webpack_require__(128);
15275
+ var ReactPropTypeLocations = __webpack_require__(22);
15276
+ var ReactReconciler = __webpack_require__(60);
15277
+
15278
+ var checkReactTypeSpec = __webpack_require__(30);
14977
15279
  var emptyObject = __webpack_require__(19);
14978
15280
  var invariant = __webpack_require__(8);
14979
- var shouldUpdateReactComponent = __webpack_require__(126);
15281
+ var shallowEqual = __webpack_require__(129);
15282
+ var shouldUpdateReactComponent = __webpack_require__(130);
14980
15283
  var warning = __webpack_require__(11);
14981
15284
 
15285
+ var CompositeTypes = {
15286
+ ImpureClass: 0,
15287
+ PureClass: 1,
15288
+ StatelessFunctional: 2
15289
+ };
15290
+
14982
15291
  function StatelessComponent(Component) {}
14983
15292
  StatelessComponent.prototype.render = function () {
14984
15293
  var Component = ReactInstanceMap.get(this)._currentElement.type;
@@ -15017,7 +15326,11 @@
15017
15326
  }
15018
15327
 
15019
15328
  function shouldConstruct(Component) {
15020
- return Component.prototype && Component.prototype.isReactComponent;
15329
+ return !!(Component.prototype && Component.prototype.isReactComponent);
15330
+ }
15331
+
15332
+ function isPureComponent(Component) {
15333
+ return !!(Component.prototype && Component.prototype.isPureReactComponent);
15021
15334
  }
15022
15335
 
15023
15336
  /**
@@ -15070,6 +15383,7 @@
15070
15383
  construct: function (element) {
15071
15384
  this._currentElement = element;
15072
15385
  this._rootNodeID = null;
15386
+ this._compositeType = null;
15073
15387
  this._instance = null;
15074
15388
  this._hostParent = null;
15075
15389
  this._hostContainerInfo = null;
@@ -15110,6 +15424,8 @@
15110
15424
  * @internal
15111
15425
  */
15112
15426
  mountComponent: function (transaction, hostParent, hostContainerInfo, context) {
15427
+ var _this = this;
15428
+
15113
15429
  this._context = context;
15114
15430
  this._mountOrder = nextMountID++;
15115
15431
  this._hostParent = hostParent;
@@ -15123,15 +15439,23 @@
15123
15439
  var updateQueue = transaction.getUpdateQueue();
15124
15440
 
15125
15441
  // Initialize the public class
15126
- var inst = this._constructComponent(publicProps, publicContext, updateQueue);
15442
+ var doConstruct = shouldConstruct(Component);
15443
+ var inst = this._constructComponent(doConstruct, publicProps, publicContext, updateQueue);
15127
15444
  var renderedElement;
15128
15445
 
15129
15446
  // Support functional components
15130
- if (!shouldConstruct(Component) && (inst == null || inst.render == null)) {
15447
+ if (!doConstruct && (inst == null || inst.render == null)) {
15131
15448
  renderedElement = inst;
15132
15449
  warnIfInvalidElement(Component, renderedElement);
15133
15450
  !(inst === null || inst === false || ReactElement.isValidElement(inst)) ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s(...): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.', Component.displayName || Component.name || 'Component') : _prodInvariant('105', Component.displayName || Component.name || 'Component') : void 0;
15134
15451
  inst = new StatelessComponent(Component);
15452
+ this._compositeType = CompositeTypes.StatelessFunctional;
15453
+ } else {
15454
+ if (isPureComponent(Component)) {
15455
+ this._compositeType = CompositeTypes.PureClass;
15456
+ } else {
15457
+ this._compositeType = CompositeTypes.ImpureClass;
15458
+ }
15135
15459
  }
15136
15460
 
15137
15461
  if (process.env.NODE_ENV !== 'production') {
@@ -15197,26 +15521,35 @@
15197
15521
  }
15198
15522
  }
15199
15523
 
15524
+ if (process.env.NODE_ENV !== 'production') {
15525
+ if (this._debugID) {
15526
+ var callback = function (component) {
15527
+ return ReactInstrumentation.debugTool.onComponentHasMounted(_this._debugID);
15528
+ };
15529
+ transaction.getReactMountReady().enqueue(callback, this);
15530
+ }
15531
+ }
15532
+
15200
15533
  return markup;
15201
15534
  },
15202
15535
 
15203
- _constructComponent: function (publicProps, publicContext, updateQueue) {
15536
+ _constructComponent: function (doConstruct, publicProps, publicContext, updateQueue) {
15204
15537
  if (process.env.NODE_ENV !== 'production') {
15205
15538
  ReactCurrentOwner.current = this;
15206
15539
  try {
15207
- return this._constructComponentWithoutOwner(publicProps, publicContext, updateQueue);
15540
+ return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);
15208
15541
  } finally {
15209
15542
  ReactCurrentOwner.current = null;
15210
15543
  }
15211
15544
  } else {
15212
- return this._constructComponentWithoutOwner(publicProps, publicContext, updateQueue);
15545
+ return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);
15213
15546
  }
15214
15547
  },
15215
15548
 
15216
- _constructComponentWithoutOwner: function (publicProps, publicContext, updateQueue) {
15549
+ _constructComponentWithoutOwner: function (doConstruct, publicProps, publicContext, updateQueue) {
15217
15550
  var Component = this._currentElement.type;
15218
15551
  var instanceOrElement;
15219
- if (shouldConstruct(Component)) {
15552
+ if (doConstruct) {
15220
15553
  if (process.env.NODE_ENV !== 'production') {
15221
15554
  if (this._debugID !== 0) {
15222
15555
  ReactInstrumentation.debugTool.onBeginLifeCycleTimer(this._debugID, 'ctor');
@@ -15520,7 +15853,6 @@
15520
15853
 
15521
15854
  var willReceive = false;
15522
15855
  var nextContext;
15523
- var nextProps;
15524
15856
 
15525
15857
  // Determine if the context has changed or not
15526
15858
  if (this._context === nextUnmaskedContext) {
@@ -15530,7 +15862,8 @@
15530
15862
  willReceive = true;
15531
15863
  }
15532
15864
 
15533
- nextProps = nextParentElement.props;
15865
+ var prevProps = prevParentElement.props;
15866
+ var nextProps = nextParentElement.props;
15534
15867
 
15535
15868
  // Not a simple state update but a props update
15536
15869
  if (prevParentElement !== nextParentElement) {
@@ -15557,16 +15890,22 @@
15557
15890
  var nextState = this._processPendingState(nextProps, nextContext);
15558
15891
  var shouldUpdate = true;
15559
15892
 
15560
- if (!this._pendingForceUpdate && inst.shouldComponentUpdate) {
15561
- if (process.env.NODE_ENV !== 'production') {
15562
- if (this._debugID !== 0) {
15563
- ReactInstrumentation.debugTool.onBeginLifeCycleTimer(this._debugID, 'shouldComponentUpdate');
15893
+ if (!this._pendingForceUpdate) {
15894
+ if (inst.shouldComponentUpdate) {
15895
+ if (process.env.NODE_ENV !== 'production') {
15896
+ if (this._debugID !== 0) {
15897
+ ReactInstrumentation.debugTool.onBeginLifeCycleTimer(this._debugID, 'shouldComponentUpdate');
15898
+ }
15564
15899
  }
15565
- }
15566
- shouldUpdate = inst.shouldComponentUpdate(nextProps, nextState, nextContext);
15567
- if (process.env.NODE_ENV !== 'production') {
15568
- if (this._debugID !== 0) {
15569
- ReactInstrumentation.debugTool.onEndLifeCycleTimer(this._debugID, 'shouldComponentUpdate');
15900
+ shouldUpdate = inst.shouldComponentUpdate(nextProps, nextState, nextContext);
15901
+ if (process.env.NODE_ENV !== 'production') {
15902
+ if (this._debugID !== 0) {
15903
+ ReactInstrumentation.debugTool.onEndLifeCycleTimer(this._debugID, 'shouldComponentUpdate');
15904
+ }
15905
+ }
15906
+ } else {
15907
+ if (this._compositeType === CompositeTypes.PureClass) {
15908
+ shouldUpdate = !shallowEqual(prevProps, nextProps) || !shallowEqual(inst.state, nextState);
15570
15909
  }
15571
15910
  }
15572
15911
  }
@@ -15628,6 +15967,8 @@
15628
15967
  * @private
15629
15968
  */
15630
15969
  _performComponentUpdate: function (nextElement, nextProps, nextState, nextContext, transaction, unmaskedContext) {
15970
+ var _this2 = this;
15971
+
15631
15972
  var inst = this._instance;
15632
15973
 
15633
15974
  var hasComponentDidUpdate = Boolean(inst.componentDidUpdate);
@@ -15669,6 +16010,15 @@
15669
16010
  transaction.getReactMountReady().enqueue(inst.componentDidUpdate.bind(inst, prevProps, prevState, prevContext), inst);
15670
16011
  }
15671
16012
  }
16013
+
16014
+ if (process.env.NODE_ENV !== 'production') {
16015
+ if (this._debugID) {
16016
+ var callback = function () {
16017
+ return ReactInstrumentation.debugTool.onComponentHasUpdated(_this2._debugID);
16018
+ };
16019
+ transaction.getReactMountReady().enqueue(callback, this);
16020
+ }
16021
+ }
15672
16022
  },
15673
16023
 
15674
16024
  /**
@@ -15754,11 +16104,15 @@
15754
16104
  */
15755
16105
  _renderValidatedComponent: function () {
15756
16106
  var renderedComponent;
15757
- ReactCurrentOwner.current = this;
15758
- try {
16107
+ if (process.env.NODE_ENV !== 'production' || this._compositeType !== CompositeTypes.StatelessFunctional) {
16108
+ ReactCurrentOwner.current = this;
16109
+ try {
16110
+ renderedComponent = this._renderValidatedComponentWithoutOwnerOrContext();
16111
+ } finally {
16112
+ ReactCurrentOwner.current = null;
16113
+ }
16114
+ } else {
15759
16115
  renderedComponent = this._renderValidatedComponentWithoutOwnerOrContext();
15760
- } finally {
15761
- ReactCurrentOwner.current = null;
15762
16116
  }
15763
16117
  !(
15764
16118
  // TODO: An `isValidNode` function would probably be more appropriate
@@ -15821,7 +16175,7 @@
15821
16175
  */
15822
16176
  getPublicInstance: function () {
15823
16177
  var inst = this._instance;
15824
- if (inst instanceof StatelessComponent) {
16178
+ if (this._compositeType === CompositeTypes.StatelessFunctional) {
15825
16179
  return null;
15826
16180
  }
15827
16181
  return inst;
@@ -15842,7 +16196,7 @@
15842
16196
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
15843
16197
 
15844
16198
  /***/ },
15845
- /* 125 */
16199
+ /* 128 */
15846
16200
  /***/ function(module, exports, __webpack_require__) {
15847
16201
 
15848
16202
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -15888,7 +16242,78 @@
15888
16242
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
15889
16243
 
15890
16244
  /***/ },
15891
- /* 126 */
16245
+ /* 129 */
16246
+ /***/ function(module, exports) {
16247
+
16248
+ /**
16249
+ * Copyright (c) 2013-present, Facebook, Inc.
16250
+ * All rights reserved.
16251
+ *
16252
+ * This source code is licensed under the BSD-style license found in the
16253
+ * LICENSE file in the root directory of this source tree. An additional grant
16254
+ * of patent rights can be found in the PATENTS file in the same directory.
16255
+ *
16256
+ * @typechecks
16257
+ *
16258
+ */
16259
+
16260
+ /*eslint-disable no-self-compare */
16261
+
16262
+ 'use strict';
16263
+
16264
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
16265
+
16266
+ /**
16267
+ * inlined Object.is polyfill to avoid requiring consumers ship their own
16268
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
16269
+ */
16270
+ function is(x, y) {
16271
+ // SameValue algorithm
16272
+ if (x === y) {
16273
+ // Steps 1-5, 7-10
16274
+ // Steps 6.b-6.e: +0 != -0
16275
+ return x !== 0 || 1 / x === 1 / y;
16276
+ } else {
16277
+ // Step 6.a: NaN == NaN
16278
+ return x !== x && y !== y;
16279
+ }
16280
+ }
16281
+
16282
+ /**
16283
+ * Performs equality by iterating through keys on an object and returning false
16284
+ * when any key has values which are not strictly equal between the arguments.
16285
+ * Returns true when the values of all keys are strictly equal.
16286
+ */
16287
+ function shallowEqual(objA, objB) {
16288
+ if (is(objA, objB)) {
16289
+ return true;
16290
+ }
16291
+
16292
+ if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) {
16293
+ return false;
16294
+ }
16295
+
16296
+ var keysA = Object.keys(objA);
16297
+ var keysB = Object.keys(objB);
16298
+
16299
+ if (keysA.length !== keysB.length) {
16300
+ return false;
16301
+ }
16302
+
16303
+ // Test for A's keys different from B.
16304
+ for (var i = 0; i < keysA.length; i++) {
16305
+ if (!hasOwnProperty.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) {
16306
+ return false;
16307
+ }
16308
+ }
16309
+
16310
+ return true;
16311
+ }
16312
+
16313
+ module.exports = shallowEqual;
16314
+
16315
+ /***/ },
16316
+ /* 130 */
15892
16317
  /***/ function(module, exports) {
15893
16318
 
15894
16319
  /**
@@ -15935,7 +16360,7 @@
15935
16360
  module.exports = shouldUpdateReactComponent;
15936
16361
 
15937
16362
  /***/ },
15938
- /* 127 */
16363
+ /* 131 */
15939
16364
  /***/ function(module, exports) {
15940
16365
 
15941
16366
  /**
@@ -15970,7 +16395,7 @@
15970
16395
  module.exports = ReactEmptyComponent;
15971
16396
 
15972
16397
  /***/ },
15973
- /* 128 */
16398
+ /* 132 */
15974
16399
  /***/ function(module, exports, __webpack_require__) {
15975
16400
 
15976
16401
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -16052,7 +16477,7 @@
16052
16477
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
16053
16478
 
16054
16479
  /***/ },
16055
- /* 129 */
16480
+ /* 133 */
16056
16481
  /***/ function(module, exports, __webpack_require__) {
16057
16482
 
16058
16483
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -16073,6 +16498,17 @@
16073
16498
  var traverseAllChildren = __webpack_require__(14);
16074
16499
  var warning = __webpack_require__(11);
16075
16500
 
16501
+ var ReactComponentTreeDevtool;
16502
+
16503
+ if (typeof process !== 'undefined' && process.env && process.env.NODE_ENV === 'test') {
16504
+ // Temporary hack.
16505
+ // Inline requires don't work well with Jest:
16506
+ // https://github.com/facebook/react/issues/7240
16507
+ // Remove the inline requires when we don't need them anymore:
16508
+ // https://github.com/facebook/react/pull/7178
16509
+ ReactComponentTreeDevtool = __webpack_require__(29);
16510
+ }
16511
+
16076
16512
  /**
16077
16513
  * @param {function} traverseContext Context passed through traversal.
16078
16514
  * @param {?ReactComponent} child React child component.
@@ -16085,7 +16521,9 @@
16085
16521
  var result = traverseContext;
16086
16522
  var keyUnique = result[name] === undefined;
16087
16523
  if (process.env.NODE_ENV !== 'production') {
16088
- var ReactComponentTreeDevtool = __webpack_require__(28);
16524
+ if (!ReactComponentTreeDevtool) {
16525
+ ReactComponentTreeDevtool = __webpack_require__(29);
16526
+ }
16089
16527
  process.env.NODE_ENV !== 'production' ? warning(keyUnique, '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), ReactComponentTreeDevtool.getStackAddendumByID(selfDebugID)) : void 0;
16090
16528
  }
16091
16529
  if (keyUnique && child != null) {
@@ -16119,7 +16557,7 @@
16119
16557
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
16120
16558
 
16121
16559
  /***/ },
16122
- /* 130 */
16560
+ /* 134 */
16123
16561
  /***/ function(module, exports, __webpack_require__) {
16124
16562
 
16125
16563
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -16138,9 +16576,9 @@
16138
16576
  var _assign = __webpack_require__(4);
16139
16577
 
16140
16578
  var PooledClass = __webpack_require__(6);
16141
- var Transaction = __webpack_require__(67);
16142
- var ReactInstrumentation = __webpack_require__(61);
16143
- var ReactServerUpdateQueue = __webpack_require__(131);
16579
+ var Transaction = __webpack_require__(70);
16580
+ var ReactInstrumentation = __webpack_require__(63);
16581
+ var ReactServerUpdateQueue = __webpack_require__(135);
16144
16582
 
16145
16583
  /**
16146
16584
  * Executed within the scope of the `Transaction` instance. Consider these as
@@ -16215,7 +16653,7 @@
16215
16653
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
16216
16654
 
16217
16655
  /***/ },
16218
- /* 131 */
16656
+ /* 135 */
16219
16657
  /***/ function(module, exports, __webpack_require__) {
16220
16658
 
16221
16659
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -16234,8 +16672,8 @@
16234
16672
 
16235
16673
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
16236
16674
 
16237
- var ReactUpdateQueue = __webpack_require__(132);
16238
- var Transaction = __webpack_require__(67);
16675
+ var ReactUpdateQueue = __webpack_require__(136);
16676
+ var Transaction = __webpack_require__(70);
16239
16677
  var warning = __webpack_require__(11);
16240
16678
 
16241
16679
  function warnNoop(publicInstance, callerName) {
@@ -16362,7 +16800,7 @@
16362
16800
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
16363
16801
 
16364
16802
  /***/ },
16365
- /* 132 */
16803
+ /* 136 */
16366
16804
  /***/ function(module, exports, __webpack_require__) {
16367
16805
 
16368
16806
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -16381,9 +16819,9 @@
16381
16819
  var _prodInvariant = __webpack_require__(7);
16382
16820
 
16383
16821
  var ReactCurrentOwner = __webpack_require__(10);
16384
- var ReactInstanceMap = __webpack_require__(121);
16385
- var ReactInstrumentation = __webpack_require__(61);
16386
- var ReactUpdates = __webpack_require__(55);
16822
+ var ReactInstanceMap = __webpack_require__(124);
16823
+ var ReactInstrumentation = __webpack_require__(63);
16824
+ var ReactUpdates = __webpack_require__(57);
16387
16825
 
16388
16826
  var invariant = __webpack_require__(8);
16389
16827
  var warning = __webpack_require__(11);
@@ -16409,10 +16847,11 @@
16409
16847
  var internalInstance = ReactInstanceMap.get(publicInstance);
16410
16848
  if (!internalInstance) {
16411
16849
  if (process.env.NODE_ENV !== 'production') {
16850
+ var ctor = publicInstance.constructor;
16412
16851
  // Only warn when we have a callerName. Otherwise we should be silent.
16413
16852
  // We're probably calling from enqueueCallback. We don't want to warn
16414
16853
  // there because we already warned for the corresponding lifecycle method.
16415
- process.env.NODE_ENV !== 'production' ? warning(!callerName, '%s(...): Can only update a mounted or mounting component. ' + 'This usually means you called %s() on an unmounted component. ' + 'This is a no-op. Please check the code for the %s component.', callerName, callerName, publicInstance.constructor.displayName) : void 0;
16854
+ process.env.NODE_ENV !== 'production' ? warning(!callerName, '%s(...): Can only update a mounted or mounting component. ' + 'This usually means you called %s() on an unmounted component. ' + 'This is a no-op. Please check the code for the %s component.', callerName, callerName, ctor && (ctor.displayName || ctor.name) || 'ReactClass') : void 0;
16416
16855
  }
16417
16856
  return null;
16418
16857
  }
@@ -16593,78 +17032,7 @@
16593
17032
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
16594
17033
 
16595
17034
  /***/ },
16596
- /* 133 */
16597
- /***/ function(module, exports) {
16598
-
16599
- /**
16600
- * Copyright (c) 2013-present, Facebook, Inc.
16601
- * All rights reserved.
16602
- *
16603
- * This source code is licensed under the BSD-style license found in the
16604
- * LICENSE file in the root directory of this source tree. An additional grant
16605
- * of patent rights can be found in the PATENTS file in the same directory.
16606
- *
16607
- * @typechecks
16608
- *
16609
- */
16610
-
16611
- /*eslint-disable no-self-compare */
16612
-
16613
- 'use strict';
16614
-
16615
- var hasOwnProperty = Object.prototype.hasOwnProperty;
16616
-
16617
- /**
16618
- * inlined Object.is polyfill to avoid requiring consumers ship their own
16619
- * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
16620
- */
16621
- function is(x, y) {
16622
- // SameValue algorithm
16623
- if (x === y) {
16624
- // Steps 1-5, 7-10
16625
- // Steps 6.b-6.e: +0 != -0
16626
- return x !== 0 || 1 / x === 1 / y;
16627
- } else {
16628
- // Step 6.a: NaN == NaN
16629
- return x !== x && y !== y;
16630
- }
16631
- }
16632
-
16633
- /**
16634
- * Performs equality by iterating through keys on an object and returning false
16635
- * when any key has values which are not strictly equal between the arguments.
16636
- * Returns true when the values of all keys are strictly equal.
16637
- */
16638
- function shallowEqual(objA, objB) {
16639
- if (is(objA, objB)) {
16640
- return true;
16641
- }
16642
-
16643
- if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) {
16644
- return false;
16645
- }
16646
-
16647
- var keysA = Object.keys(objA);
16648
- var keysB = Object.keys(objB);
16649
-
16650
- if (keysA.length !== keysB.length) {
16651
- return false;
16652
- }
16653
-
16654
- // Test for A's keys different from B.
16655
- for (var i = 0; i < keysA.length; i++) {
16656
- if (!hasOwnProperty.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) {
16657
- return false;
16658
- }
16659
- }
16660
-
16661
- return true;
16662
- }
16663
-
16664
- module.exports = shallowEqual;
16665
-
16666
- /***/ },
16667
- /* 134 */
17035
+ /* 137 */
16668
17036
  /***/ function(module, exports, __webpack_require__) {
16669
17037
 
16670
17038
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -17039,7 +17407,7 @@
17039
17407
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
17040
17408
 
17041
17409
  /***/ },
17042
- /* 135 */
17410
+ /* 138 */
17043
17411
  /***/ function(module, exports, __webpack_require__) {
17044
17412
 
17045
17413
  /**
@@ -17057,8 +17425,8 @@
17057
17425
 
17058
17426
  var _assign = __webpack_require__(4);
17059
17427
 
17060
- var DOMLazyTree = __webpack_require__(80);
17061
- var ReactDOMComponentTree = __webpack_require__(35);
17428
+ var DOMLazyTree = __webpack_require__(83);
17429
+ var ReactDOMComponentTree = __webpack_require__(37);
17062
17430
 
17063
17431
  var ReactDOMEmptyComponent = function (instantiate) {
17064
17432
  // ReactCompositeComponent uses this:
@@ -17104,7 +17472,7 @@
17104
17472
  module.exports = ReactDOMEmptyComponent;
17105
17473
 
17106
17474
  /***/ },
17107
- /* 136 */
17475
+ /* 139 */
17108
17476
  /***/ function(module, exports, __webpack_require__) {
17109
17477
 
17110
17478
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -17246,7 +17614,7 @@
17246
17614
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
17247
17615
 
17248
17616
  /***/ },
17249
- /* 137 */
17617
+ /* 140 */
17250
17618
  /***/ function(module, exports, __webpack_require__) {
17251
17619
 
17252
17620
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -17265,14 +17633,14 @@
17265
17633
  var _prodInvariant = __webpack_require__(7),
17266
17634
  _assign = __webpack_require__(4);
17267
17635
 
17268
- var DOMChildrenOperations = __webpack_require__(79);
17269
- var DOMLazyTree = __webpack_require__(80);
17270
- var ReactDOMComponentTree = __webpack_require__(35);
17271
- var ReactInstrumentation = __webpack_require__(61);
17636
+ var DOMChildrenOperations = __webpack_require__(82);
17637
+ var DOMLazyTree = __webpack_require__(83);
17638
+ var ReactDOMComponentTree = __webpack_require__(37);
17639
+ var ReactInstrumentation = __webpack_require__(63);
17272
17640
 
17273
- var escapeTextContentForBrowser = __webpack_require__(85);
17641
+ var escapeTextContentForBrowser = __webpack_require__(88);
17274
17642
  var invariant = __webpack_require__(8);
17275
- var validateDOMNesting = __webpack_require__(134);
17643
+ var validateDOMNesting = __webpack_require__(137);
17276
17644
 
17277
17645
  /**
17278
17646
  * Text nodes violate a couple assumptions that React makes about components:
@@ -17423,7 +17791,7 @@
17423
17791
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
17424
17792
 
17425
17793
  /***/ },
17426
- /* 138 */
17794
+ /* 141 */
17427
17795
  /***/ function(module, exports, __webpack_require__) {
17428
17796
 
17429
17797
  /**
@@ -17441,8 +17809,8 @@
17441
17809
 
17442
17810
  var _assign = __webpack_require__(4);
17443
17811
 
17444
- var ReactUpdates = __webpack_require__(55);
17445
- var Transaction = __webpack_require__(67);
17812
+ var ReactUpdates = __webpack_require__(57);
17813
+ var Transaction = __webpack_require__(70);
17446
17814
 
17447
17815
  var emptyFunction = __webpack_require__(12);
17448
17816
 
@@ -17496,7 +17864,7 @@
17496
17864
  module.exports = ReactDefaultBatchingStrategy;
17497
17865
 
17498
17866
  /***/ },
17499
- /* 139 */
17867
+ /* 142 */
17500
17868
  /***/ function(module, exports, __webpack_require__) {
17501
17869
 
17502
17870
  /**
@@ -17514,14 +17882,14 @@
17514
17882
 
17515
17883
  var _assign = __webpack_require__(4);
17516
17884
 
17517
- var EventListener = __webpack_require__(140);
17518
- var ExecutionEnvironment = __webpack_require__(48);
17885
+ var EventListener = __webpack_require__(143);
17886
+ var ExecutionEnvironment = __webpack_require__(50);
17519
17887
  var PooledClass = __webpack_require__(6);
17520
- var ReactDOMComponentTree = __webpack_require__(35);
17521
- var ReactUpdates = __webpack_require__(55);
17888
+ var ReactDOMComponentTree = __webpack_require__(37);
17889
+ var ReactUpdates = __webpack_require__(57);
17522
17890
 
17523
- var getEventTarget = __webpack_require__(68);
17524
- var getUnboundedScrollPosition = __webpack_require__(141);
17891
+ var getEventTarget = __webpack_require__(71);
17892
+ var getUnboundedScrollPosition = __webpack_require__(144);
17525
17893
 
17526
17894
  /**
17527
17895
  * Find the deepest React component completely containing the root of the
@@ -17658,7 +18026,7 @@
17658
18026
  module.exports = ReactEventListener;
17659
18027
 
17660
18028
  /***/ },
17661
- /* 140 */
18029
+ /* 143 */
17662
18030
  /***/ function(module, exports, __webpack_require__) {
17663
18031
 
17664
18032
  /* WEBPACK VAR INJECTION */(function(process) {'use strict';
@@ -17747,7 +18115,7 @@
17747
18115
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
17748
18116
 
17749
18117
  /***/ },
17750
- /* 141 */
18118
+ /* 144 */
17751
18119
  /***/ function(module, exports) {
17752
18120
 
17753
18121
  /**
@@ -17790,7 +18158,7 @@
17790
18158
  module.exports = getUnboundedScrollPosition;
17791
18159
 
17792
18160
  /***/ },
17793
- /* 142 */
18161
+ /* 145 */
17794
18162
  /***/ function(module, exports, __webpack_require__) {
17795
18163
 
17796
18164
  /**
@@ -17806,15 +18174,15 @@
17806
18174
 
17807
18175
  'use strict';
17808
18176
 
17809
- var DOMProperty = __webpack_require__(36);
17810
- var EventPluginHub = __webpack_require__(42);
17811
- var EventPluginUtils = __webpack_require__(44);
17812
- var ReactComponentEnvironment = __webpack_require__(120);
17813
- var ReactClass = __webpack_require__(20);
17814
- var ReactEmptyComponent = __webpack_require__(127);
17815
- var ReactBrowserEventEmitter = __webpack_require__(109);
17816
- var ReactHostComponent = __webpack_require__(128);
17817
- var ReactUpdates = __webpack_require__(55);
18177
+ var DOMProperty = __webpack_require__(38);
18178
+ var EventPluginHub = __webpack_require__(44);
18179
+ var EventPluginUtils = __webpack_require__(46);
18180
+ var ReactComponentEnvironment = __webpack_require__(123);
18181
+ var ReactClass = __webpack_require__(21);
18182
+ var ReactEmptyComponent = __webpack_require__(131);
18183
+ var ReactBrowserEventEmitter = __webpack_require__(112);
18184
+ var ReactHostComponent = __webpack_require__(132);
18185
+ var ReactUpdates = __webpack_require__(57);
17818
18186
 
17819
18187
  var ReactInjection = {
17820
18188
  Component: ReactComponentEnvironment.injection,
@@ -17831,7 +18199,7 @@
17831
18199
  module.exports = ReactInjection;
17832
18200
 
17833
18201
  /***/ },
17834
- /* 143 */
18202
+ /* 146 */
17835
18203
  /***/ function(module, exports, __webpack_require__) {
17836
18204
 
17837
18205
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -17849,13 +18217,13 @@
17849
18217
 
17850
18218
  var _assign = __webpack_require__(4);
17851
18219
 
17852
- var CallbackQueue = __webpack_require__(56);
18220
+ var CallbackQueue = __webpack_require__(58);
17853
18221
  var PooledClass = __webpack_require__(6);
17854
- var ReactBrowserEventEmitter = __webpack_require__(109);
17855
- var ReactInputSelection = __webpack_require__(144);
17856
- var ReactInstrumentation = __webpack_require__(61);
17857
- var Transaction = __webpack_require__(67);
17858
- var ReactUpdateQueue = __webpack_require__(132);
18222
+ var ReactBrowserEventEmitter = __webpack_require__(112);
18223
+ var ReactInputSelection = __webpack_require__(147);
18224
+ var ReactInstrumentation = __webpack_require__(63);
18225
+ var Transaction = __webpack_require__(70);
18226
+ var ReactUpdateQueue = __webpack_require__(136);
17859
18227
 
17860
18228
  /**
17861
18229
  * Ensures that, when possible, the selection range (currently selected text
@@ -18015,7 +18383,7 @@
18015
18383
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
18016
18384
 
18017
18385
  /***/ },
18018
- /* 144 */
18386
+ /* 147 */
18019
18387
  /***/ function(module, exports, __webpack_require__) {
18020
18388
 
18021
18389
  /**
@@ -18031,11 +18399,11 @@
18031
18399
 
18032
18400
  'use strict';
18033
18401
 
18034
- var ReactDOMSelection = __webpack_require__(145);
18402
+ var ReactDOMSelection = __webpack_require__(148);
18035
18403
 
18036
- var containsNode = __webpack_require__(147);
18037
- var focusNode = __webpack_require__(94);
18038
- var getActiveElement = __webpack_require__(150);
18404
+ var containsNode = __webpack_require__(150);
18405
+ var focusNode = __webpack_require__(97);
18406
+ var getActiveElement = __webpack_require__(153);
18039
18407
 
18040
18408
  function isInDocument(node) {
18041
18409
  return containsNode(document.documentElement, node);
@@ -18144,7 +18512,7 @@
18144
18512
  module.exports = ReactInputSelection;
18145
18513
 
18146
18514
  /***/ },
18147
- /* 145 */
18515
+ /* 148 */
18148
18516
  /***/ function(module, exports, __webpack_require__) {
18149
18517
 
18150
18518
  /**
@@ -18160,10 +18528,10 @@
18160
18528
 
18161
18529
  'use strict';
18162
18530
 
18163
- var ExecutionEnvironment = __webpack_require__(48);
18531
+ var ExecutionEnvironment = __webpack_require__(50);
18164
18532
 
18165
- var getNodeForCharacterOffset = __webpack_require__(146);
18166
- var getTextContentAccessor = __webpack_require__(50);
18533
+ var getNodeForCharacterOffset = __webpack_require__(149);
18534
+ var getTextContentAccessor = __webpack_require__(52);
18167
18535
 
18168
18536
  /**
18169
18537
  * While `isCollapsed` is available on the Selection object and `collapsed`
@@ -18361,7 +18729,7 @@
18361
18729
  module.exports = ReactDOMSelection;
18362
18730
 
18363
18731
  /***/ },
18364
- /* 146 */
18732
+ /* 149 */
18365
18733
  /***/ function(module, exports) {
18366
18734
 
18367
18735
  /**
@@ -18440,7 +18808,7 @@
18440
18808
  module.exports = getNodeForCharacterOffset;
18441
18809
 
18442
18810
  /***/ },
18443
- /* 147 */
18811
+ /* 150 */
18444
18812
  /***/ function(module, exports, __webpack_require__) {
18445
18813
 
18446
18814
  'use strict';
@@ -18456,7 +18824,7 @@
18456
18824
  *
18457
18825
  */
18458
18826
 
18459
- var isTextNode = __webpack_require__(148);
18827
+ var isTextNode = __webpack_require__(151);
18460
18828
 
18461
18829
  /*eslint-disable no-bitwise */
18462
18830
 
@@ -18484,7 +18852,7 @@
18484
18852
  module.exports = containsNode;
18485
18853
 
18486
18854
  /***/ },
18487
- /* 148 */
18855
+ /* 151 */
18488
18856
  /***/ function(module, exports, __webpack_require__) {
18489
18857
 
18490
18858
  'use strict';
@@ -18500,7 +18868,7 @@
18500
18868
  * @typechecks
18501
18869
  */
18502
18870
 
18503
- var isNode = __webpack_require__(149);
18871
+ var isNode = __webpack_require__(152);
18504
18872
 
18505
18873
  /**
18506
18874
  * @param {*} object The object to check.
@@ -18513,7 +18881,7 @@
18513
18881
  module.exports = isTextNode;
18514
18882
 
18515
18883
  /***/ },
18516
- /* 149 */
18884
+ /* 152 */
18517
18885
  /***/ function(module, exports) {
18518
18886
 
18519
18887
  'use strict';
@@ -18540,7 +18908,7 @@
18540
18908
  module.exports = isNode;
18541
18909
 
18542
18910
  /***/ },
18543
- /* 150 */
18911
+ /* 153 */
18544
18912
  /***/ function(module, exports) {
18545
18913
 
18546
18914
  'use strict';
@@ -18579,7 +18947,7 @@
18579
18947
  module.exports = getActiveElement;
18580
18948
 
18581
18949
  /***/ },
18582
- /* 151 */
18950
+ /* 154 */
18583
18951
  /***/ function(module, exports) {
18584
18952
 
18585
18953
  /**
@@ -18847,6 +19215,8 @@
18847
19215
  xlinkTitle: 'xlink:title',
18848
19216
  xlinkType: 'xlink:type',
18849
19217
  xmlBase: 'xml:base',
19218
+ xmlns: 0,
19219
+ xmlnsXlink: 'xmlns:xlink',
18850
19220
  xmlLang: 'xml:lang',
18851
19221
  xmlSpace: 'xml:space',
18852
19222
  y: 0,
@@ -18884,7 +19254,7 @@
18884
19254
  module.exports = SVGDOMPropertyConfig;
18885
19255
 
18886
19256
  /***/ },
18887
- /* 152 */
19257
+ /* 155 */
18888
19258
  /***/ function(module, exports, __webpack_require__) {
18889
19259
 
18890
19260
  /**
@@ -18900,17 +19270,17 @@
18900
19270
 
18901
19271
  'use strict';
18902
19272
 
18903
- var EventConstants = __webpack_require__(40);
18904
- var EventPropagators = __webpack_require__(41);
18905
- var ExecutionEnvironment = __webpack_require__(48);
18906
- var ReactDOMComponentTree = __webpack_require__(35);
18907
- var ReactInputSelection = __webpack_require__(144);
18908
- var SyntheticEvent = __webpack_require__(52);
19273
+ var EventConstants = __webpack_require__(42);
19274
+ var EventPropagators = __webpack_require__(43);
19275
+ var ExecutionEnvironment = __webpack_require__(50);
19276
+ var ReactDOMComponentTree = __webpack_require__(37);
19277
+ var ReactInputSelection = __webpack_require__(147);
19278
+ var SyntheticEvent = __webpack_require__(54);
18909
19279
 
18910
- var getActiveElement = __webpack_require__(150);
18911
- var isTextInputElement = __webpack_require__(70);
18912
- var keyOf = __webpack_require__(24);
18913
- var shallowEqual = __webpack_require__(133);
19280
+ var getActiveElement = __webpack_require__(153);
19281
+ var isTextInputElement = __webpack_require__(73);
19282
+ var keyOf = __webpack_require__(25);
19283
+ var shallowEqual = __webpack_require__(129);
18914
19284
 
18915
19285
  var topLevelTypes = EventConstants.topLevelTypes;
18916
19286
 
@@ -19085,7 +19455,7 @@
19085
19455
  module.exports = SelectEventPlugin;
19086
19456
 
19087
19457
  /***/ },
19088
- /* 153 */
19458
+ /* 156 */
19089
19459
  /***/ function(module, exports, __webpack_require__) {
19090
19460
 
19091
19461
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -19103,26 +19473,26 @@
19103
19473
 
19104
19474
  var _prodInvariant = __webpack_require__(7);
19105
19475
 
19106
- var EventConstants = __webpack_require__(40);
19107
- var EventListener = __webpack_require__(140);
19108
- var EventPropagators = __webpack_require__(41);
19109
- var ReactDOMComponentTree = __webpack_require__(35);
19110
- var SyntheticAnimationEvent = __webpack_require__(154);
19111
- var SyntheticClipboardEvent = __webpack_require__(155);
19112
- var SyntheticEvent = __webpack_require__(52);
19113
- var SyntheticFocusEvent = __webpack_require__(156);
19114
- var SyntheticKeyboardEvent = __webpack_require__(157);
19115
- var SyntheticMouseEvent = __webpack_require__(73);
19116
- var SyntheticDragEvent = __webpack_require__(160);
19117
- var SyntheticTouchEvent = __webpack_require__(161);
19118
- var SyntheticTransitionEvent = __webpack_require__(162);
19119
- var SyntheticUIEvent = __webpack_require__(74);
19120
- var SyntheticWheelEvent = __webpack_require__(163);
19476
+ var EventConstants = __webpack_require__(42);
19477
+ var EventListener = __webpack_require__(143);
19478
+ var EventPropagators = __webpack_require__(43);
19479
+ var ReactDOMComponentTree = __webpack_require__(37);
19480
+ var SyntheticAnimationEvent = __webpack_require__(157);
19481
+ var SyntheticClipboardEvent = __webpack_require__(158);
19482
+ var SyntheticEvent = __webpack_require__(54);
19483
+ var SyntheticFocusEvent = __webpack_require__(159);
19484
+ var SyntheticKeyboardEvent = __webpack_require__(160);
19485
+ var SyntheticMouseEvent = __webpack_require__(76);
19486
+ var SyntheticDragEvent = __webpack_require__(163);
19487
+ var SyntheticTouchEvent = __webpack_require__(164);
19488
+ var SyntheticTransitionEvent = __webpack_require__(165);
19489
+ var SyntheticUIEvent = __webpack_require__(77);
19490
+ var SyntheticWheelEvent = __webpack_require__(166);
19121
19491
 
19122
19492
  var emptyFunction = __webpack_require__(12);
19123
- var getEventCharCode = __webpack_require__(158);
19493
+ var getEventCharCode = __webpack_require__(161);
19124
19494
  var invariant = __webpack_require__(8);
19125
- var keyOf = __webpack_require__(24);
19495
+ var keyOf = __webpack_require__(25);
19126
19496
 
19127
19497
  var topLevelTypes = EventConstants.topLevelTypes;
19128
19498
 
@@ -19575,6 +19945,10 @@
19575
19945
  var ON_CLICK_KEY = keyOf({ onClick: null });
19576
19946
  var onClickListeners = {};
19577
19947
 
19948
+ function getDictionaryKey(inst) {
19949
+ return '.' + inst._rootNodeID;
19950
+ }
19951
+
19578
19952
  var SimpleEventPlugin = {
19579
19953
 
19580
19954
  eventTypes: eventTypes,
@@ -19698,19 +20072,19 @@
19698
20072
  // fire. The workaround for this bug involves attaching an empty click
19699
20073
  // listener on the target node.
19700
20074
  if (registrationName === ON_CLICK_KEY) {
19701
- var id = inst._rootNodeID;
20075
+ var key = getDictionaryKey(inst);
19702
20076
  var node = ReactDOMComponentTree.getNodeFromInstance(inst);
19703
- if (!onClickListeners[id]) {
19704
- onClickListeners[id] = EventListener.listen(node, 'click', emptyFunction);
20077
+ if (!onClickListeners[key]) {
20078
+ onClickListeners[key] = EventListener.listen(node, 'click', emptyFunction);
19705
20079
  }
19706
20080
  }
19707
20081
  },
19708
20082
 
19709
20083
  willDeleteListener: function (inst, registrationName) {
19710
20084
  if (registrationName === ON_CLICK_KEY) {
19711
- var id = inst._rootNodeID;
19712
- onClickListeners[id].remove();
19713
- delete onClickListeners[id];
20085
+ var key = getDictionaryKey(inst);
20086
+ onClickListeners[key].remove();
20087
+ delete onClickListeners[key];
19714
20088
  }
19715
20089
  }
19716
20090
 
@@ -19720,7 +20094,7 @@
19720
20094
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
19721
20095
 
19722
20096
  /***/ },
19723
- /* 154 */
20097
+ /* 157 */
19724
20098
  /***/ function(module, exports, __webpack_require__) {
19725
20099
 
19726
20100
  /**
@@ -19736,7 +20110,7 @@
19736
20110
 
19737
20111
  'use strict';
19738
20112
 
19739
- var SyntheticEvent = __webpack_require__(52);
20113
+ var SyntheticEvent = __webpack_require__(54);
19740
20114
 
19741
20115
  /**
19742
20116
  * @interface Event
@@ -19764,7 +20138,7 @@
19764
20138
  module.exports = SyntheticAnimationEvent;
19765
20139
 
19766
20140
  /***/ },
19767
- /* 155 */
20141
+ /* 158 */
19768
20142
  /***/ function(module, exports, __webpack_require__) {
19769
20143
 
19770
20144
  /**
@@ -19780,7 +20154,7 @@
19780
20154
 
19781
20155
  'use strict';
19782
20156
 
19783
- var SyntheticEvent = __webpack_require__(52);
20157
+ var SyntheticEvent = __webpack_require__(54);
19784
20158
 
19785
20159
  /**
19786
20160
  * @interface Event
@@ -19807,7 +20181,7 @@
19807
20181
  module.exports = SyntheticClipboardEvent;
19808
20182
 
19809
20183
  /***/ },
19810
- /* 156 */
20184
+ /* 159 */
19811
20185
  /***/ function(module, exports, __webpack_require__) {
19812
20186
 
19813
20187
  /**
@@ -19823,7 +20197,7 @@
19823
20197
 
19824
20198
  'use strict';
19825
20199
 
19826
- var SyntheticUIEvent = __webpack_require__(74);
20200
+ var SyntheticUIEvent = __webpack_require__(77);
19827
20201
 
19828
20202
  /**
19829
20203
  * @interface FocusEvent
@@ -19848,7 +20222,7 @@
19848
20222
  module.exports = SyntheticFocusEvent;
19849
20223
 
19850
20224
  /***/ },
19851
- /* 157 */
20225
+ /* 160 */
19852
20226
  /***/ function(module, exports, __webpack_require__) {
19853
20227
 
19854
20228
  /**
@@ -19864,11 +20238,11 @@
19864
20238
 
19865
20239
  'use strict';
19866
20240
 
19867
- var SyntheticUIEvent = __webpack_require__(74);
20241
+ var SyntheticUIEvent = __webpack_require__(77);
19868
20242
 
19869
- var getEventCharCode = __webpack_require__(158);
19870
- var getEventKey = __webpack_require__(159);
19871
- var getEventModifierState = __webpack_require__(76);
20243
+ var getEventCharCode = __webpack_require__(161);
20244
+ var getEventKey = __webpack_require__(162);
20245
+ var getEventModifierState = __webpack_require__(79);
19872
20246
 
19873
20247
  /**
19874
20248
  * @interface KeyboardEvent
@@ -19937,7 +20311,7 @@
19937
20311
  module.exports = SyntheticKeyboardEvent;
19938
20312
 
19939
20313
  /***/ },
19940
- /* 158 */
20314
+ /* 161 */
19941
20315
  /***/ function(module, exports) {
19942
20316
 
19943
20317
  /**
@@ -19992,7 +20366,7 @@
19992
20366
  module.exports = getEventCharCode;
19993
20367
 
19994
20368
  /***/ },
19995
- /* 159 */
20369
+ /* 162 */
19996
20370
  /***/ function(module, exports, __webpack_require__) {
19997
20371
 
19998
20372
  /**
@@ -20008,7 +20382,7 @@
20008
20382
 
20009
20383
  'use strict';
20010
20384
 
20011
- var getEventCharCode = __webpack_require__(158);
20385
+ var getEventCharCode = __webpack_require__(161);
20012
20386
 
20013
20387
  /**
20014
20388
  * Normalization of deprecated HTML5 `key` values
@@ -20099,7 +20473,7 @@
20099
20473
  module.exports = getEventKey;
20100
20474
 
20101
20475
  /***/ },
20102
- /* 160 */
20476
+ /* 163 */
20103
20477
  /***/ function(module, exports, __webpack_require__) {
20104
20478
 
20105
20479
  /**
@@ -20115,7 +20489,7 @@
20115
20489
 
20116
20490
  'use strict';
20117
20491
 
20118
- var SyntheticMouseEvent = __webpack_require__(73);
20492
+ var SyntheticMouseEvent = __webpack_require__(76);
20119
20493
 
20120
20494
  /**
20121
20495
  * @interface DragEvent
@@ -20140,7 +20514,7 @@
20140
20514
  module.exports = SyntheticDragEvent;
20141
20515
 
20142
20516
  /***/ },
20143
- /* 161 */
20517
+ /* 164 */
20144
20518
  /***/ function(module, exports, __webpack_require__) {
20145
20519
 
20146
20520
  /**
@@ -20156,9 +20530,9 @@
20156
20530
 
20157
20531
  'use strict';
20158
20532
 
20159
- var SyntheticUIEvent = __webpack_require__(74);
20533
+ var SyntheticUIEvent = __webpack_require__(77);
20160
20534
 
20161
- var getEventModifierState = __webpack_require__(76);
20535
+ var getEventModifierState = __webpack_require__(79);
20162
20536
 
20163
20537
  /**
20164
20538
  * @interface TouchEvent
@@ -20190,7 +20564,7 @@
20190
20564
  module.exports = SyntheticTouchEvent;
20191
20565
 
20192
20566
  /***/ },
20193
- /* 162 */
20567
+ /* 165 */
20194
20568
  /***/ function(module, exports, __webpack_require__) {
20195
20569
 
20196
20570
  /**
@@ -20206,7 +20580,7 @@
20206
20580
 
20207
20581
  'use strict';
20208
20582
 
20209
- var SyntheticEvent = __webpack_require__(52);
20583
+ var SyntheticEvent = __webpack_require__(54);
20210
20584
 
20211
20585
  /**
20212
20586
  * @interface Event
@@ -20234,7 +20608,7 @@
20234
20608
  module.exports = SyntheticTransitionEvent;
20235
20609
 
20236
20610
  /***/ },
20237
- /* 163 */
20611
+ /* 166 */
20238
20612
  /***/ function(module, exports, __webpack_require__) {
20239
20613
 
20240
20614
  /**
@@ -20250,7 +20624,7 @@
20250
20624
 
20251
20625
  'use strict';
20252
20626
 
20253
- var SyntheticMouseEvent = __webpack_require__(73);
20627
+ var SyntheticMouseEvent = __webpack_require__(76);
20254
20628
 
20255
20629
  /**
20256
20630
  * @interface WheelEvent
@@ -20293,7 +20667,7 @@
20293
20667
  module.exports = SyntheticWheelEvent;
20294
20668
 
20295
20669
  /***/ },
20296
- /* 164 */
20670
+ /* 167 */
20297
20671
  /***/ function(module, exports, __webpack_require__) {
20298
20672
 
20299
20673
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -20311,27 +20685,27 @@
20311
20685
 
20312
20686
  var _prodInvariant = __webpack_require__(7);
20313
20687
 
20314
- var DOMLazyTree = __webpack_require__(80);
20315
- var DOMProperty = __webpack_require__(36);
20316
- var ReactBrowserEventEmitter = __webpack_require__(109);
20688
+ var DOMLazyTree = __webpack_require__(83);
20689
+ var DOMProperty = __webpack_require__(38);
20690
+ var ReactBrowserEventEmitter = __webpack_require__(112);
20317
20691
  var ReactCurrentOwner = __webpack_require__(10);
20318
- var ReactDOMComponentTree = __webpack_require__(35);
20319
- var ReactDOMContainerInfo = __webpack_require__(165);
20320
- var ReactDOMFeatureFlags = __webpack_require__(166);
20692
+ var ReactDOMComponentTree = __webpack_require__(37);
20693
+ var ReactDOMContainerInfo = __webpack_require__(168);
20694
+ var ReactDOMFeatureFlags = __webpack_require__(169);
20321
20695
  var ReactElement = __webpack_require__(9);
20322
- var ReactFeatureFlags = __webpack_require__(57);
20323
- var ReactInstanceMap = __webpack_require__(121);
20324
- var ReactInstrumentation = __webpack_require__(61);
20325
- var ReactMarkupChecksum = __webpack_require__(167);
20326
- var ReactReconciler = __webpack_require__(58);
20327
- var ReactUpdateQueue = __webpack_require__(132);
20328
- var ReactUpdates = __webpack_require__(55);
20696
+ var ReactFeatureFlags = __webpack_require__(59);
20697
+ var ReactInstanceMap = __webpack_require__(124);
20698
+ var ReactInstrumentation = __webpack_require__(63);
20699
+ var ReactMarkupChecksum = __webpack_require__(170);
20700
+ var ReactReconciler = __webpack_require__(60);
20701
+ var ReactUpdateQueue = __webpack_require__(136);
20702
+ var ReactUpdates = __webpack_require__(57);
20329
20703
 
20330
20704
  var emptyObject = __webpack_require__(19);
20331
- var instantiateReactComponent = __webpack_require__(123);
20705
+ var instantiateReactComponent = __webpack_require__(126);
20332
20706
  var invariant = __webpack_require__(8);
20333
- var setInnerHTML = __webpack_require__(82);
20334
- var shouldUpdateReactComponent = __webpack_require__(126);
20707
+ var setInnerHTML = __webpack_require__(85);
20708
+ var shouldUpdateReactComponent = __webpack_require__(130);
20335
20709
  var warning = __webpack_require__(11);
20336
20710
 
20337
20711
  var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
@@ -20798,7 +21172,7 @@
20798
21172
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
20799
21173
 
20800
21174
  /***/ },
20801
- /* 165 */
21175
+ /* 168 */
20802
21176
  /***/ function(module, exports, __webpack_require__) {
20803
21177
 
20804
21178
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -20814,7 +21188,7 @@
20814
21188
 
20815
21189
  'use strict';
20816
21190
 
20817
- var validateDOMNesting = __webpack_require__(134);
21191
+ var validateDOMNesting = __webpack_require__(137);
20818
21192
 
20819
21193
  var DOC_NODE_TYPE = 9;
20820
21194
 
@@ -20837,7 +21211,7 @@
20837
21211
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
20838
21212
 
20839
21213
  /***/ },
20840
- /* 166 */
21214
+ /* 169 */
20841
21215
  /***/ function(module, exports) {
20842
21216
 
20843
21217
  /**
@@ -20860,7 +21234,7 @@
20860
21234
  module.exports = ReactDOMFeatureFlags;
20861
21235
 
20862
21236
  /***/ },
20863
- /* 167 */
21237
+ /* 170 */
20864
21238
  /***/ function(module, exports, __webpack_require__) {
20865
21239
 
20866
21240
  /**
@@ -20876,7 +21250,7 @@
20876
21250
 
20877
21251
  'use strict';
20878
21252
 
20879
- var adler32 = __webpack_require__(168);
21253
+ var adler32 = __webpack_require__(171);
20880
21254
 
20881
21255
  var TAG_END = /\/?>/;
20882
21256
  var COMMENT_START = /^<\!\-\-/;
@@ -20915,7 +21289,7 @@
20915
21289
  module.exports = ReactMarkupChecksum;
20916
21290
 
20917
21291
  /***/ },
20918
- /* 168 */
21292
+ /* 171 */
20919
21293
  /***/ function(module, exports) {
20920
21294
 
20921
21295
  /**
@@ -20964,7 +21338,7 @@
20964
21338
  module.exports = adler32;
20965
21339
 
20966
21340
  /***/ },
20967
- /* 169 */
21341
+ /* 172 */
20968
21342
  /***/ function(module, exports, __webpack_require__) {
20969
21343
 
20970
21344
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -20983,10 +21357,10 @@
20983
21357
  var _prodInvariant = __webpack_require__(7);
20984
21358
 
20985
21359
  var ReactCurrentOwner = __webpack_require__(10);
20986
- var ReactDOMComponentTree = __webpack_require__(35);
20987
- var ReactInstanceMap = __webpack_require__(121);
21360
+ var ReactDOMComponentTree = __webpack_require__(37);
21361
+ var ReactInstanceMap = __webpack_require__(124);
20988
21362
 
20989
- var getHostComponentFromComposite = __webpack_require__(170);
21363
+ var getHostComponentFromComposite = __webpack_require__(173);
20990
21364
  var invariant = __webpack_require__(8);
20991
21365
  var warning = __webpack_require__(11);
20992
21366
 
@@ -21030,7 +21404,7 @@
21030
21404
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
21031
21405
 
21032
21406
  /***/ },
21033
- /* 170 */
21407
+ /* 173 */
21034
21408
  /***/ function(module, exports, __webpack_require__) {
21035
21409
 
21036
21410
  /**
@@ -21046,7 +21420,7 @@
21046
21420
 
21047
21421
  'use strict';
21048
21422
 
21049
- var ReactNodeTypes = __webpack_require__(125);
21423
+ var ReactNodeTypes = __webpack_require__(128);
21050
21424
 
21051
21425
  function getHostComponentFromComposite(inst) {
21052
21426
  var type;
@@ -21065,7 +21439,7 @@
21065
21439
  module.exports = getHostComponentFromComposite;
21066
21440
 
21067
21441
  /***/ },
21068
- /* 171 */
21442
+ /* 174 */
21069
21443
  /***/ function(module, exports, __webpack_require__) {
21070
21444
 
21071
21445
  /**
@@ -21081,14 +21455,11 @@
21081
21455
 
21082
21456
  'use strict';
21083
21457
 
21084
- var ReactMount = __webpack_require__(164);
21458
+ var ReactMount = __webpack_require__(167);
21085
21459
 
21086
21460
  module.exports = ReactMount.renderSubtreeIntoContainer;
21087
21461
 
21088
21462
  /***/ },
21089
- /* 172 */,
21090
- /* 173 */,
21091
- /* 174 */,
21092
21463
  /* 175 */,
21093
21464
  /* 176 */,
21094
21465
  /* 177 */,
@@ -21110,16 +21481,19 @@
21110
21481
  /* 193 */,
21111
21482
  /* 194 */,
21112
21483
  /* 195 */,
21113
- /* 196 */
21484
+ /* 196 */,
21485
+ /* 197 */,
21486
+ /* 198 */,
21487
+ /* 199 */
21114
21488
  /***/ function(module, exports, __webpack_require__) {
21115
21489
 
21116
21490
  'use strict';
21117
21491
 
21118
- module.exports = __webpack_require__(197);
21492
+ module.exports = __webpack_require__(200);
21119
21493
 
21120
21494
 
21121
21495
  /***/ },
21122
- /* 197 */
21496
+ /* 200 */
21123
21497
  /***/ function(module, exports, __webpack_require__) {
21124
21498
 
21125
21499
  /**
@@ -21135,9 +21509,9 @@
21135
21509
 
21136
21510
  'use strict';
21137
21511
 
21138
- var ReactDefaultInjection = __webpack_require__(38);
21139
- var ReactServerRendering = __webpack_require__(198);
21140
- var ReactVersion = __webpack_require__(31);
21512
+ var ReactDefaultInjection = __webpack_require__(40);
21513
+ var ReactServerRendering = __webpack_require__(201);
21514
+ var ReactVersion = __webpack_require__(33);
21141
21515
 
21142
21516
  ReactDefaultInjection.inject();
21143
21517
 
@@ -21150,7 +21524,7 @@
21150
21524
  module.exports = ReactDOMServer;
21151
21525
 
21152
21526
  /***/ },
21153
- /* 198 */
21527
+ /* 201 */
21154
21528
  /***/ function(module, exports, __webpack_require__) {
21155
21529
 
21156
21530
  /* WEBPACK VAR INJECTION */(function(process) {/**
@@ -21167,20 +21541,22 @@
21167
21541
 
21168
21542
  var _prodInvariant = __webpack_require__(7);
21169
21543
 
21170
- var ReactDOMContainerInfo = __webpack_require__(165);
21171
- var ReactDefaultBatchingStrategy = __webpack_require__(138);
21544
+ var ReactDOMContainerInfo = __webpack_require__(168);
21545
+ var ReactDefaultBatchingStrategy = __webpack_require__(141);
21172
21546
  var ReactElement = __webpack_require__(9);
21173
- var ReactInstrumentation = __webpack_require__(61);
21174
- var ReactMarkupChecksum = __webpack_require__(167);
21175
- var ReactReconciler = __webpack_require__(58);
21176
- var ReactServerBatchingStrategy = __webpack_require__(199);
21177
- var ReactServerRenderingTransaction = __webpack_require__(130);
21178
- var ReactUpdates = __webpack_require__(55);
21547
+ var ReactInstrumentation = __webpack_require__(63);
21548
+ var ReactMarkupChecksum = __webpack_require__(170);
21549
+ var ReactReconciler = __webpack_require__(60);
21550
+ var ReactServerBatchingStrategy = __webpack_require__(202);
21551
+ var ReactServerRenderingTransaction = __webpack_require__(134);
21552
+ var ReactUpdates = __webpack_require__(57);
21179
21553
 
21180
21554
  var emptyObject = __webpack_require__(19);
21181
- var instantiateReactComponent = __webpack_require__(123);
21555
+ var instantiateReactComponent = __webpack_require__(126);
21182
21556
  var invariant = __webpack_require__(8);
21183
21557
 
21558
+ var pendingTransactions = 0;
21559
+
21184
21560
  /**
21185
21561
  * @param {ReactElement} element
21186
21562
  * @return {string} the HTML markup
@@ -21192,6 +21568,8 @@
21192
21568
 
21193
21569
  transaction = ReactServerRenderingTransaction.getPooled(makeStaticMarkup);
21194
21570
 
21571
+ pendingTransactions++;
21572
+
21195
21573
  return transaction.perform(function () {
21196
21574
  var componentInstance = instantiateReactComponent(element, true);
21197
21575
  var markup = ReactReconciler.mountComponent(componentInstance, transaction, null, ReactDOMContainerInfo(), emptyObject);
@@ -21204,10 +21582,13 @@
21204
21582
  return markup;
21205
21583
  }, null);
21206
21584
  } finally {
21585
+ pendingTransactions--;
21207
21586
  ReactServerRenderingTransaction.release(transaction);
21208
21587
  // Revert to the DOM batching strategy since these two renderers
21209
21588
  // currently share these stateful modules.
21210
- ReactUpdates.injection.injectBatchingStrategy(ReactDefaultBatchingStrategy);
21589
+ if (!pendingTransactions) {
21590
+ ReactUpdates.injection.injectBatchingStrategy(ReactDefaultBatchingStrategy);
21591
+ }
21211
21592
  }
21212
21593
  }
21213
21594
 
@@ -21238,7 +21619,7 @@
21238
21619
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
21239
21620
 
21240
21621
  /***/ },
21241
- /* 199 */
21622
+ /* 202 */
21242
21623
  /***/ function(module, exports) {
21243
21624
 
21244
21625
  /**