react 16.0.0-alpha.3 → 16.0.0-alpha.4
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.
- package/dist/react-with-addons.js +209 -181
- package/dist/react-with-addons.min.js +2 -2
- package/dist/react.js +164 -136
- package/dist/react.min.js +2 -2
- package/lib/ReactAddonsDOMDependencies.js +1 -1
- package/lib/ReactClass.js +2 -2
- package/lib/ReactComponentTreeHook.js +8 -47
- package/lib/ReactDebugCurrentFrame.js +3 -1
- package/lib/ReactElementValidator.js +5 -3
- package/lib/ReactFiberComponentTreeHook.js +62 -0
- package/lib/ReactPropTypes.js +1 -1
- package/lib/ReactVersion.js +1 -1
- package/lib/traverseAllChildren.js +1 -1
- package/lib/update.js +2 -2
- package/package.json +1 -1
- package/lib/ReactStateSetters.js +0 -103
- package/lib/sliceChildren.js +0 -33
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* React (with addons) v16.0.0-alpha.
|
|
2
|
+
* React (with addons) v16.0.0-alpha.4
|
|
3
3
|
*/
|
|
4
4
|
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.React = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
|
|
5
5
|
/**
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
'use strict';
|
|
16
16
|
|
|
17
|
-
var ExecutionEnvironment = _dereq_(
|
|
17
|
+
var ExecutionEnvironment = _dereq_(43);
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
20
|
* Generate a mapping of standard vendor prefixes using the defined style property and event name.
|
|
@@ -102,7 +102,7 @@ function getVendorPrefixedEventName(eventName) {
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
module.exports = getVendorPrefixedEventName;
|
|
105
|
-
},{"
|
|
105
|
+
},{"43":43}],2:[function(_dereq_,module,exports){
|
|
106
106
|
/**
|
|
107
107
|
* Copyright 2013-present, Facebook, Inc.
|
|
108
108
|
* All rights reserved.
|
|
@@ -175,9 +175,9 @@ module.exports = KeyEscapeUtils;
|
|
|
175
175
|
|
|
176
176
|
'use strict';
|
|
177
177
|
|
|
178
|
-
var _prodInvariant = _dereq_(
|
|
178
|
+
var _prodInvariant = _dereq_(38);
|
|
179
179
|
|
|
180
|
-
var invariant = _dereq_(
|
|
180
|
+
var invariant = _dereq_(46);
|
|
181
181
|
|
|
182
182
|
/**
|
|
183
183
|
* Static poolers. Several custom versions for each potential number of
|
|
@@ -273,7 +273,7 @@ var PooledClass = {
|
|
|
273
273
|
};
|
|
274
274
|
|
|
275
275
|
module.exports = PooledClass;
|
|
276
|
-
},{"
|
|
276
|
+
},{"38":38,"46":46}],4:[function(_dereq_,module,exports){
|
|
277
277
|
/**
|
|
278
278
|
* Copyright 2013-present, Facebook, Inc.
|
|
279
279
|
* All rights reserved.
|
|
@@ -291,12 +291,12 @@ var ReactChildren = _dereq_(9);
|
|
|
291
291
|
var ReactClass = _dereq_(10);
|
|
292
292
|
var ReactDOMFactories = _dereq_(14);
|
|
293
293
|
var ReactElement = _dereq_(16);
|
|
294
|
-
var ReactPropTypes = _dereq_(
|
|
295
|
-
var ReactVersion = _dereq_(
|
|
294
|
+
var ReactPropTypes = _dereq_(22);
|
|
295
|
+
var ReactVersion = _dereq_(28);
|
|
296
296
|
|
|
297
|
-
var onlyChild = _dereq_(
|
|
298
|
-
var warning = _dereq_(
|
|
299
|
-
var checkPropTypes = _dereq_(
|
|
297
|
+
var onlyChild = _dereq_(37);
|
|
298
|
+
var warning = _dereq_(48);
|
|
299
|
+
var checkPropTypes = _dereq_(32);
|
|
300
300
|
|
|
301
301
|
var createElement = ReactElement.createElement;
|
|
302
302
|
var createFactory = ReactElement.createFactory;
|
|
@@ -360,7 +360,7 @@ var React = {
|
|
|
360
360
|
};
|
|
361
361
|
|
|
362
362
|
module.exports = React;
|
|
363
|
-
},{"10":10,"14":14,"16":16,"18":18,"
|
|
363
|
+
},{"10":10,"14":14,"16":16,"18":18,"22":22,"28":28,"32":32,"37":37,"48":48,"6":6,"9":9}],5:[function(_dereq_,module,exports){
|
|
364
364
|
/**
|
|
365
365
|
* Copyright 2013-present, Facebook, Inc.
|
|
366
366
|
* All rights reserved.
|
|
@@ -378,7 +378,7 @@ var ReactDOM;
|
|
|
378
378
|
function getReactDOM() {
|
|
379
379
|
if (!ReactDOM) {
|
|
380
380
|
// This is safe to use because current module only exists in the addons build:
|
|
381
|
-
var ReactWithAddonsUMDEntry = _dereq_(
|
|
381
|
+
var ReactWithAddonsUMDEntry = _dereq_(30);
|
|
382
382
|
// This is injected by the ReactDOM UMD build:
|
|
383
383
|
ReactDOM = ReactWithAddonsUMDEntry.__SECRET_INJECTED_REACT_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
384
384
|
}
|
|
@@ -396,7 +396,7 @@ if ("development" !== 'production') {
|
|
|
396
396
|
return getReactDOM().__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactTestUtils;
|
|
397
397
|
};
|
|
398
398
|
}
|
|
399
|
-
},{"
|
|
399
|
+
},{"30":30}],6:[function(_dereq_,module,exports){
|
|
400
400
|
/**
|
|
401
401
|
* Copyright 2013-present, Facebook, Inc.
|
|
402
402
|
* All rights reserved.
|
|
@@ -409,15 +409,15 @@ if ("development" !== 'production') {
|
|
|
409
409
|
|
|
410
410
|
'use strict';
|
|
411
411
|
|
|
412
|
-
var _prodInvariant = _dereq_(
|
|
413
|
-
_assign = _dereq_(
|
|
412
|
+
var _prodInvariant = _dereq_(38),
|
|
413
|
+
_assign = _dereq_(49);
|
|
414
414
|
|
|
415
|
-
var ReactNoopUpdateQueue = _dereq_(
|
|
415
|
+
var ReactNoopUpdateQueue = _dereq_(21);
|
|
416
416
|
|
|
417
|
-
var canDefineProperty = _dereq_(
|
|
418
|
-
var emptyObject = _dereq_(
|
|
419
|
-
var invariant = _dereq_(
|
|
420
|
-
var warning = _dereq_(
|
|
417
|
+
var canDefineProperty = _dereq_(31);
|
|
418
|
+
var emptyObject = _dereq_(45);
|
|
419
|
+
var invariant = _dereq_(46);
|
|
420
|
+
var warning = _dereq_(48);
|
|
421
421
|
|
|
422
422
|
/**
|
|
423
423
|
* Base class helpers for the updating state of a component.
|
|
@@ -533,7 +533,7 @@ module.exports = {
|
|
|
533
533
|
Component: ReactComponent,
|
|
534
534
|
PureComponent: ReactPureComponent
|
|
535
535
|
};
|
|
536
|
-
},{"
|
|
536
|
+
},{"21":21,"31":31,"38":38,"45":45,"46":46,"48":48,"49":49}],7:[function(_dereq_,module,exports){
|
|
537
537
|
/**
|
|
538
538
|
* Copyright 2013-present, Facebook, Inc.
|
|
539
539
|
* All rights reserved.
|
|
@@ -546,7 +546,7 @@ module.exports = {
|
|
|
546
546
|
|
|
547
547
|
'use strict';
|
|
548
548
|
|
|
549
|
-
var _assign = _dereq_(
|
|
549
|
+
var _assign = _dereq_(49);
|
|
550
550
|
|
|
551
551
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
552
552
|
|
|
@@ -556,7 +556,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
|
|
|
556
556
|
|
|
557
557
|
var React = _dereq_(4);
|
|
558
558
|
|
|
559
|
-
var ReactTransitionGroup = _dereq_(
|
|
559
|
+
var ReactTransitionGroup = _dereq_(26);
|
|
560
560
|
var ReactCSSTransitionGroupChild = _dereq_(8);
|
|
561
561
|
|
|
562
562
|
function createTransitionTimeoutPropValidator(transitionType) {
|
|
@@ -638,7 +638,7 @@ ReactCSSTransitionGroup.defaultProps = {
|
|
|
638
638
|
|
|
639
639
|
|
|
640
640
|
module.exports = ReactCSSTransitionGroup;
|
|
641
|
-
},{"
|
|
641
|
+
},{"26":26,"4":4,"49":49,"8":8}],8:[function(_dereq_,module,exports){
|
|
642
642
|
/**
|
|
643
643
|
* Copyright 2013-present, Facebook, Inc.
|
|
644
644
|
* All rights reserved.
|
|
@@ -654,10 +654,10 @@ module.exports = ReactCSSTransitionGroup;
|
|
|
654
654
|
var React = _dereq_(4);
|
|
655
655
|
var ReactAddonsDOMDependencies = _dereq_(5);
|
|
656
656
|
|
|
657
|
-
var CSSCore = _dereq_(
|
|
658
|
-
var ReactTransitionEvents = _dereq_(
|
|
657
|
+
var CSSCore = _dereq_(42);
|
|
658
|
+
var ReactTransitionEvents = _dereq_(25);
|
|
659
659
|
|
|
660
|
-
var onlyChild = _dereq_(
|
|
660
|
+
var onlyChild = _dereq_(37);
|
|
661
661
|
|
|
662
662
|
var TICK = 17;
|
|
663
663
|
|
|
@@ -805,7 +805,7 @@ var ReactCSSTransitionGroupChild = React.createClass({
|
|
|
805
805
|
});
|
|
806
806
|
|
|
807
807
|
module.exports = ReactCSSTransitionGroupChild;
|
|
808
|
-
},{"
|
|
808
|
+
},{"25":25,"37":37,"4":4,"42":42,"5":5}],9:[function(_dereq_,module,exports){
|
|
809
809
|
/**
|
|
810
810
|
* Copyright 2013-present, Facebook, Inc.
|
|
811
811
|
* All rights reserved.
|
|
@@ -821,8 +821,8 @@ module.exports = ReactCSSTransitionGroupChild;
|
|
|
821
821
|
var PooledClass = _dereq_(3);
|
|
822
822
|
var ReactElement = _dereq_(16);
|
|
823
823
|
|
|
824
|
-
var emptyFunction = _dereq_(
|
|
825
|
-
var traverseAllChildren = _dereq_(
|
|
824
|
+
var emptyFunction = _dereq_(44);
|
|
825
|
+
var traverseAllChildren = _dereq_(40);
|
|
826
826
|
|
|
827
827
|
var twoArgumentPooler = PooledClass.twoArgumentPooler;
|
|
828
828
|
var fourArgumentPooler = PooledClass.fourArgumentPooler;
|
|
@@ -996,7 +996,7 @@ var ReactChildren = {
|
|
|
996
996
|
};
|
|
997
997
|
|
|
998
998
|
module.exports = ReactChildren;
|
|
999
|
-
},{"16":16,"3":3,"
|
|
999
|
+
},{"16":16,"3":3,"40":40,"44":44}],10:[function(_dereq_,module,exports){
|
|
1000
1000
|
/**
|
|
1001
1001
|
* Copyright 2013-present, Facebook, Inc.
|
|
1002
1002
|
* All rights reserved.
|
|
@@ -1009,16 +1009,16 @@ module.exports = ReactChildren;
|
|
|
1009
1009
|
|
|
1010
1010
|
'use strict';
|
|
1011
1011
|
|
|
1012
|
-
var
|
|
1013
|
-
|
|
1012
|
+
var _assign = _dereq_(49),
|
|
1013
|
+
_prodInvariant = _dereq_(38);
|
|
1014
1014
|
|
|
1015
1015
|
var ReactBaseClasses = _dereq_(6);
|
|
1016
1016
|
var ReactElement = _dereq_(16);
|
|
1017
|
-
var ReactNoopUpdateQueue = _dereq_(
|
|
1017
|
+
var ReactNoopUpdateQueue = _dereq_(21);
|
|
1018
1018
|
|
|
1019
|
-
var emptyObject = _dereq_(
|
|
1020
|
-
var invariant = _dereq_(
|
|
1021
|
-
var warning = _dereq_(
|
|
1019
|
+
var emptyObject = _dereq_(45);
|
|
1020
|
+
var invariant = _dereq_(46);
|
|
1021
|
+
var warning = _dereq_(48);
|
|
1022
1022
|
|
|
1023
1023
|
var ReactComponent = ReactBaseClasses.Component;
|
|
1024
1024
|
|
|
@@ -1700,7 +1700,7 @@ var ReactClass = {
|
|
|
1700
1700
|
};
|
|
1701
1701
|
|
|
1702
1702
|
module.exports = ReactClass;
|
|
1703
|
-
},{"16":16,"
|
|
1703
|
+
},{"16":16,"21":21,"38":38,"45":45,"46":46,"48":48,"49":49,"6":6}],11:[function(_dereq_,module,exports){
|
|
1704
1704
|
/**
|
|
1705
1705
|
* Copyright 2016-present, Facebook, Inc.
|
|
1706
1706
|
* All rights reserved.
|
|
@@ -1714,19 +1714,17 @@ module.exports = ReactClass;
|
|
|
1714
1714
|
|
|
1715
1715
|
'use strict';
|
|
1716
1716
|
|
|
1717
|
-
var _prodInvariant = _dereq_(
|
|
1717
|
+
var _prodInvariant = _dereq_(38);
|
|
1718
1718
|
|
|
1719
1719
|
var ReactCurrentOwner = _dereq_(13);
|
|
1720
|
-
var ReactTypeOfWork = _dereq_(26);
|
|
1721
|
-
var IndeterminateComponent = ReactTypeOfWork.IndeterminateComponent,
|
|
1722
|
-
FunctionalComponent = ReactTypeOfWork.FunctionalComponent,
|
|
1723
|
-
ClassComponent = ReactTypeOfWork.ClassComponent,
|
|
1724
|
-
HostComponent = ReactTypeOfWork.HostComponent;
|
|
1725
1720
|
|
|
1721
|
+
var _require = _dereq_(19),
|
|
1722
|
+
getStackAddendumByWorkInProgressFiber = _require.getStackAddendumByWorkInProgressFiber,
|
|
1723
|
+
describeComponentFrame = _require.describeComponentFrame;
|
|
1726
1724
|
|
|
1727
|
-
var
|
|
1728
|
-
var
|
|
1729
|
-
var
|
|
1725
|
+
var invariant = _dereq_(46);
|
|
1726
|
+
var warning = _dereq_(48);
|
|
1727
|
+
var getComponentName = _dereq_(35);
|
|
1730
1728
|
|
|
1731
1729
|
function isNative(fn) {
|
|
1732
1730
|
// Based on isNative() from Lodash
|
|
@@ -1847,10 +1845,6 @@ function purgeDeep(id) {
|
|
|
1847
1845
|
}
|
|
1848
1846
|
}
|
|
1849
1847
|
|
|
1850
|
-
function describeComponentFrame(name, source, ownerName) {
|
|
1851
|
-
return '\n in ' + (name || 'Unknown') + (source ? ' (at ' + source.fileName.replace(/^.*[\\\/]/, '') + ':' + source.lineNumber + ')' : ownerName ? ' (created by ' + ownerName + ')' : '');
|
|
1852
|
-
}
|
|
1853
|
-
|
|
1854
1848
|
function getDisplayName(element) {
|
|
1855
1849
|
if (element == null) {
|
|
1856
1850
|
return '#empty';
|
|
@@ -1867,31 +1861,13 @@ function describeID(id) {
|
|
|
1867
1861
|
var name = ReactComponentTreeHook.getDisplayName(id);
|
|
1868
1862
|
var element = ReactComponentTreeHook.getElement(id);
|
|
1869
1863
|
var ownerID = ReactComponentTreeHook.getOwnerID(id);
|
|
1870
|
-
var ownerName;
|
|
1864
|
+
var ownerName = void 0;
|
|
1865
|
+
|
|
1871
1866
|
if (ownerID) {
|
|
1872
1867
|
ownerName = ReactComponentTreeHook.getDisplayName(ownerID);
|
|
1873
1868
|
}
|
|
1874
1869
|
"development" !== 'production' ? warning(element, 'ReactComponentTreeHook: Missing React element for debugID %s when ' + 'building stack', id) : void 0;
|
|
1875
|
-
return describeComponentFrame(name, element && element._source, ownerName);
|
|
1876
|
-
}
|
|
1877
|
-
|
|
1878
|
-
function describeFiber(fiber) {
|
|
1879
|
-
switch (fiber.tag) {
|
|
1880
|
-
case IndeterminateComponent:
|
|
1881
|
-
case FunctionalComponent:
|
|
1882
|
-
case ClassComponent:
|
|
1883
|
-
case HostComponent:
|
|
1884
|
-
var owner = fiber._debugOwner;
|
|
1885
|
-
var source = fiber._debugSource;
|
|
1886
|
-
var name = getComponentName(fiber);
|
|
1887
|
-
var ownerName = null;
|
|
1888
|
-
if (owner) {
|
|
1889
|
-
ownerName = getComponentName(owner);
|
|
1890
|
-
}
|
|
1891
|
-
return describeComponentFrame(name, source, ownerName);
|
|
1892
|
-
default:
|
|
1893
|
-
return '';
|
|
1894
|
-
}
|
|
1870
|
+
return describeComponentFrame(name || '', element && element._source, ownerName || '');
|
|
1895
1871
|
}
|
|
1896
1872
|
|
|
1897
1873
|
var ReactComponentTreeHook = {
|
|
@@ -1999,7 +1975,7 @@ var ReactComponentTreeHook = {
|
|
|
1999
1975
|
var workInProgress = currentOwner;
|
|
2000
1976
|
// Safe because if current owner exists, we are reconciling,
|
|
2001
1977
|
// and it is guaranteed to be the work-in-progress version.
|
|
2002
|
-
info +=
|
|
1978
|
+
info += getStackAddendumByWorkInProgressFiber(workInProgress);
|
|
2003
1979
|
} else if (typeof currentOwner._debugID === 'number') {
|
|
2004
1980
|
info += ReactComponentTreeHook.getStackAddendumByID(currentOwner._debugID);
|
|
2005
1981
|
}
|
|
@@ -2014,21 +1990,6 @@ var ReactComponentTreeHook = {
|
|
|
2014
1990
|
}
|
|
2015
1991
|
return info;
|
|
2016
1992
|
},
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
// This function can only be called with a work-in-progress fiber and
|
|
2020
|
-
// only during begin or complete phase. Do not call it under any other
|
|
2021
|
-
// circumstances.
|
|
2022
|
-
getStackAddendumByWorkInProgressFiber: function (workInProgress) {
|
|
2023
|
-
var info = '';
|
|
2024
|
-
var node = workInProgress;
|
|
2025
|
-
do {
|
|
2026
|
-
info += describeFiber(node);
|
|
2027
|
-
// Otherwise this return pointer might point to the wrong tree:
|
|
2028
|
-
node = node['return'];
|
|
2029
|
-
} while (node);
|
|
2030
|
-
return info;
|
|
2031
|
-
},
|
|
2032
1993
|
getChildIDs: function (id) {
|
|
2033
1994
|
var item = getItem(id);
|
|
2034
1995
|
return item ? item.childIDs : [];
|
|
@@ -2082,7 +2043,7 @@ var ReactComponentTreeHook = {
|
|
|
2082
2043
|
};
|
|
2083
2044
|
|
|
2084
2045
|
module.exports = ReactComponentTreeHook;
|
|
2085
|
-
},{"13":13,"
|
|
2046
|
+
},{"13":13,"19":19,"35":35,"38":38,"46":46,"48":48}],12:[function(_dereq_,module,exports){
|
|
2086
2047
|
/**
|
|
2087
2048
|
* Copyright 2013-present, Facebook, Inc.
|
|
2088
2049
|
* All rights reserved.
|
|
@@ -2095,7 +2056,7 @@ module.exports = ReactComponentTreeHook;
|
|
|
2095
2056
|
|
|
2096
2057
|
'use strict';
|
|
2097
2058
|
|
|
2098
|
-
var shallowCompare = _dereq_(
|
|
2059
|
+
var shallowCompare = _dereq_(39);
|
|
2099
2060
|
|
|
2100
2061
|
/**
|
|
2101
2062
|
* If your React component's render function is "pure", e.g. it will render the
|
|
@@ -2130,7 +2091,7 @@ var ReactComponentWithPureRenderMixin = {
|
|
|
2130
2091
|
};
|
|
2131
2092
|
|
|
2132
2093
|
module.exports = ReactComponentWithPureRenderMixin;
|
|
2133
|
-
},{"
|
|
2094
|
+
},{"39":39}],13:[function(_dereq_,module,exports){
|
|
2134
2095
|
/**
|
|
2135
2096
|
* Copyright 2013-present, Facebook, Inc.
|
|
2136
2097
|
* All rights reserved.
|
|
@@ -2350,9 +2311,11 @@ var ReactDebugCurrentFrame = {};
|
|
|
2350
2311
|
if ("development" !== 'production') {
|
|
2351
2312
|
var _require = _dereq_(11),
|
|
2352
2313
|
getStackAddendumByID = _require.getStackAddendumByID,
|
|
2353
|
-
getStackAddendumByWorkInProgressFiber = _require.getStackAddendumByWorkInProgressFiber,
|
|
2354
2314
|
getCurrentStackAddendum = _require.getCurrentStackAddendum;
|
|
2355
2315
|
|
|
2316
|
+
var _require2 = _dereq_(19),
|
|
2317
|
+
getStackAddendumByWorkInProgressFiber = _require2.getStackAddendumByWorkInProgressFiber;
|
|
2318
|
+
|
|
2356
2319
|
// Component that is being worked on
|
|
2357
2320
|
|
|
2358
2321
|
|
|
@@ -2385,7 +2348,7 @@ if ("development" !== 'production') {
|
|
|
2385
2348
|
}
|
|
2386
2349
|
|
|
2387
2350
|
module.exports = ReactDebugCurrentFrame;
|
|
2388
|
-
},{"11":11}],16:[function(_dereq_,module,exports){
|
|
2351
|
+
},{"11":11,"19":19}],16:[function(_dereq_,module,exports){
|
|
2389
2352
|
/**
|
|
2390
2353
|
* Copyright 2014-present, Facebook, Inc.
|
|
2391
2354
|
* All rights reserved.
|
|
@@ -2398,12 +2361,12 @@ module.exports = ReactDebugCurrentFrame;
|
|
|
2398
2361
|
|
|
2399
2362
|
'use strict';
|
|
2400
2363
|
|
|
2401
|
-
var _assign = _dereq_(
|
|
2364
|
+
var _assign = _dereq_(49);
|
|
2402
2365
|
|
|
2403
2366
|
var ReactCurrentOwner = _dereq_(13);
|
|
2404
2367
|
|
|
2405
|
-
var warning = _dereq_(
|
|
2406
|
-
var canDefineProperty = _dereq_(
|
|
2368
|
+
var warning = _dereq_(48);
|
|
2369
|
+
var canDefineProperty = _dereq_(31);
|
|
2407
2370
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
2408
2371
|
|
|
2409
2372
|
var REACT_ELEMENT_TYPE = _dereq_(17);
|
|
@@ -2726,7 +2689,7 @@ ReactElement.isValidElement = function (object) {
|
|
|
2726
2689
|
};
|
|
2727
2690
|
|
|
2728
2691
|
module.exports = ReactElement;
|
|
2729
|
-
},{"13":13,"17":17,"
|
|
2692
|
+
},{"13":13,"17":17,"31":31,"48":48,"49":49}],17:[function(_dereq_,module,exports){
|
|
2730
2693
|
/**
|
|
2731
2694
|
* Copyright 2014-present, Facebook, Inc.
|
|
2732
2695
|
* All rights reserved.
|
|
@@ -2767,18 +2730,20 @@ module.exports = REACT_ELEMENT_TYPE;
|
|
|
2767
2730
|
'use strict';
|
|
2768
2731
|
|
|
2769
2732
|
var ReactCurrentOwner = _dereq_(13);
|
|
2770
|
-
var ReactComponentTreeHook = _dereq_(11);
|
|
2771
2733
|
var ReactElement = _dereq_(16);
|
|
2772
2734
|
|
|
2773
|
-
var checkReactTypeSpec = _dereq_(
|
|
2735
|
+
var checkReactTypeSpec = _dereq_(33);
|
|
2774
2736
|
|
|
2775
|
-
var canDefineProperty = _dereq_(
|
|
2776
|
-
var getComponentName = _dereq_(
|
|
2777
|
-
var getIteratorFn = _dereq_(
|
|
2737
|
+
var canDefineProperty = _dereq_(31);
|
|
2738
|
+
var getComponentName = _dereq_(35);
|
|
2739
|
+
var getIteratorFn = _dereq_(36);
|
|
2778
2740
|
|
|
2779
2741
|
if ("development" !== 'production') {
|
|
2780
|
-
var warning = _dereq_(
|
|
2742
|
+
var warning = _dereq_(48);
|
|
2781
2743
|
var ReactDebugCurrentFrame = _dereq_(15);
|
|
2744
|
+
|
|
2745
|
+
var _require = _dereq_(11),
|
|
2746
|
+
getCurrentStackAddendum = _require.getCurrentStackAddendum;
|
|
2782
2747
|
}
|
|
2783
2748
|
|
|
2784
2749
|
function getDeclarationErrorAddendum() {
|
|
@@ -2854,7 +2819,7 @@ function validateExplicitKey(element, parentType) {
|
|
|
2854
2819
|
childOwner = ' It was passed a child from ' + getComponentName(element._owner) + '.';
|
|
2855
2820
|
}
|
|
2856
2821
|
|
|
2857
|
-
"development" !== 'production' ? warning(false, 'Each child in an array or iterator should have a unique "key" prop.' + '%s%s See https://fb.me/react-warning-keys for more information.%s', currentComponentErrorInfo, childOwner,
|
|
2822
|
+
"development" !== 'production' ? warning(false, 'Each child in an array or iterator should have a unique "key" prop.' + '%s%s See https://fb.me/react-warning-keys for more information.%s', currentComponentErrorInfo, childOwner, getCurrentStackAddendum(element)) : void 0;
|
|
2858
2823
|
}
|
|
2859
2824
|
|
|
2860
2825
|
/**
|
|
@@ -2938,7 +2903,7 @@ var ReactElementValidator = {
|
|
|
2938
2903
|
info += getDeclarationErrorAddendum();
|
|
2939
2904
|
}
|
|
2940
2905
|
|
|
2941
|
-
info +=
|
|
2906
|
+
info += getCurrentStackAddendum();
|
|
2942
2907
|
|
|
2943
2908
|
"development" !== 'production' ? warning(false, 'React.createElement: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', type == null ? type : typeof type, info) : void 0;
|
|
2944
2909
|
}
|
|
@@ -3016,7 +2981,70 @@ var ReactElementValidator = {
|
|
|
3016
2981
|
};
|
|
3017
2982
|
|
|
3018
2983
|
module.exports = ReactElementValidator;
|
|
3019
|
-
},{"11":11,"13":13,"15":15,"16":16,"
|
|
2984
|
+
},{"11":11,"13":13,"15":15,"16":16,"31":31,"33":33,"35":35,"36":36,"48":48}],19:[function(_dereq_,module,exports){
|
|
2985
|
+
/**
|
|
2986
|
+
* Copyright 2016-present, Facebook, Inc.
|
|
2987
|
+
* All rights reserved.
|
|
2988
|
+
*
|
|
2989
|
+
* This source code is licensed under the BSD-style license found in the
|
|
2990
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
2991
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2992
|
+
*
|
|
2993
|
+
*
|
|
2994
|
+
*/
|
|
2995
|
+
|
|
2996
|
+
'use strict';
|
|
2997
|
+
|
|
2998
|
+
var ReactTypeOfWork = _dereq_(27);
|
|
2999
|
+
var IndeterminateComponent = ReactTypeOfWork.IndeterminateComponent,
|
|
3000
|
+
FunctionalComponent = ReactTypeOfWork.FunctionalComponent,
|
|
3001
|
+
ClassComponent = ReactTypeOfWork.ClassComponent,
|
|
3002
|
+
HostComponent = ReactTypeOfWork.HostComponent;
|
|
3003
|
+
|
|
3004
|
+
var getComponentName = _dereq_(35);
|
|
3005
|
+
|
|
3006
|
+
function describeComponentFrame(name, source, ownerName) {
|
|
3007
|
+
return '\n in ' + (name || 'Unknown') + (source ? ' (at ' + source.fileName.replace(/^.*[\\\/]/, '') + ':' + source.lineNumber + ')' : ownerName ? ' (created by ' + ownerName + ')' : '');
|
|
3008
|
+
}
|
|
3009
|
+
|
|
3010
|
+
function describeFiber(fiber) {
|
|
3011
|
+
switch (fiber.tag) {
|
|
3012
|
+
case IndeterminateComponent:
|
|
3013
|
+
case FunctionalComponent:
|
|
3014
|
+
case ClassComponent:
|
|
3015
|
+
case HostComponent:
|
|
3016
|
+
var owner = fiber._debugOwner;
|
|
3017
|
+
var source = fiber._debugSource;
|
|
3018
|
+
var name = getComponentName(fiber);
|
|
3019
|
+
var ownerName = null;
|
|
3020
|
+
if (owner) {
|
|
3021
|
+
ownerName = getComponentName(owner);
|
|
3022
|
+
}
|
|
3023
|
+
return describeComponentFrame(name, source, ownerName);
|
|
3024
|
+
default:
|
|
3025
|
+
return '';
|
|
3026
|
+
}
|
|
3027
|
+
}
|
|
3028
|
+
|
|
3029
|
+
// This function can only be called with a work-in-progress fiber and
|
|
3030
|
+
// only during begin or complete phase. Do not call it under any other
|
|
3031
|
+
// circumstances.
|
|
3032
|
+
function getStackAddendumByWorkInProgressFiber(workInProgress) {
|
|
3033
|
+
var info = '';
|
|
3034
|
+
var node = workInProgress;
|
|
3035
|
+
do {
|
|
3036
|
+
info += describeFiber(node);
|
|
3037
|
+
// Otherwise this return pointer might point to the wrong tree:
|
|
3038
|
+
node = node['return'];
|
|
3039
|
+
} while (node);
|
|
3040
|
+
return info;
|
|
3041
|
+
}
|
|
3042
|
+
|
|
3043
|
+
module.exports = {
|
|
3044
|
+
getStackAddendumByWorkInProgressFiber: getStackAddendumByWorkInProgressFiber,
|
|
3045
|
+
describeComponentFrame: describeComponentFrame
|
|
3046
|
+
};
|
|
3047
|
+
},{"27":27,"35":35}],20:[function(_dereq_,module,exports){
|
|
3020
3048
|
/**
|
|
3021
3049
|
* Copyright 2015-present, Facebook, Inc.
|
|
3022
3050
|
* All rights reserved.
|
|
@@ -3029,14 +3057,14 @@ module.exports = ReactElementValidator;
|
|
|
3029
3057
|
|
|
3030
3058
|
'use strict';
|
|
3031
3059
|
|
|
3032
|
-
var _prodInvariant = _dereq_(
|
|
3060
|
+
var _prodInvariant = _dereq_(38);
|
|
3033
3061
|
|
|
3034
3062
|
var ReactChildren = _dereq_(9);
|
|
3035
3063
|
var ReactElement = _dereq_(16);
|
|
3036
3064
|
|
|
3037
|
-
var emptyFunction = _dereq_(
|
|
3038
|
-
var invariant = _dereq_(
|
|
3039
|
-
var warning = _dereq_(
|
|
3065
|
+
var emptyFunction = _dereq_(44);
|
|
3066
|
+
var invariant = _dereq_(46);
|
|
3067
|
+
var warning = _dereq_(48);
|
|
3040
3068
|
|
|
3041
3069
|
/**
|
|
3042
3070
|
* We used to allow keyed objects to serve as a collection of ReactElements,
|
|
@@ -3085,7 +3113,7 @@ var ReactFragment = {
|
|
|
3085
3113
|
};
|
|
3086
3114
|
|
|
3087
3115
|
module.exports = ReactFragment;
|
|
3088
|
-
},{"16":16,"
|
|
3116
|
+
},{"16":16,"38":38,"44":44,"46":46,"48":48,"9":9}],21:[function(_dereq_,module,exports){
|
|
3089
3117
|
/**
|
|
3090
3118
|
* Copyright 2015-present, Facebook, Inc.
|
|
3091
3119
|
* All rights reserved.
|
|
@@ -3098,7 +3126,7 @@ module.exports = ReactFragment;
|
|
|
3098
3126
|
|
|
3099
3127
|
'use strict';
|
|
3100
3128
|
|
|
3101
|
-
var warning = _dereq_(
|
|
3129
|
+
var warning = _dereq_(48);
|
|
3102
3130
|
|
|
3103
3131
|
function warnNoop(publicInstance, callerName) {
|
|
3104
3132
|
if ("development" !== 'production') {
|
|
@@ -3177,7 +3205,7 @@ var ReactNoopUpdateQueue = {
|
|
|
3177
3205
|
};
|
|
3178
3206
|
|
|
3179
3207
|
module.exports = ReactNoopUpdateQueue;
|
|
3180
|
-
},{"
|
|
3208
|
+
},{"48":48}],22:[function(_dereq_,module,exports){
|
|
3181
3209
|
/**
|
|
3182
3210
|
* Copyright 2013-present, Facebook, Inc.
|
|
3183
3211
|
* All rights reserved.
|
|
@@ -3190,15 +3218,15 @@ module.exports = ReactNoopUpdateQueue;
|
|
|
3190
3218
|
|
|
3191
3219
|
'use strict';
|
|
3192
3220
|
|
|
3193
|
-
var _prodInvariant = _dereq_(
|
|
3221
|
+
var _prodInvariant = _dereq_(38);
|
|
3194
3222
|
|
|
3195
3223
|
var ReactElement = _dereq_(16);
|
|
3196
|
-
var ReactPropTypesSecret = _dereq_(
|
|
3224
|
+
var ReactPropTypesSecret = _dereq_(23);
|
|
3197
3225
|
|
|
3198
|
-
var emptyFunction = _dereq_(
|
|
3199
|
-
var getIteratorFn = _dereq_(
|
|
3200
|
-
var invariant = _dereq_(
|
|
3201
|
-
var warning = _dereq_(
|
|
3226
|
+
var emptyFunction = _dereq_(44);
|
|
3227
|
+
var getIteratorFn = _dereq_(36);
|
|
3228
|
+
var invariant = _dereq_(46);
|
|
3229
|
+
var warning = _dereq_(48);
|
|
3202
3230
|
|
|
3203
3231
|
/**
|
|
3204
3232
|
* Collection of methods that allow declaration and validation of props that are
|
|
@@ -3274,7 +3302,7 @@ if ("development" !== 'production') {
|
|
|
3274
3302
|
};
|
|
3275
3303
|
} else {
|
|
3276
3304
|
var productionTypeChecker = function () {
|
|
3277
|
-
invariant(false, 'React.PropTypes type checking code is stripped in production.');
|
|
3305
|
+
!false ? "development" !== 'production' ? invariant(false, 'React.PropTypes type checking code is stripped in production.') : _prodInvariant('144') : void 0;
|
|
3278
3306
|
};
|
|
3279
3307
|
productionTypeChecker.isRequired = productionTypeChecker;
|
|
3280
3308
|
var getProductionTypeChecker = function () {
|
|
@@ -3636,7 +3664,7 @@ function getClassName(propValue) {
|
|
|
3636
3664
|
}
|
|
3637
3665
|
|
|
3638
3666
|
module.exports = ReactPropTypes;
|
|
3639
|
-
},{"16":16,"
|
|
3667
|
+
},{"16":16,"23":23,"36":36,"38":38,"44":44,"46":46,"48":48}],23:[function(_dereq_,module,exports){
|
|
3640
3668
|
/**
|
|
3641
3669
|
* Copyright 2013-present, Facebook, Inc.
|
|
3642
3670
|
* All rights reserved.
|
|
@@ -3653,7 +3681,7 @@ module.exports = ReactPropTypes;
|
|
|
3653
3681
|
var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
|
|
3654
3682
|
|
|
3655
3683
|
module.exports = ReactPropTypesSecret;
|
|
3656
|
-
},{}],
|
|
3684
|
+
},{}],24:[function(_dereq_,module,exports){
|
|
3657
3685
|
/**
|
|
3658
3686
|
* Copyright 2013-present, Facebook, Inc.
|
|
3659
3687
|
* All rights reserved.
|
|
@@ -3666,7 +3694,7 @@ module.exports = ReactPropTypesSecret;
|
|
|
3666
3694
|
|
|
3667
3695
|
'use strict';
|
|
3668
3696
|
|
|
3669
|
-
var flattenChildren = _dereq_(
|
|
3697
|
+
var flattenChildren = _dereq_(34);
|
|
3670
3698
|
|
|
3671
3699
|
var ReactTransitionChildMapping = {
|
|
3672
3700
|
/**
|
|
@@ -3756,7 +3784,7 @@ var ReactTransitionChildMapping = {
|
|
|
3756
3784
|
};
|
|
3757
3785
|
|
|
3758
3786
|
module.exports = ReactTransitionChildMapping;
|
|
3759
|
-
},{"
|
|
3787
|
+
},{"34":34}],25:[function(_dereq_,module,exports){
|
|
3760
3788
|
/**
|
|
3761
3789
|
* Copyright 2013-present, Facebook, Inc.
|
|
3762
3790
|
* All rights reserved.
|
|
@@ -3769,7 +3797,7 @@ module.exports = ReactTransitionChildMapping;
|
|
|
3769
3797
|
|
|
3770
3798
|
'use strict';
|
|
3771
3799
|
|
|
3772
|
-
var ExecutionEnvironment = _dereq_(
|
|
3800
|
+
var ExecutionEnvironment = _dereq_(43);
|
|
3773
3801
|
|
|
3774
3802
|
var getVendorPrefixedEventName = _dereq_(1);
|
|
3775
3803
|
|
|
@@ -3829,7 +3857,7 @@ var ReactTransitionEvents = {
|
|
|
3829
3857
|
};
|
|
3830
3858
|
|
|
3831
3859
|
module.exports = ReactTransitionEvents;
|
|
3832
|
-
},{"1":1,"
|
|
3860
|
+
},{"1":1,"43":43}],26:[function(_dereq_,module,exports){
|
|
3833
3861
|
/**
|
|
3834
3862
|
* Copyright 2013-present, Facebook, Inc.
|
|
3835
3863
|
* All rights reserved.
|
|
@@ -3842,7 +3870,7 @@ module.exports = ReactTransitionEvents;
|
|
|
3842
3870
|
|
|
3843
3871
|
'use strict';
|
|
3844
3872
|
|
|
3845
|
-
var _assign = _dereq_(
|
|
3873
|
+
var _assign = _dereq_(49);
|
|
3846
3874
|
|
|
3847
3875
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
3848
3876
|
|
|
@@ -3851,9 +3879,9 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
|
|
|
3851
3879
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
|
3852
3880
|
|
|
3853
3881
|
var React = _dereq_(4);
|
|
3854
|
-
var ReactTransitionChildMapping = _dereq_(
|
|
3882
|
+
var ReactTransitionChildMapping = _dereq_(24);
|
|
3855
3883
|
|
|
3856
|
-
var emptyFunction = _dereq_(
|
|
3884
|
+
var emptyFunction = _dereq_(44);
|
|
3857
3885
|
|
|
3858
3886
|
/**
|
|
3859
3887
|
* A basis for animations. When children are declaratively added or removed,
|
|
@@ -4058,7 +4086,7 @@ ReactTransitionGroup.defaultProps = {
|
|
|
4058
4086
|
|
|
4059
4087
|
|
|
4060
4088
|
module.exports = ReactTransitionGroup;
|
|
4061
|
-
},{"
|
|
4089
|
+
},{"24":24,"4":4,"44":44,"49":49}],27:[function(_dereq_,module,exports){
|
|
4062
4090
|
/**
|
|
4063
4091
|
* Copyright 2013-present, Facebook, Inc.
|
|
4064
4092
|
* All rights reserved.
|
|
@@ -4085,7 +4113,7 @@ module.exports = {
|
|
|
4085
4113
|
YieldComponent: 9,
|
|
4086
4114
|
Fragment: 10
|
|
4087
4115
|
};
|
|
4088
|
-
},{}],
|
|
4116
|
+
},{}],28:[function(_dereq_,module,exports){
|
|
4089
4117
|
/**
|
|
4090
4118
|
* Copyright 2013-present, Facebook, Inc.
|
|
4091
4119
|
* All rights reserved.
|
|
@@ -4098,8 +4126,8 @@ module.exports = {
|
|
|
4098
4126
|
|
|
4099
4127
|
'use strict';
|
|
4100
4128
|
|
|
4101
|
-
module.exports = '16.0.0-alpha.
|
|
4102
|
-
},{}],
|
|
4129
|
+
module.exports = '16.0.0-alpha.4';
|
|
4130
|
+
},{}],29:[function(_dereq_,module,exports){
|
|
4103
4131
|
/**
|
|
4104
4132
|
* Copyright 2013-present, Facebook, Inc.
|
|
4105
4133
|
* All rights reserved.
|
|
@@ -4116,11 +4144,11 @@ var React = _dereq_(4);
|
|
|
4116
4144
|
var ReactAddonsDOMDependencies = _dereq_(5);
|
|
4117
4145
|
var ReactComponentWithPureRenderMixin = _dereq_(12);
|
|
4118
4146
|
var ReactCSSTransitionGroup = _dereq_(7);
|
|
4119
|
-
var ReactFragment = _dereq_(
|
|
4120
|
-
var ReactTransitionGroup = _dereq_(
|
|
4147
|
+
var ReactFragment = _dereq_(20);
|
|
4148
|
+
var ReactTransitionGroup = _dereq_(26);
|
|
4121
4149
|
|
|
4122
|
-
var shallowCompare = _dereq_(
|
|
4123
|
-
var update = _dereq_(
|
|
4150
|
+
var shallowCompare = _dereq_(39);
|
|
4151
|
+
var update = _dereq_(41);
|
|
4124
4152
|
|
|
4125
4153
|
React.addons = {
|
|
4126
4154
|
CSSTransitionGroup: ReactCSSTransitionGroup,
|
|
@@ -4150,7 +4178,7 @@ if ("development" !== 'production') {
|
|
|
4150
4178
|
}
|
|
4151
4179
|
|
|
4152
4180
|
module.exports = React;
|
|
4153
|
-
},{"12":12,"
|
|
4181
|
+
},{"12":12,"20":20,"26":26,"39":39,"4":4,"41":41,"5":5,"7":7}],30:[function(_dereq_,module,exports){
|
|
4154
4182
|
/**
|
|
4155
4183
|
* Copyright 2013-present, Facebook, Inc.
|
|
4156
4184
|
* All rights reserved.
|
|
@@ -4163,9 +4191,9 @@ module.exports = React;
|
|
|
4163
4191
|
|
|
4164
4192
|
'use strict';
|
|
4165
4193
|
|
|
4166
|
-
var _assign = _dereq_(
|
|
4194
|
+
var _assign = _dereq_(49);
|
|
4167
4195
|
|
|
4168
|
-
var ReactWithAddons = _dereq_(
|
|
4196
|
+
var ReactWithAddons = _dereq_(29);
|
|
4169
4197
|
|
|
4170
4198
|
// `version` will be added here by the React module.
|
|
4171
4199
|
var ReactWithAddonsUMDEntry = _assign({
|
|
@@ -4183,7 +4211,7 @@ if ("development" !== 'production') {
|
|
|
4183
4211
|
}
|
|
4184
4212
|
|
|
4185
4213
|
module.exports = ReactWithAddonsUMDEntry;
|
|
4186
|
-
},{"11":11,"13":13,"
|
|
4214
|
+
},{"11":11,"13":13,"29":29,"49":49}],31:[function(_dereq_,module,exports){
|
|
4187
4215
|
/**
|
|
4188
4216
|
* Copyright 2013-present, Facebook, Inc.
|
|
4189
4217
|
* All rights reserved.
|
|
@@ -4209,7 +4237,7 @@ if ("development" !== 'production') {
|
|
|
4209
4237
|
}
|
|
4210
4238
|
|
|
4211
4239
|
module.exports = canDefineProperty;
|
|
4212
|
-
},{}],
|
|
4240
|
+
},{}],32:[function(_dereq_,module,exports){
|
|
4213
4241
|
/**
|
|
4214
4242
|
* Copyright 2013-present, Facebook, Inc.
|
|
4215
4243
|
* All rights reserved.
|
|
@@ -4222,12 +4250,12 @@ module.exports = canDefineProperty;
|
|
|
4222
4250
|
|
|
4223
4251
|
'use strict';
|
|
4224
4252
|
|
|
4225
|
-
var _prodInvariant = _dereq_(
|
|
4253
|
+
var _prodInvariant = _dereq_(38);
|
|
4226
4254
|
|
|
4227
|
-
var ReactPropTypesSecret = _dereq_(
|
|
4255
|
+
var ReactPropTypesSecret = _dereq_(23);
|
|
4228
4256
|
|
|
4229
|
-
var invariant = _dereq_(
|
|
4230
|
-
var warning = _dereq_(
|
|
4257
|
+
var invariant = _dereq_(46);
|
|
4258
|
+
var warning = _dereq_(48);
|
|
4231
4259
|
|
|
4232
4260
|
var loggedTypeFailures = {};
|
|
4233
4261
|
|
|
@@ -4274,7 +4302,7 @@ function checkPropTypes(typeSpecs, values, location, componentName, getStack) {
|
|
|
4274
4302
|
}
|
|
4275
4303
|
|
|
4276
4304
|
module.exports = checkPropTypes;
|
|
4277
|
-
},{"
|
|
4305
|
+
},{"23":23,"38":38,"46":46,"48":48}],33:[function(_dereq_,module,exports){
|
|
4278
4306
|
/**
|
|
4279
4307
|
* Copyright 2013-present, Facebook, Inc.
|
|
4280
4308
|
* All rights reserved.
|
|
@@ -4287,7 +4315,7 @@ module.exports = checkPropTypes;
|
|
|
4287
4315
|
|
|
4288
4316
|
'use strict';
|
|
4289
4317
|
|
|
4290
|
-
var checkPropTypes = _dereq_(
|
|
4318
|
+
var checkPropTypes = _dereq_(32);
|
|
4291
4319
|
|
|
4292
4320
|
var _require = _dereq_(15),
|
|
4293
4321
|
getStackAddendum = _require.getStackAddendum;
|
|
@@ -4297,7 +4325,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName) {
|
|
|
4297
4325
|
}
|
|
4298
4326
|
|
|
4299
4327
|
module.exports = checkReactTypeSpec;
|
|
4300
|
-
},{"15":15,"
|
|
4328
|
+
},{"15":15,"32":32}],34:[function(_dereq_,module,exports){
|
|
4301
4329
|
(function (process){
|
|
4302
4330
|
/**
|
|
4303
4331
|
* Copyright 2013-present, Facebook, Inc.
|
|
@@ -4313,8 +4341,8 @@ module.exports = checkReactTypeSpec;
|
|
|
4313
4341
|
'use strict';
|
|
4314
4342
|
|
|
4315
4343
|
var KeyEscapeUtils = _dereq_(2);
|
|
4316
|
-
var traverseAllChildren = _dereq_(
|
|
4317
|
-
var warning = _dereq_(
|
|
4344
|
+
var traverseAllChildren = _dereq_(40);
|
|
4345
|
+
var warning = _dereq_(48);
|
|
4318
4346
|
|
|
4319
4347
|
var ReactComponentTreeHook;
|
|
4320
4348
|
|
|
@@ -4375,7 +4403,7 @@ function flattenChildren(children, selfDebugID) {
|
|
|
4375
4403
|
|
|
4376
4404
|
module.exports = flattenChildren;
|
|
4377
4405
|
}).call(this,undefined)
|
|
4378
|
-
},{"11":11,"2":2,"
|
|
4406
|
+
},{"11":11,"2":2,"40":40,"48":48}],35:[function(_dereq_,module,exports){
|
|
4379
4407
|
/**
|
|
4380
4408
|
* Copyright 2013-present, Facebook, Inc.
|
|
4381
4409
|
* All rights reserved.
|
|
@@ -4411,7 +4439,7 @@ function getComponentName(instanceOrFiber) {
|
|
|
4411
4439
|
}
|
|
4412
4440
|
|
|
4413
4441
|
module.exports = getComponentName;
|
|
4414
|
-
},{}],
|
|
4442
|
+
},{}],36:[function(_dereq_,module,exports){
|
|
4415
4443
|
/**
|
|
4416
4444
|
* Copyright 2013-present, Facebook, Inc.
|
|
4417
4445
|
* All rights reserved.
|
|
@@ -4452,7 +4480,7 @@ function getIteratorFn(maybeIterable) {
|
|
|
4452
4480
|
}
|
|
4453
4481
|
|
|
4454
4482
|
module.exports = getIteratorFn;
|
|
4455
|
-
},{}],
|
|
4483
|
+
},{}],37:[function(_dereq_,module,exports){
|
|
4456
4484
|
/**
|
|
4457
4485
|
* Copyright 2013-present, Facebook, Inc.
|
|
4458
4486
|
* All rights reserved.
|
|
@@ -4464,11 +4492,11 @@ module.exports = getIteratorFn;
|
|
|
4464
4492
|
*/
|
|
4465
4493
|
'use strict';
|
|
4466
4494
|
|
|
4467
|
-
var _prodInvariant = _dereq_(
|
|
4495
|
+
var _prodInvariant = _dereq_(38);
|
|
4468
4496
|
|
|
4469
4497
|
var ReactElement = _dereq_(16);
|
|
4470
4498
|
|
|
4471
|
-
var invariant = _dereq_(
|
|
4499
|
+
var invariant = _dereq_(46);
|
|
4472
4500
|
|
|
4473
4501
|
/**
|
|
4474
4502
|
* Returns the first child in a collection of children and verifies that there
|
|
@@ -4490,7 +4518,7 @@ function onlyChild(children) {
|
|
|
4490
4518
|
}
|
|
4491
4519
|
|
|
4492
4520
|
module.exports = onlyChild;
|
|
4493
|
-
},{"16":16,"
|
|
4521
|
+
},{"16":16,"38":38,"46":46}],38:[function(_dereq_,module,exports){
|
|
4494
4522
|
/**
|
|
4495
4523
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
4496
4524
|
* All rights reserved.
|
|
@@ -4529,7 +4557,7 @@ function reactProdInvariant(code) {
|
|
|
4529
4557
|
}
|
|
4530
4558
|
|
|
4531
4559
|
module.exports = reactProdInvariant;
|
|
4532
|
-
},{}],
|
|
4560
|
+
},{}],39:[function(_dereq_,module,exports){
|
|
4533
4561
|
/**
|
|
4534
4562
|
* Copyright 2013-present, Facebook, Inc.
|
|
4535
4563
|
* All rights reserved.
|
|
@@ -4542,7 +4570,7 @@ module.exports = reactProdInvariant;
|
|
|
4542
4570
|
|
|
4543
4571
|
'use strict';
|
|
4544
4572
|
|
|
4545
|
-
var shallowEqual = _dereq_(
|
|
4573
|
+
var shallowEqual = _dereq_(47);
|
|
4546
4574
|
|
|
4547
4575
|
/**
|
|
4548
4576
|
* Does a shallow comparison for props and state.
|
|
@@ -4554,7 +4582,7 @@ function shallowCompare(instance, nextProps, nextState) {
|
|
|
4554
4582
|
}
|
|
4555
4583
|
|
|
4556
4584
|
module.exports = shallowCompare;
|
|
4557
|
-
},{"
|
|
4585
|
+
},{"47":47}],40:[function(_dereq_,module,exports){
|
|
4558
4586
|
/**
|
|
4559
4587
|
* Copyright 2013-present, Facebook, Inc.
|
|
4560
4588
|
* All rights reserved.
|
|
@@ -4567,15 +4595,15 @@ module.exports = shallowCompare;
|
|
|
4567
4595
|
|
|
4568
4596
|
'use strict';
|
|
4569
4597
|
|
|
4570
|
-
var _prodInvariant = _dereq_(
|
|
4598
|
+
var _prodInvariant = _dereq_(38);
|
|
4571
4599
|
|
|
4572
4600
|
var ReactCurrentOwner = _dereq_(13);
|
|
4573
4601
|
var REACT_ELEMENT_TYPE = _dereq_(17);
|
|
4574
4602
|
|
|
4575
|
-
var getIteratorFn = _dereq_(
|
|
4576
|
-
var invariant = _dereq_(
|
|
4603
|
+
var getIteratorFn = _dereq_(36);
|
|
4604
|
+
var invariant = _dereq_(46);
|
|
4577
4605
|
var KeyEscapeUtils = _dereq_(2);
|
|
4578
|
-
var warning = _dereq_(
|
|
4606
|
+
var warning = _dereq_(48);
|
|
4579
4607
|
|
|
4580
4608
|
var SEPARATOR = '.';
|
|
4581
4609
|
var SUBSEPARATOR = ':';
|
|
@@ -4686,7 +4714,7 @@ function traverseAllChildrenImpl(children, nameSoFar, callback, traverseContext)
|
|
|
4686
4714
|
}
|
|
4687
4715
|
}
|
|
4688
4716
|
}
|
|
4689
|
-
var childrenString =
|
|
4717
|
+
var childrenString = '' + children;
|
|
4690
4718
|
!false ? "development" !== 'production' ? invariant(false, 'Objects are not valid as a React child (found: %s).%s', childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString, addendum) : _prodInvariant('31', childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString, addendum) : void 0;
|
|
4691
4719
|
}
|
|
4692
4720
|
}
|
|
@@ -4719,7 +4747,7 @@ function traverseAllChildren(children, callback, traverseContext) {
|
|
|
4719
4747
|
}
|
|
4720
4748
|
|
|
4721
4749
|
module.exports = traverseAllChildren;
|
|
4722
|
-
},{"13":13,"17":17,"2":2,"
|
|
4750
|
+
},{"13":13,"17":17,"2":2,"36":36,"38":38,"46":46,"48":48}],41:[function(_dereq_,module,exports){
|
|
4723
4751
|
/**
|
|
4724
4752
|
* Copyright 2013-present, Facebook, Inc.
|
|
4725
4753
|
* All rights reserved.
|
|
@@ -4734,10 +4762,10 @@ module.exports = traverseAllChildren;
|
|
|
4734
4762
|
|
|
4735
4763
|
'use strict';
|
|
4736
4764
|
|
|
4737
|
-
var
|
|
4738
|
-
|
|
4765
|
+
var _assign = _dereq_(49),
|
|
4766
|
+
_prodInvariant = _dereq_(38);
|
|
4739
4767
|
|
|
4740
|
-
var invariant = _dereq_(
|
|
4768
|
+
var invariant = _dereq_(46);
|
|
4741
4769
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
4742
4770
|
|
|
4743
4771
|
function shallowCopy(x) {
|
|
@@ -4831,7 +4859,7 @@ function update(value, spec) {
|
|
|
4831
4859
|
}
|
|
4832
4860
|
|
|
4833
4861
|
module.exports = update;
|
|
4834
|
-
},{"
|
|
4862
|
+
},{"38":38,"46":46,"49":49}],42:[function(_dereq_,module,exports){
|
|
4835
4863
|
'use strict';
|
|
4836
4864
|
|
|
4837
4865
|
/**
|
|
@@ -4845,7 +4873,7 @@ module.exports = update;
|
|
|
4845
4873
|
* @typechecks
|
|
4846
4874
|
*/
|
|
4847
4875
|
|
|
4848
|
-
var invariant = _dereq_(
|
|
4876
|
+
var invariant = _dereq_(46);
|
|
4849
4877
|
|
|
4850
4878
|
/**
|
|
4851
4879
|
* The CSSCore module specifies the API (and implements most of the methods)
|
|
@@ -4953,7 +4981,7 @@ var CSSCore = {
|
|
|
4953
4981
|
};
|
|
4954
4982
|
|
|
4955
4983
|
module.exports = CSSCore;
|
|
4956
|
-
},{"
|
|
4984
|
+
},{"46":46}],43:[function(_dereq_,module,exports){
|
|
4957
4985
|
/**
|
|
4958
4986
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
4959
4987
|
* All rights reserved.
|
|
@@ -4989,7 +5017,7 @@ var ExecutionEnvironment = {
|
|
|
4989
5017
|
};
|
|
4990
5018
|
|
|
4991
5019
|
module.exports = ExecutionEnvironment;
|
|
4992
|
-
},{}],
|
|
5020
|
+
},{}],44:[function(_dereq_,module,exports){
|
|
4993
5021
|
"use strict";
|
|
4994
5022
|
|
|
4995
5023
|
/**
|
|
@@ -5028,7 +5056,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
|
|
|
5028
5056
|
};
|
|
5029
5057
|
|
|
5030
5058
|
module.exports = emptyFunction;
|
|
5031
|
-
},{}],
|
|
5059
|
+
},{}],45:[function(_dereq_,module,exports){
|
|
5032
5060
|
/**
|
|
5033
5061
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
5034
5062
|
* All rights reserved.
|
|
@@ -5048,7 +5076,7 @@ if ("development" !== 'production') {
|
|
|
5048
5076
|
}
|
|
5049
5077
|
|
|
5050
5078
|
module.exports = emptyObject;
|
|
5051
|
-
},{}],
|
|
5079
|
+
},{}],46:[function(_dereq_,module,exports){
|
|
5052
5080
|
/**
|
|
5053
5081
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
5054
5082
|
* All rights reserved.
|
|
@@ -5104,7 +5132,7 @@ function invariant(condition, format, a, b, c, d, e, f) {
|
|
|
5104
5132
|
}
|
|
5105
5133
|
|
|
5106
5134
|
module.exports = invariant;
|
|
5107
|
-
},{}],
|
|
5135
|
+
},{}],47:[function(_dereq_,module,exports){
|
|
5108
5136
|
/**
|
|
5109
5137
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
5110
5138
|
* All rights reserved.
|
|
@@ -5172,7 +5200,7 @@ function shallowEqual(objA, objB) {
|
|
|
5172
5200
|
}
|
|
5173
5201
|
|
|
5174
5202
|
module.exports = shallowEqual;
|
|
5175
|
-
},{}],
|
|
5203
|
+
},{}],48:[function(_dereq_,module,exports){
|
|
5176
5204
|
/**
|
|
5177
5205
|
* Copyright 2014-2015, Facebook, Inc.
|
|
5178
5206
|
* All rights reserved.
|
|
@@ -5185,7 +5213,7 @@ module.exports = shallowEqual;
|
|
|
5185
5213
|
|
|
5186
5214
|
'use strict';
|
|
5187
5215
|
|
|
5188
|
-
var emptyFunction = _dereq_(
|
|
5216
|
+
var emptyFunction = _dereq_(44);
|
|
5189
5217
|
|
|
5190
5218
|
/**
|
|
5191
5219
|
* Similar to invariant but only logs a warning if the condition is not met.
|
|
@@ -5239,7 +5267,7 @@ if ("development" !== 'production') {
|
|
|
5239
5267
|
}
|
|
5240
5268
|
|
|
5241
5269
|
module.exports = warning;
|
|
5242
|
-
},{"
|
|
5270
|
+
},{"44":44}],49:[function(_dereq_,module,exports){
|
|
5243
5271
|
/*
|
|
5244
5272
|
object-assign
|
|
5245
5273
|
(c) Sindre Sorhus
|
|
@@ -5331,5 +5359,5 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
|
5331
5359
|
return to;
|
|
5332
5360
|
};
|
|
5333
5361
|
|
|
5334
|
-
},{}]},{},[
|
|
5362
|
+
},{}]},{},[30])(30)
|
|
5335
5363
|
});
|