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