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
@@ -46,7 +46,7 @@
|
|
46
46
|
/***/ function(module, exports, __webpack_require__) {
|
47
47
|
|
48
48
|
window.React.addons = window.React.addons || {};
|
49
|
-
window.React.addons.LinkedStateMixin = __webpack_require__(
|
49
|
+
window.React.addons.LinkedStateMixin = __webpack_require__(175);
|
50
50
|
|
51
51
|
|
52
52
|
/***/ },
|
@@ -284,7 +284,7 @@
|
|
284
284
|
/**
|
285
285
|
* Maps children that are typically specified as `props.children`.
|
286
286
|
*
|
287
|
-
* The provided mapFunction(child,
|
287
|
+
* The provided mapFunction(child, index) will be called for each
|
288
288
|
* leaf child.
|
289
289
|
*
|
290
290
|
* @param {?*} children Children tree container.
|
@@ -817,8 +817,8 @@
|
|
817
817
|
/***/ 8:
|
818
818
|
/***/ function(module, exports) {
|
819
819
|
|
820
|
-
/* eslint-disable no-unused-vars */
|
821
820
|
'use strict';
|
821
|
+
/* eslint-disable no-unused-vars */
|
822
822
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
823
823
|
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
824
824
|
|
@@ -830,7 +830,51 @@
|
|
830
830
|
return Object(val);
|
831
831
|
}
|
832
832
|
|
833
|
-
|
833
|
+
function shouldUseNative() {
|
834
|
+
try {
|
835
|
+
if (!Object.assign) {
|
836
|
+
return false;
|
837
|
+
}
|
838
|
+
|
839
|
+
// Detect buggy property enumeration order in older V8 versions.
|
840
|
+
|
841
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=4118
|
842
|
+
var test1 = new String('abc'); // eslint-disable-line
|
843
|
+
test1[5] = 'de';
|
844
|
+
if (Object.getOwnPropertyNames(test1)[0] === '5') {
|
845
|
+
return false;
|
846
|
+
}
|
847
|
+
|
848
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
849
|
+
var test2 = {};
|
850
|
+
for (var i = 0; i < 10; i++) {
|
851
|
+
test2['_' + String.fromCharCode(i)] = i;
|
852
|
+
}
|
853
|
+
var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
|
854
|
+
return test2[n];
|
855
|
+
});
|
856
|
+
if (order2.join('') !== '0123456789') {
|
857
|
+
return false;
|
858
|
+
}
|
859
|
+
|
860
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
861
|
+
var test3 = {};
|
862
|
+
'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
|
863
|
+
test3[letter] = letter;
|
864
|
+
});
|
865
|
+
if (Object.keys(Object.assign({}, test3)).join('') !==
|
866
|
+
'abcdefghijklmnopqrst') {
|
867
|
+
return false;
|
868
|
+
}
|
869
|
+
|
870
|
+
return true;
|
871
|
+
} catch (e) {
|
872
|
+
// We don't expect any of the above to throw, but better to be safe.
|
873
|
+
return false;
|
874
|
+
}
|
875
|
+
}
|
876
|
+
|
877
|
+
module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
834
878
|
var from;
|
835
879
|
var to = toObject(target);
|
836
880
|
var symbols;
|
@@ -1055,6 +1099,7 @@
|
|
1055
1099
|
|
1056
1100
|
var getIteratorFn = __webpack_require__(14);
|
1057
1101
|
var invariant = __webpack_require__(6);
|
1102
|
+
var KeyEscapeUtils = __webpack_require__(15);
|
1058
1103
|
var warning = __webpack_require__(10);
|
1059
1104
|
|
1060
1105
|
var SEPARATOR = '.';
|
@@ -1065,19 +1110,8 @@
|
|
1065
1110
|
* pattern.
|
1066
1111
|
*/
|
1067
1112
|
|
1068
|
-
var userProvidedKeyEscaperLookup = {
|
1069
|
-
'=': '=0',
|
1070
|
-
':': '=2'
|
1071
|
-
};
|
1072
|
-
|
1073
|
-
var userProvidedKeyEscapeRegex = /[=:]/g;
|
1074
|
-
|
1075
1113
|
var didWarnAboutMaps = false;
|
1076
1114
|
|
1077
|
-
function userProvidedKeyEscaper(match) {
|
1078
|
-
return userProvidedKeyEscaperLookup[match];
|
1079
|
-
}
|
1080
|
-
|
1081
1115
|
/**
|
1082
1116
|
* Generate a key string that identifies a component within a set.
|
1083
1117
|
*
|
@@ -1090,33 +1124,12 @@
|
|
1090
1124
|
// that we don't block potential future ES APIs.
|
1091
1125
|
if (component && typeof component === 'object' && component.key != null) {
|
1092
1126
|
// Explicit key
|
1093
|
-
return
|
1127
|
+
return KeyEscapeUtils.escape(component.key);
|
1094
1128
|
}
|
1095
1129
|
// Implicit key determined by the index in the set
|
1096
1130
|
return index.toString(36);
|
1097
1131
|
}
|
1098
1132
|
|
1099
|
-
/**
|
1100
|
-
* Escape a component key so that it is safe to use in a reactid.
|
1101
|
-
*
|
1102
|
-
* @param {*} text Component key to be escaped.
|
1103
|
-
* @return {string} An escaped string.
|
1104
|
-
*/
|
1105
|
-
function escapeUserProvidedKey(text) {
|
1106
|
-
return ('' + text).replace(userProvidedKeyEscapeRegex, userProvidedKeyEscaper);
|
1107
|
-
}
|
1108
|
-
|
1109
|
-
/**
|
1110
|
-
* Wrap a `key` value explicitly provided by the user to distinguish it from
|
1111
|
-
* implicitly-generated keys generated by a component's index in its parent.
|
1112
|
-
*
|
1113
|
-
* @param {string} key Value of a user-provided `key` attribute
|
1114
|
-
* @return {string}
|
1115
|
-
*/
|
1116
|
-
function wrapUserProvidedKey(key) {
|
1117
|
-
return '$' + escapeUserProvidedKey(key);
|
1118
|
-
}
|
1119
|
-
|
1120
1133
|
/**
|
1121
1134
|
* @param {?*} children Children tree container.
|
1122
1135
|
* @param {!string} nameSoFar Name of the key path so far.
|
@@ -1174,7 +1187,7 @@
|
|
1174
1187
|
var entry = step.value;
|
1175
1188
|
if (entry) {
|
1176
1189
|
child = entry[1];
|
1177
|
-
nextName = nextNamePrefix +
|
1190
|
+
nextName = nextNamePrefix + KeyEscapeUtils.escape(entry[0]) + SUBSEPARATOR + getComponentKey(child, 0);
|
1178
1191
|
subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);
|
1179
1192
|
}
|
1180
1193
|
}
|
@@ -1276,7 +1289,71 @@
|
|
1276
1289
|
|
1277
1290
|
/***/ },
|
1278
1291
|
|
1279
|
-
/***/
|
1292
|
+
/***/ 15:
|
1293
|
+
/***/ function(module, exports) {
|
1294
|
+
|
1295
|
+
/**
|
1296
|
+
* Copyright 2013-present, Facebook, Inc.
|
1297
|
+
* All rights reserved.
|
1298
|
+
*
|
1299
|
+
* This source code is licensed under the BSD-style license found in the
|
1300
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
1301
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
1302
|
+
*
|
1303
|
+
* @providesModule KeyEscapeUtils
|
1304
|
+
*/
|
1305
|
+
|
1306
|
+
'use strict';
|
1307
|
+
|
1308
|
+
/**
|
1309
|
+
* Escape and wrap key so it is safe to use as a reactid
|
1310
|
+
*
|
1311
|
+
* @param {*} key to be escaped.
|
1312
|
+
* @return {string} the escaped key.
|
1313
|
+
*/
|
1314
|
+
|
1315
|
+
function escape(key) {
|
1316
|
+
var escapeRegex = /[=:]/g;
|
1317
|
+
var escaperLookup = {
|
1318
|
+
'=': '=0',
|
1319
|
+
':': '=2'
|
1320
|
+
};
|
1321
|
+
var escapedString = ('' + key).replace(escapeRegex, function (match) {
|
1322
|
+
return escaperLookup[match];
|
1323
|
+
});
|
1324
|
+
|
1325
|
+
return '$' + escapedString;
|
1326
|
+
}
|
1327
|
+
|
1328
|
+
/**
|
1329
|
+
* Unescape and unwrap key for human-readable display
|
1330
|
+
*
|
1331
|
+
* @param {string} key to unescape.
|
1332
|
+
* @return {string} the unescaped key.
|
1333
|
+
*/
|
1334
|
+
function unescape(key) {
|
1335
|
+
var unescapeRegex = /(=0|=2)/g;
|
1336
|
+
var unescaperLookup = {
|
1337
|
+
'=0': '=',
|
1338
|
+
'=2': ':'
|
1339
|
+
};
|
1340
|
+
var keySubstring = key[0] === '.' && key[1] === '$' ? key.substring(2) : key.substring(1);
|
1341
|
+
|
1342
|
+
return ('' + keySubstring).replace(unescapeRegex, function (match) {
|
1343
|
+
return unescaperLookup[match];
|
1344
|
+
});
|
1345
|
+
}
|
1346
|
+
|
1347
|
+
var KeyEscapeUtils = {
|
1348
|
+
escape: escape,
|
1349
|
+
unescape: unescape
|
1350
|
+
};
|
1351
|
+
|
1352
|
+
module.exports = KeyEscapeUtils;
|
1353
|
+
|
1354
|
+
/***/ },
|
1355
|
+
|
1356
|
+
/***/ 18:
|
1280
1357
|
/***/ function(module, exports, __webpack_require__) {
|
1281
1358
|
|
1282
1359
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1295,15 +1372,15 @@
|
|
1295
1372
|
var _assign = __webpack_require__(8);
|
1296
1373
|
|
1297
1374
|
var ReactChildren = __webpack_require__(4);
|
1298
|
-
var ReactComponent = __webpack_require__(
|
1299
|
-
var ReactClass = __webpack_require__(
|
1300
|
-
var ReactDOMFactories = __webpack_require__(
|
1375
|
+
var ReactComponent = __webpack_require__(19);
|
1376
|
+
var ReactClass = __webpack_require__(25);
|
1377
|
+
var ReactDOMFactories = __webpack_require__(30);
|
1301
1378
|
var ReactElement = __webpack_require__(7);
|
1302
|
-
var ReactElementValidator = __webpack_require__(
|
1303
|
-
var ReactPropTypes = __webpack_require__(
|
1304
|
-
var ReactVersion = __webpack_require__(
|
1379
|
+
var ReactElementValidator = __webpack_require__(31);
|
1380
|
+
var ReactPropTypes = __webpack_require__(33);
|
1381
|
+
var ReactVersion = __webpack_require__(34);
|
1305
1382
|
|
1306
|
-
var onlyChild = __webpack_require__(
|
1383
|
+
var onlyChild = __webpack_require__(35);
|
1307
1384
|
var warning = __webpack_require__(10);
|
1308
1385
|
|
1309
1386
|
var createElement = ReactElement.createElement;
|
@@ -1370,7 +1447,7 @@
|
|
1370
1447
|
|
1371
1448
|
/***/ },
|
1372
1449
|
|
1373
|
-
/***/
|
1450
|
+
/***/ 19:
|
1374
1451
|
/***/ function(module, exports, __webpack_require__) {
|
1375
1452
|
|
1376
1453
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1386,11 +1463,11 @@
|
|
1386
1463
|
|
1387
1464
|
'use strict';
|
1388
1465
|
|
1389
|
-
var ReactNoopUpdateQueue = __webpack_require__(
|
1390
|
-
var ReactInstrumentation = __webpack_require__(
|
1466
|
+
var ReactNoopUpdateQueue = __webpack_require__(20);
|
1467
|
+
var ReactInstrumentation = __webpack_require__(21);
|
1391
1468
|
|
1392
1469
|
var canDefineProperty = __webpack_require__(12);
|
1393
|
-
var emptyObject = __webpack_require__(
|
1470
|
+
var emptyObject = __webpack_require__(24);
|
1394
1471
|
var invariant = __webpack_require__(6);
|
1395
1472
|
var warning = __webpack_require__(10);
|
1396
1473
|
|
@@ -1498,7 +1575,7 @@
|
|
1498
1575
|
|
1499
1576
|
/***/ },
|
1500
1577
|
|
1501
|
-
/***/
|
1578
|
+
/***/ 20:
|
1502
1579
|
/***/ function(module, exports, __webpack_require__) {
|
1503
1580
|
|
1504
1581
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1600,7 +1677,7 @@
|
|
1600
1677
|
|
1601
1678
|
/***/ },
|
1602
1679
|
|
1603
|
-
/***/
|
1680
|
+
/***/ 21:
|
1604
1681
|
/***/ function(module, exports, __webpack_require__) {
|
1605
1682
|
|
1606
1683
|
/**
|
@@ -1616,13 +1693,13 @@
|
|
1616
1693
|
|
1617
1694
|
'use strict';
|
1618
1695
|
|
1619
|
-
var ReactDebugTool = __webpack_require__(
|
1696
|
+
var ReactDebugTool = __webpack_require__(22);
|
1620
1697
|
|
1621
1698
|
module.exports = { debugTool: ReactDebugTool };
|
1622
1699
|
|
1623
1700
|
/***/ },
|
1624
1701
|
|
1625
|
-
/***/
|
1702
|
+
/***/ 22:
|
1626
1703
|
/***/ function(module, exports, __webpack_require__) {
|
1627
1704
|
|
1628
1705
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1638,7 +1715,7 @@
|
|
1638
1715
|
|
1639
1716
|
'use strict';
|
1640
1717
|
|
1641
|
-
var ReactInvalidSetStateWarningDevTool = __webpack_require__(
|
1718
|
+
var ReactInvalidSetStateWarningDevTool = __webpack_require__(23);
|
1642
1719
|
var warning = __webpack_require__(10);
|
1643
1720
|
|
1644
1721
|
var eventHandlers = [];
|
@@ -1701,7 +1778,7 @@
|
|
1701
1778
|
|
1702
1779
|
/***/ },
|
1703
1780
|
|
1704
|
-
/***/
|
1781
|
+
/***/ 23:
|
1705
1782
|
/***/ function(module, exports, __webpack_require__) {
|
1706
1783
|
|
1707
1784
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1744,7 +1821,7 @@
|
|
1744
1821
|
|
1745
1822
|
/***/ },
|
1746
1823
|
|
1747
|
-
/***/
|
1824
|
+
/***/ 24:
|
1748
1825
|
/***/ function(module, exports, __webpack_require__) {
|
1749
1826
|
|
1750
1827
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1770,7 +1847,7 @@
|
|
1770
1847
|
|
1771
1848
|
/***/ },
|
1772
1849
|
|
1773
|
-
/***/
|
1850
|
+
/***/ 25:
|
1774
1851
|
/***/ function(module, exports, __webpack_require__) {
|
1775
1852
|
|
1776
1853
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -1788,16 +1865,16 @@
|
|
1788
1865
|
|
1789
1866
|
var _assign = __webpack_require__(8);
|
1790
1867
|
|
1791
|
-
var ReactComponent = __webpack_require__(
|
1868
|
+
var ReactComponent = __webpack_require__(19);
|
1792
1869
|
var ReactElement = __webpack_require__(7);
|
1793
|
-
var ReactPropTypeLocations = __webpack_require__(
|
1794
|
-
var ReactPropTypeLocationNames = __webpack_require__(
|
1795
|
-
var ReactNoopUpdateQueue = __webpack_require__(
|
1870
|
+
var ReactPropTypeLocations = __webpack_require__(26);
|
1871
|
+
var ReactPropTypeLocationNames = __webpack_require__(28);
|
1872
|
+
var ReactNoopUpdateQueue = __webpack_require__(20);
|
1796
1873
|
|
1797
|
-
var emptyObject = __webpack_require__(
|
1874
|
+
var emptyObject = __webpack_require__(24);
|
1798
1875
|
var invariant = __webpack_require__(6);
|
1799
|
-
var keyMirror = __webpack_require__(
|
1800
|
-
var keyOf = __webpack_require__(
|
1876
|
+
var keyMirror = __webpack_require__(27);
|
1877
|
+
var keyOf = __webpack_require__(29);
|
1801
1878
|
var warning = __webpack_require__(10);
|
1802
1879
|
|
1803
1880
|
var MIXINS_KEY = keyOf({ mixins: null });
|
@@ -2500,7 +2577,7 @@
|
|
2500
2577
|
|
2501
2578
|
/***/ },
|
2502
2579
|
|
2503
|
-
/***/
|
2580
|
+
/***/ 26:
|
2504
2581
|
/***/ function(module, exports, __webpack_require__) {
|
2505
2582
|
|
2506
2583
|
/**
|
@@ -2516,7 +2593,7 @@
|
|
2516
2593
|
|
2517
2594
|
'use strict';
|
2518
2595
|
|
2519
|
-
var keyMirror = __webpack_require__(
|
2596
|
+
var keyMirror = __webpack_require__(27);
|
2520
2597
|
|
2521
2598
|
var ReactPropTypeLocations = keyMirror({
|
2522
2599
|
prop: null,
|
@@ -2528,7 +2605,7 @@
|
|
2528
2605
|
|
2529
2606
|
/***/ },
|
2530
2607
|
|
2531
|
-
/***/
|
2608
|
+
/***/ 27:
|
2532
2609
|
/***/ function(module, exports, __webpack_require__) {
|
2533
2610
|
|
2534
2611
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2582,7 +2659,7 @@
|
|
2582
2659
|
|
2583
2660
|
/***/ },
|
2584
2661
|
|
2585
|
-
/***/
|
2662
|
+
/***/ 28:
|
2586
2663
|
/***/ function(module, exports, __webpack_require__) {
|
2587
2664
|
|
2588
2665
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2613,7 +2690,7 @@
|
|
2613
2690
|
|
2614
2691
|
/***/ },
|
2615
2692
|
|
2616
|
-
/***/
|
2693
|
+
/***/ 29:
|
2617
2694
|
/***/ function(module, exports) {
|
2618
2695
|
|
2619
2696
|
"use strict";
|
@@ -2653,7 +2730,7 @@
|
|
2653
2730
|
|
2654
2731
|
/***/ },
|
2655
2732
|
|
2656
|
-
/***/
|
2733
|
+
/***/ 30:
|
2657
2734
|
/***/ function(module, exports, __webpack_require__) {
|
2658
2735
|
|
2659
2736
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2670,9 +2747,9 @@
|
|
2670
2747
|
'use strict';
|
2671
2748
|
|
2672
2749
|
var ReactElement = __webpack_require__(7);
|
2673
|
-
var ReactElementValidator = __webpack_require__(
|
2750
|
+
var ReactElementValidator = __webpack_require__(31);
|
2674
2751
|
|
2675
|
-
var mapObject = __webpack_require__(
|
2752
|
+
var mapObject = __webpack_require__(32);
|
2676
2753
|
|
2677
2754
|
/**
|
2678
2755
|
* Create a factory that creates HTML tag elements.
|
@@ -2836,7 +2913,7 @@
|
|
2836
2913
|
|
2837
2914
|
/***/ },
|
2838
2915
|
|
2839
|
-
/***/
|
2916
|
+
/***/ 31:
|
2840
2917
|
/***/ function(module, exports, __webpack_require__) {
|
2841
2918
|
|
2842
2919
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -2860,8 +2937,8 @@
|
|
2860
2937
|
'use strict';
|
2861
2938
|
|
2862
2939
|
var ReactElement = __webpack_require__(7);
|
2863
|
-
var ReactPropTypeLocations = __webpack_require__(
|
2864
|
-
var ReactPropTypeLocationNames = __webpack_require__(
|
2940
|
+
var ReactPropTypeLocations = __webpack_require__(26);
|
2941
|
+
var ReactPropTypeLocationNames = __webpack_require__(28);
|
2865
2942
|
var ReactCurrentOwner = __webpack_require__(9);
|
2866
2943
|
|
2867
2944
|
var canDefineProperty = __webpack_require__(12);
|
@@ -3124,7 +3201,7 @@
|
|
3124
3201
|
|
3125
3202
|
/***/ },
|
3126
3203
|
|
3127
|
-
/***/
|
3204
|
+
/***/ 32:
|
3128
3205
|
/***/ function(module, exports) {
|
3129
3206
|
|
3130
3207
|
/**
|
@@ -3180,7 +3257,7 @@
|
|
3180
3257
|
|
3181
3258
|
/***/ },
|
3182
3259
|
|
3183
|
-
/***/
|
3260
|
+
/***/ 33:
|
3184
3261
|
/***/ function(module, exports, __webpack_require__) {
|
3185
3262
|
|
3186
3263
|
/**
|
@@ -3197,7 +3274,7 @@
|
|
3197
3274
|
'use strict';
|
3198
3275
|
|
3199
3276
|
var ReactElement = __webpack_require__(7);
|
3200
|
-
var ReactPropTypeLocationNames = __webpack_require__(
|
3277
|
+
var ReactPropTypeLocationNames = __webpack_require__(28);
|
3201
3278
|
|
3202
3279
|
var emptyFunction = __webpack_require__(11);
|
3203
3280
|
var getIteratorFn = __webpack_require__(14);
|
@@ -3566,7 +3643,7 @@
|
|
3566
3643
|
|
3567
3644
|
/***/ },
|
3568
3645
|
|
3569
|
-
/***/
|
3646
|
+
/***/ 34:
|
3570
3647
|
/***/ function(module, exports) {
|
3571
3648
|
|
3572
3649
|
/**
|
@@ -3582,11 +3659,11 @@
|
|
3582
3659
|
|
3583
3660
|
'use strict';
|
3584
3661
|
|
3585
|
-
module.exports = '15.0.
|
3662
|
+
module.exports = '15.0.2';
|
3586
3663
|
|
3587
3664
|
/***/ },
|
3588
3665
|
|
3589
|
-
/***/
|
3666
|
+
/***/ 35:
|
3590
3667
|
/***/ function(module, exports, __webpack_require__) {
|
3591
3668
|
|
3592
3669
|
/* WEBPACK VAR INJECTION */(function(process) {/**
|
@@ -3613,7 +3690,7 @@
|
|
3613
3690
|
* of children.
|
3614
3691
|
*
|
3615
3692
|
* @param {?object} children Child collection structure.
|
3616
|
-
* @return {
|
3693
|
+
* @return {ReactElement} The first and only `ReactElement` contained in the
|
3617
3694
|
* structure.
|
3618
3695
|
*/
|
3619
3696
|
function onlyChild(children) {
|
@@ -3626,14 +3703,14 @@
|
|
3626
3703
|
|
3627
3704
|
/***/ },
|
3628
3705
|
|
3629
|
-
/***/
|
3706
|
+
/***/ 175:
|
3630
3707
|
/***/ function(module, exports, __webpack_require__) {
|
3631
3708
|
|
3632
|
-
module.exports = __webpack_require__(
|
3709
|
+
module.exports = __webpack_require__(176);
|
3633
3710
|
|
3634
3711
|
/***/ },
|
3635
3712
|
|
3636
|
-
/***/
|
3713
|
+
/***/ 176:
|
3637
3714
|
/***/ function(module, exports, __webpack_require__) {
|
3638
3715
|
|
3639
3716
|
/**
|
@@ -3649,8 +3726,8 @@
|
|
3649
3726
|
|
3650
3727
|
'use strict';
|
3651
3728
|
|
3652
|
-
var ReactLink = __webpack_require__(
|
3653
|
-
var ReactStateSetters = __webpack_require__(
|
3729
|
+
var ReactLink = __webpack_require__(177);
|
3730
|
+
var ReactStateSetters = __webpack_require__(178);
|
3654
3731
|
|
3655
3732
|
/**
|
3656
3733
|
* A simple mixin around ReactLink.forState().
|
@@ -3674,7 +3751,7 @@
|
|
3674
3751
|
|
3675
3752
|
/***/ },
|
3676
3753
|
|
3677
|
-
/***/
|
3754
|
+
/***/ 177:
|
3678
3755
|
/***/ function(module, exports, __webpack_require__) {
|
3679
3756
|
|
3680
3757
|
/**
|
@@ -3713,7 +3790,7 @@
|
|
3713
3790
|
* consumption of ReactLink easier; see LinkedValueUtils and LinkedStateMixin.
|
3714
3791
|
*/
|
3715
3792
|
|
3716
|
-
var React = __webpack_require__(
|
3793
|
+
var React = __webpack_require__(18);
|
3717
3794
|
|
3718
3795
|
/**
|
3719
3796
|
* @param {*} value current value of the link
|
@@ -3748,7 +3825,7 @@
|
|
3748
3825
|
|
3749
3826
|
/***/ },
|
3750
3827
|
|
3751
|
-
/***/
|
3828
|
+
/***/ 178:
|
3752
3829
|
/***/ function(module, exports) {
|
3753
3830
|
|
3754
3831
|
/**
|