react-rails 1.7.0 → 1.7.1
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 +11 -4
- data/README.md +11 -24
- data/lib/assets/react-source/development-with-addons/react-server.js +824 -688
- data/lib/assets/react-source/development-with-addons/react.js +805 -669
- data/lib/assets/react-source/development/react-addons-create-fragment.js +113 -37
- data/lib/assets/react-source/development/react-addons-css-transition-group.js +744 -611
- data/lib/assets/react-source/development/react-addons-linked-state-mixin.js +168 -91
- data/lib/assets/react-source/development/react-addons-perf.js +249 -192
- data/lib/assets/react-source/development/react-addons-pure-render-mixin.js +8 -8
- data/lib/assets/react-source/development/react-addons-test-utils.js +754 -618
- data/lib/assets/react-source/development/react-addons-transition-group.js +170 -92
- data/lib/assets/react-source/development/react-addons-update.js +52 -8
- data/lib/assets/react-source/development/react-server.js +754 -621
- data/lib/assets/react-source/development/react.js +734 -601
- 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-addons-create-fragment.js +1 -1
- data/lib/assets/react-source/production/react-addons-css-transition-group.js +6 -6
- data/lib/assets/react-source/production/react-addons-linked-state-mixin.js +1 -1
- data/lib/assets/react-source/production/react-addons-perf.js +2 -2
- data/lib/assets/react-source/production/react-addons-pure-render-mixin.js +1 -1
- data/lib/assets/react-source/production/react-addons-test-utils.js +6 -6
- data/lib/assets/react-source/production/react-addons-transition-group.js +1 -1
- data/lib/assets/react-source/production/react-addons-update.js +1 -1
- 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 +8 -2
- data/lib/react/rails/version.rb +1 -1
- metadata +2 -2
@@ -45,7 +45,7 @@
|
|
45
45
|
/***/ function(module, exports, __webpack_require__) {
|
46
46
|
|
47
47
|
window.React.addons = window.React.addons || {};
|
48
|
-
window.React.addons.Perf = __webpack_require__(
|
48
|
+
window.React.addons.Perf = __webpack_require__(179);
|
49
49
|
|
50
50
|
|
51
51
|
/***/ },
|
@@ -625,8 +625,8 @@
|
|
625
625
|
/* 8 */
|
626
626
|
/***/ function(module, exports) {
|
627
627
|
|
628
|
-
/* eslint-disable no-unused-vars */
|
629
628
|
'use strict';
|
629
|
+
/* eslint-disable no-unused-vars */
|
630
630
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
631
631
|
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
632
632
|
|
@@ -638,7 +638,51 @@
|
|
638
638
|
return Object(val);
|
639
639
|
}
|
640
640
|
|
641
|
-
|
641
|
+
function shouldUseNative() {
|
642
|
+
try {
|
643
|
+
if (!Object.assign) {
|
644
|
+
return false;
|
645
|
+
}
|
646
|
+
|
647
|
+
// Detect buggy property enumeration order in older V8 versions.
|
648
|
+
|
649
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=4118
|
650
|
+
var test1 = new String('abc'); // eslint-disable-line
|
651
|
+
test1[5] = 'de';
|
652
|
+
if (Object.getOwnPropertyNames(test1)[0] === '5') {
|
653
|
+
return false;
|
654
|
+
}
|
655
|
+
|
656
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
657
|
+
var test2 = {};
|
658
|
+
for (var i = 0; i < 10; i++) {
|
659
|
+
test2['_' + String.fromCharCode(i)] = i;
|
660
|
+
}
|
661
|
+
var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
|
662
|
+
return test2[n];
|
663
|
+
});
|
664
|
+
if (order2.join('') !== '0123456789') {
|
665
|
+
return false;
|
666
|
+
}
|
667
|
+
|
668
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
669
|
+
var test3 = {};
|
670
|
+
'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
|
671
|
+
test3[letter] = letter;
|
672
|
+
});
|
673
|
+
if (Object.keys(Object.assign({}, test3)).join('') !==
|
674
|
+
'abcdefghijklmnopqrst') {
|
675
|
+
return false;
|
676
|
+
}
|
677
|
+
|
678
|
+
return true;
|
679
|
+
} catch (e) {
|
680
|
+
// We don't expect any of the above to throw, but better to be safe.
|
681
|
+
return false;
|
682
|
+
}
|
683
|
+
}
|
684
|
+
|
685
|
+
module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
642
686
|
var from;
|
643
687
|
var to = toObject(target);
|
644
688
|
var symbols;
|
@@ -844,7 +888,8 @@
|
|
844
888
|
/* 17 */,
|
845
889
|
/* 18 */,
|
846
890
|
/* 19 */,
|
847
|
-
/* 20
|
891
|
+
/* 20 */,
|
892
|
+
/* 21 */
|
848
893
|
/***/ function(module, exports, __webpack_require__) {
|
849
894
|
|
850
895
|
/**
|
@@ -860,12 +905,12 @@
|
|
860
905
|
|
861
906
|
'use strict';
|
862
907
|
|
863
|
-
var ReactDebugTool = __webpack_require__(
|
908
|
+
var ReactDebugTool = __webpack_require__(22);
|
864
909
|
|
865
910
|
module.exports = { debugTool: ReactDebugTool };
|
866
911
|
|
867
912
|
/***/ },
|
868
|
-
/*
|
913
|
+
/* 22 */
|
869
914
|
/***/ function(module, exports, __webpack_require__) {
|
870
915
|
|
871
916
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -881,7 +926,7 @@
|
|
881
926
|
|
882
927
|
'use strict';
|
883
928
|
|
884
|
-
var ReactInvalidSetStateWarningDevTool = __webpack_require__(
|
929
|
+
var ReactInvalidSetStateWarningDevTool = __webpack_require__(23);
|
885
930
|
var warning = __webpack_require__(10);
|
886
931
|
|
887
932
|
var eventHandlers = [];
|
@@ -943,7 +988,7 @@
|
|
943
988
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
944
989
|
|
945
990
|
/***/ },
|
946
|
-
/*
|
991
|
+
/* 23 */
|
947
992
|
/***/ function(module, exports, __webpack_require__) {
|
948
993
|
|
949
994
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -985,7 +1030,7 @@
|
|
985
1030
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
986
1031
|
|
987
1032
|
/***/ },
|
988
|
-
/*
|
1033
|
+
/* 24 */
|
989
1034
|
/***/ function(module, exports, __webpack_require__) {
|
990
1035
|
|
991
1036
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1010,8 +1055,8 @@
|
|
1010
1055
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
1011
1056
|
|
1012
1057
|
/***/ },
|
1013
|
-
/*
|
1014
|
-
/*
|
1058
|
+
/* 25 */,
|
1059
|
+
/* 26 */
|
1015
1060
|
/***/ function(module, exports, __webpack_require__) {
|
1016
1061
|
|
1017
1062
|
/**
|
@@ -1027,7 +1072,7 @@
|
|
1027
1072
|
|
1028
1073
|
'use strict';
|
1029
1074
|
|
1030
|
-
var keyMirror = __webpack_require__(
|
1075
|
+
var keyMirror = __webpack_require__(27);
|
1031
1076
|
|
1032
1077
|
var ReactPropTypeLocations = keyMirror({
|
1033
1078
|
prop: null,
|
@@ -1038,7 +1083,7 @@
|
|
1038
1083
|
module.exports = ReactPropTypeLocations;
|
1039
1084
|
|
1040
1085
|
/***/ },
|
1041
|
-
/*
|
1086
|
+
/* 27 */
|
1042
1087
|
/***/ function(module, exports, __webpack_require__) {
|
1043
1088
|
|
1044
1089
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1091,7 +1136,7 @@
|
|
1091
1136
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
1092
1137
|
|
1093
1138
|
/***/ },
|
1094
|
-
/*
|
1139
|
+
/* 28 */
|
1095
1140
|
/***/ function(module, exports, __webpack_require__) {
|
1096
1141
|
|
1097
1142
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1121,7 +1166,6 @@
|
|
1121
1166
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
1122
1167
|
|
1123
1168
|
/***/ },
|
1124
|
-
/* 28 */,
|
1125
1169
|
/* 29 */,
|
1126
1170
|
/* 30 */,
|
1127
1171
|
/* 31 */,
|
@@ -1133,7 +1177,8 @@
|
|
1133
1177
|
/* 37 */,
|
1134
1178
|
/* 38 */,
|
1135
1179
|
/* 39 */,
|
1136
|
-
/* 40
|
1180
|
+
/* 40 */,
|
1181
|
+
/* 41 */
|
1137
1182
|
/***/ function(module, exports, __webpack_require__) {
|
1138
1183
|
|
1139
1184
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1149,8 +1194,8 @@
|
|
1149
1194
|
|
1150
1195
|
'use strict';
|
1151
1196
|
|
1152
|
-
var DOMProperty = __webpack_require__(
|
1153
|
-
var ReactDOMComponentFlags = __webpack_require__(
|
1197
|
+
var DOMProperty = __webpack_require__(42);
|
1198
|
+
var ReactDOMComponentFlags = __webpack_require__(43);
|
1154
1199
|
|
1155
1200
|
var invariant = __webpack_require__(6);
|
1156
1201
|
|
@@ -1325,7 +1370,7 @@
|
|
1325
1370
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
1326
1371
|
|
1327
1372
|
/***/ },
|
1328
|
-
/*
|
1373
|
+
/* 42 */
|
1329
1374
|
/***/ function(module, exports, __webpack_require__) {
|
1330
1375
|
|
1331
1376
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1544,7 +1589,7 @@
|
|
1544
1589
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
1545
1590
|
|
1546
1591
|
/***/ },
|
1547
|
-
/*
|
1592
|
+
/* 43 */
|
1548
1593
|
/***/ function(module, exports) {
|
1549
1594
|
|
1550
1595
|
/**
|
@@ -1567,9 +1612,9 @@
|
|
1567
1612
|
module.exports = ReactDOMComponentFlags;
|
1568
1613
|
|
1569
1614
|
/***/ },
|
1570
|
-
/* 43 */,
|
1571
1615
|
/* 44 */,
|
1572
|
-
/* 45
|
1616
|
+
/* 45 */,
|
1617
|
+
/* 46 */
|
1573
1618
|
/***/ function(module, exports, __webpack_require__) {
|
1574
1619
|
|
1575
1620
|
/**
|
@@ -1585,7 +1630,7 @@
|
|
1585
1630
|
|
1586
1631
|
'use strict';
|
1587
1632
|
|
1588
|
-
var keyMirror = __webpack_require__(
|
1633
|
+
var keyMirror = __webpack_require__(27);
|
1589
1634
|
|
1590
1635
|
var PropagationPhases = keyMirror({ bubbled: null, captured: null });
|
1591
1636
|
|
@@ -1671,8 +1716,8 @@
|
|
1671
1716
|
module.exports = EventConstants;
|
1672
1717
|
|
1673
1718
|
/***/ },
|
1674
|
-
/*
|
1675
|
-
/*
|
1719
|
+
/* 47 */,
|
1720
|
+
/* 48 */
|
1676
1721
|
/***/ function(module, exports, __webpack_require__) {
|
1677
1722
|
|
1678
1723
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1688,12 +1733,12 @@
|
|
1688
1733
|
|
1689
1734
|
'use strict';
|
1690
1735
|
|
1691
|
-
var EventPluginRegistry = __webpack_require__(
|
1692
|
-
var EventPluginUtils = __webpack_require__(
|
1693
|
-
var ReactErrorUtils = __webpack_require__(
|
1736
|
+
var EventPluginRegistry = __webpack_require__(49);
|
1737
|
+
var EventPluginUtils = __webpack_require__(50);
|
1738
|
+
var ReactErrorUtils = __webpack_require__(51);
|
1694
1739
|
|
1695
|
-
var accumulateInto = __webpack_require__(
|
1696
|
-
var forEachAccumulated = __webpack_require__(
|
1740
|
+
var accumulateInto = __webpack_require__(52);
|
1741
|
+
var forEachAccumulated = __webpack_require__(53);
|
1697
1742
|
var invariant = __webpack_require__(6);
|
1698
1743
|
|
1699
1744
|
/**
|
@@ -1913,7 +1958,7 @@
|
|
1913
1958
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
1914
1959
|
|
1915
1960
|
/***/ },
|
1916
|
-
/*
|
1961
|
+
/* 49 */
|
1917
1962
|
/***/ function(module, exports, __webpack_require__) {
|
1918
1963
|
|
1919
1964
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2160,7 +2205,7 @@
|
|
2160
2205
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
2161
2206
|
|
2162
2207
|
/***/ },
|
2163
|
-
/*
|
2208
|
+
/* 50 */
|
2164
2209
|
/***/ function(module, exports, __webpack_require__) {
|
2165
2210
|
|
2166
2211
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2176,8 +2221,8 @@
|
|
2176
2221
|
|
2177
2222
|
'use strict';
|
2178
2223
|
|
2179
|
-
var EventConstants = __webpack_require__(
|
2180
|
-
var ReactErrorUtils = __webpack_require__(
|
2224
|
+
var EventConstants = __webpack_require__(46);
|
2225
|
+
var ReactErrorUtils = __webpack_require__(51);
|
2181
2226
|
|
2182
2227
|
var invariant = __webpack_require__(6);
|
2183
2228
|
var warning = __webpack_require__(10);
|
@@ -2335,7 +2380,7 @@
|
|
2335
2380
|
var dispatchListener = event._dispatchListeners;
|
2336
2381
|
var dispatchInstance = event._dispatchInstances;
|
2337
2382
|
!!Array.isArray(dispatchListener) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'executeDirectDispatch(...): Invalid `event`.') : invariant(false) : void 0;
|
2338
|
-
event.currentTarget = EventPluginUtils.getNodeFromInstance(dispatchInstance);
|
2383
|
+
event.currentTarget = dispatchListener ? EventPluginUtils.getNodeFromInstance(dispatchInstance) : null;
|
2339
2384
|
var res = dispatchListener ? dispatchListener(event) : null;
|
2340
2385
|
event.currentTarget = null;
|
2341
2386
|
event._dispatchListeners = null;
|
@@ -2393,7 +2438,7 @@
|
|
2393
2438
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
2394
2439
|
|
2395
2440
|
/***/ },
|
2396
|
-
/*
|
2441
|
+
/* 51 */
|
2397
2442
|
/***/ function(module, exports, __webpack_require__) {
|
2398
2443
|
|
2399
2444
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2475,7 +2520,7 @@
|
|
2475
2520
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
2476
2521
|
|
2477
2522
|
/***/ },
|
2478
|
-
/*
|
2523
|
+
/* 52 */
|
2479
2524
|
/***/ function(module, exports, __webpack_require__) {
|
2480
2525
|
|
2481
2526
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2540,7 +2585,7 @@
|
|
2540
2585
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
2541
2586
|
|
2542
2587
|
/***/ },
|
2543
|
-
/*
|
2588
|
+
/* 53 */
|
2544
2589
|
/***/ function(module, exports) {
|
2545
2590
|
|
2546
2591
|
/**
|
@@ -2575,7 +2620,7 @@
|
|
2575
2620
|
module.exports = forEachAccumulated;
|
2576
2621
|
|
2577
2622
|
/***/ },
|
2578
|
-
/*
|
2623
|
+
/* 54 */
|
2579
2624
|
/***/ function(module, exports) {
|
2580
2625
|
|
2581
2626
|
/**
|
@@ -2615,13 +2660,13 @@
|
|
2615
2660
|
module.exports = ExecutionEnvironment;
|
2616
2661
|
|
2617
2662
|
/***/ },
|
2618
|
-
/* 54 */,
|
2619
2663
|
/* 55 */,
|
2620
2664
|
/* 56 */,
|
2621
2665
|
/* 57 */,
|
2622
2666
|
/* 58 */,
|
2623
2667
|
/* 59 */,
|
2624
|
-
/* 60
|
2668
|
+
/* 60 */,
|
2669
|
+
/* 61 */
|
2625
2670
|
/***/ function(module, exports, __webpack_require__) {
|
2626
2671
|
|
2627
2672
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2639,12 +2684,12 @@
|
|
2639
2684
|
|
2640
2685
|
var _assign = __webpack_require__(8);
|
2641
2686
|
|
2642
|
-
var CallbackQueue = __webpack_require__(
|
2687
|
+
var CallbackQueue = __webpack_require__(62);
|
2643
2688
|
var PooledClass = __webpack_require__(5);
|
2644
|
-
var ReactFeatureFlags = __webpack_require__(
|
2645
|
-
var ReactPerf = __webpack_require__(
|
2646
|
-
var ReactReconciler = __webpack_require__(
|
2647
|
-
var Transaction = __webpack_require__(
|
2689
|
+
var ReactFeatureFlags = __webpack_require__(63);
|
2690
|
+
var ReactPerf = __webpack_require__(64);
|
2691
|
+
var ReactReconciler = __webpack_require__(65);
|
2692
|
+
var Transaction = __webpack_require__(68);
|
2648
2693
|
|
2649
2694
|
var invariant = __webpack_require__(6);
|
2650
2695
|
|
@@ -2868,7 +2913,7 @@
|
|
2868
2913
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
2869
2914
|
|
2870
2915
|
/***/ },
|
2871
|
-
/*
|
2916
|
+
/* 62 */
|
2872
2917
|
/***/ function(module, exports, __webpack_require__) {
|
2873
2918
|
|
2874
2919
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2979,7 +3024,7 @@
|
|
2979
3024
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
2980
3025
|
|
2981
3026
|
/***/ },
|
2982
|
-
/*
|
3027
|
+
/* 63 */
|
2983
3028
|
/***/ function(module, exports) {
|
2984
3029
|
|
2985
3030
|
/**
|
@@ -3005,7 +3050,7 @@
|
|
3005
3050
|
module.exports = ReactFeatureFlags;
|
3006
3051
|
|
3007
3052
|
/***/ },
|
3008
|
-
/*
|
3053
|
+
/* 64 */
|
3009
3054
|
/***/ function(module, exports, __webpack_require__) {
|
3010
3055
|
|
3011
3056
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -3107,7 +3152,7 @@
|
|
3107
3152
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
3108
3153
|
|
3109
3154
|
/***/ },
|
3110
|
-
/*
|
3155
|
+
/* 65 */
|
3111
3156
|
/***/ function(module, exports, __webpack_require__) {
|
3112
3157
|
|
3113
3158
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -3123,8 +3168,8 @@
|
|
3123
3168
|
|
3124
3169
|
'use strict';
|
3125
3170
|
|
3126
|
-
var ReactRef = __webpack_require__(
|
3127
|
-
var ReactInstrumentation = __webpack_require__(
|
3171
|
+
var ReactRef = __webpack_require__(66);
|
3172
|
+
var ReactInstrumentation = __webpack_require__(21);
|
3128
3173
|
|
3129
3174
|
/**
|
3130
3175
|
* Helper to call ReactRef.attachRefs with this composite component, split out
|
@@ -3243,7 +3288,7 @@
|
|
3243
3288
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
3244
3289
|
|
3245
3290
|
/***/ },
|
3246
|
-
/*
|
3291
|
+
/* 66 */
|
3247
3292
|
/***/ function(module, exports, __webpack_require__) {
|
3248
3293
|
|
3249
3294
|
/**
|
@@ -3259,7 +3304,7 @@
|
|
3259
3304
|
|
3260
3305
|
'use strict';
|
3261
3306
|
|
3262
|
-
var ReactOwner = __webpack_require__(
|
3307
|
+
var ReactOwner = __webpack_require__(67);
|
3263
3308
|
|
3264
3309
|
var ReactRef = {};
|
3265
3310
|
|
@@ -3326,7 +3371,7 @@
|
|
3326
3371
|
module.exports = ReactRef;
|
3327
3372
|
|
3328
3373
|
/***/ },
|
3329
|
-
/*
|
3374
|
+
/* 67 */
|
3330
3375
|
/***/ function(module, exports, __webpack_require__) {
|
3331
3376
|
|
3332
3377
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -3424,7 +3469,7 @@
|
|
3424
3469
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
3425
3470
|
|
3426
3471
|
/***/ },
|
3427
|
-
/*
|
3472
|
+
/* 68 */
|
3428
3473
|
/***/ function(module, exports, __webpack_require__) {
|
3429
3474
|
|
3430
3475
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -3661,8 +3706,8 @@
|
|
3661
3706
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
3662
3707
|
|
3663
3708
|
/***/ },
|
3664
|
-
/*
|
3665
|
-
/*
|
3709
|
+
/* 69 */,
|
3710
|
+
/* 70 */
|
3666
3711
|
/***/ function(module, exports, __webpack_require__) {
|
3667
3712
|
|
3668
3713
|
/**
|
@@ -3678,7 +3723,7 @@
|
|
3678
3723
|
|
3679
3724
|
'use strict';
|
3680
3725
|
|
3681
|
-
var ExecutionEnvironment = __webpack_require__(
|
3726
|
+
var ExecutionEnvironment = __webpack_require__(54);
|
3682
3727
|
|
3683
3728
|
var useHasFeature;
|
3684
3729
|
if (ExecutionEnvironment.canUseDOM) {
|
@@ -3727,12 +3772,12 @@
|
|
3727
3772
|
module.exports = isEventSupported;
|
3728
3773
|
|
3729
3774
|
/***/ },
|
3730
|
-
/* 70 */,
|
3731
3775
|
/* 71 */,
|
3732
3776
|
/* 72 */,
|
3733
3777
|
/* 73 */,
|
3734
3778
|
/* 74 */,
|
3735
|
-
/* 75
|
3779
|
+
/* 75 */,
|
3780
|
+
/* 76 */
|
3736
3781
|
/***/ function(module, exports) {
|
3737
3782
|
|
3738
3783
|
/**
|
@@ -3764,11 +3809,11 @@
|
|
3764
3809
|
module.exports = ViewportMetrics;
|
3765
3810
|
|
3766
3811
|
/***/ },
|
3767
|
-
/* 76 */,
|
3768
3812
|
/* 77 */,
|
3769
3813
|
/* 78 */,
|
3770
3814
|
/* 79 */,
|
3771
|
-
/* 80
|
3815
|
+
/* 80 */,
|
3816
|
+
/* 81 */
|
3772
3817
|
/***/ function(module, exports, __webpack_require__) {
|
3773
3818
|
|
3774
3819
|
/**
|
@@ -3784,8 +3829,8 @@
|
|
3784
3829
|
|
3785
3830
|
'use strict';
|
3786
3831
|
|
3787
|
-
var createMicrosoftUnsafeLocalFunction = __webpack_require__(
|
3788
|
-
var setTextContent = __webpack_require__(
|
3832
|
+
var createMicrosoftUnsafeLocalFunction = __webpack_require__(82);
|
3833
|
+
var setTextContent = __webpack_require__(83);
|
3789
3834
|
|
3790
3835
|
/**
|
3791
3836
|
* In IE (8-11) and Edge, appending nodes with no children is dramatically
|
@@ -3878,7 +3923,7 @@
|
|
3878
3923
|
module.exports = DOMLazyTree;
|
3879
3924
|
|
3880
3925
|
/***/ },
|
3881
|
-
/*
|
3926
|
+
/* 82 */
|
3882
3927
|
/***/ function(module, exports) {
|
3883
3928
|
|
3884
3929
|
/**
|
@@ -3915,7 +3960,7 @@
|
|
3915
3960
|
module.exports = createMicrosoftUnsafeLocalFunction;
|
3916
3961
|
|
3917
3962
|
/***/ },
|
3918
|
-
/*
|
3963
|
+
/* 83 */
|
3919
3964
|
/***/ function(module, exports, __webpack_require__) {
|
3920
3965
|
|
3921
3966
|
/**
|
@@ -3931,9 +3976,9 @@
|
|
3931
3976
|
|
3932
3977
|
'use strict';
|
3933
3978
|
|
3934
|
-
var ExecutionEnvironment = __webpack_require__(
|
3935
|
-
var escapeTextContentForBrowser = __webpack_require__(
|
3936
|
-
var setInnerHTML = __webpack_require__(
|
3979
|
+
var ExecutionEnvironment = __webpack_require__(54);
|
3980
|
+
var escapeTextContentForBrowser = __webpack_require__(84);
|
3981
|
+
var setInnerHTML = __webpack_require__(85);
|
3937
3982
|
|
3938
3983
|
/**
|
3939
3984
|
* Set the textContent property of a node, ensuring that whitespace is preserved
|
@@ -3960,7 +4005,7 @@
|
|
3960
4005
|
module.exports = setTextContent;
|
3961
4006
|
|
3962
4007
|
/***/ },
|
3963
|
-
/*
|
4008
|
+
/* 84 */
|
3964
4009
|
/***/ function(module, exports) {
|
3965
4010
|
|
3966
4011
|
/**
|
@@ -4003,7 +4048,7 @@
|
|
4003
4048
|
module.exports = escapeTextContentForBrowser;
|
4004
4049
|
|
4005
4050
|
/***/ },
|
4006
|
-
/*
|
4051
|
+
/* 85 */
|
4007
4052
|
/***/ function(module, exports, __webpack_require__) {
|
4008
4053
|
|
4009
4054
|
/**
|
@@ -4019,12 +4064,12 @@
|
|
4019
4064
|
|
4020
4065
|
'use strict';
|
4021
4066
|
|
4022
|
-
var ExecutionEnvironment = __webpack_require__(
|
4067
|
+
var ExecutionEnvironment = __webpack_require__(54);
|
4023
4068
|
|
4024
4069
|
var WHITESPACE_TEST = /^[ \r\n\t\f]/;
|
4025
4070
|
var NONVISIBLE_TEST = /<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/;
|
4026
4071
|
|
4027
|
-
var createMicrosoftUnsafeLocalFunction = __webpack_require__(
|
4072
|
+
var createMicrosoftUnsafeLocalFunction = __webpack_require__(82);
|
4028
4073
|
|
4029
4074
|
/**
|
4030
4075
|
* Set the innerHTML property of a node, ensuring that whitespace is preserved
|
@@ -4090,7 +4135,6 @@
|
|
4090
4135
|
module.exports = setInnerHTML;
|
4091
4136
|
|
4092
4137
|
/***/ },
|
4093
|
-
/* 85 */,
|
4094
4138
|
/* 86 */,
|
4095
4139
|
/* 87 */,
|
4096
4140
|
/* 88 */,
|
@@ -4113,7 +4157,8 @@
|
|
4113
4157
|
/* 105 */,
|
4114
4158
|
/* 106 */,
|
4115
4159
|
/* 107 */,
|
4116
|
-
/* 108
|
4160
|
+
/* 108 */,
|
4161
|
+
/* 109 */
|
4117
4162
|
/***/ function(module, exports, __webpack_require__) {
|
4118
4163
|
|
4119
4164
|
/**
|
@@ -4131,13 +4176,13 @@
|
|
4131
4176
|
|
4132
4177
|
var _assign = __webpack_require__(8);
|
4133
4178
|
|
4134
|
-
var EventConstants = __webpack_require__(
|
4135
|
-
var EventPluginRegistry = __webpack_require__(
|
4136
|
-
var ReactEventEmitterMixin = __webpack_require__(
|
4137
|
-
var ViewportMetrics = __webpack_require__(
|
4179
|
+
var EventConstants = __webpack_require__(46);
|
4180
|
+
var EventPluginRegistry = __webpack_require__(49);
|
4181
|
+
var ReactEventEmitterMixin = __webpack_require__(110);
|
4182
|
+
var ViewportMetrics = __webpack_require__(76);
|
4138
4183
|
|
4139
|
-
var getVendorPrefixedEventName = __webpack_require__(
|
4140
|
-
var isEventSupported = __webpack_require__(
|
4184
|
+
var getVendorPrefixedEventName = __webpack_require__(111);
|
4185
|
+
var isEventSupported = __webpack_require__(70);
|
4141
4186
|
|
4142
4187
|
/**
|
4143
4188
|
* Summary of `ReactBrowserEventEmitter` event handling:
|
@@ -4435,7 +4480,7 @@
|
|
4435
4480
|
module.exports = ReactBrowserEventEmitter;
|
4436
4481
|
|
4437
4482
|
/***/ },
|
4438
|
-
/*
|
4483
|
+
/* 110 */
|
4439
4484
|
/***/ function(module, exports, __webpack_require__) {
|
4440
4485
|
|
4441
4486
|
/**
|
@@ -4451,7 +4496,7 @@
|
|
4451
4496
|
|
4452
4497
|
'use strict';
|
4453
4498
|
|
4454
|
-
var EventPluginHub = __webpack_require__(
|
4499
|
+
var EventPluginHub = __webpack_require__(48);
|
4455
4500
|
|
4456
4501
|
function runEventQueueInBatch(events) {
|
4457
4502
|
EventPluginHub.enqueueEvents(events);
|
@@ -4473,7 +4518,7 @@
|
|
4473
4518
|
module.exports = ReactEventEmitterMixin;
|
4474
4519
|
|
4475
4520
|
/***/ },
|
4476
|
-
/*
|
4521
|
+
/* 111 */
|
4477
4522
|
/***/ function(module, exports, __webpack_require__) {
|
4478
4523
|
|
4479
4524
|
/**
|
@@ -4489,7 +4534,7 @@
|
|
4489
4534
|
|
4490
4535
|
'use strict';
|
4491
4536
|
|
4492
|
-
var ExecutionEnvironment = __webpack_require__(
|
4537
|
+
var ExecutionEnvironment = __webpack_require__(54);
|
4493
4538
|
|
4494
4539
|
/**
|
4495
4540
|
* Generate a mapping of standard vendor prefixes using the defined style property and event name.
|
@@ -4579,14 +4624,15 @@
|
|
4579
4624
|
module.exports = getVendorPrefixedEventName;
|
4580
4625
|
|
4581
4626
|
/***/ },
|
4582
|
-
/* 111 */,
|
4583
4627
|
/* 112 */,
|
4584
4628
|
/* 113 */,
|
4585
4629
|
/* 114 */,
|
4586
4630
|
/* 115 */,
|
4587
4631
|
/* 116 */,
|
4588
4632
|
/* 117 */,
|
4589
|
-
/* 118
|
4633
|
+
/* 118 */,
|
4634
|
+
/* 119 */,
|
4635
|
+
/* 120 */
|
4590
4636
|
/***/ function(module, exports, __webpack_require__) {
|
4591
4637
|
|
4592
4638
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -4643,8 +4689,8 @@
|
|
4643
4689
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
4644
4690
|
|
4645
4691
|
/***/ },
|
4646
|
-
/*
|
4647
|
-
/*
|
4692
|
+
/* 121 */,
|
4693
|
+
/* 122 */
|
4648
4694
|
/***/ function(module, exports, __webpack_require__) {
|
4649
4695
|
|
4650
4696
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -4662,9 +4708,9 @@
|
|
4662
4708
|
|
4663
4709
|
var _assign = __webpack_require__(8);
|
4664
4710
|
|
4665
|
-
var ReactCompositeComponent = __webpack_require__(
|
4666
|
-
var ReactEmptyComponent = __webpack_require__(
|
4667
|
-
var ReactNativeComponent = __webpack_require__(
|
4711
|
+
var ReactCompositeComponent = __webpack_require__(123);
|
4712
|
+
var ReactEmptyComponent = __webpack_require__(128);
|
4713
|
+
var ReactNativeComponent = __webpack_require__(129);
|
4668
4714
|
|
4669
4715
|
var invariant = __webpack_require__(6);
|
4670
4716
|
var warning = __webpack_require__(10);
|
@@ -4761,7 +4807,7 @@
|
|
4761
4807
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
4762
4808
|
|
4763
4809
|
/***/ },
|
4764
|
-
/*
|
4810
|
+
/* 123 */
|
4765
4811
|
/***/ function(module, exports, __webpack_require__) {
|
4766
4812
|
|
4767
4813
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -4779,22 +4825,22 @@
|
|
4779
4825
|
|
4780
4826
|
var _assign = __webpack_require__(8);
|
4781
4827
|
|
4782
|
-
var ReactComponentEnvironment = __webpack_require__(
|
4828
|
+
var ReactComponentEnvironment = __webpack_require__(120);
|
4783
4829
|
var ReactCurrentOwner = __webpack_require__(9);
|
4784
4830
|
var ReactElement = __webpack_require__(7);
|
4785
|
-
var ReactErrorUtils = __webpack_require__(
|
4786
|
-
var ReactInstanceMap = __webpack_require__(
|
4787
|
-
var ReactInstrumentation = __webpack_require__(
|
4788
|
-
var ReactNodeTypes = __webpack_require__(
|
4789
|
-
var ReactPerf = __webpack_require__(
|
4790
|
-
var ReactPropTypeLocations = __webpack_require__(
|
4791
|
-
var ReactPropTypeLocationNames = __webpack_require__(
|
4792
|
-
var ReactReconciler = __webpack_require__(
|
4793
|
-
var ReactUpdateQueue = __webpack_require__(
|
4794
|
-
|
4795
|
-
var emptyObject = __webpack_require__(
|
4831
|
+
var ReactErrorUtils = __webpack_require__(51);
|
4832
|
+
var ReactInstanceMap = __webpack_require__(124);
|
4833
|
+
var ReactInstrumentation = __webpack_require__(21);
|
4834
|
+
var ReactNodeTypes = __webpack_require__(125);
|
4835
|
+
var ReactPerf = __webpack_require__(64);
|
4836
|
+
var ReactPropTypeLocations = __webpack_require__(26);
|
4837
|
+
var ReactPropTypeLocationNames = __webpack_require__(28);
|
4838
|
+
var ReactReconciler = __webpack_require__(65);
|
4839
|
+
var ReactUpdateQueue = __webpack_require__(126);
|
4840
|
+
|
4841
|
+
var emptyObject = __webpack_require__(24);
|
4796
4842
|
var invariant = __webpack_require__(6);
|
4797
|
-
var shouldUpdateReactComponent = __webpack_require__(
|
4843
|
+
var shouldUpdateReactComponent = __webpack_require__(127);
|
4798
4844
|
var warning = __webpack_require__(10);
|
4799
4845
|
|
4800
4846
|
function getDeclarationErrorAddendum(component) {
|
@@ -4822,6 +4868,10 @@
|
|
4822
4868
|
}
|
4823
4869
|
}
|
4824
4870
|
|
4871
|
+
function shouldConstruct(Component) {
|
4872
|
+
return Component.prototype && Component.prototype.isReactComponent;
|
4873
|
+
}
|
4874
|
+
|
4825
4875
|
/**
|
4826
4876
|
* ------------------ The Life-Cycle of a Composite Component ------------------
|
4827
4877
|
*
|
@@ -4890,6 +4940,9 @@
|
|
4890
4940
|
|
4891
4941
|
// See ReactUpdates and ReactUpdateQueue.
|
4892
4942
|
this._pendingCallbacks = null;
|
4943
|
+
|
4944
|
+
// ComponentWillUnmount shall only be called once
|
4945
|
+
this._calledComponentWillUnmount = false;
|
4893
4946
|
},
|
4894
4947
|
|
4895
4948
|
/**
|
@@ -4915,37 +4968,15 @@
|
|
4915
4968
|
var Component = this._currentElement.type;
|
4916
4969
|
|
4917
4970
|
// Initialize the public class
|
4918
|
-
var inst;
|
4971
|
+
var inst = this._constructComponent(publicProps, publicContext);
|
4919
4972
|
var renderedElement;
|
4920
4973
|
|
4921
|
-
|
4922
|
-
|
4923
|
-
|
4924
|
-
|
4925
|
-
|
4926
|
-
|
4927
|
-
ReactCurrentOwner.current = null;
|
4928
|
-
}
|
4929
|
-
} else {
|
4930
|
-
inst = new Component(publicProps, publicContext, ReactUpdateQueue);
|
4931
|
-
}
|
4932
|
-
} else {
|
4933
|
-
if (process.env.NODE_ENV !== 'production') {
|
4934
|
-
ReactCurrentOwner.current = this;
|
4935
|
-
try {
|
4936
|
-
inst = Component(publicProps, publicContext, ReactUpdateQueue);
|
4937
|
-
} finally {
|
4938
|
-
ReactCurrentOwner.current = null;
|
4939
|
-
}
|
4940
|
-
} else {
|
4941
|
-
inst = Component(publicProps, publicContext, ReactUpdateQueue);
|
4942
|
-
}
|
4943
|
-
if (inst == null || inst.render == null) {
|
4944
|
-
renderedElement = inst;
|
4945
|
-
warnIfInvalidElement(Component, renderedElement);
|
4946
|
-
!(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') : invariant(false) : void 0;
|
4947
|
-
inst = new StatelessComponent(Component);
|
4948
|
-
}
|
4974
|
+
// Support functional components
|
4975
|
+
if (!shouldConstruct(Component) && (inst == null || inst.render == null)) {
|
4976
|
+
renderedElement = inst;
|
4977
|
+
warnIfInvalidElement(Component, renderedElement);
|
4978
|
+
!(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') : invariant(false) : void 0;
|
4979
|
+
inst = new StatelessComponent(Component);
|
4949
4980
|
}
|
4950
4981
|
|
4951
4982
|
if (process.env.NODE_ENV !== 'production') {
|
@@ -5010,6 +5041,28 @@
|
|
5010
5041
|
return markup;
|
5011
5042
|
},
|
5012
5043
|
|
5044
|
+
_constructComponent: function (publicProps, publicContext) {
|
5045
|
+
if (process.env.NODE_ENV !== 'production') {
|
5046
|
+
ReactCurrentOwner.current = this;
|
5047
|
+
try {
|
5048
|
+
return this._constructComponentWithoutOwner(publicProps, publicContext);
|
5049
|
+
} finally {
|
5050
|
+
ReactCurrentOwner.current = null;
|
5051
|
+
}
|
5052
|
+
} else {
|
5053
|
+
return this._constructComponentWithoutOwner(publicProps, publicContext);
|
5054
|
+
}
|
5055
|
+
},
|
5056
|
+
|
5057
|
+
_constructComponentWithoutOwner: function (publicProps, publicContext) {
|
5058
|
+
var Component = this._currentElement.type;
|
5059
|
+
if (shouldConstruct(Component)) {
|
5060
|
+
return new Component(publicProps, publicContext, ReactUpdateQueue);
|
5061
|
+
} else {
|
5062
|
+
return Component(publicProps, publicContext, ReactUpdateQueue);
|
5063
|
+
}
|
5064
|
+
},
|
5065
|
+
|
5013
5066
|
performInitialMountWithErrorHandling: function (renderedElement, nativeParent, nativeContainerInfo, transaction, context) {
|
5014
5067
|
var markup;
|
5015
5068
|
var checkpoint = transaction.checkpoint();
|
@@ -5074,7 +5127,8 @@
|
|
5074
5127
|
}
|
5075
5128
|
var inst = this._instance;
|
5076
5129
|
|
5077
|
-
if (inst.componentWillUnmount) {
|
5130
|
+
if (inst.componentWillUnmount && !inst._calledComponentWillUnmount) {
|
5131
|
+
inst._calledComponentWillUnmount = true;
|
5078
5132
|
if (safely) {
|
5079
5133
|
var name = this.getName() + '.componentWillUnmount()';
|
5080
5134
|
ReactErrorUtils.invokeGuardedCallback(name, inst.componentWillUnmount.bind(inst));
|
@@ -5553,7 +5607,7 @@
|
|
5553
5607
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
5554
5608
|
|
5555
5609
|
/***/ },
|
5556
|
-
/*
|
5610
|
+
/* 124 */
|
5557
5611
|
/***/ function(module, exports) {
|
5558
5612
|
|
5559
5613
|
/**
|
@@ -5606,7 +5660,7 @@
|
|
5606
5660
|
module.exports = ReactInstanceMap;
|
5607
5661
|
|
5608
5662
|
/***/ },
|
5609
|
-
/*
|
5663
|
+
/* 125 */
|
5610
5664
|
/***/ function(module, exports, __webpack_require__) {
|
5611
5665
|
|
5612
5666
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -5649,7 +5703,7 @@
|
|
5649
5703
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
5650
5704
|
|
5651
5705
|
/***/ },
|
5652
|
-
/*
|
5706
|
+
/* 126 */
|
5653
5707
|
/***/ function(module, exports, __webpack_require__) {
|
5654
5708
|
|
5655
5709
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -5666,8 +5720,8 @@
|
|
5666
5720
|
'use strict';
|
5667
5721
|
|
5668
5722
|
var ReactCurrentOwner = __webpack_require__(9);
|
5669
|
-
var ReactInstanceMap = __webpack_require__(
|
5670
|
-
var ReactUpdates = __webpack_require__(
|
5723
|
+
var ReactInstanceMap = __webpack_require__(124);
|
5724
|
+
var ReactUpdates = __webpack_require__(61);
|
5671
5725
|
|
5672
5726
|
var invariant = __webpack_require__(6);
|
5673
5727
|
var warning = __webpack_require__(10);
|
@@ -5870,7 +5924,7 @@
|
|
5870
5924
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
5871
5925
|
|
5872
5926
|
/***/ },
|
5873
|
-
/*
|
5927
|
+
/* 127 */
|
5874
5928
|
/***/ function(module, exports) {
|
5875
5929
|
|
5876
5930
|
/**
|
@@ -5917,7 +5971,7 @@
|
|
5917
5971
|
module.exports = shouldUpdateReactComponent;
|
5918
5972
|
|
5919
5973
|
/***/ },
|
5920
|
-
/*
|
5974
|
+
/* 128 */
|
5921
5975
|
/***/ function(module, exports) {
|
5922
5976
|
|
5923
5977
|
/**
|
@@ -5952,7 +6006,7 @@
|
|
5952
6006
|
module.exports = ReactEmptyComponent;
|
5953
6007
|
|
5954
6008
|
/***/ },
|
5955
|
-
/*
|
6009
|
+
/* 129 */
|
5956
6010
|
/***/ function(module, exports, __webpack_require__) {
|
5957
6011
|
|
5958
6012
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -6053,8 +6107,8 @@
|
|
6053
6107
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
6054
6108
|
|
6055
6109
|
/***/ },
|
6056
|
-
/*
|
6057
|
-
/*
|
6110
|
+
/* 130 */,
|
6111
|
+
/* 131 */
|
6058
6112
|
/***/ function(module, exports, __webpack_require__) {
|
6059
6113
|
|
6060
6114
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -6232,6 +6286,7 @@
|
|
6232
6286
|
case 'rt':
|
6233
6287
|
return impliedEndTags.indexOf(parentTag) === -1;
|
6234
6288
|
|
6289
|
+
case 'body':
|
6235
6290
|
case 'caption':
|
6236
6291
|
case 'col':
|
6237
6292
|
case 'colgroup':
|
@@ -6428,8 +6483,6 @@
|
|
6428
6483
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
6429
6484
|
|
6430
6485
|
/***/ },
|
6431
|
-
/* 130 */,
|
6432
|
-
/* 131 */,
|
6433
6486
|
/* 132 */,
|
6434
6487
|
/* 133 */,
|
6435
6488
|
/* 134 */,
|
@@ -6457,7 +6510,9 @@
|
|
6457
6510
|
/* 156 */,
|
6458
6511
|
/* 157 */,
|
6459
6512
|
/* 158 */,
|
6460
|
-
/* 159
|
6513
|
+
/* 159 */,
|
6514
|
+
/* 160 */,
|
6515
|
+
/* 161 */
|
6461
6516
|
/***/ function(module, exports, __webpack_require__) {
|
6462
6517
|
|
6463
6518
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -6473,13 +6528,13 @@
|
|
6473
6528
|
|
6474
6529
|
'use strict';
|
6475
6530
|
|
6476
|
-
var DOMProperty = __webpack_require__(
|
6477
|
-
var ReactDOMComponentTree = __webpack_require__(
|
6478
|
-
var ReactDefaultPerfAnalysis = __webpack_require__(
|
6479
|
-
var ReactMount = __webpack_require__(
|
6480
|
-
var ReactPerf = __webpack_require__(
|
6531
|
+
var DOMProperty = __webpack_require__(42);
|
6532
|
+
var ReactDOMComponentTree = __webpack_require__(41);
|
6533
|
+
var ReactDefaultPerfAnalysis = __webpack_require__(162);
|
6534
|
+
var ReactMount = __webpack_require__(163);
|
6535
|
+
var ReactPerf = __webpack_require__(64);
|
6481
6536
|
|
6482
|
-
var performanceNow = __webpack_require__(
|
6537
|
+
var performanceNow = __webpack_require__(168);
|
6483
6538
|
var warning = __webpack_require__(10);
|
6484
6539
|
|
6485
6540
|
function roundFloat(val) {
|
@@ -6779,7 +6834,7 @@
|
|
6779
6834
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
6780
6835
|
|
6781
6836
|
/***/ },
|
6782
|
-
/*
|
6837
|
+
/* 162 */
|
6783
6838
|
/***/ function(module, exports, __webpack_require__) {
|
6784
6839
|
|
6785
6840
|
/**
|
@@ -6953,12 +7008,13 @@
|
|
6953
7008
|
// the amount of time it took to render the entire subtree.
|
6954
7009
|
var cleanComponents = {};
|
6955
7010
|
var writes = measurement.writes;
|
7011
|
+
var hierarchy = measurement.hierarchy;
|
6956
7012
|
var dirtyComposites = {};
|
6957
7013
|
Object.keys(writes).forEach(function (id) {
|
6958
7014
|
writes[id].forEach(function (write) {
|
6959
7015
|
// Root mounting (innerHTML set) is recorded with an ID of ''
|
6960
|
-
if (id !== '') {
|
6961
|
-
|
7016
|
+
if (id !== '' && hierarchy.hasOwnProperty(id)) {
|
7017
|
+
hierarchy[id].forEach(function (c) {
|
6962
7018
|
return dirtyComposites[c] = true;
|
6963
7019
|
});
|
6964
7020
|
}
|
@@ -6993,7 +7049,7 @@
|
|
6993
7049
|
module.exports = ReactDefaultPerfAnalysis;
|
6994
7050
|
|
6995
7051
|
/***/ },
|
6996
|
-
/*
|
7052
|
+
/* 163 */
|
6997
7053
|
/***/ function(module, exports, __webpack_require__) {
|
6998
7054
|
|
6999
7055
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -7009,27 +7065,27 @@
|
|
7009
7065
|
|
7010
7066
|
'use strict';
|
7011
7067
|
|
7012
|
-
var DOMLazyTree = __webpack_require__(
|
7013
|
-
var DOMProperty = __webpack_require__(
|
7014
|
-
var ReactBrowserEventEmitter = __webpack_require__(
|
7068
|
+
var DOMLazyTree = __webpack_require__(81);
|
7069
|
+
var DOMProperty = __webpack_require__(42);
|
7070
|
+
var ReactBrowserEventEmitter = __webpack_require__(109);
|
7015
7071
|
var ReactCurrentOwner = __webpack_require__(9);
|
7016
|
-
var ReactDOMComponentTree = __webpack_require__(
|
7017
|
-
var ReactDOMContainerInfo = __webpack_require__(
|
7018
|
-
var ReactDOMFeatureFlags = __webpack_require__(
|
7072
|
+
var ReactDOMComponentTree = __webpack_require__(41);
|
7073
|
+
var ReactDOMContainerInfo = __webpack_require__(164);
|
7074
|
+
var ReactDOMFeatureFlags = __webpack_require__(165);
|
7019
7075
|
var ReactElement = __webpack_require__(7);
|
7020
|
-
var ReactFeatureFlags = __webpack_require__(
|
7021
|
-
var ReactInstrumentation = __webpack_require__(
|
7022
|
-
var ReactMarkupChecksum = __webpack_require__(
|
7023
|
-
var ReactPerf = __webpack_require__(
|
7024
|
-
var ReactReconciler = __webpack_require__(
|
7025
|
-
var ReactUpdateQueue = __webpack_require__(
|
7026
|
-
var ReactUpdates = __webpack_require__(
|
7027
|
-
|
7028
|
-
var emptyObject = __webpack_require__(
|
7029
|
-
var instantiateReactComponent = __webpack_require__(
|
7076
|
+
var ReactFeatureFlags = __webpack_require__(63);
|
7077
|
+
var ReactInstrumentation = __webpack_require__(21);
|
7078
|
+
var ReactMarkupChecksum = __webpack_require__(166);
|
7079
|
+
var ReactPerf = __webpack_require__(64);
|
7080
|
+
var ReactReconciler = __webpack_require__(65);
|
7081
|
+
var ReactUpdateQueue = __webpack_require__(126);
|
7082
|
+
var ReactUpdates = __webpack_require__(61);
|
7083
|
+
|
7084
|
+
var emptyObject = __webpack_require__(24);
|
7085
|
+
var instantiateReactComponent = __webpack_require__(122);
|
7030
7086
|
var invariant = __webpack_require__(6);
|
7031
|
-
var setInnerHTML = __webpack_require__(
|
7032
|
-
var shouldUpdateReactComponent = __webpack_require__(
|
7087
|
+
var setInnerHTML = __webpack_require__(85);
|
7088
|
+
var shouldUpdateReactComponent = __webpack_require__(127);
|
7033
7089
|
var warning = __webpack_require__(10);
|
7034
7090
|
|
7035
7091
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
@@ -7477,7 +7533,7 @@
|
|
7477
7533
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
7478
7534
|
|
7479
7535
|
/***/ },
|
7480
|
-
/*
|
7536
|
+
/* 164 */
|
7481
7537
|
/***/ function(module, exports, __webpack_require__) {
|
7482
7538
|
|
7483
7539
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -7493,7 +7549,7 @@
|
|
7493
7549
|
|
7494
7550
|
'use strict';
|
7495
7551
|
|
7496
|
-
var validateDOMNesting = __webpack_require__(
|
7552
|
+
var validateDOMNesting = __webpack_require__(131);
|
7497
7553
|
|
7498
7554
|
var DOC_NODE_TYPE = 9;
|
7499
7555
|
|
@@ -7502,6 +7558,7 @@
|
|
7502
7558
|
_topLevelWrapper: topLevelWrapper,
|
7503
7559
|
_idCounter: 1,
|
7504
7560
|
_ownerDocument: node ? node.nodeType === DOC_NODE_TYPE ? node : node.ownerDocument : null,
|
7561
|
+
_node: node,
|
7505
7562
|
_tag: node ? node.nodeName.toLowerCase() : null,
|
7506
7563
|
_namespaceURI: node ? node.namespaceURI : null
|
7507
7564
|
};
|
@@ -7515,7 +7572,7 @@
|
|
7515
7572
|
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
|
7516
7573
|
|
7517
7574
|
/***/ },
|
7518
|
-
/*
|
7575
|
+
/* 165 */
|
7519
7576
|
/***/ function(module, exports) {
|
7520
7577
|
|
7521
7578
|
/**
|
@@ -7538,7 +7595,7 @@
|
|
7538
7595
|
module.exports = ReactDOMFeatureFlags;
|
7539
7596
|
|
7540
7597
|
/***/ },
|
7541
|
-
/*
|
7598
|
+
/* 166 */
|
7542
7599
|
/***/ function(module, exports, __webpack_require__) {
|
7543
7600
|
|
7544
7601
|
/**
|
@@ -7554,7 +7611,7 @@
|
|
7554
7611
|
|
7555
7612
|
'use strict';
|
7556
7613
|
|
7557
|
-
var adler32 = __webpack_require__(
|
7614
|
+
var adler32 = __webpack_require__(167);
|
7558
7615
|
|
7559
7616
|
var TAG_END = /\/?>/;
|
7560
7617
|
var COMMENT_START = /^<\!\-\-/;
|
@@ -7593,7 +7650,7 @@
|
|
7593
7650
|
module.exports = ReactMarkupChecksum;
|
7594
7651
|
|
7595
7652
|
/***/ },
|
7596
|
-
/*
|
7653
|
+
/* 167 */
|
7597
7654
|
/***/ function(module, exports) {
|
7598
7655
|
|
7599
7656
|
/**
|
@@ -7641,7 +7698,7 @@
|
|
7641
7698
|
module.exports = adler32;
|
7642
7699
|
|
7643
7700
|
/***/ },
|
7644
|
-
/*
|
7701
|
+
/* 168 */
|
7645
7702
|
/***/ function(module, exports, __webpack_require__) {
|
7646
7703
|
|
7647
7704
|
'use strict';
|
@@ -7657,7 +7714,7 @@
|
|
7657
7714
|
* @typechecks
|
7658
7715
|
*/
|
7659
7716
|
|
7660
|
-
var performance = __webpack_require__(
|
7717
|
+
var performance = __webpack_require__(169);
|
7661
7718
|
|
7662
7719
|
var performanceNow;
|
7663
7720
|
|
@@ -7679,7 +7736,7 @@
|
|
7679
7736
|
module.exports = performanceNow;
|
7680
7737
|
|
7681
7738
|
/***/ },
|
7682
|
-
/*
|
7739
|
+
/* 169 */
|
7683
7740
|
/***/ function(module, exports, __webpack_require__) {
|
7684
7741
|
|
7685
7742
|
/**
|
@@ -7695,7 +7752,7 @@
|
|
7695
7752
|
|
7696
7753
|
'use strict';
|
7697
7754
|
|
7698
|
-
var ExecutionEnvironment = __webpack_require__(
|
7755
|
+
var ExecutionEnvironment = __webpack_require__(54);
|
7699
7756
|
|
7700
7757
|
var performance;
|
7701
7758
|
|
@@ -7706,8 +7763,6 @@
|
|
7706
7763
|
module.exports = performance || {};
|
7707
7764
|
|
7708
7765
|
/***/ },
|
7709
|
-
/* 168 */,
|
7710
|
-
/* 169 */,
|
7711
7766
|
/* 170 */,
|
7712
7767
|
/* 171 */,
|
7713
7768
|
/* 172 */,
|
@@ -7715,10 +7770,12 @@
|
|
7715
7770
|
/* 174 */,
|
7716
7771
|
/* 175 */,
|
7717
7772
|
/* 176 */,
|
7718
|
-
/* 177
|
7773
|
+
/* 177 */,
|
7774
|
+
/* 178 */,
|
7775
|
+
/* 179 */
|
7719
7776
|
/***/ function(module, exports, __webpack_require__) {
|
7720
7777
|
|
7721
|
-
module.exports = __webpack_require__(
|
7778
|
+
module.exports = __webpack_require__(161);
|
7722
7779
|
|
7723
7780
|
/***/ }
|
7724
7781
|
/******/ ]);
|