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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -1
- data/README.md +5 -4
- data/lib/assets/react-source/development-with-addons/react-server.js +1200 -815
- data/lib/assets/react-source/development-with-addons/react.js +1161 -783
- data/lib/assets/react-source/development/react-server.js +1110 -729
- data/lib/assets/react-source/development/react.js +1081 -707
- data/lib/assets/react-source/production-with-addons/react-server.js +6 -6
- data/lib/assets/react-source/production-with-addons/react.js +6 -6
- data/lib/assets/react-source/production/react-server.js +6 -6
- data/lib/assets/react-source/production/react.js +6 -6
- data/lib/react/rails/railtie.rb +3 -1
- data/lib/react/rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05bdf78ad02169578227f8c9d3ea5f1c5e48924d
|
4
|
+
data.tar.gz: 70964006fa4e5ffc253df1f1f632e49eb938f0ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99a66d4d850b409390205d7362797d2c71f9e59341e8c3452d4e76f01e2d3cc5371de9f1ad6fbae0da5170c6072dd343d18278cac4624f8839fe87da98c04e2e
|
7
|
+
data.tar.gz: b283b0cc9a0e77c93358f24f6c3ff24aecd899424d772e97149666151a3383ca6e9c0eacbe3abb43224d0c70ea5a698702dc6143fece4407393cfc2a12fd9f52
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -378,13 +378,14 @@ Any subclass of `ExecJSRenderer` may use those hooks (for example, `SprocketsRen
|
|
378
378
|
|
379
379
|
`react-rails` provides two transformers, `React::JSX::JSXTransformer` and `React::JSX::BabelTransformer`.
|
380
380
|
|
381
|
-
### Sprockets 4
|
382
|
-
|
383
|
-
Support for Sprockets 4.x is currently a work in progress, and not fully featured. Use at your own risk!
|
384
|
-
|
385
381
|
### Related Projects
|
386
382
|
|
387
383
|
- [react\_on\_rails Gem](https://github.com/shakacode/react_on_rails): Webpack Integration of React with Rails utilizing the modern JavaScript tooling and libraries, including Webpack, Babel, React, Redux, React-Router. You can an example of this live at [www.reactrails.com](http://www.reactrails.com).
|
388
384
|
- [React.rb](http://reactrb.org/): Use Ruby to build reactive user interfaces with React under the covers.[github source code here](https://github.com/zetachang/react.rb).
|
389
385
|
- [react-rails-hot-loader](https://github.com/rmosolgo/react-rails-hot-loader) is a simple live-reloader for `react-rails`.
|
390
386
|
- [react-rails-benchmark_renderer](https://github.com/pboling/react-rails-benchmark_renderer) adds performance instrumentation to server rendering.
|
387
|
+
|
388
|
+
## Development
|
389
|
+
|
390
|
+
- Run tests with `rake test` or `appraisal rake test`
|
391
|
+
- Update React assets with `rake react:update`
|
@@ -45,10 +45,10 @@
|
|
45
45
|
/***/ function(module, exports, __webpack_require__) {
|
46
46
|
|
47
47
|
var React = __webpack_require__(1);
|
48
|
-
var ReactDOM = __webpack_require__(
|
49
|
-
var ReactDOMServer = __webpack_require__(
|
48
|
+
var ReactDOM = __webpack_require__(35);
|
49
|
+
var ReactDOMServer = __webpack_require__(199);
|
50
50
|
|
51
|
-
React.addons = __webpack_require__(
|
51
|
+
React.addons = __webpack_require__(175);
|
52
52
|
|
53
53
|
window.React = React;
|
54
54
|
window.ReactDOM = ReactDOM;
|
@@ -85,13 +85,14 @@
|
|
85
85
|
|
86
86
|
var ReactChildren = __webpack_require__(5);
|
87
87
|
var ReactComponent = __webpack_require__(17);
|
88
|
-
var
|
89
|
-
var
|
88
|
+
var ReactPureComponent = __webpack_require__(20);
|
89
|
+
var ReactClass = __webpack_require__(21);
|
90
|
+
var ReactDOMFactories = __webpack_require__(26);
|
90
91
|
var ReactElement = __webpack_require__(9);
|
91
|
-
var ReactPropTypes = __webpack_require__(
|
92
|
-
var ReactVersion = __webpack_require__(
|
92
|
+
var ReactPropTypes = __webpack_require__(32);
|
93
|
+
var ReactVersion = __webpack_require__(33);
|
93
94
|
|
94
|
-
var onlyChild = __webpack_require__(
|
95
|
+
var onlyChild = __webpack_require__(34);
|
95
96
|
var warning = __webpack_require__(11);
|
96
97
|
|
97
98
|
var createElement = ReactElement.createElement;
|
@@ -99,7 +100,7 @@
|
|
99
100
|
var cloneElement = ReactElement.cloneElement;
|
100
101
|
|
101
102
|
if (process.env.NODE_ENV !== 'production') {
|
102
|
-
var ReactElementValidator = __webpack_require__(
|
103
|
+
var ReactElementValidator = __webpack_require__(28);
|
103
104
|
createElement = ReactElementValidator.createElement;
|
104
105
|
createFactory = ReactElementValidator.createFactory;
|
105
106
|
cloneElement = ReactElementValidator.cloneElement;
|
@@ -129,6 +130,7 @@
|
|
129
130
|
},
|
130
131
|
|
131
132
|
Component: ReactComponent,
|
133
|
+
PureComponent: ReactPureComponent,
|
132
134
|
|
133
135
|
createElement: createElement,
|
134
136
|
cloneElement: cloneElement,
|
@@ -162,7 +164,6 @@
|
|
162
164
|
/***/ function(module, exports) {
|
163
165
|
|
164
166
|
// shim for using process in browser
|
165
|
-
|
166
167
|
var process = module.exports = {};
|
167
168
|
|
168
169
|
// cached from whatever global is present so that test runners that stub it
|
@@ -174,21 +175,63 @@
|
|
174
175
|
var cachedClearTimeout;
|
175
176
|
|
176
177
|
(function () {
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
178
|
+
try {
|
179
|
+
cachedSetTimeout = setTimeout;
|
180
|
+
} catch (e) {
|
181
|
+
cachedSetTimeout = function () {
|
182
|
+
throw new Error('setTimeout is not defined');
|
183
|
+
}
|
182
184
|
}
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
185
|
+
try {
|
186
|
+
cachedClearTimeout = clearTimeout;
|
187
|
+
} catch (e) {
|
188
|
+
cachedClearTimeout = function () {
|
189
|
+
throw new Error('clearTimeout is not defined');
|
190
|
+
}
|
189
191
|
}
|
190
|
-
}
|
191
192
|
} ())
|
193
|
+
function runTimeout(fun) {
|
194
|
+
if (cachedSetTimeout === setTimeout) {
|
195
|
+
//normal enviroments in sane situations
|
196
|
+
return setTimeout(fun, 0);
|
197
|
+
}
|
198
|
+
try {
|
199
|
+
// when when somebody has screwed with setTimeout but no I.E. maddness
|
200
|
+
return cachedSetTimeout(fun, 0);
|
201
|
+
} catch(e){
|
202
|
+
try {
|
203
|
+
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
|
204
|
+
return cachedSetTimeout.call(null, fun, 0);
|
205
|
+
} catch(e){
|
206
|
+
// 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
|
207
|
+
return cachedSetTimeout.call(this, fun, 0);
|
208
|
+
}
|
209
|
+
}
|
210
|
+
|
211
|
+
|
212
|
+
}
|
213
|
+
function runClearTimeout(marker) {
|
214
|
+
if (cachedClearTimeout === clearTimeout) {
|
215
|
+
//normal enviroments in sane situations
|
216
|
+
return clearTimeout(marker);
|
217
|
+
}
|
218
|
+
try {
|
219
|
+
// when when somebody has screwed with setTimeout but no I.E. maddness
|
220
|
+
return cachedClearTimeout(marker);
|
221
|
+
} catch (e){
|
222
|
+
try {
|
223
|
+
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
|
224
|
+
return cachedClearTimeout.call(null, marker);
|
225
|
+
} catch (e){
|
226
|
+
// 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.
|
227
|
+
// Some versions of I.E. have different rules for clearTimeout vs setTimeout
|
228
|
+
return cachedClearTimeout.call(this, marker);
|
229
|
+
}
|
230
|
+
}
|
231
|
+
|
232
|
+
|
233
|
+
|
234
|
+
}
|
192
235
|
var queue = [];
|
193
236
|
var draining = false;
|
194
237
|
var currentQueue;
|
@@ -213,7 +256,7 @@
|
|
213
256
|
if (draining) {
|
214
257
|
return;
|
215
258
|
}
|
216
|
-
var timeout =
|
259
|
+
var timeout = runTimeout(cleanUpNextTick);
|
217
260
|
draining = true;
|
218
261
|
|
219
262
|
var len = queue.length;
|
@@ -230,7 +273,7 @@
|
|
230
273
|
}
|
231
274
|
currentQueue = null;
|
232
275
|
draining = false;
|
233
|
-
|
276
|
+
runClearTimeout(timeout);
|
234
277
|
}
|
235
278
|
|
236
279
|
process.nextTick = function (fun) {
|
@@ -242,7 +285,7 @@
|
|
242
285
|
}
|
243
286
|
queue.push(new Item(fun, args));
|
244
287
|
if (queue.length === 1 && !draining) {
|
245
|
-
|
288
|
+
runTimeout(drainQueue);
|
246
289
|
}
|
247
290
|
};
|
248
291
|
|
@@ -896,6 +939,7 @@
|
|
896
939
|
// This can be replaced with a WeakMap once they are implemented in
|
897
940
|
// commonly used development environments.
|
898
941
|
element._store = {};
|
942
|
+
var shadowChildren = Array.isArray(props.children) ? props.children.slice(0) : props.children;
|
899
943
|
|
900
944
|
// To make comparing ReactElements easier for testing purposes, we make
|
901
945
|
// the validation flag non-enumerable (where possible, which should
|
@@ -915,6 +959,12 @@
|
|
915
959
|
writable: false,
|
916
960
|
value: self
|
917
961
|
});
|
962
|
+
Object.defineProperty(element, '_shadowChildren', {
|
963
|
+
configurable: false,
|
964
|
+
enumerable: false,
|
965
|
+
writable: false,
|
966
|
+
value: shadowChildren
|
967
|
+
});
|
918
968
|
// Two elements created in two different places should be considered
|
919
969
|
// equal for testing purposes and therefore we hide it from enumeration.
|
920
970
|
Object.defineProperty(element, '_source', {
|
@@ -926,6 +976,7 @@
|
|
926
976
|
} else {
|
927
977
|
element._store.validated = false;
|
928
978
|
element._self = self;
|
979
|
+
element._shadowChildren = shadowChildren;
|
929
980
|
element._source = source;
|
930
981
|
}
|
931
982
|
if (Object.freeze) {
|
@@ -1426,7 +1477,14 @@
|
|
1426
1477
|
}
|
1427
1478
|
} else {
|
1428
1479
|
if (process.env.NODE_ENV !== 'production') {
|
1429
|
-
|
1480
|
+
var mapsAsChildrenAddendum = '';
|
1481
|
+
if (ReactCurrentOwner.current) {
|
1482
|
+
var mapsAsChildrenOwnerName = ReactCurrentOwner.current.getName();
|
1483
|
+
if (mapsAsChildrenOwnerName) {
|
1484
|
+
mapsAsChildrenAddendum = ' Check the render method of `' + mapsAsChildrenOwnerName + '`.';
|
1485
|
+
}
|
1486
|
+
}
|
1487
|
+
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;
|
1430
1488
|
didWarnAboutMaps = true;
|
1431
1489
|
}
|
1432
1490
|
// Iterator will provide entry [k,v] tuples rather than values.
|
@@ -1851,6 +1909,53 @@
|
|
1851
1909
|
|
1852
1910
|
/***/ },
|
1853
1911
|
/* 20 */
|
1912
|
+
/***/ function(module, exports, __webpack_require__) {
|
1913
|
+
|
1914
|
+
/**
|
1915
|
+
* Copyright 2013-present, Facebook, Inc.
|
1916
|
+
* All rights reserved.
|
1917
|
+
*
|
1918
|
+
* This source code is licensed under the BSD-style license found in the
|
1919
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
1920
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
1921
|
+
*
|
1922
|
+
* @providesModule ReactPureComponent
|
1923
|
+
*/
|
1924
|
+
|
1925
|
+
'use strict';
|
1926
|
+
|
1927
|
+
var _assign = __webpack_require__(4);
|
1928
|
+
|
1929
|
+
var ReactComponent = __webpack_require__(17);
|
1930
|
+
var ReactNoopUpdateQueue = __webpack_require__(18);
|
1931
|
+
|
1932
|
+
var emptyObject = __webpack_require__(19);
|
1933
|
+
|
1934
|
+
/**
|
1935
|
+
* Base class helpers for the updating state of a component.
|
1936
|
+
*/
|
1937
|
+
function ReactPureComponent(props, context, updater) {
|
1938
|
+
// Duplicated from ReactComponent.
|
1939
|
+
this.props = props;
|
1940
|
+
this.context = context;
|
1941
|
+
this.refs = emptyObject;
|
1942
|
+
// We initialize the default updater but the real one gets injected by the
|
1943
|
+
// renderer.
|
1944
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
1945
|
+
}
|
1946
|
+
|
1947
|
+
function ComponentDummy() {}
|
1948
|
+
ComponentDummy.prototype = ReactComponent.prototype;
|
1949
|
+
ReactPureComponent.prototype = new ComponentDummy();
|
1950
|
+
ReactPureComponent.prototype.constructor = ReactPureComponent;
|
1951
|
+
// Avoid an extra prototype jump for these methods.
|
1952
|
+
_assign(ReactPureComponent.prototype, ReactComponent.prototype);
|
1953
|
+
ReactPureComponent.prototype.isPureReactComponent = true;
|
1954
|
+
|
1955
|
+
module.exports = ReactPureComponent;
|
1956
|
+
|
1957
|
+
/***/ },
|
1958
|
+
/* 21 */
|
1854
1959
|
/***/ function(module, exports, __webpack_require__) {
|
1855
1960
|
|
1856
1961
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1871,14 +1976,14 @@
|
|
1871
1976
|
|
1872
1977
|
var ReactComponent = __webpack_require__(17);
|
1873
1978
|
var ReactElement = __webpack_require__(9);
|
1874
|
-
var ReactPropTypeLocations = __webpack_require__(
|
1875
|
-
var ReactPropTypeLocationNames = __webpack_require__(
|
1979
|
+
var ReactPropTypeLocations = __webpack_require__(22);
|
1980
|
+
var ReactPropTypeLocationNames = __webpack_require__(24);
|
1876
1981
|
var ReactNoopUpdateQueue = __webpack_require__(18);
|
1877
1982
|
|
1878
1983
|
var emptyObject = __webpack_require__(19);
|
1879
1984
|
var invariant = __webpack_require__(8);
|
1880
|
-
var keyMirror = __webpack_require__(
|
1881
|
-
var keyOf = __webpack_require__(
|
1985
|
+
var keyMirror = __webpack_require__(23);
|
1986
|
+
var keyOf = __webpack_require__(25);
|
1882
1987
|
var warning = __webpack_require__(11);
|
1883
1988
|
|
1884
1989
|
var MIXINS_KEY = keyOf({ mixins: null });
|
@@ -2240,6 +2345,13 @@
|
|
2240
2345
|
*/
|
2241
2346
|
function mixSpecIntoComponent(Constructor, spec) {
|
2242
2347
|
if (!spec) {
|
2348
|
+
if (process.env.NODE_ENV !== 'production') {
|
2349
|
+
var typeofSpec = typeof spec;
|
2350
|
+
var isMixinValid = typeofSpec === 'object' && spec !== null;
|
2351
|
+
|
2352
|
+
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;
|
2353
|
+
}
|
2354
|
+
|
2243
2355
|
return;
|
2244
2356
|
}
|
2245
2357
|
|
@@ -2581,7 +2693,7 @@
|
|
2581
2693
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
2582
2694
|
|
2583
2695
|
/***/ },
|
2584
|
-
/*
|
2696
|
+
/* 22 */
|
2585
2697
|
/***/ function(module, exports, __webpack_require__) {
|
2586
2698
|
|
2587
2699
|
/**
|
@@ -2597,7 +2709,7 @@
|
|
2597
2709
|
|
2598
2710
|
'use strict';
|
2599
2711
|
|
2600
|
-
var keyMirror = __webpack_require__(
|
2712
|
+
var keyMirror = __webpack_require__(23);
|
2601
2713
|
|
2602
2714
|
var ReactPropTypeLocations = keyMirror({
|
2603
2715
|
prop: null,
|
@@ -2608,7 +2720,7 @@
|
|
2608
2720
|
module.exports = ReactPropTypeLocations;
|
2609
2721
|
|
2610
2722
|
/***/ },
|
2611
|
-
/*
|
2723
|
+
/* 23 */
|
2612
2724
|
/***/ function(module, exports, __webpack_require__) {
|
2613
2725
|
|
2614
2726
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2661,7 +2773,7 @@
|
|
2661
2773
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
2662
2774
|
|
2663
2775
|
/***/ },
|
2664
|
-
/*
|
2776
|
+
/* 24 */
|
2665
2777
|
/***/ function(module, exports, __webpack_require__) {
|
2666
2778
|
|
2667
2779
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2691,7 +2803,7 @@
|
|
2691
2803
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
2692
2804
|
|
2693
2805
|
/***/ },
|
2694
|
-
/*
|
2806
|
+
/* 25 */
|
2695
2807
|
/***/ function(module, exports) {
|
2696
2808
|
|
2697
2809
|
"use strict";
|
@@ -2730,7 +2842,7 @@
|
|
2730
2842
|
module.exports = keyOf;
|
2731
2843
|
|
2732
2844
|
/***/ },
|
2733
|
-
/*
|
2845
|
+
/* 26 */
|
2734
2846
|
/***/ function(module, exports, __webpack_require__) {
|
2735
2847
|
|
2736
2848
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2748,7 +2860,7 @@
|
|
2748
2860
|
|
2749
2861
|
var ReactElement = __webpack_require__(9);
|
2750
2862
|
|
2751
|
-
var mapObject = __webpack_require__(
|
2863
|
+
var mapObject = __webpack_require__(27);
|
2752
2864
|
|
2753
2865
|
/**
|
2754
2866
|
* Create a factory that creates HTML tag elements.
|
@@ -2758,7 +2870,7 @@
|
|
2758
2870
|
*/
|
2759
2871
|
function createDOMFactory(tag) {
|
2760
2872
|
if (process.env.NODE_ENV !== 'production') {
|
2761
|
-
var ReactElementValidator = __webpack_require__(
|
2873
|
+
var ReactElementValidator = __webpack_require__(28);
|
2762
2874
|
return ReactElementValidator.createFactory(tag);
|
2763
2875
|
}
|
2764
2876
|
return ReactElement.createFactory(tag);
|
@@ -2912,7 +3024,7 @@
|
|
2912
3024
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
2913
3025
|
|
2914
3026
|
/***/ },
|
2915
|
-
/*
|
3027
|
+
/* 27 */
|
2916
3028
|
/***/ function(module, exports) {
|
2917
3029
|
|
2918
3030
|
/**
|
@@ -2967,7 +3079,7 @@
|
|
2967
3079
|
module.exports = mapObject;
|
2968
3080
|
|
2969
3081
|
/***/ },
|
2970
|
-
/*
|
3082
|
+
/* 28 */
|
2971
3083
|
/***/ function(module, exports, __webpack_require__) {
|
2972
3084
|
|
2973
3085
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2991,11 +3103,11 @@
|
|
2991
3103
|
'use strict';
|
2992
3104
|
|
2993
3105
|
var ReactCurrentOwner = __webpack_require__(10);
|
2994
|
-
var ReactComponentTreeDevtool = __webpack_require__(
|
3106
|
+
var ReactComponentTreeDevtool = __webpack_require__(29);
|
2995
3107
|
var ReactElement = __webpack_require__(9);
|
2996
|
-
var ReactPropTypeLocations = __webpack_require__(
|
3108
|
+
var ReactPropTypeLocations = __webpack_require__(22);
|
2997
3109
|
|
2998
|
-
var checkReactTypeSpec = __webpack_require__(
|
3110
|
+
var checkReactTypeSpec = __webpack_require__(30);
|
2999
3111
|
|
3000
3112
|
var canDefineProperty = __webpack_require__(13);
|
3001
3113
|
var getIteratorFn = __webpack_require__(15);
|
@@ -3199,7 +3311,7 @@
|
|
3199
3311
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
3200
3312
|
|
3201
3313
|
/***/ },
|
3202
|
-
/*
|
3314
|
+
/* 29 */
|
3203
3315
|
/***/ function(module, exports, __webpack_require__) {
|
3204
3316
|
|
3205
3317
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -3423,7 +3535,7 @@
|
|
3423
3535
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
3424
3536
|
|
3425
3537
|
/***/ },
|
3426
|
-
/*
|
3538
|
+
/* 30 */
|
3427
3539
|
/***/ function(module, exports, __webpack_require__) {
|
3428
3540
|
|
3429
3541
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -3441,11 +3553,23 @@
|
|
3441
3553
|
|
3442
3554
|
var _prodInvariant = __webpack_require__(7);
|
3443
3555
|
|
3444
|
-
var ReactPropTypeLocationNames = __webpack_require__(
|
3556
|
+
var ReactPropTypeLocationNames = __webpack_require__(24);
|
3557
|
+
var ReactPropTypesSecret = __webpack_require__(31);
|
3445
3558
|
|
3446
3559
|
var invariant = __webpack_require__(8);
|
3447
3560
|
var warning = __webpack_require__(11);
|
3448
3561
|
|
3562
|
+
var ReactComponentTreeDevtool;
|
3563
|
+
|
3564
|
+
if (typeof process !== 'undefined' && process.env && process.env.NODE_ENV === 'test') {
|
3565
|
+
// Temporary hack.
|
3566
|
+
// Inline requires don't work well with Jest:
|
3567
|
+
// https://github.com/facebook/react/issues/7240
|
3568
|
+
// Remove the inline requires when we don't need them anymore:
|
3569
|
+
// https://github.com/facebook/react/pull/7178
|
3570
|
+
ReactComponentTreeDevtool = __webpack_require__(29);
|
3571
|
+
}
|
3572
|
+
|
3449
3573
|
var loggedTypeFailures = {};
|
3450
3574
|
|
3451
3575
|
/**
|
@@ -3471,7 +3595,7 @@
|
|
3471
3595
|
// This is intentionally an invariant that gets caught. It's the same
|
3472
3596
|
// behavior as without this statement except with a better message.
|
3473
3597
|
!(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;
|
3474
|
-
error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location);
|
3598
|
+
error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);
|
3475
3599
|
} catch (ex) {
|
3476
3600
|
error = ex;
|
3477
3601
|
}
|
@@ -3484,7 +3608,9 @@
|
|
3484
3608
|
var componentStackInfo = '';
|
3485
3609
|
|
3486
3610
|
if (process.env.NODE_ENV !== 'production') {
|
3487
|
-
|
3611
|
+
if (!ReactComponentTreeDevtool) {
|
3612
|
+
ReactComponentTreeDevtool = __webpack_require__(29);
|
3613
|
+
}
|
3488
3614
|
if (debugID !== null) {
|
3489
3615
|
componentStackInfo = ReactComponentTreeDevtool.getStackAddendumByID(debugID);
|
3490
3616
|
} else if (element !== null) {
|
@@ -3502,10 +3628,31 @@
|
|
3502
3628
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
3503
3629
|
|
3504
3630
|
/***/ },
|
3505
|
-
/*
|
3506
|
-
/***/ function(module, exports
|
3631
|
+
/* 31 */
|
3632
|
+
/***/ function(module, exports) {
|
3507
3633
|
|
3508
3634
|
/**
|
3635
|
+
* Copyright 2013-present, Facebook, Inc.
|
3636
|
+
* All rights reserved.
|
3637
|
+
*
|
3638
|
+
* This source code is licensed under the BSD-style license found in the
|
3639
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
3640
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
3641
|
+
*
|
3642
|
+
* @providesModule ReactPropTypesSecret
|
3643
|
+
*/
|
3644
|
+
|
3645
|
+
'use strict';
|
3646
|
+
|
3647
|
+
var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
|
3648
|
+
|
3649
|
+
module.exports = ReactPropTypesSecret;
|
3650
|
+
|
3651
|
+
/***/ },
|
3652
|
+
/* 32 */
|
3653
|
+
/***/ function(module, exports, __webpack_require__) {
|
3654
|
+
|
3655
|
+
/* WEBPACK VAR INJECTION */(function(process) {/**
|
3509
3656
|
* Copyright 2013-present, Facebook, Inc.
|
3510
3657
|
* All rights reserved.
|
3511
3658
|
*
|
@@ -3519,10 +3666,12 @@
|
|
3519
3666
|
'use strict';
|
3520
3667
|
|
3521
3668
|
var ReactElement = __webpack_require__(9);
|
3522
|
-
var ReactPropTypeLocationNames = __webpack_require__(
|
3669
|
+
var ReactPropTypeLocationNames = __webpack_require__(24);
|
3670
|
+
var ReactPropTypesSecret = __webpack_require__(31);
|
3523
3671
|
|
3524
3672
|
var emptyFunction = __webpack_require__(12);
|
3525
3673
|
var getIteratorFn = __webpack_require__(15);
|
3674
|
+
var warning = __webpack_require__(11);
|
3526
3675
|
|
3527
3676
|
/**
|
3528
3677
|
* Collection of methods that allow declaration and validation of props that are
|
@@ -3612,9 +3761,21 @@
|
|
3612
3761
|
/*eslint-enable no-self-compare*/
|
3613
3762
|
|
3614
3763
|
function createChainableTypeChecker(validate) {
|
3615
|
-
|
3764
|
+
if (process.env.NODE_ENV !== 'production') {
|
3765
|
+
var manualPropTypeCallCache = {};
|
3766
|
+
}
|
3767
|
+
function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {
|
3616
3768
|
componentName = componentName || ANONYMOUS;
|
3617
3769
|
propFullName = propFullName || propName;
|
3770
|
+
if (process.env.NODE_ENV !== 'production') {
|
3771
|
+
if (secret !== ReactPropTypesSecret && typeof console !== 'undefined') {
|
3772
|
+
var cacheKey = componentName + ':' + propName;
|
3773
|
+
if (!manualPropTypeCallCache[cacheKey]) {
|
3774
|
+
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;
|
3775
|
+
manualPropTypeCallCache[cacheKey] = true;
|
3776
|
+
}
|
3777
|
+
}
|
3778
|
+
}
|
3618
3779
|
if (props[propName] == null) {
|
3619
3780
|
var locationName = ReactPropTypeLocationNames[location];
|
3620
3781
|
if (isRequired) {
|
@@ -3633,7 +3794,7 @@
|
|
3633
3794
|
}
|
3634
3795
|
|
3635
3796
|
function createPrimitiveTypeChecker(expectedType) {
|
3636
|
-
function validate(props, propName, componentName, location, propFullName) {
|
3797
|
+
function validate(props, propName, componentName, location, propFullName, secret) {
|
3637
3798
|
var propValue = props[propName];
|
3638
3799
|
var propType = getPropType(propValue);
|
3639
3800
|
if (propType !== expectedType) {
|
@@ -3666,7 +3827,7 @@
|
|
3666
3827
|
return new Error('Invalid ' + locationName + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));
|
3667
3828
|
}
|
3668
3829
|
for (var i = 0; i < propValue.length; i++) {
|
3669
|
-
var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']');
|
3830
|
+
var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);
|
3670
3831
|
if (error instanceof Error) {
|
3671
3832
|
return error;
|
3672
3833
|
}
|
@@ -3678,9 +3839,11 @@
|
|
3678
3839
|
|
3679
3840
|
function createElementTypeChecker() {
|
3680
3841
|
function validate(props, propName, componentName, location, propFullName) {
|
3681
|
-
|
3842
|
+
var propValue = props[propName];
|
3843
|
+
if (!ReactElement.isValidElement(propValue)) {
|
3682
3844
|
var locationName = ReactPropTypeLocationNames[location];
|
3683
|
-
|
3845
|
+
var propType = getPropType(propValue);
|
3846
|
+
return new Error('Invalid ' + locationName + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));
|
3684
3847
|
}
|
3685
3848
|
return null;
|
3686
3849
|
}
|
@@ -3702,9 +3865,8 @@
|
|
3702
3865
|
|
3703
3866
|
function createEnumTypeChecker(expectedValues) {
|
3704
3867
|
if (!Array.isArray(expectedValues)) {
|
3705
|
-
|
3706
|
-
|
3707
|
-
});
|
3868
|
+
process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid argument supplied to oneOf, expected an instance of array.') : void 0;
|
3869
|
+
return emptyFunction.thatReturnsNull;
|
3708
3870
|
}
|
3709
3871
|
|
3710
3872
|
function validate(props, propName, componentName, location, propFullName) {
|
@@ -3735,7 +3897,7 @@
|
|
3735
3897
|
}
|
3736
3898
|
for (var key in propValue) {
|
3737
3899
|
if (propValue.hasOwnProperty(key)) {
|
3738
|
-
var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key);
|
3900
|
+
var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
|
3739
3901
|
if (error instanceof Error) {
|
3740
3902
|
return error;
|
3741
3903
|
}
|
@@ -3748,15 +3910,14 @@
|
|
3748
3910
|
|
3749
3911
|
function createUnionTypeChecker(arrayOfTypeCheckers) {
|
3750
3912
|
if (!Array.isArray(arrayOfTypeCheckers)) {
|
3751
|
-
|
3752
|
-
|
3753
|
-
});
|
3913
|
+
process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;
|
3914
|
+
return emptyFunction.thatReturnsNull;
|
3754
3915
|
}
|
3755
3916
|
|
3756
3917
|
function validate(props, propName, componentName, location, propFullName) {
|
3757
3918
|
for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
|
3758
3919
|
var checker = arrayOfTypeCheckers[i];
|
3759
|
-
if (checker(props, propName, componentName, location, propFullName) == null) {
|
3920
|
+
if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret) == null) {
|
3760
3921
|
return null;
|
3761
3922
|
}
|
3762
3923
|
}
|
@@ -3791,7 +3952,7 @@
|
|
3791
3952
|
if (!checker) {
|
3792
3953
|
continue;
|
3793
3954
|
}
|
3794
|
-
var error = checker(propValue, key, componentName, location, propFullName + '.' + key);
|
3955
|
+
var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
|
3795
3956
|
if (error) {
|
3796
3957
|
return error;
|
3797
3958
|
}
|
@@ -3908,9 +4069,10 @@
|
|
3908
4069
|
}
|
3909
4070
|
|
3910
4071
|
module.exports = ReactPropTypes;
|
4072
|
+
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
3911
4073
|
|
3912
4074
|
/***/ },
|
3913
|
-
/*
|
4075
|
+
/* 33 */
|
3914
4076
|
/***/ function(module, exports) {
|
3915
4077
|
|
3916
4078
|
/**
|
@@ -3926,10 +4088,10 @@
|
|
3926
4088
|
|
3927
4089
|
'use strict';
|
3928
4090
|
|
3929
|
-
module.exports = '15.
|
4091
|
+
module.exports = '15.3.0';
|
3930
4092
|
|
3931
4093
|
/***/ },
|
3932
|
-
/*
|
4094
|
+
/* 34 */
|
3933
4095
|
/***/ function(module, exports, __webpack_require__) {
|
3934
4096
|
|
3935
4097
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -3973,16 +4135,16 @@
|
|
3973
4135
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
3974
4136
|
|
3975
4137
|
/***/ },
|
3976
|
-
/*
|
4138
|
+
/* 35 */
|
3977
4139
|
/***/ function(module, exports, __webpack_require__) {
|
3978
4140
|
|
3979
4141
|
'use strict';
|
3980
4142
|
|
3981
|
-
module.exports = __webpack_require__(
|
4143
|
+
module.exports = __webpack_require__(36);
|
3982
4144
|
|
3983
4145
|
|
3984
4146
|
/***/ },
|
3985
|
-
/*
|
4147
|
+
/* 36 */
|
3986
4148
|
/***/ function(module, exports, __webpack_require__) {
|
3987
4149
|
|
3988
4150
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -4000,21 +4162,21 @@
|
|
4000
4162
|
|
4001
4163
|
'use strict';
|
4002
4164
|
|
4003
|
-
var ReactDOMComponentTree = __webpack_require__(
|
4004
|
-
var ReactDefaultInjection = __webpack_require__(
|
4005
|
-
var ReactMount = __webpack_require__(
|
4006
|
-
var ReactReconciler = __webpack_require__(
|
4007
|
-
var ReactUpdates = __webpack_require__(
|
4008
|
-
var ReactVersion = __webpack_require__(
|
4165
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
4166
|
+
var ReactDefaultInjection = __webpack_require__(40);
|
4167
|
+
var ReactMount = __webpack_require__(167);
|
4168
|
+
var ReactReconciler = __webpack_require__(60);
|
4169
|
+
var ReactUpdates = __webpack_require__(57);
|
4170
|
+
var ReactVersion = __webpack_require__(33);
|
4009
4171
|
|
4010
|
-
var findDOMNode = __webpack_require__(
|
4011
|
-
var getHostComponentFromComposite = __webpack_require__(
|
4012
|
-
var renderSubtreeIntoContainer = __webpack_require__(
|
4172
|
+
var findDOMNode = __webpack_require__(172);
|
4173
|
+
var getHostComponentFromComposite = __webpack_require__(173);
|
4174
|
+
var renderSubtreeIntoContainer = __webpack_require__(174);
|
4013
4175
|
var warning = __webpack_require__(11);
|
4014
4176
|
|
4015
4177
|
ReactDefaultInjection.inject();
|
4016
4178
|
|
4017
|
-
var
|
4179
|
+
var ReactDOM = {
|
4018
4180
|
findDOMNode: findDOMNode,
|
4019
4181
|
render: ReactMount.render,
|
4020
4182
|
unmountComponentAtNode: ReactMount.unmountComponentAtNode,
|
@@ -4050,7 +4212,7 @@
|
|
4050
4212
|
}
|
4051
4213
|
|
4052
4214
|
if (process.env.NODE_ENV !== 'production') {
|
4053
|
-
var ExecutionEnvironment = __webpack_require__(
|
4215
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
4054
4216
|
if (ExecutionEnvironment.canUseDOM && window.top === window.self) {
|
4055
4217
|
|
4056
4218
|
// First check if devtools is not installed
|
@@ -4085,11 +4247,11 @@
|
|
4085
4247
|
}
|
4086
4248
|
}
|
4087
4249
|
|
4088
|
-
module.exports =
|
4250
|
+
module.exports = ReactDOM;
|
4089
4251
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
4090
4252
|
|
4091
4253
|
/***/ },
|
4092
|
-
/*
|
4254
|
+
/* 37 */
|
4093
4255
|
/***/ function(module, exports, __webpack_require__) {
|
4094
4256
|
|
4095
4257
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -4107,8 +4269,8 @@
|
|
4107
4269
|
|
4108
4270
|
var _prodInvariant = __webpack_require__(7);
|
4109
4271
|
|
4110
|
-
var DOMProperty = __webpack_require__(
|
4111
|
-
var ReactDOMComponentFlags = __webpack_require__(
|
4272
|
+
var DOMProperty = __webpack_require__(38);
|
4273
|
+
var ReactDOMComponentFlags = __webpack_require__(39);
|
4112
4274
|
|
4113
4275
|
var invariant = __webpack_require__(8);
|
4114
4276
|
|
@@ -4283,7 +4445,7 @@
|
|
4283
4445
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
4284
4446
|
|
4285
4447
|
/***/ },
|
4286
|
-
/*
|
4448
|
+
/* 38 */
|
4287
4449
|
/***/ function(module, exports, __webpack_require__) {
|
4288
4450
|
|
4289
4451
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -4495,7 +4657,7 @@
|
|
4495
4657
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
4496
4658
|
|
4497
4659
|
/***/ },
|
4498
|
-
/*
|
4660
|
+
/* 39 */
|
4499
4661
|
/***/ function(module, exports) {
|
4500
4662
|
|
4501
4663
|
/**
|
@@ -4518,7 +4680,7 @@
|
|
4518
4680
|
module.exports = ReactDOMComponentFlags;
|
4519
4681
|
|
4520
4682
|
/***/ },
|
4521
|
-
/*
|
4683
|
+
/* 40 */
|
4522
4684
|
/***/ function(module, exports, __webpack_require__) {
|
4523
4685
|
|
4524
4686
|
/**
|
@@ -4534,24 +4696,24 @@
|
|
4534
4696
|
|
4535
4697
|
'use strict';
|
4536
4698
|
|
4537
|
-
var BeforeInputEventPlugin = __webpack_require__(
|
4538
|
-
var ChangeEventPlugin = __webpack_require__(
|
4539
|
-
var DefaultEventPluginOrder = __webpack_require__(
|
4540
|
-
var EnterLeaveEventPlugin = __webpack_require__(
|
4541
|
-
var HTMLDOMPropertyConfig = __webpack_require__(
|
4542
|
-
var ReactComponentBrowserEnvironment = __webpack_require__(
|
4543
|
-
var ReactDOMComponent = __webpack_require__(
|
4544
|
-
var ReactDOMComponentTree = __webpack_require__(
|
4545
|
-
var ReactDOMEmptyComponent = __webpack_require__(
|
4546
|
-
var ReactDOMTreeTraversal = __webpack_require__(
|
4547
|
-
var ReactDOMTextComponent = __webpack_require__(
|
4548
|
-
var ReactDefaultBatchingStrategy = __webpack_require__(
|
4549
|
-
var ReactEventListener = __webpack_require__(
|
4550
|
-
var ReactInjection = __webpack_require__(
|
4551
|
-
var ReactReconcileTransaction = __webpack_require__(
|
4552
|
-
var SVGDOMPropertyConfig = __webpack_require__(
|
4553
|
-
var SelectEventPlugin = __webpack_require__(
|
4554
|
-
var SimpleEventPlugin = __webpack_require__(
|
4699
|
+
var BeforeInputEventPlugin = __webpack_require__(41);
|
4700
|
+
var ChangeEventPlugin = __webpack_require__(56);
|
4701
|
+
var DefaultEventPluginOrder = __webpack_require__(74);
|
4702
|
+
var EnterLeaveEventPlugin = __webpack_require__(75);
|
4703
|
+
var HTMLDOMPropertyConfig = __webpack_require__(80);
|
4704
|
+
var ReactComponentBrowserEnvironment = __webpack_require__(81);
|
4705
|
+
var ReactDOMComponent = __webpack_require__(95);
|
4706
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
4707
|
+
var ReactDOMEmptyComponent = __webpack_require__(138);
|
4708
|
+
var ReactDOMTreeTraversal = __webpack_require__(139);
|
4709
|
+
var ReactDOMTextComponent = __webpack_require__(140);
|
4710
|
+
var ReactDefaultBatchingStrategy = __webpack_require__(141);
|
4711
|
+
var ReactEventListener = __webpack_require__(142);
|
4712
|
+
var ReactInjection = __webpack_require__(145);
|
4713
|
+
var ReactReconcileTransaction = __webpack_require__(146);
|
4714
|
+
var SVGDOMPropertyConfig = __webpack_require__(154);
|
4715
|
+
var SelectEventPlugin = __webpack_require__(155);
|
4716
|
+
var SimpleEventPlugin = __webpack_require__(156);
|
4555
4717
|
|
4556
4718
|
var alreadyInjected = false;
|
4557
4719
|
|
@@ -4607,7 +4769,7 @@
|
|
4607
4769
|
};
|
4608
4770
|
|
4609
4771
|
/***/ },
|
4610
|
-
/*
|
4772
|
+
/* 41 */
|
4611
4773
|
/***/ function(module, exports, __webpack_require__) {
|
4612
4774
|
|
4613
4775
|
/**
|
@@ -4623,14 +4785,14 @@
|
|
4623
4785
|
|
4624
4786
|
'use strict';
|
4625
4787
|
|
4626
|
-
var EventConstants = __webpack_require__(
|
4627
|
-
var EventPropagators = __webpack_require__(
|
4628
|
-
var ExecutionEnvironment = __webpack_require__(
|
4629
|
-
var FallbackCompositionState = __webpack_require__(
|
4630
|
-
var SyntheticCompositionEvent = __webpack_require__(
|
4631
|
-
var SyntheticInputEvent = __webpack_require__(
|
4788
|
+
var EventConstants = __webpack_require__(42);
|
4789
|
+
var EventPropagators = __webpack_require__(43);
|
4790
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
4791
|
+
var FallbackCompositionState = __webpack_require__(51);
|
4792
|
+
var SyntheticCompositionEvent = __webpack_require__(53);
|
4793
|
+
var SyntheticInputEvent = __webpack_require__(55);
|
4632
4794
|
|
4633
|
-
var keyOf = __webpack_require__(
|
4795
|
+
var keyOf = __webpack_require__(25);
|
4634
4796
|
|
4635
4797
|
var END_KEYCODES = [9, 13, 27, 32]; // Tab, Return, Esc, Space
|
4636
4798
|
var START_KEYCODE = 229;
|
@@ -5000,7 +5162,7 @@
|
|
5000
5162
|
module.exports = BeforeInputEventPlugin;
|
5001
5163
|
|
5002
5164
|
/***/ },
|
5003
|
-
/*
|
5165
|
+
/* 42 */
|
5004
5166
|
/***/ function(module, exports, __webpack_require__) {
|
5005
5167
|
|
5006
5168
|
/**
|
@@ -5016,7 +5178,7 @@
|
|
5016
5178
|
|
5017
5179
|
'use strict';
|
5018
5180
|
|
5019
|
-
var keyMirror = __webpack_require__(
|
5181
|
+
var keyMirror = __webpack_require__(23);
|
5020
5182
|
|
5021
5183
|
var PropagationPhases = keyMirror({ bubbled: null, captured: null });
|
5022
5184
|
|
@@ -5102,7 +5264,7 @@
|
|
5102
5264
|
module.exports = EventConstants;
|
5103
5265
|
|
5104
5266
|
/***/ },
|
5105
|
-
/*
|
5267
|
+
/* 43 */
|
5106
5268
|
/***/ function(module, exports, __webpack_require__) {
|
5107
5269
|
|
5108
5270
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -5118,12 +5280,12 @@
|
|
5118
5280
|
|
5119
5281
|
'use strict';
|
5120
5282
|
|
5121
|
-
var EventConstants = __webpack_require__(
|
5122
|
-
var EventPluginHub = __webpack_require__(
|
5123
|
-
var EventPluginUtils = __webpack_require__(
|
5283
|
+
var EventConstants = __webpack_require__(42);
|
5284
|
+
var EventPluginHub = __webpack_require__(44);
|
5285
|
+
var EventPluginUtils = __webpack_require__(46);
|
5124
5286
|
|
5125
|
-
var accumulateInto = __webpack_require__(
|
5126
|
-
var forEachAccumulated = __webpack_require__(
|
5287
|
+
var accumulateInto = __webpack_require__(48);
|
5288
|
+
var forEachAccumulated = __webpack_require__(49);
|
5127
5289
|
var warning = __webpack_require__(11);
|
5128
5290
|
|
5129
5291
|
var PropagationPhases = EventConstants.PropagationPhases;
|
@@ -5245,7 +5407,7 @@
|
|
5245
5407
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
5246
5408
|
|
5247
5409
|
/***/ },
|
5248
|
-
/*
|
5410
|
+
/* 44 */
|
5249
5411
|
/***/ function(module, exports, __webpack_require__) {
|
5250
5412
|
|
5251
5413
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -5263,12 +5425,12 @@
|
|
5263
5425
|
|
5264
5426
|
var _prodInvariant = __webpack_require__(7);
|
5265
5427
|
|
5266
|
-
var EventPluginRegistry = __webpack_require__(
|
5267
|
-
var EventPluginUtils = __webpack_require__(
|
5268
|
-
var ReactErrorUtils = __webpack_require__(
|
5428
|
+
var EventPluginRegistry = __webpack_require__(45);
|
5429
|
+
var EventPluginUtils = __webpack_require__(46);
|
5430
|
+
var ReactErrorUtils = __webpack_require__(47);
|
5269
5431
|
|
5270
|
-
var accumulateInto = __webpack_require__(
|
5271
|
-
var forEachAccumulated = __webpack_require__(
|
5432
|
+
var accumulateInto = __webpack_require__(48);
|
5433
|
+
var forEachAccumulated = __webpack_require__(49);
|
5272
5434
|
var invariant = __webpack_require__(8);
|
5273
5435
|
|
5274
5436
|
/**
|
@@ -5305,6 +5467,10 @@
|
|
5305
5467
|
return executeDispatchesAndRelease(e, false);
|
5306
5468
|
};
|
5307
5469
|
|
5470
|
+
var getDictionaryKey = function (inst) {
|
5471
|
+
return '.' + inst._rootNodeID;
|
5472
|
+
};
|
5473
|
+
|
5308
5474
|
/**
|
5309
5475
|
* This is a unified interface for event plugins to be installed and configured.
|
5310
5476
|
*
|
@@ -5348,7 +5514,7 @@
|
|
5348
5514
|
},
|
5349
5515
|
|
5350
5516
|
/**
|
5351
|
-
* Stores `listener` at `listenerBank[registrationName][
|
5517
|
+
* Stores `listener` at `listenerBank[registrationName][key]`. Is idempotent.
|
5352
5518
|
*
|
5353
5519
|
* @param {object} inst The instance, which is the source of events.
|
5354
5520
|
* @param {string} registrationName Name of listener (e.g. `onClick`).
|
@@ -5357,8 +5523,9 @@
|
|
5357
5523
|
putListener: function (inst, registrationName, listener) {
|
5358
5524
|
!(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;
|
5359
5525
|
|
5526
|
+
var key = getDictionaryKey(inst);
|
5360
5527
|
var bankForRegistrationName = listenerBank[registrationName] || (listenerBank[registrationName] = {});
|
5361
|
-
bankForRegistrationName[
|
5528
|
+
bankForRegistrationName[key] = listener;
|
5362
5529
|
|
5363
5530
|
var PluginModule = EventPluginRegistry.registrationNameModules[registrationName];
|
5364
5531
|
if (PluginModule && PluginModule.didPutListener) {
|
@@ -5373,7 +5540,8 @@
|
|
5373
5540
|
*/
|
5374
5541
|
getListener: function (inst, registrationName) {
|
5375
5542
|
var bankForRegistrationName = listenerBank[registrationName];
|
5376
|
-
|
5543
|
+
var key = getDictionaryKey(inst);
|
5544
|
+
return bankForRegistrationName && bankForRegistrationName[key];
|
5377
5545
|
},
|
5378
5546
|
|
5379
5547
|
/**
|
@@ -5391,7 +5559,8 @@
|
|
5391
5559
|
var bankForRegistrationName = listenerBank[registrationName];
|
5392
5560
|
// TODO: This should never be null -- when is it?
|
5393
5561
|
if (bankForRegistrationName) {
|
5394
|
-
|
5562
|
+
var key = getDictionaryKey(inst);
|
5563
|
+
delete bankForRegistrationName[key];
|
5395
5564
|
}
|
5396
5565
|
},
|
5397
5566
|
|
@@ -5401,12 +5570,13 @@
|
|
5401
5570
|
* @param {object} inst The instance, which is the source of events.
|
5402
5571
|
*/
|
5403
5572
|
deleteAllListeners: function (inst) {
|
5573
|
+
var key = getDictionaryKey(inst);
|
5404
5574
|
for (var registrationName in listenerBank) {
|
5405
5575
|
if (!listenerBank.hasOwnProperty(registrationName)) {
|
5406
5576
|
continue;
|
5407
5577
|
}
|
5408
5578
|
|
5409
|
-
if (!listenerBank[registrationName][
|
5579
|
+
if (!listenerBank[registrationName][key]) {
|
5410
5580
|
continue;
|
5411
5581
|
}
|
5412
5582
|
|
@@ -5415,7 +5585,7 @@
|
|
5415
5585
|
PluginModule.willDeleteListener(inst, registrationName);
|
5416
5586
|
}
|
5417
5587
|
|
5418
|
-
delete listenerBank[registrationName][
|
5588
|
+
delete listenerBank[registrationName][key];
|
5419
5589
|
}
|
5420
5590
|
},
|
5421
5591
|
|
@@ -5492,7 +5662,7 @@
|
|
5492
5662
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
5493
5663
|
|
5494
5664
|
/***/ },
|
5495
|
-
/*
|
5665
|
+
/* 45 */
|
5496
5666
|
/***/ function(module, exports, __webpack_require__) {
|
5497
5667
|
|
5498
5668
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -5745,7 +5915,7 @@
|
|
5745
5915
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
5746
5916
|
|
5747
5917
|
/***/ },
|
5748
|
-
/*
|
5918
|
+
/* 46 */
|
5749
5919
|
/***/ function(module, exports, __webpack_require__) {
|
5750
5920
|
|
5751
5921
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -5763,8 +5933,8 @@
|
|
5763
5933
|
|
5764
5934
|
var _prodInvariant = __webpack_require__(7);
|
5765
5935
|
|
5766
|
-
var EventConstants = __webpack_require__(
|
5767
|
-
var ReactErrorUtils = __webpack_require__(
|
5936
|
+
var EventConstants = __webpack_require__(42);
|
5937
|
+
var ReactErrorUtils = __webpack_require__(47);
|
5768
5938
|
|
5769
5939
|
var invariant = __webpack_require__(8);
|
5770
5940
|
var warning = __webpack_require__(11);
|
@@ -5980,7 +6150,7 @@
|
|
5980
6150
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
5981
6151
|
|
5982
6152
|
/***/ },
|
5983
|
-
/*
|
6153
|
+
/* 47 */
|
5984
6154
|
/***/ function(module, exports, __webpack_require__) {
|
5985
6155
|
|
5986
6156
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -6062,7 +6232,7 @@
|
|
6062
6232
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
6063
6233
|
|
6064
6234
|
/***/ },
|
6065
|
-
/*
|
6235
|
+
/* 48 */
|
6066
6236
|
/***/ function(module, exports, __webpack_require__) {
|
6067
6237
|
|
6068
6238
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -6126,7 +6296,7 @@
|
|
6126
6296
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
6127
6297
|
|
6128
6298
|
/***/ },
|
6129
|
-
/*
|
6299
|
+
/* 49 */
|
6130
6300
|
/***/ function(module, exports) {
|
6131
6301
|
|
6132
6302
|
/**
|
@@ -6162,7 +6332,7 @@
|
|
6162
6332
|
module.exports = forEachAccumulated;
|
6163
6333
|
|
6164
6334
|
/***/ },
|
6165
|
-
/*
|
6335
|
+
/* 50 */
|
6166
6336
|
/***/ function(module, exports) {
|
6167
6337
|
|
6168
6338
|
/**
|
@@ -6202,7 +6372,7 @@
|
|
6202
6372
|
module.exports = ExecutionEnvironment;
|
6203
6373
|
|
6204
6374
|
/***/ },
|
6205
|
-
/*
|
6375
|
+
/* 51 */
|
6206
6376
|
/***/ function(module, exports, __webpack_require__) {
|
6207
6377
|
|
6208
6378
|
/**
|
@@ -6222,7 +6392,7 @@
|
|
6222
6392
|
|
6223
6393
|
var PooledClass = __webpack_require__(6);
|
6224
6394
|
|
6225
|
-
var getTextContentAccessor = __webpack_require__(
|
6395
|
+
var getTextContentAccessor = __webpack_require__(52);
|
6226
6396
|
|
6227
6397
|
/**
|
6228
6398
|
* This helper class stores information about text content of a target node,
|
@@ -6302,7 +6472,7 @@
|
|
6302
6472
|
module.exports = FallbackCompositionState;
|
6303
6473
|
|
6304
6474
|
/***/ },
|
6305
|
-
/*
|
6475
|
+
/* 52 */
|
6306
6476
|
/***/ function(module, exports, __webpack_require__) {
|
6307
6477
|
|
6308
6478
|
/**
|
@@ -6318,7 +6488,7 @@
|
|
6318
6488
|
|
6319
6489
|
'use strict';
|
6320
6490
|
|
6321
|
-
var ExecutionEnvironment = __webpack_require__(
|
6491
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
6322
6492
|
|
6323
6493
|
var contentKey = null;
|
6324
6494
|
|
@@ -6340,7 +6510,7 @@
|
|
6340
6510
|
module.exports = getTextContentAccessor;
|
6341
6511
|
|
6342
6512
|
/***/ },
|
6343
|
-
/*
|
6513
|
+
/* 53 */
|
6344
6514
|
/***/ function(module, exports, __webpack_require__) {
|
6345
6515
|
|
6346
6516
|
/**
|
@@ -6356,7 +6526,7 @@
|
|
6356
6526
|
|
6357
6527
|
'use strict';
|
6358
6528
|
|
6359
|
-
var SyntheticEvent = __webpack_require__(
|
6529
|
+
var SyntheticEvent = __webpack_require__(54);
|
6360
6530
|
|
6361
6531
|
/**
|
6362
6532
|
* @interface Event
|
@@ -6381,7 +6551,7 @@
|
|
6381
6551
|
module.exports = SyntheticCompositionEvent;
|
6382
6552
|
|
6383
6553
|
/***/ },
|
6384
|
-
/*
|
6554
|
+
/* 54 */
|
6385
6555
|
/***/ function(module, exports, __webpack_require__) {
|
6386
6556
|
|
6387
6557
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -6647,7 +6817,7 @@
|
|
6647
6817
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
6648
6818
|
|
6649
6819
|
/***/ },
|
6650
|
-
/*
|
6820
|
+
/* 55 */
|
6651
6821
|
/***/ function(module, exports, __webpack_require__) {
|
6652
6822
|
|
6653
6823
|
/**
|
@@ -6663,7 +6833,7 @@
|
|
6663
6833
|
|
6664
6834
|
'use strict';
|
6665
6835
|
|
6666
|
-
var SyntheticEvent = __webpack_require__(
|
6836
|
+
var SyntheticEvent = __webpack_require__(54);
|
6667
6837
|
|
6668
6838
|
/**
|
6669
6839
|
* @interface Event
|
@@ -6689,7 +6859,7 @@
|
|
6689
6859
|
module.exports = SyntheticInputEvent;
|
6690
6860
|
|
6691
6861
|
/***/ },
|
6692
|
-
/*
|
6862
|
+
/* 56 */
|
6693
6863
|
/***/ function(module, exports, __webpack_require__) {
|
6694
6864
|
|
6695
6865
|
/**
|
@@ -6705,18 +6875,18 @@
|
|
6705
6875
|
|
6706
6876
|
'use strict';
|
6707
6877
|
|
6708
|
-
var EventConstants = __webpack_require__(
|
6709
|
-
var EventPluginHub = __webpack_require__(
|
6710
|
-
var EventPropagators = __webpack_require__(
|
6711
|
-
var ExecutionEnvironment = __webpack_require__(
|
6712
|
-
var ReactDOMComponentTree = __webpack_require__(
|
6713
|
-
var ReactUpdates = __webpack_require__(
|
6714
|
-
var SyntheticEvent = __webpack_require__(
|
6878
|
+
var EventConstants = __webpack_require__(42);
|
6879
|
+
var EventPluginHub = __webpack_require__(44);
|
6880
|
+
var EventPropagators = __webpack_require__(43);
|
6881
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
6882
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
6883
|
+
var ReactUpdates = __webpack_require__(57);
|
6884
|
+
var SyntheticEvent = __webpack_require__(54);
|
6715
6885
|
|
6716
|
-
var getEventTarget = __webpack_require__(
|
6717
|
-
var isEventSupported = __webpack_require__(
|
6718
|
-
var isTextInputElement = __webpack_require__(
|
6719
|
-
var keyOf = __webpack_require__(
|
6886
|
+
var getEventTarget = __webpack_require__(71);
|
6887
|
+
var isEventSupported = __webpack_require__(72);
|
6888
|
+
var isTextInputElement = __webpack_require__(73);
|
6889
|
+
var keyOf = __webpack_require__(25);
|
6720
6890
|
|
6721
6891
|
var topLevelTypes = EventConstants.topLevelTypes;
|
6722
6892
|
|
@@ -7019,7 +7189,7 @@
|
|
7019
7189
|
module.exports = ChangeEventPlugin;
|
7020
7190
|
|
7021
7191
|
/***/ },
|
7022
|
-
/*
|
7192
|
+
/* 57 */
|
7023
7193
|
/***/ function(module, exports, __webpack_require__) {
|
7024
7194
|
|
7025
7195
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -7038,11 +7208,11 @@
|
|
7038
7208
|
var _prodInvariant = __webpack_require__(7),
|
7039
7209
|
_assign = __webpack_require__(4);
|
7040
7210
|
|
7041
|
-
var CallbackQueue = __webpack_require__(
|
7211
|
+
var CallbackQueue = __webpack_require__(58);
|
7042
7212
|
var PooledClass = __webpack_require__(6);
|
7043
|
-
var ReactFeatureFlags = __webpack_require__(
|
7044
|
-
var ReactReconciler = __webpack_require__(
|
7045
|
-
var Transaction = __webpack_require__(
|
7213
|
+
var ReactFeatureFlags = __webpack_require__(59);
|
7214
|
+
var ReactReconciler = __webpack_require__(60);
|
7215
|
+
var Transaction = __webpack_require__(70);
|
7046
7216
|
|
7047
7217
|
var invariant = __webpack_require__(8);
|
7048
7218
|
|
@@ -7276,7 +7446,7 @@
|
|
7276
7446
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
7277
7447
|
|
7278
7448
|
/***/ },
|
7279
|
-
/*
|
7449
|
+
/* 58 */
|
7280
7450
|
/***/ function(module, exports, __webpack_require__) {
|
7281
7451
|
|
7282
7452
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -7388,7 +7558,7 @@
|
|
7388
7558
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
7389
7559
|
|
7390
7560
|
/***/ },
|
7391
|
-
/*
|
7561
|
+
/* 59 */
|
7392
7562
|
/***/ function(module, exports) {
|
7393
7563
|
|
7394
7564
|
/**
|
@@ -7415,7 +7585,7 @@
|
|
7415
7585
|
module.exports = ReactFeatureFlags;
|
7416
7586
|
|
7417
7587
|
/***/ },
|
7418
|
-
/*
|
7588
|
+
/* 60 */
|
7419
7589
|
/***/ function(module, exports, __webpack_require__) {
|
7420
7590
|
|
7421
7591
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -7431,12 +7601,10 @@
|
|
7431
7601
|
|
7432
7602
|
'use strict';
|
7433
7603
|
|
7434
|
-
var
|
7435
|
-
|
7436
|
-
var ReactRef = __webpack_require__(59);
|
7437
|
-
var ReactInstrumentation = __webpack_require__(61);
|
7604
|
+
var ReactRef = __webpack_require__(61);
|
7605
|
+
var ReactInstrumentation = __webpack_require__(63);
|
7438
7606
|
|
7439
|
-
var
|
7607
|
+
var warning = __webpack_require__(11);
|
7440
7608
|
|
7441
7609
|
/**
|
7442
7610
|
* Helper to call ReactRef.attachRefs with this composite component, split out
|
@@ -7573,7 +7741,7 @@
|
|
7573
7741
|
if (internalInstance._updateBatchNumber !== updateBatchNumber) {
|
7574
7742
|
// The component's enqueued batch number should always be the current
|
7575
7743
|
// batch or the following one.
|
7576
|
-
|
7744
|
+
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;
|
7577
7745
|
return;
|
7578
7746
|
}
|
7579
7747
|
if (process.env.NODE_ENV !== 'production') {
|
@@ -7597,7 +7765,7 @@
|
|
7597
7765
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
7598
7766
|
|
7599
7767
|
/***/ },
|
7600
|
-
/*
|
7768
|
+
/* 61 */
|
7601
7769
|
/***/ function(module, exports, __webpack_require__) {
|
7602
7770
|
|
7603
7771
|
/**
|
@@ -7613,7 +7781,7 @@
|
|
7613
7781
|
|
7614
7782
|
'use strict';
|
7615
7783
|
|
7616
|
-
var ReactOwner = __webpack_require__(
|
7784
|
+
var ReactOwner = __webpack_require__(62);
|
7617
7785
|
|
7618
7786
|
var ReactRef = {};
|
7619
7787
|
|
@@ -7663,7 +7831,9 @@
|
|
7663
7831
|
|
7664
7832
|
return(
|
7665
7833
|
// This has a few false positives w/r/t empty components.
|
7666
|
-
prevEmpty || nextEmpty || nextElement.
|
7834
|
+
prevEmpty || nextEmpty || nextElement.ref !== prevElement.ref ||
|
7835
|
+
// If owner changes but we have an unchanged function ref, don't update refs
|
7836
|
+
typeof nextElement.ref === 'string' && nextElement._owner !== prevElement._owner
|
7667
7837
|
);
|
7668
7838
|
};
|
7669
7839
|
|
@@ -7680,7 +7850,7 @@
|
|
7680
7850
|
module.exports = ReactRef;
|
7681
7851
|
|
7682
7852
|
/***/ },
|
7683
|
-
/*
|
7853
|
+
/* 62 */
|
7684
7854
|
/***/ function(module, exports, __webpack_require__) {
|
7685
7855
|
|
7686
7856
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -7780,7 +7950,7 @@
|
|
7780
7950
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
7781
7951
|
|
7782
7952
|
/***/ },
|
7783
|
-
/*
|
7953
|
+
/* 63 */
|
7784
7954
|
/***/ function(module, exports, __webpack_require__) {
|
7785
7955
|
|
7786
7956
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -7799,7 +7969,7 @@
|
|
7799
7969
|
var debugTool = null;
|
7800
7970
|
|
7801
7971
|
if (process.env.NODE_ENV !== 'production') {
|
7802
|
-
var ReactDebugTool = __webpack_require__(
|
7972
|
+
var ReactDebugTool = __webpack_require__(64);
|
7803
7973
|
debugTool = ReactDebugTool;
|
7804
7974
|
}
|
7805
7975
|
|
@@ -7807,7 +7977,7 @@
|
|
7807
7977
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
7808
7978
|
|
7809
7979
|
/***/ },
|
7810
|
-
/*
|
7980
|
+
/* 64 */
|
7811
7981
|
/***/ function(module, exports, __webpack_require__) {
|
7812
7982
|
|
7813
7983
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -7823,12 +7993,13 @@
|
|
7823
7993
|
|
7824
7994
|
'use strict';
|
7825
7995
|
|
7826
|
-
var ReactInvalidSetStateWarningDevTool = __webpack_require__(
|
7827
|
-
var ReactHostOperationHistoryDevtool = __webpack_require__(
|
7828
|
-
var ReactComponentTreeDevtool = __webpack_require__(
|
7829
|
-
var
|
7996
|
+
var ReactInvalidSetStateWarningDevTool = __webpack_require__(65);
|
7997
|
+
var ReactHostOperationHistoryDevtool = __webpack_require__(66);
|
7998
|
+
var ReactComponentTreeDevtool = __webpack_require__(29);
|
7999
|
+
var ReactChildrenMutationWarningDevtool = __webpack_require__(67);
|
8000
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
7830
8001
|
|
7831
|
-
var performanceNow = __webpack_require__(
|
8002
|
+
var performanceNow = __webpack_require__(68);
|
7832
8003
|
var warning = __webpack_require__(11);
|
7833
8004
|
|
7834
8005
|
var eventHandlers = [];
|
@@ -7858,6 +8029,8 @@
|
|
7858
8029
|
var currentTimerNestedFlushDuration = null;
|
7859
8030
|
var currentTimerType = null;
|
7860
8031
|
|
8032
|
+
var lifeCycleTimerHasWarned = false;
|
8033
|
+
|
7861
8034
|
function clearHistory() {
|
7862
8035
|
ReactComponentTreeDevtool.purgeUnmountedComponents();
|
7863
8036
|
ReactHostOperationHistoryDevtool.clearHistory();
|
@@ -7915,7 +8088,10 @@
|
|
7915
8088
|
if (currentFlushNesting === 0) {
|
7916
8089
|
return;
|
7917
8090
|
}
|
7918
|
-
|
8091
|
+
if (currentTimerType && !lifeCycleTimerHasWarned) {
|
8092
|
+
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;
|
8093
|
+
lifeCycleTimerHasWarned = true;
|
8094
|
+
}
|
7919
8095
|
currentTimerStartTime = performanceNow();
|
7920
8096
|
currentTimerNestedFlushDuration = 0;
|
7921
8097
|
currentTimerDebugID = debugID;
|
@@ -7926,7 +8102,10 @@
|
|
7926
8102
|
if (currentFlushNesting === 0) {
|
7927
8103
|
return;
|
7928
8104
|
}
|
7929
|
-
|
8105
|
+
if (currentTimerType !== timerType && !lifeCycleTimerHasWarned) {
|
8106
|
+
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;
|
8107
|
+
lifeCycleTimerHasWarned = true;
|
8108
|
+
}
|
7930
8109
|
if (isProfiling) {
|
7931
8110
|
currentFlushMeasurements.push({
|
7932
8111
|
timerType: timerType,
|
@@ -8052,6 +8231,14 @@
|
|
8052
8231
|
checkDebugID(debugID);
|
8053
8232
|
emitEvent('onHostOperation', debugID, type, payload);
|
8054
8233
|
},
|
8234
|
+
onComponentHasMounted: function (debugID) {
|
8235
|
+
checkDebugID(debugID);
|
8236
|
+
emitEvent('onComponentHasMounted', debugID);
|
8237
|
+
},
|
8238
|
+
onComponentHasUpdated: function (debugID) {
|
8239
|
+
checkDebugID(debugID);
|
8240
|
+
emitEvent('onComponentHasUpdated', debugID);
|
8241
|
+
},
|
8055
8242
|
onSetState: function () {
|
8056
8243
|
emitEvent('onSetState');
|
8057
8244
|
},
|
@@ -8107,6 +8294,7 @@
|
|
8107
8294
|
|
8108
8295
|
ReactDebugTool.addDevtool(ReactInvalidSetStateWarningDevTool);
|
8109
8296
|
ReactDebugTool.addDevtool(ReactComponentTreeDevtool);
|
8297
|
+
ReactDebugTool.addDevtool(ReactChildrenMutationWarningDevtool);
|
8110
8298
|
var url = ExecutionEnvironment.canUseDOM && window.location.href || '';
|
8111
8299
|
if (/[?&]react_perf\b/.test(url)) {
|
8112
8300
|
ReactDebugTool.beginProfiling();
|
@@ -8116,7 +8304,7 @@
|
|
8116
8304
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
8117
8305
|
|
8118
8306
|
/***/ },
|
8119
|
-
/*
|
8307
|
+
/* 65 */
|
8120
8308
|
/***/ function(module, exports, __webpack_require__) {
|
8121
8309
|
|
8122
8310
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -8158,7 +8346,7 @@
|
|
8158
8346
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
8159
8347
|
|
8160
8348
|
/***/ },
|
8161
|
-
/*
|
8349
|
+
/* 66 */
|
8162
8350
|
/***/ function(module, exports) {
|
8163
8351
|
|
8164
8352
|
/**
|
@@ -8200,61 +8388,129 @@
|
|
8200
8388
|
module.exports = ReactHostOperationHistoryDevtool;
|
8201
8389
|
|
8202
8390
|
/***/ },
|
8203
|
-
/*
|
8391
|
+
/* 67 */
|
8204
8392
|
/***/ function(module, exports, __webpack_require__) {
|
8205
8393
|
|
8206
|
-
|
8207
|
-
|
8208
|
-
/**
|
8209
|
-
* Copyright (c) 2013-present, Facebook, Inc.
|
8394
|
+
/* WEBPACK VAR INJECTION */(function(process) {/**
|
8395
|
+
* Copyright 2013-present, Facebook, Inc.
|
8210
8396
|
* All rights reserved.
|
8211
8397
|
*
|
8212
8398
|
* This source code is licensed under the BSD-style license found in the
|
8213
8399
|
* LICENSE file in the root directory of this source tree. An additional grant
|
8214
8400
|
* of patent rights can be found in the PATENTS file in the same directory.
|
8215
8401
|
*
|
8216
|
-
* @
|
8402
|
+
* @providesModule ReactChildrenMutationWarningDevtool
|
8217
8403
|
*/
|
8218
8404
|
|
8219
|
-
|
8220
|
-
|
8221
|
-
var performanceNow;
|
8222
|
-
|
8223
|
-
/**
|
8224
|
-
* Detect if we can use `window.performance.now()` and gracefully fallback to
|
8225
|
-
* `Date.now()` if it doesn't exist. We need to support Firefox < 15 for now
|
8226
|
-
* because of Facebook's testing infrastructure.
|
8227
|
-
*/
|
8228
|
-
if (performance.now) {
|
8229
|
-
performanceNow = function performanceNow() {
|
8230
|
-
return performance.now();
|
8231
|
-
};
|
8232
|
-
} else {
|
8233
|
-
performanceNow = function performanceNow() {
|
8234
|
-
return Date.now();
|
8235
|
-
};
|
8236
|
-
}
|
8405
|
+
'use strict';
|
8237
8406
|
|
8238
|
-
|
8407
|
+
var ReactComponentTreeDevtool = __webpack_require__(29);
|
8239
8408
|
|
8240
|
-
|
8241
|
-
/* 66 */
|
8242
|
-
/***/ function(module, exports, __webpack_require__) {
|
8409
|
+
var warning = __webpack_require__(11);
|
8243
8410
|
|
8244
|
-
|
8245
|
-
|
8246
|
-
|
8247
|
-
|
8248
|
-
|
8249
|
-
|
8250
|
-
|
8251
|
-
|
8252
|
-
|
8253
|
-
|
8411
|
+
var elements = {};
|
8412
|
+
|
8413
|
+
function handleElement(debugID, element) {
|
8414
|
+
if (element == null) {
|
8415
|
+
return;
|
8416
|
+
}
|
8417
|
+
if (element._shadowChildren === undefined) {
|
8418
|
+
return;
|
8419
|
+
}
|
8420
|
+
if (element._shadowChildren === element.props.children) {
|
8421
|
+
return;
|
8422
|
+
}
|
8423
|
+
var isMutated = false;
|
8424
|
+
if (Array.isArray(element._shadowChildren)) {
|
8425
|
+
if (element._shadowChildren.length === element.props.children.length) {
|
8426
|
+
for (var i = 0; i < element._shadowChildren.length; i++) {
|
8427
|
+
if (element._shadowChildren[i] !== element.props.children[i]) {
|
8428
|
+
isMutated = true;
|
8429
|
+
}
|
8430
|
+
}
|
8431
|
+
} else {
|
8432
|
+
isMutated = true;
|
8433
|
+
}
|
8434
|
+
}
|
8435
|
+
process.env.NODE_ENV !== 'production' ? warning(Array.isArray(element._shadowChildren) && !isMutated, 'Component\'s children should not be mutated.%s', ReactComponentTreeDevtool.getStackAddendumByID(debugID)) : void 0;
|
8436
|
+
}
|
8437
|
+
|
8438
|
+
var ReactDOMUnknownPropertyDevtool = {
|
8439
|
+
onBeforeMountComponent: function (debugID, element) {
|
8440
|
+
elements[debugID] = element;
|
8441
|
+
},
|
8442
|
+
onBeforeUpdateComponent: function (debugID, element) {
|
8443
|
+
elements[debugID] = element;
|
8444
|
+
},
|
8445
|
+
onComponentHasMounted: function (debugID) {
|
8446
|
+
handleElement(debugID, elements[debugID]);
|
8447
|
+
delete elements[debugID];
|
8448
|
+
},
|
8449
|
+
onComponentHasUpdated: function (debugID) {
|
8450
|
+
handleElement(debugID, elements[debugID]);
|
8451
|
+
delete elements[debugID];
|
8452
|
+
}
|
8453
|
+
};
|
8454
|
+
|
8455
|
+
module.exports = ReactDOMUnknownPropertyDevtool;
|
8456
|
+
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
8457
|
+
|
8458
|
+
/***/ },
|
8459
|
+
/* 68 */
|
8460
|
+
/***/ function(module, exports, __webpack_require__) {
|
8461
|
+
|
8462
|
+
'use strict';
|
8463
|
+
|
8464
|
+
/**
|
8465
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
8466
|
+
* All rights reserved.
|
8467
|
+
*
|
8468
|
+
* This source code is licensed under the BSD-style license found in the
|
8469
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
8470
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
8471
|
+
*
|
8472
|
+
* @typechecks
|
8473
|
+
*/
|
8474
|
+
|
8475
|
+
var performance = __webpack_require__(69);
|
8476
|
+
|
8477
|
+
var performanceNow;
|
8478
|
+
|
8479
|
+
/**
|
8480
|
+
* Detect if we can use `window.performance.now()` and gracefully fallback to
|
8481
|
+
* `Date.now()` if it doesn't exist. We need to support Firefox < 15 for now
|
8482
|
+
* because of Facebook's testing infrastructure.
|
8483
|
+
*/
|
8484
|
+
if (performance.now) {
|
8485
|
+
performanceNow = function performanceNow() {
|
8486
|
+
return performance.now();
|
8487
|
+
};
|
8488
|
+
} else {
|
8489
|
+
performanceNow = function performanceNow() {
|
8490
|
+
return Date.now();
|
8491
|
+
};
|
8492
|
+
}
|
8493
|
+
|
8494
|
+
module.exports = performanceNow;
|
8495
|
+
|
8496
|
+
/***/ },
|
8497
|
+
/* 69 */
|
8498
|
+
/***/ function(module, exports, __webpack_require__) {
|
8499
|
+
|
8500
|
+
/**
|
8501
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
8502
|
+
* All rights reserved.
|
8503
|
+
*
|
8504
|
+
* This source code is licensed under the BSD-style license found in the
|
8505
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
8506
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
8507
|
+
*
|
8508
|
+
* @typechecks
|
8509
|
+
*/
|
8254
8510
|
|
8255
8511
|
'use strict';
|
8256
8512
|
|
8257
|
-
var ExecutionEnvironment = __webpack_require__(
|
8513
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
8258
8514
|
|
8259
8515
|
var performance;
|
8260
8516
|
|
@@ -8265,7 +8521,7 @@
|
|
8265
8521
|
module.exports = performance || {};
|
8266
8522
|
|
8267
8523
|
/***/ },
|
8268
|
-
/*
|
8524
|
+
/* 70 */
|
8269
8525
|
/***/ function(module, exports, __webpack_require__) {
|
8270
8526
|
|
8271
8527
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -8504,7 +8760,7 @@
|
|
8504
8760
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
8505
8761
|
|
8506
8762
|
/***/ },
|
8507
|
-
/*
|
8763
|
+
/* 71 */
|
8508
8764
|
/***/ function(module, exports) {
|
8509
8765
|
|
8510
8766
|
/**
|
@@ -8544,7 +8800,7 @@
|
|
8544
8800
|
module.exports = getEventTarget;
|
8545
8801
|
|
8546
8802
|
/***/ },
|
8547
|
-
/*
|
8803
|
+
/* 72 */
|
8548
8804
|
/***/ function(module, exports, __webpack_require__) {
|
8549
8805
|
|
8550
8806
|
/**
|
@@ -8560,7 +8816,7 @@
|
|
8560
8816
|
|
8561
8817
|
'use strict';
|
8562
8818
|
|
8563
|
-
var ExecutionEnvironment = __webpack_require__(
|
8819
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
8564
8820
|
|
8565
8821
|
var useHasFeature;
|
8566
8822
|
if (ExecutionEnvironment.canUseDOM) {
|
@@ -8609,7 +8865,7 @@
|
|
8609
8865
|
module.exports = isEventSupported;
|
8610
8866
|
|
8611
8867
|
/***/ },
|
8612
|
-
/*
|
8868
|
+
/* 73 */
|
8613
8869
|
/***/ function(module, exports) {
|
8614
8870
|
|
8615
8871
|
/**
|
@@ -8665,7 +8921,7 @@
|
|
8665
8921
|
module.exports = isTextInputElement;
|
8666
8922
|
|
8667
8923
|
/***/ },
|
8668
|
-
/*
|
8924
|
+
/* 74 */
|
8669
8925
|
/***/ function(module, exports, __webpack_require__) {
|
8670
8926
|
|
8671
8927
|
/**
|
@@ -8681,7 +8937,7 @@
|
|
8681
8937
|
|
8682
8938
|
'use strict';
|
8683
8939
|
|
8684
|
-
var keyOf = __webpack_require__(
|
8940
|
+
var keyOf = __webpack_require__(25);
|
8685
8941
|
|
8686
8942
|
/**
|
8687
8943
|
* Module that is injectable into `EventPluginHub`, that specifies a
|
@@ -8697,7 +8953,7 @@
|
|
8697
8953
|
module.exports = DefaultEventPluginOrder;
|
8698
8954
|
|
8699
8955
|
/***/ },
|
8700
|
-
/*
|
8956
|
+
/* 75 */
|
8701
8957
|
/***/ function(module, exports, __webpack_require__) {
|
8702
8958
|
|
8703
8959
|
/**
|
@@ -8713,12 +8969,12 @@
|
|
8713
8969
|
|
8714
8970
|
'use strict';
|
8715
8971
|
|
8716
|
-
var EventConstants = __webpack_require__(
|
8717
|
-
var EventPropagators = __webpack_require__(
|
8718
|
-
var ReactDOMComponentTree = __webpack_require__(
|
8719
|
-
var SyntheticMouseEvent = __webpack_require__(
|
8972
|
+
var EventConstants = __webpack_require__(42);
|
8973
|
+
var EventPropagators = __webpack_require__(43);
|
8974
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
8975
|
+
var SyntheticMouseEvent = __webpack_require__(76);
|
8720
8976
|
|
8721
|
-
var keyOf = __webpack_require__(
|
8977
|
+
var keyOf = __webpack_require__(25);
|
8722
8978
|
|
8723
8979
|
var topLevelTypes = EventConstants.topLevelTypes;
|
8724
8980
|
|
@@ -8807,7 +9063,7 @@
|
|
8807
9063
|
module.exports = EnterLeaveEventPlugin;
|
8808
9064
|
|
8809
9065
|
/***/ },
|
8810
|
-
/*
|
9066
|
+
/* 76 */
|
8811
9067
|
/***/ function(module, exports, __webpack_require__) {
|
8812
9068
|
|
8813
9069
|
/**
|
@@ -8823,10 +9079,10 @@
|
|
8823
9079
|
|
8824
9080
|
'use strict';
|
8825
9081
|
|
8826
|
-
var SyntheticUIEvent = __webpack_require__(
|
8827
|
-
var ViewportMetrics = __webpack_require__(
|
9082
|
+
var SyntheticUIEvent = __webpack_require__(77);
|
9083
|
+
var ViewportMetrics = __webpack_require__(78);
|
8828
9084
|
|
8829
|
-
var getEventModifierState = __webpack_require__(
|
9085
|
+
var getEventModifierState = __webpack_require__(79);
|
8830
9086
|
|
8831
9087
|
/**
|
8832
9088
|
* @interface MouseEvent
|
@@ -8884,7 +9140,7 @@
|
|
8884
9140
|
module.exports = SyntheticMouseEvent;
|
8885
9141
|
|
8886
9142
|
/***/ },
|
8887
|
-
/*
|
9143
|
+
/* 77 */
|
8888
9144
|
/***/ function(module, exports, __webpack_require__) {
|
8889
9145
|
|
8890
9146
|
/**
|
@@ -8900,9 +9156,9 @@
|
|
8900
9156
|
|
8901
9157
|
'use strict';
|
8902
9158
|
|
8903
|
-
var SyntheticEvent = __webpack_require__(
|
9159
|
+
var SyntheticEvent = __webpack_require__(54);
|
8904
9160
|
|
8905
|
-
var getEventTarget = __webpack_require__(
|
9161
|
+
var getEventTarget = __webpack_require__(71);
|
8906
9162
|
|
8907
9163
|
/**
|
8908
9164
|
* @interface UIEvent
|
@@ -8948,7 +9204,7 @@
|
|
8948
9204
|
module.exports = SyntheticUIEvent;
|
8949
9205
|
|
8950
9206
|
/***/ },
|
8951
|
-
/*
|
9207
|
+
/* 78 */
|
8952
9208
|
/***/ function(module, exports) {
|
8953
9209
|
|
8954
9210
|
/**
|
@@ -8980,7 +9236,7 @@
|
|
8980
9236
|
module.exports = ViewportMetrics;
|
8981
9237
|
|
8982
9238
|
/***/ },
|
8983
|
-
/*
|
9239
|
+
/* 79 */
|
8984
9240
|
/***/ function(module, exports) {
|
8985
9241
|
|
8986
9242
|
/**
|
@@ -9028,7 +9284,7 @@
|
|
9028
9284
|
module.exports = getEventModifierState;
|
9029
9285
|
|
9030
9286
|
/***/ },
|
9031
|
-
/*
|
9287
|
+
/* 80 */
|
9032
9288
|
/***/ function(module, exports, __webpack_require__) {
|
9033
9289
|
|
9034
9290
|
/**
|
@@ -9044,7 +9300,7 @@
|
|
9044
9300
|
|
9045
9301
|
'use strict';
|
9046
9302
|
|
9047
|
-
var DOMProperty = __webpack_require__(
|
9303
|
+
var DOMProperty = __webpack_require__(38);
|
9048
9304
|
|
9049
9305
|
var MUST_USE_PROPERTY = DOMProperty.injection.MUST_USE_PROPERTY;
|
9050
9306
|
var HAS_BOOLEAN_VALUE = DOMProperty.injection.HAS_BOOLEAN_VALUE;
|
@@ -9150,6 +9406,7 @@
|
|
9150
9406
|
profile: 0,
|
9151
9407
|
radioGroup: 0,
|
9152
9408
|
readOnly: HAS_BOOLEAN_VALUE,
|
9409
|
+
referrerPolicy: 0,
|
9153
9410
|
rel: 0,
|
9154
9411
|
required: HAS_BOOLEAN_VALUE,
|
9155
9412
|
reversed: HAS_BOOLEAN_VALUE,
|
@@ -9241,7 +9498,7 @@
|
|
9241
9498
|
module.exports = HTMLDOMPropertyConfig;
|
9242
9499
|
|
9243
9500
|
/***/ },
|
9244
|
-
/*
|
9501
|
+
/* 81 */
|
9245
9502
|
/***/ function(module, exports, __webpack_require__) {
|
9246
9503
|
|
9247
9504
|
/**
|
@@ -9257,8 +9514,8 @@
|
|
9257
9514
|
|
9258
9515
|
'use strict';
|
9259
9516
|
|
9260
|
-
var DOMChildrenOperations = __webpack_require__(
|
9261
|
-
var ReactDOMIDOperations = __webpack_require__(
|
9517
|
+
var DOMChildrenOperations = __webpack_require__(82);
|
9518
|
+
var ReactDOMIDOperations = __webpack_require__(94);
|
9262
9519
|
|
9263
9520
|
/**
|
9264
9521
|
* Abstracts away all functionality of the reconciler that requires knowledge of
|
@@ -9285,7 +9542,7 @@
|
|
9285
9542
|
module.exports = ReactComponentBrowserEnvironment;
|
9286
9543
|
|
9287
9544
|
/***/ },
|
9288
|
-
/*
|
9545
|
+
/* 82 */
|
9289
9546
|
/***/ function(module, exports, __webpack_require__) {
|
9290
9547
|
|
9291
9548
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -9301,15 +9558,15 @@
|
|
9301
9558
|
|
9302
9559
|
'use strict';
|
9303
9560
|
|
9304
|
-
var DOMLazyTree = __webpack_require__(
|
9305
|
-
var Danger = __webpack_require__(
|
9306
|
-
var ReactMultiChildUpdateTypes = __webpack_require__(
|
9307
|
-
var ReactDOMComponentTree = __webpack_require__(
|
9308
|
-
var ReactInstrumentation = __webpack_require__(
|
9561
|
+
var DOMLazyTree = __webpack_require__(83);
|
9562
|
+
var Danger = __webpack_require__(89);
|
9563
|
+
var ReactMultiChildUpdateTypes = __webpack_require__(93);
|
9564
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
9565
|
+
var ReactInstrumentation = __webpack_require__(63);
|
9309
9566
|
|
9310
|
-
var createMicrosoftUnsafeLocalFunction = __webpack_require__(
|
9311
|
-
var setInnerHTML = __webpack_require__(
|
9312
|
-
var setTextContent = __webpack_require__(
|
9567
|
+
var createMicrosoftUnsafeLocalFunction = __webpack_require__(86);
|
9568
|
+
var setInnerHTML = __webpack_require__(85);
|
9569
|
+
var setTextContent = __webpack_require__(87);
|
9313
9570
|
|
9314
9571
|
function getNodeAfter(parentNode, node) {
|
9315
9572
|
// Special case for text components, which return [open, close] comments
|
@@ -9485,7 +9742,7 @@
|
|
9485
9742
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
9486
9743
|
|
9487
9744
|
/***/ },
|
9488
|
-
/*
|
9745
|
+
/* 83 */
|
9489
9746
|
/***/ function(module, exports, __webpack_require__) {
|
9490
9747
|
|
9491
9748
|
/**
|
@@ -9501,11 +9758,11 @@
|
|
9501
9758
|
|
9502
9759
|
'use strict';
|
9503
9760
|
|
9504
|
-
var DOMNamespaces = __webpack_require__(
|
9505
|
-
var setInnerHTML = __webpack_require__(
|
9761
|
+
var DOMNamespaces = __webpack_require__(84);
|
9762
|
+
var setInnerHTML = __webpack_require__(85);
|
9506
9763
|
|
9507
|
-
var createMicrosoftUnsafeLocalFunction = __webpack_require__(
|
9508
|
-
var setTextContent = __webpack_require__(
|
9764
|
+
var createMicrosoftUnsafeLocalFunction = __webpack_require__(86);
|
9765
|
+
var setTextContent = __webpack_require__(87);
|
9509
9766
|
|
9510
9767
|
var ELEMENT_NODE_TYPE = 1;
|
9511
9768
|
var DOCUMENT_FRAGMENT_NODE_TYPE = 11;
|
@@ -9608,7 +9865,7 @@
|
|
9608
9865
|
module.exports = DOMLazyTree;
|
9609
9866
|
|
9610
9867
|
/***/ },
|
9611
|
-
/*
|
9868
|
+
/* 84 */
|
9612
9869
|
/***/ function(module, exports) {
|
9613
9870
|
|
9614
9871
|
/**
|
@@ -9633,7 +9890,7 @@
|
|
9633
9890
|
module.exports = DOMNamespaces;
|
9634
9891
|
|
9635
9892
|
/***/ },
|
9636
|
-
/*
|
9893
|
+
/* 85 */
|
9637
9894
|
/***/ function(module, exports, __webpack_require__) {
|
9638
9895
|
|
9639
9896
|
/**
|
@@ -9649,13 +9906,13 @@
|
|
9649
9906
|
|
9650
9907
|
'use strict';
|
9651
9908
|
|
9652
|
-
var ExecutionEnvironment = __webpack_require__(
|
9653
|
-
var DOMNamespaces = __webpack_require__(
|
9909
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
9910
|
+
var DOMNamespaces = __webpack_require__(84);
|
9654
9911
|
|
9655
9912
|
var WHITESPACE_TEST = /^[ \r\n\t\f]/;
|
9656
9913
|
var NONVISIBLE_TEST = /<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/;
|
9657
9914
|
|
9658
|
-
var createMicrosoftUnsafeLocalFunction = __webpack_require__(
|
9915
|
+
var createMicrosoftUnsafeLocalFunction = __webpack_require__(86);
|
9659
9916
|
|
9660
9917
|
// SVG temp container for IE lacking innerHTML
|
9661
9918
|
var reusableSVGContainer;
|
@@ -9736,7 +9993,7 @@
|
|
9736
9993
|
module.exports = setInnerHTML;
|
9737
9994
|
|
9738
9995
|
/***/ },
|
9739
|
-
/*
|
9996
|
+
/* 86 */
|
9740
9997
|
/***/ function(module, exports) {
|
9741
9998
|
|
9742
9999
|
/**
|
@@ -9773,7 +10030,7 @@
|
|
9773
10030
|
module.exports = createMicrosoftUnsafeLocalFunction;
|
9774
10031
|
|
9775
10032
|
/***/ },
|
9776
|
-
/*
|
10033
|
+
/* 87 */
|
9777
10034
|
/***/ function(module, exports, __webpack_require__) {
|
9778
10035
|
|
9779
10036
|
/**
|
@@ -9789,9 +10046,9 @@
|
|
9789
10046
|
|
9790
10047
|
'use strict';
|
9791
10048
|
|
9792
|
-
var ExecutionEnvironment = __webpack_require__(
|
9793
|
-
var escapeTextContentForBrowser = __webpack_require__(
|
9794
|
-
var setInnerHTML = __webpack_require__(
|
10049
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
10050
|
+
var escapeTextContentForBrowser = __webpack_require__(88);
|
10051
|
+
var setInnerHTML = __webpack_require__(85);
|
9795
10052
|
|
9796
10053
|
/**
|
9797
10054
|
* Set the textContent property of a node, ensuring that whitespace is preserved
|
@@ -9826,7 +10083,7 @@
|
|
9826
10083
|
module.exports = setTextContent;
|
9827
10084
|
|
9828
10085
|
/***/ },
|
9829
|
-
/*
|
10086
|
+
/* 88 */
|
9830
10087
|
/***/ function(module, exports) {
|
9831
10088
|
|
9832
10089
|
/**
|
@@ -9953,7 +10210,7 @@
|
|
9953
10210
|
module.exports = escapeTextContentForBrowser;
|
9954
10211
|
|
9955
10212
|
/***/ },
|
9956
|
-
/*
|
10213
|
+
/* 89 */
|
9957
10214
|
/***/ function(module, exports, __webpack_require__) {
|
9958
10215
|
|
9959
10216
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -9971,10 +10228,10 @@
|
|
9971
10228
|
|
9972
10229
|
var _prodInvariant = __webpack_require__(7);
|
9973
10230
|
|
9974
|
-
var DOMLazyTree = __webpack_require__(
|
9975
|
-
var ExecutionEnvironment = __webpack_require__(
|
10231
|
+
var DOMLazyTree = __webpack_require__(83);
|
10232
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
9976
10233
|
|
9977
|
-
var createNodesFromMarkup = __webpack_require__(
|
10234
|
+
var createNodesFromMarkup = __webpack_require__(90);
|
9978
10235
|
var emptyFunction = __webpack_require__(12);
|
9979
10236
|
var invariant = __webpack_require__(8);
|
9980
10237
|
|
@@ -10007,7 +10264,7 @@
|
|
10007
10264
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
10008
10265
|
|
10009
10266
|
/***/ },
|
10010
|
-
/*
|
10267
|
+
/* 90 */
|
10011
10268
|
/***/ function(module, exports, __webpack_require__) {
|
10012
10269
|
|
10013
10270
|
/* WEBPACK VAR INJECTION */(function(process) {'use strict';
|
@@ -10025,10 +10282,10 @@
|
|
10025
10282
|
|
10026
10283
|
/*eslint-disable fb-www/unsafe-html*/
|
10027
10284
|
|
10028
|
-
var ExecutionEnvironment = __webpack_require__(
|
10285
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
10029
10286
|
|
10030
|
-
var createArrayFromMixed = __webpack_require__(
|
10031
|
-
var getMarkupWrap = __webpack_require__(
|
10287
|
+
var createArrayFromMixed = __webpack_require__(91);
|
10288
|
+
var getMarkupWrap = __webpack_require__(92);
|
10032
10289
|
var invariant = __webpack_require__(8);
|
10033
10290
|
|
10034
10291
|
/**
|
@@ -10096,7 +10353,7 @@
|
|
10096
10353
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
10097
10354
|
|
10098
10355
|
/***/ },
|
10099
|
-
/*
|
10356
|
+
/* 91 */
|
10100
10357
|
/***/ function(module, exports, __webpack_require__) {
|
10101
10358
|
|
10102
10359
|
/* WEBPACK VAR INJECTION */(function(process) {'use strict';
|
@@ -10228,7 +10485,7 @@
|
|
10228
10485
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
10229
10486
|
|
10230
10487
|
/***/ },
|
10231
|
-
/*
|
10488
|
+
/* 92 */
|
10232
10489
|
/***/ function(module, exports, __webpack_require__) {
|
10233
10490
|
|
10234
10491
|
/* WEBPACK VAR INJECTION */(function(process) {'use strict';
|
@@ -10245,7 +10502,7 @@
|
|
10245
10502
|
|
10246
10503
|
/*eslint-disable fb-www/unsafe-html */
|
10247
10504
|
|
10248
|
-
var ExecutionEnvironment = __webpack_require__(
|
10505
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
10249
10506
|
|
10250
10507
|
var invariant = __webpack_require__(8);
|
10251
10508
|
|
@@ -10328,7 +10585,7 @@
|
|
10328
10585
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
10329
10586
|
|
10330
10587
|
/***/ },
|
10331
|
-
/*
|
10588
|
+
/* 93 */
|
10332
10589
|
/***/ function(module, exports, __webpack_require__) {
|
10333
10590
|
|
10334
10591
|
/**
|
@@ -10344,7 +10601,7 @@
|
|
10344
10601
|
|
10345
10602
|
'use strict';
|
10346
10603
|
|
10347
|
-
var keyMirror = __webpack_require__(
|
10604
|
+
var keyMirror = __webpack_require__(23);
|
10348
10605
|
|
10349
10606
|
/**
|
10350
10607
|
* When a component's children are updated, a series of update configuration
|
@@ -10365,7 +10622,7 @@
|
|
10365
10622
|
module.exports = ReactMultiChildUpdateTypes;
|
10366
10623
|
|
10367
10624
|
/***/ },
|
10368
|
-
/*
|
10625
|
+
/* 94 */
|
10369
10626
|
/***/ function(module, exports, __webpack_require__) {
|
10370
10627
|
|
10371
10628
|
/**
|
@@ -10381,8 +10638,8 @@
|
|
10381
10638
|
|
10382
10639
|
'use strict';
|
10383
10640
|
|
10384
|
-
var DOMChildrenOperations = __webpack_require__(
|
10385
|
-
var ReactDOMComponentTree = __webpack_require__(
|
10641
|
+
var DOMChildrenOperations = __webpack_require__(82);
|
10642
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
10386
10643
|
|
10387
10644
|
/**
|
10388
10645
|
* Operations used to process updates to DOM nodes.
|
@@ -10404,7 +10661,7 @@
|
|
10404
10661
|
module.exports = ReactDOMIDOperations;
|
10405
10662
|
|
10406
10663
|
/***/ },
|
10407
|
-
/*
|
10664
|
+
/* 95 */
|
10408
10665
|
/***/ function(module, exports, __webpack_require__) {
|
10409
10666
|
|
10410
10667
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -10425,35 +10682,35 @@
|
|
10425
10682
|
var _prodInvariant = __webpack_require__(7),
|
10426
10683
|
_assign = __webpack_require__(4);
|
10427
10684
|
|
10428
|
-
var AutoFocusUtils = __webpack_require__(
|
10429
|
-
var CSSPropertyOperations = __webpack_require__(
|
10430
|
-
var DOMLazyTree = __webpack_require__(
|
10431
|
-
var DOMNamespaces = __webpack_require__(
|
10432
|
-
var DOMProperty = __webpack_require__(
|
10433
|
-
var DOMPropertyOperations = __webpack_require__(
|
10434
|
-
var EventConstants = __webpack_require__(
|
10435
|
-
var EventPluginHub = __webpack_require__(
|
10436
|
-
var EventPluginRegistry = __webpack_require__(
|
10437
|
-
var ReactBrowserEventEmitter = __webpack_require__(
|
10438
|
-
var ReactComponentBrowserEnvironment = __webpack_require__(
|
10439
|
-
var ReactDOMButton = __webpack_require__(
|
10440
|
-
var ReactDOMComponentFlags = __webpack_require__(
|
10441
|
-
var ReactDOMComponentTree = __webpack_require__(
|
10442
|
-
var ReactDOMInput = __webpack_require__(
|
10443
|
-
var ReactDOMOption = __webpack_require__(
|
10444
|
-
var ReactDOMSelect = __webpack_require__(
|
10445
|
-
var ReactDOMTextarea = __webpack_require__(
|
10446
|
-
var ReactInstrumentation = __webpack_require__(
|
10447
|
-
var ReactMultiChild = __webpack_require__(
|
10448
|
-
var ReactServerRenderingTransaction = __webpack_require__(
|
10685
|
+
var AutoFocusUtils = __webpack_require__(96);
|
10686
|
+
var CSSPropertyOperations = __webpack_require__(98);
|
10687
|
+
var DOMLazyTree = __webpack_require__(83);
|
10688
|
+
var DOMNamespaces = __webpack_require__(84);
|
10689
|
+
var DOMProperty = __webpack_require__(38);
|
10690
|
+
var DOMPropertyOperations = __webpack_require__(106);
|
10691
|
+
var EventConstants = __webpack_require__(42);
|
10692
|
+
var EventPluginHub = __webpack_require__(44);
|
10693
|
+
var EventPluginRegistry = __webpack_require__(45);
|
10694
|
+
var ReactBrowserEventEmitter = __webpack_require__(112);
|
10695
|
+
var ReactComponentBrowserEnvironment = __webpack_require__(81);
|
10696
|
+
var ReactDOMButton = __webpack_require__(115);
|
10697
|
+
var ReactDOMComponentFlags = __webpack_require__(39);
|
10698
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
10699
|
+
var ReactDOMInput = __webpack_require__(117);
|
10700
|
+
var ReactDOMOption = __webpack_require__(119);
|
10701
|
+
var ReactDOMSelect = __webpack_require__(120);
|
10702
|
+
var ReactDOMTextarea = __webpack_require__(121);
|
10703
|
+
var ReactInstrumentation = __webpack_require__(63);
|
10704
|
+
var ReactMultiChild = __webpack_require__(122);
|
10705
|
+
var ReactServerRenderingTransaction = __webpack_require__(134);
|
10449
10706
|
|
10450
10707
|
var emptyFunction = __webpack_require__(12);
|
10451
|
-
var escapeTextContentForBrowser = __webpack_require__(
|
10708
|
+
var escapeTextContentForBrowser = __webpack_require__(88);
|
10452
10709
|
var invariant = __webpack_require__(8);
|
10453
|
-
var isEventSupported = __webpack_require__(
|
10454
|
-
var keyOf = __webpack_require__(
|
10455
|
-
var shallowEqual = __webpack_require__(
|
10456
|
-
var validateDOMNesting = __webpack_require__(
|
10710
|
+
var isEventSupported = __webpack_require__(72);
|
10711
|
+
var keyOf = __webpack_require__(25);
|
10712
|
+
var shallowEqual = __webpack_require__(129);
|
10713
|
+
var validateDOMNesting = __webpack_require__(137);
|
10457
10714
|
var warning = __webpack_require__(11);
|
10458
10715
|
|
10459
10716
|
var Flags = ReactDOMComponentFlags;
|
@@ -10820,6 +11077,8 @@
|
|
10820
11077
|
* @return {string} The computed markup.
|
10821
11078
|
*/
|
10822
11079
|
mountComponent: function (transaction, hostParent, hostContainerInfo, context) {
|
11080
|
+
var _this = this;
|
11081
|
+
|
10823
11082
|
this._rootNodeID = globalIdCounter++;
|
10824
11083
|
this._domID = hostContainerInfo._idCounter++;
|
10825
11084
|
this._hostParent = hostParent;
|
@@ -10975,6 +11234,15 @@
|
|
10975
11234
|
break;
|
10976
11235
|
}
|
10977
11236
|
|
11237
|
+
if (process.env.NODE_ENV !== 'production') {
|
11238
|
+
if (this._debugID) {
|
11239
|
+
var callback = function () {
|
11240
|
+
return ReactInstrumentation.debugTool.onComponentHasMounted(_this._debugID);
|
11241
|
+
};
|
11242
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
11243
|
+
}
|
11244
|
+
}
|
11245
|
+
|
10978
11246
|
return mountImage;
|
10979
11247
|
},
|
10980
11248
|
|
@@ -11143,6 +11411,8 @@
|
|
11143
11411
|
* @overridable
|
11144
11412
|
*/
|
11145
11413
|
updateComponent: function (transaction, prevElement, nextElement, context) {
|
11414
|
+
var _this2 = this;
|
11415
|
+
|
11146
11416
|
var lastProps = prevElement.props;
|
11147
11417
|
var nextProps = this._currentElement.props;
|
11148
11418
|
|
@@ -11180,6 +11450,15 @@
|
|
11180
11450
|
// reconciliation
|
11181
11451
|
transaction.getReactMountReady().enqueue(postUpdateSelectWrapper, this);
|
11182
11452
|
}
|
11453
|
+
|
11454
|
+
if (process.env.NODE_ENV !== 'production') {
|
11455
|
+
if (this._debugID) {
|
11456
|
+
var callback = function () {
|
11457
|
+
return ReactInstrumentation.debugTool.onComponentHasUpdated(_this2._debugID);
|
11458
|
+
};
|
11459
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
11460
|
+
}
|
11461
|
+
}
|
11183
11462
|
},
|
11184
11463
|
|
11185
11464
|
/**
|
@@ -11413,7 +11692,7 @@
|
|
11413
11692
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
11414
11693
|
|
11415
11694
|
/***/ },
|
11416
|
-
/*
|
11695
|
+
/* 96 */
|
11417
11696
|
/***/ function(module, exports, __webpack_require__) {
|
11418
11697
|
|
11419
11698
|
/**
|
@@ -11429,9 +11708,9 @@
|
|
11429
11708
|
|
11430
11709
|
'use strict';
|
11431
11710
|
|
11432
|
-
var ReactDOMComponentTree = __webpack_require__(
|
11711
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
11433
11712
|
|
11434
|
-
var focusNode = __webpack_require__(
|
11713
|
+
var focusNode = __webpack_require__(97);
|
11435
11714
|
|
11436
11715
|
var AutoFocusUtils = {
|
11437
11716
|
focusDOMComponent: function () {
|
@@ -11442,7 +11721,7 @@
|
|
11442
11721
|
module.exports = AutoFocusUtils;
|
11443
11722
|
|
11444
11723
|
/***/ },
|
11445
|
-
/*
|
11724
|
+
/* 97 */
|
11446
11725
|
/***/ function(module, exports) {
|
11447
11726
|
|
11448
11727
|
/**
|
@@ -11473,7 +11752,7 @@
|
|
11473
11752
|
module.exports = focusNode;
|
11474
11753
|
|
11475
11754
|
/***/ },
|
11476
|
-
/*
|
11755
|
+
/* 98 */
|
11477
11756
|
/***/ function(module, exports, __webpack_require__) {
|
11478
11757
|
|
11479
11758
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -11489,14 +11768,14 @@
|
|
11489
11768
|
|
11490
11769
|
'use strict';
|
11491
11770
|
|
11492
|
-
var CSSProperty = __webpack_require__(
|
11493
|
-
var ExecutionEnvironment = __webpack_require__(
|
11494
|
-
var ReactInstrumentation = __webpack_require__(
|
11771
|
+
var CSSProperty = __webpack_require__(99);
|
11772
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
11773
|
+
var ReactInstrumentation = __webpack_require__(63);
|
11495
11774
|
|
11496
|
-
var camelizeStyleName = __webpack_require__(
|
11497
|
-
var dangerousStyleValue = __webpack_require__(
|
11498
|
-
var hyphenateStyleName = __webpack_require__(
|
11499
|
-
var memoizeStringOnly = __webpack_require__(
|
11775
|
+
var camelizeStyleName = __webpack_require__(100);
|
11776
|
+
var dangerousStyleValue = __webpack_require__(102);
|
11777
|
+
var hyphenateStyleName = __webpack_require__(103);
|
11778
|
+
var memoizeStringOnly = __webpack_require__(105);
|
11500
11779
|
var warning = __webpack_require__(11);
|
11501
11780
|
|
11502
11781
|
var processStyleName = memoizeStringOnly(function (styleName) {
|
@@ -11684,7 +11963,7 @@
|
|
11684
11963
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
11685
11964
|
|
11686
11965
|
/***/ },
|
11687
|
-
/*
|
11966
|
+
/* 99 */
|
11688
11967
|
/***/ function(module, exports) {
|
11689
11968
|
|
11690
11969
|
/**
|
@@ -11837,7 +12116,7 @@
|
|
11837
12116
|
module.exports = CSSProperty;
|
11838
12117
|
|
11839
12118
|
/***/ },
|
11840
|
-
/*
|
12119
|
+
/* 100 */
|
11841
12120
|
/***/ function(module, exports, __webpack_require__) {
|
11842
12121
|
|
11843
12122
|
/**
|
@@ -11853,7 +12132,7 @@
|
|
11853
12132
|
|
11854
12133
|
'use strict';
|
11855
12134
|
|
11856
|
-
var camelize = __webpack_require__(
|
12135
|
+
var camelize = __webpack_require__(101);
|
11857
12136
|
|
11858
12137
|
var msPattern = /^-ms-/;
|
11859
12138
|
|
@@ -11881,7 +12160,7 @@
|
|
11881
12160
|
module.exports = camelizeStyleName;
|
11882
12161
|
|
11883
12162
|
/***/ },
|
11884
|
-
/*
|
12163
|
+
/* 101 */
|
11885
12164
|
/***/ function(module, exports) {
|
11886
12165
|
|
11887
12166
|
"use strict";
|
@@ -11917,7 +12196,7 @@
|
|
11917
12196
|
module.exports = camelize;
|
11918
12197
|
|
11919
12198
|
/***/ },
|
11920
|
-
/*
|
12199
|
+
/* 102 */
|
11921
12200
|
/***/ function(module, exports, __webpack_require__) {
|
11922
12201
|
|
11923
12202
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -11933,7 +12212,7 @@
|
|
11933
12212
|
|
11934
12213
|
'use strict';
|
11935
12214
|
|
11936
|
-
var CSSProperty = __webpack_require__(
|
12215
|
+
var CSSProperty = __webpack_require__(99);
|
11937
12216
|
var warning = __webpack_require__(11);
|
11938
12217
|
|
11939
12218
|
var isUnitlessNumber = CSSProperty.isUnitlessNumber;
|
@@ -12002,7 +12281,7 @@
|
|
12002
12281
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
12003
12282
|
|
12004
12283
|
/***/ },
|
12005
|
-
/*
|
12284
|
+
/* 103 */
|
12006
12285
|
/***/ function(module, exports, __webpack_require__) {
|
12007
12286
|
|
12008
12287
|
/**
|
@@ -12018,7 +12297,7 @@
|
|
12018
12297
|
|
12019
12298
|
'use strict';
|
12020
12299
|
|
12021
|
-
var hyphenate = __webpack_require__(
|
12300
|
+
var hyphenate = __webpack_require__(104);
|
12022
12301
|
|
12023
12302
|
var msPattern = /^ms-/;
|
12024
12303
|
|
@@ -12045,7 +12324,7 @@
|
|
12045
12324
|
module.exports = hyphenateStyleName;
|
12046
12325
|
|
12047
12326
|
/***/ },
|
12048
|
-
/*
|
12327
|
+
/* 104 */
|
12049
12328
|
/***/ function(module, exports) {
|
12050
12329
|
|
12051
12330
|
'use strict';
|
@@ -12082,7 +12361,7 @@
|
|
12082
12361
|
module.exports = hyphenate;
|
12083
12362
|
|
12084
12363
|
/***/ },
|
12085
|
-
/*
|
12364
|
+
/* 105 */
|
12086
12365
|
/***/ function(module, exports) {
|
12087
12366
|
|
12088
12367
|
/**
|
@@ -12116,7 +12395,7 @@
|
|
12116
12395
|
module.exports = memoizeStringOnly;
|
12117
12396
|
|
12118
12397
|
/***/ },
|
12119
|
-
/*
|
12398
|
+
/* 106 */
|
12120
12399
|
/***/ function(module, exports, __webpack_require__) {
|
12121
12400
|
|
12122
12401
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -12132,12 +12411,12 @@
|
|
12132
12411
|
|
12133
12412
|
'use strict';
|
12134
12413
|
|
12135
|
-
var DOMProperty = __webpack_require__(
|
12136
|
-
var ReactDOMComponentTree = __webpack_require__(
|
12137
|
-
var ReactDOMInstrumentation = __webpack_require__(
|
12138
|
-
var ReactInstrumentation = __webpack_require__(
|
12414
|
+
var DOMProperty = __webpack_require__(38);
|
12415
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
12416
|
+
var ReactDOMInstrumentation = __webpack_require__(107);
|
12417
|
+
var ReactInstrumentation = __webpack_require__(63);
|
12139
12418
|
|
12140
|
-
var quoteAttributeValueForBrowser = __webpack_require__(
|
12419
|
+
var quoteAttributeValueForBrowser = __webpack_require__(111);
|
12141
12420
|
var warning = __webpack_require__(11);
|
12142
12421
|
|
12143
12422
|
var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + DOMProperty.ATTRIBUTE_NAME_START_CHAR + '][' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');
|
@@ -12350,7 +12629,7 @@
|
|
12350
12629
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
12351
12630
|
|
12352
12631
|
/***/ },
|
12353
|
-
/*
|
12632
|
+
/* 107 */
|
12354
12633
|
/***/ function(module, exports, __webpack_require__) {
|
12355
12634
|
|
12356
12635
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -12369,7 +12648,7 @@
|
|
12369
12648
|
var debugTool = null;
|
12370
12649
|
|
12371
12650
|
if (process.env.NODE_ENV !== 'production') {
|
12372
|
-
var ReactDOMDebugTool = __webpack_require__(
|
12651
|
+
var ReactDOMDebugTool = __webpack_require__(108);
|
12373
12652
|
debugTool = ReactDOMDebugTool;
|
12374
12653
|
}
|
12375
12654
|
|
@@ -12377,7 +12656,7 @@
|
|
12377
12656
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
12378
12657
|
|
12379
12658
|
/***/ },
|
12380
|
-
/*
|
12659
|
+
/* 108 */
|
12381
12660
|
/***/ function(module, exports, __webpack_require__) {
|
12382
12661
|
|
12383
12662
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -12393,9 +12672,9 @@
|
|
12393
12672
|
|
12394
12673
|
'use strict';
|
12395
12674
|
|
12396
|
-
var ReactDOMNullInputValuePropDevtool = __webpack_require__(
|
12397
|
-
var ReactDOMUnknownPropertyDevtool = __webpack_require__(
|
12398
|
-
var ReactDebugTool = __webpack_require__(
|
12675
|
+
var ReactDOMNullInputValuePropDevtool = __webpack_require__(109);
|
12676
|
+
var ReactDOMUnknownPropertyDevtool = __webpack_require__(110);
|
12677
|
+
var ReactDebugTool = __webpack_require__(64);
|
12399
12678
|
|
12400
12679
|
var warning = __webpack_require__(11);
|
12401
12680
|
|
@@ -12450,7 +12729,7 @@
|
|
12450
12729
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
12451
12730
|
|
12452
12731
|
/***/ },
|
12453
|
-
/*
|
12732
|
+
/* 109 */
|
12454
12733
|
/***/ function(module, exports, __webpack_require__) {
|
12455
12734
|
|
12456
12735
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -12466,7 +12745,7 @@
|
|
12466
12745
|
|
12467
12746
|
'use strict';
|
12468
12747
|
|
12469
|
-
var ReactComponentTreeDevtool = __webpack_require__(
|
12748
|
+
var ReactComponentTreeDevtool = __webpack_require__(29);
|
12470
12749
|
|
12471
12750
|
var warning = __webpack_require__(11);
|
12472
12751
|
|
@@ -12499,7 +12778,7 @@
|
|
12499
12778
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
12500
12779
|
|
12501
12780
|
/***/ },
|
12502
|
-
/*
|
12781
|
+
/* 110 */
|
12503
12782
|
/***/ function(module, exports, __webpack_require__) {
|
12504
12783
|
|
12505
12784
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -12515,9 +12794,9 @@
|
|
12515
12794
|
|
12516
12795
|
'use strict';
|
12517
12796
|
|
12518
|
-
var DOMProperty = __webpack_require__(
|
12519
|
-
var EventPluginRegistry = __webpack_require__(
|
12520
|
-
var ReactComponentTreeDevtool = __webpack_require__(
|
12797
|
+
var DOMProperty = __webpack_require__(38);
|
12798
|
+
var EventPluginRegistry = __webpack_require__(45);
|
12799
|
+
var ReactComponentTreeDevtool = __webpack_require__(29);
|
12521
12800
|
|
12522
12801
|
var warning = __webpack_require__(11);
|
12523
12802
|
|
@@ -12617,7 +12896,7 @@
|
|
12617
12896
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
12618
12897
|
|
12619
12898
|
/***/ },
|
12620
|
-
/*
|
12899
|
+
/* 111 */
|
12621
12900
|
/***/ function(module, exports, __webpack_require__) {
|
12622
12901
|
|
12623
12902
|
/**
|
@@ -12633,7 +12912,7 @@
|
|
12633
12912
|
|
12634
12913
|
'use strict';
|
12635
12914
|
|
12636
|
-
var escapeTextContentForBrowser = __webpack_require__(
|
12915
|
+
var escapeTextContentForBrowser = __webpack_require__(88);
|
12637
12916
|
|
12638
12917
|
/**
|
12639
12918
|
* Escapes attribute value to prevent scripting attacks.
|
@@ -12648,7 +12927,7 @@
|
|
12648
12927
|
module.exports = quoteAttributeValueForBrowser;
|
12649
12928
|
|
12650
12929
|
/***/ },
|
12651
|
-
/*
|
12930
|
+
/* 112 */
|
12652
12931
|
/***/ function(module, exports, __webpack_require__) {
|
12653
12932
|
|
12654
12933
|
/**
|
@@ -12666,13 +12945,13 @@
|
|
12666
12945
|
|
12667
12946
|
var _assign = __webpack_require__(4);
|
12668
12947
|
|
12669
|
-
var EventConstants = __webpack_require__(
|
12670
|
-
var EventPluginRegistry = __webpack_require__(
|
12671
|
-
var ReactEventEmitterMixin = __webpack_require__(
|
12672
|
-
var ViewportMetrics = __webpack_require__(
|
12948
|
+
var EventConstants = __webpack_require__(42);
|
12949
|
+
var EventPluginRegistry = __webpack_require__(45);
|
12950
|
+
var ReactEventEmitterMixin = __webpack_require__(113);
|
12951
|
+
var ViewportMetrics = __webpack_require__(78);
|
12673
12952
|
|
12674
|
-
var getVendorPrefixedEventName = __webpack_require__(
|
12675
|
-
var isEventSupported = __webpack_require__(
|
12953
|
+
var getVendorPrefixedEventName = __webpack_require__(114);
|
12954
|
+
var isEventSupported = __webpack_require__(72);
|
12676
12955
|
|
12677
12956
|
/**
|
12678
12957
|
* Summary of `ReactBrowserEventEmitter` event handling:
|
@@ -12970,7 +13249,7 @@
|
|
12970
13249
|
module.exports = ReactBrowserEventEmitter;
|
12971
13250
|
|
12972
13251
|
/***/ },
|
12973
|
-
/*
|
13252
|
+
/* 113 */
|
12974
13253
|
/***/ function(module, exports, __webpack_require__) {
|
12975
13254
|
|
12976
13255
|
/**
|
@@ -12986,7 +13265,7 @@
|
|
12986
13265
|
|
12987
13266
|
'use strict';
|
12988
13267
|
|
12989
|
-
var EventPluginHub = __webpack_require__(
|
13268
|
+
var EventPluginHub = __webpack_require__(44);
|
12990
13269
|
|
12991
13270
|
function runEventQueueInBatch(events) {
|
12992
13271
|
EventPluginHub.enqueueEvents(events);
|
@@ -13008,7 +13287,7 @@
|
|
13008
13287
|
module.exports = ReactEventEmitterMixin;
|
13009
13288
|
|
13010
13289
|
/***/ },
|
13011
|
-
/*
|
13290
|
+
/* 114 */
|
13012
13291
|
/***/ function(module, exports, __webpack_require__) {
|
13013
13292
|
|
13014
13293
|
/**
|
@@ -13024,7 +13303,7 @@
|
|
13024
13303
|
|
13025
13304
|
'use strict';
|
13026
13305
|
|
13027
|
-
var ExecutionEnvironment = __webpack_require__(
|
13306
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
13028
13307
|
|
13029
13308
|
/**
|
13030
13309
|
* Generate a mapping of standard vendor prefixes using the defined style property and event name.
|
@@ -13114,7 +13393,7 @@
|
|
13114
13393
|
module.exports = getVendorPrefixedEventName;
|
13115
13394
|
|
13116
13395
|
/***/ },
|
13117
|
-
/*
|
13396
|
+
/* 115 */
|
13118
13397
|
/***/ function(module, exports, __webpack_require__) {
|
13119
13398
|
|
13120
13399
|
/**
|
@@ -13130,7 +13409,7 @@
|
|
13130
13409
|
|
13131
13410
|
'use strict';
|
13132
13411
|
|
13133
|
-
var DisabledInputUtils = __webpack_require__(
|
13412
|
+
var DisabledInputUtils = __webpack_require__(116);
|
13134
13413
|
|
13135
13414
|
/**
|
13136
13415
|
* Implements a <button> host component that does not receive mouse events
|
@@ -13143,7 +13422,7 @@
|
|
13143
13422
|
module.exports = ReactDOMButton;
|
13144
13423
|
|
13145
13424
|
/***/ },
|
13146
|
-
/*
|
13425
|
+
/* 116 */
|
13147
13426
|
/***/ function(module, exports) {
|
13148
13427
|
|
13149
13428
|
/**
|
@@ -13198,7 +13477,7 @@
|
|
13198
13477
|
module.exports = DisabledInputUtils;
|
13199
13478
|
|
13200
13479
|
/***/ },
|
13201
|
-
/*
|
13480
|
+
/* 117 */
|
13202
13481
|
/***/ function(module, exports, __webpack_require__) {
|
13203
13482
|
|
13204
13483
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -13217,11 +13496,11 @@
|
|
13217
13496
|
var _prodInvariant = __webpack_require__(7),
|
13218
13497
|
_assign = __webpack_require__(4);
|
13219
13498
|
|
13220
|
-
var DisabledInputUtils = __webpack_require__(
|
13221
|
-
var DOMPropertyOperations = __webpack_require__(
|
13222
|
-
var LinkedValueUtils = __webpack_require__(
|
13223
|
-
var ReactDOMComponentTree = __webpack_require__(
|
13224
|
-
var ReactUpdates = __webpack_require__(
|
13499
|
+
var DisabledInputUtils = __webpack_require__(116);
|
13500
|
+
var DOMPropertyOperations = __webpack_require__(106);
|
13501
|
+
var LinkedValueUtils = __webpack_require__(118);
|
13502
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
13503
|
+
var ReactUpdates = __webpack_require__(57);
|
13225
13504
|
|
13226
13505
|
var invariant = __webpack_require__(8);
|
13227
13506
|
var warning = __webpack_require__(11);
|
@@ -13269,7 +13548,10 @@
|
|
13269
13548
|
var hostProps = _assign({
|
13270
13549
|
// Make sure we set .type before any other properties (setting .value
|
13271
13550
|
// before .type means .value is lost in IE11 and below)
|
13272
|
-
type: undefined
|
13551
|
+
type: undefined,
|
13552
|
+
// Make sure we set .step before .value (setting .value before .step
|
13553
|
+
// means .value is rounded on mount, based upon step precision)
|
13554
|
+
step: undefined
|
13273
13555
|
}, DisabledInputUtils.getHostProps(inst, props), {
|
13274
13556
|
defaultChecked: undefined,
|
13275
13557
|
defaultValue: undefined,
|
@@ -13448,7 +13730,7 @@
|
|
13448
13730
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
13449
13731
|
|
13450
13732
|
/***/ },
|
13451
|
-
/*
|
13733
|
+
/* 118 */
|
13452
13734
|
/***/ function(module, exports, __webpack_require__) {
|
13453
13735
|
|
13454
13736
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -13466,8 +13748,9 @@
|
|
13466
13748
|
|
13467
13749
|
var _prodInvariant = __webpack_require__(7);
|
13468
13750
|
|
13469
|
-
var ReactPropTypes = __webpack_require__(
|
13470
|
-
var ReactPropTypeLocations = __webpack_require__(
|
13751
|
+
var ReactPropTypes = __webpack_require__(32);
|
13752
|
+
var ReactPropTypeLocations = __webpack_require__(22);
|
13753
|
+
var ReactPropTypesSecret = __webpack_require__(31);
|
13471
13754
|
|
13472
13755
|
var invariant = __webpack_require__(8);
|
13473
13756
|
var warning = __webpack_require__(11);
|
@@ -13530,7 +13813,7 @@
|
|
13530
13813
|
checkPropTypes: function (tagName, props, owner) {
|
13531
13814
|
for (var propName in propTypes) {
|
13532
13815
|
if (propTypes.hasOwnProperty(propName)) {
|
13533
|
-
var error = propTypes[propName](props, propName, tagName, ReactPropTypeLocations.prop);
|
13816
|
+
var error = propTypes[propName](props, propName, tagName, ReactPropTypeLocations.prop, null, ReactPropTypesSecret);
|
13534
13817
|
}
|
13535
13818
|
if (error instanceof Error && !(error.message in loggedTypeFailures)) {
|
13536
13819
|
// Only monitor this failure once because there tends to be a lot of the
|
@@ -13589,7 +13872,7 @@
|
|
13589
13872
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
13590
13873
|
|
13591
13874
|
/***/ },
|
13592
|
-
/*
|
13875
|
+
/* 119 */
|
13593
13876
|
/***/ function(module, exports, __webpack_require__) {
|
13594
13877
|
|
13595
13878
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -13608,8 +13891,8 @@
|
|
13608
13891
|
var _assign = __webpack_require__(4);
|
13609
13892
|
|
13610
13893
|
var ReactChildren = __webpack_require__(5);
|
13611
|
-
var ReactDOMComponentTree = __webpack_require__(
|
13612
|
-
var ReactDOMSelect = __webpack_require__(
|
13894
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
13895
|
+
var ReactDOMSelect = __webpack_require__(120);
|
13613
13896
|
|
13614
13897
|
var warning = __webpack_require__(11);
|
13615
13898
|
var didWarnInvalidOptionChildren = false;
|
@@ -13718,7 +14001,7 @@
|
|
13718
14001
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
13719
14002
|
|
13720
14003
|
/***/ },
|
13721
|
-
/*
|
14004
|
+
/* 120 */
|
13722
14005
|
/***/ function(module, exports, __webpack_require__) {
|
13723
14006
|
|
13724
14007
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -13736,10 +14019,10 @@
|
|
13736
14019
|
|
13737
14020
|
var _assign = __webpack_require__(4);
|
13738
14021
|
|
13739
|
-
var DisabledInputUtils = __webpack_require__(
|
13740
|
-
var LinkedValueUtils = __webpack_require__(
|
13741
|
-
var ReactDOMComponentTree = __webpack_require__(
|
13742
|
-
var ReactUpdates = __webpack_require__(
|
14022
|
+
var DisabledInputUtils = __webpack_require__(116);
|
14023
|
+
var LinkedValueUtils = __webpack_require__(118);
|
14024
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
14025
|
+
var ReactUpdates = __webpack_require__(57);
|
13743
14026
|
|
13744
14027
|
var warning = __webpack_require__(11);
|
13745
14028
|
|
@@ -13924,7 +14207,7 @@
|
|
13924
14207
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
13925
14208
|
|
13926
14209
|
/***/ },
|
13927
|
-
/*
|
14210
|
+
/* 121 */
|
13928
14211
|
/***/ function(module, exports, __webpack_require__) {
|
13929
14212
|
|
13930
14213
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -13943,10 +14226,10 @@
|
|
13943
14226
|
var _prodInvariant = __webpack_require__(7),
|
13944
14227
|
_assign = __webpack_require__(4);
|
13945
14228
|
|
13946
|
-
var DisabledInputUtils = __webpack_require__(
|
13947
|
-
var LinkedValueUtils = __webpack_require__(
|
13948
|
-
var ReactDOMComponentTree = __webpack_require__(
|
13949
|
-
var ReactUpdates = __webpack_require__(
|
14229
|
+
var DisabledInputUtils = __webpack_require__(116);
|
14230
|
+
var LinkedValueUtils = __webpack_require__(118);
|
14231
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
14232
|
+
var ReactUpdates = __webpack_require__(57);
|
13950
14233
|
|
13951
14234
|
var invariant = __webpack_require__(8);
|
13952
14235
|
var warning = __webpack_require__(11);
|
@@ -14085,7 +14368,7 @@
|
|
14085
14368
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
14086
14369
|
|
14087
14370
|
/***/ },
|
14088
|
-
/*
|
14371
|
+
/* 122 */
|
14089
14372
|
/***/ function(module, exports, __webpack_require__) {
|
14090
14373
|
|
14091
14374
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -14103,17 +14386,17 @@
|
|
14103
14386
|
|
14104
14387
|
var _prodInvariant = __webpack_require__(7);
|
14105
14388
|
|
14106
|
-
var ReactComponentEnvironment = __webpack_require__(
|
14107
|
-
var ReactInstanceMap = __webpack_require__(
|
14108
|
-
var ReactInstrumentation = __webpack_require__(
|
14109
|
-
var ReactMultiChildUpdateTypes = __webpack_require__(
|
14389
|
+
var ReactComponentEnvironment = __webpack_require__(123);
|
14390
|
+
var ReactInstanceMap = __webpack_require__(124);
|
14391
|
+
var ReactInstrumentation = __webpack_require__(63);
|
14392
|
+
var ReactMultiChildUpdateTypes = __webpack_require__(93);
|
14110
14393
|
|
14111
14394
|
var ReactCurrentOwner = __webpack_require__(10);
|
14112
|
-
var ReactReconciler = __webpack_require__(
|
14113
|
-
var ReactChildReconciler = __webpack_require__(
|
14395
|
+
var ReactReconciler = __webpack_require__(60);
|
14396
|
+
var ReactChildReconciler = __webpack_require__(125);
|
14114
14397
|
|
14115
14398
|
var emptyFunction = __webpack_require__(12);
|
14116
|
-
var flattenChildren = __webpack_require__(
|
14399
|
+
var flattenChildren = __webpack_require__(133);
|
14117
14400
|
var invariant = __webpack_require__(8);
|
14118
14401
|
|
14119
14402
|
/**
|
@@ -14290,7 +14573,7 @@
|
|
14290
14573
|
return ReactChildReconciler.instantiateChildren(nestedChildren, transaction, context);
|
14291
14574
|
},
|
14292
14575
|
|
14293
|
-
_reconcilerUpdateChildren: function (prevChildren, nextNestedChildrenElements, removedNodes, transaction, context) {
|
14576
|
+
_reconcilerUpdateChildren: function (prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context) {
|
14294
14577
|
var nextChildren;
|
14295
14578
|
if (process.env.NODE_ENV !== 'production') {
|
14296
14579
|
if (this._currentElement) {
|
@@ -14300,12 +14583,12 @@
|
|
14300
14583
|
} finally {
|
14301
14584
|
ReactCurrentOwner.current = null;
|
14302
14585
|
}
|
14303
|
-
ReactChildReconciler.updateChildren(prevChildren, nextChildren, removedNodes, transaction, context);
|
14586
|
+
ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context);
|
14304
14587
|
return nextChildren;
|
14305
14588
|
}
|
14306
14589
|
}
|
14307
14590
|
nextChildren = flattenChildren(nextNestedChildrenElements);
|
14308
|
-
ReactChildReconciler.updateChildren(prevChildren, nextChildren, removedNodes, transaction, context);
|
14591
|
+
ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context);
|
14309
14592
|
return nextChildren;
|
14310
14593
|
},
|
14311
14594
|
|
@@ -14402,7 +14685,8 @@
|
|
14402
14685
|
_updateChildren: function (nextNestedChildrenElements, transaction, context) {
|
14403
14686
|
var prevChildren = this._renderedChildren;
|
14404
14687
|
var removedNodes = {};
|
14405
|
-
var
|
14688
|
+
var mountImages = [];
|
14689
|
+
var nextChildren = this._reconcilerUpdateChildren(prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context);
|
14406
14690
|
if (!nextChildren && !prevChildren) {
|
14407
14691
|
return;
|
14408
14692
|
}
|
@@ -14410,8 +14694,10 @@
|
|
14410
14694
|
var name;
|
14411
14695
|
// `nextIndex` will increment for each child in `nextChildren`, but
|
14412
14696
|
// `lastIndex` will be the last index visited in `prevChildren`.
|
14413
|
-
var lastIndex = 0;
|
14414
14697
|
var nextIndex = 0;
|
14698
|
+
var lastIndex = 0;
|
14699
|
+
// `nextMountIndex` will increment for each newly mounted child.
|
14700
|
+
var nextMountIndex = 0;
|
14415
14701
|
var lastPlacedNode = null;
|
14416
14702
|
for (name in nextChildren) {
|
14417
14703
|
if (!nextChildren.hasOwnProperty(name)) {
|
@@ -14430,7 +14716,8 @@
|
|
14430
14716
|
// The `removedNodes` loop below will actually remove the child.
|
14431
14717
|
}
|
14432
14718
|
// The child must be instantiated before it's mounted.
|
14433
|
-
updates = enqueue(updates, this._mountChildAtIndex(nextChild, lastPlacedNode, nextIndex, transaction, context));
|
14719
|
+
updates = enqueue(updates, this._mountChildAtIndex(nextChild, mountImages[nextMountIndex], lastPlacedNode, nextIndex, transaction, context));
|
14720
|
+
nextMountIndex++;
|
14434
14721
|
}
|
14435
14722
|
nextIndex++;
|
14436
14723
|
lastPlacedNode = ReactReconciler.getHostNode(nextChild);
|
@@ -14513,8 +14800,7 @@
|
|
14513
14800
|
* @param {ReactReconcileTransaction} transaction
|
14514
14801
|
* @private
|
14515
14802
|
*/
|
14516
|
-
_mountChildAtIndex: function (child, afterNode, index, transaction, context) {
|
14517
|
-
var mountImage = ReactReconciler.mountComponent(child, transaction, this, this._hostContainerInfo, context);
|
14803
|
+
_mountChildAtIndex: function (child, mountImage, afterNode, index, transaction, context) {
|
14518
14804
|
child._mountIndex = index;
|
14519
14805
|
return this.createChild(child, afterNode, mountImage);
|
14520
14806
|
},
|
@@ -14541,7 +14827,7 @@
|
|
14541
14827
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
14542
14828
|
|
14543
14829
|
/***/ },
|
14544
|
-
/*
|
14830
|
+
/* 123 */
|
14545
14831
|
/***/ function(module, exports, __webpack_require__) {
|
14546
14832
|
|
14547
14833
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -14600,7 +14886,7 @@
|
|
14600
14886
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
14601
14887
|
|
14602
14888
|
/***/ },
|
14603
|
-
/*
|
14889
|
+
/* 124 */
|
14604
14890
|
/***/ function(module, exports) {
|
14605
14891
|
|
14606
14892
|
/**
|
@@ -14653,7 +14939,7 @@
|
|
14653
14939
|
module.exports = ReactInstanceMap;
|
14654
14940
|
|
14655
14941
|
/***/ },
|
14656
|
-
/*
|
14942
|
+
/* 125 */
|
14657
14943
|
/***/ function(module, exports, __webpack_require__) {
|
14658
14944
|
|
14659
14945
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -14669,19 +14955,32 @@
|
|
14669
14955
|
|
14670
14956
|
'use strict';
|
14671
14957
|
|
14672
|
-
var ReactReconciler = __webpack_require__(
|
14958
|
+
var ReactReconciler = __webpack_require__(60);
|
14673
14959
|
|
14674
|
-
var instantiateReactComponent = __webpack_require__(
|
14960
|
+
var instantiateReactComponent = __webpack_require__(126);
|
14675
14961
|
var KeyEscapeUtils = __webpack_require__(16);
|
14676
|
-
var shouldUpdateReactComponent = __webpack_require__(
|
14962
|
+
var shouldUpdateReactComponent = __webpack_require__(130);
|
14677
14963
|
var traverseAllChildren = __webpack_require__(14);
|
14678
14964
|
var warning = __webpack_require__(11);
|
14679
14965
|
|
14966
|
+
var ReactComponentTreeDevtool;
|
14967
|
+
|
14968
|
+
if (typeof process !== 'undefined' && process.env && process.env.NODE_ENV === 'test') {
|
14969
|
+
// Temporary hack.
|
14970
|
+
// Inline requires don't work well with Jest:
|
14971
|
+
// https://github.com/facebook/react/issues/7240
|
14972
|
+
// Remove the inline requires when we don't need them anymore:
|
14973
|
+
// https://github.com/facebook/react/pull/7178
|
14974
|
+
ReactComponentTreeDevtool = __webpack_require__(29);
|
14975
|
+
}
|
14976
|
+
|
14680
14977
|
function instantiateChild(childInstances, child, name, selfDebugID) {
|
14681
14978
|
// We found a component instance.
|
14682
14979
|
var keyUnique = childInstances[name] === undefined;
|
14683
14980
|
if (process.env.NODE_ENV !== 'production') {
|
14684
|
-
|
14981
|
+
if (!ReactComponentTreeDevtool) {
|
14982
|
+
ReactComponentTreeDevtool = __webpack_require__(29);
|
14983
|
+
}
|
14685
14984
|
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;
|
14686
14985
|
}
|
14687
14986
|
if (child != null && keyUnique) {
|
@@ -14730,7 +15029,7 @@
|
|
14730
15029
|
* @return {?object} A new set of child instances.
|
14731
15030
|
* @internal
|
14732
15031
|
*/
|
14733
|
-
updateChildren: function (prevChildren, nextChildren, removedNodes, transaction, context) {
|
15032
|
+
updateChildren: function (prevChildren, nextChildren, mountImages, removedNodes, transaction, hostParent, hostContainerInfo, context) {
|
14734
15033
|
// We currently don't have a way to track moves here but if we use iterators
|
14735
15034
|
// instead of for..in we can zip the iterators and check if an item has
|
14736
15035
|
// moved.
|
@@ -14759,6 +15058,10 @@
|
|
14759
15058
|
// The child must be instantiated before it's mounted.
|
14760
15059
|
var nextChildInstance = instantiateReactComponent(nextElement, true);
|
14761
15060
|
nextChildren[name] = nextChildInstance;
|
15061
|
+
// Creating mount image now ensures refs are resolved in right order
|
15062
|
+
// (see https://github.com/facebook/react/pull/7101 for explanation).
|
15063
|
+
var nextChildMountImage = ReactReconciler.mountComponent(nextChildInstance, transaction, hostParent, hostContainerInfo, context);
|
15064
|
+
mountImages.push(nextChildMountImage);
|
14762
15065
|
}
|
14763
15066
|
}
|
14764
15067
|
// Unmount children that are no longer present.
|
@@ -14793,7 +15096,7 @@
|
|
14793
15096
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
14794
15097
|
|
14795
15098
|
/***/ },
|
14796
|
-
/*
|
15099
|
+
/* 126 */
|
14797
15100
|
/***/ function(module, exports, __webpack_require__) {
|
14798
15101
|
|
14799
15102
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -14812,10 +15115,10 @@
|
|
14812
15115
|
var _prodInvariant = __webpack_require__(7),
|
14813
15116
|
_assign = __webpack_require__(4);
|
14814
15117
|
|
14815
|
-
var ReactCompositeComponent = __webpack_require__(
|
14816
|
-
var ReactEmptyComponent = __webpack_require__(
|
14817
|
-
var ReactHostComponent = __webpack_require__(
|
14818
|
-
var ReactInstrumentation = __webpack_require__(
|
15118
|
+
var ReactCompositeComponent = __webpack_require__(127);
|
15119
|
+
var ReactEmptyComponent = __webpack_require__(131);
|
15120
|
+
var ReactHostComponent = __webpack_require__(132);
|
15121
|
+
var ReactInstrumentation = __webpack_require__(63);
|
14819
15122
|
|
14820
15123
|
var invariant = __webpack_require__(8);
|
14821
15124
|
var warning = __webpack_require__(11);
|
@@ -14945,7 +15248,7 @@
|
|
14945
15248
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
14946
15249
|
|
14947
15250
|
/***/ },
|
14948
|
-
/*
|
15251
|
+
/* 127 */
|
14949
15252
|
/***/ function(module, exports, __webpack_require__) {
|
14950
15253
|
|
14951
15254
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -14964,23 +15267,29 @@
|
|
14964
15267
|
var _prodInvariant = __webpack_require__(7),
|
14965
15268
|
_assign = __webpack_require__(4);
|
14966
15269
|
|
14967
|
-
var ReactComponentEnvironment = __webpack_require__(
|
15270
|
+
var ReactComponentEnvironment = __webpack_require__(123);
|
14968
15271
|
var ReactCurrentOwner = __webpack_require__(10);
|
14969
15272
|
var ReactElement = __webpack_require__(9);
|
14970
|
-
var ReactErrorUtils = __webpack_require__(
|
14971
|
-
var ReactInstanceMap = __webpack_require__(
|
14972
|
-
var ReactInstrumentation = __webpack_require__(
|
14973
|
-
var ReactNodeTypes = __webpack_require__(
|
14974
|
-
var ReactPropTypeLocations = __webpack_require__(
|
14975
|
-
var ReactReconciler = __webpack_require__(
|
14976
|
-
|
14977
|
-
var checkReactTypeSpec = __webpack_require__(
|
14978
|
-
|
15273
|
+
var ReactErrorUtils = __webpack_require__(47);
|
15274
|
+
var ReactInstanceMap = __webpack_require__(124);
|
15275
|
+
var ReactInstrumentation = __webpack_require__(63);
|
15276
|
+
var ReactNodeTypes = __webpack_require__(128);
|
15277
|
+
var ReactPropTypeLocations = __webpack_require__(22);
|
15278
|
+
var ReactReconciler = __webpack_require__(60);
|
15279
|
+
|
15280
|
+
var checkReactTypeSpec = __webpack_require__(30);
|
14979
15281
|
var emptyObject = __webpack_require__(19);
|
14980
15282
|
var invariant = __webpack_require__(8);
|
14981
|
-
var
|
15283
|
+
var shallowEqual = __webpack_require__(129);
|
15284
|
+
var shouldUpdateReactComponent = __webpack_require__(130);
|
14982
15285
|
var warning = __webpack_require__(11);
|
14983
15286
|
|
15287
|
+
var CompositeTypes = {
|
15288
|
+
ImpureClass: 0,
|
15289
|
+
PureClass: 1,
|
15290
|
+
StatelessFunctional: 2
|
15291
|
+
};
|
15292
|
+
|
14984
15293
|
function StatelessComponent(Component) {}
|
14985
15294
|
StatelessComponent.prototype.render = function () {
|
14986
15295
|
var Component = ReactInstanceMap.get(this)._currentElement.type;
|
@@ -15019,7 +15328,11 @@
|
|
15019
15328
|
}
|
15020
15329
|
|
15021
15330
|
function shouldConstruct(Component) {
|
15022
|
-
return Component.prototype && Component.prototype.isReactComponent;
|
15331
|
+
return !!(Component.prototype && Component.prototype.isReactComponent);
|
15332
|
+
}
|
15333
|
+
|
15334
|
+
function isPureComponent(Component) {
|
15335
|
+
return !!(Component.prototype && Component.prototype.isPureReactComponent);
|
15023
15336
|
}
|
15024
15337
|
|
15025
15338
|
/**
|
@@ -15072,6 +15385,7 @@
|
|
15072
15385
|
construct: function (element) {
|
15073
15386
|
this._currentElement = element;
|
15074
15387
|
this._rootNodeID = null;
|
15388
|
+
this._compositeType = null;
|
15075
15389
|
this._instance = null;
|
15076
15390
|
this._hostParent = null;
|
15077
15391
|
this._hostContainerInfo = null;
|
@@ -15112,6 +15426,8 @@
|
|
15112
15426
|
* @internal
|
15113
15427
|
*/
|
15114
15428
|
mountComponent: function (transaction, hostParent, hostContainerInfo, context) {
|
15429
|
+
var _this = this;
|
15430
|
+
|
15115
15431
|
this._context = context;
|
15116
15432
|
this._mountOrder = nextMountID++;
|
15117
15433
|
this._hostParent = hostParent;
|
@@ -15125,15 +15441,23 @@
|
|
15125
15441
|
var updateQueue = transaction.getUpdateQueue();
|
15126
15442
|
|
15127
15443
|
// Initialize the public class
|
15128
|
-
var
|
15444
|
+
var doConstruct = shouldConstruct(Component);
|
15445
|
+
var inst = this._constructComponent(doConstruct, publicProps, publicContext, updateQueue);
|
15129
15446
|
var renderedElement;
|
15130
15447
|
|
15131
15448
|
// Support functional components
|
15132
|
-
if (!
|
15449
|
+
if (!doConstruct && (inst == null || inst.render == null)) {
|
15133
15450
|
renderedElement = inst;
|
15134
15451
|
warnIfInvalidElement(Component, renderedElement);
|
15135
15452
|
!(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;
|
15136
15453
|
inst = new StatelessComponent(Component);
|
15454
|
+
this._compositeType = CompositeTypes.StatelessFunctional;
|
15455
|
+
} else {
|
15456
|
+
if (isPureComponent(Component)) {
|
15457
|
+
this._compositeType = CompositeTypes.PureClass;
|
15458
|
+
} else {
|
15459
|
+
this._compositeType = CompositeTypes.ImpureClass;
|
15460
|
+
}
|
15137
15461
|
}
|
15138
15462
|
|
15139
15463
|
if (process.env.NODE_ENV !== 'production') {
|
@@ -15199,26 +15523,35 @@
|
|
15199
15523
|
}
|
15200
15524
|
}
|
15201
15525
|
|
15526
|
+
if (process.env.NODE_ENV !== 'production') {
|
15527
|
+
if (this._debugID) {
|
15528
|
+
var callback = function (component) {
|
15529
|
+
return ReactInstrumentation.debugTool.onComponentHasMounted(_this._debugID);
|
15530
|
+
};
|
15531
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
15532
|
+
}
|
15533
|
+
}
|
15534
|
+
|
15202
15535
|
return markup;
|
15203
15536
|
},
|
15204
15537
|
|
15205
|
-
_constructComponent: function (publicProps, publicContext, updateQueue) {
|
15538
|
+
_constructComponent: function (doConstruct, publicProps, publicContext, updateQueue) {
|
15206
15539
|
if (process.env.NODE_ENV !== 'production') {
|
15207
15540
|
ReactCurrentOwner.current = this;
|
15208
15541
|
try {
|
15209
|
-
return this._constructComponentWithoutOwner(publicProps, publicContext, updateQueue);
|
15542
|
+
return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);
|
15210
15543
|
} finally {
|
15211
15544
|
ReactCurrentOwner.current = null;
|
15212
15545
|
}
|
15213
15546
|
} else {
|
15214
|
-
return this._constructComponentWithoutOwner(publicProps, publicContext, updateQueue);
|
15547
|
+
return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);
|
15215
15548
|
}
|
15216
15549
|
},
|
15217
15550
|
|
15218
|
-
_constructComponentWithoutOwner: function (publicProps, publicContext, updateQueue) {
|
15551
|
+
_constructComponentWithoutOwner: function (doConstruct, publicProps, publicContext, updateQueue) {
|
15219
15552
|
var Component = this._currentElement.type;
|
15220
15553
|
var instanceOrElement;
|
15221
|
-
if (
|
15554
|
+
if (doConstruct) {
|
15222
15555
|
if (process.env.NODE_ENV !== 'production') {
|
15223
15556
|
if (this._debugID !== 0) {
|
15224
15557
|
ReactInstrumentation.debugTool.onBeginLifeCycleTimer(this._debugID, 'ctor');
|
@@ -15522,7 +15855,6 @@
|
|
15522
15855
|
|
15523
15856
|
var willReceive = false;
|
15524
15857
|
var nextContext;
|
15525
|
-
var nextProps;
|
15526
15858
|
|
15527
15859
|
// Determine if the context has changed or not
|
15528
15860
|
if (this._context === nextUnmaskedContext) {
|
@@ -15532,7 +15864,8 @@
|
|
15532
15864
|
willReceive = true;
|
15533
15865
|
}
|
15534
15866
|
|
15535
|
-
|
15867
|
+
var prevProps = prevParentElement.props;
|
15868
|
+
var nextProps = nextParentElement.props;
|
15536
15869
|
|
15537
15870
|
// Not a simple state update but a props update
|
15538
15871
|
if (prevParentElement !== nextParentElement) {
|
@@ -15559,16 +15892,22 @@
|
|
15559
15892
|
var nextState = this._processPendingState(nextProps, nextContext);
|
15560
15893
|
var shouldUpdate = true;
|
15561
15894
|
|
15562
|
-
if (!this._pendingForceUpdate
|
15563
|
-
if (
|
15564
|
-
if (
|
15565
|
-
|
15895
|
+
if (!this._pendingForceUpdate) {
|
15896
|
+
if (inst.shouldComponentUpdate) {
|
15897
|
+
if (process.env.NODE_ENV !== 'production') {
|
15898
|
+
if (this._debugID !== 0) {
|
15899
|
+
ReactInstrumentation.debugTool.onBeginLifeCycleTimer(this._debugID, 'shouldComponentUpdate');
|
15900
|
+
}
|
15566
15901
|
}
|
15567
|
-
|
15568
|
-
|
15569
|
-
|
15570
|
-
|
15571
|
-
|
15902
|
+
shouldUpdate = inst.shouldComponentUpdate(nextProps, nextState, nextContext);
|
15903
|
+
if (process.env.NODE_ENV !== 'production') {
|
15904
|
+
if (this._debugID !== 0) {
|
15905
|
+
ReactInstrumentation.debugTool.onEndLifeCycleTimer(this._debugID, 'shouldComponentUpdate');
|
15906
|
+
}
|
15907
|
+
}
|
15908
|
+
} else {
|
15909
|
+
if (this._compositeType === CompositeTypes.PureClass) {
|
15910
|
+
shouldUpdate = !shallowEqual(prevProps, nextProps) || !shallowEqual(inst.state, nextState);
|
15572
15911
|
}
|
15573
15912
|
}
|
15574
15913
|
}
|
@@ -15630,6 +15969,8 @@
|
|
15630
15969
|
* @private
|
15631
15970
|
*/
|
15632
15971
|
_performComponentUpdate: function (nextElement, nextProps, nextState, nextContext, transaction, unmaskedContext) {
|
15972
|
+
var _this2 = this;
|
15973
|
+
|
15633
15974
|
var inst = this._instance;
|
15634
15975
|
|
15635
15976
|
var hasComponentDidUpdate = Boolean(inst.componentDidUpdate);
|
@@ -15671,6 +16012,15 @@
|
|
15671
16012
|
transaction.getReactMountReady().enqueue(inst.componentDidUpdate.bind(inst, prevProps, prevState, prevContext), inst);
|
15672
16013
|
}
|
15673
16014
|
}
|
16015
|
+
|
16016
|
+
if (process.env.NODE_ENV !== 'production') {
|
16017
|
+
if (this._debugID) {
|
16018
|
+
var callback = function () {
|
16019
|
+
return ReactInstrumentation.debugTool.onComponentHasUpdated(_this2._debugID);
|
16020
|
+
};
|
16021
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
16022
|
+
}
|
16023
|
+
}
|
15674
16024
|
},
|
15675
16025
|
|
15676
16026
|
/**
|
@@ -15756,11 +16106,15 @@
|
|
15756
16106
|
*/
|
15757
16107
|
_renderValidatedComponent: function () {
|
15758
16108
|
var renderedComponent;
|
15759
|
-
|
15760
|
-
|
16109
|
+
if (process.env.NODE_ENV !== 'production' || this._compositeType !== CompositeTypes.StatelessFunctional) {
|
16110
|
+
ReactCurrentOwner.current = this;
|
16111
|
+
try {
|
16112
|
+
renderedComponent = this._renderValidatedComponentWithoutOwnerOrContext();
|
16113
|
+
} finally {
|
16114
|
+
ReactCurrentOwner.current = null;
|
16115
|
+
}
|
16116
|
+
} else {
|
15761
16117
|
renderedComponent = this._renderValidatedComponentWithoutOwnerOrContext();
|
15762
|
-
} finally {
|
15763
|
-
ReactCurrentOwner.current = null;
|
15764
16118
|
}
|
15765
16119
|
!(
|
15766
16120
|
// TODO: An `isValidNode` function would probably be more appropriate
|
@@ -15823,7 +16177,7 @@
|
|
15823
16177
|
*/
|
15824
16178
|
getPublicInstance: function () {
|
15825
16179
|
var inst = this._instance;
|
15826
|
-
if (
|
16180
|
+
if (this._compositeType === CompositeTypes.StatelessFunctional) {
|
15827
16181
|
return null;
|
15828
16182
|
}
|
15829
16183
|
return inst;
|
@@ -15844,7 +16198,7 @@
|
|
15844
16198
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
15845
16199
|
|
15846
16200
|
/***/ },
|
15847
|
-
/*
|
16201
|
+
/* 128 */
|
15848
16202
|
/***/ function(module, exports, __webpack_require__) {
|
15849
16203
|
|
15850
16204
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -15872,25 +16226,96 @@
|
|
15872
16226
|
COMPOSITE: 1,
|
15873
16227
|
EMPTY: 2,
|
15874
16228
|
|
15875
|
-
getType: function (node) {
|
15876
|
-
if (node === null || node === false) {
|
15877
|
-
return ReactNodeTypes.EMPTY;
|
15878
|
-
} else if (ReactElement.isValidElement(node)) {
|
15879
|
-
if (typeof node.type === 'function') {
|
15880
|
-
return ReactNodeTypes.COMPOSITE;
|
15881
|
-
} else {
|
15882
|
-
return ReactNodeTypes.HOST;
|
15883
|
-
}
|
16229
|
+
getType: function (node) {
|
16230
|
+
if (node === null || node === false) {
|
16231
|
+
return ReactNodeTypes.EMPTY;
|
16232
|
+
} else if (ReactElement.isValidElement(node)) {
|
16233
|
+
if (typeof node.type === 'function') {
|
16234
|
+
return ReactNodeTypes.COMPOSITE;
|
16235
|
+
} else {
|
16236
|
+
return ReactNodeTypes.HOST;
|
16237
|
+
}
|
16238
|
+
}
|
16239
|
+
true ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Unexpected node: %s', node) : _prodInvariant('26', node) : void 0;
|
16240
|
+
}
|
16241
|
+
};
|
16242
|
+
|
16243
|
+
module.exports = ReactNodeTypes;
|
16244
|
+
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
16245
|
+
|
16246
|
+
/***/ },
|
16247
|
+
/* 129 */
|
16248
|
+
/***/ function(module, exports) {
|
16249
|
+
|
16250
|
+
/**
|
16251
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
16252
|
+
* All rights reserved.
|
16253
|
+
*
|
16254
|
+
* This source code is licensed under the BSD-style license found in the
|
16255
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
16256
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
16257
|
+
*
|
16258
|
+
* @typechecks
|
16259
|
+
*
|
16260
|
+
*/
|
16261
|
+
|
16262
|
+
/*eslint-disable no-self-compare */
|
16263
|
+
|
16264
|
+
'use strict';
|
16265
|
+
|
16266
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
16267
|
+
|
16268
|
+
/**
|
16269
|
+
* inlined Object.is polyfill to avoid requiring consumers ship their own
|
16270
|
+
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
|
16271
|
+
*/
|
16272
|
+
function is(x, y) {
|
16273
|
+
// SameValue algorithm
|
16274
|
+
if (x === y) {
|
16275
|
+
// Steps 1-5, 7-10
|
16276
|
+
// Steps 6.b-6.e: +0 != -0
|
16277
|
+
return x !== 0 || 1 / x === 1 / y;
|
16278
|
+
} else {
|
16279
|
+
// Step 6.a: NaN == NaN
|
16280
|
+
return x !== x && y !== y;
|
16281
|
+
}
|
16282
|
+
}
|
16283
|
+
|
16284
|
+
/**
|
16285
|
+
* Performs equality by iterating through keys on an object and returning false
|
16286
|
+
* when any key has values which are not strictly equal between the arguments.
|
16287
|
+
* Returns true when the values of all keys are strictly equal.
|
16288
|
+
*/
|
16289
|
+
function shallowEqual(objA, objB) {
|
16290
|
+
if (is(objA, objB)) {
|
16291
|
+
return true;
|
16292
|
+
}
|
16293
|
+
|
16294
|
+
if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) {
|
16295
|
+
return false;
|
16296
|
+
}
|
16297
|
+
|
16298
|
+
var keysA = Object.keys(objA);
|
16299
|
+
var keysB = Object.keys(objB);
|
16300
|
+
|
16301
|
+
if (keysA.length !== keysB.length) {
|
16302
|
+
return false;
|
16303
|
+
}
|
16304
|
+
|
16305
|
+
// Test for A's keys different from B.
|
16306
|
+
for (var i = 0; i < keysA.length; i++) {
|
16307
|
+
if (!hasOwnProperty.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) {
|
16308
|
+
return false;
|
15884
16309
|
}
|
15885
|
-
true ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Unexpected node: %s', node) : _prodInvariant('26', node) : void 0;
|
15886
16310
|
}
|
15887
|
-
};
|
15888
16311
|
|
15889
|
-
|
15890
|
-
|
16312
|
+
return true;
|
16313
|
+
}
|
16314
|
+
|
16315
|
+
module.exports = shallowEqual;
|
15891
16316
|
|
15892
16317
|
/***/ },
|
15893
|
-
/*
|
16318
|
+
/* 130 */
|
15894
16319
|
/***/ function(module, exports) {
|
15895
16320
|
|
15896
16321
|
/**
|
@@ -15937,7 +16362,7 @@
|
|
15937
16362
|
module.exports = shouldUpdateReactComponent;
|
15938
16363
|
|
15939
16364
|
/***/ },
|
15940
|
-
/*
|
16365
|
+
/* 131 */
|
15941
16366
|
/***/ function(module, exports) {
|
15942
16367
|
|
15943
16368
|
/**
|
@@ -15972,7 +16397,7 @@
|
|
15972
16397
|
module.exports = ReactEmptyComponent;
|
15973
16398
|
|
15974
16399
|
/***/ },
|
15975
|
-
/*
|
16400
|
+
/* 132 */
|
15976
16401
|
/***/ function(module, exports, __webpack_require__) {
|
15977
16402
|
|
15978
16403
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -16054,7 +16479,7 @@
|
|
16054
16479
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
16055
16480
|
|
16056
16481
|
/***/ },
|
16057
|
-
/*
|
16482
|
+
/* 133 */
|
16058
16483
|
/***/ function(module, exports, __webpack_require__) {
|
16059
16484
|
|
16060
16485
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -16075,6 +16500,17 @@
|
|
16075
16500
|
var traverseAllChildren = __webpack_require__(14);
|
16076
16501
|
var warning = __webpack_require__(11);
|
16077
16502
|
|
16503
|
+
var ReactComponentTreeDevtool;
|
16504
|
+
|
16505
|
+
if (typeof process !== 'undefined' && process.env && process.env.NODE_ENV === 'test') {
|
16506
|
+
// Temporary hack.
|
16507
|
+
// Inline requires don't work well with Jest:
|
16508
|
+
// https://github.com/facebook/react/issues/7240
|
16509
|
+
// Remove the inline requires when we don't need them anymore:
|
16510
|
+
// https://github.com/facebook/react/pull/7178
|
16511
|
+
ReactComponentTreeDevtool = __webpack_require__(29);
|
16512
|
+
}
|
16513
|
+
|
16078
16514
|
/**
|
16079
16515
|
* @param {function} traverseContext Context passed through traversal.
|
16080
16516
|
* @param {?ReactComponent} child React child component.
|
@@ -16087,7 +16523,9 @@
|
|
16087
16523
|
var result = traverseContext;
|
16088
16524
|
var keyUnique = result[name] === undefined;
|
16089
16525
|
if (process.env.NODE_ENV !== 'production') {
|
16090
|
-
|
16526
|
+
if (!ReactComponentTreeDevtool) {
|
16527
|
+
ReactComponentTreeDevtool = __webpack_require__(29);
|
16528
|
+
}
|
16091
16529
|
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;
|
16092
16530
|
}
|
16093
16531
|
if (keyUnique && child != null) {
|
@@ -16121,7 +16559,7 @@
|
|
16121
16559
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
16122
16560
|
|
16123
16561
|
/***/ },
|
16124
|
-
/*
|
16562
|
+
/* 134 */
|
16125
16563
|
/***/ function(module, exports, __webpack_require__) {
|
16126
16564
|
|
16127
16565
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -16140,9 +16578,9 @@
|
|
16140
16578
|
var _assign = __webpack_require__(4);
|
16141
16579
|
|
16142
16580
|
var PooledClass = __webpack_require__(6);
|
16143
|
-
var Transaction = __webpack_require__(
|
16144
|
-
var ReactInstrumentation = __webpack_require__(
|
16145
|
-
var ReactServerUpdateQueue = __webpack_require__(
|
16581
|
+
var Transaction = __webpack_require__(70);
|
16582
|
+
var ReactInstrumentation = __webpack_require__(63);
|
16583
|
+
var ReactServerUpdateQueue = __webpack_require__(135);
|
16146
16584
|
|
16147
16585
|
/**
|
16148
16586
|
* Executed within the scope of the `Transaction` instance. Consider these as
|
@@ -16217,7 +16655,7 @@
|
|
16217
16655
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
16218
16656
|
|
16219
16657
|
/***/ },
|
16220
|
-
/*
|
16658
|
+
/* 135 */
|
16221
16659
|
/***/ function(module, exports, __webpack_require__) {
|
16222
16660
|
|
16223
16661
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -16236,8 +16674,8 @@
|
|
16236
16674
|
|
16237
16675
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
16238
16676
|
|
16239
|
-
var ReactUpdateQueue = __webpack_require__(
|
16240
|
-
var Transaction = __webpack_require__(
|
16677
|
+
var ReactUpdateQueue = __webpack_require__(136);
|
16678
|
+
var Transaction = __webpack_require__(70);
|
16241
16679
|
var warning = __webpack_require__(11);
|
16242
16680
|
|
16243
16681
|
function warnNoop(publicInstance, callerName) {
|
@@ -16364,7 +16802,7 @@
|
|
16364
16802
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
16365
16803
|
|
16366
16804
|
/***/ },
|
16367
|
-
/*
|
16805
|
+
/* 136 */
|
16368
16806
|
/***/ function(module, exports, __webpack_require__) {
|
16369
16807
|
|
16370
16808
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -16383,9 +16821,9 @@
|
|
16383
16821
|
var _prodInvariant = __webpack_require__(7);
|
16384
16822
|
|
16385
16823
|
var ReactCurrentOwner = __webpack_require__(10);
|
16386
|
-
var ReactInstanceMap = __webpack_require__(
|
16387
|
-
var ReactInstrumentation = __webpack_require__(
|
16388
|
-
var ReactUpdates = __webpack_require__(
|
16824
|
+
var ReactInstanceMap = __webpack_require__(124);
|
16825
|
+
var ReactInstrumentation = __webpack_require__(63);
|
16826
|
+
var ReactUpdates = __webpack_require__(57);
|
16389
16827
|
|
16390
16828
|
var invariant = __webpack_require__(8);
|
16391
16829
|
var warning = __webpack_require__(11);
|
@@ -16411,10 +16849,11 @@
|
|
16411
16849
|
var internalInstance = ReactInstanceMap.get(publicInstance);
|
16412
16850
|
if (!internalInstance) {
|
16413
16851
|
if (process.env.NODE_ENV !== 'production') {
|
16852
|
+
var ctor = publicInstance.constructor;
|
16414
16853
|
// Only warn when we have a callerName. Otherwise we should be silent.
|
16415
16854
|
// We're probably calling from enqueueCallback. We don't want to warn
|
16416
16855
|
// there because we already warned for the corresponding lifecycle method.
|
16417
|
-
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,
|
16856
|
+
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;
|
16418
16857
|
}
|
16419
16858
|
return null;
|
16420
16859
|
}
|
@@ -16595,78 +17034,7 @@
|
|
16595
17034
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
16596
17035
|
|
16597
17036
|
/***/ },
|
16598
|
-
/*
|
16599
|
-
/***/ function(module, exports) {
|
16600
|
-
|
16601
|
-
/**
|
16602
|
-
* Copyright (c) 2013-present, Facebook, Inc.
|
16603
|
-
* All rights reserved.
|
16604
|
-
*
|
16605
|
-
* This source code is licensed under the BSD-style license found in the
|
16606
|
-
* LICENSE file in the root directory of this source tree. An additional grant
|
16607
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
16608
|
-
*
|
16609
|
-
* @typechecks
|
16610
|
-
*
|
16611
|
-
*/
|
16612
|
-
|
16613
|
-
/*eslint-disable no-self-compare */
|
16614
|
-
|
16615
|
-
'use strict';
|
16616
|
-
|
16617
|
-
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
16618
|
-
|
16619
|
-
/**
|
16620
|
-
* inlined Object.is polyfill to avoid requiring consumers ship their own
|
16621
|
-
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
|
16622
|
-
*/
|
16623
|
-
function is(x, y) {
|
16624
|
-
// SameValue algorithm
|
16625
|
-
if (x === y) {
|
16626
|
-
// Steps 1-5, 7-10
|
16627
|
-
// Steps 6.b-6.e: +0 != -0
|
16628
|
-
return x !== 0 || 1 / x === 1 / y;
|
16629
|
-
} else {
|
16630
|
-
// Step 6.a: NaN == NaN
|
16631
|
-
return x !== x && y !== y;
|
16632
|
-
}
|
16633
|
-
}
|
16634
|
-
|
16635
|
-
/**
|
16636
|
-
* Performs equality by iterating through keys on an object and returning false
|
16637
|
-
* when any key has values which are not strictly equal between the arguments.
|
16638
|
-
* Returns true when the values of all keys are strictly equal.
|
16639
|
-
*/
|
16640
|
-
function shallowEqual(objA, objB) {
|
16641
|
-
if (is(objA, objB)) {
|
16642
|
-
return true;
|
16643
|
-
}
|
16644
|
-
|
16645
|
-
if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) {
|
16646
|
-
return false;
|
16647
|
-
}
|
16648
|
-
|
16649
|
-
var keysA = Object.keys(objA);
|
16650
|
-
var keysB = Object.keys(objB);
|
16651
|
-
|
16652
|
-
if (keysA.length !== keysB.length) {
|
16653
|
-
return false;
|
16654
|
-
}
|
16655
|
-
|
16656
|
-
// Test for A's keys different from B.
|
16657
|
-
for (var i = 0; i < keysA.length; i++) {
|
16658
|
-
if (!hasOwnProperty.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) {
|
16659
|
-
return false;
|
16660
|
-
}
|
16661
|
-
}
|
16662
|
-
|
16663
|
-
return true;
|
16664
|
-
}
|
16665
|
-
|
16666
|
-
module.exports = shallowEqual;
|
16667
|
-
|
16668
|
-
/***/ },
|
16669
|
-
/* 134 */
|
17037
|
+
/* 137 */
|
16670
17038
|
/***/ function(module, exports, __webpack_require__) {
|
16671
17039
|
|
16672
17040
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -17041,7 +17409,7 @@
|
|
17041
17409
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
17042
17410
|
|
17043
17411
|
/***/ },
|
17044
|
-
/*
|
17412
|
+
/* 138 */
|
17045
17413
|
/***/ function(module, exports, __webpack_require__) {
|
17046
17414
|
|
17047
17415
|
/**
|
@@ -17059,8 +17427,8 @@
|
|
17059
17427
|
|
17060
17428
|
var _assign = __webpack_require__(4);
|
17061
17429
|
|
17062
|
-
var DOMLazyTree = __webpack_require__(
|
17063
|
-
var ReactDOMComponentTree = __webpack_require__(
|
17430
|
+
var DOMLazyTree = __webpack_require__(83);
|
17431
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
17064
17432
|
|
17065
17433
|
var ReactDOMEmptyComponent = function (instantiate) {
|
17066
17434
|
// ReactCompositeComponent uses this:
|
@@ -17106,7 +17474,7 @@
|
|
17106
17474
|
module.exports = ReactDOMEmptyComponent;
|
17107
17475
|
|
17108
17476
|
/***/ },
|
17109
|
-
/*
|
17477
|
+
/* 139 */
|
17110
17478
|
/***/ function(module, exports, __webpack_require__) {
|
17111
17479
|
|
17112
17480
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -17248,7 +17616,7 @@
|
|
17248
17616
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
17249
17617
|
|
17250
17618
|
/***/ },
|
17251
|
-
/*
|
17619
|
+
/* 140 */
|
17252
17620
|
/***/ function(module, exports, __webpack_require__) {
|
17253
17621
|
|
17254
17622
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -17267,14 +17635,14 @@
|
|
17267
17635
|
var _prodInvariant = __webpack_require__(7),
|
17268
17636
|
_assign = __webpack_require__(4);
|
17269
17637
|
|
17270
|
-
var DOMChildrenOperations = __webpack_require__(
|
17271
|
-
var DOMLazyTree = __webpack_require__(
|
17272
|
-
var ReactDOMComponentTree = __webpack_require__(
|
17273
|
-
var ReactInstrumentation = __webpack_require__(
|
17638
|
+
var DOMChildrenOperations = __webpack_require__(82);
|
17639
|
+
var DOMLazyTree = __webpack_require__(83);
|
17640
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
17641
|
+
var ReactInstrumentation = __webpack_require__(63);
|
17274
17642
|
|
17275
|
-
var escapeTextContentForBrowser = __webpack_require__(
|
17643
|
+
var escapeTextContentForBrowser = __webpack_require__(88);
|
17276
17644
|
var invariant = __webpack_require__(8);
|
17277
|
-
var validateDOMNesting = __webpack_require__(
|
17645
|
+
var validateDOMNesting = __webpack_require__(137);
|
17278
17646
|
|
17279
17647
|
/**
|
17280
17648
|
* Text nodes violate a couple assumptions that React makes about components:
|
@@ -17425,7 +17793,7 @@
|
|
17425
17793
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
17426
17794
|
|
17427
17795
|
/***/ },
|
17428
|
-
/*
|
17796
|
+
/* 141 */
|
17429
17797
|
/***/ function(module, exports, __webpack_require__) {
|
17430
17798
|
|
17431
17799
|
/**
|
@@ -17443,8 +17811,8 @@
|
|
17443
17811
|
|
17444
17812
|
var _assign = __webpack_require__(4);
|
17445
17813
|
|
17446
|
-
var ReactUpdates = __webpack_require__(
|
17447
|
-
var Transaction = __webpack_require__(
|
17814
|
+
var ReactUpdates = __webpack_require__(57);
|
17815
|
+
var Transaction = __webpack_require__(70);
|
17448
17816
|
|
17449
17817
|
var emptyFunction = __webpack_require__(12);
|
17450
17818
|
|
@@ -17498,7 +17866,7 @@
|
|
17498
17866
|
module.exports = ReactDefaultBatchingStrategy;
|
17499
17867
|
|
17500
17868
|
/***/ },
|
17501
|
-
/*
|
17869
|
+
/* 142 */
|
17502
17870
|
/***/ function(module, exports, __webpack_require__) {
|
17503
17871
|
|
17504
17872
|
/**
|
@@ -17516,14 +17884,14 @@
|
|
17516
17884
|
|
17517
17885
|
var _assign = __webpack_require__(4);
|
17518
17886
|
|
17519
|
-
var EventListener = __webpack_require__(
|
17520
|
-
var ExecutionEnvironment = __webpack_require__(
|
17887
|
+
var EventListener = __webpack_require__(143);
|
17888
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
17521
17889
|
var PooledClass = __webpack_require__(6);
|
17522
|
-
var ReactDOMComponentTree = __webpack_require__(
|
17523
|
-
var ReactUpdates = __webpack_require__(
|
17890
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
17891
|
+
var ReactUpdates = __webpack_require__(57);
|
17524
17892
|
|
17525
|
-
var getEventTarget = __webpack_require__(
|
17526
|
-
var getUnboundedScrollPosition = __webpack_require__(
|
17893
|
+
var getEventTarget = __webpack_require__(71);
|
17894
|
+
var getUnboundedScrollPosition = __webpack_require__(144);
|
17527
17895
|
|
17528
17896
|
/**
|
17529
17897
|
* Find the deepest React component completely containing the root of the
|
@@ -17660,7 +18028,7 @@
|
|
17660
18028
|
module.exports = ReactEventListener;
|
17661
18029
|
|
17662
18030
|
/***/ },
|
17663
|
-
/*
|
18031
|
+
/* 143 */
|
17664
18032
|
/***/ function(module, exports, __webpack_require__) {
|
17665
18033
|
|
17666
18034
|
/* WEBPACK VAR INJECTION */(function(process) {'use strict';
|
@@ -17749,7 +18117,7 @@
|
|
17749
18117
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
17750
18118
|
|
17751
18119
|
/***/ },
|
17752
|
-
/*
|
18120
|
+
/* 144 */
|
17753
18121
|
/***/ function(module, exports) {
|
17754
18122
|
|
17755
18123
|
/**
|
@@ -17792,7 +18160,7 @@
|
|
17792
18160
|
module.exports = getUnboundedScrollPosition;
|
17793
18161
|
|
17794
18162
|
/***/ },
|
17795
|
-
/*
|
18163
|
+
/* 145 */
|
17796
18164
|
/***/ function(module, exports, __webpack_require__) {
|
17797
18165
|
|
17798
18166
|
/**
|
@@ -17808,15 +18176,15 @@
|
|
17808
18176
|
|
17809
18177
|
'use strict';
|
17810
18178
|
|
17811
|
-
var DOMProperty = __webpack_require__(
|
17812
|
-
var EventPluginHub = __webpack_require__(
|
17813
|
-
var EventPluginUtils = __webpack_require__(
|
17814
|
-
var ReactComponentEnvironment = __webpack_require__(
|
17815
|
-
var ReactClass = __webpack_require__(
|
17816
|
-
var ReactEmptyComponent = __webpack_require__(
|
17817
|
-
var ReactBrowserEventEmitter = __webpack_require__(
|
17818
|
-
var ReactHostComponent = __webpack_require__(
|
17819
|
-
var ReactUpdates = __webpack_require__(
|
18179
|
+
var DOMProperty = __webpack_require__(38);
|
18180
|
+
var EventPluginHub = __webpack_require__(44);
|
18181
|
+
var EventPluginUtils = __webpack_require__(46);
|
18182
|
+
var ReactComponentEnvironment = __webpack_require__(123);
|
18183
|
+
var ReactClass = __webpack_require__(21);
|
18184
|
+
var ReactEmptyComponent = __webpack_require__(131);
|
18185
|
+
var ReactBrowserEventEmitter = __webpack_require__(112);
|
18186
|
+
var ReactHostComponent = __webpack_require__(132);
|
18187
|
+
var ReactUpdates = __webpack_require__(57);
|
17820
18188
|
|
17821
18189
|
var ReactInjection = {
|
17822
18190
|
Component: ReactComponentEnvironment.injection,
|
@@ -17833,7 +18201,7 @@
|
|
17833
18201
|
module.exports = ReactInjection;
|
17834
18202
|
|
17835
18203
|
/***/ },
|
17836
|
-
/*
|
18204
|
+
/* 146 */
|
17837
18205
|
/***/ function(module, exports, __webpack_require__) {
|
17838
18206
|
|
17839
18207
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -17851,13 +18219,13 @@
|
|
17851
18219
|
|
17852
18220
|
var _assign = __webpack_require__(4);
|
17853
18221
|
|
17854
|
-
var CallbackQueue = __webpack_require__(
|
18222
|
+
var CallbackQueue = __webpack_require__(58);
|
17855
18223
|
var PooledClass = __webpack_require__(6);
|
17856
|
-
var ReactBrowserEventEmitter = __webpack_require__(
|
17857
|
-
var ReactInputSelection = __webpack_require__(
|
17858
|
-
var ReactInstrumentation = __webpack_require__(
|
17859
|
-
var Transaction = __webpack_require__(
|
17860
|
-
var ReactUpdateQueue = __webpack_require__(
|
18224
|
+
var ReactBrowserEventEmitter = __webpack_require__(112);
|
18225
|
+
var ReactInputSelection = __webpack_require__(147);
|
18226
|
+
var ReactInstrumentation = __webpack_require__(63);
|
18227
|
+
var Transaction = __webpack_require__(70);
|
18228
|
+
var ReactUpdateQueue = __webpack_require__(136);
|
17861
18229
|
|
17862
18230
|
/**
|
17863
18231
|
* Ensures that, when possible, the selection range (currently selected text
|
@@ -18017,7 +18385,7 @@
|
|
18017
18385
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
18018
18386
|
|
18019
18387
|
/***/ },
|
18020
|
-
/*
|
18388
|
+
/* 147 */
|
18021
18389
|
/***/ function(module, exports, __webpack_require__) {
|
18022
18390
|
|
18023
18391
|
/**
|
@@ -18033,11 +18401,11 @@
|
|
18033
18401
|
|
18034
18402
|
'use strict';
|
18035
18403
|
|
18036
|
-
var ReactDOMSelection = __webpack_require__(
|
18404
|
+
var ReactDOMSelection = __webpack_require__(148);
|
18037
18405
|
|
18038
|
-
var containsNode = __webpack_require__(
|
18039
|
-
var focusNode = __webpack_require__(
|
18040
|
-
var getActiveElement = __webpack_require__(
|
18406
|
+
var containsNode = __webpack_require__(150);
|
18407
|
+
var focusNode = __webpack_require__(97);
|
18408
|
+
var getActiveElement = __webpack_require__(153);
|
18041
18409
|
|
18042
18410
|
function isInDocument(node) {
|
18043
18411
|
return containsNode(document.documentElement, node);
|
@@ -18146,7 +18514,7 @@
|
|
18146
18514
|
module.exports = ReactInputSelection;
|
18147
18515
|
|
18148
18516
|
/***/ },
|
18149
|
-
/*
|
18517
|
+
/* 148 */
|
18150
18518
|
/***/ function(module, exports, __webpack_require__) {
|
18151
18519
|
|
18152
18520
|
/**
|
@@ -18162,10 +18530,10 @@
|
|
18162
18530
|
|
18163
18531
|
'use strict';
|
18164
18532
|
|
18165
|
-
var ExecutionEnvironment = __webpack_require__(
|
18533
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
18166
18534
|
|
18167
|
-
var getNodeForCharacterOffset = __webpack_require__(
|
18168
|
-
var getTextContentAccessor = __webpack_require__(
|
18535
|
+
var getNodeForCharacterOffset = __webpack_require__(149);
|
18536
|
+
var getTextContentAccessor = __webpack_require__(52);
|
18169
18537
|
|
18170
18538
|
/**
|
18171
18539
|
* While `isCollapsed` is available on the Selection object and `collapsed`
|
@@ -18363,7 +18731,7 @@
|
|
18363
18731
|
module.exports = ReactDOMSelection;
|
18364
18732
|
|
18365
18733
|
/***/ },
|
18366
|
-
/*
|
18734
|
+
/* 149 */
|
18367
18735
|
/***/ function(module, exports) {
|
18368
18736
|
|
18369
18737
|
/**
|
@@ -18442,7 +18810,7 @@
|
|
18442
18810
|
module.exports = getNodeForCharacterOffset;
|
18443
18811
|
|
18444
18812
|
/***/ },
|
18445
|
-
/*
|
18813
|
+
/* 150 */
|
18446
18814
|
/***/ function(module, exports, __webpack_require__) {
|
18447
18815
|
|
18448
18816
|
'use strict';
|
@@ -18458,7 +18826,7 @@
|
|
18458
18826
|
*
|
18459
18827
|
*/
|
18460
18828
|
|
18461
|
-
var isTextNode = __webpack_require__(
|
18829
|
+
var isTextNode = __webpack_require__(151);
|
18462
18830
|
|
18463
18831
|
/*eslint-disable no-bitwise */
|
18464
18832
|
|
@@ -18486,7 +18854,7 @@
|
|
18486
18854
|
module.exports = containsNode;
|
18487
18855
|
|
18488
18856
|
/***/ },
|
18489
|
-
/*
|
18857
|
+
/* 151 */
|
18490
18858
|
/***/ function(module, exports, __webpack_require__) {
|
18491
18859
|
|
18492
18860
|
'use strict';
|
@@ -18502,7 +18870,7 @@
|
|
18502
18870
|
* @typechecks
|
18503
18871
|
*/
|
18504
18872
|
|
18505
|
-
var isNode = __webpack_require__(
|
18873
|
+
var isNode = __webpack_require__(152);
|
18506
18874
|
|
18507
18875
|
/**
|
18508
18876
|
* @param {*} object The object to check.
|
@@ -18515,7 +18883,7 @@
|
|
18515
18883
|
module.exports = isTextNode;
|
18516
18884
|
|
18517
18885
|
/***/ },
|
18518
|
-
/*
|
18886
|
+
/* 152 */
|
18519
18887
|
/***/ function(module, exports) {
|
18520
18888
|
|
18521
18889
|
'use strict';
|
@@ -18542,7 +18910,7 @@
|
|
18542
18910
|
module.exports = isNode;
|
18543
18911
|
|
18544
18912
|
/***/ },
|
18545
|
-
/*
|
18913
|
+
/* 153 */
|
18546
18914
|
/***/ function(module, exports) {
|
18547
18915
|
|
18548
18916
|
'use strict';
|
@@ -18581,7 +18949,7 @@
|
|
18581
18949
|
module.exports = getActiveElement;
|
18582
18950
|
|
18583
18951
|
/***/ },
|
18584
|
-
/*
|
18952
|
+
/* 154 */
|
18585
18953
|
/***/ function(module, exports) {
|
18586
18954
|
|
18587
18955
|
/**
|
@@ -18849,6 +19217,8 @@
|
|
18849
19217
|
xlinkTitle: 'xlink:title',
|
18850
19218
|
xlinkType: 'xlink:type',
|
18851
19219
|
xmlBase: 'xml:base',
|
19220
|
+
xmlns: 0,
|
19221
|
+
xmlnsXlink: 'xmlns:xlink',
|
18852
19222
|
xmlLang: 'xml:lang',
|
18853
19223
|
xmlSpace: 'xml:space',
|
18854
19224
|
y: 0,
|
@@ -18886,7 +19256,7 @@
|
|
18886
19256
|
module.exports = SVGDOMPropertyConfig;
|
18887
19257
|
|
18888
19258
|
/***/ },
|
18889
|
-
/*
|
19259
|
+
/* 155 */
|
18890
19260
|
/***/ function(module, exports, __webpack_require__) {
|
18891
19261
|
|
18892
19262
|
/**
|
@@ -18902,17 +19272,17 @@
|
|
18902
19272
|
|
18903
19273
|
'use strict';
|
18904
19274
|
|
18905
|
-
var EventConstants = __webpack_require__(
|
18906
|
-
var EventPropagators = __webpack_require__(
|
18907
|
-
var ExecutionEnvironment = __webpack_require__(
|
18908
|
-
var ReactDOMComponentTree = __webpack_require__(
|
18909
|
-
var ReactInputSelection = __webpack_require__(
|
18910
|
-
var SyntheticEvent = __webpack_require__(
|
19275
|
+
var EventConstants = __webpack_require__(42);
|
19276
|
+
var EventPropagators = __webpack_require__(43);
|
19277
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
19278
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
19279
|
+
var ReactInputSelection = __webpack_require__(147);
|
19280
|
+
var SyntheticEvent = __webpack_require__(54);
|
18911
19281
|
|
18912
|
-
var getActiveElement = __webpack_require__(
|
18913
|
-
var isTextInputElement = __webpack_require__(
|
18914
|
-
var keyOf = __webpack_require__(
|
18915
|
-
var shallowEqual = __webpack_require__(
|
19282
|
+
var getActiveElement = __webpack_require__(153);
|
19283
|
+
var isTextInputElement = __webpack_require__(73);
|
19284
|
+
var keyOf = __webpack_require__(25);
|
19285
|
+
var shallowEqual = __webpack_require__(129);
|
18916
19286
|
|
18917
19287
|
var topLevelTypes = EventConstants.topLevelTypes;
|
18918
19288
|
|
@@ -19087,7 +19457,7 @@
|
|
19087
19457
|
module.exports = SelectEventPlugin;
|
19088
19458
|
|
19089
19459
|
/***/ },
|
19090
|
-
/*
|
19460
|
+
/* 156 */
|
19091
19461
|
/***/ function(module, exports, __webpack_require__) {
|
19092
19462
|
|
19093
19463
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -19105,26 +19475,26 @@
|
|
19105
19475
|
|
19106
19476
|
var _prodInvariant = __webpack_require__(7);
|
19107
19477
|
|
19108
|
-
var EventConstants = __webpack_require__(
|
19109
|
-
var EventListener = __webpack_require__(
|
19110
|
-
var EventPropagators = __webpack_require__(
|
19111
|
-
var ReactDOMComponentTree = __webpack_require__(
|
19112
|
-
var SyntheticAnimationEvent = __webpack_require__(
|
19113
|
-
var SyntheticClipboardEvent = __webpack_require__(
|
19114
|
-
var SyntheticEvent = __webpack_require__(
|
19115
|
-
var SyntheticFocusEvent = __webpack_require__(
|
19116
|
-
var SyntheticKeyboardEvent = __webpack_require__(
|
19117
|
-
var SyntheticMouseEvent = __webpack_require__(
|
19118
|
-
var SyntheticDragEvent = __webpack_require__(
|
19119
|
-
var SyntheticTouchEvent = __webpack_require__(
|
19120
|
-
var SyntheticTransitionEvent = __webpack_require__(
|
19121
|
-
var SyntheticUIEvent = __webpack_require__(
|
19122
|
-
var SyntheticWheelEvent = __webpack_require__(
|
19478
|
+
var EventConstants = __webpack_require__(42);
|
19479
|
+
var EventListener = __webpack_require__(143);
|
19480
|
+
var EventPropagators = __webpack_require__(43);
|
19481
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
19482
|
+
var SyntheticAnimationEvent = __webpack_require__(157);
|
19483
|
+
var SyntheticClipboardEvent = __webpack_require__(158);
|
19484
|
+
var SyntheticEvent = __webpack_require__(54);
|
19485
|
+
var SyntheticFocusEvent = __webpack_require__(159);
|
19486
|
+
var SyntheticKeyboardEvent = __webpack_require__(160);
|
19487
|
+
var SyntheticMouseEvent = __webpack_require__(76);
|
19488
|
+
var SyntheticDragEvent = __webpack_require__(163);
|
19489
|
+
var SyntheticTouchEvent = __webpack_require__(164);
|
19490
|
+
var SyntheticTransitionEvent = __webpack_require__(165);
|
19491
|
+
var SyntheticUIEvent = __webpack_require__(77);
|
19492
|
+
var SyntheticWheelEvent = __webpack_require__(166);
|
19123
19493
|
|
19124
19494
|
var emptyFunction = __webpack_require__(12);
|
19125
|
-
var getEventCharCode = __webpack_require__(
|
19495
|
+
var getEventCharCode = __webpack_require__(161);
|
19126
19496
|
var invariant = __webpack_require__(8);
|
19127
|
-
var keyOf = __webpack_require__(
|
19497
|
+
var keyOf = __webpack_require__(25);
|
19128
19498
|
|
19129
19499
|
var topLevelTypes = EventConstants.topLevelTypes;
|
19130
19500
|
|
@@ -19577,6 +19947,10 @@
|
|
19577
19947
|
var ON_CLICK_KEY = keyOf({ onClick: null });
|
19578
19948
|
var onClickListeners = {};
|
19579
19949
|
|
19950
|
+
function getDictionaryKey(inst) {
|
19951
|
+
return '.' + inst._rootNodeID;
|
19952
|
+
}
|
19953
|
+
|
19580
19954
|
var SimpleEventPlugin = {
|
19581
19955
|
|
19582
19956
|
eventTypes: eventTypes,
|
@@ -19700,19 +20074,19 @@
|
|
19700
20074
|
// fire. The workaround for this bug involves attaching an empty click
|
19701
20075
|
// listener on the target node.
|
19702
20076
|
if (registrationName === ON_CLICK_KEY) {
|
19703
|
-
var
|
20077
|
+
var key = getDictionaryKey(inst);
|
19704
20078
|
var node = ReactDOMComponentTree.getNodeFromInstance(inst);
|
19705
|
-
if (!onClickListeners[
|
19706
|
-
onClickListeners[
|
20079
|
+
if (!onClickListeners[key]) {
|
20080
|
+
onClickListeners[key] = EventListener.listen(node, 'click', emptyFunction);
|
19707
20081
|
}
|
19708
20082
|
}
|
19709
20083
|
},
|
19710
20084
|
|
19711
20085
|
willDeleteListener: function (inst, registrationName) {
|
19712
20086
|
if (registrationName === ON_CLICK_KEY) {
|
19713
|
-
var
|
19714
|
-
onClickListeners[
|
19715
|
-
delete onClickListeners[
|
20087
|
+
var key = getDictionaryKey(inst);
|
20088
|
+
onClickListeners[key].remove();
|
20089
|
+
delete onClickListeners[key];
|
19716
20090
|
}
|
19717
20091
|
}
|
19718
20092
|
|
@@ -19722,7 +20096,7 @@
|
|
19722
20096
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
19723
20097
|
|
19724
20098
|
/***/ },
|
19725
|
-
/*
|
20099
|
+
/* 157 */
|
19726
20100
|
/***/ function(module, exports, __webpack_require__) {
|
19727
20101
|
|
19728
20102
|
/**
|
@@ -19738,7 +20112,7 @@
|
|
19738
20112
|
|
19739
20113
|
'use strict';
|
19740
20114
|
|
19741
|
-
var SyntheticEvent = __webpack_require__(
|
20115
|
+
var SyntheticEvent = __webpack_require__(54);
|
19742
20116
|
|
19743
20117
|
/**
|
19744
20118
|
* @interface Event
|
@@ -19766,7 +20140,7 @@
|
|
19766
20140
|
module.exports = SyntheticAnimationEvent;
|
19767
20141
|
|
19768
20142
|
/***/ },
|
19769
|
-
/*
|
20143
|
+
/* 158 */
|
19770
20144
|
/***/ function(module, exports, __webpack_require__) {
|
19771
20145
|
|
19772
20146
|
/**
|
@@ -19782,7 +20156,7 @@
|
|
19782
20156
|
|
19783
20157
|
'use strict';
|
19784
20158
|
|
19785
|
-
var SyntheticEvent = __webpack_require__(
|
20159
|
+
var SyntheticEvent = __webpack_require__(54);
|
19786
20160
|
|
19787
20161
|
/**
|
19788
20162
|
* @interface Event
|
@@ -19809,7 +20183,7 @@
|
|
19809
20183
|
module.exports = SyntheticClipboardEvent;
|
19810
20184
|
|
19811
20185
|
/***/ },
|
19812
|
-
/*
|
20186
|
+
/* 159 */
|
19813
20187
|
/***/ function(module, exports, __webpack_require__) {
|
19814
20188
|
|
19815
20189
|
/**
|
@@ -19825,7 +20199,7 @@
|
|
19825
20199
|
|
19826
20200
|
'use strict';
|
19827
20201
|
|
19828
|
-
var SyntheticUIEvent = __webpack_require__(
|
20202
|
+
var SyntheticUIEvent = __webpack_require__(77);
|
19829
20203
|
|
19830
20204
|
/**
|
19831
20205
|
* @interface FocusEvent
|
@@ -19850,7 +20224,7 @@
|
|
19850
20224
|
module.exports = SyntheticFocusEvent;
|
19851
20225
|
|
19852
20226
|
/***/ },
|
19853
|
-
/*
|
20227
|
+
/* 160 */
|
19854
20228
|
/***/ function(module, exports, __webpack_require__) {
|
19855
20229
|
|
19856
20230
|
/**
|
@@ -19866,11 +20240,11 @@
|
|
19866
20240
|
|
19867
20241
|
'use strict';
|
19868
20242
|
|
19869
|
-
var SyntheticUIEvent = __webpack_require__(
|
20243
|
+
var SyntheticUIEvent = __webpack_require__(77);
|
19870
20244
|
|
19871
|
-
var getEventCharCode = __webpack_require__(
|
19872
|
-
var getEventKey = __webpack_require__(
|
19873
|
-
var getEventModifierState = __webpack_require__(
|
20245
|
+
var getEventCharCode = __webpack_require__(161);
|
20246
|
+
var getEventKey = __webpack_require__(162);
|
20247
|
+
var getEventModifierState = __webpack_require__(79);
|
19874
20248
|
|
19875
20249
|
/**
|
19876
20250
|
* @interface KeyboardEvent
|
@@ -19939,7 +20313,7 @@
|
|
19939
20313
|
module.exports = SyntheticKeyboardEvent;
|
19940
20314
|
|
19941
20315
|
/***/ },
|
19942
|
-
/*
|
20316
|
+
/* 161 */
|
19943
20317
|
/***/ function(module, exports) {
|
19944
20318
|
|
19945
20319
|
/**
|
@@ -19994,7 +20368,7 @@
|
|
19994
20368
|
module.exports = getEventCharCode;
|
19995
20369
|
|
19996
20370
|
/***/ },
|
19997
|
-
/*
|
20371
|
+
/* 162 */
|
19998
20372
|
/***/ function(module, exports, __webpack_require__) {
|
19999
20373
|
|
20000
20374
|
/**
|
@@ -20010,7 +20384,7 @@
|
|
20010
20384
|
|
20011
20385
|
'use strict';
|
20012
20386
|
|
20013
|
-
var getEventCharCode = __webpack_require__(
|
20387
|
+
var getEventCharCode = __webpack_require__(161);
|
20014
20388
|
|
20015
20389
|
/**
|
20016
20390
|
* Normalization of deprecated HTML5 `key` values
|
@@ -20101,7 +20475,7 @@
|
|
20101
20475
|
module.exports = getEventKey;
|
20102
20476
|
|
20103
20477
|
/***/ },
|
20104
|
-
/*
|
20478
|
+
/* 163 */
|
20105
20479
|
/***/ function(module, exports, __webpack_require__) {
|
20106
20480
|
|
20107
20481
|
/**
|
@@ -20117,7 +20491,7 @@
|
|
20117
20491
|
|
20118
20492
|
'use strict';
|
20119
20493
|
|
20120
|
-
var SyntheticMouseEvent = __webpack_require__(
|
20494
|
+
var SyntheticMouseEvent = __webpack_require__(76);
|
20121
20495
|
|
20122
20496
|
/**
|
20123
20497
|
* @interface DragEvent
|
@@ -20142,7 +20516,7 @@
|
|
20142
20516
|
module.exports = SyntheticDragEvent;
|
20143
20517
|
|
20144
20518
|
/***/ },
|
20145
|
-
/*
|
20519
|
+
/* 164 */
|
20146
20520
|
/***/ function(module, exports, __webpack_require__) {
|
20147
20521
|
|
20148
20522
|
/**
|
@@ -20158,9 +20532,9 @@
|
|
20158
20532
|
|
20159
20533
|
'use strict';
|
20160
20534
|
|
20161
|
-
var SyntheticUIEvent = __webpack_require__(
|
20535
|
+
var SyntheticUIEvent = __webpack_require__(77);
|
20162
20536
|
|
20163
|
-
var getEventModifierState = __webpack_require__(
|
20537
|
+
var getEventModifierState = __webpack_require__(79);
|
20164
20538
|
|
20165
20539
|
/**
|
20166
20540
|
* @interface TouchEvent
|
@@ -20192,7 +20566,7 @@
|
|
20192
20566
|
module.exports = SyntheticTouchEvent;
|
20193
20567
|
|
20194
20568
|
/***/ },
|
20195
|
-
/*
|
20569
|
+
/* 165 */
|
20196
20570
|
/***/ function(module, exports, __webpack_require__) {
|
20197
20571
|
|
20198
20572
|
/**
|
@@ -20208,7 +20582,7 @@
|
|
20208
20582
|
|
20209
20583
|
'use strict';
|
20210
20584
|
|
20211
|
-
var SyntheticEvent = __webpack_require__(
|
20585
|
+
var SyntheticEvent = __webpack_require__(54);
|
20212
20586
|
|
20213
20587
|
/**
|
20214
20588
|
* @interface Event
|
@@ -20236,7 +20610,7 @@
|
|
20236
20610
|
module.exports = SyntheticTransitionEvent;
|
20237
20611
|
|
20238
20612
|
/***/ },
|
20239
|
-
/*
|
20613
|
+
/* 166 */
|
20240
20614
|
/***/ function(module, exports, __webpack_require__) {
|
20241
20615
|
|
20242
20616
|
/**
|
@@ -20252,7 +20626,7 @@
|
|
20252
20626
|
|
20253
20627
|
'use strict';
|
20254
20628
|
|
20255
|
-
var SyntheticMouseEvent = __webpack_require__(
|
20629
|
+
var SyntheticMouseEvent = __webpack_require__(76);
|
20256
20630
|
|
20257
20631
|
/**
|
20258
20632
|
* @interface WheelEvent
|
@@ -20295,7 +20669,7 @@
|
|
20295
20669
|
module.exports = SyntheticWheelEvent;
|
20296
20670
|
|
20297
20671
|
/***/ },
|
20298
|
-
/*
|
20672
|
+
/* 167 */
|
20299
20673
|
/***/ function(module, exports, __webpack_require__) {
|
20300
20674
|
|
20301
20675
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -20313,27 +20687,27 @@
|
|
20313
20687
|
|
20314
20688
|
var _prodInvariant = __webpack_require__(7);
|
20315
20689
|
|
20316
|
-
var DOMLazyTree = __webpack_require__(
|
20317
|
-
var DOMProperty = __webpack_require__(
|
20318
|
-
var ReactBrowserEventEmitter = __webpack_require__(
|
20690
|
+
var DOMLazyTree = __webpack_require__(83);
|
20691
|
+
var DOMProperty = __webpack_require__(38);
|
20692
|
+
var ReactBrowserEventEmitter = __webpack_require__(112);
|
20319
20693
|
var ReactCurrentOwner = __webpack_require__(10);
|
20320
|
-
var ReactDOMComponentTree = __webpack_require__(
|
20321
|
-
var ReactDOMContainerInfo = __webpack_require__(
|
20322
|
-
var ReactDOMFeatureFlags = __webpack_require__(
|
20694
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
20695
|
+
var ReactDOMContainerInfo = __webpack_require__(168);
|
20696
|
+
var ReactDOMFeatureFlags = __webpack_require__(169);
|
20323
20697
|
var ReactElement = __webpack_require__(9);
|
20324
|
-
var ReactFeatureFlags = __webpack_require__(
|
20325
|
-
var ReactInstanceMap = __webpack_require__(
|
20326
|
-
var ReactInstrumentation = __webpack_require__(
|
20327
|
-
var ReactMarkupChecksum = __webpack_require__(
|
20328
|
-
var ReactReconciler = __webpack_require__(
|
20329
|
-
var ReactUpdateQueue = __webpack_require__(
|
20330
|
-
var ReactUpdates = __webpack_require__(
|
20698
|
+
var ReactFeatureFlags = __webpack_require__(59);
|
20699
|
+
var ReactInstanceMap = __webpack_require__(124);
|
20700
|
+
var ReactInstrumentation = __webpack_require__(63);
|
20701
|
+
var ReactMarkupChecksum = __webpack_require__(170);
|
20702
|
+
var ReactReconciler = __webpack_require__(60);
|
20703
|
+
var ReactUpdateQueue = __webpack_require__(136);
|
20704
|
+
var ReactUpdates = __webpack_require__(57);
|
20331
20705
|
|
20332
20706
|
var emptyObject = __webpack_require__(19);
|
20333
|
-
var instantiateReactComponent = __webpack_require__(
|
20707
|
+
var instantiateReactComponent = __webpack_require__(126);
|
20334
20708
|
var invariant = __webpack_require__(8);
|
20335
|
-
var setInnerHTML = __webpack_require__(
|
20336
|
-
var shouldUpdateReactComponent = __webpack_require__(
|
20709
|
+
var setInnerHTML = __webpack_require__(85);
|
20710
|
+
var shouldUpdateReactComponent = __webpack_require__(130);
|
20337
20711
|
var warning = __webpack_require__(11);
|
20338
20712
|
|
20339
20713
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
@@ -20800,7 +21174,7 @@
|
|
20800
21174
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
20801
21175
|
|
20802
21176
|
/***/ },
|
20803
|
-
/*
|
21177
|
+
/* 168 */
|
20804
21178
|
/***/ function(module, exports, __webpack_require__) {
|
20805
21179
|
|
20806
21180
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -20816,7 +21190,7 @@
|
|
20816
21190
|
|
20817
21191
|
'use strict';
|
20818
21192
|
|
20819
|
-
var validateDOMNesting = __webpack_require__(
|
21193
|
+
var validateDOMNesting = __webpack_require__(137);
|
20820
21194
|
|
20821
21195
|
var DOC_NODE_TYPE = 9;
|
20822
21196
|
|
@@ -20839,7 +21213,7 @@
|
|
20839
21213
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
20840
21214
|
|
20841
21215
|
/***/ },
|
20842
|
-
/*
|
21216
|
+
/* 169 */
|
20843
21217
|
/***/ function(module, exports) {
|
20844
21218
|
|
20845
21219
|
/**
|
@@ -20862,7 +21236,7 @@
|
|
20862
21236
|
module.exports = ReactDOMFeatureFlags;
|
20863
21237
|
|
20864
21238
|
/***/ },
|
20865
|
-
/*
|
21239
|
+
/* 170 */
|
20866
21240
|
/***/ function(module, exports, __webpack_require__) {
|
20867
21241
|
|
20868
21242
|
/**
|
@@ -20878,7 +21252,7 @@
|
|
20878
21252
|
|
20879
21253
|
'use strict';
|
20880
21254
|
|
20881
|
-
var adler32 = __webpack_require__(
|
21255
|
+
var adler32 = __webpack_require__(171);
|
20882
21256
|
|
20883
21257
|
var TAG_END = /\/?>/;
|
20884
21258
|
var COMMENT_START = /^<\!\-\-/;
|
@@ -20917,7 +21291,7 @@
|
|
20917
21291
|
module.exports = ReactMarkupChecksum;
|
20918
21292
|
|
20919
21293
|
/***/ },
|
20920
|
-
/*
|
21294
|
+
/* 171 */
|
20921
21295
|
/***/ function(module, exports) {
|
20922
21296
|
|
20923
21297
|
/**
|
@@ -20966,7 +21340,7 @@
|
|
20966
21340
|
module.exports = adler32;
|
20967
21341
|
|
20968
21342
|
/***/ },
|
20969
|
-
/*
|
21343
|
+
/* 172 */
|
20970
21344
|
/***/ function(module, exports, __webpack_require__) {
|
20971
21345
|
|
20972
21346
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -20985,10 +21359,10 @@
|
|
20985
21359
|
var _prodInvariant = __webpack_require__(7);
|
20986
21360
|
|
20987
21361
|
var ReactCurrentOwner = __webpack_require__(10);
|
20988
|
-
var ReactDOMComponentTree = __webpack_require__(
|
20989
|
-
var ReactInstanceMap = __webpack_require__(
|
21362
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
21363
|
+
var ReactInstanceMap = __webpack_require__(124);
|
20990
21364
|
|
20991
|
-
var getHostComponentFromComposite = __webpack_require__(
|
21365
|
+
var getHostComponentFromComposite = __webpack_require__(173);
|
20992
21366
|
var invariant = __webpack_require__(8);
|
20993
21367
|
var warning = __webpack_require__(11);
|
20994
21368
|
|
@@ -21032,7 +21406,7 @@
|
|
21032
21406
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
21033
21407
|
|
21034
21408
|
/***/ },
|
21035
|
-
/*
|
21409
|
+
/* 173 */
|
21036
21410
|
/***/ function(module, exports, __webpack_require__) {
|
21037
21411
|
|
21038
21412
|
/**
|
@@ -21048,7 +21422,7 @@
|
|
21048
21422
|
|
21049
21423
|
'use strict';
|
21050
21424
|
|
21051
|
-
var ReactNodeTypes = __webpack_require__(
|
21425
|
+
var ReactNodeTypes = __webpack_require__(128);
|
21052
21426
|
|
21053
21427
|
function getHostComponentFromComposite(inst) {
|
21054
21428
|
var type;
|
@@ -21067,7 +21441,7 @@
|
|
21067
21441
|
module.exports = getHostComponentFromComposite;
|
21068
21442
|
|
21069
21443
|
/***/ },
|
21070
|
-
/*
|
21444
|
+
/* 174 */
|
21071
21445
|
/***/ function(module, exports, __webpack_require__) {
|
21072
21446
|
|
21073
21447
|
/**
|
@@ -21083,25 +21457,25 @@
|
|
21083
21457
|
|
21084
21458
|
'use strict';
|
21085
21459
|
|
21086
|
-
var ReactMount = __webpack_require__(
|
21460
|
+
var ReactMount = __webpack_require__(167);
|
21087
21461
|
|
21088
21462
|
module.exports = ReactMount.renderSubtreeIntoContainer;
|
21089
21463
|
|
21090
21464
|
/***/ },
|
21091
|
-
/*
|
21465
|
+
/* 175 */
|
21092
21466
|
/***/ function(module, exports, __webpack_require__) {
|
21093
21467
|
|
21094
21468
|
/* WEBPACK VAR INJECTION */(function(process) {var addons = {};
|
21095
|
-
addons.TransitionGroup = __webpack_require__(
|
21096
|
-
addons.CSSTransitionGroup = __webpack_require__(
|
21097
|
-
addons.LinkedStateMixin = __webpack_require__(
|
21098
|
-
addons.createFragment = __webpack_require__(
|
21099
|
-
addons.update = __webpack_require__(
|
21100
|
-
addons.PureRenderMixin = __webpack_require__(
|
21469
|
+
addons.TransitionGroup = __webpack_require__(176);
|
21470
|
+
addons.CSSTransitionGroup = __webpack_require__(179);
|
21471
|
+
addons.LinkedStateMixin = __webpack_require__(184);
|
21472
|
+
addons.createFragment = __webpack_require__(188);
|
21473
|
+
addons.update = __webpack_require__(190);
|
21474
|
+
addons.PureRenderMixin = __webpack_require__(192);
|
21101
21475
|
|
21102
21476
|
if (process.env.NODE_ENV !== "production") {
|
21103
|
-
addons.TestUtils = __webpack_require__(
|
21104
|
-
addons.Perf = __webpack_require__(
|
21477
|
+
addons.TestUtils = __webpack_require__(195);
|
21478
|
+
addons.Perf = __webpack_require__(197);
|
21105
21479
|
}
|
21106
21480
|
|
21107
21481
|
module.exports = addons;
|
@@ -21109,13 +21483,13 @@
|
|
21109
21483
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
21110
21484
|
|
21111
21485
|
/***/ },
|
21112
|
-
/*
|
21486
|
+
/* 176 */
|
21113
21487
|
/***/ function(module, exports, __webpack_require__) {
|
21114
21488
|
|
21115
|
-
module.exports = __webpack_require__(
|
21489
|
+
module.exports = __webpack_require__(177);
|
21116
21490
|
|
21117
21491
|
/***/ },
|
21118
|
-
/*
|
21492
|
+
/* 177 */
|
21119
21493
|
/***/ function(module, exports, __webpack_require__) {
|
21120
21494
|
|
21121
21495
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -21134,8 +21508,8 @@
|
|
21134
21508
|
var _assign = __webpack_require__(4);
|
21135
21509
|
|
21136
21510
|
var React = __webpack_require__(2);
|
21137
|
-
var ReactInstanceMap = __webpack_require__(
|
21138
|
-
var ReactTransitionChildMapping = __webpack_require__(
|
21511
|
+
var ReactInstanceMap = __webpack_require__(124);
|
21512
|
+
var ReactTransitionChildMapping = __webpack_require__(178);
|
21139
21513
|
|
21140
21514
|
var emptyFunction = __webpack_require__(12);
|
21141
21515
|
|
@@ -21367,7 +21741,7 @@
|
|
21367
21741
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
21368
21742
|
|
21369
21743
|
/***/ },
|
21370
|
-
/*
|
21744
|
+
/* 178 */
|
21371
21745
|
/***/ function(module, exports, __webpack_require__) {
|
21372
21746
|
|
21373
21747
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -21383,7 +21757,7 @@
|
|
21383
21757
|
|
21384
21758
|
'use strict';
|
21385
21759
|
|
21386
|
-
var flattenChildren = __webpack_require__(
|
21760
|
+
var flattenChildren = __webpack_require__(133);
|
21387
21761
|
|
21388
21762
|
var ReactTransitionChildMapping = {
|
21389
21763
|
/**
|
@@ -21476,13 +21850,13 @@
|
|
21476
21850
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
21477
21851
|
|
21478
21852
|
/***/ },
|
21479
|
-
/*
|
21853
|
+
/* 179 */
|
21480
21854
|
/***/ function(module, exports, __webpack_require__) {
|
21481
21855
|
|
21482
|
-
module.exports = __webpack_require__(
|
21856
|
+
module.exports = __webpack_require__(180);
|
21483
21857
|
|
21484
21858
|
/***/ },
|
21485
|
-
/*
|
21859
|
+
/* 180 */
|
21486
21860
|
/***/ function(module, exports, __webpack_require__) {
|
21487
21861
|
|
21488
21862
|
/**
|
@@ -21502,8 +21876,8 @@
|
|
21502
21876
|
|
21503
21877
|
var React = __webpack_require__(2);
|
21504
21878
|
|
21505
|
-
var ReactTransitionGroup = __webpack_require__(
|
21506
|
-
var ReactCSSTransitionGroupChild = __webpack_require__(
|
21879
|
+
var ReactTransitionGroup = __webpack_require__(177);
|
21880
|
+
var ReactCSSTransitionGroupChild = __webpack_require__(181);
|
21507
21881
|
|
21508
21882
|
function createTransitionTimeoutPropValidator(transitionType) {
|
21509
21883
|
var timeoutPropName = 'transition' + transitionType + 'Timeout';
|
@@ -21574,7 +21948,7 @@
|
|
21574
21948
|
module.exports = ReactCSSTransitionGroup;
|
21575
21949
|
|
21576
21950
|
/***/ },
|
21577
|
-
/*
|
21951
|
+
/* 181 */
|
21578
21952
|
/***/ function(module, exports, __webpack_require__) {
|
21579
21953
|
|
21580
21954
|
/**
|
@@ -21591,12 +21965,12 @@
|
|
21591
21965
|
'use strict';
|
21592
21966
|
|
21593
21967
|
var React = __webpack_require__(2);
|
21594
|
-
var ReactDOM = __webpack_require__(
|
21968
|
+
var ReactDOM = __webpack_require__(36);
|
21595
21969
|
|
21596
|
-
var CSSCore = __webpack_require__(
|
21597
|
-
var ReactTransitionEvents = __webpack_require__(
|
21970
|
+
var CSSCore = __webpack_require__(182);
|
21971
|
+
var ReactTransitionEvents = __webpack_require__(183);
|
21598
21972
|
|
21599
|
-
var onlyChild = __webpack_require__(
|
21973
|
+
var onlyChild = __webpack_require__(34);
|
21600
21974
|
|
21601
21975
|
var TICK = 17;
|
21602
21976
|
|
@@ -21746,7 +22120,7 @@
|
|
21746
22120
|
module.exports = ReactCSSTransitionGroupChild;
|
21747
22121
|
|
21748
22122
|
/***/ },
|
21749
|
-
/*
|
22123
|
+
/* 182 */
|
21750
22124
|
/***/ function(module, exports, __webpack_require__) {
|
21751
22125
|
|
21752
22126
|
/* WEBPACK VAR INJECTION */(function(process) {'use strict';
|
@@ -21873,7 +22247,7 @@
|
|
21873
22247
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
21874
22248
|
|
21875
22249
|
/***/ },
|
21876
|
-
/*
|
22250
|
+
/* 183 */
|
21877
22251
|
/***/ function(module, exports, __webpack_require__) {
|
21878
22252
|
|
21879
22253
|
/**
|
@@ -21889,9 +22263,9 @@
|
|
21889
22263
|
|
21890
22264
|
'use strict';
|
21891
22265
|
|
21892
|
-
var ExecutionEnvironment = __webpack_require__(
|
22266
|
+
var ExecutionEnvironment = __webpack_require__(50);
|
21893
22267
|
|
21894
|
-
var getVendorPrefixedEventName = __webpack_require__(
|
22268
|
+
var getVendorPrefixedEventName = __webpack_require__(114);
|
21895
22269
|
|
21896
22270
|
var endEvents = [];
|
21897
22271
|
|
@@ -21951,13 +22325,13 @@
|
|
21951
22325
|
module.exports = ReactTransitionEvents;
|
21952
22326
|
|
21953
22327
|
/***/ },
|
21954
|
-
/*
|
22328
|
+
/* 184 */
|
21955
22329
|
/***/ function(module, exports, __webpack_require__) {
|
21956
22330
|
|
21957
|
-
module.exports = __webpack_require__(
|
22331
|
+
module.exports = __webpack_require__(185);
|
21958
22332
|
|
21959
22333
|
/***/ },
|
21960
|
-
/*
|
22334
|
+
/* 185 */
|
21961
22335
|
/***/ function(module, exports, __webpack_require__) {
|
21962
22336
|
|
21963
22337
|
/**
|
@@ -21973,8 +22347,8 @@
|
|
21973
22347
|
|
21974
22348
|
'use strict';
|
21975
22349
|
|
21976
|
-
var ReactLink = __webpack_require__(
|
21977
|
-
var ReactStateSetters = __webpack_require__(
|
22350
|
+
var ReactLink = __webpack_require__(186);
|
22351
|
+
var ReactStateSetters = __webpack_require__(187);
|
21978
22352
|
|
21979
22353
|
/**
|
21980
22354
|
* A simple mixin around ReactLink.forState().
|
@@ -21998,7 +22372,7 @@
|
|
21998
22372
|
module.exports = LinkedStateMixin;
|
21999
22373
|
|
22000
22374
|
/***/ },
|
22001
|
-
/*
|
22375
|
+
/* 186 */
|
22002
22376
|
/***/ function(module, exports, __webpack_require__) {
|
22003
22377
|
|
22004
22378
|
/**
|
@@ -22074,7 +22448,7 @@
|
|
22074
22448
|
module.exports = ReactLink;
|
22075
22449
|
|
22076
22450
|
/***/ },
|
22077
|
-
/*
|
22451
|
+
/* 187 */
|
22078
22452
|
/***/ function(module, exports) {
|
22079
22453
|
|
22080
22454
|
/**
|
@@ -22183,13 +22557,13 @@
|
|
22183
22557
|
module.exports = ReactStateSetters;
|
22184
22558
|
|
22185
22559
|
/***/ },
|
22186
|
-
/*
|
22560
|
+
/* 188 */
|
22187
22561
|
/***/ function(module, exports, __webpack_require__) {
|
22188
22562
|
|
22189
|
-
module.exports = __webpack_require__(
|
22563
|
+
module.exports = __webpack_require__(189).create;
|
22190
22564
|
|
22191
22565
|
/***/ },
|
22192
|
-
/*
|
22566
|
+
/* 189 */
|
22193
22567
|
/***/ function(module, exports, __webpack_require__) {
|
22194
22568
|
|
22195
22569
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -22264,13 +22638,13 @@
|
|
22264
22638
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
22265
22639
|
|
22266
22640
|
/***/ },
|
22267
|
-
/*
|
22641
|
+
/* 190 */
|
22268
22642
|
/***/ function(module, exports, __webpack_require__) {
|
22269
22643
|
|
22270
|
-
module.exports = __webpack_require__(
|
22644
|
+
module.exports = __webpack_require__(191);
|
22271
22645
|
|
22272
22646
|
/***/ },
|
22273
|
-
/*
|
22647
|
+
/* 191 */
|
22274
22648
|
/***/ function(module, exports, __webpack_require__) {
|
22275
22649
|
|
22276
22650
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -22291,7 +22665,7 @@
|
|
22291
22665
|
var _prodInvariant = __webpack_require__(7),
|
22292
22666
|
_assign = __webpack_require__(4);
|
22293
22667
|
|
22294
|
-
var keyOf = __webpack_require__(
|
22668
|
+
var keyOf = __webpack_require__(25);
|
22295
22669
|
var invariant = __webpack_require__(8);
|
22296
22670
|
var hasOwnProperty = {}.hasOwnProperty;
|
22297
22671
|
|
@@ -22389,13 +22763,13 @@
|
|
22389
22763
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
22390
22764
|
|
22391
22765
|
/***/ },
|
22392
|
-
/*
|
22766
|
+
/* 192 */
|
22393
22767
|
/***/ function(module, exports, __webpack_require__) {
|
22394
22768
|
|
22395
|
-
module.exports = __webpack_require__(
|
22769
|
+
module.exports = __webpack_require__(193);
|
22396
22770
|
|
22397
22771
|
/***/ },
|
22398
|
-
/*
|
22772
|
+
/* 193 */
|
22399
22773
|
/***/ function(module, exports, __webpack_require__) {
|
22400
22774
|
|
22401
22775
|
/**
|
@@ -22411,7 +22785,7 @@
|
|
22411
22785
|
|
22412
22786
|
'use strict';
|
22413
22787
|
|
22414
|
-
var shallowCompare = __webpack_require__(
|
22788
|
+
var shallowCompare = __webpack_require__(194);
|
22415
22789
|
|
22416
22790
|
/**
|
22417
22791
|
* If your React component's render function is "pure", e.g. it will render the
|
@@ -22448,7 +22822,7 @@
|
|
22448
22822
|
module.exports = ReactComponentWithPureRenderMixin;
|
22449
22823
|
|
22450
22824
|
/***/ },
|
22451
|
-
/*
|
22825
|
+
/* 194 */
|
22452
22826
|
/***/ function(module, exports, __webpack_require__) {
|
22453
22827
|
|
22454
22828
|
/**
|
@@ -22464,7 +22838,7 @@
|
|
22464
22838
|
|
22465
22839
|
'use strict';
|
22466
22840
|
|
22467
|
-
var shallowEqual = __webpack_require__(
|
22841
|
+
var shallowEqual = __webpack_require__(129);
|
22468
22842
|
|
22469
22843
|
/**
|
22470
22844
|
* Does a shallow comparison for props and state.
|
@@ -22478,13 +22852,13 @@
|
|
22478
22852
|
module.exports = shallowCompare;
|
22479
22853
|
|
22480
22854
|
/***/ },
|
22481
|
-
/*
|
22855
|
+
/* 195 */
|
22482
22856
|
/***/ function(module, exports, __webpack_require__) {
|
22483
22857
|
|
22484
|
-
module.exports = __webpack_require__(
|
22858
|
+
module.exports = __webpack_require__(196);
|
22485
22859
|
|
22486
22860
|
/***/ },
|
22487
|
-
/*
|
22861
|
+
/* 196 */
|
22488
22862
|
/***/ function(module, exports, __webpack_require__) {
|
22489
22863
|
|
22490
22864
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -22503,25 +22877,25 @@
|
|
22503
22877
|
var _prodInvariant = __webpack_require__(7),
|
22504
22878
|
_assign = __webpack_require__(4);
|
22505
22879
|
|
22506
|
-
var EventConstants = __webpack_require__(
|
22507
|
-
var EventPluginHub = __webpack_require__(
|
22508
|
-
var EventPluginRegistry = __webpack_require__(
|
22509
|
-
var EventPropagators = __webpack_require__(
|
22880
|
+
var EventConstants = __webpack_require__(42);
|
22881
|
+
var EventPluginHub = __webpack_require__(44);
|
22882
|
+
var EventPluginRegistry = __webpack_require__(45);
|
22883
|
+
var EventPropagators = __webpack_require__(43);
|
22510
22884
|
var React = __webpack_require__(2);
|
22511
|
-
var ReactDefaultInjection = __webpack_require__(
|
22512
|
-
var ReactDOM = __webpack_require__(
|
22513
|
-
var ReactDOMComponentTree = __webpack_require__(
|
22885
|
+
var ReactDefaultInjection = __webpack_require__(40);
|
22886
|
+
var ReactDOM = __webpack_require__(36);
|
22887
|
+
var ReactDOMComponentTree = __webpack_require__(37);
|
22514
22888
|
var ReactElement = __webpack_require__(9);
|
22515
|
-
var ReactBrowserEventEmitter = __webpack_require__(
|
22516
|
-
var ReactCompositeComponent = __webpack_require__(
|
22517
|
-
var ReactInstanceMap = __webpack_require__(
|
22518
|
-
var ReactInstrumentation = __webpack_require__(
|
22519
|
-
var ReactReconciler = __webpack_require__(
|
22520
|
-
var ReactUpdates = __webpack_require__(
|
22521
|
-
var SyntheticEvent = __webpack_require__(
|
22889
|
+
var ReactBrowserEventEmitter = __webpack_require__(112);
|
22890
|
+
var ReactCompositeComponent = __webpack_require__(127);
|
22891
|
+
var ReactInstanceMap = __webpack_require__(124);
|
22892
|
+
var ReactInstrumentation = __webpack_require__(63);
|
22893
|
+
var ReactReconciler = __webpack_require__(60);
|
22894
|
+
var ReactUpdates = __webpack_require__(57);
|
22895
|
+
var SyntheticEvent = __webpack_require__(54);
|
22522
22896
|
|
22523
22897
|
var emptyObject = __webpack_require__(19);
|
22524
|
-
var findDOMNode = __webpack_require__(
|
22898
|
+
var findDOMNode = __webpack_require__(172);
|
22525
22899
|
var invariant = __webpack_require__(8);
|
22526
22900
|
|
22527
22901
|
var topLevelTypes = EventConstants.topLevelTypes;
|
@@ -22833,9 +23207,11 @@
|
|
22833
23207
|
|
22834
23208
|
var ShallowComponentWrapper = function (element) {
|
22835
23209
|
// TODO: Consolidate with instantiateReactComponent
|
22836
|
-
|
22837
|
-
|
22838
|
-
|
23210
|
+
if (process.env.NODE_ENV !== 'production') {
|
23211
|
+
this._debugID = nextDebugID++;
|
23212
|
+
var displayName = element.type.displayName || element.type.name || 'Unknown';
|
23213
|
+
ReactInstrumentation.debugTool.onSetDisplayName(this._debugID, displayName);
|
23214
|
+
}
|
22839
23215
|
|
22840
23216
|
this.construct(element);
|
22841
23217
|
};
|
@@ -22913,6 +23289,8 @@
|
|
22913
23289
|
|
22914
23290
|
var fakeNativeEvent = new Event();
|
22915
23291
|
fakeNativeEvent.target = node;
|
23292
|
+
fakeNativeEvent.type = eventType.toLowerCase();
|
23293
|
+
|
22916
23294
|
// We don't use SyntheticEvent.getPooled in order to not have to worry about
|
22917
23295
|
// properly destroying any properties assigned from `eventData` upon release
|
22918
23296
|
var event = new SyntheticEvent(dispatchConfig, ReactDOMComponentTree.getInstanceFromNode(node), fakeNativeEvent, node);
|
@@ -23004,13 +23382,13 @@
|
|
23004
23382
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
23005
23383
|
|
23006
23384
|
/***/ },
|
23007
|
-
/*
|
23385
|
+
/* 197 */
|
23008
23386
|
/***/ function(module, exports, __webpack_require__) {
|
23009
23387
|
|
23010
|
-
module.exports = __webpack_require__(
|
23388
|
+
module.exports = __webpack_require__(198);
|
23011
23389
|
|
23012
23390
|
/***/ },
|
23013
|
-
/*
|
23391
|
+
/* 198 */
|
23014
23392
|
/***/ function(module, exports, __webpack_require__) {
|
23015
23393
|
|
23016
23394
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -23030,7 +23408,7 @@
|
|
23030
23408
|
|
23031
23409
|
var _extends = _assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
23032
23410
|
|
23033
|
-
var ReactDebugTool = __webpack_require__(
|
23411
|
+
var ReactDebugTool = __webpack_require__(64);
|
23034
23412
|
var warning = __webpack_require__(11);
|
23035
23413
|
var alreadyWarned = false;
|
23036
23414
|
|
@@ -23510,16 +23888,16 @@
|
|
23510
23888
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
23511
23889
|
|
23512
23890
|
/***/ },
|
23513
|
-
/*
|
23891
|
+
/* 199 */
|
23514
23892
|
/***/ function(module, exports, __webpack_require__) {
|
23515
23893
|
|
23516
23894
|
'use strict';
|
23517
23895
|
|
23518
|
-
module.exports = __webpack_require__(
|
23896
|
+
module.exports = __webpack_require__(200);
|
23519
23897
|
|
23520
23898
|
|
23521
23899
|
/***/ },
|
23522
|
-
/*
|
23900
|
+
/* 200 */
|
23523
23901
|
/***/ function(module, exports, __webpack_require__) {
|
23524
23902
|
|
23525
23903
|
/**
|
@@ -23535,9 +23913,9 @@
|
|
23535
23913
|
|
23536
23914
|
'use strict';
|
23537
23915
|
|
23538
|
-
var ReactDefaultInjection = __webpack_require__(
|
23539
|
-
var ReactServerRendering = __webpack_require__(
|
23540
|
-
var ReactVersion = __webpack_require__(
|
23916
|
+
var ReactDefaultInjection = __webpack_require__(40);
|
23917
|
+
var ReactServerRendering = __webpack_require__(201);
|
23918
|
+
var ReactVersion = __webpack_require__(33);
|
23541
23919
|
|
23542
23920
|
ReactDefaultInjection.inject();
|
23543
23921
|
|
@@ -23550,7 +23928,7 @@
|
|
23550
23928
|
module.exports = ReactDOMServer;
|
23551
23929
|
|
23552
23930
|
/***/ },
|
23553
|
-
/*
|
23931
|
+
/* 201 */
|
23554
23932
|
/***/ function(module, exports, __webpack_require__) {
|
23555
23933
|
|
23556
23934
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -23567,20 +23945,22 @@
|
|
23567
23945
|
|
23568
23946
|
var _prodInvariant = __webpack_require__(7);
|
23569
23947
|
|
23570
|
-
var ReactDOMContainerInfo = __webpack_require__(
|
23571
|
-
var ReactDefaultBatchingStrategy = __webpack_require__(
|
23948
|
+
var ReactDOMContainerInfo = __webpack_require__(168);
|
23949
|
+
var ReactDefaultBatchingStrategy = __webpack_require__(141);
|
23572
23950
|
var ReactElement = __webpack_require__(9);
|
23573
|
-
var ReactInstrumentation = __webpack_require__(
|
23574
|
-
var ReactMarkupChecksum = __webpack_require__(
|
23575
|
-
var ReactReconciler = __webpack_require__(
|
23576
|
-
var ReactServerBatchingStrategy = __webpack_require__(
|
23577
|
-
var ReactServerRenderingTransaction = __webpack_require__(
|
23578
|
-
var ReactUpdates = __webpack_require__(
|
23951
|
+
var ReactInstrumentation = __webpack_require__(63);
|
23952
|
+
var ReactMarkupChecksum = __webpack_require__(170);
|
23953
|
+
var ReactReconciler = __webpack_require__(60);
|
23954
|
+
var ReactServerBatchingStrategy = __webpack_require__(202);
|
23955
|
+
var ReactServerRenderingTransaction = __webpack_require__(134);
|
23956
|
+
var ReactUpdates = __webpack_require__(57);
|
23579
23957
|
|
23580
23958
|
var emptyObject = __webpack_require__(19);
|
23581
|
-
var instantiateReactComponent = __webpack_require__(
|
23959
|
+
var instantiateReactComponent = __webpack_require__(126);
|
23582
23960
|
var invariant = __webpack_require__(8);
|
23583
23961
|
|
23962
|
+
var pendingTransactions = 0;
|
23963
|
+
|
23584
23964
|
/**
|
23585
23965
|
* @param {ReactElement} element
|
23586
23966
|
* @return {string} the HTML markup
|
@@ -23592,6 +23972,8 @@
|
|
23592
23972
|
|
23593
23973
|
transaction = ReactServerRenderingTransaction.getPooled(makeStaticMarkup);
|
23594
23974
|
|
23975
|
+
pendingTransactions++;
|
23976
|
+
|
23595
23977
|
return transaction.perform(function () {
|
23596
23978
|
var componentInstance = instantiateReactComponent(element, true);
|
23597
23979
|
var markup = ReactReconciler.mountComponent(componentInstance, transaction, null, ReactDOMContainerInfo(), emptyObject);
|
@@ -23604,10 +23986,13 @@
|
|
23604
23986
|
return markup;
|
23605
23987
|
}, null);
|
23606
23988
|
} finally {
|
23989
|
+
pendingTransactions--;
|
23607
23990
|
ReactServerRenderingTransaction.release(transaction);
|
23608
23991
|
// Revert to the DOM batching strategy since these two renderers
|
23609
23992
|
// currently share these stateful modules.
|
23610
|
-
|
23993
|
+
if (!pendingTransactions) {
|
23994
|
+
ReactUpdates.injection.injectBatchingStrategy(ReactDefaultBatchingStrategy);
|
23995
|
+
}
|
23611
23996
|
}
|
23612
23997
|
}
|
23613
23998
|
|
@@ -23638,7 +24023,7 @@
|
|
23638
24023
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
23639
24024
|
|
23640
24025
|
/***/ },
|
23641
|
-
/*
|
24026
|
+
/* 202 */
|
23642
24027
|
/***/ function(module, exports) {
|
23643
24028
|
|
23644
24029
|
/**
|