react 15.2.1 → 15.3.0
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 +1139 -803
- package/dist/react-with-addons.min.js +6 -6
- package/dist/react.js +1063 -731
- package/dist/react.min.js +6 -6
- package/lib/EventPluginHub.js +14 -6
- package/lib/HTMLDOMPropertyConfig.js +1 -0
- package/lib/LinkedValueUtils.js +2 -1
- package/lib/NativeMethodsMixin.js +1 -1
- package/lib/React.js +2 -0
- package/lib/ReactChildReconciler.js +19 -2
- package/lib/ReactChildrenMutationWarningDevtool.js +62 -0
- package/lib/ReactClass.js +7 -0
- package/lib/ReactCompositeComponent.js +76 -25
- package/lib/ReactDOM.js +2 -2
- package/lib/ReactDOMComponent.js +22 -0
- package/lib/ReactDOMInput.js +4 -1
- package/lib/ReactDebugTool.js +20 -2
- package/lib/ReactElement.js +8 -0
- package/lib/ReactMultiChild.js +11 -8
- package/lib/ReactPropTypes.js +28 -14
- package/lib/ReactPropTypesSecret.js +16 -0
- package/lib/ReactPureComponent.js +42 -0
- package/lib/ReactReconciler.js +2 -4
- package/lib/ReactRef.js +3 -1
- package/lib/ReactServerRendering.js +8 -1
- package/lib/ReactTestMount.js +28 -15
- package/lib/ReactTestRenderer.js +11 -0
- package/lib/ReactTestUtils.js +7 -3
- package/lib/ReactUpdateQueue.js +2 -1
- package/lib/ReactVersion.js +1 -1
- package/lib/SVGDOMPropertyConfig.js +2 -0
- package/lib/SimpleEventPlugin.js +10 -6
- package/lib/checkReactTypeSpec.js +16 -2
- package/lib/flattenChildren.js +14 -1
- package/lib/traverseAllChildren.js +8 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* React (with addons) v15.
|
|
2
|
+
* React (with addons) v15.3.0
|
|
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
|
/**
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
|
|
16
16
|
'use strict';
|
|
17
17
|
|
|
18
|
-
var ReactDOMComponentTree = _dereq_(
|
|
18
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
19
19
|
|
|
20
|
-
var focusNode = _dereq_(
|
|
20
|
+
var focusNode = _dereq_(174);
|
|
21
21
|
|
|
22
22
|
var AutoFocusUtils = {
|
|
23
23
|
focusDOMComponent: function () {
|
|
@@ -26,7 +26,7 @@ var AutoFocusUtils = {
|
|
|
26
26
|
};
|
|
27
27
|
|
|
28
28
|
module.exports = AutoFocusUtils;
|
|
29
|
-
},{"
|
|
29
|
+
},{"174":174,"46":46}],2:[function(_dereq_,module,exports){
|
|
30
30
|
/**
|
|
31
31
|
* Copyright 2013-present Facebook, Inc.
|
|
32
32
|
* All rights reserved.
|
|
@@ -42,12 +42,12 @@ module.exports = AutoFocusUtils;
|
|
|
42
42
|
|
|
43
43
|
var EventConstants = _dereq_(16);
|
|
44
44
|
var EventPropagators = _dereq_(20);
|
|
45
|
-
var ExecutionEnvironment = _dereq_(
|
|
45
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
46
46
|
var FallbackCompositionState = _dereq_(21);
|
|
47
|
-
var SyntheticCompositionEvent = _dereq_(
|
|
48
|
-
var SyntheticInputEvent = _dereq_(
|
|
47
|
+
var SyntheticCompositionEvent = _dereq_(118);
|
|
48
|
+
var SyntheticInputEvent = _dereq_(122);
|
|
49
49
|
|
|
50
|
-
var keyOf = _dereq_(
|
|
50
|
+
var keyOf = _dereq_(184);
|
|
51
51
|
|
|
52
52
|
var END_KEYCODES = [9, 13, 27, 32]; // Tab, Return, Esc, Space
|
|
53
53
|
var START_KEYCODE = 229;
|
|
@@ -415,7 +415,7 @@ var BeforeInputEventPlugin = {
|
|
|
415
415
|
};
|
|
416
416
|
|
|
417
417
|
module.exports = BeforeInputEventPlugin;
|
|
418
|
-
},{"
|
|
418
|
+
},{"118":118,"122":122,"16":16,"166":166,"184":184,"20":20,"21":21}],3:[function(_dereq_,module,exports){
|
|
419
419
|
/**
|
|
420
420
|
* Copyright 2013-present, Facebook, Inc.
|
|
421
421
|
* All rights reserved.
|
|
@@ -579,14 +579,14 @@ module.exports = CSSProperty;
|
|
|
579
579
|
'use strict';
|
|
580
580
|
|
|
581
581
|
var CSSProperty = _dereq_(3);
|
|
582
|
-
var ExecutionEnvironment = _dereq_(
|
|
583
|
-
var ReactInstrumentation = _dereq_(
|
|
582
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
583
|
+
var ReactInstrumentation = _dereq_(80);
|
|
584
584
|
|
|
585
|
-
var camelizeStyleName = _dereq_(
|
|
586
|
-
var dangerousStyleValue = _dereq_(
|
|
587
|
-
var hyphenateStyleName = _dereq_(
|
|
588
|
-
var memoizeStringOnly = _dereq_(
|
|
589
|
-
var warning = _dereq_(
|
|
585
|
+
var camelizeStyleName = _dereq_(168);
|
|
586
|
+
var dangerousStyleValue = _dereq_(136);
|
|
587
|
+
var hyphenateStyleName = _dereq_(179);
|
|
588
|
+
var memoizeStringOnly = _dereq_(186);
|
|
589
|
+
var warning = _dereq_(190);
|
|
590
590
|
|
|
591
591
|
var processStyleName = memoizeStringOnly(function (styleName) {
|
|
592
592
|
return hyphenateStyleName(styleName);
|
|
@@ -770,7 +770,7 @@ var CSSPropertyOperations = {
|
|
|
770
770
|
};
|
|
771
771
|
|
|
772
772
|
module.exports = CSSPropertyOperations;
|
|
773
|
-
},{"
|
|
773
|
+
},{"136":136,"166":166,"168":168,"179":179,"186":186,"190":190,"3":3,"80":80}],5:[function(_dereq_,module,exports){
|
|
774
774
|
/**
|
|
775
775
|
* Copyright 2013-present, Facebook, Inc.
|
|
776
776
|
* All rights reserved.
|
|
@@ -784,12 +784,12 @@ module.exports = CSSPropertyOperations;
|
|
|
784
784
|
|
|
785
785
|
'use strict';
|
|
786
786
|
|
|
787
|
-
var _prodInvariant = _dereq_(
|
|
788
|
-
_assign = _dereq_(
|
|
787
|
+
var _prodInvariant = _dereq_(155),
|
|
788
|
+
_assign = _dereq_(191);
|
|
789
789
|
|
|
790
790
|
var PooledClass = _dereq_(26);
|
|
791
791
|
|
|
792
|
-
var invariant = _dereq_(
|
|
792
|
+
var invariant = _dereq_(180);
|
|
793
793
|
|
|
794
794
|
/**
|
|
795
795
|
* A specialized pseudo-event module to help keep track of components waiting to
|
|
@@ -877,7 +877,7 @@ _assign(CallbackQueue.prototype, {
|
|
|
877
877
|
PooledClass.addPoolingTo(CallbackQueue);
|
|
878
878
|
|
|
879
879
|
module.exports = CallbackQueue;
|
|
880
|
-
},{"
|
|
880
|
+
},{"155":155,"180":180,"191":191,"26":26}],6:[function(_dereq_,module,exports){
|
|
881
881
|
/**
|
|
882
882
|
* Copyright 2013-present, Facebook, Inc.
|
|
883
883
|
* All rights reserved.
|
|
@@ -894,15 +894,15 @@ module.exports = CallbackQueue;
|
|
|
894
894
|
var EventConstants = _dereq_(16);
|
|
895
895
|
var EventPluginHub = _dereq_(17);
|
|
896
896
|
var EventPropagators = _dereq_(20);
|
|
897
|
-
var ExecutionEnvironment = _dereq_(
|
|
898
|
-
var ReactDOMComponentTree = _dereq_(
|
|
899
|
-
var ReactUpdates = _dereq_(
|
|
900
|
-
var SyntheticEvent = _dereq_(
|
|
897
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
898
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
899
|
+
var ReactUpdates = _dereq_(109);
|
|
900
|
+
var SyntheticEvent = _dereq_(120);
|
|
901
901
|
|
|
902
|
-
var getEventTarget = _dereq_(
|
|
903
|
-
var isEventSupported = _dereq_(
|
|
904
|
-
var isTextInputElement = _dereq_(
|
|
905
|
-
var keyOf = _dereq_(
|
|
902
|
+
var getEventTarget = _dereq_(144);
|
|
903
|
+
var isEventSupported = _dereq_(151);
|
|
904
|
+
var isTextInputElement = _dereq_(152);
|
|
905
|
+
var keyOf = _dereq_(184);
|
|
906
906
|
|
|
907
907
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
908
908
|
|
|
@@ -1203,7 +1203,7 @@ var ChangeEventPlugin = {
|
|
|
1203
1203
|
};
|
|
1204
1204
|
|
|
1205
1205
|
module.exports = ChangeEventPlugin;
|
|
1206
|
-
},{"
|
|
1206
|
+
},{"109":109,"120":120,"144":144,"151":151,"152":152,"16":16,"166":166,"17":17,"184":184,"20":20,"46":46}],7:[function(_dereq_,module,exports){
|
|
1207
1207
|
/**
|
|
1208
1208
|
* Copyright 2013-present, Facebook, Inc.
|
|
1209
1209
|
* All rights reserved.
|
|
@@ -1219,13 +1219,13 @@ module.exports = ChangeEventPlugin;
|
|
|
1219
1219
|
|
|
1220
1220
|
var DOMLazyTree = _dereq_(8);
|
|
1221
1221
|
var Danger = _dereq_(12);
|
|
1222
|
-
var ReactMultiChildUpdateTypes = _dereq_(
|
|
1223
|
-
var ReactDOMComponentTree = _dereq_(
|
|
1224
|
-
var ReactInstrumentation = _dereq_(
|
|
1222
|
+
var ReactMultiChildUpdateTypes = _dereq_(86);
|
|
1223
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
1224
|
+
var ReactInstrumentation = _dereq_(80);
|
|
1225
1225
|
|
|
1226
|
-
var createMicrosoftUnsafeLocalFunction = _dereq_(
|
|
1227
|
-
var setInnerHTML = _dereq_(
|
|
1228
|
-
var setTextContent = _dereq_(
|
|
1226
|
+
var createMicrosoftUnsafeLocalFunction = _dereq_(135);
|
|
1227
|
+
var setInnerHTML = _dereq_(157);
|
|
1228
|
+
var setTextContent = _dereq_(158);
|
|
1229
1229
|
|
|
1230
1230
|
function getNodeAfter(parentNode, node) {
|
|
1231
1231
|
// Special case for text components, which return [open, close] comments
|
|
@@ -1398,7 +1398,7 @@ var DOMChildrenOperations = {
|
|
|
1398
1398
|
};
|
|
1399
1399
|
|
|
1400
1400
|
module.exports = DOMChildrenOperations;
|
|
1401
|
-
},{"12":12,"
|
|
1401
|
+
},{"12":12,"135":135,"157":157,"158":158,"46":46,"8":8,"80":80,"86":86}],8:[function(_dereq_,module,exports){
|
|
1402
1402
|
/**
|
|
1403
1403
|
* Copyright 2015-present, Facebook, Inc.
|
|
1404
1404
|
* All rights reserved.
|
|
@@ -1413,10 +1413,10 @@ module.exports = DOMChildrenOperations;
|
|
|
1413
1413
|
'use strict';
|
|
1414
1414
|
|
|
1415
1415
|
var DOMNamespaces = _dereq_(9);
|
|
1416
|
-
var setInnerHTML = _dereq_(
|
|
1416
|
+
var setInnerHTML = _dereq_(157);
|
|
1417
1417
|
|
|
1418
|
-
var createMicrosoftUnsafeLocalFunction = _dereq_(
|
|
1419
|
-
var setTextContent = _dereq_(
|
|
1418
|
+
var createMicrosoftUnsafeLocalFunction = _dereq_(135);
|
|
1419
|
+
var setTextContent = _dereq_(158);
|
|
1420
1420
|
|
|
1421
1421
|
var ELEMENT_NODE_TYPE = 1;
|
|
1422
1422
|
var DOCUMENT_FRAGMENT_NODE_TYPE = 11;
|
|
@@ -1517,7 +1517,7 @@ DOMLazyTree.queueHTML = queueHTML;
|
|
|
1517
1517
|
DOMLazyTree.queueText = queueText;
|
|
1518
1518
|
|
|
1519
1519
|
module.exports = DOMLazyTree;
|
|
1520
|
-
},{"
|
|
1520
|
+
},{"135":135,"157":157,"158":158,"9":9}],9:[function(_dereq_,module,exports){
|
|
1521
1521
|
/**
|
|
1522
1522
|
* Copyright 2013-present, Facebook, Inc.
|
|
1523
1523
|
* All rights reserved.
|
|
@@ -1552,9 +1552,9 @@ module.exports = DOMNamespaces;
|
|
|
1552
1552
|
|
|
1553
1553
|
'use strict';
|
|
1554
1554
|
|
|
1555
|
-
var _prodInvariant = _dereq_(
|
|
1555
|
+
var _prodInvariant = _dereq_(155);
|
|
1556
1556
|
|
|
1557
|
-
var invariant = _dereq_(
|
|
1557
|
+
var invariant = _dereq_(180);
|
|
1558
1558
|
|
|
1559
1559
|
function checkMask(value, bitmask) {
|
|
1560
1560
|
return (value & bitmask) === bitmask;
|
|
@@ -1745,7 +1745,7 @@ var DOMProperty = {
|
|
|
1745
1745
|
};
|
|
1746
1746
|
|
|
1747
1747
|
module.exports = DOMProperty;
|
|
1748
|
-
},{"
|
|
1748
|
+
},{"155":155,"180":180}],11:[function(_dereq_,module,exports){
|
|
1749
1749
|
/**
|
|
1750
1750
|
* Copyright 2013-present, Facebook, Inc.
|
|
1751
1751
|
* All rights reserved.
|
|
@@ -1760,12 +1760,12 @@ module.exports = DOMProperty;
|
|
|
1760
1760
|
'use strict';
|
|
1761
1761
|
|
|
1762
1762
|
var DOMProperty = _dereq_(10);
|
|
1763
|
-
var ReactDOMComponentTree = _dereq_(
|
|
1764
|
-
var ReactDOMInstrumentation = _dereq_(
|
|
1765
|
-
var ReactInstrumentation = _dereq_(
|
|
1763
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
1764
|
+
var ReactDOMInstrumentation = _dereq_(54);
|
|
1765
|
+
var ReactInstrumentation = _dereq_(80);
|
|
1766
1766
|
|
|
1767
|
-
var quoteAttributeValueForBrowser = _dereq_(
|
|
1768
|
-
var warning = _dereq_(
|
|
1767
|
+
var quoteAttributeValueForBrowser = _dereq_(154);
|
|
1768
|
+
var warning = _dereq_(190);
|
|
1769
1769
|
|
|
1770
1770
|
var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + DOMProperty.ATTRIBUTE_NAME_START_CHAR + '][' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');
|
|
1771
1771
|
var illegalAttributeNameCache = {};
|
|
@@ -1974,7 +1974,7 @@ var DOMPropertyOperations = {
|
|
|
1974
1974
|
};
|
|
1975
1975
|
|
|
1976
1976
|
module.exports = DOMPropertyOperations;
|
|
1977
|
-
},{"10":10,"
|
|
1977
|
+
},{"10":10,"154":154,"190":190,"46":46,"54":54,"80":80}],12:[function(_dereq_,module,exports){
|
|
1978
1978
|
/**
|
|
1979
1979
|
* Copyright 2013-present, Facebook, Inc.
|
|
1980
1980
|
* All rights reserved.
|
|
@@ -1988,14 +1988,14 @@ module.exports = DOMPropertyOperations;
|
|
|
1988
1988
|
|
|
1989
1989
|
'use strict';
|
|
1990
1990
|
|
|
1991
|
-
var _prodInvariant = _dereq_(
|
|
1991
|
+
var _prodInvariant = _dereq_(155);
|
|
1992
1992
|
|
|
1993
1993
|
var DOMLazyTree = _dereq_(8);
|
|
1994
|
-
var ExecutionEnvironment = _dereq_(
|
|
1994
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
1995
1995
|
|
|
1996
|
-
var createNodesFromMarkup = _dereq_(
|
|
1997
|
-
var emptyFunction = _dereq_(
|
|
1998
|
-
var invariant = _dereq_(
|
|
1996
|
+
var createNodesFromMarkup = _dereq_(171);
|
|
1997
|
+
var emptyFunction = _dereq_(172);
|
|
1998
|
+
var invariant = _dereq_(180);
|
|
1999
1999
|
|
|
2000
2000
|
var Danger = {
|
|
2001
2001
|
|
|
@@ -2023,7 +2023,7 @@ var Danger = {
|
|
|
2023
2023
|
};
|
|
2024
2024
|
|
|
2025
2025
|
module.exports = Danger;
|
|
2026
|
-
},{"
|
|
2026
|
+
},{"155":155,"166":166,"171":171,"172":172,"180":180,"8":8}],13:[function(_dereq_,module,exports){
|
|
2027
2027
|
/**
|
|
2028
2028
|
* Copyright 2013-present, Facebook, Inc.
|
|
2029
2029
|
* All rights reserved.
|
|
@@ -2037,7 +2037,7 @@ module.exports = Danger;
|
|
|
2037
2037
|
|
|
2038
2038
|
'use strict';
|
|
2039
2039
|
|
|
2040
|
-
var keyOf = _dereq_(
|
|
2040
|
+
var keyOf = _dereq_(184);
|
|
2041
2041
|
|
|
2042
2042
|
/**
|
|
2043
2043
|
* Module that is injectable into `EventPluginHub`, that specifies a
|
|
@@ -2051,7 +2051,7 @@ var keyOf = _dereq_(181);
|
|
|
2051
2051
|
var DefaultEventPluginOrder = [keyOf({ ResponderEventPlugin: null }), keyOf({ SimpleEventPlugin: null }), keyOf({ TapEventPlugin: null }), keyOf({ EnterLeaveEventPlugin: null }), keyOf({ ChangeEventPlugin: null }), keyOf({ SelectEventPlugin: null }), keyOf({ BeforeInputEventPlugin: null })];
|
|
2052
2052
|
|
|
2053
2053
|
module.exports = DefaultEventPluginOrder;
|
|
2054
|
-
},{"
|
|
2054
|
+
},{"184":184}],14:[function(_dereq_,module,exports){
|
|
2055
2055
|
/**
|
|
2056
2056
|
* Copyright 2013-present, Facebook, Inc.
|
|
2057
2057
|
* All rights reserved.
|
|
@@ -2118,10 +2118,10 @@ module.exports = DisabledInputUtils;
|
|
|
2118
2118
|
|
|
2119
2119
|
var EventConstants = _dereq_(16);
|
|
2120
2120
|
var EventPropagators = _dereq_(20);
|
|
2121
|
-
var ReactDOMComponentTree = _dereq_(
|
|
2122
|
-
var SyntheticMouseEvent = _dereq_(
|
|
2121
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
2122
|
+
var SyntheticMouseEvent = _dereq_(124);
|
|
2123
2123
|
|
|
2124
|
-
var keyOf = _dereq_(
|
|
2124
|
+
var keyOf = _dereq_(184);
|
|
2125
2125
|
|
|
2126
2126
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
2127
2127
|
|
|
@@ -2208,7 +2208,7 @@ var EnterLeaveEventPlugin = {
|
|
|
2208
2208
|
};
|
|
2209
2209
|
|
|
2210
2210
|
module.exports = EnterLeaveEventPlugin;
|
|
2211
|
-
},{"
|
|
2211
|
+
},{"124":124,"16":16,"184":184,"20":20,"46":46}],16:[function(_dereq_,module,exports){
|
|
2212
2212
|
/**
|
|
2213
2213
|
* Copyright 2013-present, Facebook, Inc.
|
|
2214
2214
|
* All rights reserved.
|
|
@@ -2222,7 +2222,7 @@ module.exports = EnterLeaveEventPlugin;
|
|
|
2222
2222
|
|
|
2223
2223
|
'use strict';
|
|
2224
2224
|
|
|
2225
|
-
var keyMirror = _dereq_(
|
|
2225
|
+
var keyMirror = _dereq_(183);
|
|
2226
2226
|
|
|
2227
2227
|
var PropagationPhases = keyMirror({ bubbled: null, captured: null });
|
|
2228
2228
|
|
|
@@ -2306,7 +2306,7 @@ var EventConstants = {
|
|
|
2306
2306
|
};
|
|
2307
2307
|
|
|
2308
2308
|
module.exports = EventConstants;
|
|
2309
|
-
},{"
|
|
2309
|
+
},{"183":183}],17:[function(_dereq_,module,exports){
|
|
2310
2310
|
/**
|
|
2311
2311
|
* Copyright 2013-present, Facebook, Inc.
|
|
2312
2312
|
* All rights reserved.
|
|
@@ -2320,15 +2320,15 @@ module.exports = EventConstants;
|
|
|
2320
2320
|
|
|
2321
2321
|
'use strict';
|
|
2322
2322
|
|
|
2323
|
-
var _prodInvariant = _dereq_(
|
|
2323
|
+
var _prodInvariant = _dereq_(155);
|
|
2324
2324
|
|
|
2325
2325
|
var EventPluginRegistry = _dereq_(18);
|
|
2326
2326
|
var EventPluginUtils = _dereq_(19);
|
|
2327
|
-
var ReactErrorUtils = _dereq_(
|
|
2327
|
+
var ReactErrorUtils = _dereq_(70);
|
|
2328
2328
|
|
|
2329
|
-
var accumulateInto = _dereq_(
|
|
2330
|
-
var forEachAccumulated = _dereq_(
|
|
2331
|
-
var invariant = _dereq_(
|
|
2329
|
+
var accumulateInto = _dereq_(131);
|
|
2330
|
+
var forEachAccumulated = _dereq_(140);
|
|
2331
|
+
var invariant = _dereq_(180);
|
|
2332
2332
|
|
|
2333
2333
|
/**
|
|
2334
2334
|
* Internal store for event listeners
|
|
@@ -2364,6 +2364,10 @@ var executeDispatchesAndReleaseTopLevel = function (e) {
|
|
|
2364
2364
|
return executeDispatchesAndRelease(e, false);
|
|
2365
2365
|
};
|
|
2366
2366
|
|
|
2367
|
+
var getDictionaryKey = function (inst) {
|
|
2368
|
+
return '.' + inst._rootNodeID;
|
|
2369
|
+
};
|
|
2370
|
+
|
|
2367
2371
|
/**
|
|
2368
2372
|
* This is a unified interface for event plugins to be installed and configured.
|
|
2369
2373
|
*
|
|
@@ -2407,7 +2411,7 @@ var EventPluginHub = {
|
|
|
2407
2411
|
},
|
|
2408
2412
|
|
|
2409
2413
|
/**
|
|
2410
|
-
* Stores `listener` at `listenerBank[registrationName][
|
|
2414
|
+
* Stores `listener` at `listenerBank[registrationName][key]`. Is idempotent.
|
|
2411
2415
|
*
|
|
2412
2416
|
* @param {object} inst The instance, which is the source of events.
|
|
2413
2417
|
* @param {string} registrationName Name of listener (e.g. `onClick`).
|
|
@@ -2416,8 +2420,9 @@ var EventPluginHub = {
|
|
|
2416
2420
|
putListener: function (inst, registrationName, listener) {
|
|
2417
2421
|
!(typeof listener === 'function') ? "development" !== 'production' ? invariant(false, 'Expected %s listener to be a function, instead got type %s', registrationName, typeof listener) : _prodInvariant('94', registrationName, typeof listener) : void 0;
|
|
2418
2422
|
|
|
2423
|
+
var key = getDictionaryKey(inst);
|
|
2419
2424
|
var bankForRegistrationName = listenerBank[registrationName] || (listenerBank[registrationName] = {});
|
|
2420
|
-
bankForRegistrationName[
|
|
2425
|
+
bankForRegistrationName[key] = listener;
|
|
2421
2426
|
|
|
2422
2427
|
var PluginModule = EventPluginRegistry.registrationNameModules[registrationName];
|
|
2423
2428
|
if (PluginModule && PluginModule.didPutListener) {
|
|
@@ -2432,7 +2437,8 @@ var EventPluginHub = {
|
|
|
2432
2437
|
*/
|
|
2433
2438
|
getListener: function (inst, registrationName) {
|
|
2434
2439
|
var bankForRegistrationName = listenerBank[registrationName];
|
|
2435
|
-
|
|
2440
|
+
var key = getDictionaryKey(inst);
|
|
2441
|
+
return bankForRegistrationName && bankForRegistrationName[key];
|
|
2436
2442
|
},
|
|
2437
2443
|
|
|
2438
2444
|
/**
|
|
@@ -2450,7 +2456,8 @@ var EventPluginHub = {
|
|
|
2450
2456
|
var bankForRegistrationName = listenerBank[registrationName];
|
|
2451
2457
|
// TODO: This should never be null -- when is it?
|
|
2452
2458
|
if (bankForRegistrationName) {
|
|
2453
|
-
|
|
2459
|
+
var key = getDictionaryKey(inst);
|
|
2460
|
+
delete bankForRegistrationName[key];
|
|
2454
2461
|
}
|
|
2455
2462
|
},
|
|
2456
2463
|
|
|
@@ -2460,12 +2467,13 @@ var EventPluginHub = {
|
|
|
2460
2467
|
* @param {object} inst The instance, which is the source of events.
|
|
2461
2468
|
*/
|
|
2462
2469
|
deleteAllListeners: function (inst) {
|
|
2470
|
+
var key = getDictionaryKey(inst);
|
|
2463
2471
|
for (var registrationName in listenerBank) {
|
|
2464
2472
|
if (!listenerBank.hasOwnProperty(registrationName)) {
|
|
2465
2473
|
continue;
|
|
2466
2474
|
}
|
|
2467
2475
|
|
|
2468
|
-
if (!listenerBank[registrationName][
|
|
2476
|
+
if (!listenerBank[registrationName][key]) {
|
|
2469
2477
|
continue;
|
|
2470
2478
|
}
|
|
2471
2479
|
|
|
@@ -2474,7 +2482,7 @@ var EventPluginHub = {
|
|
|
2474
2482
|
PluginModule.willDeleteListener(inst, registrationName);
|
|
2475
2483
|
}
|
|
2476
2484
|
|
|
2477
|
-
delete listenerBank[registrationName][
|
|
2485
|
+
delete listenerBank[registrationName][key];
|
|
2478
2486
|
}
|
|
2479
2487
|
},
|
|
2480
2488
|
|
|
@@ -2548,7 +2556,7 @@ var EventPluginHub = {
|
|
|
2548
2556
|
};
|
|
2549
2557
|
|
|
2550
2558
|
module.exports = EventPluginHub;
|
|
2551
|
-
},{"
|
|
2559
|
+
},{"131":131,"140":140,"155":155,"18":18,"180":180,"19":19,"70":70}],18:[function(_dereq_,module,exports){
|
|
2552
2560
|
/**
|
|
2553
2561
|
* Copyright 2013-present, Facebook, Inc.
|
|
2554
2562
|
* All rights reserved.
|
|
@@ -2562,9 +2570,9 @@ module.exports = EventPluginHub;
|
|
|
2562
2570
|
|
|
2563
2571
|
'use strict';
|
|
2564
2572
|
|
|
2565
|
-
var _prodInvariant = _dereq_(
|
|
2573
|
+
var _prodInvariant = _dereq_(155);
|
|
2566
2574
|
|
|
2567
|
-
var invariant = _dereq_(
|
|
2575
|
+
var invariant = _dereq_(180);
|
|
2568
2576
|
|
|
2569
2577
|
/**
|
|
2570
2578
|
* Injectable ordering of event plugins.
|
|
@@ -2796,7 +2804,7 @@ var EventPluginRegistry = {
|
|
|
2796
2804
|
};
|
|
2797
2805
|
|
|
2798
2806
|
module.exports = EventPluginRegistry;
|
|
2799
|
-
},{"
|
|
2807
|
+
},{"155":155,"180":180}],19:[function(_dereq_,module,exports){
|
|
2800
2808
|
/**
|
|
2801
2809
|
* Copyright 2013-present, Facebook, Inc.
|
|
2802
2810
|
* All rights reserved.
|
|
@@ -2810,13 +2818,13 @@ module.exports = EventPluginRegistry;
|
|
|
2810
2818
|
|
|
2811
2819
|
'use strict';
|
|
2812
2820
|
|
|
2813
|
-
var _prodInvariant = _dereq_(
|
|
2821
|
+
var _prodInvariant = _dereq_(155);
|
|
2814
2822
|
|
|
2815
2823
|
var EventConstants = _dereq_(16);
|
|
2816
|
-
var ReactErrorUtils = _dereq_(
|
|
2824
|
+
var ReactErrorUtils = _dereq_(70);
|
|
2817
2825
|
|
|
2818
|
-
var invariant = _dereq_(
|
|
2819
|
-
var warning = _dereq_(
|
|
2826
|
+
var invariant = _dereq_(180);
|
|
2827
|
+
var warning = _dereq_(190);
|
|
2820
2828
|
|
|
2821
2829
|
/**
|
|
2822
2830
|
* Injected dependencies:
|
|
@@ -3026,7 +3034,7 @@ var EventPluginUtils = {
|
|
|
3026
3034
|
};
|
|
3027
3035
|
|
|
3028
3036
|
module.exports = EventPluginUtils;
|
|
3029
|
-
},{"
|
|
3037
|
+
},{"155":155,"16":16,"180":180,"190":190,"70":70}],20:[function(_dereq_,module,exports){
|
|
3030
3038
|
/**
|
|
3031
3039
|
* Copyright 2013-present, Facebook, Inc.
|
|
3032
3040
|
* All rights reserved.
|
|
@@ -3044,9 +3052,9 @@ var EventConstants = _dereq_(16);
|
|
|
3044
3052
|
var EventPluginHub = _dereq_(17);
|
|
3045
3053
|
var EventPluginUtils = _dereq_(19);
|
|
3046
3054
|
|
|
3047
|
-
var accumulateInto = _dereq_(
|
|
3048
|
-
var forEachAccumulated = _dereq_(
|
|
3049
|
-
var warning = _dereq_(
|
|
3055
|
+
var accumulateInto = _dereq_(131);
|
|
3056
|
+
var forEachAccumulated = _dereq_(140);
|
|
3057
|
+
var warning = _dereq_(190);
|
|
3050
3058
|
|
|
3051
3059
|
var PropagationPhases = EventConstants.PropagationPhases;
|
|
3052
3060
|
var getListener = EventPluginHub.getListener;
|
|
@@ -3164,7 +3172,7 @@ var EventPropagators = {
|
|
|
3164
3172
|
};
|
|
3165
3173
|
|
|
3166
3174
|
module.exports = EventPropagators;
|
|
3167
|
-
},{"
|
|
3175
|
+
},{"131":131,"140":140,"16":16,"17":17,"19":19,"190":190}],21:[function(_dereq_,module,exports){
|
|
3168
3176
|
/**
|
|
3169
3177
|
* Copyright 2013-present, Facebook, Inc.
|
|
3170
3178
|
* All rights reserved.
|
|
@@ -3178,11 +3186,11 @@ module.exports = EventPropagators;
|
|
|
3178
3186
|
|
|
3179
3187
|
'use strict';
|
|
3180
3188
|
|
|
3181
|
-
var _assign = _dereq_(
|
|
3189
|
+
var _assign = _dereq_(191);
|
|
3182
3190
|
|
|
3183
3191
|
var PooledClass = _dereq_(26);
|
|
3184
3192
|
|
|
3185
|
-
var getTextContentAccessor = _dereq_(
|
|
3193
|
+
var getTextContentAccessor = _dereq_(148);
|
|
3186
3194
|
|
|
3187
3195
|
/**
|
|
3188
3196
|
* This helper class stores information about text content of a target node,
|
|
@@ -3260,7 +3268,7 @@ _assign(FallbackCompositionState.prototype, {
|
|
|
3260
3268
|
PooledClass.addPoolingTo(FallbackCompositionState);
|
|
3261
3269
|
|
|
3262
3270
|
module.exports = FallbackCompositionState;
|
|
3263
|
-
},{"
|
|
3271
|
+
},{"148":148,"191":191,"26":26}],22:[function(_dereq_,module,exports){
|
|
3264
3272
|
/**
|
|
3265
3273
|
* Copyright 2013-present, Facebook, Inc.
|
|
3266
3274
|
* All rights reserved.
|
|
@@ -3380,6 +3388,7 @@ var HTMLDOMPropertyConfig = {
|
|
|
3380
3388
|
profile: 0,
|
|
3381
3389
|
radioGroup: 0,
|
|
3382
3390
|
readOnly: HAS_BOOLEAN_VALUE,
|
|
3391
|
+
referrerPolicy: 0,
|
|
3383
3392
|
rel: 0,
|
|
3384
3393
|
required: HAS_BOOLEAN_VALUE,
|
|
3385
3394
|
reversed: HAS_BOOLEAN_VALUE,
|
|
@@ -3543,8 +3552,8 @@ module.exports = KeyEscapeUtils;
|
|
|
3543
3552
|
|
|
3544
3553
|
'use strict';
|
|
3545
3554
|
|
|
3546
|
-
var ReactLink = _dereq_(
|
|
3547
|
-
var ReactStateSetters = _dereq_(
|
|
3555
|
+
var ReactLink = _dereq_(82);
|
|
3556
|
+
var ReactStateSetters = _dereq_(103);
|
|
3548
3557
|
|
|
3549
3558
|
/**
|
|
3550
3559
|
* A simple mixin around ReactLink.forState().
|
|
@@ -3566,7 +3575,7 @@ var LinkedStateMixin = {
|
|
|
3566
3575
|
};
|
|
3567
3576
|
|
|
3568
3577
|
module.exports = LinkedStateMixin;
|
|
3569
|
-
},{"
|
|
3578
|
+
},{"103":103,"82":82}],25:[function(_dereq_,module,exports){
|
|
3570
3579
|
/**
|
|
3571
3580
|
* Copyright 2013-present, Facebook, Inc.
|
|
3572
3581
|
* All rights reserved.
|
|
@@ -3580,13 +3589,14 @@ module.exports = LinkedStateMixin;
|
|
|
3580
3589
|
|
|
3581
3590
|
'use strict';
|
|
3582
3591
|
|
|
3583
|
-
var _prodInvariant = _dereq_(
|
|
3592
|
+
var _prodInvariant = _dereq_(155);
|
|
3584
3593
|
|
|
3585
|
-
var ReactPropTypes = _dereq_(
|
|
3586
|
-
var ReactPropTypeLocations = _dereq_(
|
|
3594
|
+
var ReactPropTypes = _dereq_(93);
|
|
3595
|
+
var ReactPropTypeLocations = _dereq_(92);
|
|
3596
|
+
var ReactPropTypesSecret = _dereq_(94);
|
|
3587
3597
|
|
|
3588
|
-
var invariant = _dereq_(
|
|
3589
|
-
var warning = _dereq_(
|
|
3598
|
+
var invariant = _dereq_(180);
|
|
3599
|
+
var warning = _dereq_(190);
|
|
3590
3600
|
|
|
3591
3601
|
var hasReadOnlyValue = {
|
|
3592
3602
|
'button': true,
|
|
@@ -3646,7 +3656,7 @@ var LinkedValueUtils = {
|
|
|
3646
3656
|
checkPropTypes: function (tagName, props, owner) {
|
|
3647
3657
|
for (var propName in propTypes) {
|
|
3648
3658
|
if (propTypes.hasOwnProperty(propName)) {
|
|
3649
|
-
var error = propTypes[propName](props, propName, tagName, ReactPropTypeLocations.prop);
|
|
3659
|
+
var error = propTypes[propName](props, propName, tagName, ReactPropTypeLocations.prop, null, ReactPropTypesSecret);
|
|
3650
3660
|
}
|
|
3651
3661
|
if (error instanceof Error && !(error.message in loggedTypeFailures)) {
|
|
3652
3662
|
// Only monitor this failure once because there tends to be a lot of the
|
|
@@ -3702,7 +3712,7 @@ var LinkedValueUtils = {
|
|
|
3702
3712
|
};
|
|
3703
3713
|
|
|
3704
3714
|
module.exports = LinkedValueUtils;
|
|
3705
|
-
},{"
|
|
3715
|
+
},{"155":155,"180":180,"190":190,"92":92,"93":93,"94":94}],26:[function(_dereq_,module,exports){
|
|
3706
3716
|
/**
|
|
3707
3717
|
* Copyright 2013-present, Facebook, Inc.
|
|
3708
3718
|
* All rights reserved.
|
|
@@ -3716,9 +3726,9 @@ module.exports = LinkedValueUtils;
|
|
|
3716
3726
|
|
|
3717
3727
|
'use strict';
|
|
3718
3728
|
|
|
3719
|
-
var _prodInvariant = _dereq_(
|
|
3729
|
+
var _prodInvariant = _dereq_(155);
|
|
3720
3730
|
|
|
3721
|
-
var invariant = _dereq_(
|
|
3731
|
+
var invariant = _dereq_(180);
|
|
3722
3732
|
|
|
3723
3733
|
/**
|
|
3724
3734
|
* Static poolers. Several custom versions for each potential number of
|
|
@@ -3824,7 +3834,7 @@ var PooledClass = {
|
|
|
3824
3834
|
};
|
|
3825
3835
|
|
|
3826
3836
|
module.exports = PooledClass;
|
|
3827
|
-
},{"
|
|
3837
|
+
},{"155":155,"180":180}],27:[function(_dereq_,module,exports){
|
|
3828
3838
|
/**
|
|
3829
3839
|
* Copyright 2013-present, Facebook, Inc.
|
|
3830
3840
|
* All rights reserved.
|
|
@@ -3838,25 +3848,26 @@ module.exports = PooledClass;
|
|
|
3838
3848
|
|
|
3839
3849
|
'use strict';
|
|
3840
3850
|
|
|
3841
|
-
var _assign = _dereq_(
|
|
3851
|
+
var _assign = _dereq_(191);
|
|
3842
3852
|
|
|
3843
3853
|
var ReactChildren = _dereq_(32);
|
|
3844
|
-
var ReactComponent = _dereq_(
|
|
3845
|
-
var
|
|
3846
|
-
var
|
|
3847
|
-
var
|
|
3848
|
-
var
|
|
3849
|
-
var
|
|
3854
|
+
var ReactComponent = _dereq_(35);
|
|
3855
|
+
var ReactPureComponent = _dereq_(95);
|
|
3856
|
+
var ReactClass = _dereq_(34);
|
|
3857
|
+
var ReactDOMFactories = _dereq_(50);
|
|
3858
|
+
var ReactElement = _dereq_(67);
|
|
3859
|
+
var ReactPropTypes = _dereq_(93);
|
|
3860
|
+
var ReactVersion = _dereq_(110);
|
|
3850
3861
|
|
|
3851
|
-
var onlyChild = _dereq_(
|
|
3852
|
-
var warning = _dereq_(
|
|
3862
|
+
var onlyChild = _dereq_(153);
|
|
3863
|
+
var warning = _dereq_(190);
|
|
3853
3864
|
|
|
3854
3865
|
var createElement = ReactElement.createElement;
|
|
3855
3866
|
var createFactory = ReactElement.createFactory;
|
|
3856
3867
|
var cloneElement = ReactElement.cloneElement;
|
|
3857
3868
|
|
|
3858
3869
|
if ("development" !== 'production') {
|
|
3859
|
-
var ReactElementValidator = _dereq_(
|
|
3870
|
+
var ReactElementValidator = _dereq_(68);
|
|
3860
3871
|
createElement = ReactElementValidator.createElement;
|
|
3861
3872
|
createFactory = ReactElementValidator.createFactory;
|
|
3862
3873
|
cloneElement = ReactElementValidator.cloneElement;
|
|
@@ -3886,6 +3897,7 @@ var React = {
|
|
|
3886
3897
|
},
|
|
3887
3898
|
|
|
3888
3899
|
Component: ReactComponent,
|
|
3900
|
+
PureComponent: ReactPureComponent,
|
|
3889
3901
|
|
|
3890
3902
|
createElement: createElement,
|
|
3891
3903
|
cloneElement: cloneElement,
|
|
@@ -3912,7 +3924,7 @@ var React = {
|
|
|
3912
3924
|
};
|
|
3913
3925
|
|
|
3914
3926
|
module.exports = React;
|
|
3915
|
-
},{"
|
|
3927
|
+
},{"110":110,"153":153,"190":190,"191":191,"32":32,"34":34,"35":35,"50":50,"67":67,"68":68,"93":93,"95":95}],28:[function(_dereq_,module,exports){
|
|
3916
3928
|
/**
|
|
3917
3929
|
* Copyright 2013-present, Facebook, Inc.
|
|
3918
3930
|
* All rights reserved.
|
|
@@ -3926,15 +3938,15 @@ module.exports = React;
|
|
|
3926
3938
|
|
|
3927
3939
|
'use strict';
|
|
3928
3940
|
|
|
3929
|
-
var _assign = _dereq_(
|
|
3941
|
+
var _assign = _dereq_(191);
|
|
3930
3942
|
|
|
3931
3943
|
var EventConstants = _dereq_(16);
|
|
3932
3944
|
var EventPluginRegistry = _dereq_(18);
|
|
3933
|
-
var ReactEventEmitterMixin = _dereq_(
|
|
3934
|
-
var ViewportMetrics = _dereq_(
|
|
3945
|
+
var ReactEventEmitterMixin = _dereq_(71);
|
|
3946
|
+
var ViewportMetrics = _dereq_(130);
|
|
3935
3947
|
|
|
3936
|
-
var getVendorPrefixedEventName = _dereq_(
|
|
3937
|
-
var isEventSupported = _dereq_(
|
|
3948
|
+
var getVendorPrefixedEventName = _dereq_(149);
|
|
3949
|
+
var isEventSupported = _dereq_(151);
|
|
3938
3950
|
|
|
3939
3951
|
/**
|
|
3940
3952
|
* Summary of `ReactBrowserEventEmitter` event handling:
|
|
@@ -4230,7 +4242,7 @@ var ReactBrowserEventEmitter = _assign({}, ReactEventEmitterMixin, {
|
|
|
4230
4242
|
});
|
|
4231
4243
|
|
|
4232
4244
|
module.exports = ReactBrowserEventEmitter;
|
|
4233
|
-
},{"
|
|
4245
|
+
},{"130":130,"149":149,"151":151,"16":16,"18":18,"191":191,"71":71}],29:[function(_dereq_,module,exports){
|
|
4234
4246
|
/**
|
|
4235
4247
|
* Copyright 2013-present, Facebook, Inc.
|
|
4236
4248
|
* All rights reserved.
|
|
@@ -4244,11 +4256,11 @@ module.exports = ReactBrowserEventEmitter;
|
|
|
4244
4256
|
|
|
4245
4257
|
'use strict';
|
|
4246
4258
|
|
|
4247
|
-
var _assign = _dereq_(
|
|
4259
|
+
var _assign = _dereq_(191);
|
|
4248
4260
|
|
|
4249
4261
|
var React = _dereq_(27);
|
|
4250
4262
|
|
|
4251
|
-
var ReactTransitionGroup = _dereq_(
|
|
4263
|
+
var ReactTransitionGroup = _dereq_(107);
|
|
4252
4264
|
var ReactCSSTransitionGroupChild = _dereq_(30);
|
|
4253
4265
|
|
|
4254
4266
|
function createTransitionTimeoutPropValidator(transitionType) {
|
|
@@ -4318,7 +4330,7 @@ var ReactCSSTransitionGroup = React.createClass({
|
|
|
4318
4330
|
});
|
|
4319
4331
|
|
|
4320
4332
|
module.exports = ReactCSSTransitionGroup;
|
|
4321
|
-
},{"
|
|
4333
|
+
},{"107":107,"191":191,"27":27,"30":30}],30:[function(_dereq_,module,exports){
|
|
4322
4334
|
/**
|
|
4323
4335
|
* Copyright 2013-present, Facebook, Inc.
|
|
4324
4336
|
* All rights reserved.
|
|
@@ -4333,12 +4345,12 @@ module.exports = ReactCSSTransitionGroup;
|
|
|
4333
4345
|
'use strict';
|
|
4334
4346
|
|
|
4335
4347
|
var React = _dereq_(27);
|
|
4336
|
-
var ReactDOM = _dereq_(
|
|
4348
|
+
var ReactDOM = _dereq_(42);
|
|
4337
4349
|
|
|
4338
|
-
var CSSCore = _dereq_(
|
|
4339
|
-
var ReactTransitionEvents = _dereq_(
|
|
4350
|
+
var CSSCore = _dereq_(164);
|
|
4351
|
+
var ReactTransitionEvents = _dereq_(106);
|
|
4340
4352
|
|
|
4341
|
-
var onlyChild = _dereq_(
|
|
4353
|
+
var onlyChild = _dereq_(153);
|
|
4342
4354
|
|
|
4343
4355
|
var TICK = 17;
|
|
4344
4356
|
|
|
@@ -4486,7 +4498,8 @@ var ReactCSSTransitionGroupChild = React.createClass({
|
|
|
4486
4498
|
});
|
|
4487
4499
|
|
|
4488
4500
|
module.exports = ReactCSSTransitionGroupChild;
|
|
4489
|
-
},{"
|
|
4501
|
+
},{"106":106,"153":153,"164":164,"27":27,"42":42}],31:[function(_dereq_,module,exports){
|
|
4502
|
+
(function (process){
|
|
4490
4503
|
/**
|
|
4491
4504
|
* Copyright 2014-present, Facebook, Inc.
|
|
4492
4505
|
* All rights reserved.
|
|
@@ -4500,19 +4513,32 @@ module.exports = ReactCSSTransitionGroupChild;
|
|
|
4500
4513
|
|
|
4501
4514
|
'use strict';
|
|
4502
4515
|
|
|
4503
|
-
var ReactReconciler = _dereq_(
|
|
4516
|
+
var ReactReconciler = _dereq_(97);
|
|
4504
4517
|
|
|
4505
|
-
var instantiateReactComponent = _dereq_(
|
|
4518
|
+
var instantiateReactComponent = _dereq_(150);
|
|
4506
4519
|
var KeyEscapeUtils = _dereq_(23);
|
|
4507
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
4508
|
-
var traverseAllChildren = _dereq_(
|
|
4509
|
-
var warning = _dereq_(
|
|
4520
|
+
var shouldUpdateReactComponent = _dereq_(160);
|
|
4521
|
+
var traverseAllChildren = _dereq_(161);
|
|
4522
|
+
var warning = _dereq_(190);
|
|
4523
|
+
|
|
4524
|
+
var ReactComponentTreeDevtool;
|
|
4525
|
+
|
|
4526
|
+
if (typeof process !== 'undefined' && process.env && "development" === 'test') {
|
|
4527
|
+
// Temporary hack.
|
|
4528
|
+
// Inline requires don't work well with Jest:
|
|
4529
|
+
// https://github.com/facebook/react/issues/7240
|
|
4530
|
+
// Remove the inline requires when we don't need them anymore:
|
|
4531
|
+
// https://github.com/facebook/react/pull/7178
|
|
4532
|
+
ReactComponentTreeDevtool = _dereq_(38);
|
|
4533
|
+
}
|
|
4510
4534
|
|
|
4511
4535
|
function instantiateChild(childInstances, child, name, selfDebugID) {
|
|
4512
4536
|
// We found a component instance.
|
|
4513
4537
|
var keyUnique = childInstances[name] === undefined;
|
|
4514
4538
|
if ("development" !== 'production') {
|
|
4515
|
-
|
|
4539
|
+
if (!ReactComponentTreeDevtool) {
|
|
4540
|
+
ReactComponentTreeDevtool = _dereq_(38);
|
|
4541
|
+
}
|
|
4516
4542
|
"development" !== 'production' ? warning(keyUnique, 'flattenChildren(...): Encountered two children with the same key, ' + '`%s`. Child keys must be unique; when two children share a key, only ' + 'the first child will be used.%s', KeyEscapeUtils.unescape(name), ReactComponentTreeDevtool.getStackAddendumByID(selfDebugID)) : void 0;
|
|
4517
4543
|
}
|
|
4518
4544
|
if (child != null && keyUnique) {
|
|
@@ -4561,7 +4587,7 @@ var ReactChildReconciler = {
|
|
|
4561
4587
|
* @return {?object} A new set of child instances.
|
|
4562
4588
|
* @internal
|
|
4563
4589
|
*/
|
|
4564
|
-
updateChildren: function (prevChildren, nextChildren, removedNodes, transaction, context) {
|
|
4590
|
+
updateChildren: function (prevChildren, nextChildren, mountImages, removedNodes, transaction, hostParent, hostContainerInfo, context) {
|
|
4565
4591
|
// We currently don't have a way to track moves here but if we use iterators
|
|
4566
4592
|
// instead of for..in we can zip the iterators and check if an item has
|
|
4567
4593
|
// moved.
|
|
@@ -4590,6 +4616,10 @@ var ReactChildReconciler = {
|
|
|
4590
4616
|
// The child must be instantiated before it's mounted.
|
|
4591
4617
|
var nextChildInstance = instantiateReactComponent(nextElement, true);
|
|
4592
4618
|
nextChildren[name] = nextChildInstance;
|
|
4619
|
+
// Creating mount image now ensures refs are resolved in right order
|
|
4620
|
+
// (see https://github.com/facebook/react/pull/7101 for explanation).
|
|
4621
|
+
var nextChildMountImage = ReactReconciler.mountComponent(nextChildInstance, transaction, hostParent, hostContainerInfo, context);
|
|
4622
|
+
mountImages.push(nextChildMountImage);
|
|
4593
4623
|
}
|
|
4594
4624
|
}
|
|
4595
4625
|
// Unmount children that are no longer present.
|
|
@@ -4621,7 +4651,8 @@ var ReactChildReconciler = {
|
|
|
4621
4651
|
};
|
|
4622
4652
|
|
|
4623
4653
|
module.exports = ReactChildReconciler;
|
|
4624
|
-
}
|
|
4654
|
+
}).call(this,undefined)
|
|
4655
|
+
},{"150":150,"160":160,"161":161,"190":190,"23":23,"38":38,"97":97}],32:[function(_dereq_,module,exports){
|
|
4625
4656
|
/**
|
|
4626
4657
|
* Copyright 2013-present, Facebook, Inc.
|
|
4627
4658
|
* All rights reserved.
|
|
@@ -4636,10 +4667,10 @@ module.exports = ReactChildReconciler;
|
|
|
4636
4667
|
'use strict';
|
|
4637
4668
|
|
|
4638
4669
|
var PooledClass = _dereq_(26);
|
|
4639
|
-
var ReactElement = _dereq_(
|
|
4670
|
+
var ReactElement = _dereq_(67);
|
|
4640
4671
|
|
|
4641
|
-
var emptyFunction = _dereq_(
|
|
4642
|
-
var traverseAllChildren = _dereq_(
|
|
4672
|
+
var emptyFunction = _dereq_(172);
|
|
4673
|
+
var traverseAllChildren = _dereq_(161);
|
|
4643
4674
|
|
|
4644
4675
|
var twoArgumentPooler = PooledClass.twoArgumentPooler;
|
|
4645
4676
|
var fourArgumentPooler = PooledClass.fourArgumentPooler;
|
|
@@ -4813,7 +4844,70 @@ var ReactChildren = {
|
|
|
4813
4844
|
};
|
|
4814
4845
|
|
|
4815
4846
|
module.exports = ReactChildren;
|
|
4816
|
-
},{"
|
|
4847
|
+
},{"161":161,"172":172,"26":26,"67":67}],33:[function(_dereq_,module,exports){
|
|
4848
|
+
/**
|
|
4849
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
4850
|
+
* All rights reserved.
|
|
4851
|
+
*
|
|
4852
|
+
* This source code is licensed under the BSD-style license found in the
|
|
4853
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
4854
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
4855
|
+
*
|
|
4856
|
+
* @providesModule ReactChildrenMutationWarningDevtool
|
|
4857
|
+
*/
|
|
4858
|
+
|
|
4859
|
+
'use strict';
|
|
4860
|
+
|
|
4861
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
4862
|
+
|
|
4863
|
+
var warning = _dereq_(190);
|
|
4864
|
+
|
|
4865
|
+
var elements = {};
|
|
4866
|
+
|
|
4867
|
+
function handleElement(debugID, element) {
|
|
4868
|
+
if (element == null) {
|
|
4869
|
+
return;
|
|
4870
|
+
}
|
|
4871
|
+
if (element._shadowChildren === undefined) {
|
|
4872
|
+
return;
|
|
4873
|
+
}
|
|
4874
|
+
if (element._shadowChildren === element.props.children) {
|
|
4875
|
+
return;
|
|
4876
|
+
}
|
|
4877
|
+
var isMutated = false;
|
|
4878
|
+
if (Array.isArray(element._shadowChildren)) {
|
|
4879
|
+
if (element._shadowChildren.length === element.props.children.length) {
|
|
4880
|
+
for (var i = 0; i < element._shadowChildren.length; i++) {
|
|
4881
|
+
if (element._shadowChildren[i] !== element.props.children[i]) {
|
|
4882
|
+
isMutated = true;
|
|
4883
|
+
}
|
|
4884
|
+
}
|
|
4885
|
+
} else {
|
|
4886
|
+
isMutated = true;
|
|
4887
|
+
}
|
|
4888
|
+
}
|
|
4889
|
+
"development" !== 'production' ? warning(Array.isArray(element._shadowChildren) && !isMutated, 'Component\'s children should not be mutated.%s', ReactComponentTreeDevtool.getStackAddendumByID(debugID)) : void 0;
|
|
4890
|
+
}
|
|
4891
|
+
|
|
4892
|
+
var ReactDOMUnknownPropertyDevtool = {
|
|
4893
|
+
onBeforeMountComponent: function (debugID, element) {
|
|
4894
|
+
elements[debugID] = element;
|
|
4895
|
+
},
|
|
4896
|
+
onBeforeUpdateComponent: function (debugID, element) {
|
|
4897
|
+
elements[debugID] = element;
|
|
4898
|
+
},
|
|
4899
|
+
onComponentHasMounted: function (debugID) {
|
|
4900
|
+
handleElement(debugID, elements[debugID]);
|
|
4901
|
+
delete elements[debugID];
|
|
4902
|
+
},
|
|
4903
|
+
onComponentHasUpdated: function (debugID) {
|
|
4904
|
+
handleElement(debugID, elements[debugID]);
|
|
4905
|
+
delete elements[debugID];
|
|
4906
|
+
}
|
|
4907
|
+
};
|
|
4908
|
+
|
|
4909
|
+
module.exports = ReactDOMUnknownPropertyDevtool;
|
|
4910
|
+
},{"190":190,"38":38}],34:[function(_dereq_,module,exports){
|
|
4817
4911
|
/**
|
|
4818
4912
|
* Copyright 2013-present, Facebook, Inc.
|
|
4819
4913
|
* All rights reserved.
|
|
@@ -4827,20 +4921,20 @@ module.exports = ReactChildren;
|
|
|
4827
4921
|
|
|
4828
4922
|
'use strict';
|
|
4829
4923
|
|
|
4830
|
-
var _prodInvariant = _dereq_(
|
|
4831
|
-
_assign = _dereq_(
|
|
4924
|
+
var _prodInvariant = _dereq_(155),
|
|
4925
|
+
_assign = _dereq_(191);
|
|
4832
4926
|
|
|
4833
|
-
var ReactComponent = _dereq_(
|
|
4834
|
-
var ReactElement = _dereq_(
|
|
4835
|
-
var ReactPropTypeLocations = _dereq_(
|
|
4836
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
4837
|
-
var ReactNoopUpdateQueue = _dereq_(
|
|
4927
|
+
var ReactComponent = _dereq_(35);
|
|
4928
|
+
var ReactElement = _dereq_(67);
|
|
4929
|
+
var ReactPropTypeLocations = _dereq_(92);
|
|
4930
|
+
var ReactPropTypeLocationNames = _dereq_(91);
|
|
4931
|
+
var ReactNoopUpdateQueue = _dereq_(88);
|
|
4838
4932
|
|
|
4839
|
-
var emptyObject = _dereq_(
|
|
4840
|
-
var invariant = _dereq_(
|
|
4841
|
-
var keyMirror = _dereq_(
|
|
4842
|
-
var keyOf = _dereq_(
|
|
4843
|
-
var warning = _dereq_(
|
|
4933
|
+
var emptyObject = _dereq_(173);
|
|
4934
|
+
var invariant = _dereq_(180);
|
|
4935
|
+
var keyMirror = _dereq_(183);
|
|
4936
|
+
var keyOf = _dereq_(184);
|
|
4937
|
+
var warning = _dereq_(190);
|
|
4844
4938
|
|
|
4845
4939
|
var MIXINS_KEY = keyOf({ mixins: null });
|
|
4846
4940
|
|
|
@@ -5201,6 +5295,13 @@ function validateMethodOverride(isAlreadyDefined, name) {
|
|
|
5201
5295
|
*/
|
|
5202
5296
|
function mixSpecIntoComponent(Constructor, spec) {
|
|
5203
5297
|
if (!spec) {
|
|
5298
|
+
if ("development" !== 'production') {
|
|
5299
|
+
var typeofSpec = typeof spec;
|
|
5300
|
+
var isMixinValid = typeofSpec === 'object' && spec !== null;
|
|
5301
|
+
|
|
5302
|
+
"development" !== 'production' ? warning(isMixinValid, '%s: You\'re attempting to include a mixin that is either null ' + 'or not an object. Check the mixins included by the component, ' + 'as well as any mixins they include themselves. ' + 'Expected object but got %s.', Constructor.displayName || 'ReactClass', spec === null ? null : typeofSpec) : void 0;
|
|
5303
|
+
}
|
|
5304
|
+
|
|
5204
5305
|
return;
|
|
5205
5306
|
}
|
|
5206
5307
|
|
|
@@ -5539,7 +5640,7 @@ var ReactClass = {
|
|
|
5539
5640
|
};
|
|
5540
5641
|
|
|
5541
5642
|
module.exports = ReactClass;
|
|
5542
|
-
},{"
|
|
5643
|
+
},{"155":155,"173":173,"180":180,"183":183,"184":184,"190":190,"191":191,"35":35,"67":67,"88":88,"91":91,"92":92}],35:[function(_dereq_,module,exports){
|
|
5543
5644
|
/**
|
|
5544
5645
|
* Copyright 2013-present, Facebook, Inc.
|
|
5545
5646
|
* All rights reserved.
|
|
@@ -5553,14 +5654,14 @@ module.exports = ReactClass;
|
|
|
5553
5654
|
|
|
5554
5655
|
'use strict';
|
|
5555
5656
|
|
|
5556
|
-
var _prodInvariant = _dereq_(
|
|
5657
|
+
var _prodInvariant = _dereq_(155);
|
|
5557
5658
|
|
|
5558
|
-
var ReactNoopUpdateQueue = _dereq_(
|
|
5659
|
+
var ReactNoopUpdateQueue = _dereq_(88);
|
|
5559
5660
|
|
|
5560
|
-
var canDefineProperty = _dereq_(
|
|
5561
|
-
var emptyObject = _dereq_(
|
|
5562
|
-
var invariant = _dereq_(
|
|
5563
|
-
var warning = _dereq_(
|
|
5661
|
+
var canDefineProperty = _dereq_(133);
|
|
5662
|
+
var emptyObject = _dereq_(173);
|
|
5663
|
+
var invariant = _dereq_(180);
|
|
5664
|
+
var warning = _dereq_(190);
|
|
5564
5665
|
|
|
5565
5666
|
/**
|
|
5566
5667
|
* Base class helpers for the updating state of a component.
|
|
@@ -5658,7 +5759,7 @@ if ("development" !== 'production') {
|
|
|
5658
5759
|
}
|
|
5659
5760
|
|
|
5660
5761
|
module.exports = ReactComponent;
|
|
5661
|
-
},{"
|
|
5762
|
+
},{"133":133,"155":155,"173":173,"180":180,"190":190,"88":88}],36:[function(_dereq_,module,exports){
|
|
5662
5763
|
/**
|
|
5663
5764
|
* Copyright 2013-present, Facebook, Inc.
|
|
5664
5765
|
* All rights reserved.
|
|
@@ -5673,7 +5774,7 @@ module.exports = ReactComponent;
|
|
|
5673
5774
|
'use strict';
|
|
5674
5775
|
|
|
5675
5776
|
var DOMChildrenOperations = _dereq_(7);
|
|
5676
|
-
var ReactDOMIDOperations = _dereq_(
|
|
5777
|
+
var ReactDOMIDOperations = _dereq_(52);
|
|
5677
5778
|
|
|
5678
5779
|
/**
|
|
5679
5780
|
* Abstracts away all functionality of the reconciler that requires knowledge of
|
|
@@ -5698,7 +5799,7 @@ var ReactComponentBrowserEnvironment = {
|
|
|
5698
5799
|
};
|
|
5699
5800
|
|
|
5700
5801
|
module.exports = ReactComponentBrowserEnvironment;
|
|
5701
|
-
},{"
|
|
5802
|
+
},{"52":52,"7":7}],37:[function(_dereq_,module,exports){
|
|
5702
5803
|
/**
|
|
5703
5804
|
* Copyright 2014-present, Facebook, Inc.
|
|
5704
5805
|
* All rights reserved.
|
|
@@ -5712,9 +5813,9 @@ module.exports = ReactComponentBrowserEnvironment;
|
|
|
5712
5813
|
|
|
5713
5814
|
'use strict';
|
|
5714
5815
|
|
|
5715
|
-
var _prodInvariant = _dereq_(
|
|
5816
|
+
var _prodInvariant = _dereq_(155);
|
|
5716
5817
|
|
|
5717
|
-
var invariant = _dereq_(
|
|
5818
|
+
var invariant = _dereq_(180);
|
|
5718
5819
|
|
|
5719
5820
|
var injected = false;
|
|
5720
5821
|
|
|
@@ -5752,7 +5853,7 @@ var ReactComponentEnvironment = {
|
|
|
5752
5853
|
};
|
|
5753
5854
|
|
|
5754
5855
|
module.exports = ReactComponentEnvironment;
|
|
5755
|
-
},{"
|
|
5856
|
+
},{"155":155,"180":180}],38:[function(_dereq_,module,exports){
|
|
5756
5857
|
/**
|
|
5757
5858
|
* Copyright 2016-present, Facebook, Inc.
|
|
5758
5859
|
* All rights reserved.
|
|
@@ -5766,12 +5867,12 @@ module.exports = ReactComponentEnvironment;
|
|
|
5766
5867
|
|
|
5767
5868
|
'use strict';
|
|
5768
5869
|
|
|
5769
|
-
var _prodInvariant = _dereq_(
|
|
5870
|
+
var _prodInvariant = _dereq_(155);
|
|
5770
5871
|
|
|
5771
|
-
var ReactCurrentOwner = _dereq_(
|
|
5872
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
5772
5873
|
|
|
5773
|
-
var invariant = _dereq_(
|
|
5774
|
-
var warning = _dereq_(
|
|
5874
|
+
var invariant = _dereq_(180);
|
|
5875
|
+
var warning = _dereq_(190);
|
|
5775
5876
|
|
|
5776
5877
|
var tree = {};
|
|
5777
5878
|
var unmountedIDs = {};
|
|
@@ -5971,7 +6072,7 @@ var ReactComponentTreeDevtool = {
|
|
|
5971
6072
|
};
|
|
5972
6073
|
|
|
5973
6074
|
module.exports = ReactComponentTreeDevtool;
|
|
5974
|
-
},{"
|
|
6075
|
+
},{"155":155,"180":180,"190":190,"41":41}],39:[function(_dereq_,module,exports){
|
|
5975
6076
|
/**
|
|
5976
6077
|
* Copyright 2013-present, Facebook, Inc.
|
|
5977
6078
|
* All rights reserved.
|
|
@@ -5985,7 +6086,7 @@ module.exports = ReactComponentTreeDevtool;
|
|
|
5985
6086
|
|
|
5986
6087
|
'use strict';
|
|
5987
6088
|
|
|
5988
|
-
var shallowCompare = _dereq_(
|
|
6089
|
+
var shallowCompare = _dereq_(159);
|
|
5989
6090
|
|
|
5990
6091
|
/**
|
|
5991
6092
|
* If your React component's render function is "pure", e.g. it will render the
|
|
@@ -6020,7 +6121,7 @@ var ReactComponentWithPureRenderMixin = {
|
|
|
6020
6121
|
};
|
|
6021
6122
|
|
|
6022
6123
|
module.exports = ReactComponentWithPureRenderMixin;
|
|
6023
|
-
},{"
|
|
6124
|
+
},{"159":159}],40:[function(_dereq_,module,exports){
|
|
6024
6125
|
/**
|
|
6025
6126
|
* Copyright 2013-present, Facebook, Inc.
|
|
6026
6127
|
* All rights reserved.
|
|
@@ -6034,25 +6135,31 @@ module.exports = ReactComponentWithPureRenderMixin;
|
|
|
6034
6135
|
|
|
6035
6136
|
'use strict';
|
|
6036
6137
|
|
|
6037
|
-
var _prodInvariant = _dereq_(
|
|
6038
|
-
_assign = _dereq_(
|
|
6039
|
-
|
|
6040
|
-
var ReactComponentEnvironment = _dereq_(
|
|
6041
|
-
var ReactCurrentOwner = _dereq_(
|
|
6042
|
-
var ReactElement = _dereq_(
|
|
6043
|
-
var ReactErrorUtils = _dereq_(
|
|
6044
|
-
var ReactInstanceMap = _dereq_(
|
|
6045
|
-
var ReactInstrumentation = _dereq_(
|
|
6046
|
-
var ReactNodeTypes = _dereq_(
|
|
6047
|
-
var ReactPropTypeLocations = _dereq_(
|
|
6048
|
-
var ReactReconciler = _dereq_(
|
|
6049
|
-
|
|
6050
|
-
var checkReactTypeSpec = _dereq_(
|
|
6051
|
-
|
|
6052
|
-
var
|
|
6053
|
-
var
|
|
6054
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
6055
|
-
var warning = _dereq_(
|
|
6138
|
+
var _prodInvariant = _dereq_(155),
|
|
6139
|
+
_assign = _dereq_(191);
|
|
6140
|
+
|
|
6141
|
+
var ReactComponentEnvironment = _dereq_(37);
|
|
6142
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
6143
|
+
var ReactElement = _dereq_(67);
|
|
6144
|
+
var ReactErrorUtils = _dereq_(70);
|
|
6145
|
+
var ReactInstanceMap = _dereq_(79);
|
|
6146
|
+
var ReactInstrumentation = _dereq_(80);
|
|
6147
|
+
var ReactNodeTypes = _dereq_(87);
|
|
6148
|
+
var ReactPropTypeLocations = _dereq_(92);
|
|
6149
|
+
var ReactReconciler = _dereq_(97);
|
|
6150
|
+
|
|
6151
|
+
var checkReactTypeSpec = _dereq_(134);
|
|
6152
|
+
var emptyObject = _dereq_(173);
|
|
6153
|
+
var invariant = _dereq_(180);
|
|
6154
|
+
var shallowEqual = _dereq_(189);
|
|
6155
|
+
var shouldUpdateReactComponent = _dereq_(160);
|
|
6156
|
+
var warning = _dereq_(190);
|
|
6157
|
+
|
|
6158
|
+
var CompositeTypes = {
|
|
6159
|
+
ImpureClass: 0,
|
|
6160
|
+
PureClass: 1,
|
|
6161
|
+
StatelessFunctional: 2
|
|
6162
|
+
};
|
|
6056
6163
|
|
|
6057
6164
|
function StatelessComponent(Component) {}
|
|
6058
6165
|
StatelessComponent.prototype.render = function () {
|
|
@@ -6092,7 +6199,11 @@ function invokeComponentDidUpdateWithTimer(prevProps, prevState, prevContext) {
|
|
|
6092
6199
|
}
|
|
6093
6200
|
|
|
6094
6201
|
function shouldConstruct(Component) {
|
|
6095
|
-
return Component.prototype && Component.prototype.isReactComponent;
|
|
6202
|
+
return !!(Component.prototype && Component.prototype.isReactComponent);
|
|
6203
|
+
}
|
|
6204
|
+
|
|
6205
|
+
function isPureComponent(Component) {
|
|
6206
|
+
return !!(Component.prototype && Component.prototype.isPureReactComponent);
|
|
6096
6207
|
}
|
|
6097
6208
|
|
|
6098
6209
|
/**
|
|
@@ -6145,6 +6256,7 @@ var ReactCompositeComponentMixin = {
|
|
|
6145
6256
|
construct: function (element) {
|
|
6146
6257
|
this._currentElement = element;
|
|
6147
6258
|
this._rootNodeID = null;
|
|
6259
|
+
this._compositeType = null;
|
|
6148
6260
|
this._instance = null;
|
|
6149
6261
|
this._hostParent = null;
|
|
6150
6262
|
this._hostContainerInfo = null;
|
|
@@ -6185,6 +6297,8 @@ var ReactCompositeComponentMixin = {
|
|
|
6185
6297
|
* @internal
|
|
6186
6298
|
*/
|
|
6187
6299
|
mountComponent: function (transaction, hostParent, hostContainerInfo, context) {
|
|
6300
|
+
var _this = this;
|
|
6301
|
+
|
|
6188
6302
|
this._context = context;
|
|
6189
6303
|
this._mountOrder = nextMountID++;
|
|
6190
6304
|
this._hostParent = hostParent;
|
|
@@ -6198,15 +6312,23 @@ var ReactCompositeComponentMixin = {
|
|
|
6198
6312
|
var updateQueue = transaction.getUpdateQueue();
|
|
6199
6313
|
|
|
6200
6314
|
// Initialize the public class
|
|
6201
|
-
var
|
|
6315
|
+
var doConstruct = shouldConstruct(Component);
|
|
6316
|
+
var inst = this._constructComponent(doConstruct, publicProps, publicContext, updateQueue);
|
|
6202
6317
|
var renderedElement;
|
|
6203
6318
|
|
|
6204
6319
|
// Support functional components
|
|
6205
|
-
if (!
|
|
6320
|
+
if (!doConstruct && (inst == null || inst.render == null)) {
|
|
6206
6321
|
renderedElement = inst;
|
|
6207
6322
|
warnIfInvalidElement(Component, renderedElement);
|
|
6208
6323
|
!(inst === null || inst === false || ReactElement.isValidElement(inst)) ? "development" !== 'production' ? invariant(false, '%s(...): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.', Component.displayName || Component.name || 'Component') : _prodInvariant('105', Component.displayName || Component.name || 'Component') : void 0;
|
|
6209
6324
|
inst = new StatelessComponent(Component);
|
|
6325
|
+
this._compositeType = CompositeTypes.StatelessFunctional;
|
|
6326
|
+
} else {
|
|
6327
|
+
if (isPureComponent(Component)) {
|
|
6328
|
+
this._compositeType = CompositeTypes.PureClass;
|
|
6329
|
+
} else {
|
|
6330
|
+
this._compositeType = CompositeTypes.ImpureClass;
|
|
6331
|
+
}
|
|
6210
6332
|
}
|
|
6211
6333
|
|
|
6212
6334
|
if ("development" !== 'production') {
|
|
@@ -6272,26 +6394,35 @@ var ReactCompositeComponentMixin = {
|
|
|
6272
6394
|
}
|
|
6273
6395
|
}
|
|
6274
6396
|
|
|
6397
|
+
if ("development" !== 'production') {
|
|
6398
|
+
if (this._debugID) {
|
|
6399
|
+
var callback = function (component) {
|
|
6400
|
+
return ReactInstrumentation.debugTool.onComponentHasMounted(_this._debugID);
|
|
6401
|
+
};
|
|
6402
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
|
6403
|
+
}
|
|
6404
|
+
}
|
|
6405
|
+
|
|
6275
6406
|
return markup;
|
|
6276
6407
|
},
|
|
6277
6408
|
|
|
6278
|
-
_constructComponent: function (publicProps, publicContext, updateQueue) {
|
|
6409
|
+
_constructComponent: function (doConstruct, publicProps, publicContext, updateQueue) {
|
|
6279
6410
|
if ("development" !== 'production') {
|
|
6280
6411
|
ReactCurrentOwner.current = this;
|
|
6281
6412
|
try {
|
|
6282
|
-
return this._constructComponentWithoutOwner(publicProps, publicContext, updateQueue);
|
|
6413
|
+
return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);
|
|
6283
6414
|
} finally {
|
|
6284
6415
|
ReactCurrentOwner.current = null;
|
|
6285
6416
|
}
|
|
6286
6417
|
} else {
|
|
6287
|
-
return this._constructComponentWithoutOwner(publicProps, publicContext, updateQueue);
|
|
6418
|
+
return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);
|
|
6288
6419
|
}
|
|
6289
6420
|
},
|
|
6290
6421
|
|
|
6291
|
-
_constructComponentWithoutOwner: function (publicProps, publicContext, updateQueue) {
|
|
6422
|
+
_constructComponentWithoutOwner: function (doConstruct, publicProps, publicContext, updateQueue) {
|
|
6292
6423
|
var Component = this._currentElement.type;
|
|
6293
6424
|
var instanceOrElement;
|
|
6294
|
-
if (
|
|
6425
|
+
if (doConstruct) {
|
|
6295
6426
|
if ("development" !== 'production') {
|
|
6296
6427
|
if (this._debugID !== 0) {
|
|
6297
6428
|
ReactInstrumentation.debugTool.onBeginLifeCycleTimer(this._debugID, 'ctor');
|
|
@@ -6595,7 +6726,6 @@ var ReactCompositeComponentMixin = {
|
|
|
6595
6726
|
|
|
6596
6727
|
var willReceive = false;
|
|
6597
6728
|
var nextContext;
|
|
6598
|
-
var nextProps;
|
|
6599
6729
|
|
|
6600
6730
|
// Determine if the context has changed or not
|
|
6601
6731
|
if (this._context === nextUnmaskedContext) {
|
|
@@ -6605,7 +6735,8 @@ var ReactCompositeComponentMixin = {
|
|
|
6605
6735
|
willReceive = true;
|
|
6606
6736
|
}
|
|
6607
6737
|
|
|
6608
|
-
|
|
6738
|
+
var prevProps = prevParentElement.props;
|
|
6739
|
+
var nextProps = nextParentElement.props;
|
|
6609
6740
|
|
|
6610
6741
|
// Not a simple state update but a props update
|
|
6611
6742
|
if (prevParentElement !== nextParentElement) {
|
|
@@ -6632,16 +6763,22 @@ var ReactCompositeComponentMixin = {
|
|
|
6632
6763
|
var nextState = this._processPendingState(nextProps, nextContext);
|
|
6633
6764
|
var shouldUpdate = true;
|
|
6634
6765
|
|
|
6635
|
-
if (!this._pendingForceUpdate
|
|
6636
|
-
if (
|
|
6637
|
-
if (
|
|
6638
|
-
|
|
6766
|
+
if (!this._pendingForceUpdate) {
|
|
6767
|
+
if (inst.shouldComponentUpdate) {
|
|
6768
|
+
if ("development" !== 'production') {
|
|
6769
|
+
if (this._debugID !== 0) {
|
|
6770
|
+
ReactInstrumentation.debugTool.onBeginLifeCycleTimer(this._debugID, 'shouldComponentUpdate');
|
|
6771
|
+
}
|
|
6639
6772
|
}
|
|
6640
|
-
|
|
6641
|
-
|
|
6642
|
-
|
|
6643
|
-
|
|
6644
|
-
|
|
6773
|
+
shouldUpdate = inst.shouldComponentUpdate(nextProps, nextState, nextContext);
|
|
6774
|
+
if ("development" !== 'production') {
|
|
6775
|
+
if (this._debugID !== 0) {
|
|
6776
|
+
ReactInstrumentation.debugTool.onEndLifeCycleTimer(this._debugID, 'shouldComponentUpdate');
|
|
6777
|
+
}
|
|
6778
|
+
}
|
|
6779
|
+
} else {
|
|
6780
|
+
if (this._compositeType === CompositeTypes.PureClass) {
|
|
6781
|
+
shouldUpdate = !shallowEqual(prevProps, nextProps) || !shallowEqual(inst.state, nextState);
|
|
6645
6782
|
}
|
|
6646
6783
|
}
|
|
6647
6784
|
}
|
|
@@ -6703,6 +6840,8 @@ var ReactCompositeComponentMixin = {
|
|
|
6703
6840
|
* @private
|
|
6704
6841
|
*/
|
|
6705
6842
|
_performComponentUpdate: function (nextElement, nextProps, nextState, nextContext, transaction, unmaskedContext) {
|
|
6843
|
+
var _this2 = this;
|
|
6844
|
+
|
|
6706
6845
|
var inst = this._instance;
|
|
6707
6846
|
|
|
6708
6847
|
var hasComponentDidUpdate = Boolean(inst.componentDidUpdate);
|
|
@@ -6744,6 +6883,15 @@ var ReactCompositeComponentMixin = {
|
|
|
6744
6883
|
transaction.getReactMountReady().enqueue(inst.componentDidUpdate.bind(inst, prevProps, prevState, prevContext), inst);
|
|
6745
6884
|
}
|
|
6746
6885
|
}
|
|
6886
|
+
|
|
6887
|
+
if ("development" !== 'production') {
|
|
6888
|
+
if (this._debugID) {
|
|
6889
|
+
var callback = function () {
|
|
6890
|
+
return ReactInstrumentation.debugTool.onComponentHasUpdated(_this2._debugID);
|
|
6891
|
+
};
|
|
6892
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
|
6893
|
+
}
|
|
6894
|
+
}
|
|
6747
6895
|
},
|
|
6748
6896
|
|
|
6749
6897
|
/**
|
|
@@ -6829,11 +6977,15 @@ var ReactCompositeComponentMixin = {
|
|
|
6829
6977
|
*/
|
|
6830
6978
|
_renderValidatedComponent: function () {
|
|
6831
6979
|
var renderedComponent;
|
|
6832
|
-
|
|
6833
|
-
|
|
6980
|
+
if ("development" !== 'production' || this._compositeType !== CompositeTypes.StatelessFunctional) {
|
|
6981
|
+
ReactCurrentOwner.current = this;
|
|
6982
|
+
try {
|
|
6983
|
+
renderedComponent = this._renderValidatedComponentWithoutOwnerOrContext();
|
|
6984
|
+
} finally {
|
|
6985
|
+
ReactCurrentOwner.current = null;
|
|
6986
|
+
}
|
|
6987
|
+
} else {
|
|
6834
6988
|
renderedComponent = this._renderValidatedComponentWithoutOwnerOrContext();
|
|
6835
|
-
} finally {
|
|
6836
|
-
ReactCurrentOwner.current = null;
|
|
6837
6989
|
}
|
|
6838
6990
|
!(
|
|
6839
6991
|
// TODO: An `isValidNode` function would probably be more appropriate
|
|
@@ -6896,7 +7048,7 @@ var ReactCompositeComponentMixin = {
|
|
|
6896
7048
|
*/
|
|
6897
7049
|
getPublicInstance: function () {
|
|
6898
7050
|
var inst = this._instance;
|
|
6899
|
-
if (
|
|
7051
|
+
if (this._compositeType === CompositeTypes.StatelessFunctional) {
|
|
6900
7052
|
return null;
|
|
6901
7053
|
}
|
|
6902
7054
|
return inst;
|
|
@@ -6914,7 +7066,7 @@ var ReactCompositeComponent = {
|
|
|
6914
7066
|
};
|
|
6915
7067
|
|
|
6916
7068
|
module.exports = ReactCompositeComponent;
|
|
6917
|
-
},{"
|
|
7069
|
+
},{"134":134,"155":155,"160":160,"173":173,"180":180,"189":189,"190":190,"191":191,"37":37,"41":41,"67":67,"70":70,"79":79,"80":80,"87":87,"92":92,"97":97}],41:[function(_dereq_,module,exports){
|
|
6918
7070
|
/**
|
|
6919
7071
|
* Copyright 2013-present, Facebook, Inc.
|
|
6920
7072
|
* All rights reserved.
|
|
@@ -6946,7 +7098,7 @@ var ReactCurrentOwner = {
|
|
|
6946
7098
|
};
|
|
6947
7099
|
|
|
6948
7100
|
module.exports = ReactCurrentOwner;
|
|
6949
|
-
},{}],
|
|
7101
|
+
},{}],42:[function(_dereq_,module,exports){
|
|
6950
7102
|
/**
|
|
6951
7103
|
* Copyright 2013-present, Facebook, Inc.
|
|
6952
7104
|
* All rights reserved.
|
|
@@ -6962,21 +7114,21 @@ module.exports = ReactCurrentOwner;
|
|
|
6962
7114
|
|
|
6963
7115
|
'use strict';
|
|
6964
7116
|
|
|
6965
|
-
var ReactDOMComponentTree = _dereq_(
|
|
6966
|
-
var ReactDefaultInjection = _dereq_(
|
|
6967
|
-
var ReactMount = _dereq_(
|
|
6968
|
-
var ReactReconciler = _dereq_(
|
|
6969
|
-
var ReactUpdates = _dereq_(
|
|
6970
|
-
var ReactVersion = _dereq_(
|
|
7117
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
7118
|
+
var ReactDefaultInjection = _dereq_(66);
|
|
7119
|
+
var ReactMount = _dereq_(84);
|
|
7120
|
+
var ReactReconciler = _dereq_(97);
|
|
7121
|
+
var ReactUpdates = _dereq_(109);
|
|
7122
|
+
var ReactVersion = _dereq_(110);
|
|
6971
7123
|
|
|
6972
|
-
var findDOMNode = _dereq_(
|
|
6973
|
-
var getHostComponentFromComposite = _dereq_(
|
|
6974
|
-
var renderSubtreeIntoContainer = _dereq_(
|
|
6975
|
-
var warning = _dereq_(
|
|
7124
|
+
var findDOMNode = _dereq_(138);
|
|
7125
|
+
var getHostComponentFromComposite = _dereq_(145);
|
|
7126
|
+
var renderSubtreeIntoContainer = _dereq_(156);
|
|
7127
|
+
var warning = _dereq_(190);
|
|
6976
7128
|
|
|
6977
7129
|
ReactDefaultInjection.inject();
|
|
6978
7130
|
|
|
6979
|
-
var
|
|
7131
|
+
var ReactDOM = {
|
|
6980
7132
|
findDOMNode: findDOMNode,
|
|
6981
7133
|
render: ReactMount.render,
|
|
6982
7134
|
unmountComponentAtNode: ReactMount.unmountComponentAtNode,
|
|
@@ -7012,7 +7164,7 @@ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVT
|
|
|
7012
7164
|
}
|
|
7013
7165
|
|
|
7014
7166
|
if ("development" !== 'production') {
|
|
7015
|
-
var ExecutionEnvironment = _dereq_(
|
|
7167
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
7016
7168
|
if (ExecutionEnvironment.canUseDOM && window.top === window.self) {
|
|
7017
7169
|
|
|
7018
7170
|
// First check if devtools is not installed
|
|
@@ -7047,8 +7199,8 @@ if ("development" !== 'production') {
|
|
|
7047
7199
|
}
|
|
7048
7200
|
}
|
|
7049
7201
|
|
|
7050
|
-
module.exports =
|
|
7051
|
-
},{"
|
|
7202
|
+
module.exports = ReactDOM;
|
|
7203
|
+
},{"109":109,"110":110,"138":138,"145":145,"156":156,"166":166,"190":190,"46":46,"66":66,"84":84,"97":97}],43:[function(_dereq_,module,exports){
|
|
7052
7204
|
/**
|
|
7053
7205
|
* Copyright 2013-present, Facebook, Inc.
|
|
7054
7206
|
* All rights reserved.
|
|
@@ -7073,7 +7225,7 @@ var ReactDOMButton = {
|
|
|
7073
7225
|
};
|
|
7074
7226
|
|
|
7075
7227
|
module.exports = ReactDOMButton;
|
|
7076
|
-
},{"14":14}],
|
|
7228
|
+
},{"14":14}],44:[function(_dereq_,module,exports){
|
|
7077
7229
|
/**
|
|
7078
7230
|
* Copyright 2013-present, Facebook, Inc.
|
|
7079
7231
|
* All rights reserved.
|
|
@@ -7089,8 +7241,8 @@ module.exports = ReactDOMButton;
|
|
|
7089
7241
|
|
|
7090
7242
|
'use strict';
|
|
7091
7243
|
|
|
7092
|
-
var _prodInvariant = _dereq_(
|
|
7093
|
-
_assign = _dereq_(
|
|
7244
|
+
var _prodInvariant = _dereq_(155),
|
|
7245
|
+
_assign = _dereq_(191);
|
|
7094
7246
|
|
|
7095
7247
|
var AutoFocusUtils = _dereq_(1);
|
|
7096
7248
|
var CSSPropertyOperations = _dereq_(4);
|
|
@@ -7102,26 +7254,26 @@ var EventConstants = _dereq_(16);
|
|
|
7102
7254
|
var EventPluginHub = _dereq_(17);
|
|
7103
7255
|
var EventPluginRegistry = _dereq_(18);
|
|
7104
7256
|
var ReactBrowserEventEmitter = _dereq_(28);
|
|
7105
|
-
var ReactComponentBrowserEnvironment = _dereq_(
|
|
7106
|
-
var ReactDOMButton = _dereq_(
|
|
7107
|
-
var ReactDOMComponentFlags = _dereq_(
|
|
7108
|
-
var ReactDOMComponentTree = _dereq_(
|
|
7109
|
-
var ReactDOMInput = _dereq_(
|
|
7110
|
-
var ReactDOMOption = _dereq_(
|
|
7111
|
-
var ReactDOMSelect = _dereq_(
|
|
7112
|
-
var ReactDOMTextarea = _dereq_(
|
|
7113
|
-
var ReactInstrumentation = _dereq_(
|
|
7114
|
-
var ReactMultiChild = _dereq_(
|
|
7115
|
-
var ReactServerRenderingTransaction = _dereq_(
|
|
7116
|
-
|
|
7117
|
-
var emptyFunction = _dereq_(
|
|
7118
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
7119
|
-
var invariant = _dereq_(
|
|
7120
|
-
var isEventSupported = _dereq_(
|
|
7121
|
-
var keyOf = _dereq_(
|
|
7122
|
-
var shallowEqual = _dereq_(
|
|
7123
|
-
var validateDOMNesting = _dereq_(
|
|
7124
|
-
var warning = _dereq_(
|
|
7257
|
+
var ReactComponentBrowserEnvironment = _dereq_(36);
|
|
7258
|
+
var ReactDOMButton = _dereq_(43);
|
|
7259
|
+
var ReactDOMComponentFlags = _dereq_(45);
|
|
7260
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
7261
|
+
var ReactDOMInput = _dereq_(53);
|
|
7262
|
+
var ReactDOMOption = _dereq_(56);
|
|
7263
|
+
var ReactDOMSelect = _dereq_(57);
|
|
7264
|
+
var ReactDOMTextarea = _dereq_(61);
|
|
7265
|
+
var ReactInstrumentation = _dereq_(80);
|
|
7266
|
+
var ReactMultiChild = _dereq_(85);
|
|
7267
|
+
var ReactServerRenderingTransaction = _dereq_(101);
|
|
7268
|
+
|
|
7269
|
+
var emptyFunction = _dereq_(172);
|
|
7270
|
+
var escapeTextContentForBrowser = _dereq_(137);
|
|
7271
|
+
var invariant = _dereq_(180);
|
|
7272
|
+
var isEventSupported = _dereq_(151);
|
|
7273
|
+
var keyOf = _dereq_(184);
|
|
7274
|
+
var shallowEqual = _dereq_(189);
|
|
7275
|
+
var validateDOMNesting = _dereq_(163);
|
|
7276
|
+
var warning = _dereq_(190);
|
|
7125
7277
|
|
|
7126
7278
|
var Flags = ReactDOMComponentFlags;
|
|
7127
7279
|
var deleteListener = EventPluginHub.deleteListener;
|
|
@@ -7487,6 +7639,8 @@ ReactDOMComponent.Mixin = {
|
|
|
7487
7639
|
* @return {string} The computed markup.
|
|
7488
7640
|
*/
|
|
7489
7641
|
mountComponent: function (transaction, hostParent, hostContainerInfo, context) {
|
|
7642
|
+
var _this = this;
|
|
7643
|
+
|
|
7490
7644
|
this._rootNodeID = globalIdCounter++;
|
|
7491
7645
|
this._domID = hostContainerInfo._idCounter++;
|
|
7492
7646
|
this._hostParent = hostParent;
|
|
@@ -7642,6 +7796,15 @@ ReactDOMComponent.Mixin = {
|
|
|
7642
7796
|
break;
|
|
7643
7797
|
}
|
|
7644
7798
|
|
|
7799
|
+
if ("development" !== 'production') {
|
|
7800
|
+
if (this._debugID) {
|
|
7801
|
+
var callback = function () {
|
|
7802
|
+
return ReactInstrumentation.debugTool.onComponentHasMounted(_this._debugID);
|
|
7803
|
+
};
|
|
7804
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
|
7805
|
+
}
|
|
7806
|
+
}
|
|
7807
|
+
|
|
7645
7808
|
return mountImage;
|
|
7646
7809
|
},
|
|
7647
7810
|
|
|
@@ -7810,6 +7973,8 @@ ReactDOMComponent.Mixin = {
|
|
|
7810
7973
|
* @overridable
|
|
7811
7974
|
*/
|
|
7812
7975
|
updateComponent: function (transaction, prevElement, nextElement, context) {
|
|
7976
|
+
var _this2 = this;
|
|
7977
|
+
|
|
7813
7978
|
var lastProps = prevElement.props;
|
|
7814
7979
|
var nextProps = this._currentElement.props;
|
|
7815
7980
|
|
|
@@ -7847,6 +8012,15 @@ ReactDOMComponent.Mixin = {
|
|
|
7847
8012
|
// reconciliation
|
|
7848
8013
|
transaction.getReactMountReady().enqueue(postUpdateSelectWrapper, this);
|
|
7849
8014
|
}
|
|
8015
|
+
|
|
8016
|
+
if ("development" !== 'production') {
|
|
8017
|
+
if (this._debugID) {
|
|
8018
|
+
var callback = function () {
|
|
8019
|
+
return ReactInstrumentation.debugTool.onComponentHasUpdated(_this2._debugID);
|
|
8020
|
+
};
|
|
8021
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
|
8022
|
+
}
|
|
8023
|
+
}
|
|
7850
8024
|
},
|
|
7851
8025
|
|
|
7852
8026
|
/**
|
|
@@ -8077,7 +8251,7 @@ ReactDOMComponent.Mixin = {
|
|
|
8077
8251
|
_assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);
|
|
8078
8252
|
|
|
8079
8253
|
module.exports = ReactDOMComponent;
|
|
8080
|
-
},{"1":1,"10":10,"11":11,"
|
|
8254
|
+
},{"1":1,"10":10,"101":101,"11":11,"137":137,"151":151,"155":155,"16":16,"163":163,"17":17,"172":172,"18":18,"180":180,"184":184,"189":189,"190":190,"191":191,"28":28,"36":36,"4":4,"43":43,"45":45,"46":46,"53":53,"56":56,"57":57,"61":61,"8":8,"80":80,"85":85,"9":9}],45:[function(_dereq_,module,exports){
|
|
8081
8255
|
/**
|
|
8082
8256
|
* Copyright 2015-present, Facebook, Inc.
|
|
8083
8257
|
* All rights reserved.
|
|
@@ -8096,7 +8270,7 @@ var ReactDOMComponentFlags = {
|
|
|
8096
8270
|
};
|
|
8097
8271
|
|
|
8098
8272
|
module.exports = ReactDOMComponentFlags;
|
|
8099
|
-
},{}],
|
|
8273
|
+
},{}],46:[function(_dereq_,module,exports){
|
|
8100
8274
|
/**
|
|
8101
8275
|
* Copyright 2013-present, Facebook, Inc.
|
|
8102
8276
|
* All rights reserved.
|
|
@@ -8110,12 +8284,12 @@ module.exports = ReactDOMComponentFlags;
|
|
|
8110
8284
|
|
|
8111
8285
|
'use strict';
|
|
8112
8286
|
|
|
8113
|
-
var _prodInvariant = _dereq_(
|
|
8287
|
+
var _prodInvariant = _dereq_(155);
|
|
8114
8288
|
|
|
8115
8289
|
var DOMProperty = _dereq_(10);
|
|
8116
|
-
var ReactDOMComponentFlags = _dereq_(
|
|
8290
|
+
var ReactDOMComponentFlags = _dereq_(45);
|
|
8117
8291
|
|
|
8118
|
-
var invariant = _dereq_(
|
|
8292
|
+
var invariant = _dereq_(180);
|
|
8119
8293
|
|
|
8120
8294
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
8121
8295
|
var Flags = ReactDOMComponentFlags;
|
|
@@ -8285,7 +8459,7 @@ var ReactDOMComponentTree = {
|
|
|
8285
8459
|
};
|
|
8286
8460
|
|
|
8287
8461
|
module.exports = ReactDOMComponentTree;
|
|
8288
|
-
},{"10":10,"
|
|
8462
|
+
},{"10":10,"155":155,"180":180,"45":45}],47:[function(_dereq_,module,exports){
|
|
8289
8463
|
/**
|
|
8290
8464
|
* Copyright 2013-present, Facebook, Inc.
|
|
8291
8465
|
* All rights reserved.
|
|
@@ -8299,7 +8473,7 @@ module.exports = ReactDOMComponentTree;
|
|
|
8299
8473
|
|
|
8300
8474
|
'use strict';
|
|
8301
8475
|
|
|
8302
|
-
var validateDOMNesting = _dereq_(
|
|
8476
|
+
var validateDOMNesting = _dereq_(163);
|
|
8303
8477
|
|
|
8304
8478
|
var DOC_NODE_TYPE = 9;
|
|
8305
8479
|
|
|
@@ -8319,7 +8493,7 @@ function ReactDOMContainerInfo(topLevelWrapper, node) {
|
|
|
8319
8493
|
}
|
|
8320
8494
|
|
|
8321
8495
|
module.exports = ReactDOMContainerInfo;
|
|
8322
|
-
},{"
|
|
8496
|
+
},{"163":163}],48:[function(_dereq_,module,exports){
|
|
8323
8497
|
/**
|
|
8324
8498
|
* Copyright 2013-present, Facebook, Inc.
|
|
8325
8499
|
* All rights reserved.
|
|
@@ -8333,11 +8507,11 @@ module.exports = ReactDOMContainerInfo;
|
|
|
8333
8507
|
|
|
8334
8508
|
'use strict';
|
|
8335
8509
|
|
|
8336
|
-
var ReactDOMNullInputValuePropDevtool = _dereq_(
|
|
8337
|
-
var ReactDOMUnknownPropertyDevtool = _dereq_(
|
|
8338
|
-
var ReactDebugTool = _dereq_(
|
|
8510
|
+
var ReactDOMNullInputValuePropDevtool = _dereq_(55);
|
|
8511
|
+
var ReactDOMUnknownPropertyDevtool = _dereq_(63);
|
|
8512
|
+
var ReactDebugTool = _dereq_(64);
|
|
8339
8513
|
|
|
8340
|
-
var warning = _dereq_(
|
|
8514
|
+
var warning = _dereq_(190);
|
|
8341
8515
|
|
|
8342
8516
|
var eventHandlers = [];
|
|
8343
8517
|
var handlerDoesThrowForEvent = {};
|
|
@@ -8387,7 +8561,7 @@ ReactDOMDebugTool.addDevtool(ReactDOMUnknownPropertyDevtool);
|
|
|
8387
8561
|
ReactDOMDebugTool.addDevtool(ReactDOMNullInputValuePropDevtool);
|
|
8388
8562
|
|
|
8389
8563
|
module.exports = ReactDOMDebugTool;
|
|
8390
|
-
},{"
|
|
8564
|
+
},{"190":190,"55":55,"63":63,"64":64}],49:[function(_dereq_,module,exports){
|
|
8391
8565
|
/**
|
|
8392
8566
|
* Copyright 2014-present, Facebook, Inc.
|
|
8393
8567
|
* All rights reserved.
|
|
@@ -8401,10 +8575,10 @@ module.exports = ReactDOMDebugTool;
|
|
|
8401
8575
|
|
|
8402
8576
|
'use strict';
|
|
8403
8577
|
|
|
8404
|
-
var _assign = _dereq_(
|
|
8578
|
+
var _assign = _dereq_(191);
|
|
8405
8579
|
|
|
8406
8580
|
var DOMLazyTree = _dereq_(8);
|
|
8407
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8581
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
8408
8582
|
|
|
8409
8583
|
var ReactDOMEmptyComponent = function (instantiate) {
|
|
8410
8584
|
// ReactCompositeComponent uses this:
|
|
@@ -8448,7 +8622,7 @@ _assign(ReactDOMEmptyComponent.prototype, {
|
|
|
8448
8622
|
});
|
|
8449
8623
|
|
|
8450
8624
|
module.exports = ReactDOMEmptyComponent;
|
|
8451
|
-
},{"
|
|
8625
|
+
},{"191":191,"46":46,"8":8}],50:[function(_dereq_,module,exports){
|
|
8452
8626
|
/**
|
|
8453
8627
|
* Copyright 2013-present, Facebook, Inc.
|
|
8454
8628
|
* All rights reserved.
|
|
@@ -8462,9 +8636,9 @@ module.exports = ReactDOMEmptyComponent;
|
|
|
8462
8636
|
|
|
8463
8637
|
'use strict';
|
|
8464
8638
|
|
|
8465
|
-
var ReactElement = _dereq_(
|
|
8639
|
+
var ReactElement = _dereq_(67);
|
|
8466
8640
|
|
|
8467
|
-
var mapObject = _dereq_(
|
|
8641
|
+
var mapObject = _dereq_(185);
|
|
8468
8642
|
|
|
8469
8643
|
/**
|
|
8470
8644
|
* Create a factory that creates HTML tag elements.
|
|
@@ -8474,7 +8648,7 @@ var mapObject = _dereq_(182);
|
|
|
8474
8648
|
*/
|
|
8475
8649
|
function createDOMFactory(tag) {
|
|
8476
8650
|
if ("development" !== 'production') {
|
|
8477
|
-
var ReactElementValidator = _dereq_(
|
|
8651
|
+
var ReactElementValidator = _dereq_(68);
|
|
8478
8652
|
return ReactElementValidator.createFactory(tag);
|
|
8479
8653
|
}
|
|
8480
8654
|
return ReactElement.createFactory(tag);
|
|
@@ -8625,7 +8799,7 @@ var ReactDOMFactories = mapObject({
|
|
|
8625
8799
|
}, createDOMFactory);
|
|
8626
8800
|
|
|
8627
8801
|
module.exports = ReactDOMFactories;
|
|
8628
|
-
},{"
|
|
8802
|
+
},{"185":185,"67":67,"68":68}],51:[function(_dereq_,module,exports){
|
|
8629
8803
|
/**
|
|
8630
8804
|
* Copyright 2013-present, Facebook, Inc.
|
|
8631
8805
|
* All rights reserved.
|
|
@@ -8644,7 +8818,7 @@ var ReactDOMFeatureFlags = {
|
|
|
8644
8818
|
};
|
|
8645
8819
|
|
|
8646
8820
|
module.exports = ReactDOMFeatureFlags;
|
|
8647
|
-
},{}],
|
|
8821
|
+
},{}],52:[function(_dereq_,module,exports){
|
|
8648
8822
|
/**
|
|
8649
8823
|
* Copyright 2013-present, Facebook, Inc.
|
|
8650
8824
|
* All rights reserved.
|
|
@@ -8659,7 +8833,7 @@ module.exports = ReactDOMFeatureFlags;
|
|
|
8659
8833
|
'use strict';
|
|
8660
8834
|
|
|
8661
8835
|
var DOMChildrenOperations = _dereq_(7);
|
|
8662
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8836
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
8663
8837
|
|
|
8664
8838
|
/**
|
|
8665
8839
|
* Operations used to process updates to DOM nodes.
|
|
@@ -8679,7 +8853,7 @@ var ReactDOMIDOperations = {
|
|
|
8679
8853
|
};
|
|
8680
8854
|
|
|
8681
8855
|
module.exports = ReactDOMIDOperations;
|
|
8682
|
-
},{"
|
|
8856
|
+
},{"46":46,"7":7}],53:[function(_dereq_,module,exports){
|
|
8683
8857
|
/**
|
|
8684
8858
|
* Copyright 2013-present, Facebook, Inc.
|
|
8685
8859
|
* All rights reserved.
|
|
@@ -8693,17 +8867,17 @@ module.exports = ReactDOMIDOperations;
|
|
|
8693
8867
|
|
|
8694
8868
|
'use strict';
|
|
8695
8869
|
|
|
8696
|
-
var _prodInvariant = _dereq_(
|
|
8697
|
-
_assign = _dereq_(
|
|
8870
|
+
var _prodInvariant = _dereq_(155),
|
|
8871
|
+
_assign = _dereq_(191);
|
|
8698
8872
|
|
|
8699
8873
|
var DisabledInputUtils = _dereq_(14);
|
|
8700
8874
|
var DOMPropertyOperations = _dereq_(11);
|
|
8701
8875
|
var LinkedValueUtils = _dereq_(25);
|
|
8702
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8703
|
-
var ReactUpdates = _dereq_(
|
|
8876
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
8877
|
+
var ReactUpdates = _dereq_(109);
|
|
8704
8878
|
|
|
8705
|
-
var invariant = _dereq_(
|
|
8706
|
-
var warning = _dereq_(
|
|
8879
|
+
var invariant = _dereq_(180);
|
|
8880
|
+
var warning = _dereq_(190);
|
|
8707
8881
|
|
|
8708
8882
|
var didWarnValueLink = false;
|
|
8709
8883
|
var didWarnCheckedLink = false;
|
|
@@ -8748,7 +8922,10 @@ var ReactDOMInput = {
|
|
|
8748
8922
|
var hostProps = _assign({
|
|
8749
8923
|
// Make sure we set .type before any other properties (setting .value
|
|
8750
8924
|
// before .type means .value is lost in IE11 and below)
|
|
8751
|
-
type: undefined
|
|
8925
|
+
type: undefined,
|
|
8926
|
+
// Make sure we set .step before .value (setting .value before .step
|
|
8927
|
+
// means .value is rounded on mount, based upon step precision)
|
|
8928
|
+
step: undefined
|
|
8752
8929
|
}, DisabledInputUtils.getHostProps(inst, props), {
|
|
8753
8930
|
defaultChecked: undefined,
|
|
8754
8931
|
defaultValue: undefined,
|
|
@@ -8924,7 +9101,7 @@ function _handleChange(event) {
|
|
|
8924
9101
|
}
|
|
8925
9102
|
|
|
8926
9103
|
module.exports = ReactDOMInput;
|
|
8927
|
-
},{"
|
|
9104
|
+
},{"109":109,"11":11,"14":14,"155":155,"180":180,"190":190,"191":191,"25":25,"46":46}],54:[function(_dereq_,module,exports){
|
|
8928
9105
|
/**
|
|
8929
9106
|
* Copyright 2013-present, Facebook, Inc.
|
|
8930
9107
|
* All rights reserved.
|
|
@@ -8941,12 +9118,12 @@ module.exports = ReactDOMInput;
|
|
|
8941
9118
|
var debugTool = null;
|
|
8942
9119
|
|
|
8943
9120
|
if ("development" !== 'production') {
|
|
8944
|
-
var ReactDOMDebugTool = _dereq_(
|
|
9121
|
+
var ReactDOMDebugTool = _dereq_(48);
|
|
8945
9122
|
debugTool = ReactDOMDebugTool;
|
|
8946
9123
|
}
|
|
8947
9124
|
|
|
8948
9125
|
module.exports = { debugTool: debugTool };
|
|
8949
|
-
},{"
|
|
9126
|
+
},{"48":48}],55:[function(_dereq_,module,exports){
|
|
8950
9127
|
/**
|
|
8951
9128
|
* Copyright 2013-present, Facebook, Inc.
|
|
8952
9129
|
* All rights reserved.
|
|
@@ -8960,9 +9137,9 @@ module.exports = { debugTool: debugTool };
|
|
|
8960
9137
|
|
|
8961
9138
|
'use strict';
|
|
8962
9139
|
|
|
8963
|
-
var ReactComponentTreeDevtool = _dereq_(
|
|
9140
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
8964
9141
|
|
|
8965
|
-
var warning = _dereq_(
|
|
9142
|
+
var warning = _dereq_(190);
|
|
8966
9143
|
|
|
8967
9144
|
var didWarnValueNull = false;
|
|
8968
9145
|
|
|
@@ -8990,7 +9167,7 @@ var ReactDOMUnknownPropertyDevtool = {
|
|
|
8990
9167
|
};
|
|
8991
9168
|
|
|
8992
9169
|
module.exports = ReactDOMUnknownPropertyDevtool;
|
|
8993
|
-
},{"
|
|
9170
|
+
},{"190":190,"38":38}],56:[function(_dereq_,module,exports){
|
|
8994
9171
|
/**
|
|
8995
9172
|
* Copyright 2013-present, Facebook, Inc.
|
|
8996
9173
|
* All rights reserved.
|
|
@@ -9004,13 +9181,13 @@ module.exports = ReactDOMUnknownPropertyDevtool;
|
|
|
9004
9181
|
|
|
9005
9182
|
'use strict';
|
|
9006
9183
|
|
|
9007
|
-
var _assign = _dereq_(
|
|
9184
|
+
var _assign = _dereq_(191);
|
|
9008
9185
|
|
|
9009
9186
|
var ReactChildren = _dereq_(32);
|
|
9010
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9011
|
-
var ReactDOMSelect = _dereq_(
|
|
9187
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
9188
|
+
var ReactDOMSelect = _dereq_(57);
|
|
9012
9189
|
|
|
9013
|
-
var warning = _dereq_(
|
|
9190
|
+
var warning = _dereq_(190);
|
|
9014
9191
|
var didWarnInvalidOptionChildren = false;
|
|
9015
9192
|
|
|
9016
9193
|
function flattenChildren(children) {
|
|
@@ -9114,7 +9291,7 @@ var ReactDOMOption = {
|
|
|
9114
9291
|
};
|
|
9115
9292
|
|
|
9116
9293
|
module.exports = ReactDOMOption;
|
|
9117
|
-
},{"
|
|
9294
|
+
},{"190":190,"191":191,"32":32,"46":46,"57":57}],57:[function(_dereq_,module,exports){
|
|
9118
9295
|
/**
|
|
9119
9296
|
* Copyright 2013-present, Facebook, Inc.
|
|
9120
9297
|
* All rights reserved.
|
|
@@ -9128,14 +9305,14 @@ module.exports = ReactDOMOption;
|
|
|
9128
9305
|
|
|
9129
9306
|
'use strict';
|
|
9130
9307
|
|
|
9131
|
-
var _assign = _dereq_(
|
|
9308
|
+
var _assign = _dereq_(191);
|
|
9132
9309
|
|
|
9133
9310
|
var DisabledInputUtils = _dereq_(14);
|
|
9134
9311
|
var LinkedValueUtils = _dereq_(25);
|
|
9135
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9136
|
-
var ReactUpdates = _dereq_(
|
|
9312
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
9313
|
+
var ReactUpdates = _dereq_(109);
|
|
9137
9314
|
|
|
9138
|
-
var warning = _dereq_(
|
|
9315
|
+
var warning = _dereq_(190);
|
|
9139
9316
|
|
|
9140
9317
|
var didWarnValueLink = false;
|
|
9141
9318
|
var didWarnValueDefaultValue = false;
|
|
@@ -9315,7 +9492,7 @@ function _handleChange(event) {
|
|
|
9315
9492
|
}
|
|
9316
9493
|
|
|
9317
9494
|
module.exports = ReactDOMSelect;
|
|
9318
|
-
},{"
|
|
9495
|
+
},{"109":109,"14":14,"190":190,"191":191,"25":25,"46":46}],58:[function(_dereq_,module,exports){
|
|
9319
9496
|
/**
|
|
9320
9497
|
* Copyright 2013-present, Facebook, Inc.
|
|
9321
9498
|
* All rights reserved.
|
|
@@ -9329,10 +9506,10 @@ module.exports = ReactDOMSelect;
|
|
|
9329
9506
|
|
|
9330
9507
|
'use strict';
|
|
9331
9508
|
|
|
9332
|
-
var ExecutionEnvironment = _dereq_(
|
|
9509
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
9333
9510
|
|
|
9334
|
-
var getNodeForCharacterOffset = _dereq_(
|
|
9335
|
-
var getTextContentAccessor = _dereq_(
|
|
9511
|
+
var getNodeForCharacterOffset = _dereq_(147);
|
|
9512
|
+
var getTextContentAccessor = _dereq_(148);
|
|
9336
9513
|
|
|
9337
9514
|
/**
|
|
9338
9515
|
* While `isCollapsed` is available on the Selection object and `collapsed`
|
|
@@ -9528,7 +9705,7 @@ var ReactDOMSelection = {
|
|
|
9528
9705
|
};
|
|
9529
9706
|
|
|
9530
9707
|
module.exports = ReactDOMSelection;
|
|
9531
|
-
},{"
|
|
9708
|
+
},{"147":147,"148":148,"166":166}],59:[function(_dereq_,module,exports){
|
|
9532
9709
|
/**
|
|
9533
9710
|
* Copyright 2013-present, Facebook, Inc.
|
|
9534
9711
|
* All rights reserved.
|
|
@@ -9542,9 +9719,9 @@ module.exports = ReactDOMSelection;
|
|
|
9542
9719
|
|
|
9543
9720
|
'use strict';
|
|
9544
9721
|
|
|
9545
|
-
var ReactDefaultInjection = _dereq_(
|
|
9546
|
-
var ReactServerRendering = _dereq_(
|
|
9547
|
-
var ReactVersion = _dereq_(
|
|
9722
|
+
var ReactDefaultInjection = _dereq_(66);
|
|
9723
|
+
var ReactServerRendering = _dereq_(100);
|
|
9724
|
+
var ReactVersion = _dereq_(110);
|
|
9548
9725
|
|
|
9549
9726
|
ReactDefaultInjection.inject();
|
|
9550
9727
|
|
|
@@ -9555,7 +9732,7 @@ var ReactDOMServer = {
|
|
|
9555
9732
|
};
|
|
9556
9733
|
|
|
9557
9734
|
module.exports = ReactDOMServer;
|
|
9558
|
-
},{"
|
|
9735
|
+
},{"100":100,"110":110,"66":66}],60:[function(_dereq_,module,exports){
|
|
9559
9736
|
/**
|
|
9560
9737
|
* Copyright 2013-present, Facebook, Inc.
|
|
9561
9738
|
* All rights reserved.
|
|
@@ -9569,17 +9746,17 @@ module.exports = ReactDOMServer;
|
|
|
9569
9746
|
|
|
9570
9747
|
'use strict';
|
|
9571
9748
|
|
|
9572
|
-
var _prodInvariant = _dereq_(
|
|
9573
|
-
_assign = _dereq_(
|
|
9749
|
+
var _prodInvariant = _dereq_(155),
|
|
9750
|
+
_assign = _dereq_(191);
|
|
9574
9751
|
|
|
9575
9752
|
var DOMChildrenOperations = _dereq_(7);
|
|
9576
9753
|
var DOMLazyTree = _dereq_(8);
|
|
9577
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9578
|
-
var ReactInstrumentation = _dereq_(
|
|
9754
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
9755
|
+
var ReactInstrumentation = _dereq_(80);
|
|
9579
9756
|
|
|
9580
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
9581
|
-
var invariant = _dereq_(
|
|
9582
|
-
var validateDOMNesting = _dereq_(
|
|
9757
|
+
var escapeTextContentForBrowser = _dereq_(137);
|
|
9758
|
+
var invariant = _dereq_(180);
|
|
9759
|
+
var validateDOMNesting = _dereq_(163);
|
|
9583
9760
|
|
|
9584
9761
|
/**
|
|
9585
9762
|
* Text nodes violate a couple assumptions that React makes about components:
|
|
@@ -9727,7 +9904,7 @@ _assign(ReactDOMTextComponent.prototype, {
|
|
|
9727
9904
|
});
|
|
9728
9905
|
|
|
9729
9906
|
module.exports = ReactDOMTextComponent;
|
|
9730
|
-
},{"
|
|
9907
|
+
},{"137":137,"155":155,"163":163,"180":180,"191":191,"46":46,"7":7,"8":8,"80":80}],61:[function(_dereq_,module,exports){
|
|
9731
9908
|
/**
|
|
9732
9909
|
* Copyright 2013-present, Facebook, Inc.
|
|
9733
9910
|
* All rights reserved.
|
|
@@ -9741,16 +9918,16 @@ module.exports = ReactDOMTextComponent;
|
|
|
9741
9918
|
|
|
9742
9919
|
'use strict';
|
|
9743
9920
|
|
|
9744
|
-
var _prodInvariant = _dereq_(
|
|
9745
|
-
_assign = _dereq_(
|
|
9921
|
+
var _prodInvariant = _dereq_(155),
|
|
9922
|
+
_assign = _dereq_(191);
|
|
9746
9923
|
|
|
9747
9924
|
var DisabledInputUtils = _dereq_(14);
|
|
9748
9925
|
var LinkedValueUtils = _dereq_(25);
|
|
9749
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9750
|
-
var ReactUpdates = _dereq_(
|
|
9926
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
9927
|
+
var ReactUpdates = _dereq_(109);
|
|
9751
9928
|
|
|
9752
|
-
var invariant = _dereq_(
|
|
9753
|
-
var warning = _dereq_(
|
|
9929
|
+
var invariant = _dereq_(180);
|
|
9930
|
+
var warning = _dereq_(190);
|
|
9754
9931
|
|
|
9755
9932
|
var didWarnValueLink = false;
|
|
9756
9933
|
var didWarnValDefaultVal = false;
|
|
@@ -9883,7 +10060,7 @@ function _handleChange(event) {
|
|
|
9883
10060
|
}
|
|
9884
10061
|
|
|
9885
10062
|
module.exports = ReactDOMTextarea;
|
|
9886
|
-
},{"
|
|
10063
|
+
},{"109":109,"14":14,"155":155,"180":180,"190":190,"191":191,"25":25,"46":46}],62:[function(_dereq_,module,exports){
|
|
9887
10064
|
/**
|
|
9888
10065
|
* Copyright 2015-present, Facebook, Inc.
|
|
9889
10066
|
* All rights reserved.
|
|
@@ -9897,9 +10074,9 @@ module.exports = ReactDOMTextarea;
|
|
|
9897
10074
|
|
|
9898
10075
|
'use strict';
|
|
9899
10076
|
|
|
9900
|
-
var _prodInvariant = _dereq_(
|
|
10077
|
+
var _prodInvariant = _dereq_(155);
|
|
9901
10078
|
|
|
9902
|
-
var invariant = _dereq_(
|
|
10079
|
+
var invariant = _dereq_(180);
|
|
9903
10080
|
|
|
9904
10081
|
/**
|
|
9905
10082
|
* Return the lowest common ancestor of A and B, or null if they are in
|
|
@@ -10020,7 +10197,7 @@ module.exports = {
|
|
|
10020
10197
|
traverseTwoPhase: traverseTwoPhase,
|
|
10021
10198
|
traverseEnterLeave: traverseEnterLeave
|
|
10022
10199
|
};
|
|
10023
|
-
},{"
|
|
10200
|
+
},{"155":155,"180":180}],63:[function(_dereq_,module,exports){
|
|
10024
10201
|
/**
|
|
10025
10202
|
* Copyright 2013-present, Facebook, Inc.
|
|
10026
10203
|
* All rights reserved.
|
|
@@ -10036,9 +10213,9 @@ module.exports = {
|
|
|
10036
10213
|
|
|
10037
10214
|
var DOMProperty = _dereq_(10);
|
|
10038
10215
|
var EventPluginRegistry = _dereq_(18);
|
|
10039
|
-
var ReactComponentTreeDevtool = _dereq_(
|
|
10216
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
10040
10217
|
|
|
10041
|
-
var warning = _dereq_(
|
|
10218
|
+
var warning = _dereq_(190);
|
|
10042
10219
|
|
|
10043
10220
|
if ("development" !== 'production') {
|
|
10044
10221
|
var reactProps = {
|
|
@@ -10133,7 +10310,7 @@ var ReactDOMUnknownPropertyDevtool = {
|
|
|
10133
10310
|
};
|
|
10134
10311
|
|
|
10135
10312
|
module.exports = ReactDOMUnknownPropertyDevtool;
|
|
10136
|
-
},{"10":10,"18":18,"
|
|
10313
|
+
},{"10":10,"18":18,"190":190,"38":38}],64:[function(_dereq_,module,exports){
|
|
10137
10314
|
/**
|
|
10138
10315
|
* Copyright 2016-present, Facebook, Inc.
|
|
10139
10316
|
* All rights reserved.
|
|
@@ -10147,13 +10324,14 @@ module.exports = ReactDOMUnknownPropertyDevtool;
|
|
|
10147
10324
|
|
|
10148
10325
|
'use strict';
|
|
10149
10326
|
|
|
10150
|
-
var ReactInvalidSetStateWarningDevTool = _dereq_(
|
|
10151
|
-
var ReactHostOperationHistoryDevtool = _dereq_(
|
|
10152
|
-
var ReactComponentTreeDevtool = _dereq_(
|
|
10153
|
-
var
|
|
10327
|
+
var ReactInvalidSetStateWarningDevTool = _dereq_(81);
|
|
10328
|
+
var ReactHostOperationHistoryDevtool = _dereq_(76);
|
|
10329
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
10330
|
+
var ReactChildrenMutationWarningDevtool = _dereq_(33);
|
|
10331
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
10154
10332
|
|
|
10155
|
-
var performanceNow = _dereq_(
|
|
10156
|
-
var warning = _dereq_(
|
|
10333
|
+
var performanceNow = _dereq_(188);
|
|
10334
|
+
var warning = _dereq_(190);
|
|
10157
10335
|
|
|
10158
10336
|
var eventHandlers = [];
|
|
10159
10337
|
var handlerDoesThrowForEvent = {};
|
|
@@ -10182,6 +10360,8 @@ var currentTimerStartTime = null;
|
|
|
10182
10360
|
var currentTimerNestedFlushDuration = null;
|
|
10183
10361
|
var currentTimerType = null;
|
|
10184
10362
|
|
|
10363
|
+
var lifeCycleTimerHasWarned = false;
|
|
10364
|
+
|
|
10185
10365
|
function clearHistory() {
|
|
10186
10366
|
ReactComponentTreeDevtool.purgeUnmountedComponents();
|
|
10187
10367
|
ReactHostOperationHistoryDevtool.clearHistory();
|
|
@@ -10239,7 +10419,10 @@ function beginLifeCycleTimer(debugID, timerType) {
|
|
|
10239
10419
|
if (currentFlushNesting === 0) {
|
|
10240
10420
|
return;
|
|
10241
10421
|
}
|
|
10242
|
-
|
|
10422
|
+
if (currentTimerType && !lifeCycleTimerHasWarned) {
|
|
10423
|
+
"development" !== 'production' ? warning(false, 'There is an internal error in the React performance measurement code. ' + 'Did not expect %s timer to start while %s timer is still in ' + 'progress for %s instance.', timerType, currentTimerType || 'no', debugID === currentTimerDebugID ? 'the same' : 'another') : void 0;
|
|
10424
|
+
lifeCycleTimerHasWarned = true;
|
|
10425
|
+
}
|
|
10243
10426
|
currentTimerStartTime = performanceNow();
|
|
10244
10427
|
currentTimerNestedFlushDuration = 0;
|
|
10245
10428
|
currentTimerDebugID = debugID;
|
|
@@ -10250,7 +10433,10 @@ function endLifeCycleTimer(debugID, timerType) {
|
|
|
10250
10433
|
if (currentFlushNesting === 0) {
|
|
10251
10434
|
return;
|
|
10252
10435
|
}
|
|
10253
|
-
|
|
10436
|
+
if (currentTimerType !== timerType && !lifeCycleTimerHasWarned) {
|
|
10437
|
+
"development" !== 'production' ? warning(false, 'There is an internal error in the React performance measurement code. ' + 'We did not expect %s timer to stop while %s timer is still in ' + 'progress for %s instance. Please report this as a bug in React.', timerType, currentTimerType || 'no', debugID === currentTimerDebugID ? 'the same' : 'another') : void 0;
|
|
10438
|
+
lifeCycleTimerHasWarned = true;
|
|
10439
|
+
}
|
|
10254
10440
|
if (isProfiling) {
|
|
10255
10441
|
currentFlushMeasurements.push({
|
|
10256
10442
|
timerType: timerType,
|
|
@@ -10376,6 +10562,14 @@ var ReactDebugTool = {
|
|
|
10376
10562
|
checkDebugID(debugID);
|
|
10377
10563
|
emitEvent('onHostOperation', debugID, type, payload);
|
|
10378
10564
|
},
|
|
10565
|
+
onComponentHasMounted: function (debugID) {
|
|
10566
|
+
checkDebugID(debugID);
|
|
10567
|
+
emitEvent('onComponentHasMounted', debugID);
|
|
10568
|
+
},
|
|
10569
|
+
onComponentHasUpdated: function (debugID) {
|
|
10570
|
+
checkDebugID(debugID);
|
|
10571
|
+
emitEvent('onComponentHasUpdated', debugID);
|
|
10572
|
+
},
|
|
10379
10573
|
onSetState: function () {
|
|
10380
10574
|
emitEvent('onSetState');
|
|
10381
10575
|
},
|
|
@@ -10431,13 +10625,14 @@ var ReactDebugTool = {
|
|
|
10431
10625
|
|
|
10432
10626
|
ReactDebugTool.addDevtool(ReactInvalidSetStateWarningDevTool);
|
|
10433
10627
|
ReactDebugTool.addDevtool(ReactComponentTreeDevtool);
|
|
10628
|
+
ReactDebugTool.addDevtool(ReactChildrenMutationWarningDevtool);
|
|
10434
10629
|
var url = ExecutionEnvironment.canUseDOM && window.location.href || '';
|
|
10435
10630
|
if (/[?&]react_perf\b/.test(url)) {
|
|
10436
10631
|
ReactDebugTool.beginProfiling();
|
|
10437
10632
|
}
|
|
10438
10633
|
|
|
10439
10634
|
module.exports = ReactDebugTool;
|
|
10440
|
-
},{"
|
|
10635
|
+
},{"166":166,"188":188,"190":190,"33":33,"38":38,"76":76,"81":81}],65:[function(_dereq_,module,exports){
|
|
10441
10636
|
/**
|
|
10442
10637
|
* Copyright 2013-present, Facebook, Inc.
|
|
10443
10638
|
* All rights reserved.
|
|
@@ -10451,12 +10646,12 @@ module.exports = ReactDebugTool;
|
|
|
10451
10646
|
|
|
10452
10647
|
'use strict';
|
|
10453
10648
|
|
|
10454
|
-
var _assign = _dereq_(
|
|
10649
|
+
var _assign = _dereq_(191);
|
|
10455
10650
|
|
|
10456
|
-
var ReactUpdates = _dereq_(
|
|
10457
|
-
var Transaction = _dereq_(
|
|
10651
|
+
var ReactUpdates = _dereq_(109);
|
|
10652
|
+
var Transaction = _dereq_(129);
|
|
10458
10653
|
|
|
10459
|
-
var emptyFunction = _dereq_(
|
|
10654
|
+
var emptyFunction = _dereq_(172);
|
|
10460
10655
|
|
|
10461
10656
|
var RESET_BATCHED_UPDATES = {
|
|
10462
10657
|
initialize: emptyFunction,
|
|
@@ -10506,7 +10701,7 @@ var ReactDefaultBatchingStrategy = {
|
|
|
10506
10701
|
};
|
|
10507
10702
|
|
|
10508
10703
|
module.exports = ReactDefaultBatchingStrategy;
|
|
10509
|
-
},{"
|
|
10704
|
+
},{"109":109,"129":129,"172":172,"191":191}],66:[function(_dereq_,module,exports){
|
|
10510
10705
|
/**
|
|
10511
10706
|
* Copyright 2013-present, Facebook, Inc.
|
|
10512
10707
|
* All rights reserved.
|
|
@@ -10525,19 +10720,19 @@ var ChangeEventPlugin = _dereq_(6);
|
|
|
10525
10720
|
var DefaultEventPluginOrder = _dereq_(13);
|
|
10526
10721
|
var EnterLeaveEventPlugin = _dereq_(15);
|
|
10527
10722
|
var HTMLDOMPropertyConfig = _dereq_(22);
|
|
10528
|
-
var ReactComponentBrowserEnvironment = _dereq_(
|
|
10529
|
-
var ReactDOMComponent = _dereq_(
|
|
10530
|
-
var ReactDOMComponentTree = _dereq_(
|
|
10531
|
-
var ReactDOMEmptyComponent = _dereq_(
|
|
10532
|
-
var ReactDOMTreeTraversal = _dereq_(
|
|
10533
|
-
var ReactDOMTextComponent = _dereq_(
|
|
10534
|
-
var ReactDefaultBatchingStrategy = _dereq_(
|
|
10535
|
-
var ReactEventListener = _dereq_(
|
|
10536
|
-
var ReactInjection = _dereq_(
|
|
10537
|
-
var ReactReconcileTransaction = _dereq_(
|
|
10538
|
-
var SVGDOMPropertyConfig = _dereq_(
|
|
10539
|
-
var SelectEventPlugin = _dereq_(
|
|
10540
|
-
var SimpleEventPlugin = _dereq_(
|
|
10723
|
+
var ReactComponentBrowserEnvironment = _dereq_(36);
|
|
10724
|
+
var ReactDOMComponent = _dereq_(44);
|
|
10725
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
10726
|
+
var ReactDOMEmptyComponent = _dereq_(49);
|
|
10727
|
+
var ReactDOMTreeTraversal = _dereq_(62);
|
|
10728
|
+
var ReactDOMTextComponent = _dereq_(60);
|
|
10729
|
+
var ReactDefaultBatchingStrategy = _dereq_(65);
|
|
10730
|
+
var ReactEventListener = _dereq_(72);
|
|
10731
|
+
var ReactInjection = _dereq_(77);
|
|
10732
|
+
var ReactReconcileTransaction = _dereq_(96);
|
|
10733
|
+
var SVGDOMPropertyConfig = _dereq_(113);
|
|
10734
|
+
var SelectEventPlugin = _dereq_(114);
|
|
10735
|
+
var SimpleEventPlugin = _dereq_(115);
|
|
10541
10736
|
|
|
10542
10737
|
var alreadyInjected = false;
|
|
10543
10738
|
|
|
@@ -10591,7 +10786,7 @@ function inject() {
|
|
|
10591
10786
|
module.exports = {
|
|
10592
10787
|
inject: inject
|
|
10593
10788
|
};
|
|
10594
|
-
},{"
|
|
10789
|
+
},{"113":113,"114":114,"115":115,"13":13,"15":15,"2":2,"22":22,"36":36,"44":44,"46":46,"49":49,"6":6,"60":60,"62":62,"65":65,"72":72,"77":77,"96":96}],67:[function(_dereq_,module,exports){
|
|
10595
10790
|
/**
|
|
10596
10791
|
* Copyright 2014-present, Facebook, Inc.
|
|
10597
10792
|
* All rights reserved.
|
|
@@ -10605,12 +10800,12 @@ module.exports = {
|
|
|
10605
10800
|
|
|
10606
10801
|
'use strict';
|
|
10607
10802
|
|
|
10608
|
-
var _assign = _dereq_(
|
|
10803
|
+
var _assign = _dereq_(191);
|
|
10609
10804
|
|
|
10610
|
-
var ReactCurrentOwner = _dereq_(
|
|
10805
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
10611
10806
|
|
|
10612
|
-
var warning = _dereq_(
|
|
10613
|
-
var canDefineProperty = _dereq_(
|
|
10807
|
+
var warning = _dereq_(190);
|
|
10808
|
+
var canDefineProperty = _dereq_(133);
|
|
10614
10809
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
10615
10810
|
|
|
10616
10811
|
// The Symbol used to tag the ReactElement type. If there is no native Symbol
|
|
@@ -10691,6 +10886,7 @@ var ReactElement = function (type, key, ref, self, source, owner, props) {
|
|
|
10691
10886
|
// This can be replaced with a WeakMap once they are implemented in
|
|
10692
10887
|
// commonly used development environments.
|
|
10693
10888
|
element._store = {};
|
|
10889
|
+
var shadowChildren = Array.isArray(props.children) ? props.children.slice(0) : props.children;
|
|
10694
10890
|
|
|
10695
10891
|
// To make comparing ReactElements easier for testing purposes, we make
|
|
10696
10892
|
// the validation flag non-enumerable (where possible, which should
|
|
@@ -10710,6 +10906,12 @@ var ReactElement = function (type, key, ref, self, source, owner, props) {
|
|
|
10710
10906
|
writable: false,
|
|
10711
10907
|
value: self
|
|
10712
10908
|
});
|
|
10909
|
+
Object.defineProperty(element, '_shadowChildren', {
|
|
10910
|
+
configurable: false,
|
|
10911
|
+
enumerable: false,
|
|
10912
|
+
writable: false,
|
|
10913
|
+
value: shadowChildren
|
|
10914
|
+
});
|
|
10713
10915
|
// Two elements created in two different places should be considered
|
|
10714
10916
|
// equal for testing purposes and therefore we hide it from enumeration.
|
|
10715
10917
|
Object.defineProperty(element, '_source', {
|
|
@@ -10721,6 +10923,7 @@ var ReactElement = function (type, key, ref, self, source, owner, props) {
|
|
|
10721
10923
|
} else {
|
|
10722
10924
|
element._store.validated = false;
|
|
10723
10925
|
element._self = self;
|
|
10926
|
+
element._shadowChildren = shadowChildren;
|
|
10724
10927
|
element._source = source;
|
|
10725
10928
|
}
|
|
10726
10929
|
if (Object.freeze) {
|
|
@@ -10944,7 +11147,7 @@ ReactElement.isValidElement = function (object) {
|
|
|
10944
11147
|
ReactElement.REACT_ELEMENT_TYPE = REACT_ELEMENT_TYPE;
|
|
10945
11148
|
|
|
10946
11149
|
module.exports = ReactElement;
|
|
10947
|
-
},{"
|
|
11150
|
+
},{"133":133,"190":190,"191":191,"41":41}],68:[function(_dereq_,module,exports){
|
|
10948
11151
|
/**
|
|
10949
11152
|
* Copyright 2014-present, Facebook, Inc.
|
|
10950
11153
|
* All rights reserved.
|
|
@@ -10965,16 +11168,16 @@ module.exports = ReactElement;
|
|
|
10965
11168
|
|
|
10966
11169
|
'use strict';
|
|
10967
11170
|
|
|
10968
|
-
var ReactCurrentOwner = _dereq_(
|
|
10969
|
-
var ReactComponentTreeDevtool = _dereq_(
|
|
10970
|
-
var ReactElement = _dereq_(
|
|
10971
|
-
var ReactPropTypeLocations = _dereq_(
|
|
11171
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
11172
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
11173
|
+
var ReactElement = _dereq_(67);
|
|
11174
|
+
var ReactPropTypeLocations = _dereq_(92);
|
|
10972
11175
|
|
|
10973
|
-
var checkReactTypeSpec = _dereq_(
|
|
11176
|
+
var checkReactTypeSpec = _dereq_(134);
|
|
10974
11177
|
|
|
10975
|
-
var canDefineProperty = _dereq_(
|
|
10976
|
-
var getIteratorFn = _dereq_(
|
|
10977
|
-
var warning = _dereq_(
|
|
11178
|
+
var canDefineProperty = _dereq_(133);
|
|
11179
|
+
var getIteratorFn = _dereq_(146);
|
|
11180
|
+
var warning = _dereq_(190);
|
|
10978
11181
|
|
|
10979
11182
|
function getDeclarationErrorAddendum() {
|
|
10980
11183
|
if (ReactCurrentOwner.current) {
|
|
@@ -11171,7 +11374,7 @@ var ReactElementValidator = {
|
|
|
11171
11374
|
};
|
|
11172
11375
|
|
|
11173
11376
|
module.exports = ReactElementValidator;
|
|
11174
|
-
},{"
|
|
11377
|
+
},{"133":133,"134":134,"146":146,"190":190,"38":38,"41":41,"67":67,"92":92}],69:[function(_dereq_,module,exports){
|
|
11175
11378
|
/**
|
|
11176
11379
|
* Copyright 2014-present, Facebook, Inc.
|
|
11177
11380
|
* All rights reserved.
|
|
@@ -11202,7 +11405,7 @@ var ReactEmptyComponent = {
|
|
|
11202
11405
|
ReactEmptyComponent.injection = ReactEmptyComponentInjection;
|
|
11203
11406
|
|
|
11204
11407
|
module.exports = ReactEmptyComponent;
|
|
11205
|
-
},{}],
|
|
11408
|
+
},{}],70:[function(_dereq_,module,exports){
|
|
11206
11409
|
/**
|
|
11207
11410
|
* Copyright 2013-present, Facebook, Inc.
|
|
11208
11411
|
* All rights reserved.
|
|
@@ -11279,7 +11482,7 @@ if ("development" !== 'production') {
|
|
|
11279
11482
|
}
|
|
11280
11483
|
|
|
11281
11484
|
module.exports = ReactErrorUtils;
|
|
11282
|
-
},{}],
|
|
11485
|
+
},{}],71:[function(_dereq_,module,exports){
|
|
11283
11486
|
/**
|
|
11284
11487
|
* Copyright 2013-present, Facebook, Inc.
|
|
11285
11488
|
* All rights reserved.
|
|
@@ -11313,7 +11516,7 @@ var ReactEventEmitterMixin = {
|
|
|
11313
11516
|
};
|
|
11314
11517
|
|
|
11315
11518
|
module.exports = ReactEventEmitterMixin;
|
|
11316
|
-
},{"17":17}],
|
|
11519
|
+
},{"17":17}],72:[function(_dereq_,module,exports){
|
|
11317
11520
|
/**
|
|
11318
11521
|
* Copyright 2013-present, Facebook, Inc.
|
|
11319
11522
|
* All rights reserved.
|
|
@@ -11327,16 +11530,16 @@ module.exports = ReactEventEmitterMixin;
|
|
|
11327
11530
|
|
|
11328
11531
|
'use strict';
|
|
11329
11532
|
|
|
11330
|
-
var _assign = _dereq_(
|
|
11533
|
+
var _assign = _dereq_(191);
|
|
11331
11534
|
|
|
11332
|
-
var EventListener = _dereq_(
|
|
11333
|
-
var ExecutionEnvironment = _dereq_(
|
|
11535
|
+
var EventListener = _dereq_(165);
|
|
11536
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
11334
11537
|
var PooledClass = _dereq_(26);
|
|
11335
|
-
var ReactDOMComponentTree = _dereq_(
|
|
11336
|
-
var ReactUpdates = _dereq_(
|
|
11538
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
11539
|
+
var ReactUpdates = _dereq_(109);
|
|
11337
11540
|
|
|
11338
|
-
var getEventTarget = _dereq_(
|
|
11339
|
-
var getUnboundedScrollPosition = _dereq_(
|
|
11541
|
+
var getEventTarget = _dereq_(144);
|
|
11542
|
+
var getUnboundedScrollPosition = _dereq_(177);
|
|
11340
11543
|
|
|
11341
11544
|
/**
|
|
11342
11545
|
* Find the deepest React component completely containing the root of the
|
|
@@ -11471,7 +11674,7 @@ var ReactEventListener = {
|
|
|
11471
11674
|
};
|
|
11472
11675
|
|
|
11473
11676
|
module.exports = ReactEventListener;
|
|
11474
|
-
},{"
|
|
11677
|
+
},{"109":109,"144":144,"165":165,"166":166,"177":177,"191":191,"26":26,"46":46}],73:[function(_dereq_,module,exports){
|
|
11475
11678
|
/**
|
|
11476
11679
|
* Copyright 2013-present, Facebook, Inc.
|
|
11477
11680
|
* All rights reserved.
|
|
@@ -11494,7 +11697,7 @@ var ReactFeatureFlags = {
|
|
|
11494
11697
|
};
|
|
11495
11698
|
|
|
11496
11699
|
module.exports = ReactFeatureFlags;
|
|
11497
|
-
},{}],
|
|
11700
|
+
},{}],74:[function(_dereq_,module,exports){
|
|
11498
11701
|
/**
|
|
11499
11702
|
* Copyright 2015-present, Facebook, Inc.
|
|
11500
11703
|
* All rights reserved.
|
|
@@ -11508,14 +11711,14 @@ module.exports = ReactFeatureFlags;
|
|
|
11508
11711
|
|
|
11509
11712
|
'use strict';
|
|
11510
11713
|
|
|
11511
|
-
var _prodInvariant = _dereq_(
|
|
11714
|
+
var _prodInvariant = _dereq_(155);
|
|
11512
11715
|
|
|
11513
11716
|
var ReactChildren = _dereq_(32);
|
|
11514
|
-
var ReactElement = _dereq_(
|
|
11717
|
+
var ReactElement = _dereq_(67);
|
|
11515
11718
|
|
|
11516
|
-
var emptyFunction = _dereq_(
|
|
11517
|
-
var invariant = _dereq_(
|
|
11518
|
-
var warning = _dereq_(
|
|
11719
|
+
var emptyFunction = _dereq_(172);
|
|
11720
|
+
var invariant = _dereq_(180);
|
|
11721
|
+
var warning = _dereq_(190);
|
|
11519
11722
|
|
|
11520
11723
|
/**
|
|
11521
11724
|
* We used to allow keyed objects to serve as a collection of ReactElements,
|
|
@@ -11564,7 +11767,7 @@ var ReactFragment = {
|
|
|
11564
11767
|
};
|
|
11565
11768
|
|
|
11566
11769
|
module.exports = ReactFragment;
|
|
11567
|
-
},{"
|
|
11770
|
+
},{"155":155,"172":172,"180":180,"190":190,"32":32,"67":67}],75:[function(_dereq_,module,exports){
|
|
11568
11771
|
/**
|
|
11569
11772
|
* Copyright 2014-present, Facebook, Inc.
|
|
11570
11773
|
* All rights reserved.
|
|
@@ -11578,10 +11781,10 @@ module.exports = ReactFragment;
|
|
|
11578
11781
|
|
|
11579
11782
|
'use strict';
|
|
11580
11783
|
|
|
11581
|
-
var _prodInvariant = _dereq_(
|
|
11582
|
-
_assign = _dereq_(
|
|
11784
|
+
var _prodInvariant = _dereq_(155),
|
|
11785
|
+
_assign = _dereq_(191);
|
|
11583
11786
|
|
|
11584
|
-
var invariant = _dereq_(
|
|
11787
|
+
var invariant = _dereq_(180);
|
|
11585
11788
|
|
|
11586
11789
|
var genericComponentClass = null;
|
|
11587
11790
|
// This registry keeps track of wrapper classes around host tags.
|
|
@@ -11641,7 +11844,7 @@ var ReactHostComponent = {
|
|
|
11641
11844
|
};
|
|
11642
11845
|
|
|
11643
11846
|
module.exports = ReactHostComponent;
|
|
11644
|
-
},{"
|
|
11847
|
+
},{"155":155,"180":180,"191":191}],76:[function(_dereq_,module,exports){
|
|
11645
11848
|
/**
|
|
11646
11849
|
* Copyright 2016-present, Facebook, Inc.
|
|
11647
11850
|
* All rights reserved.
|
|
@@ -11679,7 +11882,7 @@ var ReactHostOperationHistoryDevtool = {
|
|
|
11679
11882
|
};
|
|
11680
11883
|
|
|
11681
11884
|
module.exports = ReactHostOperationHistoryDevtool;
|
|
11682
|
-
},{}],
|
|
11885
|
+
},{}],77:[function(_dereq_,module,exports){
|
|
11683
11886
|
/**
|
|
11684
11887
|
* Copyright 2013-present, Facebook, Inc.
|
|
11685
11888
|
* All rights reserved.
|
|
@@ -11696,12 +11899,12 @@ module.exports = ReactHostOperationHistoryDevtool;
|
|
|
11696
11899
|
var DOMProperty = _dereq_(10);
|
|
11697
11900
|
var EventPluginHub = _dereq_(17);
|
|
11698
11901
|
var EventPluginUtils = _dereq_(19);
|
|
11699
|
-
var ReactComponentEnvironment = _dereq_(
|
|
11700
|
-
var ReactClass = _dereq_(
|
|
11701
|
-
var ReactEmptyComponent = _dereq_(
|
|
11902
|
+
var ReactComponentEnvironment = _dereq_(37);
|
|
11903
|
+
var ReactClass = _dereq_(34);
|
|
11904
|
+
var ReactEmptyComponent = _dereq_(69);
|
|
11702
11905
|
var ReactBrowserEventEmitter = _dereq_(28);
|
|
11703
|
-
var ReactHostComponent = _dereq_(
|
|
11704
|
-
var ReactUpdates = _dereq_(
|
|
11906
|
+
var ReactHostComponent = _dereq_(75);
|
|
11907
|
+
var ReactUpdates = _dereq_(109);
|
|
11705
11908
|
|
|
11706
11909
|
var ReactInjection = {
|
|
11707
11910
|
Component: ReactComponentEnvironment.injection,
|
|
@@ -11716,7 +11919,7 @@ var ReactInjection = {
|
|
|
11716
11919
|
};
|
|
11717
11920
|
|
|
11718
11921
|
module.exports = ReactInjection;
|
|
11719
|
-
},{"10":10,"
|
|
11922
|
+
},{"10":10,"109":109,"17":17,"19":19,"28":28,"34":34,"37":37,"69":69,"75":75}],78:[function(_dereq_,module,exports){
|
|
11720
11923
|
/**
|
|
11721
11924
|
* Copyright 2013-present, Facebook, Inc.
|
|
11722
11925
|
* All rights reserved.
|
|
@@ -11730,11 +11933,11 @@ module.exports = ReactInjection;
|
|
|
11730
11933
|
|
|
11731
11934
|
'use strict';
|
|
11732
11935
|
|
|
11733
|
-
var ReactDOMSelection = _dereq_(
|
|
11936
|
+
var ReactDOMSelection = _dereq_(58);
|
|
11734
11937
|
|
|
11735
|
-
var containsNode = _dereq_(
|
|
11736
|
-
var focusNode = _dereq_(
|
|
11737
|
-
var getActiveElement = _dereq_(
|
|
11938
|
+
var containsNode = _dereq_(169);
|
|
11939
|
+
var focusNode = _dereq_(174);
|
|
11940
|
+
var getActiveElement = _dereq_(175);
|
|
11738
11941
|
|
|
11739
11942
|
function isInDocument(node) {
|
|
11740
11943
|
return containsNode(document.documentElement, node);
|
|
@@ -11841,7 +12044,7 @@ var ReactInputSelection = {
|
|
|
11841
12044
|
};
|
|
11842
12045
|
|
|
11843
12046
|
module.exports = ReactInputSelection;
|
|
11844
|
-
},{"
|
|
12047
|
+
},{"169":169,"174":174,"175":175,"58":58}],79:[function(_dereq_,module,exports){
|
|
11845
12048
|
/**
|
|
11846
12049
|
* Copyright 2013-present, Facebook, Inc.
|
|
11847
12050
|
* All rights reserved.
|
|
@@ -11890,7 +12093,7 @@ var ReactInstanceMap = {
|
|
|
11890
12093
|
};
|
|
11891
12094
|
|
|
11892
12095
|
module.exports = ReactInstanceMap;
|
|
11893
|
-
},{}],
|
|
12096
|
+
},{}],80:[function(_dereq_,module,exports){
|
|
11894
12097
|
/**
|
|
11895
12098
|
* Copyright 2016-present, Facebook, Inc.
|
|
11896
12099
|
* All rights reserved.
|
|
@@ -11907,12 +12110,12 @@ module.exports = ReactInstanceMap;
|
|
|
11907
12110
|
var debugTool = null;
|
|
11908
12111
|
|
|
11909
12112
|
if ("development" !== 'production') {
|
|
11910
|
-
var ReactDebugTool = _dereq_(
|
|
12113
|
+
var ReactDebugTool = _dereq_(64);
|
|
11911
12114
|
debugTool = ReactDebugTool;
|
|
11912
12115
|
}
|
|
11913
12116
|
|
|
11914
12117
|
module.exports = { debugTool: debugTool };
|
|
11915
|
-
},{"
|
|
12118
|
+
},{"64":64}],81:[function(_dereq_,module,exports){
|
|
11916
12119
|
/**
|
|
11917
12120
|
* Copyright 2016-present, Facebook, Inc.
|
|
11918
12121
|
* All rights reserved.
|
|
@@ -11926,7 +12129,7 @@ module.exports = { debugTool: debugTool };
|
|
|
11926
12129
|
|
|
11927
12130
|
'use strict';
|
|
11928
12131
|
|
|
11929
|
-
var warning = _dereq_(
|
|
12132
|
+
var warning = _dereq_(190);
|
|
11930
12133
|
|
|
11931
12134
|
if ("development" !== 'production') {
|
|
11932
12135
|
var processingChildContext = false;
|
|
@@ -11949,7 +12152,7 @@ var ReactInvalidSetStateWarningDevTool = {
|
|
|
11949
12152
|
};
|
|
11950
12153
|
|
|
11951
12154
|
module.exports = ReactInvalidSetStateWarningDevTool;
|
|
11952
|
-
},{"
|
|
12155
|
+
},{"190":190}],82:[function(_dereq_,module,exports){
|
|
11953
12156
|
/**
|
|
11954
12157
|
* Copyright 2013-present, Facebook, Inc.
|
|
11955
12158
|
* All rights reserved.
|
|
@@ -12021,7 +12224,7 @@ ReactLink.PropTypes = {
|
|
|
12021
12224
|
};
|
|
12022
12225
|
|
|
12023
12226
|
module.exports = ReactLink;
|
|
12024
|
-
},{"27":27}],
|
|
12227
|
+
},{"27":27}],83:[function(_dereq_,module,exports){
|
|
12025
12228
|
/**
|
|
12026
12229
|
* Copyright 2013-present, Facebook, Inc.
|
|
12027
12230
|
* All rights reserved.
|
|
@@ -12035,7 +12238,7 @@ module.exports = ReactLink;
|
|
|
12035
12238
|
|
|
12036
12239
|
'use strict';
|
|
12037
12240
|
|
|
12038
|
-
var adler32 = _dereq_(
|
|
12241
|
+
var adler32 = _dereq_(132);
|
|
12039
12242
|
|
|
12040
12243
|
var TAG_END = /\/?>/;
|
|
12041
12244
|
var COMMENT_START = /^<\!\-\-/;
|
|
@@ -12072,7 +12275,7 @@ var ReactMarkupChecksum = {
|
|
|
12072
12275
|
};
|
|
12073
12276
|
|
|
12074
12277
|
module.exports = ReactMarkupChecksum;
|
|
12075
|
-
},{"
|
|
12278
|
+
},{"132":132}],84:[function(_dereq_,module,exports){
|
|
12076
12279
|
/**
|
|
12077
12280
|
* Copyright 2013-present, Facebook, Inc.
|
|
12078
12281
|
* All rights reserved.
|
|
@@ -12086,30 +12289,30 @@ module.exports = ReactMarkupChecksum;
|
|
|
12086
12289
|
|
|
12087
12290
|
'use strict';
|
|
12088
12291
|
|
|
12089
|
-
var _prodInvariant = _dereq_(
|
|
12292
|
+
var _prodInvariant = _dereq_(155);
|
|
12090
12293
|
|
|
12091
12294
|
var DOMLazyTree = _dereq_(8);
|
|
12092
12295
|
var DOMProperty = _dereq_(10);
|
|
12093
12296
|
var ReactBrowserEventEmitter = _dereq_(28);
|
|
12094
|
-
var ReactCurrentOwner = _dereq_(
|
|
12095
|
-
var ReactDOMComponentTree = _dereq_(
|
|
12096
|
-
var ReactDOMContainerInfo = _dereq_(
|
|
12097
|
-
var ReactDOMFeatureFlags = _dereq_(
|
|
12098
|
-
var ReactElement = _dereq_(
|
|
12099
|
-
var ReactFeatureFlags = _dereq_(
|
|
12100
|
-
var ReactInstanceMap = _dereq_(
|
|
12101
|
-
var ReactInstrumentation = _dereq_(
|
|
12102
|
-
var ReactMarkupChecksum = _dereq_(
|
|
12103
|
-
var ReactReconciler = _dereq_(
|
|
12104
|
-
var ReactUpdateQueue = _dereq_(
|
|
12105
|
-
var ReactUpdates = _dereq_(
|
|
12106
|
-
|
|
12107
|
-
var emptyObject = _dereq_(
|
|
12108
|
-
var instantiateReactComponent = _dereq_(
|
|
12109
|
-
var invariant = _dereq_(
|
|
12110
|
-
var setInnerHTML = _dereq_(
|
|
12111
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
12112
|
-
var warning = _dereq_(
|
|
12297
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
12298
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
12299
|
+
var ReactDOMContainerInfo = _dereq_(47);
|
|
12300
|
+
var ReactDOMFeatureFlags = _dereq_(51);
|
|
12301
|
+
var ReactElement = _dereq_(67);
|
|
12302
|
+
var ReactFeatureFlags = _dereq_(73);
|
|
12303
|
+
var ReactInstanceMap = _dereq_(79);
|
|
12304
|
+
var ReactInstrumentation = _dereq_(80);
|
|
12305
|
+
var ReactMarkupChecksum = _dereq_(83);
|
|
12306
|
+
var ReactReconciler = _dereq_(97);
|
|
12307
|
+
var ReactUpdateQueue = _dereq_(108);
|
|
12308
|
+
var ReactUpdates = _dereq_(109);
|
|
12309
|
+
|
|
12310
|
+
var emptyObject = _dereq_(173);
|
|
12311
|
+
var instantiateReactComponent = _dereq_(150);
|
|
12312
|
+
var invariant = _dereq_(180);
|
|
12313
|
+
var setInnerHTML = _dereq_(157);
|
|
12314
|
+
var shouldUpdateReactComponent = _dereq_(160);
|
|
12315
|
+
var warning = _dereq_(190);
|
|
12113
12316
|
|
|
12114
12317
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
12115
12318
|
var ROOT_ATTR_NAME = DOMProperty.ROOT_ATTRIBUTE_NAME;
|
|
@@ -12572,7 +12775,7 @@ var ReactMount = {
|
|
|
12572
12775
|
};
|
|
12573
12776
|
|
|
12574
12777
|
module.exports = ReactMount;
|
|
12575
|
-
},{"10":10,"
|
|
12778
|
+
},{"10":10,"108":108,"109":109,"150":150,"155":155,"157":157,"160":160,"173":173,"180":180,"190":190,"28":28,"41":41,"46":46,"47":47,"51":51,"67":67,"73":73,"79":79,"8":8,"80":80,"83":83,"97":97}],85:[function(_dereq_,module,exports){
|
|
12576
12779
|
/**
|
|
12577
12780
|
* Copyright 2013-present, Facebook, Inc.
|
|
12578
12781
|
* All rights reserved.
|
|
@@ -12586,20 +12789,20 @@ module.exports = ReactMount;
|
|
|
12586
12789
|
|
|
12587
12790
|
'use strict';
|
|
12588
12791
|
|
|
12589
|
-
var _prodInvariant = _dereq_(
|
|
12792
|
+
var _prodInvariant = _dereq_(155);
|
|
12590
12793
|
|
|
12591
|
-
var ReactComponentEnvironment = _dereq_(
|
|
12592
|
-
var ReactInstanceMap = _dereq_(
|
|
12593
|
-
var ReactInstrumentation = _dereq_(
|
|
12594
|
-
var ReactMultiChildUpdateTypes = _dereq_(
|
|
12794
|
+
var ReactComponentEnvironment = _dereq_(37);
|
|
12795
|
+
var ReactInstanceMap = _dereq_(79);
|
|
12796
|
+
var ReactInstrumentation = _dereq_(80);
|
|
12797
|
+
var ReactMultiChildUpdateTypes = _dereq_(86);
|
|
12595
12798
|
|
|
12596
|
-
var ReactCurrentOwner = _dereq_(
|
|
12597
|
-
var ReactReconciler = _dereq_(
|
|
12799
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
12800
|
+
var ReactReconciler = _dereq_(97);
|
|
12598
12801
|
var ReactChildReconciler = _dereq_(31);
|
|
12599
12802
|
|
|
12600
|
-
var emptyFunction = _dereq_(
|
|
12601
|
-
var flattenChildren = _dereq_(
|
|
12602
|
-
var invariant = _dereq_(
|
|
12803
|
+
var emptyFunction = _dereq_(172);
|
|
12804
|
+
var flattenChildren = _dereq_(139);
|
|
12805
|
+
var invariant = _dereq_(180);
|
|
12603
12806
|
|
|
12604
12807
|
/**
|
|
12605
12808
|
* Make an update for markup to be rendered and inserted at a supplied index.
|
|
@@ -12775,7 +12978,7 @@ var ReactMultiChild = {
|
|
|
12775
12978
|
return ReactChildReconciler.instantiateChildren(nestedChildren, transaction, context);
|
|
12776
12979
|
},
|
|
12777
12980
|
|
|
12778
|
-
_reconcilerUpdateChildren: function (prevChildren, nextNestedChildrenElements, removedNodes, transaction, context) {
|
|
12981
|
+
_reconcilerUpdateChildren: function (prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context) {
|
|
12779
12982
|
var nextChildren;
|
|
12780
12983
|
if ("development" !== 'production') {
|
|
12781
12984
|
if (this._currentElement) {
|
|
@@ -12785,12 +12988,12 @@ var ReactMultiChild = {
|
|
|
12785
12988
|
} finally {
|
|
12786
12989
|
ReactCurrentOwner.current = null;
|
|
12787
12990
|
}
|
|
12788
|
-
ReactChildReconciler.updateChildren(prevChildren, nextChildren, removedNodes, transaction, context);
|
|
12991
|
+
ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context);
|
|
12789
12992
|
return nextChildren;
|
|
12790
12993
|
}
|
|
12791
12994
|
}
|
|
12792
12995
|
nextChildren = flattenChildren(nextNestedChildrenElements);
|
|
12793
|
-
ReactChildReconciler.updateChildren(prevChildren, nextChildren, removedNodes, transaction, context);
|
|
12996
|
+
ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context);
|
|
12794
12997
|
return nextChildren;
|
|
12795
12998
|
},
|
|
12796
12999
|
|
|
@@ -12887,7 +13090,8 @@ var ReactMultiChild = {
|
|
|
12887
13090
|
_updateChildren: function (nextNestedChildrenElements, transaction, context) {
|
|
12888
13091
|
var prevChildren = this._renderedChildren;
|
|
12889
13092
|
var removedNodes = {};
|
|
12890
|
-
var
|
|
13093
|
+
var mountImages = [];
|
|
13094
|
+
var nextChildren = this._reconcilerUpdateChildren(prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context);
|
|
12891
13095
|
if (!nextChildren && !prevChildren) {
|
|
12892
13096
|
return;
|
|
12893
13097
|
}
|
|
@@ -12895,8 +13099,10 @@ var ReactMultiChild = {
|
|
|
12895
13099
|
var name;
|
|
12896
13100
|
// `nextIndex` will increment for each child in `nextChildren`, but
|
|
12897
13101
|
// `lastIndex` will be the last index visited in `prevChildren`.
|
|
12898
|
-
var lastIndex = 0;
|
|
12899
13102
|
var nextIndex = 0;
|
|
13103
|
+
var lastIndex = 0;
|
|
13104
|
+
// `nextMountIndex` will increment for each newly mounted child.
|
|
13105
|
+
var nextMountIndex = 0;
|
|
12900
13106
|
var lastPlacedNode = null;
|
|
12901
13107
|
for (name in nextChildren) {
|
|
12902
13108
|
if (!nextChildren.hasOwnProperty(name)) {
|
|
@@ -12915,7 +13121,8 @@ var ReactMultiChild = {
|
|
|
12915
13121
|
// The `removedNodes` loop below will actually remove the child.
|
|
12916
13122
|
}
|
|
12917
13123
|
// The child must be instantiated before it's mounted.
|
|
12918
|
-
updates = enqueue(updates, this._mountChildAtIndex(nextChild, lastPlacedNode, nextIndex, transaction, context));
|
|
13124
|
+
updates = enqueue(updates, this._mountChildAtIndex(nextChild, mountImages[nextMountIndex], lastPlacedNode, nextIndex, transaction, context));
|
|
13125
|
+
nextMountIndex++;
|
|
12919
13126
|
}
|
|
12920
13127
|
nextIndex++;
|
|
12921
13128
|
lastPlacedNode = ReactReconciler.getHostNode(nextChild);
|
|
@@ -12998,8 +13205,7 @@ var ReactMultiChild = {
|
|
|
12998
13205
|
* @param {ReactReconcileTransaction} transaction
|
|
12999
13206
|
* @private
|
|
13000
13207
|
*/
|
|
13001
|
-
_mountChildAtIndex: function (child, afterNode, index, transaction, context) {
|
|
13002
|
-
var mountImage = ReactReconciler.mountComponent(child, transaction, this, this._hostContainerInfo, context);
|
|
13208
|
+
_mountChildAtIndex: function (child, mountImage, afterNode, index, transaction, context) {
|
|
13003
13209
|
child._mountIndex = index;
|
|
13004
13210
|
return this.createChild(child, afterNode, mountImage);
|
|
13005
13211
|
},
|
|
@@ -13023,7 +13229,7 @@ var ReactMultiChild = {
|
|
|
13023
13229
|
};
|
|
13024
13230
|
|
|
13025
13231
|
module.exports = ReactMultiChild;
|
|
13026
|
-
},{"
|
|
13232
|
+
},{"139":139,"155":155,"172":172,"180":180,"31":31,"37":37,"41":41,"79":79,"80":80,"86":86,"97":97}],86:[function(_dereq_,module,exports){
|
|
13027
13233
|
/**
|
|
13028
13234
|
* Copyright 2013-present, Facebook, Inc.
|
|
13029
13235
|
* All rights reserved.
|
|
@@ -13037,7 +13243,7 @@ module.exports = ReactMultiChild;
|
|
|
13037
13243
|
|
|
13038
13244
|
'use strict';
|
|
13039
13245
|
|
|
13040
|
-
var keyMirror = _dereq_(
|
|
13246
|
+
var keyMirror = _dereq_(183);
|
|
13041
13247
|
|
|
13042
13248
|
/**
|
|
13043
13249
|
* When a component's children are updated, a series of update configuration
|
|
@@ -13056,7 +13262,7 @@ var ReactMultiChildUpdateTypes = keyMirror({
|
|
|
13056
13262
|
});
|
|
13057
13263
|
|
|
13058
13264
|
module.exports = ReactMultiChildUpdateTypes;
|
|
13059
|
-
},{"
|
|
13265
|
+
},{"183":183}],87:[function(_dereq_,module,exports){
|
|
13060
13266
|
/**
|
|
13061
13267
|
* Copyright 2013-present, Facebook, Inc.
|
|
13062
13268
|
* All rights reserved.
|
|
@@ -13071,11 +13277,11 @@ module.exports = ReactMultiChildUpdateTypes;
|
|
|
13071
13277
|
|
|
13072
13278
|
'use strict';
|
|
13073
13279
|
|
|
13074
|
-
var _prodInvariant = _dereq_(
|
|
13280
|
+
var _prodInvariant = _dereq_(155);
|
|
13075
13281
|
|
|
13076
|
-
var ReactElement = _dereq_(
|
|
13282
|
+
var ReactElement = _dereq_(67);
|
|
13077
13283
|
|
|
13078
|
-
var invariant = _dereq_(
|
|
13284
|
+
var invariant = _dereq_(180);
|
|
13079
13285
|
|
|
13080
13286
|
var ReactNodeTypes = {
|
|
13081
13287
|
HOST: 0,
|
|
@@ -13097,7 +13303,7 @@ var ReactNodeTypes = {
|
|
|
13097
13303
|
};
|
|
13098
13304
|
|
|
13099
13305
|
module.exports = ReactNodeTypes;
|
|
13100
|
-
},{"
|
|
13306
|
+
},{"155":155,"180":180,"67":67}],88:[function(_dereq_,module,exports){
|
|
13101
13307
|
/**
|
|
13102
13308
|
* Copyright 2015-present, Facebook, Inc.
|
|
13103
13309
|
* All rights reserved.
|
|
@@ -13111,7 +13317,7 @@ module.exports = ReactNodeTypes;
|
|
|
13111
13317
|
|
|
13112
13318
|
'use strict';
|
|
13113
13319
|
|
|
13114
|
-
var warning = _dereq_(
|
|
13320
|
+
var warning = _dereq_(190);
|
|
13115
13321
|
|
|
13116
13322
|
function warnNoop(publicInstance, callerName) {
|
|
13117
13323
|
if ("development" !== 'production') {
|
|
@@ -13194,7 +13400,7 @@ var ReactNoopUpdateQueue = {
|
|
|
13194
13400
|
};
|
|
13195
13401
|
|
|
13196
13402
|
module.exports = ReactNoopUpdateQueue;
|
|
13197
|
-
},{"
|
|
13403
|
+
},{"190":190}],89:[function(_dereq_,module,exports){
|
|
13198
13404
|
/**
|
|
13199
13405
|
* Copyright 2013-present, Facebook, Inc.
|
|
13200
13406
|
* All rights reserved.
|
|
@@ -13208,9 +13414,9 @@ module.exports = ReactNoopUpdateQueue;
|
|
|
13208
13414
|
|
|
13209
13415
|
'use strict';
|
|
13210
13416
|
|
|
13211
|
-
var _prodInvariant = _dereq_(
|
|
13417
|
+
var _prodInvariant = _dereq_(155);
|
|
13212
13418
|
|
|
13213
|
-
var invariant = _dereq_(
|
|
13419
|
+
var invariant = _dereq_(180);
|
|
13214
13420
|
|
|
13215
13421
|
/**
|
|
13216
13422
|
* ReactOwners are capable of storing references to owned components.
|
|
@@ -13289,7 +13495,7 @@ var ReactOwner = {
|
|
|
13289
13495
|
};
|
|
13290
13496
|
|
|
13291
13497
|
module.exports = ReactOwner;
|
|
13292
|
-
},{"
|
|
13498
|
+
},{"155":155,"180":180}],90:[function(_dereq_,module,exports){
|
|
13293
13499
|
/**
|
|
13294
13500
|
* Copyright 2016-present, Facebook, Inc.
|
|
13295
13501
|
* All rights reserved.
|
|
@@ -13303,12 +13509,12 @@ module.exports = ReactOwner;
|
|
|
13303
13509
|
|
|
13304
13510
|
'use strict';
|
|
13305
13511
|
|
|
13306
|
-
var _assign = _dereq_(
|
|
13512
|
+
var _assign = _dereq_(191);
|
|
13307
13513
|
|
|
13308
13514
|
var _extends = _assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
13309
13515
|
|
|
13310
|
-
var ReactDebugTool = _dereq_(
|
|
13311
|
-
var warning = _dereq_(
|
|
13516
|
+
var ReactDebugTool = _dereq_(64);
|
|
13517
|
+
var warning = _dereq_(190);
|
|
13312
13518
|
var alreadyWarned = false;
|
|
13313
13519
|
|
|
13314
13520
|
function roundFloat(val) {
|
|
@@ -13784,7 +13990,7 @@ var ReactPerfAnalysis = {
|
|
|
13784
13990
|
};
|
|
13785
13991
|
|
|
13786
13992
|
module.exports = ReactPerfAnalysis;
|
|
13787
|
-
},{"
|
|
13993
|
+
},{"190":190,"191":191,"64":64}],91:[function(_dereq_,module,exports){
|
|
13788
13994
|
/**
|
|
13789
13995
|
* Copyright 2013-present, Facebook, Inc.
|
|
13790
13996
|
* All rights reserved.
|
|
@@ -13809,7 +14015,7 @@ if ("development" !== 'production') {
|
|
|
13809
14015
|
}
|
|
13810
14016
|
|
|
13811
14017
|
module.exports = ReactPropTypeLocationNames;
|
|
13812
|
-
},{}],
|
|
14018
|
+
},{}],92:[function(_dereq_,module,exports){
|
|
13813
14019
|
/**
|
|
13814
14020
|
* Copyright 2013-present, Facebook, Inc.
|
|
13815
14021
|
* All rights reserved.
|
|
@@ -13823,7 +14029,7 @@ module.exports = ReactPropTypeLocationNames;
|
|
|
13823
14029
|
|
|
13824
14030
|
'use strict';
|
|
13825
14031
|
|
|
13826
|
-
var keyMirror = _dereq_(
|
|
14032
|
+
var keyMirror = _dereq_(183);
|
|
13827
14033
|
|
|
13828
14034
|
var ReactPropTypeLocations = keyMirror({
|
|
13829
14035
|
prop: null,
|
|
@@ -13832,7 +14038,7 @@ var ReactPropTypeLocations = keyMirror({
|
|
|
13832
14038
|
});
|
|
13833
14039
|
|
|
13834
14040
|
module.exports = ReactPropTypeLocations;
|
|
13835
|
-
},{"
|
|
14041
|
+
},{"183":183}],93:[function(_dereq_,module,exports){
|
|
13836
14042
|
/**
|
|
13837
14043
|
* Copyright 2013-present, Facebook, Inc.
|
|
13838
14044
|
* All rights reserved.
|
|
@@ -13846,11 +14052,13 @@ module.exports = ReactPropTypeLocations;
|
|
|
13846
14052
|
|
|
13847
14053
|
'use strict';
|
|
13848
14054
|
|
|
13849
|
-
var ReactElement = _dereq_(
|
|
13850
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
14055
|
+
var ReactElement = _dereq_(67);
|
|
14056
|
+
var ReactPropTypeLocationNames = _dereq_(91);
|
|
14057
|
+
var ReactPropTypesSecret = _dereq_(94);
|
|
13851
14058
|
|
|
13852
|
-
var emptyFunction = _dereq_(
|
|
13853
|
-
var getIteratorFn = _dereq_(
|
|
14059
|
+
var emptyFunction = _dereq_(172);
|
|
14060
|
+
var getIteratorFn = _dereq_(146);
|
|
14061
|
+
var warning = _dereq_(190);
|
|
13854
14062
|
|
|
13855
14063
|
/**
|
|
13856
14064
|
* Collection of methods that allow declaration and validation of props that are
|
|
@@ -13940,9 +14148,21 @@ function is(x, y) {
|
|
|
13940
14148
|
/*eslint-enable no-self-compare*/
|
|
13941
14149
|
|
|
13942
14150
|
function createChainableTypeChecker(validate) {
|
|
13943
|
-
|
|
14151
|
+
if ("development" !== 'production') {
|
|
14152
|
+
var manualPropTypeCallCache = {};
|
|
14153
|
+
}
|
|
14154
|
+
function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {
|
|
13944
14155
|
componentName = componentName || ANONYMOUS;
|
|
13945
14156
|
propFullName = propFullName || propName;
|
|
14157
|
+
if ("development" !== 'production') {
|
|
14158
|
+
if (secret !== ReactPropTypesSecret && typeof console !== 'undefined') {
|
|
14159
|
+
var cacheKey = componentName + ':' + propName;
|
|
14160
|
+
if (!manualPropTypeCallCache[cacheKey]) {
|
|
14161
|
+
"development" !== 'production' ? warning(false, 'You are manually calling a React.PropTypes validation ' + 'function for the `%s` prop on `%s`. This is deprecated ' + 'and will not work in the next major version. You may be ' + 'seeing this warning due to a third-party PropTypes library. ' + 'See https://fb.me/react-warning-dont-call-proptypes for details.', propFullName, componentName) : void 0;
|
|
14162
|
+
manualPropTypeCallCache[cacheKey] = true;
|
|
14163
|
+
}
|
|
14164
|
+
}
|
|
14165
|
+
}
|
|
13946
14166
|
if (props[propName] == null) {
|
|
13947
14167
|
var locationName = ReactPropTypeLocationNames[location];
|
|
13948
14168
|
if (isRequired) {
|
|
@@ -13961,7 +14181,7 @@ function createChainableTypeChecker(validate) {
|
|
|
13961
14181
|
}
|
|
13962
14182
|
|
|
13963
14183
|
function createPrimitiveTypeChecker(expectedType) {
|
|
13964
|
-
function validate(props, propName, componentName, location, propFullName) {
|
|
14184
|
+
function validate(props, propName, componentName, location, propFullName, secret) {
|
|
13965
14185
|
var propValue = props[propName];
|
|
13966
14186
|
var propType = getPropType(propValue);
|
|
13967
14187
|
if (propType !== expectedType) {
|
|
@@ -13994,7 +14214,7 @@ function createArrayOfTypeChecker(typeChecker) {
|
|
|
13994
14214
|
return new Error('Invalid ' + locationName + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));
|
|
13995
14215
|
}
|
|
13996
14216
|
for (var i = 0; i < propValue.length; i++) {
|
|
13997
|
-
var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']');
|
|
14217
|
+
var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);
|
|
13998
14218
|
if (error instanceof Error) {
|
|
13999
14219
|
return error;
|
|
14000
14220
|
}
|
|
@@ -14006,9 +14226,11 @@ function createArrayOfTypeChecker(typeChecker) {
|
|
|
14006
14226
|
|
|
14007
14227
|
function createElementTypeChecker() {
|
|
14008
14228
|
function validate(props, propName, componentName, location, propFullName) {
|
|
14009
|
-
|
|
14229
|
+
var propValue = props[propName];
|
|
14230
|
+
if (!ReactElement.isValidElement(propValue)) {
|
|
14010
14231
|
var locationName = ReactPropTypeLocationNames[location];
|
|
14011
|
-
|
|
14232
|
+
var propType = getPropType(propValue);
|
|
14233
|
+
return new Error('Invalid ' + locationName + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));
|
|
14012
14234
|
}
|
|
14013
14235
|
return null;
|
|
14014
14236
|
}
|
|
@@ -14030,9 +14252,8 @@ function createInstanceTypeChecker(expectedClass) {
|
|
|
14030
14252
|
|
|
14031
14253
|
function createEnumTypeChecker(expectedValues) {
|
|
14032
14254
|
if (!Array.isArray(expectedValues)) {
|
|
14033
|
-
|
|
14034
|
-
|
|
14035
|
-
});
|
|
14255
|
+
"development" !== 'production' ? warning(false, 'Invalid argument supplied to oneOf, expected an instance of array.') : void 0;
|
|
14256
|
+
return emptyFunction.thatReturnsNull;
|
|
14036
14257
|
}
|
|
14037
14258
|
|
|
14038
14259
|
function validate(props, propName, componentName, location, propFullName) {
|
|
@@ -14063,7 +14284,7 @@ function createObjectOfTypeChecker(typeChecker) {
|
|
|
14063
14284
|
}
|
|
14064
14285
|
for (var key in propValue) {
|
|
14065
14286
|
if (propValue.hasOwnProperty(key)) {
|
|
14066
|
-
var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key);
|
|
14287
|
+
var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
|
|
14067
14288
|
if (error instanceof Error) {
|
|
14068
14289
|
return error;
|
|
14069
14290
|
}
|
|
@@ -14076,15 +14297,14 @@ function createObjectOfTypeChecker(typeChecker) {
|
|
|
14076
14297
|
|
|
14077
14298
|
function createUnionTypeChecker(arrayOfTypeCheckers) {
|
|
14078
14299
|
if (!Array.isArray(arrayOfTypeCheckers)) {
|
|
14079
|
-
|
|
14080
|
-
|
|
14081
|
-
});
|
|
14300
|
+
"development" !== 'production' ? warning(false, 'Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;
|
|
14301
|
+
return emptyFunction.thatReturnsNull;
|
|
14082
14302
|
}
|
|
14083
14303
|
|
|
14084
14304
|
function validate(props, propName, componentName, location, propFullName) {
|
|
14085
14305
|
for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
|
|
14086
14306
|
var checker = arrayOfTypeCheckers[i];
|
|
14087
|
-
if (checker(props, propName, componentName, location, propFullName) == null) {
|
|
14307
|
+
if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret) == null) {
|
|
14088
14308
|
return null;
|
|
14089
14309
|
}
|
|
14090
14310
|
}
|
|
@@ -14119,7 +14339,7 @@ function createShapeTypeChecker(shapeTypes) {
|
|
|
14119
14339
|
if (!checker) {
|
|
14120
14340
|
continue;
|
|
14121
14341
|
}
|
|
14122
|
-
var error = checker(propValue, key, componentName, location, propFullName + '.' + key);
|
|
14342
|
+
var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
|
|
14123
14343
|
if (error) {
|
|
14124
14344
|
return error;
|
|
14125
14345
|
}
|
|
@@ -14236,7 +14456,67 @@ function getClassName(propValue) {
|
|
|
14236
14456
|
}
|
|
14237
14457
|
|
|
14238
14458
|
module.exports = ReactPropTypes;
|
|
14239
|
-
},{"
|
|
14459
|
+
},{"146":146,"172":172,"190":190,"67":67,"91":91,"94":94}],94:[function(_dereq_,module,exports){
|
|
14460
|
+
/**
|
|
14461
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
14462
|
+
* All rights reserved.
|
|
14463
|
+
*
|
|
14464
|
+
* This source code is licensed under the BSD-style license found in the
|
|
14465
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
14466
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
14467
|
+
*
|
|
14468
|
+
* @providesModule ReactPropTypesSecret
|
|
14469
|
+
*/
|
|
14470
|
+
|
|
14471
|
+
'use strict';
|
|
14472
|
+
|
|
14473
|
+
var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
|
|
14474
|
+
|
|
14475
|
+
module.exports = ReactPropTypesSecret;
|
|
14476
|
+
},{}],95:[function(_dereq_,module,exports){
|
|
14477
|
+
/**
|
|
14478
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
14479
|
+
* All rights reserved.
|
|
14480
|
+
*
|
|
14481
|
+
* This source code is licensed under the BSD-style license found in the
|
|
14482
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
14483
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
14484
|
+
*
|
|
14485
|
+
* @providesModule ReactPureComponent
|
|
14486
|
+
*/
|
|
14487
|
+
|
|
14488
|
+
'use strict';
|
|
14489
|
+
|
|
14490
|
+
var _assign = _dereq_(191);
|
|
14491
|
+
|
|
14492
|
+
var ReactComponent = _dereq_(35);
|
|
14493
|
+
var ReactNoopUpdateQueue = _dereq_(88);
|
|
14494
|
+
|
|
14495
|
+
var emptyObject = _dereq_(173);
|
|
14496
|
+
|
|
14497
|
+
/**
|
|
14498
|
+
* Base class helpers for the updating state of a component.
|
|
14499
|
+
*/
|
|
14500
|
+
function ReactPureComponent(props, context, updater) {
|
|
14501
|
+
// Duplicated from ReactComponent.
|
|
14502
|
+
this.props = props;
|
|
14503
|
+
this.context = context;
|
|
14504
|
+
this.refs = emptyObject;
|
|
14505
|
+
// We initialize the default updater but the real one gets injected by the
|
|
14506
|
+
// renderer.
|
|
14507
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
14508
|
+
}
|
|
14509
|
+
|
|
14510
|
+
function ComponentDummy() {}
|
|
14511
|
+
ComponentDummy.prototype = ReactComponent.prototype;
|
|
14512
|
+
ReactPureComponent.prototype = new ComponentDummy();
|
|
14513
|
+
ReactPureComponent.prototype.constructor = ReactPureComponent;
|
|
14514
|
+
// Avoid an extra prototype jump for these methods.
|
|
14515
|
+
_assign(ReactPureComponent.prototype, ReactComponent.prototype);
|
|
14516
|
+
ReactPureComponent.prototype.isPureReactComponent = true;
|
|
14517
|
+
|
|
14518
|
+
module.exports = ReactPureComponent;
|
|
14519
|
+
},{"173":173,"191":191,"35":35,"88":88}],96:[function(_dereq_,module,exports){
|
|
14240
14520
|
/**
|
|
14241
14521
|
* Copyright 2013-present, Facebook, Inc.
|
|
14242
14522
|
* All rights reserved.
|
|
@@ -14250,15 +14530,15 @@ module.exports = ReactPropTypes;
|
|
|
14250
14530
|
|
|
14251
14531
|
'use strict';
|
|
14252
14532
|
|
|
14253
|
-
var _assign = _dereq_(
|
|
14533
|
+
var _assign = _dereq_(191);
|
|
14254
14534
|
|
|
14255
14535
|
var CallbackQueue = _dereq_(5);
|
|
14256
14536
|
var PooledClass = _dereq_(26);
|
|
14257
14537
|
var ReactBrowserEventEmitter = _dereq_(28);
|
|
14258
|
-
var ReactInputSelection = _dereq_(
|
|
14259
|
-
var ReactInstrumentation = _dereq_(
|
|
14260
|
-
var Transaction = _dereq_(
|
|
14261
|
-
var ReactUpdateQueue = _dereq_(
|
|
14538
|
+
var ReactInputSelection = _dereq_(78);
|
|
14539
|
+
var ReactInstrumentation = _dereq_(80);
|
|
14540
|
+
var Transaction = _dereq_(129);
|
|
14541
|
+
var ReactUpdateQueue = _dereq_(108);
|
|
14262
14542
|
|
|
14263
14543
|
/**
|
|
14264
14544
|
* Ensures that, when possible, the selection range (currently selected text
|
|
@@ -14415,7 +14695,7 @@ _assign(ReactReconcileTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
14415
14695
|
PooledClass.addPoolingTo(ReactReconcileTransaction);
|
|
14416
14696
|
|
|
14417
14697
|
module.exports = ReactReconcileTransaction;
|
|
14418
|
-
},{"
|
|
14698
|
+
},{"108":108,"129":129,"191":191,"26":26,"28":28,"5":5,"78":78,"80":80}],97:[function(_dereq_,module,exports){
|
|
14419
14699
|
/**
|
|
14420
14700
|
* Copyright 2013-present, Facebook, Inc.
|
|
14421
14701
|
* All rights reserved.
|
|
@@ -14429,12 +14709,10 @@ module.exports = ReactReconcileTransaction;
|
|
|
14429
14709
|
|
|
14430
14710
|
'use strict';
|
|
14431
14711
|
|
|
14432
|
-
var
|
|
14712
|
+
var ReactRef = _dereq_(98);
|
|
14713
|
+
var ReactInstrumentation = _dereq_(80);
|
|
14433
14714
|
|
|
14434
|
-
var
|
|
14435
|
-
var ReactInstrumentation = _dereq_(79);
|
|
14436
|
-
|
|
14437
|
-
var invariant = _dereq_(177);
|
|
14715
|
+
var warning = _dereq_(190);
|
|
14438
14716
|
|
|
14439
14717
|
/**
|
|
14440
14718
|
* Helper to call ReactRef.attachRefs with this composite component, split out
|
|
@@ -14571,7 +14849,7 @@ var ReactReconciler = {
|
|
|
14571
14849
|
if (internalInstance._updateBatchNumber !== updateBatchNumber) {
|
|
14572
14850
|
// The component's enqueued batch number should always be the current
|
|
14573
14851
|
// batch or the following one.
|
|
14574
|
-
|
|
14852
|
+
"development" !== 'production' ? warning(internalInstance._updateBatchNumber == null || internalInstance._updateBatchNumber === updateBatchNumber + 1, 'performUpdateIfNecessary: Unexpected batch number (current %s, ' + 'pending %s)', updateBatchNumber, internalInstance._updateBatchNumber) : void 0;
|
|
14575
14853
|
return;
|
|
14576
14854
|
}
|
|
14577
14855
|
if ("development" !== 'production') {
|
|
@@ -14592,7 +14870,7 @@ var ReactReconciler = {
|
|
|
14592
14870
|
};
|
|
14593
14871
|
|
|
14594
14872
|
module.exports = ReactReconciler;
|
|
14595
|
-
},{"
|
|
14873
|
+
},{"190":190,"80":80,"98":98}],98:[function(_dereq_,module,exports){
|
|
14596
14874
|
/**
|
|
14597
14875
|
* Copyright 2013-present, Facebook, Inc.
|
|
14598
14876
|
* All rights reserved.
|
|
@@ -14606,7 +14884,7 @@ module.exports = ReactReconciler;
|
|
|
14606
14884
|
|
|
14607
14885
|
'use strict';
|
|
14608
14886
|
|
|
14609
|
-
var ReactOwner = _dereq_(
|
|
14887
|
+
var ReactOwner = _dereq_(89);
|
|
14610
14888
|
|
|
14611
14889
|
var ReactRef = {};
|
|
14612
14890
|
|
|
@@ -14656,7 +14934,9 @@ ReactRef.shouldUpdateRefs = function (prevElement, nextElement) {
|
|
|
14656
14934
|
|
|
14657
14935
|
return(
|
|
14658
14936
|
// This has a few false positives w/r/t empty components.
|
|
14659
|
-
prevEmpty || nextEmpty || nextElement.
|
|
14937
|
+
prevEmpty || nextEmpty || nextElement.ref !== prevElement.ref ||
|
|
14938
|
+
// If owner changes but we have an unchanged function ref, don't update refs
|
|
14939
|
+
typeof nextElement.ref === 'string' && nextElement._owner !== prevElement._owner
|
|
14660
14940
|
);
|
|
14661
14941
|
};
|
|
14662
14942
|
|
|
@@ -14671,7 +14951,7 @@ ReactRef.detachRefs = function (instance, element) {
|
|
|
14671
14951
|
};
|
|
14672
14952
|
|
|
14673
14953
|
module.exports = ReactRef;
|
|
14674
|
-
},{"
|
|
14954
|
+
},{"89":89}],99:[function(_dereq_,module,exports){
|
|
14675
14955
|
/**
|
|
14676
14956
|
* Copyright 2014-present, Facebook, Inc.
|
|
14677
14957
|
* All rights reserved.
|
|
@@ -14694,7 +14974,7 @@ var ReactServerBatchingStrategy = {
|
|
|
14694
14974
|
};
|
|
14695
14975
|
|
|
14696
14976
|
module.exports = ReactServerBatchingStrategy;
|
|
14697
|
-
},{}],
|
|
14977
|
+
},{}],100:[function(_dereq_,module,exports){
|
|
14698
14978
|
/**
|
|
14699
14979
|
* Copyright 2013-present, Facebook, Inc.
|
|
14700
14980
|
* All rights reserved.
|
|
@@ -14707,21 +14987,23 @@ module.exports = ReactServerBatchingStrategy;
|
|
|
14707
14987
|
*/
|
|
14708
14988
|
'use strict';
|
|
14709
14989
|
|
|
14710
|
-
var _prodInvariant = _dereq_(
|
|
14990
|
+
var _prodInvariant = _dereq_(155);
|
|
14991
|
+
|
|
14992
|
+
var ReactDOMContainerInfo = _dereq_(47);
|
|
14993
|
+
var ReactDefaultBatchingStrategy = _dereq_(65);
|
|
14994
|
+
var ReactElement = _dereq_(67);
|
|
14995
|
+
var ReactInstrumentation = _dereq_(80);
|
|
14996
|
+
var ReactMarkupChecksum = _dereq_(83);
|
|
14997
|
+
var ReactReconciler = _dereq_(97);
|
|
14998
|
+
var ReactServerBatchingStrategy = _dereq_(99);
|
|
14999
|
+
var ReactServerRenderingTransaction = _dereq_(101);
|
|
15000
|
+
var ReactUpdates = _dereq_(109);
|
|
14711
15001
|
|
|
14712
|
-
var
|
|
14713
|
-
var
|
|
14714
|
-
var
|
|
14715
|
-
var ReactInstrumentation = _dereq_(79);
|
|
14716
|
-
var ReactMarkupChecksum = _dereq_(82);
|
|
14717
|
-
var ReactReconciler = _dereq_(94);
|
|
14718
|
-
var ReactServerBatchingStrategy = _dereq_(96);
|
|
14719
|
-
var ReactServerRenderingTransaction = _dereq_(98);
|
|
14720
|
-
var ReactUpdates = _dereq_(106);
|
|
15002
|
+
var emptyObject = _dereq_(173);
|
|
15003
|
+
var instantiateReactComponent = _dereq_(150);
|
|
15004
|
+
var invariant = _dereq_(180);
|
|
14721
15005
|
|
|
14722
|
-
var
|
|
14723
|
-
var instantiateReactComponent = _dereq_(147);
|
|
14724
|
-
var invariant = _dereq_(177);
|
|
15006
|
+
var pendingTransactions = 0;
|
|
14725
15007
|
|
|
14726
15008
|
/**
|
|
14727
15009
|
* @param {ReactElement} element
|
|
@@ -14734,6 +15016,8 @@ function renderToStringImpl(element, makeStaticMarkup) {
|
|
|
14734
15016
|
|
|
14735
15017
|
transaction = ReactServerRenderingTransaction.getPooled(makeStaticMarkup);
|
|
14736
15018
|
|
|
15019
|
+
pendingTransactions++;
|
|
15020
|
+
|
|
14737
15021
|
return transaction.perform(function () {
|
|
14738
15022
|
var componentInstance = instantiateReactComponent(element, true);
|
|
14739
15023
|
var markup = ReactReconciler.mountComponent(componentInstance, transaction, null, ReactDOMContainerInfo(), emptyObject);
|
|
@@ -14746,10 +15030,13 @@ function renderToStringImpl(element, makeStaticMarkup) {
|
|
|
14746
15030
|
return markup;
|
|
14747
15031
|
}, null);
|
|
14748
15032
|
} finally {
|
|
15033
|
+
pendingTransactions--;
|
|
14749
15034
|
ReactServerRenderingTransaction.release(transaction);
|
|
14750
15035
|
// Revert to the DOM batching strategy since these two renderers
|
|
14751
15036
|
// currently share these stateful modules.
|
|
14752
|
-
|
|
15037
|
+
if (!pendingTransactions) {
|
|
15038
|
+
ReactUpdates.injection.injectBatchingStrategy(ReactDefaultBatchingStrategy);
|
|
15039
|
+
}
|
|
14753
15040
|
}
|
|
14754
15041
|
}
|
|
14755
15042
|
|
|
@@ -14777,7 +15064,7 @@ module.exports = {
|
|
|
14777
15064
|
renderToString: renderToString,
|
|
14778
15065
|
renderToStaticMarkup: renderToStaticMarkup
|
|
14779
15066
|
};
|
|
14780
|
-
},{"
|
|
15067
|
+
},{"101":101,"109":109,"150":150,"155":155,"173":173,"180":180,"47":47,"65":65,"67":67,"80":80,"83":83,"97":97,"99":99}],101:[function(_dereq_,module,exports){
|
|
14781
15068
|
/**
|
|
14782
15069
|
* Copyright 2014-present, Facebook, Inc.
|
|
14783
15070
|
* All rights reserved.
|
|
@@ -14791,12 +15078,12 @@ module.exports = {
|
|
|
14791
15078
|
|
|
14792
15079
|
'use strict';
|
|
14793
15080
|
|
|
14794
|
-
var _assign = _dereq_(
|
|
15081
|
+
var _assign = _dereq_(191);
|
|
14795
15082
|
|
|
14796
15083
|
var PooledClass = _dereq_(26);
|
|
14797
|
-
var Transaction = _dereq_(
|
|
14798
|
-
var ReactInstrumentation = _dereq_(
|
|
14799
|
-
var ReactServerUpdateQueue = _dereq_(
|
|
15084
|
+
var Transaction = _dereq_(129);
|
|
15085
|
+
var ReactInstrumentation = _dereq_(80);
|
|
15086
|
+
var ReactServerUpdateQueue = _dereq_(102);
|
|
14800
15087
|
|
|
14801
15088
|
/**
|
|
14802
15089
|
* Executed within the scope of the `Transaction` instance. Consider these as
|
|
@@ -14868,7 +15155,7 @@ _assign(ReactServerRenderingTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
14868
15155
|
PooledClass.addPoolingTo(ReactServerRenderingTransaction);
|
|
14869
15156
|
|
|
14870
15157
|
module.exports = ReactServerRenderingTransaction;
|
|
14871
|
-
},{"
|
|
15158
|
+
},{"102":102,"129":129,"191":191,"26":26,"80":80}],102:[function(_dereq_,module,exports){
|
|
14872
15159
|
/**
|
|
14873
15160
|
* Copyright 2015-present, Facebook, Inc.
|
|
14874
15161
|
* All rights reserved.
|
|
@@ -14885,9 +15172,9 @@ module.exports = ReactServerRenderingTransaction;
|
|
|
14885
15172
|
|
|
14886
15173
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
14887
15174
|
|
|
14888
|
-
var ReactUpdateQueue = _dereq_(
|
|
14889
|
-
var Transaction = _dereq_(
|
|
14890
|
-
var warning = _dereq_(
|
|
15175
|
+
var ReactUpdateQueue = _dereq_(108);
|
|
15176
|
+
var Transaction = _dereq_(129);
|
|
15177
|
+
var warning = _dereq_(190);
|
|
14891
15178
|
|
|
14892
15179
|
function warnNoop(publicInstance, callerName) {
|
|
14893
15180
|
if ("development" !== 'production') {
|
|
@@ -15010,7 +15297,7 @@ var ReactServerUpdateQueue = function () {
|
|
|
15010
15297
|
}();
|
|
15011
15298
|
|
|
15012
15299
|
module.exports = ReactServerUpdateQueue;
|
|
15013
|
-
},{"
|
|
15300
|
+
},{"108":108,"129":129,"190":190}],103:[function(_dereq_,module,exports){
|
|
15014
15301
|
/**
|
|
15015
15302
|
* Copyright 2013-present, Facebook, Inc.
|
|
15016
15303
|
* All rights reserved.
|
|
@@ -15115,7 +15402,7 @@ ReactStateSetters.Mixin = {
|
|
|
15115
15402
|
};
|
|
15116
15403
|
|
|
15117
15404
|
module.exports = ReactStateSetters;
|
|
15118
|
-
},{}],
|
|
15405
|
+
},{}],104:[function(_dereq_,module,exports){
|
|
15119
15406
|
/**
|
|
15120
15407
|
* Copyright 2013-present, Facebook, Inc.
|
|
15121
15408
|
* All rights reserved.
|
|
@@ -15129,29 +15416,29 @@ module.exports = ReactStateSetters;
|
|
|
15129
15416
|
|
|
15130
15417
|
'use strict';
|
|
15131
15418
|
|
|
15132
|
-
var _prodInvariant = _dereq_(
|
|
15133
|
-
_assign = _dereq_(
|
|
15419
|
+
var _prodInvariant = _dereq_(155),
|
|
15420
|
+
_assign = _dereq_(191);
|
|
15134
15421
|
|
|
15135
15422
|
var EventConstants = _dereq_(16);
|
|
15136
15423
|
var EventPluginHub = _dereq_(17);
|
|
15137
15424
|
var EventPluginRegistry = _dereq_(18);
|
|
15138
15425
|
var EventPropagators = _dereq_(20);
|
|
15139
15426
|
var React = _dereq_(27);
|
|
15140
|
-
var ReactDefaultInjection = _dereq_(
|
|
15141
|
-
var ReactDOM = _dereq_(
|
|
15142
|
-
var ReactDOMComponentTree = _dereq_(
|
|
15143
|
-
var ReactElement = _dereq_(
|
|
15427
|
+
var ReactDefaultInjection = _dereq_(66);
|
|
15428
|
+
var ReactDOM = _dereq_(42);
|
|
15429
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
15430
|
+
var ReactElement = _dereq_(67);
|
|
15144
15431
|
var ReactBrowserEventEmitter = _dereq_(28);
|
|
15145
|
-
var ReactCompositeComponent = _dereq_(
|
|
15146
|
-
var ReactInstanceMap = _dereq_(
|
|
15147
|
-
var ReactInstrumentation = _dereq_(
|
|
15148
|
-
var ReactReconciler = _dereq_(
|
|
15149
|
-
var ReactUpdates = _dereq_(
|
|
15150
|
-
var SyntheticEvent = _dereq_(
|
|
15432
|
+
var ReactCompositeComponent = _dereq_(40);
|
|
15433
|
+
var ReactInstanceMap = _dereq_(79);
|
|
15434
|
+
var ReactInstrumentation = _dereq_(80);
|
|
15435
|
+
var ReactReconciler = _dereq_(97);
|
|
15436
|
+
var ReactUpdates = _dereq_(109);
|
|
15437
|
+
var SyntheticEvent = _dereq_(120);
|
|
15151
15438
|
|
|
15152
|
-
var emptyObject = _dereq_(
|
|
15153
|
-
var findDOMNode = _dereq_(
|
|
15154
|
-
var invariant = _dereq_(
|
|
15439
|
+
var emptyObject = _dereq_(173);
|
|
15440
|
+
var findDOMNode = _dereq_(138);
|
|
15441
|
+
var invariant = _dereq_(180);
|
|
15155
15442
|
|
|
15156
15443
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
15157
15444
|
|
|
@@ -15462,9 +15749,11 @@ NoopInternalComponent.prototype = {
|
|
|
15462
15749
|
|
|
15463
15750
|
var ShallowComponentWrapper = function (element) {
|
|
15464
15751
|
// TODO: Consolidate with instantiateReactComponent
|
|
15465
|
-
|
|
15466
|
-
|
|
15467
|
-
|
|
15752
|
+
if ("development" !== 'production') {
|
|
15753
|
+
this._debugID = nextDebugID++;
|
|
15754
|
+
var displayName = element.type.displayName || element.type.name || 'Unknown';
|
|
15755
|
+
ReactInstrumentation.debugTool.onSetDisplayName(this._debugID, displayName);
|
|
15756
|
+
}
|
|
15468
15757
|
|
|
15469
15758
|
this.construct(element);
|
|
15470
15759
|
};
|
|
@@ -15542,6 +15831,8 @@ function makeSimulator(eventType) {
|
|
|
15542
15831
|
|
|
15543
15832
|
var fakeNativeEvent = new Event();
|
|
15544
15833
|
fakeNativeEvent.target = node;
|
|
15834
|
+
fakeNativeEvent.type = eventType.toLowerCase();
|
|
15835
|
+
|
|
15545
15836
|
// We don't use SyntheticEvent.getPooled in order to not have to worry about
|
|
15546
15837
|
// properly destroying any properties assigned from `eventData` upon release
|
|
15547
15838
|
var event = new SyntheticEvent(dispatchConfig, ReactDOMComponentTree.getInstanceFromNode(node), fakeNativeEvent, node);
|
|
@@ -15630,7 +15921,7 @@ Object.keys(topLevelTypes).forEach(function (eventType) {
|
|
|
15630
15921
|
});
|
|
15631
15922
|
|
|
15632
15923
|
module.exports = ReactTestUtils;
|
|
15633
|
-
},{"
|
|
15924
|
+
},{"109":109,"120":120,"138":138,"155":155,"16":16,"17":17,"173":173,"18":18,"180":180,"191":191,"20":20,"27":27,"28":28,"40":40,"42":42,"46":46,"66":66,"67":67,"79":79,"80":80,"97":97}],105:[function(_dereq_,module,exports){
|
|
15634
15925
|
/**
|
|
15635
15926
|
* Copyright 2013-present, Facebook, Inc.
|
|
15636
15927
|
* All rights reserved.
|
|
@@ -15644,7 +15935,7 @@ module.exports = ReactTestUtils;
|
|
|
15644
15935
|
|
|
15645
15936
|
'use strict';
|
|
15646
15937
|
|
|
15647
|
-
var flattenChildren = _dereq_(
|
|
15938
|
+
var flattenChildren = _dereq_(139);
|
|
15648
15939
|
|
|
15649
15940
|
var ReactTransitionChildMapping = {
|
|
15650
15941
|
/**
|
|
@@ -15734,7 +16025,7 @@ var ReactTransitionChildMapping = {
|
|
|
15734
16025
|
};
|
|
15735
16026
|
|
|
15736
16027
|
module.exports = ReactTransitionChildMapping;
|
|
15737
|
-
},{"
|
|
16028
|
+
},{"139":139}],106:[function(_dereq_,module,exports){
|
|
15738
16029
|
/**
|
|
15739
16030
|
* Copyright 2013-present, Facebook, Inc.
|
|
15740
16031
|
* All rights reserved.
|
|
@@ -15748,9 +16039,9 @@ module.exports = ReactTransitionChildMapping;
|
|
|
15748
16039
|
|
|
15749
16040
|
'use strict';
|
|
15750
16041
|
|
|
15751
|
-
var ExecutionEnvironment = _dereq_(
|
|
16042
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
15752
16043
|
|
|
15753
|
-
var getVendorPrefixedEventName = _dereq_(
|
|
16044
|
+
var getVendorPrefixedEventName = _dereq_(149);
|
|
15754
16045
|
|
|
15755
16046
|
var endEvents = [];
|
|
15756
16047
|
|
|
@@ -15808,7 +16099,7 @@ var ReactTransitionEvents = {
|
|
|
15808
16099
|
};
|
|
15809
16100
|
|
|
15810
16101
|
module.exports = ReactTransitionEvents;
|
|
15811
|
-
},{"
|
|
16102
|
+
},{"149":149,"166":166}],107:[function(_dereq_,module,exports){
|
|
15812
16103
|
/**
|
|
15813
16104
|
* Copyright 2013-present, Facebook, Inc.
|
|
15814
16105
|
* All rights reserved.
|
|
@@ -15822,13 +16113,13 @@ module.exports = ReactTransitionEvents;
|
|
|
15822
16113
|
|
|
15823
16114
|
'use strict';
|
|
15824
16115
|
|
|
15825
|
-
var _assign = _dereq_(
|
|
16116
|
+
var _assign = _dereq_(191);
|
|
15826
16117
|
|
|
15827
16118
|
var React = _dereq_(27);
|
|
15828
|
-
var ReactInstanceMap = _dereq_(
|
|
15829
|
-
var ReactTransitionChildMapping = _dereq_(
|
|
16119
|
+
var ReactInstanceMap = _dereq_(79);
|
|
16120
|
+
var ReactTransitionChildMapping = _dereq_(105);
|
|
15830
16121
|
|
|
15831
|
-
var emptyFunction = _dereq_(
|
|
16122
|
+
var emptyFunction = _dereq_(172);
|
|
15832
16123
|
|
|
15833
16124
|
/**
|
|
15834
16125
|
* A basis for animations. When children are declaratively added or removed,
|
|
@@ -16055,7 +16346,7 @@ var ReactTransitionGroup = React.createClass({
|
|
|
16055
16346
|
});
|
|
16056
16347
|
|
|
16057
16348
|
module.exports = ReactTransitionGroup;
|
|
16058
|
-
},{"
|
|
16349
|
+
},{"105":105,"172":172,"191":191,"27":27,"79":79}],108:[function(_dereq_,module,exports){
|
|
16059
16350
|
/**
|
|
16060
16351
|
* Copyright 2015-present, Facebook, Inc.
|
|
16061
16352
|
* All rights reserved.
|
|
@@ -16069,15 +16360,15 @@ module.exports = ReactTransitionGroup;
|
|
|
16069
16360
|
|
|
16070
16361
|
'use strict';
|
|
16071
16362
|
|
|
16072
|
-
var _prodInvariant = _dereq_(
|
|
16363
|
+
var _prodInvariant = _dereq_(155);
|
|
16073
16364
|
|
|
16074
|
-
var ReactCurrentOwner = _dereq_(
|
|
16075
|
-
var ReactInstanceMap = _dereq_(
|
|
16076
|
-
var ReactInstrumentation = _dereq_(
|
|
16077
|
-
var ReactUpdates = _dereq_(
|
|
16365
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
16366
|
+
var ReactInstanceMap = _dereq_(79);
|
|
16367
|
+
var ReactInstrumentation = _dereq_(80);
|
|
16368
|
+
var ReactUpdates = _dereq_(109);
|
|
16078
16369
|
|
|
16079
|
-
var invariant = _dereq_(
|
|
16080
|
-
var warning = _dereq_(
|
|
16370
|
+
var invariant = _dereq_(180);
|
|
16371
|
+
var warning = _dereq_(190);
|
|
16081
16372
|
|
|
16082
16373
|
function enqueueUpdate(internalInstance) {
|
|
16083
16374
|
ReactUpdates.enqueueUpdate(internalInstance);
|
|
@@ -16100,10 +16391,11 @@ function getInternalInstanceReadyForUpdate(publicInstance, callerName) {
|
|
|
16100
16391
|
var internalInstance = ReactInstanceMap.get(publicInstance);
|
|
16101
16392
|
if (!internalInstance) {
|
|
16102
16393
|
if ("development" !== 'production') {
|
|
16394
|
+
var ctor = publicInstance.constructor;
|
|
16103
16395
|
// Only warn when we have a callerName. Otherwise we should be silent.
|
|
16104
16396
|
// We're probably calling from enqueueCallback. We don't want to warn
|
|
16105
16397
|
// there because we already warned for the corresponding lifecycle method.
|
|
16106
|
-
"development" !== 'production' ? warning(!callerName, '%s(...): Can only update a mounted or mounting component. ' + 'This usually means you called %s() on an unmounted component. ' + 'This is a no-op. Please check the code for the %s component.', callerName, callerName,
|
|
16398
|
+
"development" !== 'production' ? warning(!callerName, '%s(...): Can only update a mounted or mounting component. ' + 'This usually means you called %s() on an unmounted component. ' + 'This is a no-op. Please check the code for the %s component.', callerName, callerName, ctor && (ctor.displayName || ctor.name) || 'ReactClass') : void 0;
|
|
16107
16399
|
}
|
|
16108
16400
|
return null;
|
|
16109
16401
|
}
|
|
@@ -16281,7 +16573,7 @@ var ReactUpdateQueue = {
|
|
|
16281
16573
|
};
|
|
16282
16574
|
|
|
16283
16575
|
module.exports = ReactUpdateQueue;
|
|
16284
|
-
},{"
|
|
16576
|
+
},{"109":109,"155":155,"180":180,"190":190,"41":41,"79":79,"80":80}],109:[function(_dereq_,module,exports){
|
|
16285
16577
|
/**
|
|
16286
16578
|
* Copyright 2013-present, Facebook, Inc.
|
|
16287
16579
|
* All rights reserved.
|
|
@@ -16295,16 +16587,16 @@ module.exports = ReactUpdateQueue;
|
|
|
16295
16587
|
|
|
16296
16588
|
'use strict';
|
|
16297
16589
|
|
|
16298
|
-
var _prodInvariant = _dereq_(
|
|
16299
|
-
_assign = _dereq_(
|
|
16590
|
+
var _prodInvariant = _dereq_(155),
|
|
16591
|
+
_assign = _dereq_(191);
|
|
16300
16592
|
|
|
16301
16593
|
var CallbackQueue = _dereq_(5);
|
|
16302
16594
|
var PooledClass = _dereq_(26);
|
|
16303
|
-
var ReactFeatureFlags = _dereq_(
|
|
16304
|
-
var ReactReconciler = _dereq_(
|
|
16305
|
-
var Transaction = _dereq_(
|
|
16595
|
+
var ReactFeatureFlags = _dereq_(73);
|
|
16596
|
+
var ReactReconciler = _dereq_(97);
|
|
16597
|
+
var Transaction = _dereq_(129);
|
|
16306
16598
|
|
|
16307
|
-
var invariant = _dereq_(
|
|
16599
|
+
var invariant = _dereq_(180);
|
|
16308
16600
|
|
|
16309
16601
|
var dirtyComponents = [];
|
|
16310
16602
|
var updateBatchNumber = 0;
|
|
@@ -16533,7 +16825,7 @@ var ReactUpdates = {
|
|
|
16533
16825
|
};
|
|
16534
16826
|
|
|
16535
16827
|
module.exports = ReactUpdates;
|
|
16536
|
-
},{"
|
|
16828
|
+
},{"129":129,"155":155,"180":180,"191":191,"26":26,"5":5,"73":73,"97":97}],110:[function(_dereq_,module,exports){
|
|
16537
16829
|
/**
|
|
16538
16830
|
* Copyright 2013-present, Facebook, Inc.
|
|
16539
16831
|
* All rights reserved.
|
|
@@ -16547,8 +16839,8 @@ module.exports = ReactUpdates;
|
|
|
16547
16839
|
|
|
16548
16840
|
'use strict';
|
|
16549
16841
|
|
|
16550
|
-
module.exports = '15.
|
|
16551
|
-
},{}],
|
|
16842
|
+
module.exports = '15.3.0';
|
|
16843
|
+
},{}],111:[function(_dereq_,module,exports){
|
|
16552
16844
|
/**
|
|
16553
16845
|
* Copyright 2013-present, Facebook, Inc.
|
|
16554
16846
|
* All rights reserved.
|
|
@@ -16564,13 +16856,13 @@ module.exports = '15.2.1';
|
|
|
16564
16856
|
|
|
16565
16857
|
var LinkedStateMixin = _dereq_(24);
|
|
16566
16858
|
var React = _dereq_(27);
|
|
16567
|
-
var ReactComponentWithPureRenderMixin = _dereq_(
|
|
16859
|
+
var ReactComponentWithPureRenderMixin = _dereq_(39);
|
|
16568
16860
|
var ReactCSSTransitionGroup = _dereq_(29);
|
|
16569
|
-
var ReactFragment = _dereq_(
|
|
16570
|
-
var ReactTransitionGroup = _dereq_(
|
|
16861
|
+
var ReactFragment = _dereq_(74);
|
|
16862
|
+
var ReactTransitionGroup = _dereq_(107);
|
|
16571
16863
|
|
|
16572
|
-
var shallowCompare = _dereq_(
|
|
16573
|
-
var update = _dereq_(
|
|
16864
|
+
var shallowCompare = _dereq_(159);
|
|
16865
|
+
var update = _dereq_(162);
|
|
16574
16866
|
|
|
16575
16867
|
React.addons = {
|
|
16576
16868
|
CSSTransitionGroup: ReactCSSTransitionGroup,
|
|
@@ -16584,12 +16876,12 @@ React.addons = {
|
|
|
16584
16876
|
};
|
|
16585
16877
|
|
|
16586
16878
|
if ("development" !== 'production') {
|
|
16587
|
-
React.addons.Perf = _dereq_(
|
|
16588
|
-
React.addons.TestUtils = _dereq_(
|
|
16879
|
+
React.addons.Perf = _dereq_(90);
|
|
16880
|
+
React.addons.TestUtils = _dereq_(104);
|
|
16589
16881
|
}
|
|
16590
16882
|
|
|
16591
16883
|
module.exports = React;
|
|
16592
|
-
},{"
|
|
16884
|
+
},{"104":104,"107":107,"159":159,"162":162,"24":24,"27":27,"29":29,"39":39,"74":74,"90":90}],112:[function(_dereq_,module,exports){
|
|
16593
16885
|
/**
|
|
16594
16886
|
* Copyright 2013-present, Facebook, Inc.
|
|
16595
16887
|
* All rights reserved.
|
|
@@ -16603,11 +16895,11 @@ module.exports = React;
|
|
|
16603
16895
|
|
|
16604
16896
|
'use strict';
|
|
16605
16897
|
|
|
16606
|
-
var _assign = _dereq_(
|
|
16898
|
+
var _assign = _dereq_(191);
|
|
16607
16899
|
|
|
16608
|
-
var ReactDOM = _dereq_(
|
|
16609
|
-
var ReactDOMServer = _dereq_(
|
|
16610
|
-
var ReactWithAddons = _dereq_(
|
|
16900
|
+
var ReactDOM = _dereq_(42);
|
|
16901
|
+
var ReactDOMServer = _dereq_(59);
|
|
16902
|
+
var ReactWithAddons = _dereq_(111);
|
|
16611
16903
|
|
|
16612
16904
|
// `version` will be added here by ReactIsomorphic.
|
|
16613
16905
|
var ReactWithAddonsUMDEntry = _assign({
|
|
@@ -16616,7 +16908,7 @@ var ReactWithAddonsUMDEntry = _assign({
|
|
|
16616
16908
|
}, ReactWithAddons);
|
|
16617
16909
|
|
|
16618
16910
|
module.exports = ReactWithAddonsUMDEntry;
|
|
16619
|
-
},{"
|
|
16911
|
+
},{"111":111,"191":191,"42":42,"59":59}],113:[function(_dereq_,module,exports){
|
|
16620
16912
|
/**
|
|
16621
16913
|
* Copyright 2013-present, Facebook, Inc.
|
|
16622
16914
|
* All rights reserved.
|
|
@@ -16882,6 +17174,8 @@ var ATTRS = {
|
|
|
16882
17174
|
xlinkTitle: 'xlink:title',
|
|
16883
17175
|
xlinkType: 'xlink:type',
|
|
16884
17176
|
xmlBase: 'xml:base',
|
|
17177
|
+
xmlns: 0,
|
|
17178
|
+
xmlnsXlink: 'xmlns:xlink',
|
|
16885
17179
|
xmlLang: 'xml:lang',
|
|
16886
17180
|
xmlSpace: 'xml:space',
|
|
16887
17181
|
y: 0,
|
|
@@ -16917,7 +17211,7 @@ Object.keys(ATTRS).forEach(function (key) {
|
|
|
16917
17211
|
});
|
|
16918
17212
|
|
|
16919
17213
|
module.exports = SVGDOMPropertyConfig;
|
|
16920
|
-
},{}],
|
|
17214
|
+
},{}],114:[function(_dereq_,module,exports){
|
|
16921
17215
|
/**
|
|
16922
17216
|
* Copyright 2013-present, Facebook, Inc.
|
|
16923
17217
|
* All rights reserved.
|
|
@@ -16933,15 +17227,15 @@ module.exports = SVGDOMPropertyConfig;
|
|
|
16933
17227
|
|
|
16934
17228
|
var EventConstants = _dereq_(16);
|
|
16935
17229
|
var EventPropagators = _dereq_(20);
|
|
16936
|
-
var ExecutionEnvironment = _dereq_(
|
|
16937
|
-
var ReactDOMComponentTree = _dereq_(
|
|
16938
|
-
var ReactInputSelection = _dereq_(
|
|
16939
|
-
var SyntheticEvent = _dereq_(
|
|
17230
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
17231
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
17232
|
+
var ReactInputSelection = _dereq_(78);
|
|
17233
|
+
var SyntheticEvent = _dereq_(120);
|
|
16940
17234
|
|
|
16941
|
-
var getActiveElement = _dereq_(
|
|
16942
|
-
var isTextInputElement = _dereq_(
|
|
16943
|
-
var keyOf = _dereq_(
|
|
16944
|
-
var shallowEqual = _dereq_(
|
|
17235
|
+
var getActiveElement = _dereq_(175);
|
|
17236
|
+
var isTextInputElement = _dereq_(152);
|
|
17237
|
+
var keyOf = _dereq_(184);
|
|
17238
|
+
var shallowEqual = _dereq_(189);
|
|
16945
17239
|
|
|
16946
17240
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
16947
17241
|
|
|
@@ -17114,7 +17408,7 @@ var SelectEventPlugin = {
|
|
|
17114
17408
|
};
|
|
17115
17409
|
|
|
17116
17410
|
module.exports = SelectEventPlugin;
|
|
17117
|
-
},{"
|
|
17411
|
+
},{"120":120,"152":152,"16":16,"166":166,"175":175,"184":184,"189":189,"20":20,"46":46,"78":78}],115:[function(_dereq_,module,exports){
|
|
17118
17412
|
/**
|
|
17119
17413
|
* Copyright 2013-present, Facebook, Inc.
|
|
17120
17414
|
* All rights reserved.
|
|
@@ -17128,28 +17422,28 @@ module.exports = SelectEventPlugin;
|
|
|
17128
17422
|
|
|
17129
17423
|
'use strict';
|
|
17130
17424
|
|
|
17131
|
-
var _prodInvariant = _dereq_(
|
|
17425
|
+
var _prodInvariant = _dereq_(155);
|
|
17132
17426
|
|
|
17133
17427
|
var EventConstants = _dereq_(16);
|
|
17134
|
-
var EventListener = _dereq_(
|
|
17428
|
+
var EventListener = _dereq_(165);
|
|
17135
17429
|
var EventPropagators = _dereq_(20);
|
|
17136
|
-
var ReactDOMComponentTree = _dereq_(
|
|
17137
|
-
var SyntheticAnimationEvent = _dereq_(
|
|
17138
|
-
var SyntheticClipboardEvent = _dereq_(
|
|
17139
|
-
var SyntheticEvent = _dereq_(
|
|
17140
|
-
var SyntheticFocusEvent = _dereq_(
|
|
17141
|
-
var SyntheticKeyboardEvent = _dereq_(
|
|
17142
|
-
var SyntheticMouseEvent = _dereq_(
|
|
17143
|
-
var SyntheticDragEvent = _dereq_(
|
|
17144
|
-
var SyntheticTouchEvent = _dereq_(
|
|
17145
|
-
var SyntheticTransitionEvent = _dereq_(
|
|
17146
|
-
var SyntheticUIEvent = _dereq_(
|
|
17147
|
-
var SyntheticWheelEvent = _dereq_(
|
|
17148
|
-
|
|
17149
|
-
var emptyFunction = _dereq_(
|
|
17150
|
-
var getEventCharCode = _dereq_(
|
|
17151
|
-
var invariant = _dereq_(
|
|
17152
|
-
var keyOf = _dereq_(
|
|
17430
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
17431
|
+
var SyntheticAnimationEvent = _dereq_(116);
|
|
17432
|
+
var SyntheticClipboardEvent = _dereq_(117);
|
|
17433
|
+
var SyntheticEvent = _dereq_(120);
|
|
17434
|
+
var SyntheticFocusEvent = _dereq_(121);
|
|
17435
|
+
var SyntheticKeyboardEvent = _dereq_(123);
|
|
17436
|
+
var SyntheticMouseEvent = _dereq_(124);
|
|
17437
|
+
var SyntheticDragEvent = _dereq_(119);
|
|
17438
|
+
var SyntheticTouchEvent = _dereq_(125);
|
|
17439
|
+
var SyntheticTransitionEvent = _dereq_(126);
|
|
17440
|
+
var SyntheticUIEvent = _dereq_(127);
|
|
17441
|
+
var SyntheticWheelEvent = _dereq_(128);
|
|
17442
|
+
|
|
17443
|
+
var emptyFunction = _dereq_(172);
|
|
17444
|
+
var getEventCharCode = _dereq_(141);
|
|
17445
|
+
var invariant = _dereq_(180);
|
|
17446
|
+
var keyOf = _dereq_(184);
|
|
17153
17447
|
|
|
17154
17448
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
17155
17449
|
|
|
@@ -17602,6 +17896,10 @@ for (var type in topLevelEventsToDispatchConfig) {
|
|
|
17602
17896
|
var ON_CLICK_KEY = keyOf({ onClick: null });
|
|
17603
17897
|
var onClickListeners = {};
|
|
17604
17898
|
|
|
17899
|
+
function getDictionaryKey(inst) {
|
|
17900
|
+
return '.' + inst._rootNodeID;
|
|
17901
|
+
}
|
|
17902
|
+
|
|
17605
17903
|
var SimpleEventPlugin = {
|
|
17606
17904
|
|
|
17607
17905
|
eventTypes: eventTypes,
|
|
@@ -17725,26 +18023,26 @@ var SimpleEventPlugin = {
|
|
|
17725
18023
|
// fire. The workaround for this bug involves attaching an empty click
|
|
17726
18024
|
// listener on the target node.
|
|
17727
18025
|
if (registrationName === ON_CLICK_KEY) {
|
|
17728
|
-
var
|
|
18026
|
+
var key = getDictionaryKey(inst);
|
|
17729
18027
|
var node = ReactDOMComponentTree.getNodeFromInstance(inst);
|
|
17730
|
-
if (!onClickListeners[
|
|
17731
|
-
onClickListeners[
|
|
18028
|
+
if (!onClickListeners[key]) {
|
|
18029
|
+
onClickListeners[key] = EventListener.listen(node, 'click', emptyFunction);
|
|
17732
18030
|
}
|
|
17733
18031
|
}
|
|
17734
18032
|
},
|
|
17735
18033
|
|
|
17736
18034
|
willDeleteListener: function (inst, registrationName) {
|
|
17737
18035
|
if (registrationName === ON_CLICK_KEY) {
|
|
17738
|
-
var
|
|
17739
|
-
onClickListeners[
|
|
17740
|
-
delete onClickListeners[
|
|
18036
|
+
var key = getDictionaryKey(inst);
|
|
18037
|
+
onClickListeners[key].remove();
|
|
18038
|
+
delete onClickListeners[key];
|
|
17741
18039
|
}
|
|
17742
18040
|
}
|
|
17743
18041
|
|
|
17744
18042
|
};
|
|
17745
18043
|
|
|
17746
18044
|
module.exports = SimpleEventPlugin;
|
|
17747
|
-
},{"
|
|
18045
|
+
},{"116":116,"117":117,"119":119,"120":120,"121":121,"123":123,"124":124,"125":125,"126":126,"127":127,"128":128,"141":141,"155":155,"16":16,"165":165,"172":172,"180":180,"184":184,"20":20,"46":46}],116:[function(_dereq_,module,exports){
|
|
17748
18046
|
/**
|
|
17749
18047
|
* Copyright 2013-present, Facebook, Inc.
|
|
17750
18048
|
* All rights reserved.
|
|
@@ -17758,7 +18056,7 @@ module.exports = SimpleEventPlugin;
|
|
|
17758
18056
|
|
|
17759
18057
|
'use strict';
|
|
17760
18058
|
|
|
17761
|
-
var SyntheticEvent = _dereq_(
|
|
18059
|
+
var SyntheticEvent = _dereq_(120);
|
|
17762
18060
|
|
|
17763
18061
|
/**
|
|
17764
18062
|
* @interface Event
|
|
@@ -17784,7 +18082,7 @@ function SyntheticAnimationEvent(dispatchConfig, dispatchMarker, nativeEvent, na
|
|
|
17784
18082
|
SyntheticEvent.augmentClass(SyntheticAnimationEvent, AnimationEventInterface);
|
|
17785
18083
|
|
|
17786
18084
|
module.exports = SyntheticAnimationEvent;
|
|
17787
|
-
},{"
|
|
18085
|
+
},{"120":120}],117:[function(_dereq_,module,exports){
|
|
17788
18086
|
/**
|
|
17789
18087
|
* Copyright 2013-present, Facebook, Inc.
|
|
17790
18088
|
* All rights reserved.
|
|
@@ -17798,7 +18096,7 @@ module.exports = SyntheticAnimationEvent;
|
|
|
17798
18096
|
|
|
17799
18097
|
'use strict';
|
|
17800
18098
|
|
|
17801
|
-
var SyntheticEvent = _dereq_(
|
|
18099
|
+
var SyntheticEvent = _dereq_(120);
|
|
17802
18100
|
|
|
17803
18101
|
/**
|
|
17804
18102
|
* @interface Event
|
|
@@ -17823,7 +18121,7 @@ function SyntheticClipboardEvent(dispatchConfig, dispatchMarker, nativeEvent, na
|
|
|
17823
18121
|
SyntheticEvent.augmentClass(SyntheticClipboardEvent, ClipboardEventInterface);
|
|
17824
18122
|
|
|
17825
18123
|
module.exports = SyntheticClipboardEvent;
|
|
17826
|
-
},{"
|
|
18124
|
+
},{"120":120}],118:[function(_dereq_,module,exports){
|
|
17827
18125
|
/**
|
|
17828
18126
|
* Copyright 2013-present, Facebook, Inc.
|
|
17829
18127
|
* All rights reserved.
|
|
@@ -17837,7 +18135,7 @@ module.exports = SyntheticClipboardEvent;
|
|
|
17837
18135
|
|
|
17838
18136
|
'use strict';
|
|
17839
18137
|
|
|
17840
|
-
var SyntheticEvent = _dereq_(
|
|
18138
|
+
var SyntheticEvent = _dereq_(120);
|
|
17841
18139
|
|
|
17842
18140
|
/**
|
|
17843
18141
|
* @interface Event
|
|
@@ -17860,7 +18158,7 @@ function SyntheticCompositionEvent(dispatchConfig, dispatchMarker, nativeEvent,
|
|
|
17860
18158
|
SyntheticEvent.augmentClass(SyntheticCompositionEvent, CompositionEventInterface);
|
|
17861
18159
|
|
|
17862
18160
|
module.exports = SyntheticCompositionEvent;
|
|
17863
|
-
},{"
|
|
18161
|
+
},{"120":120}],119:[function(_dereq_,module,exports){
|
|
17864
18162
|
/**
|
|
17865
18163
|
* Copyright 2013-present, Facebook, Inc.
|
|
17866
18164
|
* All rights reserved.
|
|
@@ -17874,7 +18172,7 @@ module.exports = SyntheticCompositionEvent;
|
|
|
17874
18172
|
|
|
17875
18173
|
'use strict';
|
|
17876
18174
|
|
|
17877
|
-
var SyntheticMouseEvent = _dereq_(
|
|
18175
|
+
var SyntheticMouseEvent = _dereq_(124);
|
|
17878
18176
|
|
|
17879
18177
|
/**
|
|
17880
18178
|
* @interface DragEvent
|
|
@@ -17897,7 +18195,7 @@ function SyntheticDragEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeE
|
|
|
17897
18195
|
SyntheticMouseEvent.augmentClass(SyntheticDragEvent, DragEventInterface);
|
|
17898
18196
|
|
|
17899
18197
|
module.exports = SyntheticDragEvent;
|
|
17900
|
-
},{"
|
|
18198
|
+
},{"124":124}],120:[function(_dereq_,module,exports){
|
|
17901
18199
|
/**
|
|
17902
18200
|
* Copyright 2013-present, Facebook, Inc.
|
|
17903
18201
|
* All rights reserved.
|
|
@@ -17911,12 +18209,12 @@ module.exports = SyntheticDragEvent;
|
|
|
17911
18209
|
|
|
17912
18210
|
'use strict';
|
|
17913
18211
|
|
|
17914
|
-
var _assign = _dereq_(
|
|
18212
|
+
var _assign = _dereq_(191);
|
|
17915
18213
|
|
|
17916
18214
|
var PooledClass = _dereq_(26);
|
|
17917
18215
|
|
|
17918
|
-
var emptyFunction = _dereq_(
|
|
17919
|
-
var warning = _dereq_(
|
|
18216
|
+
var emptyFunction = _dereq_(172);
|
|
18217
|
+
var warning = _dereq_(190);
|
|
17920
18218
|
|
|
17921
18219
|
var didWarnForAddedNewProperty = false;
|
|
17922
18220
|
var isProxySupported = typeof Proxy === 'function';
|
|
@@ -18158,7 +18456,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
|
|
|
18158
18456
|
"development" !== 'production' ? warning(warningCondition, 'This synthetic event is reused for performance reasons. If you\'re seeing this, ' + 'you\'re %s `%s` on a released/nullified synthetic event. %s. ' + 'If you must keep the original synthetic event around, use event.persist(). ' + 'See https://fb.me/react-event-pooling for more information.', action, propName, result) : void 0;
|
|
18159
18457
|
}
|
|
18160
18458
|
}
|
|
18161
|
-
},{"
|
|
18459
|
+
},{"172":172,"190":190,"191":191,"26":26}],121:[function(_dereq_,module,exports){
|
|
18162
18460
|
/**
|
|
18163
18461
|
* Copyright 2013-present, Facebook, Inc.
|
|
18164
18462
|
* All rights reserved.
|
|
@@ -18172,7 +18470,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
|
|
|
18172
18470
|
|
|
18173
18471
|
'use strict';
|
|
18174
18472
|
|
|
18175
|
-
var SyntheticUIEvent = _dereq_(
|
|
18473
|
+
var SyntheticUIEvent = _dereq_(127);
|
|
18176
18474
|
|
|
18177
18475
|
/**
|
|
18178
18476
|
* @interface FocusEvent
|
|
@@ -18195,7 +18493,7 @@ function SyntheticFocusEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
18195
18493
|
SyntheticUIEvent.augmentClass(SyntheticFocusEvent, FocusEventInterface);
|
|
18196
18494
|
|
|
18197
18495
|
module.exports = SyntheticFocusEvent;
|
|
18198
|
-
},{"
|
|
18496
|
+
},{"127":127}],122:[function(_dereq_,module,exports){
|
|
18199
18497
|
/**
|
|
18200
18498
|
* Copyright 2013-present, Facebook, Inc.
|
|
18201
18499
|
* All rights reserved.
|
|
@@ -18209,7 +18507,7 @@ module.exports = SyntheticFocusEvent;
|
|
|
18209
18507
|
|
|
18210
18508
|
'use strict';
|
|
18211
18509
|
|
|
18212
|
-
var SyntheticEvent = _dereq_(
|
|
18510
|
+
var SyntheticEvent = _dereq_(120);
|
|
18213
18511
|
|
|
18214
18512
|
/**
|
|
18215
18513
|
* @interface Event
|
|
@@ -18233,7 +18531,7 @@ function SyntheticInputEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
18233
18531
|
SyntheticEvent.augmentClass(SyntheticInputEvent, InputEventInterface);
|
|
18234
18532
|
|
|
18235
18533
|
module.exports = SyntheticInputEvent;
|
|
18236
|
-
},{"
|
|
18534
|
+
},{"120":120}],123:[function(_dereq_,module,exports){
|
|
18237
18535
|
/**
|
|
18238
18536
|
* Copyright 2013-present, Facebook, Inc.
|
|
18239
18537
|
* All rights reserved.
|
|
@@ -18247,11 +18545,11 @@ module.exports = SyntheticInputEvent;
|
|
|
18247
18545
|
|
|
18248
18546
|
'use strict';
|
|
18249
18547
|
|
|
18250
|
-
var SyntheticUIEvent = _dereq_(
|
|
18548
|
+
var SyntheticUIEvent = _dereq_(127);
|
|
18251
18549
|
|
|
18252
|
-
var getEventCharCode = _dereq_(
|
|
18253
|
-
var getEventKey = _dereq_(
|
|
18254
|
-
var getEventModifierState = _dereq_(
|
|
18550
|
+
var getEventCharCode = _dereq_(141);
|
|
18551
|
+
var getEventKey = _dereq_(142);
|
|
18552
|
+
var getEventModifierState = _dereq_(143);
|
|
18255
18553
|
|
|
18256
18554
|
/**
|
|
18257
18555
|
* @interface KeyboardEvent
|
|
@@ -18318,7 +18616,7 @@ function SyntheticKeyboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nat
|
|
|
18318
18616
|
SyntheticUIEvent.augmentClass(SyntheticKeyboardEvent, KeyboardEventInterface);
|
|
18319
18617
|
|
|
18320
18618
|
module.exports = SyntheticKeyboardEvent;
|
|
18321
|
-
},{"
|
|
18619
|
+
},{"127":127,"141":141,"142":142,"143":143}],124:[function(_dereq_,module,exports){
|
|
18322
18620
|
/**
|
|
18323
18621
|
* Copyright 2013-present, Facebook, Inc.
|
|
18324
18622
|
* All rights reserved.
|
|
@@ -18332,10 +18630,10 @@ module.exports = SyntheticKeyboardEvent;
|
|
|
18332
18630
|
|
|
18333
18631
|
'use strict';
|
|
18334
18632
|
|
|
18335
|
-
var SyntheticUIEvent = _dereq_(
|
|
18336
|
-
var ViewportMetrics = _dereq_(
|
|
18633
|
+
var SyntheticUIEvent = _dereq_(127);
|
|
18634
|
+
var ViewportMetrics = _dereq_(130);
|
|
18337
18635
|
|
|
18338
|
-
var getEventModifierState = _dereq_(
|
|
18636
|
+
var getEventModifierState = _dereq_(143);
|
|
18339
18637
|
|
|
18340
18638
|
/**
|
|
18341
18639
|
* @interface MouseEvent
|
|
@@ -18391,7 +18689,7 @@ function SyntheticMouseEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
18391
18689
|
SyntheticUIEvent.augmentClass(SyntheticMouseEvent, MouseEventInterface);
|
|
18392
18690
|
|
|
18393
18691
|
module.exports = SyntheticMouseEvent;
|
|
18394
|
-
},{"
|
|
18692
|
+
},{"127":127,"130":130,"143":143}],125:[function(_dereq_,module,exports){
|
|
18395
18693
|
/**
|
|
18396
18694
|
* Copyright 2013-present, Facebook, Inc.
|
|
18397
18695
|
* All rights reserved.
|
|
@@ -18405,9 +18703,9 @@ module.exports = SyntheticMouseEvent;
|
|
|
18405
18703
|
|
|
18406
18704
|
'use strict';
|
|
18407
18705
|
|
|
18408
|
-
var SyntheticUIEvent = _dereq_(
|
|
18706
|
+
var SyntheticUIEvent = _dereq_(127);
|
|
18409
18707
|
|
|
18410
|
-
var getEventModifierState = _dereq_(
|
|
18708
|
+
var getEventModifierState = _dereq_(143);
|
|
18411
18709
|
|
|
18412
18710
|
/**
|
|
18413
18711
|
* @interface TouchEvent
|
|
@@ -18437,7 +18735,7 @@ function SyntheticTouchEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
18437
18735
|
SyntheticUIEvent.augmentClass(SyntheticTouchEvent, TouchEventInterface);
|
|
18438
18736
|
|
|
18439
18737
|
module.exports = SyntheticTouchEvent;
|
|
18440
|
-
},{"
|
|
18738
|
+
},{"127":127,"143":143}],126:[function(_dereq_,module,exports){
|
|
18441
18739
|
/**
|
|
18442
18740
|
* Copyright 2013-present, Facebook, Inc.
|
|
18443
18741
|
* All rights reserved.
|
|
@@ -18451,7 +18749,7 @@ module.exports = SyntheticTouchEvent;
|
|
|
18451
18749
|
|
|
18452
18750
|
'use strict';
|
|
18453
18751
|
|
|
18454
|
-
var SyntheticEvent = _dereq_(
|
|
18752
|
+
var SyntheticEvent = _dereq_(120);
|
|
18455
18753
|
|
|
18456
18754
|
/**
|
|
18457
18755
|
* @interface Event
|
|
@@ -18477,7 +18775,7 @@ function SyntheticTransitionEvent(dispatchConfig, dispatchMarker, nativeEvent, n
|
|
|
18477
18775
|
SyntheticEvent.augmentClass(SyntheticTransitionEvent, TransitionEventInterface);
|
|
18478
18776
|
|
|
18479
18777
|
module.exports = SyntheticTransitionEvent;
|
|
18480
|
-
},{"
|
|
18778
|
+
},{"120":120}],127:[function(_dereq_,module,exports){
|
|
18481
18779
|
/**
|
|
18482
18780
|
* Copyright 2013-present, Facebook, Inc.
|
|
18483
18781
|
* All rights reserved.
|
|
@@ -18491,9 +18789,9 @@ module.exports = SyntheticTransitionEvent;
|
|
|
18491
18789
|
|
|
18492
18790
|
'use strict';
|
|
18493
18791
|
|
|
18494
|
-
var SyntheticEvent = _dereq_(
|
|
18792
|
+
var SyntheticEvent = _dereq_(120);
|
|
18495
18793
|
|
|
18496
|
-
var getEventTarget = _dereq_(
|
|
18794
|
+
var getEventTarget = _dereq_(144);
|
|
18497
18795
|
|
|
18498
18796
|
/**
|
|
18499
18797
|
* @interface UIEvent
|
|
@@ -18537,7 +18835,7 @@ function SyntheticUIEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEve
|
|
|
18537
18835
|
SyntheticEvent.augmentClass(SyntheticUIEvent, UIEventInterface);
|
|
18538
18836
|
|
|
18539
18837
|
module.exports = SyntheticUIEvent;
|
|
18540
|
-
},{"
|
|
18838
|
+
},{"120":120,"144":144}],128:[function(_dereq_,module,exports){
|
|
18541
18839
|
/**
|
|
18542
18840
|
* Copyright 2013-present, Facebook, Inc.
|
|
18543
18841
|
* All rights reserved.
|
|
@@ -18551,7 +18849,7 @@ module.exports = SyntheticUIEvent;
|
|
|
18551
18849
|
|
|
18552
18850
|
'use strict';
|
|
18553
18851
|
|
|
18554
|
-
var SyntheticMouseEvent = _dereq_(
|
|
18852
|
+
var SyntheticMouseEvent = _dereq_(124);
|
|
18555
18853
|
|
|
18556
18854
|
/**
|
|
18557
18855
|
* @interface WheelEvent
|
|
@@ -18592,7 +18890,7 @@ function SyntheticWheelEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
18592
18890
|
SyntheticMouseEvent.augmentClass(SyntheticWheelEvent, WheelEventInterface);
|
|
18593
18891
|
|
|
18594
18892
|
module.exports = SyntheticWheelEvent;
|
|
18595
|
-
},{"
|
|
18893
|
+
},{"124":124}],129:[function(_dereq_,module,exports){
|
|
18596
18894
|
/**
|
|
18597
18895
|
* Copyright 2013-present, Facebook, Inc.
|
|
18598
18896
|
* All rights reserved.
|
|
@@ -18606,9 +18904,9 @@ module.exports = SyntheticWheelEvent;
|
|
|
18606
18904
|
|
|
18607
18905
|
'use strict';
|
|
18608
18906
|
|
|
18609
|
-
var _prodInvariant = _dereq_(
|
|
18907
|
+
var _prodInvariant = _dereq_(155);
|
|
18610
18908
|
|
|
18611
|
-
var invariant = _dereq_(
|
|
18909
|
+
var invariant = _dereq_(180);
|
|
18612
18910
|
|
|
18613
18911
|
/**
|
|
18614
18912
|
* `Transaction` creates a black box that is able to wrap any method such that
|
|
@@ -18826,7 +19124,7 @@ var Transaction = {
|
|
|
18826
19124
|
};
|
|
18827
19125
|
|
|
18828
19126
|
module.exports = Transaction;
|
|
18829
|
-
},{"
|
|
19127
|
+
},{"155":155,"180":180}],130:[function(_dereq_,module,exports){
|
|
18830
19128
|
/**
|
|
18831
19129
|
* Copyright 2013-present, Facebook, Inc.
|
|
18832
19130
|
* All rights reserved.
|
|
@@ -18854,7 +19152,7 @@ var ViewportMetrics = {
|
|
|
18854
19152
|
};
|
|
18855
19153
|
|
|
18856
19154
|
module.exports = ViewportMetrics;
|
|
18857
|
-
},{}],
|
|
19155
|
+
},{}],131:[function(_dereq_,module,exports){
|
|
18858
19156
|
/**
|
|
18859
19157
|
* Copyright 2014-present, Facebook, Inc.
|
|
18860
19158
|
* All rights reserved.
|
|
@@ -18869,9 +19167,9 @@ module.exports = ViewportMetrics;
|
|
|
18869
19167
|
|
|
18870
19168
|
'use strict';
|
|
18871
19169
|
|
|
18872
|
-
var _prodInvariant = _dereq_(
|
|
19170
|
+
var _prodInvariant = _dereq_(155);
|
|
18873
19171
|
|
|
18874
|
-
var invariant = _dereq_(
|
|
19172
|
+
var invariant = _dereq_(180);
|
|
18875
19173
|
|
|
18876
19174
|
/**
|
|
18877
19175
|
* Accumulates items that must not be null or undefined into the first one. This
|
|
@@ -18913,7 +19211,7 @@ function accumulateInto(current, next) {
|
|
|
18913
19211
|
}
|
|
18914
19212
|
|
|
18915
19213
|
module.exports = accumulateInto;
|
|
18916
|
-
},{"
|
|
19214
|
+
},{"155":155,"180":180}],132:[function(_dereq_,module,exports){
|
|
18917
19215
|
/**
|
|
18918
19216
|
* Copyright 2013-present, Facebook, Inc.
|
|
18919
19217
|
* All rights reserved.
|
|
@@ -18958,7 +19256,7 @@ function adler32(data) {
|
|
|
18958
19256
|
}
|
|
18959
19257
|
|
|
18960
19258
|
module.exports = adler32;
|
|
18961
|
-
},{}],
|
|
19259
|
+
},{}],133:[function(_dereq_,module,exports){
|
|
18962
19260
|
/**
|
|
18963
19261
|
* Copyright 2013-present, Facebook, Inc.
|
|
18964
19262
|
* All rights reserved.
|
|
@@ -18983,7 +19281,8 @@ if ("development" !== 'production') {
|
|
|
18983
19281
|
}
|
|
18984
19282
|
|
|
18985
19283
|
module.exports = canDefineProperty;
|
|
18986
|
-
},{}],
|
|
19284
|
+
},{}],134:[function(_dereq_,module,exports){
|
|
19285
|
+
(function (process){
|
|
18987
19286
|
/**
|
|
18988
19287
|
* Copyright 2013-present, Facebook, Inc.
|
|
18989
19288
|
* All rights reserved.
|
|
@@ -18997,12 +19296,24 @@ module.exports = canDefineProperty;
|
|
|
18997
19296
|
|
|
18998
19297
|
'use strict';
|
|
18999
19298
|
|
|
19000
|
-
var _prodInvariant = _dereq_(
|
|
19299
|
+
var _prodInvariant = _dereq_(155);
|
|
19300
|
+
|
|
19301
|
+
var ReactPropTypeLocationNames = _dereq_(91);
|
|
19302
|
+
var ReactPropTypesSecret = _dereq_(94);
|
|
19001
19303
|
|
|
19002
|
-
var
|
|
19304
|
+
var invariant = _dereq_(180);
|
|
19305
|
+
var warning = _dereq_(190);
|
|
19003
19306
|
|
|
19004
|
-
var
|
|
19005
|
-
|
|
19307
|
+
var ReactComponentTreeDevtool;
|
|
19308
|
+
|
|
19309
|
+
if (typeof process !== 'undefined' && process.env && "development" === 'test') {
|
|
19310
|
+
// Temporary hack.
|
|
19311
|
+
// Inline requires don't work well with Jest:
|
|
19312
|
+
// https://github.com/facebook/react/issues/7240
|
|
19313
|
+
// Remove the inline requires when we don't need them anymore:
|
|
19314
|
+
// https://github.com/facebook/react/pull/7178
|
|
19315
|
+
ReactComponentTreeDevtool = _dereq_(38);
|
|
19316
|
+
}
|
|
19006
19317
|
|
|
19007
19318
|
var loggedTypeFailures = {};
|
|
19008
19319
|
|
|
@@ -19029,7 +19340,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
|
|
|
19029
19340
|
// This is intentionally an invariant that gets caught. It's the same
|
|
19030
19341
|
// behavior as without this statement except with a better message.
|
|
19031
19342
|
!(typeof typeSpecs[typeSpecName] === 'function') ? "development" !== 'production' ? invariant(false, '%s: %s type `%s` is invalid; it must be a function, usually from React.PropTypes.', componentName || 'React class', ReactPropTypeLocationNames[location], typeSpecName) : _prodInvariant('84', componentName || 'React class', ReactPropTypeLocationNames[location], typeSpecName) : void 0;
|
|
19032
|
-
error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location);
|
|
19343
|
+
error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);
|
|
19033
19344
|
} catch (ex) {
|
|
19034
19345
|
error = ex;
|
|
19035
19346
|
}
|
|
@@ -19042,7 +19353,9 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
|
|
|
19042
19353
|
var componentStackInfo = '';
|
|
19043
19354
|
|
|
19044
19355
|
if ("development" !== 'production') {
|
|
19045
|
-
|
|
19356
|
+
if (!ReactComponentTreeDevtool) {
|
|
19357
|
+
ReactComponentTreeDevtool = _dereq_(38);
|
|
19358
|
+
}
|
|
19046
19359
|
if (debugID !== null) {
|
|
19047
19360
|
componentStackInfo = ReactComponentTreeDevtool.getStackAddendumByID(debugID);
|
|
19048
19361
|
} else if (element !== null) {
|
|
@@ -19057,7 +19370,8 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
|
|
|
19057
19370
|
}
|
|
19058
19371
|
|
|
19059
19372
|
module.exports = checkReactTypeSpec;
|
|
19060
|
-
}
|
|
19373
|
+
}).call(this,undefined)
|
|
19374
|
+
},{"155":155,"180":180,"190":190,"38":38,"91":91,"94":94}],135:[function(_dereq_,module,exports){
|
|
19061
19375
|
/**
|
|
19062
19376
|
* Copyright 2013-present, Facebook, Inc.
|
|
19063
19377
|
* All rights reserved.
|
|
@@ -19090,7 +19404,7 @@ var createMicrosoftUnsafeLocalFunction = function (func) {
|
|
|
19090
19404
|
};
|
|
19091
19405
|
|
|
19092
19406
|
module.exports = createMicrosoftUnsafeLocalFunction;
|
|
19093
|
-
},{}],
|
|
19407
|
+
},{}],136:[function(_dereq_,module,exports){
|
|
19094
19408
|
/**
|
|
19095
19409
|
* Copyright 2013-present, Facebook, Inc.
|
|
19096
19410
|
* All rights reserved.
|
|
@@ -19105,7 +19419,7 @@ module.exports = createMicrosoftUnsafeLocalFunction;
|
|
|
19105
19419
|
'use strict';
|
|
19106
19420
|
|
|
19107
19421
|
var CSSProperty = _dereq_(3);
|
|
19108
|
-
var warning = _dereq_(
|
|
19422
|
+
var warning = _dereq_(190);
|
|
19109
19423
|
|
|
19110
19424
|
var isUnitlessNumber = CSSProperty.isUnitlessNumber;
|
|
19111
19425
|
var styleWarnings = {};
|
|
@@ -19170,7 +19484,7 @@ function dangerousStyleValue(name, value, component) {
|
|
|
19170
19484
|
}
|
|
19171
19485
|
|
|
19172
19486
|
module.exports = dangerousStyleValue;
|
|
19173
|
-
},{"
|
|
19487
|
+
},{"190":190,"3":3}],137:[function(_dereq_,module,exports){
|
|
19174
19488
|
/**
|
|
19175
19489
|
* Copyright 2016-present, Facebook, Inc.
|
|
19176
19490
|
* All rights reserved.
|
|
@@ -19293,7 +19607,7 @@ function escapeTextContentForBrowser(text) {
|
|
|
19293
19607
|
}
|
|
19294
19608
|
|
|
19295
19609
|
module.exports = escapeTextContentForBrowser;
|
|
19296
|
-
},{}],
|
|
19610
|
+
},{}],138:[function(_dereq_,module,exports){
|
|
19297
19611
|
/**
|
|
19298
19612
|
* Copyright 2013-present, Facebook, Inc.
|
|
19299
19613
|
* All rights reserved.
|
|
@@ -19307,15 +19621,15 @@ module.exports = escapeTextContentForBrowser;
|
|
|
19307
19621
|
|
|
19308
19622
|
'use strict';
|
|
19309
19623
|
|
|
19310
|
-
var _prodInvariant = _dereq_(
|
|
19624
|
+
var _prodInvariant = _dereq_(155);
|
|
19311
19625
|
|
|
19312
|
-
var ReactCurrentOwner = _dereq_(
|
|
19313
|
-
var ReactDOMComponentTree = _dereq_(
|
|
19314
|
-
var ReactInstanceMap = _dereq_(
|
|
19626
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
19627
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
19628
|
+
var ReactInstanceMap = _dereq_(79);
|
|
19315
19629
|
|
|
19316
|
-
var getHostComponentFromComposite = _dereq_(
|
|
19317
|
-
var invariant = _dereq_(
|
|
19318
|
-
var warning = _dereq_(
|
|
19630
|
+
var getHostComponentFromComposite = _dereq_(145);
|
|
19631
|
+
var invariant = _dereq_(180);
|
|
19632
|
+
var warning = _dereq_(190);
|
|
19319
19633
|
|
|
19320
19634
|
/**
|
|
19321
19635
|
* Returns the DOM node rendered by this element.
|
|
@@ -19354,7 +19668,8 @@ function findDOMNode(componentOrElement) {
|
|
|
19354
19668
|
}
|
|
19355
19669
|
|
|
19356
19670
|
module.exports = findDOMNode;
|
|
19357
|
-
},{"
|
|
19671
|
+
},{"145":145,"155":155,"180":180,"190":190,"41":41,"46":46,"79":79}],139:[function(_dereq_,module,exports){
|
|
19672
|
+
(function (process){
|
|
19358
19673
|
/**
|
|
19359
19674
|
* Copyright 2013-present, Facebook, Inc.
|
|
19360
19675
|
* All rights reserved.
|
|
@@ -19370,8 +19685,19 @@ module.exports = findDOMNode;
|
|
|
19370
19685
|
'use strict';
|
|
19371
19686
|
|
|
19372
19687
|
var KeyEscapeUtils = _dereq_(23);
|
|
19373
|
-
var traverseAllChildren = _dereq_(
|
|
19374
|
-
var warning = _dereq_(
|
|
19688
|
+
var traverseAllChildren = _dereq_(161);
|
|
19689
|
+
var warning = _dereq_(190);
|
|
19690
|
+
|
|
19691
|
+
var ReactComponentTreeDevtool;
|
|
19692
|
+
|
|
19693
|
+
if (typeof process !== 'undefined' && process.env && "development" === 'test') {
|
|
19694
|
+
// Temporary hack.
|
|
19695
|
+
// Inline requires don't work well with Jest:
|
|
19696
|
+
// https://github.com/facebook/react/issues/7240
|
|
19697
|
+
// Remove the inline requires when we don't need them anymore:
|
|
19698
|
+
// https://github.com/facebook/react/pull/7178
|
|
19699
|
+
ReactComponentTreeDevtool = _dereq_(38);
|
|
19700
|
+
}
|
|
19375
19701
|
|
|
19376
19702
|
/**
|
|
19377
19703
|
* @param {function} traverseContext Context passed through traversal.
|
|
@@ -19385,7 +19711,9 @@ function flattenSingleChildIntoContext(traverseContext, child, name, selfDebugID
|
|
|
19385
19711
|
var result = traverseContext;
|
|
19386
19712
|
var keyUnique = result[name] === undefined;
|
|
19387
19713
|
if ("development" !== 'production') {
|
|
19388
|
-
|
|
19714
|
+
if (!ReactComponentTreeDevtool) {
|
|
19715
|
+
ReactComponentTreeDevtool = _dereq_(38);
|
|
19716
|
+
}
|
|
19389
19717
|
"development" !== 'production' ? warning(keyUnique, 'flattenChildren(...): Encountered two children with the same key, ' + '`%s`. Child keys must be unique; when two children share a key, only ' + 'the first child will be used.%s', KeyEscapeUtils.unescape(name), ReactComponentTreeDevtool.getStackAddendumByID(selfDebugID)) : void 0;
|
|
19390
19718
|
}
|
|
19391
19719
|
if (keyUnique && child != null) {
|
|
@@ -19416,7 +19744,8 @@ function flattenChildren(children, selfDebugID) {
|
|
|
19416
19744
|
}
|
|
19417
19745
|
|
|
19418
19746
|
module.exports = flattenChildren;
|
|
19419
|
-
}
|
|
19747
|
+
}).call(this,undefined)
|
|
19748
|
+
},{"161":161,"190":190,"23":23,"38":38}],140:[function(_dereq_,module,exports){
|
|
19420
19749
|
/**
|
|
19421
19750
|
* Copyright 2013-present, Facebook, Inc.
|
|
19422
19751
|
* All rights reserved.
|
|
@@ -19448,7 +19777,7 @@ function forEachAccumulated(arr, cb, scope) {
|
|
|
19448
19777
|
}
|
|
19449
19778
|
|
|
19450
19779
|
module.exports = forEachAccumulated;
|
|
19451
|
-
},{}],
|
|
19780
|
+
},{}],141:[function(_dereq_,module,exports){
|
|
19452
19781
|
/**
|
|
19453
19782
|
* Copyright 2013-present, Facebook, Inc.
|
|
19454
19783
|
* All rights reserved.
|
|
@@ -19499,7 +19828,7 @@ function getEventCharCode(nativeEvent) {
|
|
|
19499
19828
|
}
|
|
19500
19829
|
|
|
19501
19830
|
module.exports = getEventCharCode;
|
|
19502
|
-
},{}],
|
|
19831
|
+
},{}],142:[function(_dereq_,module,exports){
|
|
19503
19832
|
/**
|
|
19504
19833
|
* Copyright 2013-present, Facebook, Inc.
|
|
19505
19834
|
* All rights reserved.
|
|
@@ -19513,7 +19842,7 @@ module.exports = getEventCharCode;
|
|
|
19513
19842
|
|
|
19514
19843
|
'use strict';
|
|
19515
19844
|
|
|
19516
|
-
var getEventCharCode = _dereq_(
|
|
19845
|
+
var getEventCharCode = _dereq_(141);
|
|
19517
19846
|
|
|
19518
19847
|
/**
|
|
19519
19848
|
* Normalization of deprecated HTML5 `key` values
|
|
@@ -19602,7 +19931,7 @@ function getEventKey(nativeEvent) {
|
|
|
19602
19931
|
}
|
|
19603
19932
|
|
|
19604
19933
|
module.exports = getEventKey;
|
|
19605
|
-
},{"
|
|
19934
|
+
},{"141":141}],143:[function(_dereq_,module,exports){
|
|
19606
19935
|
/**
|
|
19607
19936
|
* Copyright 2013-present, Facebook, Inc.
|
|
19608
19937
|
* All rights reserved.
|
|
@@ -19646,7 +19975,7 @@ function getEventModifierState(nativeEvent) {
|
|
|
19646
19975
|
}
|
|
19647
19976
|
|
|
19648
19977
|
module.exports = getEventModifierState;
|
|
19649
|
-
},{}],
|
|
19978
|
+
},{}],144:[function(_dereq_,module,exports){
|
|
19650
19979
|
/**
|
|
19651
19980
|
* Copyright 2013-present, Facebook, Inc.
|
|
19652
19981
|
* All rights reserved.
|
|
@@ -19682,7 +20011,7 @@ function getEventTarget(nativeEvent) {
|
|
|
19682
20011
|
}
|
|
19683
20012
|
|
|
19684
20013
|
module.exports = getEventTarget;
|
|
19685
|
-
},{}],
|
|
20014
|
+
},{}],145:[function(_dereq_,module,exports){
|
|
19686
20015
|
/**
|
|
19687
20016
|
* Copyright 2013-present, Facebook, Inc.
|
|
19688
20017
|
* All rights reserved.
|
|
@@ -19696,7 +20025,7 @@ module.exports = getEventTarget;
|
|
|
19696
20025
|
|
|
19697
20026
|
'use strict';
|
|
19698
20027
|
|
|
19699
|
-
var ReactNodeTypes = _dereq_(
|
|
20028
|
+
var ReactNodeTypes = _dereq_(87);
|
|
19700
20029
|
|
|
19701
20030
|
function getHostComponentFromComposite(inst) {
|
|
19702
20031
|
var type;
|
|
@@ -19713,7 +20042,7 @@ function getHostComponentFromComposite(inst) {
|
|
|
19713
20042
|
}
|
|
19714
20043
|
|
|
19715
20044
|
module.exports = getHostComponentFromComposite;
|
|
19716
|
-
},{"
|
|
20045
|
+
},{"87":87}],146:[function(_dereq_,module,exports){
|
|
19717
20046
|
/**
|
|
19718
20047
|
* Copyright 2013-present, Facebook, Inc.
|
|
19719
20048
|
* All rights reserved.
|
|
@@ -19755,7 +20084,7 @@ function getIteratorFn(maybeIterable) {
|
|
|
19755
20084
|
}
|
|
19756
20085
|
|
|
19757
20086
|
module.exports = getIteratorFn;
|
|
19758
|
-
},{}],
|
|
20087
|
+
},{}],147:[function(_dereq_,module,exports){
|
|
19759
20088
|
/**
|
|
19760
20089
|
* Copyright 2013-present, Facebook, Inc.
|
|
19761
20090
|
* All rights reserved.
|
|
@@ -19830,7 +20159,7 @@ function getNodeForCharacterOffset(root, offset) {
|
|
|
19830
20159
|
}
|
|
19831
20160
|
|
|
19832
20161
|
module.exports = getNodeForCharacterOffset;
|
|
19833
|
-
},{}],
|
|
20162
|
+
},{}],148:[function(_dereq_,module,exports){
|
|
19834
20163
|
/**
|
|
19835
20164
|
* Copyright 2013-present, Facebook, Inc.
|
|
19836
20165
|
* All rights reserved.
|
|
@@ -19844,7 +20173,7 @@ module.exports = getNodeForCharacterOffset;
|
|
|
19844
20173
|
|
|
19845
20174
|
'use strict';
|
|
19846
20175
|
|
|
19847
|
-
var ExecutionEnvironment = _dereq_(
|
|
20176
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
19848
20177
|
|
|
19849
20178
|
var contentKey = null;
|
|
19850
20179
|
|
|
@@ -19864,7 +20193,7 @@ function getTextContentAccessor() {
|
|
|
19864
20193
|
}
|
|
19865
20194
|
|
|
19866
20195
|
module.exports = getTextContentAccessor;
|
|
19867
|
-
},{"
|
|
20196
|
+
},{"166":166}],149:[function(_dereq_,module,exports){
|
|
19868
20197
|
/**
|
|
19869
20198
|
* Copyright 2013-present, Facebook, Inc.
|
|
19870
20199
|
* All rights reserved.
|
|
@@ -19878,7 +20207,7 @@ module.exports = getTextContentAccessor;
|
|
|
19878
20207
|
|
|
19879
20208
|
'use strict';
|
|
19880
20209
|
|
|
19881
|
-
var ExecutionEnvironment = _dereq_(
|
|
20210
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
19882
20211
|
|
|
19883
20212
|
/**
|
|
19884
20213
|
* Generate a mapping of standard vendor prefixes using the defined style property and event name.
|
|
@@ -19966,7 +20295,7 @@ function getVendorPrefixedEventName(eventName) {
|
|
|
19966
20295
|
}
|
|
19967
20296
|
|
|
19968
20297
|
module.exports = getVendorPrefixedEventName;
|
|
19969
|
-
},{"
|
|
20298
|
+
},{"166":166}],150:[function(_dereq_,module,exports){
|
|
19970
20299
|
/**
|
|
19971
20300
|
* Copyright 2013-present, Facebook, Inc.
|
|
19972
20301
|
* All rights reserved.
|
|
@@ -19980,16 +20309,16 @@ module.exports = getVendorPrefixedEventName;
|
|
|
19980
20309
|
|
|
19981
20310
|
'use strict';
|
|
19982
20311
|
|
|
19983
|
-
var _prodInvariant = _dereq_(
|
|
19984
|
-
_assign = _dereq_(
|
|
20312
|
+
var _prodInvariant = _dereq_(155),
|
|
20313
|
+
_assign = _dereq_(191);
|
|
19985
20314
|
|
|
19986
|
-
var ReactCompositeComponent = _dereq_(
|
|
19987
|
-
var ReactEmptyComponent = _dereq_(
|
|
19988
|
-
var ReactHostComponent = _dereq_(
|
|
19989
|
-
var ReactInstrumentation = _dereq_(
|
|
20315
|
+
var ReactCompositeComponent = _dereq_(40);
|
|
20316
|
+
var ReactEmptyComponent = _dereq_(69);
|
|
20317
|
+
var ReactHostComponent = _dereq_(75);
|
|
20318
|
+
var ReactInstrumentation = _dereq_(80);
|
|
19990
20319
|
|
|
19991
|
-
var invariant = _dereq_(
|
|
19992
|
-
var warning = _dereq_(
|
|
20320
|
+
var invariant = _dereq_(180);
|
|
20321
|
+
var warning = _dereq_(190);
|
|
19993
20322
|
|
|
19994
20323
|
// To avoid a cyclic dependency, we create the final class in this module
|
|
19995
20324
|
var ReactCompositeComponentWrapper = function (element) {
|
|
@@ -20113,7 +20442,7 @@ function instantiateReactComponent(node, shouldHaveDebugID) {
|
|
|
20113
20442
|
}
|
|
20114
20443
|
|
|
20115
20444
|
module.exports = instantiateReactComponent;
|
|
20116
|
-
},{"
|
|
20445
|
+
},{"155":155,"180":180,"190":190,"191":191,"40":40,"69":69,"75":75,"80":80}],151:[function(_dereq_,module,exports){
|
|
20117
20446
|
/**
|
|
20118
20447
|
* Copyright 2013-present, Facebook, Inc.
|
|
20119
20448
|
* All rights reserved.
|
|
@@ -20127,7 +20456,7 @@ module.exports = instantiateReactComponent;
|
|
|
20127
20456
|
|
|
20128
20457
|
'use strict';
|
|
20129
20458
|
|
|
20130
|
-
var ExecutionEnvironment = _dereq_(
|
|
20459
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
20131
20460
|
|
|
20132
20461
|
var useHasFeature;
|
|
20133
20462
|
if (ExecutionEnvironment.canUseDOM) {
|
|
@@ -20174,7 +20503,7 @@ function isEventSupported(eventNameSuffix, capture) {
|
|
|
20174
20503
|
}
|
|
20175
20504
|
|
|
20176
20505
|
module.exports = isEventSupported;
|
|
20177
|
-
},{"
|
|
20506
|
+
},{"166":166}],152:[function(_dereq_,module,exports){
|
|
20178
20507
|
/**
|
|
20179
20508
|
* Copyright 2013-present, Facebook, Inc.
|
|
20180
20509
|
* All rights reserved.
|
|
@@ -20226,7 +20555,7 @@ function isTextInputElement(elem) {
|
|
|
20226
20555
|
}
|
|
20227
20556
|
|
|
20228
20557
|
module.exports = isTextInputElement;
|
|
20229
|
-
},{}],
|
|
20558
|
+
},{}],153:[function(_dereq_,module,exports){
|
|
20230
20559
|
/**
|
|
20231
20560
|
* Copyright 2013-present, Facebook, Inc.
|
|
20232
20561
|
* All rights reserved.
|
|
@@ -20239,11 +20568,11 @@ module.exports = isTextInputElement;
|
|
|
20239
20568
|
*/
|
|
20240
20569
|
'use strict';
|
|
20241
20570
|
|
|
20242
|
-
var _prodInvariant = _dereq_(
|
|
20571
|
+
var _prodInvariant = _dereq_(155);
|
|
20243
20572
|
|
|
20244
|
-
var ReactElement = _dereq_(
|
|
20573
|
+
var ReactElement = _dereq_(67);
|
|
20245
20574
|
|
|
20246
|
-
var invariant = _dereq_(
|
|
20575
|
+
var invariant = _dereq_(180);
|
|
20247
20576
|
|
|
20248
20577
|
/**
|
|
20249
20578
|
* Returns the first child in a collection of children and verifies that there
|
|
@@ -20265,7 +20594,7 @@ function onlyChild(children) {
|
|
|
20265
20594
|
}
|
|
20266
20595
|
|
|
20267
20596
|
module.exports = onlyChild;
|
|
20268
|
-
},{"
|
|
20597
|
+
},{"155":155,"180":180,"67":67}],154:[function(_dereq_,module,exports){
|
|
20269
20598
|
/**
|
|
20270
20599
|
* Copyright 2013-present, Facebook, Inc.
|
|
20271
20600
|
* All rights reserved.
|
|
@@ -20279,7 +20608,7 @@ module.exports = onlyChild;
|
|
|
20279
20608
|
|
|
20280
20609
|
'use strict';
|
|
20281
20610
|
|
|
20282
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
20611
|
+
var escapeTextContentForBrowser = _dereq_(137);
|
|
20283
20612
|
|
|
20284
20613
|
/**
|
|
20285
20614
|
* Escapes attribute value to prevent scripting attacks.
|
|
@@ -20292,7 +20621,7 @@ function quoteAttributeValueForBrowser(value) {
|
|
|
20292
20621
|
}
|
|
20293
20622
|
|
|
20294
20623
|
module.exports = quoteAttributeValueForBrowser;
|
|
20295
|
-
},{"
|
|
20624
|
+
},{"137":137}],155:[function(_dereq_,module,exports){
|
|
20296
20625
|
/**
|
|
20297
20626
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20298
20627
|
* All rights reserved.
|
|
@@ -20332,7 +20661,7 @@ function reactProdInvariant(code) {
|
|
|
20332
20661
|
}
|
|
20333
20662
|
|
|
20334
20663
|
module.exports = reactProdInvariant;
|
|
20335
|
-
},{}],
|
|
20664
|
+
},{}],156:[function(_dereq_,module,exports){
|
|
20336
20665
|
/**
|
|
20337
20666
|
* Copyright 2013-present, Facebook, Inc.
|
|
20338
20667
|
* All rights reserved.
|
|
@@ -20346,10 +20675,10 @@ module.exports = reactProdInvariant;
|
|
|
20346
20675
|
|
|
20347
20676
|
'use strict';
|
|
20348
20677
|
|
|
20349
|
-
var ReactMount = _dereq_(
|
|
20678
|
+
var ReactMount = _dereq_(84);
|
|
20350
20679
|
|
|
20351
20680
|
module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
20352
|
-
},{"
|
|
20681
|
+
},{"84":84}],157:[function(_dereq_,module,exports){
|
|
20353
20682
|
/**
|
|
20354
20683
|
* Copyright 2013-present, Facebook, Inc.
|
|
20355
20684
|
* All rights reserved.
|
|
@@ -20363,13 +20692,13 @@ module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
|
20363
20692
|
|
|
20364
20693
|
'use strict';
|
|
20365
20694
|
|
|
20366
|
-
var ExecutionEnvironment = _dereq_(
|
|
20695
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
20367
20696
|
var DOMNamespaces = _dereq_(9);
|
|
20368
20697
|
|
|
20369
20698
|
var WHITESPACE_TEST = /^[ \r\n\t\f]/;
|
|
20370
20699
|
var NONVISIBLE_TEST = /<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/;
|
|
20371
20700
|
|
|
20372
|
-
var createMicrosoftUnsafeLocalFunction = _dereq_(
|
|
20701
|
+
var createMicrosoftUnsafeLocalFunction = _dereq_(135);
|
|
20373
20702
|
|
|
20374
20703
|
// SVG temp container for IE lacking innerHTML
|
|
20375
20704
|
var reusableSVGContainer;
|
|
@@ -20448,7 +20777,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
20448
20777
|
}
|
|
20449
20778
|
|
|
20450
20779
|
module.exports = setInnerHTML;
|
|
20451
|
-
},{"
|
|
20780
|
+
},{"135":135,"166":166,"9":9}],158:[function(_dereq_,module,exports){
|
|
20452
20781
|
/**
|
|
20453
20782
|
* Copyright 2013-present, Facebook, Inc.
|
|
20454
20783
|
* All rights reserved.
|
|
@@ -20462,9 +20791,9 @@ module.exports = setInnerHTML;
|
|
|
20462
20791
|
|
|
20463
20792
|
'use strict';
|
|
20464
20793
|
|
|
20465
|
-
var ExecutionEnvironment = _dereq_(
|
|
20466
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
20467
|
-
var setInnerHTML = _dereq_(
|
|
20794
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
20795
|
+
var escapeTextContentForBrowser = _dereq_(137);
|
|
20796
|
+
var setInnerHTML = _dereq_(157);
|
|
20468
20797
|
|
|
20469
20798
|
/**
|
|
20470
20799
|
* Set the textContent property of a node, ensuring that whitespace is preserved
|
|
@@ -20497,7 +20826,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
20497
20826
|
}
|
|
20498
20827
|
|
|
20499
20828
|
module.exports = setTextContent;
|
|
20500
|
-
},{"
|
|
20829
|
+
},{"137":137,"157":157,"166":166}],159:[function(_dereq_,module,exports){
|
|
20501
20830
|
/**
|
|
20502
20831
|
* Copyright 2013-present, Facebook, Inc.
|
|
20503
20832
|
* All rights reserved.
|
|
@@ -20511,7 +20840,7 @@ module.exports = setTextContent;
|
|
|
20511
20840
|
|
|
20512
20841
|
'use strict';
|
|
20513
20842
|
|
|
20514
|
-
var shallowEqual = _dereq_(
|
|
20843
|
+
var shallowEqual = _dereq_(189);
|
|
20515
20844
|
|
|
20516
20845
|
/**
|
|
20517
20846
|
* Does a shallow comparison for props and state.
|
|
@@ -20523,7 +20852,7 @@ function shallowCompare(instance, nextProps, nextState) {
|
|
|
20523
20852
|
}
|
|
20524
20853
|
|
|
20525
20854
|
module.exports = shallowCompare;
|
|
20526
|
-
},{"
|
|
20855
|
+
},{"189":189}],160:[function(_dereq_,module,exports){
|
|
20527
20856
|
/**
|
|
20528
20857
|
* Copyright 2013-present, Facebook, Inc.
|
|
20529
20858
|
* All rights reserved.
|
|
@@ -20566,7 +20895,7 @@ function shouldUpdateReactComponent(prevElement, nextElement) {
|
|
|
20566
20895
|
}
|
|
20567
20896
|
|
|
20568
20897
|
module.exports = shouldUpdateReactComponent;
|
|
20569
|
-
},{}],
|
|
20898
|
+
},{}],161:[function(_dereq_,module,exports){
|
|
20570
20899
|
/**
|
|
20571
20900
|
* Copyright 2013-present, Facebook, Inc.
|
|
20572
20901
|
* All rights reserved.
|
|
@@ -20580,15 +20909,15 @@ module.exports = shouldUpdateReactComponent;
|
|
|
20580
20909
|
|
|
20581
20910
|
'use strict';
|
|
20582
20911
|
|
|
20583
|
-
var _prodInvariant = _dereq_(
|
|
20912
|
+
var _prodInvariant = _dereq_(155);
|
|
20584
20913
|
|
|
20585
|
-
var ReactCurrentOwner = _dereq_(
|
|
20586
|
-
var ReactElement = _dereq_(
|
|
20914
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
20915
|
+
var ReactElement = _dereq_(67);
|
|
20587
20916
|
|
|
20588
|
-
var getIteratorFn = _dereq_(
|
|
20589
|
-
var invariant = _dereq_(
|
|
20917
|
+
var getIteratorFn = _dereq_(146);
|
|
20918
|
+
var invariant = _dereq_(180);
|
|
20590
20919
|
var KeyEscapeUtils = _dereq_(23);
|
|
20591
|
-
var warning = _dereq_(
|
|
20920
|
+
var warning = _dereq_(190);
|
|
20592
20921
|
|
|
20593
20922
|
var SEPARATOR = '.';
|
|
20594
20923
|
var SUBSEPARATOR = ':';
|
|
@@ -20667,7 +20996,14 @@ function traverseAllChildrenImpl(children, nameSoFar, callback, traverseContext)
|
|
|
20667
20996
|
}
|
|
20668
20997
|
} else {
|
|
20669
20998
|
if ("development" !== 'production') {
|
|
20670
|
-
|
|
20999
|
+
var mapsAsChildrenAddendum = '';
|
|
21000
|
+
if (ReactCurrentOwner.current) {
|
|
21001
|
+
var mapsAsChildrenOwnerName = ReactCurrentOwner.current.getName();
|
|
21002
|
+
if (mapsAsChildrenOwnerName) {
|
|
21003
|
+
mapsAsChildrenAddendum = ' Check the render method of `' + mapsAsChildrenOwnerName + '`.';
|
|
21004
|
+
}
|
|
21005
|
+
}
|
|
21006
|
+
"development" !== 'production' ? warning(didWarnAboutMaps, 'Using Maps as children is not yet fully supported. It is an ' + 'experimental feature that might be removed. Convert it to a ' + 'sequence / iterable of keyed ReactElements instead.%s', mapsAsChildrenAddendum) : void 0;
|
|
20671
21007
|
didWarnAboutMaps = true;
|
|
20672
21008
|
}
|
|
20673
21009
|
// Iterator will provide entry [k,v] tuples rather than values.
|
|
@@ -20727,7 +21063,7 @@ function traverseAllChildren(children, callback, traverseContext) {
|
|
|
20727
21063
|
}
|
|
20728
21064
|
|
|
20729
21065
|
module.exports = traverseAllChildren;
|
|
20730
|
-
},{"
|
|
21066
|
+
},{"146":146,"155":155,"180":180,"190":190,"23":23,"41":41,"67":67}],162:[function(_dereq_,module,exports){
|
|
20731
21067
|
/**
|
|
20732
21068
|
* Copyright 2013-present, Facebook, Inc.
|
|
20733
21069
|
* All rights reserved.
|
|
@@ -20743,11 +21079,11 @@ module.exports = traverseAllChildren;
|
|
|
20743
21079
|
|
|
20744
21080
|
'use strict';
|
|
20745
21081
|
|
|
20746
|
-
var _prodInvariant = _dereq_(
|
|
20747
|
-
_assign = _dereq_(
|
|
21082
|
+
var _prodInvariant = _dereq_(155),
|
|
21083
|
+
_assign = _dereq_(191);
|
|
20748
21084
|
|
|
20749
|
-
var keyOf = _dereq_(
|
|
20750
|
-
var invariant = _dereq_(
|
|
21085
|
+
var keyOf = _dereq_(184);
|
|
21086
|
+
var invariant = _dereq_(180);
|
|
20751
21087
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
20752
21088
|
|
|
20753
21089
|
function shallowCopy(x) {
|
|
@@ -20841,7 +21177,7 @@ function update(value, spec) {
|
|
|
20841
21177
|
}
|
|
20842
21178
|
|
|
20843
21179
|
module.exports = update;
|
|
20844
|
-
},{"
|
|
21180
|
+
},{"155":155,"180":180,"184":184,"191":191}],163:[function(_dereq_,module,exports){
|
|
20845
21181
|
/**
|
|
20846
21182
|
* Copyright 2015-present, Facebook, Inc.
|
|
20847
21183
|
* All rights reserved.
|
|
@@ -20855,10 +21191,10 @@ module.exports = update;
|
|
|
20855
21191
|
|
|
20856
21192
|
'use strict';
|
|
20857
21193
|
|
|
20858
|
-
var _assign = _dereq_(
|
|
21194
|
+
var _assign = _dereq_(191);
|
|
20859
21195
|
|
|
20860
|
-
var emptyFunction = _dereq_(
|
|
20861
|
-
var warning = _dereq_(
|
|
21196
|
+
var emptyFunction = _dereq_(172);
|
|
21197
|
+
var warning = _dereq_(190);
|
|
20862
21198
|
|
|
20863
21199
|
var validateDOMNesting = emptyFunction;
|
|
20864
21200
|
|
|
@@ -21211,7 +21547,7 @@ if ("development" !== 'production') {
|
|
|
21211
21547
|
}
|
|
21212
21548
|
|
|
21213
21549
|
module.exports = validateDOMNesting;
|
|
21214
|
-
},{"
|
|
21550
|
+
},{"172":172,"190":190,"191":191}],164:[function(_dereq_,module,exports){
|
|
21215
21551
|
'use strict';
|
|
21216
21552
|
|
|
21217
21553
|
/**
|
|
@@ -21225,7 +21561,7 @@ module.exports = validateDOMNesting;
|
|
|
21225
21561
|
* @typechecks
|
|
21226
21562
|
*/
|
|
21227
21563
|
|
|
21228
|
-
var invariant = _dereq_(
|
|
21564
|
+
var invariant = _dereq_(180);
|
|
21229
21565
|
|
|
21230
21566
|
/**
|
|
21231
21567
|
* The CSSCore module specifies the API (and implements most of the methods)
|
|
@@ -21333,7 +21669,7 @@ var CSSCore = {
|
|
|
21333
21669
|
};
|
|
21334
21670
|
|
|
21335
21671
|
module.exports = CSSCore;
|
|
21336
|
-
},{"
|
|
21672
|
+
},{"180":180}],165:[function(_dereq_,module,exports){
|
|
21337
21673
|
'use strict';
|
|
21338
21674
|
|
|
21339
21675
|
/**
|
|
@@ -21354,7 +21690,7 @@ module.exports = CSSCore;
|
|
|
21354
21690
|
* @typechecks
|
|
21355
21691
|
*/
|
|
21356
21692
|
|
|
21357
|
-
var emptyFunction = _dereq_(
|
|
21693
|
+
var emptyFunction = _dereq_(172);
|
|
21358
21694
|
|
|
21359
21695
|
/**
|
|
21360
21696
|
* Upstream version of event listener. Does not take into account specific
|
|
@@ -21417,7 +21753,7 @@ var EventListener = {
|
|
|
21417
21753
|
};
|
|
21418
21754
|
|
|
21419
21755
|
module.exports = EventListener;
|
|
21420
|
-
},{"
|
|
21756
|
+
},{"172":172}],166:[function(_dereq_,module,exports){
|
|
21421
21757
|
/**
|
|
21422
21758
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
21423
21759
|
* All rights reserved.
|
|
@@ -21453,7 +21789,7 @@ var ExecutionEnvironment = {
|
|
|
21453
21789
|
};
|
|
21454
21790
|
|
|
21455
21791
|
module.exports = ExecutionEnvironment;
|
|
21456
|
-
},{}],
|
|
21792
|
+
},{}],167:[function(_dereq_,module,exports){
|
|
21457
21793
|
"use strict";
|
|
21458
21794
|
|
|
21459
21795
|
/**
|
|
@@ -21485,7 +21821,7 @@ function camelize(string) {
|
|
|
21485
21821
|
}
|
|
21486
21822
|
|
|
21487
21823
|
module.exports = camelize;
|
|
21488
|
-
},{}],
|
|
21824
|
+
},{}],168:[function(_dereq_,module,exports){
|
|
21489
21825
|
/**
|
|
21490
21826
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
21491
21827
|
* All rights reserved.
|
|
@@ -21499,7 +21835,7 @@ module.exports = camelize;
|
|
|
21499
21835
|
|
|
21500
21836
|
'use strict';
|
|
21501
21837
|
|
|
21502
|
-
var camelize = _dereq_(
|
|
21838
|
+
var camelize = _dereq_(167);
|
|
21503
21839
|
|
|
21504
21840
|
var msPattern = /^-ms-/;
|
|
21505
21841
|
|
|
@@ -21525,7 +21861,7 @@ function camelizeStyleName(string) {
|
|
|
21525
21861
|
}
|
|
21526
21862
|
|
|
21527
21863
|
module.exports = camelizeStyleName;
|
|
21528
|
-
},{"
|
|
21864
|
+
},{"167":167}],169:[function(_dereq_,module,exports){
|
|
21529
21865
|
'use strict';
|
|
21530
21866
|
|
|
21531
21867
|
/**
|
|
@@ -21539,7 +21875,7 @@ module.exports = camelizeStyleName;
|
|
|
21539
21875
|
*
|
|
21540
21876
|
*/
|
|
21541
21877
|
|
|
21542
|
-
var isTextNode = _dereq_(
|
|
21878
|
+
var isTextNode = _dereq_(182);
|
|
21543
21879
|
|
|
21544
21880
|
/*eslint-disable no-bitwise */
|
|
21545
21881
|
|
|
@@ -21565,7 +21901,7 @@ function containsNode(outerNode, innerNode) {
|
|
|
21565
21901
|
}
|
|
21566
21902
|
|
|
21567
21903
|
module.exports = containsNode;
|
|
21568
|
-
},{"
|
|
21904
|
+
},{"182":182}],170:[function(_dereq_,module,exports){
|
|
21569
21905
|
'use strict';
|
|
21570
21906
|
|
|
21571
21907
|
/**
|
|
@@ -21579,7 +21915,7 @@ module.exports = containsNode;
|
|
|
21579
21915
|
* @typechecks
|
|
21580
21916
|
*/
|
|
21581
21917
|
|
|
21582
|
-
var invariant = _dereq_(
|
|
21918
|
+
var invariant = _dereq_(180);
|
|
21583
21919
|
|
|
21584
21920
|
/**
|
|
21585
21921
|
* Convert array-like objects to arrays.
|
|
@@ -21692,7 +22028,7 @@ function createArrayFromMixed(obj) {
|
|
|
21692
22028
|
}
|
|
21693
22029
|
|
|
21694
22030
|
module.exports = createArrayFromMixed;
|
|
21695
|
-
},{"
|
|
22031
|
+
},{"180":180}],171:[function(_dereq_,module,exports){
|
|
21696
22032
|
'use strict';
|
|
21697
22033
|
|
|
21698
22034
|
/**
|
|
@@ -21708,11 +22044,11 @@ module.exports = createArrayFromMixed;
|
|
|
21708
22044
|
|
|
21709
22045
|
/*eslint-disable fb-www/unsafe-html*/
|
|
21710
22046
|
|
|
21711
|
-
var ExecutionEnvironment = _dereq_(
|
|
22047
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
21712
22048
|
|
|
21713
|
-
var createArrayFromMixed = _dereq_(
|
|
21714
|
-
var getMarkupWrap = _dereq_(
|
|
21715
|
-
var invariant = _dereq_(
|
|
22049
|
+
var createArrayFromMixed = _dereq_(170);
|
|
22050
|
+
var getMarkupWrap = _dereq_(176);
|
|
22051
|
+
var invariant = _dereq_(180);
|
|
21716
22052
|
|
|
21717
22053
|
/**
|
|
21718
22054
|
* Dummy container used to render all markup.
|
|
@@ -21776,7 +22112,7 @@ function createNodesFromMarkup(markup, handleScript) {
|
|
|
21776
22112
|
}
|
|
21777
22113
|
|
|
21778
22114
|
module.exports = createNodesFromMarkup;
|
|
21779
|
-
},{"
|
|
22115
|
+
},{"166":166,"170":170,"176":176,"180":180}],172:[function(_dereq_,module,exports){
|
|
21780
22116
|
"use strict";
|
|
21781
22117
|
|
|
21782
22118
|
/**
|
|
@@ -21815,7 +22151,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
|
|
|
21815
22151
|
};
|
|
21816
22152
|
|
|
21817
22153
|
module.exports = emptyFunction;
|
|
21818
|
-
},{}],
|
|
22154
|
+
},{}],173:[function(_dereq_,module,exports){
|
|
21819
22155
|
/**
|
|
21820
22156
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
21821
22157
|
* All rights reserved.
|
|
@@ -21835,7 +22171,7 @@ if ("development" !== 'production') {
|
|
|
21835
22171
|
}
|
|
21836
22172
|
|
|
21837
22173
|
module.exports = emptyObject;
|
|
21838
|
-
},{}],
|
|
22174
|
+
},{}],174:[function(_dereq_,module,exports){
|
|
21839
22175
|
/**
|
|
21840
22176
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
21841
22177
|
* All rights reserved.
|
|
@@ -21862,7 +22198,7 @@ function focusNode(node) {
|
|
|
21862
22198
|
}
|
|
21863
22199
|
|
|
21864
22200
|
module.exports = focusNode;
|
|
21865
|
-
},{}],
|
|
22201
|
+
},{}],175:[function(_dereq_,module,exports){
|
|
21866
22202
|
'use strict';
|
|
21867
22203
|
|
|
21868
22204
|
/**
|
|
@@ -21897,7 +22233,7 @@ function getActiveElement() /*?DOMElement*/{
|
|
|
21897
22233
|
}
|
|
21898
22234
|
|
|
21899
22235
|
module.exports = getActiveElement;
|
|
21900
|
-
},{}],
|
|
22236
|
+
},{}],176:[function(_dereq_,module,exports){
|
|
21901
22237
|
'use strict';
|
|
21902
22238
|
|
|
21903
22239
|
/**
|
|
@@ -21912,9 +22248,9 @@ module.exports = getActiveElement;
|
|
|
21912
22248
|
|
|
21913
22249
|
/*eslint-disable fb-www/unsafe-html */
|
|
21914
22250
|
|
|
21915
|
-
var ExecutionEnvironment = _dereq_(
|
|
22251
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
21916
22252
|
|
|
21917
|
-
var invariant = _dereq_(
|
|
22253
|
+
var invariant = _dereq_(180);
|
|
21918
22254
|
|
|
21919
22255
|
/**
|
|
21920
22256
|
* Dummy container used to detect which wraps are necessary.
|
|
@@ -21992,7 +22328,7 @@ function getMarkupWrap(nodeName) {
|
|
|
21992
22328
|
}
|
|
21993
22329
|
|
|
21994
22330
|
module.exports = getMarkupWrap;
|
|
21995
|
-
},{"
|
|
22331
|
+
},{"166":166,"180":180}],177:[function(_dereq_,module,exports){
|
|
21996
22332
|
/**
|
|
21997
22333
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
21998
22334
|
* All rights reserved.
|
|
@@ -22031,7 +22367,7 @@ function getUnboundedScrollPosition(scrollable) {
|
|
|
22031
22367
|
}
|
|
22032
22368
|
|
|
22033
22369
|
module.exports = getUnboundedScrollPosition;
|
|
22034
|
-
},{}],
|
|
22370
|
+
},{}],178:[function(_dereq_,module,exports){
|
|
22035
22371
|
'use strict';
|
|
22036
22372
|
|
|
22037
22373
|
/**
|
|
@@ -22064,7 +22400,7 @@ function hyphenate(string) {
|
|
|
22064
22400
|
}
|
|
22065
22401
|
|
|
22066
22402
|
module.exports = hyphenate;
|
|
22067
|
-
},{}],
|
|
22403
|
+
},{}],179:[function(_dereq_,module,exports){
|
|
22068
22404
|
/**
|
|
22069
22405
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22070
22406
|
* All rights reserved.
|
|
@@ -22078,7 +22414,7 @@ module.exports = hyphenate;
|
|
|
22078
22414
|
|
|
22079
22415
|
'use strict';
|
|
22080
22416
|
|
|
22081
|
-
var hyphenate = _dereq_(
|
|
22417
|
+
var hyphenate = _dereq_(178);
|
|
22082
22418
|
|
|
22083
22419
|
var msPattern = /^ms-/;
|
|
22084
22420
|
|
|
@@ -22103,7 +22439,7 @@ function hyphenateStyleName(string) {
|
|
|
22103
22439
|
}
|
|
22104
22440
|
|
|
22105
22441
|
module.exports = hyphenateStyleName;
|
|
22106
|
-
},{"
|
|
22442
|
+
},{"178":178}],180:[function(_dereq_,module,exports){
|
|
22107
22443
|
/**
|
|
22108
22444
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22109
22445
|
* All rights reserved.
|
|
@@ -22153,7 +22489,7 @@ function invariant(condition, format, a, b, c, d, e, f) {
|
|
|
22153
22489
|
}
|
|
22154
22490
|
|
|
22155
22491
|
module.exports = invariant;
|
|
22156
|
-
},{}],
|
|
22492
|
+
},{}],181:[function(_dereq_,module,exports){
|
|
22157
22493
|
'use strict';
|
|
22158
22494
|
|
|
22159
22495
|
/**
|
|
@@ -22176,7 +22512,7 @@ function isNode(object) {
|
|
|
22176
22512
|
}
|
|
22177
22513
|
|
|
22178
22514
|
module.exports = isNode;
|
|
22179
|
-
},{}],
|
|
22515
|
+
},{}],182:[function(_dereq_,module,exports){
|
|
22180
22516
|
'use strict';
|
|
22181
22517
|
|
|
22182
22518
|
/**
|
|
@@ -22190,7 +22526,7 @@ module.exports = isNode;
|
|
|
22190
22526
|
* @typechecks
|
|
22191
22527
|
*/
|
|
22192
22528
|
|
|
22193
|
-
var isNode = _dereq_(
|
|
22529
|
+
var isNode = _dereq_(181);
|
|
22194
22530
|
|
|
22195
22531
|
/**
|
|
22196
22532
|
* @param {*} object The object to check.
|
|
@@ -22201,7 +22537,7 @@ function isTextNode(object) {
|
|
|
22201
22537
|
}
|
|
22202
22538
|
|
|
22203
22539
|
module.exports = isTextNode;
|
|
22204
|
-
},{"
|
|
22540
|
+
},{"181":181}],183:[function(_dereq_,module,exports){
|
|
22205
22541
|
/**
|
|
22206
22542
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22207
22543
|
* All rights reserved.
|
|
@@ -22215,7 +22551,7 @@ module.exports = isTextNode;
|
|
|
22215
22551
|
|
|
22216
22552
|
'use strict';
|
|
22217
22553
|
|
|
22218
|
-
var invariant = _dereq_(
|
|
22554
|
+
var invariant = _dereq_(180);
|
|
22219
22555
|
|
|
22220
22556
|
/**
|
|
22221
22557
|
* Constructs an enumeration with keys equal to their value.
|
|
@@ -22249,7 +22585,7 @@ var keyMirror = function keyMirror(obj) {
|
|
|
22249
22585
|
};
|
|
22250
22586
|
|
|
22251
22587
|
module.exports = keyMirror;
|
|
22252
|
-
},{"
|
|
22588
|
+
},{"180":180}],184:[function(_dereq_,module,exports){
|
|
22253
22589
|
"use strict";
|
|
22254
22590
|
|
|
22255
22591
|
/**
|
|
@@ -22284,7 +22620,7 @@ var keyOf = function keyOf(oneKeyObj) {
|
|
|
22284
22620
|
};
|
|
22285
22621
|
|
|
22286
22622
|
module.exports = keyOf;
|
|
22287
|
-
},{}],
|
|
22623
|
+
},{}],185:[function(_dereq_,module,exports){
|
|
22288
22624
|
/**
|
|
22289
22625
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22290
22626
|
* All rights reserved.
|
|
@@ -22335,7 +22671,7 @@ function mapObject(object, callback, context) {
|
|
|
22335
22671
|
}
|
|
22336
22672
|
|
|
22337
22673
|
module.exports = mapObject;
|
|
22338
|
-
},{}],
|
|
22674
|
+
},{}],186:[function(_dereq_,module,exports){
|
|
22339
22675
|
/**
|
|
22340
22676
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22341
22677
|
* All rights reserved.
|
|
@@ -22365,7 +22701,7 @@ function memoizeStringOnly(callback) {
|
|
|
22365
22701
|
}
|
|
22366
22702
|
|
|
22367
22703
|
module.exports = memoizeStringOnly;
|
|
22368
|
-
},{}],
|
|
22704
|
+
},{}],187:[function(_dereq_,module,exports){
|
|
22369
22705
|
/**
|
|
22370
22706
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22371
22707
|
* All rights reserved.
|
|
@@ -22379,7 +22715,7 @@ module.exports = memoizeStringOnly;
|
|
|
22379
22715
|
|
|
22380
22716
|
'use strict';
|
|
22381
22717
|
|
|
22382
|
-
var ExecutionEnvironment = _dereq_(
|
|
22718
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
22383
22719
|
|
|
22384
22720
|
var performance;
|
|
22385
22721
|
|
|
@@ -22388,7 +22724,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
22388
22724
|
}
|
|
22389
22725
|
|
|
22390
22726
|
module.exports = performance || {};
|
|
22391
|
-
},{"
|
|
22727
|
+
},{"166":166}],188:[function(_dereq_,module,exports){
|
|
22392
22728
|
'use strict';
|
|
22393
22729
|
|
|
22394
22730
|
/**
|
|
@@ -22402,7 +22738,7 @@ module.exports = performance || {};
|
|
|
22402
22738
|
* @typechecks
|
|
22403
22739
|
*/
|
|
22404
22740
|
|
|
22405
|
-
var performance = _dereq_(
|
|
22741
|
+
var performance = _dereq_(187);
|
|
22406
22742
|
|
|
22407
22743
|
var performanceNow;
|
|
22408
22744
|
|
|
@@ -22422,7 +22758,7 @@ if (performance.now) {
|
|
|
22422
22758
|
}
|
|
22423
22759
|
|
|
22424
22760
|
module.exports = performanceNow;
|
|
22425
|
-
},{"
|
|
22761
|
+
},{"187":187}],189:[function(_dereq_,module,exports){
|
|
22426
22762
|
/**
|
|
22427
22763
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22428
22764
|
* All rights reserved.
|
|
@@ -22489,7 +22825,7 @@ function shallowEqual(objA, objB) {
|
|
|
22489
22825
|
}
|
|
22490
22826
|
|
|
22491
22827
|
module.exports = shallowEqual;
|
|
22492
|
-
},{}],
|
|
22828
|
+
},{}],190:[function(_dereq_,module,exports){
|
|
22493
22829
|
/**
|
|
22494
22830
|
* Copyright 2014-2015, Facebook, Inc.
|
|
22495
22831
|
* All rights reserved.
|
|
@@ -22502,7 +22838,7 @@ module.exports = shallowEqual;
|
|
|
22502
22838
|
|
|
22503
22839
|
'use strict';
|
|
22504
22840
|
|
|
22505
|
-
var emptyFunction = _dereq_(
|
|
22841
|
+
var emptyFunction = _dereq_(172);
|
|
22506
22842
|
|
|
22507
22843
|
/**
|
|
22508
22844
|
* Similar to invariant but only logs a warning if the condition is not met.
|
|
@@ -22546,7 +22882,7 @@ if ("development" !== 'production') {
|
|
|
22546
22882
|
}
|
|
22547
22883
|
|
|
22548
22884
|
module.exports = warning;
|
|
22549
|
-
},{"
|
|
22885
|
+
},{"172":172}],191:[function(_dereq_,module,exports){
|
|
22550
22886
|
'use strict';
|
|
22551
22887
|
/* eslint-disable no-unused-vars */
|
|
22552
22888
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -22631,5 +22967,5 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
|
22631
22967
|
return to;
|
|
22632
22968
|
};
|
|
22633
22969
|
|
|
22634
|
-
},{}]},{},[
|
|
22970
|
+
},{}]},{},[112])(112)
|
|
22635
22971
|
});
|