react 15.2.1 → 15.3.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react-with-addons.js +1058 -791
- package/dist/react-with-addons.min.js +6 -6
- package/dist/react.js +987 -722
- package/dist/react.min.js +6 -6
- package/lib/EventPluginHub.js +14 -6
- package/lib/LinkedValueUtils.js +2 -1
- package/lib/NativeMethodsMixin.js +1 -1
- package/lib/React.js +2 -0
- package/lib/ReactChildReconciler.js +5 -1
- package/lib/ReactChildrenMutationWarningDevtool.js +62 -0
- package/lib/ReactClass.js +7 -0
- package/lib/ReactCompositeComponent.js +76 -25
- package/lib/ReactDOMComponent.js +22 -0
- package/lib/ReactDebugTool.js +10 -0
- package/lib/ReactElement.js +8 -0
- package/lib/ReactMultiChild.js +11 -8
- package/lib/ReactPropTypes.js +24 -12
- 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/ReactTestMount.js +28 -15
- package/lib/ReactTestRenderer.js +11 -0
- package/lib/ReactTestUtils.js +2 -0
- package/lib/ReactVersion.js +1 -1
- package/lib/SVGDOMPropertyConfig.js +2 -0
- package/lib/SimpleEventPlugin.js +10 -6
- package/lib/checkReactTypeSpec.js +2 -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-rc.1
|
|
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.
|
|
@@ -3543,8 +3551,8 @@ module.exports = KeyEscapeUtils;
|
|
|
3543
3551
|
|
|
3544
3552
|
'use strict';
|
|
3545
3553
|
|
|
3546
|
-
var ReactLink = _dereq_(
|
|
3547
|
-
var ReactStateSetters = _dereq_(
|
|
3554
|
+
var ReactLink = _dereq_(82);
|
|
3555
|
+
var ReactStateSetters = _dereq_(103);
|
|
3548
3556
|
|
|
3549
3557
|
/**
|
|
3550
3558
|
* A simple mixin around ReactLink.forState().
|
|
@@ -3566,7 +3574,7 @@ var LinkedStateMixin = {
|
|
|
3566
3574
|
};
|
|
3567
3575
|
|
|
3568
3576
|
module.exports = LinkedStateMixin;
|
|
3569
|
-
},{"
|
|
3577
|
+
},{"103":103,"82":82}],25:[function(_dereq_,module,exports){
|
|
3570
3578
|
/**
|
|
3571
3579
|
* Copyright 2013-present, Facebook, Inc.
|
|
3572
3580
|
* All rights reserved.
|
|
@@ -3580,13 +3588,14 @@ module.exports = LinkedStateMixin;
|
|
|
3580
3588
|
|
|
3581
3589
|
'use strict';
|
|
3582
3590
|
|
|
3583
|
-
var _prodInvariant = _dereq_(
|
|
3591
|
+
var _prodInvariant = _dereq_(155);
|
|
3584
3592
|
|
|
3585
|
-
var ReactPropTypes = _dereq_(
|
|
3586
|
-
var ReactPropTypeLocations = _dereq_(
|
|
3593
|
+
var ReactPropTypes = _dereq_(93);
|
|
3594
|
+
var ReactPropTypeLocations = _dereq_(92);
|
|
3595
|
+
var ReactPropTypesSecret = _dereq_(94);
|
|
3587
3596
|
|
|
3588
|
-
var invariant = _dereq_(
|
|
3589
|
-
var warning = _dereq_(
|
|
3597
|
+
var invariant = _dereq_(180);
|
|
3598
|
+
var warning = _dereq_(190);
|
|
3590
3599
|
|
|
3591
3600
|
var hasReadOnlyValue = {
|
|
3592
3601
|
'button': true,
|
|
@@ -3646,7 +3655,7 @@ var LinkedValueUtils = {
|
|
|
3646
3655
|
checkPropTypes: function (tagName, props, owner) {
|
|
3647
3656
|
for (var propName in propTypes) {
|
|
3648
3657
|
if (propTypes.hasOwnProperty(propName)) {
|
|
3649
|
-
var error = propTypes[propName](props, propName, tagName, ReactPropTypeLocations.prop);
|
|
3658
|
+
var error = propTypes[propName](props, propName, tagName, ReactPropTypeLocations.prop, null, ReactPropTypesSecret);
|
|
3650
3659
|
}
|
|
3651
3660
|
if (error instanceof Error && !(error.message in loggedTypeFailures)) {
|
|
3652
3661
|
// Only monitor this failure once because there tends to be a lot of the
|
|
@@ -3702,7 +3711,7 @@ var LinkedValueUtils = {
|
|
|
3702
3711
|
};
|
|
3703
3712
|
|
|
3704
3713
|
module.exports = LinkedValueUtils;
|
|
3705
|
-
},{"
|
|
3714
|
+
},{"155":155,"180":180,"190":190,"92":92,"93":93,"94":94}],26:[function(_dereq_,module,exports){
|
|
3706
3715
|
/**
|
|
3707
3716
|
* Copyright 2013-present, Facebook, Inc.
|
|
3708
3717
|
* All rights reserved.
|
|
@@ -3716,9 +3725,9 @@ module.exports = LinkedValueUtils;
|
|
|
3716
3725
|
|
|
3717
3726
|
'use strict';
|
|
3718
3727
|
|
|
3719
|
-
var _prodInvariant = _dereq_(
|
|
3728
|
+
var _prodInvariant = _dereq_(155);
|
|
3720
3729
|
|
|
3721
|
-
var invariant = _dereq_(
|
|
3730
|
+
var invariant = _dereq_(180);
|
|
3722
3731
|
|
|
3723
3732
|
/**
|
|
3724
3733
|
* Static poolers. Several custom versions for each potential number of
|
|
@@ -3824,7 +3833,7 @@ var PooledClass = {
|
|
|
3824
3833
|
};
|
|
3825
3834
|
|
|
3826
3835
|
module.exports = PooledClass;
|
|
3827
|
-
},{"
|
|
3836
|
+
},{"155":155,"180":180}],27:[function(_dereq_,module,exports){
|
|
3828
3837
|
/**
|
|
3829
3838
|
* Copyright 2013-present, Facebook, Inc.
|
|
3830
3839
|
* All rights reserved.
|
|
@@ -3838,25 +3847,26 @@ module.exports = PooledClass;
|
|
|
3838
3847
|
|
|
3839
3848
|
'use strict';
|
|
3840
3849
|
|
|
3841
|
-
var _assign = _dereq_(
|
|
3850
|
+
var _assign = _dereq_(191);
|
|
3842
3851
|
|
|
3843
3852
|
var ReactChildren = _dereq_(32);
|
|
3844
|
-
var ReactComponent = _dereq_(
|
|
3845
|
-
var
|
|
3846
|
-
var
|
|
3847
|
-
var
|
|
3848
|
-
var
|
|
3849
|
-
var
|
|
3853
|
+
var ReactComponent = _dereq_(35);
|
|
3854
|
+
var ReactPureComponent = _dereq_(95);
|
|
3855
|
+
var ReactClass = _dereq_(34);
|
|
3856
|
+
var ReactDOMFactories = _dereq_(50);
|
|
3857
|
+
var ReactElement = _dereq_(67);
|
|
3858
|
+
var ReactPropTypes = _dereq_(93);
|
|
3859
|
+
var ReactVersion = _dereq_(110);
|
|
3850
3860
|
|
|
3851
|
-
var onlyChild = _dereq_(
|
|
3852
|
-
var warning = _dereq_(
|
|
3861
|
+
var onlyChild = _dereq_(153);
|
|
3862
|
+
var warning = _dereq_(190);
|
|
3853
3863
|
|
|
3854
3864
|
var createElement = ReactElement.createElement;
|
|
3855
3865
|
var createFactory = ReactElement.createFactory;
|
|
3856
3866
|
var cloneElement = ReactElement.cloneElement;
|
|
3857
3867
|
|
|
3858
3868
|
if ("development" !== 'production') {
|
|
3859
|
-
var ReactElementValidator = _dereq_(
|
|
3869
|
+
var ReactElementValidator = _dereq_(68);
|
|
3860
3870
|
createElement = ReactElementValidator.createElement;
|
|
3861
3871
|
createFactory = ReactElementValidator.createFactory;
|
|
3862
3872
|
cloneElement = ReactElementValidator.cloneElement;
|
|
@@ -3886,6 +3896,7 @@ var React = {
|
|
|
3886
3896
|
},
|
|
3887
3897
|
|
|
3888
3898
|
Component: ReactComponent,
|
|
3899
|
+
PureComponent: ReactPureComponent,
|
|
3889
3900
|
|
|
3890
3901
|
createElement: createElement,
|
|
3891
3902
|
cloneElement: cloneElement,
|
|
@@ -3912,7 +3923,7 @@ var React = {
|
|
|
3912
3923
|
};
|
|
3913
3924
|
|
|
3914
3925
|
module.exports = React;
|
|
3915
|
-
},{"
|
|
3926
|
+
},{"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
3927
|
/**
|
|
3917
3928
|
* Copyright 2013-present, Facebook, Inc.
|
|
3918
3929
|
* All rights reserved.
|
|
@@ -3926,15 +3937,15 @@ module.exports = React;
|
|
|
3926
3937
|
|
|
3927
3938
|
'use strict';
|
|
3928
3939
|
|
|
3929
|
-
var _assign = _dereq_(
|
|
3940
|
+
var _assign = _dereq_(191);
|
|
3930
3941
|
|
|
3931
3942
|
var EventConstants = _dereq_(16);
|
|
3932
3943
|
var EventPluginRegistry = _dereq_(18);
|
|
3933
|
-
var ReactEventEmitterMixin = _dereq_(
|
|
3934
|
-
var ViewportMetrics = _dereq_(
|
|
3944
|
+
var ReactEventEmitterMixin = _dereq_(71);
|
|
3945
|
+
var ViewportMetrics = _dereq_(130);
|
|
3935
3946
|
|
|
3936
|
-
var getVendorPrefixedEventName = _dereq_(
|
|
3937
|
-
var isEventSupported = _dereq_(
|
|
3947
|
+
var getVendorPrefixedEventName = _dereq_(149);
|
|
3948
|
+
var isEventSupported = _dereq_(151);
|
|
3938
3949
|
|
|
3939
3950
|
/**
|
|
3940
3951
|
* Summary of `ReactBrowserEventEmitter` event handling:
|
|
@@ -4230,7 +4241,7 @@ var ReactBrowserEventEmitter = _assign({}, ReactEventEmitterMixin, {
|
|
|
4230
4241
|
});
|
|
4231
4242
|
|
|
4232
4243
|
module.exports = ReactBrowserEventEmitter;
|
|
4233
|
-
},{"
|
|
4244
|
+
},{"130":130,"149":149,"151":151,"16":16,"18":18,"191":191,"71":71}],29:[function(_dereq_,module,exports){
|
|
4234
4245
|
/**
|
|
4235
4246
|
* Copyright 2013-present, Facebook, Inc.
|
|
4236
4247
|
* All rights reserved.
|
|
@@ -4244,11 +4255,11 @@ module.exports = ReactBrowserEventEmitter;
|
|
|
4244
4255
|
|
|
4245
4256
|
'use strict';
|
|
4246
4257
|
|
|
4247
|
-
var _assign = _dereq_(
|
|
4258
|
+
var _assign = _dereq_(191);
|
|
4248
4259
|
|
|
4249
4260
|
var React = _dereq_(27);
|
|
4250
4261
|
|
|
4251
|
-
var ReactTransitionGroup = _dereq_(
|
|
4262
|
+
var ReactTransitionGroup = _dereq_(107);
|
|
4252
4263
|
var ReactCSSTransitionGroupChild = _dereq_(30);
|
|
4253
4264
|
|
|
4254
4265
|
function createTransitionTimeoutPropValidator(transitionType) {
|
|
@@ -4318,7 +4329,7 @@ var ReactCSSTransitionGroup = React.createClass({
|
|
|
4318
4329
|
});
|
|
4319
4330
|
|
|
4320
4331
|
module.exports = ReactCSSTransitionGroup;
|
|
4321
|
-
},{"
|
|
4332
|
+
},{"107":107,"191":191,"27":27,"30":30}],30:[function(_dereq_,module,exports){
|
|
4322
4333
|
/**
|
|
4323
4334
|
* Copyright 2013-present, Facebook, Inc.
|
|
4324
4335
|
* All rights reserved.
|
|
@@ -4333,12 +4344,12 @@ module.exports = ReactCSSTransitionGroup;
|
|
|
4333
4344
|
'use strict';
|
|
4334
4345
|
|
|
4335
4346
|
var React = _dereq_(27);
|
|
4336
|
-
var ReactDOM = _dereq_(
|
|
4347
|
+
var ReactDOM = _dereq_(42);
|
|
4337
4348
|
|
|
4338
|
-
var CSSCore = _dereq_(
|
|
4339
|
-
var ReactTransitionEvents = _dereq_(
|
|
4349
|
+
var CSSCore = _dereq_(164);
|
|
4350
|
+
var ReactTransitionEvents = _dereq_(106);
|
|
4340
4351
|
|
|
4341
|
-
var onlyChild = _dereq_(
|
|
4352
|
+
var onlyChild = _dereq_(153);
|
|
4342
4353
|
|
|
4343
4354
|
var TICK = 17;
|
|
4344
4355
|
|
|
@@ -4486,7 +4497,7 @@ var ReactCSSTransitionGroupChild = React.createClass({
|
|
|
4486
4497
|
});
|
|
4487
4498
|
|
|
4488
4499
|
module.exports = ReactCSSTransitionGroupChild;
|
|
4489
|
-
},{"
|
|
4500
|
+
},{"106":106,"153":153,"164":164,"27":27,"42":42}],31:[function(_dereq_,module,exports){
|
|
4490
4501
|
/**
|
|
4491
4502
|
* Copyright 2014-present, Facebook, Inc.
|
|
4492
4503
|
* All rights reserved.
|
|
@@ -4500,19 +4511,19 @@ module.exports = ReactCSSTransitionGroupChild;
|
|
|
4500
4511
|
|
|
4501
4512
|
'use strict';
|
|
4502
4513
|
|
|
4503
|
-
var ReactReconciler = _dereq_(
|
|
4514
|
+
var ReactReconciler = _dereq_(97);
|
|
4504
4515
|
|
|
4505
|
-
var instantiateReactComponent = _dereq_(
|
|
4516
|
+
var instantiateReactComponent = _dereq_(150);
|
|
4506
4517
|
var KeyEscapeUtils = _dereq_(23);
|
|
4507
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
4508
|
-
var traverseAllChildren = _dereq_(
|
|
4509
|
-
var warning = _dereq_(
|
|
4518
|
+
var shouldUpdateReactComponent = _dereq_(160);
|
|
4519
|
+
var traverseAllChildren = _dereq_(161);
|
|
4520
|
+
var warning = _dereq_(190);
|
|
4510
4521
|
|
|
4511
4522
|
function instantiateChild(childInstances, child, name, selfDebugID) {
|
|
4512
4523
|
// We found a component instance.
|
|
4513
4524
|
var keyUnique = childInstances[name] === undefined;
|
|
4514
4525
|
if ("development" !== 'production') {
|
|
4515
|
-
var ReactComponentTreeDevtool = _dereq_(
|
|
4526
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
4516
4527
|
"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
4528
|
}
|
|
4518
4529
|
if (child != null && keyUnique) {
|
|
@@ -4561,7 +4572,7 @@ var ReactChildReconciler = {
|
|
|
4561
4572
|
* @return {?object} A new set of child instances.
|
|
4562
4573
|
* @internal
|
|
4563
4574
|
*/
|
|
4564
|
-
updateChildren: function (prevChildren, nextChildren, removedNodes, transaction, context) {
|
|
4575
|
+
updateChildren: function (prevChildren, nextChildren, mountImages, removedNodes, transaction, hostParent, hostContainerInfo, context) {
|
|
4565
4576
|
// We currently don't have a way to track moves here but if we use iterators
|
|
4566
4577
|
// instead of for..in we can zip the iterators and check if an item has
|
|
4567
4578
|
// moved.
|
|
@@ -4590,6 +4601,10 @@ var ReactChildReconciler = {
|
|
|
4590
4601
|
// The child must be instantiated before it's mounted.
|
|
4591
4602
|
var nextChildInstance = instantiateReactComponent(nextElement, true);
|
|
4592
4603
|
nextChildren[name] = nextChildInstance;
|
|
4604
|
+
// Creating mount image now ensures refs are resolved in right order
|
|
4605
|
+
// (see https://github.com/facebook/react/pull/7101 for explanation).
|
|
4606
|
+
var nextChildMountImage = ReactReconciler.mountComponent(nextChildInstance, transaction, hostParent, hostContainerInfo, context);
|
|
4607
|
+
mountImages.push(nextChildMountImage);
|
|
4593
4608
|
}
|
|
4594
4609
|
}
|
|
4595
4610
|
// Unmount children that are no longer present.
|
|
@@ -4621,7 +4636,7 @@ var ReactChildReconciler = {
|
|
|
4621
4636
|
};
|
|
4622
4637
|
|
|
4623
4638
|
module.exports = ReactChildReconciler;
|
|
4624
|
-
},{"
|
|
4639
|
+
},{"150":150,"160":160,"161":161,"190":190,"23":23,"38":38,"97":97}],32:[function(_dereq_,module,exports){
|
|
4625
4640
|
/**
|
|
4626
4641
|
* Copyright 2013-present, Facebook, Inc.
|
|
4627
4642
|
* All rights reserved.
|
|
@@ -4636,10 +4651,10 @@ module.exports = ReactChildReconciler;
|
|
|
4636
4651
|
'use strict';
|
|
4637
4652
|
|
|
4638
4653
|
var PooledClass = _dereq_(26);
|
|
4639
|
-
var ReactElement = _dereq_(
|
|
4654
|
+
var ReactElement = _dereq_(67);
|
|
4640
4655
|
|
|
4641
|
-
var emptyFunction = _dereq_(
|
|
4642
|
-
var traverseAllChildren = _dereq_(
|
|
4656
|
+
var emptyFunction = _dereq_(172);
|
|
4657
|
+
var traverseAllChildren = _dereq_(161);
|
|
4643
4658
|
|
|
4644
4659
|
var twoArgumentPooler = PooledClass.twoArgumentPooler;
|
|
4645
4660
|
var fourArgumentPooler = PooledClass.fourArgumentPooler;
|
|
@@ -4813,7 +4828,70 @@ var ReactChildren = {
|
|
|
4813
4828
|
};
|
|
4814
4829
|
|
|
4815
4830
|
module.exports = ReactChildren;
|
|
4816
|
-
},{"
|
|
4831
|
+
},{"161":161,"172":172,"26":26,"67":67}],33:[function(_dereq_,module,exports){
|
|
4832
|
+
/**
|
|
4833
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
4834
|
+
* All rights reserved.
|
|
4835
|
+
*
|
|
4836
|
+
* This source code is licensed under the BSD-style license found in the
|
|
4837
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
4838
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
4839
|
+
*
|
|
4840
|
+
* @providesModule ReactChildrenMutationWarningDevtool
|
|
4841
|
+
*/
|
|
4842
|
+
|
|
4843
|
+
'use strict';
|
|
4844
|
+
|
|
4845
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
4846
|
+
|
|
4847
|
+
var warning = _dereq_(190);
|
|
4848
|
+
|
|
4849
|
+
var elements = {};
|
|
4850
|
+
|
|
4851
|
+
function handleElement(debugID, element) {
|
|
4852
|
+
if (element == null) {
|
|
4853
|
+
return;
|
|
4854
|
+
}
|
|
4855
|
+
if (element._shadowChildren === undefined) {
|
|
4856
|
+
return;
|
|
4857
|
+
}
|
|
4858
|
+
if (element._shadowChildren === element.props.children) {
|
|
4859
|
+
return;
|
|
4860
|
+
}
|
|
4861
|
+
var isMutated = false;
|
|
4862
|
+
if (Array.isArray(element._shadowChildren)) {
|
|
4863
|
+
if (element._shadowChildren.length === element.props.children.length) {
|
|
4864
|
+
for (var i = 0; i < element._shadowChildren.length; i++) {
|
|
4865
|
+
if (element._shadowChildren[i] !== element.props.children[i]) {
|
|
4866
|
+
isMutated = true;
|
|
4867
|
+
}
|
|
4868
|
+
}
|
|
4869
|
+
} else {
|
|
4870
|
+
isMutated = true;
|
|
4871
|
+
}
|
|
4872
|
+
}
|
|
4873
|
+
"development" !== 'production' ? warning(Array.isArray(element._shadowChildren) && !isMutated, 'Component\'s children should not be mutated.%s', ReactComponentTreeDevtool.getStackAddendumByID(debugID)) : void 0;
|
|
4874
|
+
}
|
|
4875
|
+
|
|
4876
|
+
var ReactDOMUnknownPropertyDevtool = {
|
|
4877
|
+
onBeforeMountComponent: function (debugID, element) {
|
|
4878
|
+
elements[debugID] = element;
|
|
4879
|
+
},
|
|
4880
|
+
onBeforeUpdateComponent: function (debugID, element) {
|
|
4881
|
+
elements[debugID] = element;
|
|
4882
|
+
},
|
|
4883
|
+
onComponentHasMounted: function (debugID) {
|
|
4884
|
+
handleElement(debugID, elements[debugID]);
|
|
4885
|
+
delete elements[debugID];
|
|
4886
|
+
},
|
|
4887
|
+
onComponentHasUpdated: function (debugID) {
|
|
4888
|
+
handleElement(debugID, elements[debugID]);
|
|
4889
|
+
delete elements[debugID];
|
|
4890
|
+
}
|
|
4891
|
+
};
|
|
4892
|
+
|
|
4893
|
+
module.exports = ReactDOMUnknownPropertyDevtool;
|
|
4894
|
+
},{"190":190,"38":38}],34:[function(_dereq_,module,exports){
|
|
4817
4895
|
/**
|
|
4818
4896
|
* Copyright 2013-present, Facebook, Inc.
|
|
4819
4897
|
* All rights reserved.
|
|
@@ -4827,20 +4905,20 @@ module.exports = ReactChildren;
|
|
|
4827
4905
|
|
|
4828
4906
|
'use strict';
|
|
4829
4907
|
|
|
4830
|
-
var _prodInvariant = _dereq_(
|
|
4831
|
-
_assign = _dereq_(
|
|
4908
|
+
var _prodInvariant = _dereq_(155),
|
|
4909
|
+
_assign = _dereq_(191);
|
|
4832
4910
|
|
|
4833
|
-
var ReactComponent = _dereq_(
|
|
4834
|
-
var ReactElement = _dereq_(
|
|
4835
|
-
var ReactPropTypeLocations = _dereq_(
|
|
4836
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
4837
|
-
var ReactNoopUpdateQueue = _dereq_(
|
|
4911
|
+
var ReactComponent = _dereq_(35);
|
|
4912
|
+
var ReactElement = _dereq_(67);
|
|
4913
|
+
var ReactPropTypeLocations = _dereq_(92);
|
|
4914
|
+
var ReactPropTypeLocationNames = _dereq_(91);
|
|
4915
|
+
var ReactNoopUpdateQueue = _dereq_(88);
|
|
4838
4916
|
|
|
4839
|
-
var emptyObject = _dereq_(
|
|
4840
|
-
var invariant = _dereq_(
|
|
4841
|
-
var keyMirror = _dereq_(
|
|
4842
|
-
var keyOf = _dereq_(
|
|
4843
|
-
var warning = _dereq_(
|
|
4917
|
+
var emptyObject = _dereq_(173);
|
|
4918
|
+
var invariant = _dereq_(180);
|
|
4919
|
+
var keyMirror = _dereq_(183);
|
|
4920
|
+
var keyOf = _dereq_(184);
|
|
4921
|
+
var warning = _dereq_(190);
|
|
4844
4922
|
|
|
4845
4923
|
var MIXINS_KEY = keyOf({ mixins: null });
|
|
4846
4924
|
|
|
@@ -5201,6 +5279,13 @@ function validateMethodOverride(isAlreadyDefined, name) {
|
|
|
5201
5279
|
*/
|
|
5202
5280
|
function mixSpecIntoComponent(Constructor, spec) {
|
|
5203
5281
|
if (!spec) {
|
|
5282
|
+
if ("development" !== 'production') {
|
|
5283
|
+
var typeofSpec = typeof spec;
|
|
5284
|
+
var isMixinValid = typeofSpec === 'object' && spec !== null;
|
|
5285
|
+
|
|
5286
|
+
"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;
|
|
5287
|
+
}
|
|
5288
|
+
|
|
5204
5289
|
return;
|
|
5205
5290
|
}
|
|
5206
5291
|
|
|
@@ -5539,7 +5624,7 @@ var ReactClass = {
|
|
|
5539
5624
|
};
|
|
5540
5625
|
|
|
5541
5626
|
module.exports = ReactClass;
|
|
5542
|
-
},{"
|
|
5627
|
+
},{"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
5628
|
/**
|
|
5544
5629
|
* Copyright 2013-present, Facebook, Inc.
|
|
5545
5630
|
* All rights reserved.
|
|
@@ -5553,14 +5638,14 @@ module.exports = ReactClass;
|
|
|
5553
5638
|
|
|
5554
5639
|
'use strict';
|
|
5555
5640
|
|
|
5556
|
-
var _prodInvariant = _dereq_(
|
|
5641
|
+
var _prodInvariant = _dereq_(155);
|
|
5557
5642
|
|
|
5558
|
-
var ReactNoopUpdateQueue = _dereq_(
|
|
5643
|
+
var ReactNoopUpdateQueue = _dereq_(88);
|
|
5559
5644
|
|
|
5560
|
-
var canDefineProperty = _dereq_(
|
|
5561
|
-
var emptyObject = _dereq_(
|
|
5562
|
-
var invariant = _dereq_(
|
|
5563
|
-
var warning = _dereq_(
|
|
5645
|
+
var canDefineProperty = _dereq_(133);
|
|
5646
|
+
var emptyObject = _dereq_(173);
|
|
5647
|
+
var invariant = _dereq_(180);
|
|
5648
|
+
var warning = _dereq_(190);
|
|
5564
5649
|
|
|
5565
5650
|
/**
|
|
5566
5651
|
* Base class helpers for the updating state of a component.
|
|
@@ -5658,7 +5743,7 @@ if ("development" !== 'production') {
|
|
|
5658
5743
|
}
|
|
5659
5744
|
|
|
5660
5745
|
module.exports = ReactComponent;
|
|
5661
|
-
},{"
|
|
5746
|
+
},{"133":133,"155":155,"173":173,"180":180,"190":190,"88":88}],36:[function(_dereq_,module,exports){
|
|
5662
5747
|
/**
|
|
5663
5748
|
* Copyright 2013-present, Facebook, Inc.
|
|
5664
5749
|
* All rights reserved.
|
|
@@ -5673,7 +5758,7 @@ module.exports = ReactComponent;
|
|
|
5673
5758
|
'use strict';
|
|
5674
5759
|
|
|
5675
5760
|
var DOMChildrenOperations = _dereq_(7);
|
|
5676
|
-
var ReactDOMIDOperations = _dereq_(
|
|
5761
|
+
var ReactDOMIDOperations = _dereq_(52);
|
|
5677
5762
|
|
|
5678
5763
|
/**
|
|
5679
5764
|
* Abstracts away all functionality of the reconciler that requires knowledge of
|
|
@@ -5698,7 +5783,7 @@ var ReactComponentBrowserEnvironment = {
|
|
|
5698
5783
|
};
|
|
5699
5784
|
|
|
5700
5785
|
module.exports = ReactComponentBrowserEnvironment;
|
|
5701
|
-
},{"
|
|
5786
|
+
},{"52":52,"7":7}],37:[function(_dereq_,module,exports){
|
|
5702
5787
|
/**
|
|
5703
5788
|
* Copyright 2014-present, Facebook, Inc.
|
|
5704
5789
|
* All rights reserved.
|
|
@@ -5712,9 +5797,9 @@ module.exports = ReactComponentBrowserEnvironment;
|
|
|
5712
5797
|
|
|
5713
5798
|
'use strict';
|
|
5714
5799
|
|
|
5715
|
-
var _prodInvariant = _dereq_(
|
|
5800
|
+
var _prodInvariant = _dereq_(155);
|
|
5716
5801
|
|
|
5717
|
-
var invariant = _dereq_(
|
|
5802
|
+
var invariant = _dereq_(180);
|
|
5718
5803
|
|
|
5719
5804
|
var injected = false;
|
|
5720
5805
|
|
|
@@ -5752,7 +5837,7 @@ var ReactComponentEnvironment = {
|
|
|
5752
5837
|
};
|
|
5753
5838
|
|
|
5754
5839
|
module.exports = ReactComponentEnvironment;
|
|
5755
|
-
},{"
|
|
5840
|
+
},{"155":155,"180":180}],38:[function(_dereq_,module,exports){
|
|
5756
5841
|
/**
|
|
5757
5842
|
* Copyright 2016-present, Facebook, Inc.
|
|
5758
5843
|
* All rights reserved.
|
|
@@ -5766,12 +5851,12 @@ module.exports = ReactComponentEnvironment;
|
|
|
5766
5851
|
|
|
5767
5852
|
'use strict';
|
|
5768
5853
|
|
|
5769
|
-
var _prodInvariant = _dereq_(
|
|
5854
|
+
var _prodInvariant = _dereq_(155);
|
|
5770
5855
|
|
|
5771
|
-
var ReactCurrentOwner = _dereq_(
|
|
5856
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
5772
5857
|
|
|
5773
|
-
var invariant = _dereq_(
|
|
5774
|
-
var warning = _dereq_(
|
|
5858
|
+
var invariant = _dereq_(180);
|
|
5859
|
+
var warning = _dereq_(190);
|
|
5775
5860
|
|
|
5776
5861
|
var tree = {};
|
|
5777
5862
|
var unmountedIDs = {};
|
|
@@ -5971,7 +6056,7 @@ var ReactComponentTreeDevtool = {
|
|
|
5971
6056
|
};
|
|
5972
6057
|
|
|
5973
6058
|
module.exports = ReactComponentTreeDevtool;
|
|
5974
|
-
},{"
|
|
6059
|
+
},{"155":155,"180":180,"190":190,"41":41}],39:[function(_dereq_,module,exports){
|
|
5975
6060
|
/**
|
|
5976
6061
|
* Copyright 2013-present, Facebook, Inc.
|
|
5977
6062
|
* All rights reserved.
|
|
@@ -5985,7 +6070,7 @@ module.exports = ReactComponentTreeDevtool;
|
|
|
5985
6070
|
|
|
5986
6071
|
'use strict';
|
|
5987
6072
|
|
|
5988
|
-
var shallowCompare = _dereq_(
|
|
6073
|
+
var shallowCompare = _dereq_(159);
|
|
5989
6074
|
|
|
5990
6075
|
/**
|
|
5991
6076
|
* If your React component's render function is "pure", e.g. it will render the
|
|
@@ -6020,7 +6105,7 @@ var ReactComponentWithPureRenderMixin = {
|
|
|
6020
6105
|
};
|
|
6021
6106
|
|
|
6022
6107
|
module.exports = ReactComponentWithPureRenderMixin;
|
|
6023
|
-
},{"
|
|
6108
|
+
},{"159":159}],40:[function(_dereq_,module,exports){
|
|
6024
6109
|
/**
|
|
6025
6110
|
* Copyright 2013-present, Facebook, Inc.
|
|
6026
6111
|
* All rights reserved.
|
|
@@ -6034,25 +6119,31 @@ module.exports = ReactComponentWithPureRenderMixin;
|
|
|
6034
6119
|
|
|
6035
6120
|
'use strict';
|
|
6036
6121
|
|
|
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_(
|
|
6122
|
+
var _prodInvariant = _dereq_(155),
|
|
6123
|
+
_assign = _dereq_(191);
|
|
6124
|
+
|
|
6125
|
+
var ReactComponentEnvironment = _dereq_(37);
|
|
6126
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
6127
|
+
var ReactElement = _dereq_(67);
|
|
6128
|
+
var ReactErrorUtils = _dereq_(70);
|
|
6129
|
+
var ReactInstanceMap = _dereq_(79);
|
|
6130
|
+
var ReactInstrumentation = _dereq_(80);
|
|
6131
|
+
var ReactNodeTypes = _dereq_(87);
|
|
6132
|
+
var ReactPropTypeLocations = _dereq_(92);
|
|
6133
|
+
var ReactReconciler = _dereq_(97);
|
|
6134
|
+
|
|
6135
|
+
var checkReactTypeSpec = _dereq_(134);
|
|
6136
|
+
var emptyObject = _dereq_(173);
|
|
6137
|
+
var invariant = _dereq_(180);
|
|
6138
|
+
var shallowEqual = _dereq_(189);
|
|
6139
|
+
var shouldUpdateReactComponent = _dereq_(160);
|
|
6140
|
+
var warning = _dereq_(190);
|
|
6141
|
+
|
|
6142
|
+
var CompositeTypes = {
|
|
6143
|
+
ImpureClass: 0,
|
|
6144
|
+
PureClass: 1,
|
|
6145
|
+
StatelessFunctional: 2
|
|
6146
|
+
};
|
|
6056
6147
|
|
|
6057
6148
|
function StatelessComponent(Component) {}
|
|
6058
6149
|
StatelessComponent.prototype.render = function () {
|
|
@@ -6092,7 +6183,11 @@ function invokeComponentDidUpdateWithTimer(prevProps, prevState, prevContext) {
|
|
|
6092
6183
|
}
|
|
6093
6184
|
|
|
6094
6185
|
function shouldConstruct(Component) {
|
|
6095
|
-
return Component.prototype && Component.prototype.isReactComponent;
|
|
6186
|
+
return !!(Component.prototype && Component.prototype.isReactComponent);
|
|
6187
|
+
}
|
|
6188
|
+
|
|
6189
|
+
function isPureComponent(Component) {
|
|
6190
|
+
return !!(Component.prototype && Component.prototype.isPureReactComponent);
|
|
6096
6191
|
}
|
|
6097
6192
|
|
|
6098
6193
|
/**
|
|
@@ -6145,6 +6240,7 @@ var ReactCompositeComponentMixin = {
|
|
|
6145
6240
|
construct: function (element) {
|
|
6146
6241
|
this._currentElement = element;
|
|
6147
6242
|
this._rootNodeID = null;
|
|
6243
|
+
this._compositeType = null;
|
|
6148
6244
|
this._instance = null;
|
|
6149
6245
|
this._hostParent = null;
|
|
6150
6246
|
this._hostContainerInfo = null;
|
|
@@ -6185,6 +6281,8 @@ var ReactCompositeComponentMixin = {
|
|
|
6185
6281
|
* @internal
|
|
6186
6282
|
*/
|
|
6187
6283
|
mountComponent: function (transaction, hostParent, hostContainerInfo, context) {
|
|
6284
|
+
var _this = this;
|
|
6285
|
+
|
|
6188
6286
|
this._context = context;
|
|
6189
6287
|
this._mountOrder = nextMountID++;
|
|
6190
6288
|
this._hostParent = hostParent;
|
|
@@ -6198,15 +6296,23 @@ var ReactCompositeComponentMixin = {
|
|
|
6198
6296
|
var updateQueue = transaction.getUpdateQueue();
|
|
6199
6297
|
|
|
6200
6298
|
// Initialize the public class
|
|
6201
|
-
var
|
|
6299
|
+
var doConstruct = shouldConstruct(Component);
|
|
6300
|
+
var inst = this._constructComponent(doConstruct, publicProps, publicContext, updateQueue);
|
|
6202
6301
|
var renderedElement;
|
|
6203
6302
|
|
|
6204
6303
|
// Support functional components
|
|
6205
|
-
if (!
|
|
6304
|
+
if (!doConstruct && (inst == null || inst.render == null)) {
|
|
6206
6305
|
renderedElement = inst;
|
|
6207
6306
|
warnIfInvalidElement(Component, renderedElement);
|
|
6208
6307
|
!(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
6308
|
inst = new StatelessComponent(Component);
|
|
6309
|
+
this._compositeType = CompositeTypes.StatelessFunctional;
|
|
6310
|
+
} else {
|
|
6311
|
+
if (isPureComponent(Component)) {
|
|
6312
|
+
this._compositeType = CompositeTypes.PureClass;
|
|
6313
|
+
} else {
|
|
6314
|
+
this._compositeType = CompositeTypes.ImpureClass;
|
|
6315
|
+
}
|
|
6210
6316
|
}
|
|
6211
6317
|
|
|
6212
6318
|
if ("development" !== 'production') {
|
|
@@ -6272,26 +6378,35 @@ var ReactCompositeComponentMixin = {
|
|
|
6272
6378
|
}
|
|
6273
6379
|
}
|
|
6274
6380
|
|
|
6381
|
+
if ("development" !== 'production') {
|
|
6382
|
+
if (this._debugID) {
|
|
6383
|
+
var callback = function (component) {
|
|
6384
|
+
return ReactInstrumentation.debugTool.onComponentHasMounted(_this._debugID);
|
|
6385
|
+
};
|
|
6386
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
|
6387
|
+
}
|
|
6388
|
+
}
|
|
6389
|
+
|
|
6275
6390
|
return markup;
|
|
6276
6391
|
},
|
|
6277
6392
|
|
|
6278
|
-
_constructComponent: function (publicProps, publicContext, updateQueue) {
|
|
6393
|
+
_constructComponent: function (doConstruct, publicProps, publicContext, updateQueue) {
|
|
6279
6394
|
if ("development" !== 'production') {
|
|
6280
6395
|
ReactCurrentOwner.current = this;
|
|
6281
6396
|
try {
|
|
6282
|
-
return this._constructComponentWithoutOwner(publicProps, publicContext, updateQueue);
|
|
6397
|
+
return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);
|
|
6283
6398
|
} finally {
|
|
6284
6399
|
ReactCurrentOwner.current = null;
|
|
6285
6400
|
}
|
|
6286
6401
|
} else {
|
|
6287
|
-
return this._constructComponentWithoutOwner(publicProps, publicContext, updateQueue);
|
|
6402
|
+
return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);
|
|
6288
6403
|
}
|
|
6289
6404
|
},
|
|
6290
6405
|
|
|
6291
|
-
_constructComponentWithoutOwner: function (publicProps, publicContext, updateQueue) {
|
|
6406
|
+
_constructComponentWithoutOwner: function (doConstruct, publicProps, publicContext, updateQueue) {
|
|
6292
6407
|
var Component = this._currentElement.type;
|
|
6293
6408
|
var instanceOrElement;
|
|
6294
|
-
if (
|
|
6409
|
+
if (doConstruct) {
|
|
6295
6410
|
if ("development" !== 'production') {
|
|
6296
6411
|
if (this._debugID !== 0) {
|
|
6297
6412
|
ReactInstrumentation.debugTool.onBeginLifeCycleTimer(this._debugID, 'ctor');
|
|
@@ -6595,7 +6710,6 @@ var ReactCompositeComponentMixin = {
|
|
|
6595
6710
|
|
|
6596
6711
|
var willReceive = false;
|
|
6597
6712
|
var nextContext;
|
|
6598
|
-
var nextProps;
|
|
6599
6713
|
|
|
6600
6714
|
// Determine if the context has changed or not
|
|
6601
6715
|
if (this._context === nextUnmaskedContext) {
|
|
@@ -6605,7 +6719,8 @@ var ReactCompositeComponentMixin = {
|
|
|
6605
6719
|
willReceive = true;
|
|
6606
6720
|
}
|
|
6607
6721
|
|
|
6608
|
-
|
|
6722
|
+
var prevProps = prevParentElement.props;
|
|
6723
|
+
var nextProps = nextParentElement.props;
|
|
6609
6724
|
|
|
6610
6725
|
// Not a simple state update but a props update
|
|
6611
6726
|
if (prevParentElement !== nextParentElement) {
|
|
@@ -6632,16 +6747,22 @@ var ReactCompositeComponentMixin = {
|
|
|
6632
6747
|
var nextState = this._processPendingState(nextProps, nextContext);
|
|
6633
6748
|
var shouldUpdate = true;
|
|
6634
6749
|
|
|
6635
|
-
if (!this._pendingForceUpdate
|
|
6636
|
-
if (
|
|
6637
|
-
if (
|
|
6638
|
-
|
|
6750
|
+
if (!this._pendingForceUpdate) {
|
|
6751
|
+
if (inst.shouldComponentUpdate) {
|
|
6752
|
+
if ("development" !== 'production') {
|
|
6753
|
+
if (this._debugID !== 0) {
|
|
6754
|
+
ReactInstrumentation.debugTool.onBeginLifeCycleTimer(this._debugID, 'shouldComponentUpdate');
|
|
6755
|
+
}
|
|
6639
6756
|
}
|
|
6640
|
-
|
|
6641
|
-
|
|
6642
|
-
|
|
6643
|
-
|
|
6644
|
-
|
|
6757
|
+
shouldUpdate = inst.shouldComponentUpdate(nextProps, nextState, nextContext);
|
|
6758
|
+
if ("development" !== 'production') {
|
|
6759
|
+
if (this._debugID !== 0) {
|
|
6760
|
+
ReactInstrumentation.debugTool.onEndLifeCycleTimer(this._debugID, 'shouldComponentUpdate');
|
|
6761
|
+
}
|
|
6762
|
+
}
|
|
6763
|
+
} else {
|
|
6764
|
+
if (this._compositeType === CompositeTypes.PureClass) {
|
|
6765
|
+
shouldUpdate = !shallowEqual(prevProps, nextProps) || !shallowEqual(inst.state, nextState);
|
|
6645
6766
|
}
|
|
6646
6767
|
}
|
|
6647
6768
|
}
|
|
@@ -6703,6 +6824,8 @@ var ReactCompositeComponentMixin = {
|
|
|
6703
6824
|
* @private
|
|
6704
6825
|
*/
|
|
6705
6826
|
_performComponentUpdate: function (nextElement, nextProps, nextState, nextContext, transaction, unmaskedContext) {
|
|
6827
|
+
var _this2 = this;
|
|
6828
|
+
|
|
6706
6829
|
var inst = this._instance;
|
|
6707
6830
|
|
|
6708
6831
|
var hasComponentDidUpdate = Boolean(inst.componentDidUpdate);
|
|
@@ -6744,6 +6867,15 @@ var ReactCompositeComponentMixin = {
|
|
|
6744
6867
|
transaction.getReactMountReady().enqueue(inst.componentDidUpdate.bind(inst, prevProps, prevState, prevContext), inst);
|
|
6745
6868
|
}
|
|
6746
6869
|
}
|
|
6870
|
+
|
|
6871
|
+
if ("development" !== 'production') {
|
|
6872
|
+
if (this._debugID) {
|
|
6873
|
+
var callback = function () {
|
|
6874
|
+
return ReactInstrumentation.debugTool.onComponentHasUpdated(_this2._debugID);
|
|
6875
|
+
};
|
|
6876
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
|
6877
|
+
}
|
|
6878
|
+
}
|
|
6747
6879
|
},
|
|
6748
6880
|
|
|
6749
6881
|
/**
|
|
@@ -6829,11 +6961,15 @@ var ReactCompositeComponentMixin = {
|
|
|
6829
6961
|
*/
|
|
6830
6962
|
_renderValidatedComponent: function () {
|
|
6831
6963
|
var renderedComponent;
|
|
6832
|
-
|
|
6833
|
-
|
|
6964
|
+
if ("development" !== 'production' || this._compositeType !== CompositeTypes.StatelessFunctional) {
|
|
6965
|
+
ReactCurrentOwner.current = this;
|
|
6966
|
+
try {
|
|
6967
|
+
renderedComponent = this._renderValidatedComponentWithoutOwnerOrContext();
|
|
6968
|
+
} finally {
|
|
6969
|
+
ReactCurrentOwner.current = null;
|
|
6970
|
+
}
|
|
6971
|
+
} else {
|
|
6834
6972
|
renderedComponent = this._renderValidatedComponentWithoutOwnerOrContext();
|
|
6835
|
-
} finally {
|
|
6836
|
-
ReactCurrentOwner.current = null;
|
|
6837
6973
|
}
|
|
6838
6974
|
!(
|
|
6839
6975
|
// TODO: An `isValidNode` function would probably be more appropriate
|
|
@@ -6896,7 +7032,7 @@ var ReactCompositeComponentMixin = {
|
|
|
6896
7032
|
*/
|
|
6897
7033
|
getPublicInstance: function () {
|
|
6898
7034
|
var inst = this._instance;
|
|
6899
|
-
if (
|
|
7035
|
+
if (this._compositeType === CompositeTypes.StatelessFunctional) {
|
|
6900
7036
|
return null;
|
|
6901
7037
|
}
|
|
6902
7038
|
return inst;
|
|
@@ -6914,7 +7050,7 @@ var ReactCompositeComponent = {
|
|
|
6914
7050
|
};
|
|
6915
7051
|
|
|
6916
7052
|
module.exports = ReactCompositeComponent;
|
|
6917
|
-
},{"
|
|
7053
|
+
},{"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
7054
|
/**
|
|
6919
7055
|
* Copyright 2013-present, Facebook, Inc.
|
|
6920
7056
|
* All rights reserved.
|
|
@@ -6946,7 +7082,7 @@ var ReactCurrentOwner = {
|
|
|
6946
7082
|
};
|
|
6947
7083
|
|
|
6948
7084
|
module.exports = ReactCurrentOwner;
|
|
6949
|
-
},{}],
|
|
7085
|
+
},{}],42:[function(_dereq_,module,exports){
|
|
6950
7086
|
/**
|
|
6951
7087
|
* Copyright 2013-present, Facebook, Inc.
|
|
6952
7088
|
* All rights reserved.
|
|
@@ -6962,17 +7098,17 @@ module.exports = ReactCurrentOwner;
|
|
|
6962
7098
|
|
|
6963
7099
|
'use strict';
|
|
6964
7100
|
|
|
6965
|
-
var ReactDOMComponentTree = _dereq_(
|
|
6966
|
-
var ReactDefaultInjection = _dereq_(
|
|
6967
|
-
var ReactMount = _dereq_(
|
|
6968
|
-
var ReactReconciler = _dereq_(
|
|
6969
|
-
var ReactUpdates = _dereq_(
|
|
6970
|
-
var ReactVersion = _dereq_(
|
|
7101
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
7102
|
+
var ReactDefaultInjection = _dereq_(66);
|
|
7103
|
+
var ReactMount = _dereq_(84);
|
|
7104
|
+
var ReactReconciler = _dereq_(97);
|
|
7105
|
+
var ReactUpdates = _dereq_(109);
|
|
7106
|
+
var ReactVersion = _dereq_(110);
|
|
6971
7107
|
|
|
6972
|
-
var findDOMNode = _dereq_(
|
|
6973
|
-
var getHostComponentFromComposite = _dereq_(
|
|
6974
|
-
var renderSubtreeIntoContainer = _dereq_(
|
|
6975
|
-
var warning = _dereq_(
|
|
7108
|
+
var findDOMNode = _dereq_(138);
|
|
7109
|
+
var getHostComponentFromComposite = _dereq_(145);
|
|
7110
|
+
var renderSubtreeIntoContainer = _dereq_(156);
|
|
7111
|
+
var warning = _dereq_(190);
|
|
6976
7112
|
|
|
6977
7113
|
ReactDefaultInjection.inject();
|
|
6978
7114
|
|
|
@@ -7012,7 +7148,7 @@ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVT
|
|
|
7012
7148
|
}
|
|
7013
7149
|
|
|
7014
7150
|
if ("development" !== 'production') {
|
|
7015
|
-
var ExecutionEnvironment = _dereq_(
|
|
7151
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
7016
7152
|
if (ExecutionEnvironment.canUseDOM && window.top === window.self) {
|
|
7017
7153
|
|
|
7018
7154
|
// First check if devtools is not installed
|
|
@@ -7048,7 +7184,7 @@ if ("development" !== 'production') {
|
|
|
7048
7184
|
}
|
|
7049
7185
|
|
|
7050
7186
|
module.exports = React;
|
|
7051
|
-
},{"
|
|
7187
|
+
},{"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
7188
|
/**
|
|
7053
7189
|
* Copyright 2013-present, Facebook, Inc.
|
|
7054
7190
|
* All rights reserved.
|
|
@@ -7073,7 +7209,7 @@ var ReactDOMButton = {
|
|
|
7073
7209
|
};
|
|
7074
7210
|
|
|
7075
7211
|
module.exports = ReactDOMButton;
|
|
7076
|
-
},{"14":14}],
|
|
7212
|
+
},{"14":14}],44:[function(_dereq_,module,exports){
|
|
7077
7213
|
/**
|
|
7078
7214
|
* Copyright 2013-present, Facebook, Inc.
|
|
7079
7215
|
* All rights reserved.
|
|
@@ -7089,8 +7225,8 @@ module.exports = ReactDOMButton;
|
|
|
7089
7225
|
|
|
7090
7226
|
'use strict';
|
|
7091
7227
|
|
|
7092
|
-
var _prodInvariant = _dereq_(
|
|
7093
|
-
_assign = _dereq_(
|
|
7228
|
+
var _prodInvariant = _dereq_(155),
|
|
7229
|
+
_assign = _dereq_(191);
|
|
7094
7230
|
|
|
7095
7231
|
var AutoFocusUtils = _dereq_(1);
|
|
7096
7232
|
var CSSPropertyOperations = _dereq_(4);
|
|
@@ -7102,26 +7238,26 @@ var EventConstants = _dereq_(16);
|
|
|
7102
7238
|
var EventPluginHub = _dereq_(17);
|
|
7103
7239
|
var EventPluginRegistry = _dereq_(18);
|
|
7104
7240
|
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_(
|
|
7241
|
+
var ReactComponentBrowserEnvironment = _dereq_(36);
|
|
7242
|
+
var ReactDOMButton = _dereq_(43);
|
|
7243
|
+
var ReactDOMComponentFlags = _dereq_(45);
|
|
7244
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
7245
|
+
var ReactDOMInput = _dereq_(53);
|
|
7246
|
+
var ReactDOMOption = _dereq_(56);
|
|
7247
|
+
var ReactDOMSelect = _dereq_(57);
|
|
7248
|
+
var ReactDOMTextarea = _dereq_(61);
|
|
7249
|
+
var ReactInstrumentation = _dereq_(80);
|
|
7250
|
+
var ReactMultiChild = _dereq_(85);
|
|
7251
|
+
var ReactServerRenderingTransaction = _dereq_(101);
|
|
7252
|
+
|
|
7253
|
+
var emptyFunction = _dereq_(172);
|
|
7254
|
+
var escapeTextContentForBrowser = _dereq_(137);
|
|
7255
|
+
var invariant = _dereq_(180);
|
|
7256
|
+
var isEventSupported = _dereq_(151);
|
|
7257
|
+
var keyOf = _dereq_(184);
|
|
7258
|
+
var shallowEqual = _dereq_(189);
|
|
7259
|
+
var validateDOMNesting = _dereq_(163);
|
|
7260
|
+
var warning = _dereq_(190);
|
|
7125
7261
|
|
|
7126
7262
|
var Flags = ReactDOMComponentFlags;
|
|
7127
7263
|
var deleteListener = EventPluginHub.deleteListener;
|
|
@@ -7487,6 +7623,8 @@ ReactDOMComponent.Mixin = {
|
|
|
7487
7623
|
* @return {string} The computed markup.
|
|
7488
7624
|
*/
|
|
7489
7625
|
mountComponent: function (transaction, hostParent, hostContainerInfo, context) {
|
|
7626
|
+
var _this = this;
|
|
7627
|
+
|
|
7490
7628
|
this._rootNodeID = globalIdCounter++;
|
|
7491
7629
|
this._domID = hostContainerInfo._idCounter++;
|
|
7492
7630
|
this._hostParent = hostParent;
|
|
@@ -7642,6 +7780,15 @@ ReactDOMComponent.Mixin = {
|
|
|
7642
7780
|
break;
|
|
7643
7781
|
}
|
|
7644
7782
|
|
|
7783
|
+
if ("development" !== 'production') {
|
|
7784
|
+
if (this._debugID) {
|
|
7785
|
+
var callback = function () {
|
|
7786
|
+
return ReactInstrumentation.debugTool.onComponentHasMounted(_this._debugID);
|
|
7787
|
+
};
|
|
7788
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
|
7789
|
+
}
|
|
7790
|
+
}
|
|
7791
|
+
|
|
7645
7792
|
return mountImage;
|
|
7646
7793
|
},
|
|
7647
7794
|
|
|
@@ -7810,6 +7957,8 @@ ReactDOMComponent.Mixin = {
|
|
|
7810
7957
|
* @overridable
|
|
7811
7958
|
*/
|
|
7812
7959
|
updateComponent: function (transaction, prevElement, nextElement, context) {
|
|
7960
|
+
var _this2 = this;
|
|
7961
|
+
|
|
7813
7962
|
var lastProps = prevElement.props;
|
|
7814
7963
|
var nextProps = this._currentElement.props;
|
|
7815
7964
|
|
|
@@ -7847,6 +7996,15 @@ ReactDOMComponent.Mixin = {
|
|
|
7847
7996
|
// reconciliation
|
|
7848
7997
|
transaction.getReactMountReady().enqueue(postUpdateSelectWrapper, this);
|
|
7849
7998
|
}
|
|
7999
|
+
|
|
8000
|
+
if ("development" !== 'production') {
|
|
8001
|
+
if (this._debugID) {
|
|
8002
|
+
var callback = function () {
|
|
8003
|
+
return ReactInstrumentation.debugTool.onComponentHasUpdated(_this2._debugID);
|
|
8004
|
+
};
|
|
8005
|
+
transaction.getReactMountReady().enqueue(callback, this);
|
|
8006
|
+
}
|
|
8007
|
+
}
|
|
7850
8008
|
},
|
|
7851
8009
|
|
|
7852
8010
|
/**
|
|
@@ -8077,7 +8235,7 @@ ReactDOMComponent.Mixin = {
|
|
|
8077
8235
|
_assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);
|
|
8078
8236
|
|
|
8079
8237
|
module.exports = ReactDOMComponent;
|
|
8080
|
-
},{"1":1,"10":10,"11":11,"
|
|
8238
|
+
},{"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
8239
|
/**
|
|
8082
8240
|
* Copyright 2015-present, Facebook, Inc.
|
|
8083
8241
|
* All rights reserved.
|
|
@@ -8096,7 +8254,7 @@ var ReactDOMComponentFlags = {
|
|
|
8096
8254
|
};
|
|
8097
8255
|
|
|
8098
8256
|
module.exports = ReactDOMComponentFlags;
|
|
8099
|
-
},{}],
|
|
8257
|
+
},{}],46:[function(_dereq_,module,exports){
|
|
8100
8258
|
/**
|
|
8101
8259
|
* Copyright 2013-present, Facebook, Inc.
|
|
8102
8260
|
* All rights reserved.
|
|
@@ -8110,12 +8268,12 @@ module.exports = ReactDOMComponentFlags;
|
|
|
8110
8268
|
|
|
8111
8269
|
'use strict';
|
|
8112
8270
|
|
|
8113
|
-
var _prodInvariant = _dereq_(
|
|
8271
|
+
var _prodInvariant = _dereq_(155);
|
|
8114
8272
|
|
|
8115
8273
|
var DOMProperty = _dereq_(10);
|
|
8116
|
-
var ReactDOMComponentFlags = _dereq_(
|
|
8274
|
+
var ReactDOMComponentFlags = _dereq_(45);
|
|
8117
8275
|
|
|
8118
|
-
var invariant = _dereq_(
|
|
8276
|
+
var invariant = _dereq_(180);
|
|
8119
8277
|
|
|
8120
8278
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
8121
8279
|
var Flags = ReactDOMComponentFlags;
|
|
@@ -8285,7 +8443,7 @@ var ReactDOMComponentTree = {
|
|
|
8285
8443
|
};
|
|
8286
8444
|
|
|
8287
8445
|
module.exports = ReactDOMComponentTree;
|
|
8288
|
-
},{"10":10,"
|
|
8446
|
+
},{"10":10,"155":155,"180":180,"45":45}],47:[function(_dereq_,module,exports){
|
|
8289
8447
|
/**
|
|
8290
8448
|
* Copyright 2013-present, Facebook, Inc.
|
|
8291
8449
|
* All rights reserved.
|
|
@@ -8299,7 +8457,7 @@ module.exports = ReactDOMComponentTree;
|
|
|
8299
8457
|
|
|
8300
8458
|
'use strict';
|
|
8301
8459
|
|
|
8302
|
-
var validateDOMNesting = _dereq_(
|
|
8460
|
+
var validateDOMNesting = _dereq_(163);
|
|
8303
8461
|
|
|
8304
8462
|
var DOC_NODE_TYPE = 9;
|
|
8305
8463
|
|
|
@@ -8319,7 +8477,7 @@ function ReactDOMContainerInfo(topLevelWrapper, node) {
|
|
|
8319
8477
|
}
|
|
8320
8478
|
|
|
8321
8479
|
module.exports = ReactDOMContainerInfo;
|
|
8322
|
-
},{"
|
|
8480
|
+
},{"163":163}],48:[function(_dereq_,module,exports){
|
|
8323
8481
|
/**
|
|
8324
8482
|
* Copyright 2013-present, Facebook, Inc.
|
|
8325
8483
|
* All rights reserved.
|
|
@@ -8333,11 +8491,11 @@ module.exports = ReactDOMContainerInfo;
|
|
|
8333
8491
|
|
|
8334
8492
|
'use strict';
|
|
8335
8493
|
|
|
8336
|
-
var ReactDOMNullInputValuePropDevtool = _dereq_(
|
|
8337
|
-
var ReactDOMUnknownPropertyDevtool = _dereq_(
|
|
8338
|
-
var ReactDebugTool = _dereq_(
|
|
8494
|
+
var ReactDOMNullInputValuePropDevtool = _dereq_(55);
|
|
8495
|
+
var ReactDOMUnknownPropertyDevtool = _dereq_(63);
|
|
8496
|
+
var ReactDebugTool = _dereq_(64);
|
|
8339
8497
|
|
|
8340
|
-
var warning = _dereq_(
|
|
8498
|
+
var warning = _dereq_(190);
|
|
8341
8499
|
|
|
8342
8500
|
var eventHandlers = [];
|
|
8343
8501
|
var handlerDoesThrowForEvent = {};
|
|
@@ -8387,7 +8545,7 @@ ReactDOMDebugTool.addDevtool(ReactDOMUnknownPropertyDevtool);
|
|
|
8387
8545
|
ReactDOMDebugTool.addDevtool(ReactDOMNullInputValuePropDevtool);
|
|
8388
8546
|
|
|
8389
8547
|
module.exports = ReactDOMDebugTool;
|
|
8390
|
-
},{"
|
|
8548
|
+
},{"190":190,"55":55,"63":63,"64":64}],49:[function(_dereq_,module,exports){
|
|
8391
8549
|
/**
|
|
8392
8550
|
* Copyright 2014-present, Facebook, Inc.
|
|
8393
8551
|
* All rights reserved.
|
|
@@ -8401,10 +8559,10 @@ module.exports = ReactDOMDebugTool;
|
|
|
8401
8559
|
|
|
8402
8560
|
'use strict';
|
|
8403
8561
|
|
|
8404
|
-
var _assign = _dereq_(
|
|
8562
|
+
var _assign = _dereq_(191);
|
|
8405
8563
|
|
|
8406
8564
|
var DOMLazyTree = _dereq_(8);
|
|
8407
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8565
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
8408
8566
|
|
|
8409
8567
|
var ReactDOMEmptyComponent = function (instantiate) {
|
|
8410
8568
|
// ReactCompositeComponent uses this:
|
|
@@ -8448,7 +8606,7 @@ _assign(ReactDOMEmptyComponent.prototype, {
|
|
|
8448
8606
|
});
|
|
8449
8607
|
|
|
8450
8608
|
module.exports = ReactDOMEmptyComponent;
|
|
8451
|
-
},{"
|
|
8609
|
+
},{"191":191,"46":46,"8":8}],50:[function(_dereq_,module,exports){
|
|
8452
8610
|
/**
|
|
8453
8611
|
* Copyright 2013-present, Facebook, Inc.
|
|
8454
8612
|
* All rights reserved.
|
|
@@ -8462,9 +8620,9 @@ module.exports = ReactDOMEmptyComponent;
|
|
|
8462
8620
|
|
|
8463
8621
|
'use strict';
|
|
8464
8622
|
|
|
8465
|
-
var ReactElement = _dereq_(
|
|
8623
|
+
var ReactElement = _dereq_(67);
|
|
8466
8624
|
|
|
8467
|
-
var mapObject = _dereq_(
|
|
8625
|
+
var mapObject = _dereq_(185);
|
|
8468
8626
|
|
|
8469
8627
|
/**
|
|
8470
8628
|
* Create a factory that creates HTML tag elements.
|
|
@@ -8474,7 +8632,7 @@ var mapObject = _dereq_(182);
|
|
|
8474
8632
|
*/
|
|
8475
8633
|
function createDOMFactory(tag) {
|
|
8476
8634
|
if ("development" !== 'production') {
|
|
8477
|
-
var ReactElementValidator = _dereq_(
|
|
8635
|
+
var ReactElementValidator = _dereq_(68);
|
|
8478
8636
|
return ReactElementValidator.createFactory(tag);
|
|
8479
8637
|
}
|
|
8480
8638
|
return ReactElement.createFactory(tag);
|
|
@@ -8625,7 +8783,7 @@ var ReactDOMFactories = mapObject({
|
|
|
8625
8783
|
}, createDOMFactory);
|
|
8626
8784
|
|
|
8627
8785
|
module.exports = ReactDOMFactories;
|
|
8628
|
-
},{"
|
|
8786
|
+
},{"185":185,"67":67,"68":68}],51:[function(_dereq_,module,exports){
|
|
8629
8787
|
/**
|
|
8630
8788
|
* Copyright 2013-present, Facebook, Inc.
|
|
8631
8789
|
* All rights reserved.
|
|
@@ -8644,7 +8802,7 @@ var ReactDOMFeatureFlags = {
|
|
|
8644
8802
|
};
|
|
8645
8803
|
|
|
8646
8804
|
module.exports = ReactDOMFeatureFlags;
|
|
8647
|
-
},{}],
|
|
8805
|
+
},{}],52:[function(_dereq_,module,exports){
|
|
8648
8806
|
/**
|
|
8649
8807
|
* Copyright 2013-present, Facebook, Inc.
|
|
8650
8808
|
* All rights reserved.
|
|
@@ -8659,7 +8817,7 @@ module.exports = ReactDOMFeatureFlags;
|
|
|
8659
8817
|
'use strict';
|
|
8660
8818
|
|
|
8661
8819
|
var DOMChildrenOperations = _dereq_(7);
|
|
8662
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8820
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
8663
8821
|
|
|
8664
8822
|
/**
|
|
8665
8823
|
* Operations used to process updates to DOM nodes.
|
|
@@ -8679,7 +8837,7 @@ var ReactDOMIDOperations = {
|
|
|
8679
8837
|
};
|
|
8680
8838
|
|
|
8681
8839
|
module.exports = ReactDOMIDOperations;
|
|
8682
|
-
},{"
|
|
8840
|
+
},{"46":46,"7":7}],53:[function(_dereq_,module,exports){
|
|
8683
8841
|
/**
|
|
8684
8842
|
* Copyright 2013-present, Facebook, Inc.
|
|
8685
8843
|
* All rights reserved.
|
|
@@ -8693,17 +8851,17 @@ module.exports = ReactDOMIDOperations;
|
|
|
8693
8851
|
|
|
8694
8852
|
'use strict';
|
|
8695
8853
|
|
|
8696
|
-
var _prodInvariant = _dereq_(
|
|
8697
|
-
_assign = _dereq_(
|
|
8854
|
+
var _prodInvariant = _dereq_(155),
|
|
8855
|
+
_assign = _dereq_(191);
|
|
8698
8856
|
|
|
8699
8857
|
var DisabledInputUtils = _dereq_(14);
|
|
8700
8858
|
var DOMPropertyOperations = _dereq_(11);
|
|
8701
8859
|
var LinkedValueUtils = _dereq_(25);
|
|
8702
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8703
|
-
var ReactUpdates = _dereq_(
|
|
8860
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
8861
|
+
var ReactUpdates = _dereq_(109);
|
|
8704
8862
|
|
|
8705
|
-
var invariant = _dereq_(
|
|
8706
|
-
var warning = _dereq_(
|
|
8863
|
+
var invariant = _dereq_(180);
|
|
8864
|
+
var warning = _dereq_(190);
|
|
8707
8865
|
|
|
8708
8866
|
var didWarnValueLink = false;
|
|
8709
8867
|
var didWarnCheckedLink = false;
|
|
@@ -8924,7 +9082,7 @@ function _handleChange(event) {
|
|
|
8924
9082
|
}
|
|
8925
9083
|
|
|
8926
9084
|
module.exports = ReactDOMInput;
|
|
8927
|
-
},{"
|
|
9085
|
+
},{"109":109,"11":11,"14":14,"155":155,"180":180,"190":190,"191":191,"25":25,"46":46}],54:[function(_dereq_,module,exports){
|
|
8928
9086
|
/**
|
|
8929
9087
|
* Copyright 2013-present, Facebook, Inc.
|
|
8930
9088
|
* All rights reserved.
|
|
@@ -8941,12 +9099,12 @@ module.exports = ReactDOMInput;
|
|
|
8941
9099
|
var debugTool = null;
|
|
8942
9100
|
|
|
8943
9101
|
if ("development" !== 'production') {
|
|
8944
|
-
var ReactDOMDebugTool = _dereq_(
|
|
9102
|
+
var ReactDOMDebugTool = _dereq_(48);
|
|
8945
9103
|
debugTool = ReactDOMDebugTool;
|
|
8946
9104
|
}
|
|
8947
9105
|
|
|
8948
9106
|
module.exports = { debugTool: debugTool };
|
|
8949
|
-
},{"
|
|
9107
|
+
},{"48":48}],55:[function(_dereq_,module,exports){
|
|
8950
9108
|
/**
|
|
8951
9109
|
* Copyright 2013-present, Facebook, Inc.
|
|
8952
9110
|
* All rights reserved.
|
|
@@ -8960,9 +9118,9 @@ module.exports = { debugTool: debugTool };
|
|
|
8960
9118
|
|
|
8961
9119
|
'use strict';
|
|
8962
9120
|
|
|
8963
|
-
var ReactComponentTreeDevtool = _dereq_(
|
|
9121
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
8964
9122
|
|
|
8965
|
-
var warning = _dereq_(
|
|
9123
|
+
var warning = _dereq_(190);
|
|
8966
9124
|
|
|
8967
9125
|
var didWarnValueNull = false;
|
|
8968
9126
|
|
|
@@ -8990,7 +9148,7 @@ var ReactDOMUnknownPropertyDevtool = {
|
|
|
8990
9148
|
};
|
|
8991
9149
|
|
|
8992
9150
|
module.exports = ReactDOMUnknownPropertyDevtool;
|
|
8993
|
-
},{"
|
|
9151
|
+
},{"190":190,"38":38}],56:[function(_dereq_,module,exports){
|
|
8994
9152
|
/**
|
|
8995
9153
|
* Copyright 2013-present, Facebook, Inc.
|
|
8996
9154
|
* All rights reserved.
|
|
@@ -9004,13 +9162,13 @@ module.exports = ReactDOMUnknownPropertyDevtool;
|
|
|
9004
9162
|
|
|
9005
9163
|
'use strict';
|
|
9006
9164
|
|
|
9007
|
-
var _assign = _dereq_(
|
|
9165
|
+
var _assign = _dereq_(191);
|
|
9008
9166
|
|
|
9009
9167
|
var ReactChildren = _dereq_(32);
|
|
9010
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9011
|
-
var ReactDOMSelect = _dereq_(
|
|
9168
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
9169
|
+
var ReactDOMSelect = _dereq_(57);
|
|
9012
9170
|
|
|
9013
|
-
var warning = _dereq_(
|
|
9171
|
+
var warning = _dereq_(190);
|
|
9014
9172
|
var didWarnInvalidOptionChildren = false;
|
|
9015
9173
|
|
|
9016
9174
|
function flattenChildren(children) {
|
|
@@ -9114,7 +9272,7 @@ var ReactDOMOption = {
|
|
|
9114
9272
|
};
|
|
9115
9273
|
|
|
9116
9274
|
module.exports = ReactDOMOption;
|
|
9117
|
-
},{"
|
|
9275
|
+
},{"190":190,"191":191,"32":32,"46":46,"57":57}],57:[function(_dereq_,module,exports){
|
|
9118
9276
|
/**
|
|
9119
9277
|
* Copyright 2013-present, Facebook, Inc.
|
|
9120
9278
|
* All rights reserved.
|
|
@@ -9128,14 +9286,14 @@ module.exports = ReactDOMOption;
|
|
|
9128
9286
|
|
|
9129
9287
|
'use strict';
|
|
9130
9288
|
|
|
9131
|
-
var _assign = _dereq_(
|
|
9289
|
+
var _assign = _dereq_(191);
|
|
9132
9290
|
|
|
9133
9291
|
var DisabledInputUtils = _dereq_(14);
|
|
9134
9292
|
var LinkedValueUtils = _dereq_(25);
|
|
9135
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9136
|
-
var ReactUpdates = _dereq_(
|
|
9293
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
9294
|
+
var ReactUpdates = _dereq_(109);
|
|
9137
9295
|
|
|
9138
|
-
var warning = _dereq_(
|
|
9296
|
+
var warning = _dereq_(190);
|
|
9139
9297
|
|
|
9140
9298
|
var didWarnValueLink = false;
|
|
9141
9299
|
var didWarnValueDefaultValue = false;
|
|
@@ -9315,7 +9473,7 @@ function _handleChange(event) {
|
|
|
9315
9473
|
}
|
|
9316
9474
|
|
|
9317
9475
|
module.exports = ReactDOMSelect;
|
|
9318
|
-
},{"
|
|
9476
|
+
},{"109":109,"14":14,"190":190,"191":191,"25":25,"46":46}],58:[function(_dereq_,module,exports){
|
|
9319
9477
|
/**
|
|
9320
9478
|
* Copyright 2013-present, Facebook, Inc.
|
|
9321
9479
|
* All rights reserved.
|
|
@@ -9329,10 +9487,10 @@ module.exports = ReactDOMSelect;
|
|
|
9329
9487
|
|
|
9330
9488
|
'use strict';
|
|
9331
9489
|
|
|
9332
|
-
var ExecutionEnvironment = _dereq_(
|
|
9490
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
9333
9491
|
|
|
9334
|
-
var getNodeForCharacterOffset = _dereq_(
|
|
9335
|
-
var getTextContentAccessor = _dereq_(
|
|
9492
|
+
var getNodeForCharacterOffset = _dereq_(147);
|
|
9493
|
+
var getTextContentAccessor = _dereq_(148);
|
|
9336
9494
|
|
|
9337
9495
|
/**
|
|
9338
9496
|
* While `isCollapsed` is available on the Selection object and `collapsed`
|
|
@@ -9528,7 +9686,7 @@ var ReactDOMSelection = {
|
|
|
9528
9686
|
};
|
|
9529
9687
|
|
|
9530
9688
|
module.exports = ReactDOMSelection;
|
|
9531
|
-
},{"
|
|
9689
|
+
},{"147":147,"148":148,"166":166}],59:[function(_dereq_,module,exports){
|
|
9532
9690
|
/**
|
|
9533
9691
|
* Copyright 2013-present, Facebook, Inc.
|
|
9534
9692
|
* All rights reserved.
|
|
@@ -9542,9 +9700,9 @@ module.exports = ReactDOMSelection;
|
|
|
9542
9700
|
|
|
9543
9701
|
'use strict';
|
|
9544
9702
|
|
|
9545
|
-
var ReactDefaultInjection = _dereq_(
|
|
9546
|
-
var ReactServerRendering = _dereq_(
|
|
9547
|
-
var ReactVersion = _dereq_(
|
|
9703
|
+
var ReactDefaultInjection = _dereq_(66);
|
|
9704
|
+
var ReactServerRendering = _dereq_(100);
|
|
9705
|
+
var ReactVersion = _dereq_(110);
|
|
9548
9706
|
|
|
9549
9707
|
ReactDefaultInjection.inject();
|
|
9550
9708
|
|
|
@@ -9555,7 +9713,7 @@ var ReactDOMServer = {
|
|
|
9555
9713
|
};
|
|
9556
9714
|
|
|
9557
9715
|
module.exports = ReactDOMServer;
|
|
9558
|
-
},{"
|
|
9716
|
+
},{"100":100,"110":110,"66":66}],60:[function(_dereq_,module,exports){
|
|
9559
9717
|
/**
|
|
9560
9718
|
* Copyright 2013-present, Facebook, Inc.
|
|
9561
9719
|
* All rights reserved.
|
|
@@ -9569,17 +9727,17 @@ module.exports = ReactDOMServer;
|
|
|
9569
9727
|
|
|
9570
9728
|
'use strict';
|
|
9571
9729
|
|
|
9572
|
-
var _prodInvariant = _dereq_(
|
|
9573
|
-
_assign = _dereq_(
|
|
9730
|
+
var _prodInvariant = _dereq_(155),
|
|
9731
|
+
_assign = _dereq_(191);
|
|
9574
9732
|
|
|
9575
9733
|
var DOMChildrenOperations = _dereq_(7);
|
|
9576
9734
|
var DOMLazyTree = _dereq_(8);
|
|
9577
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9578
|
-
var ReactInstrumentation = _dereq_(
|
|
9735
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
9736
|
+
var ReactInstrumentation = _dereq_(80);
|
|
9579
9737
|
|
|
9580
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
9581
|
-
var invariant = _dereq_(
|
|
9582
|
-
var validateDOMNesting = _dereq_(
|
|
9738
|
+
var escapeTextContentForBrowser = _dereq_(137);
|
|
9739
|
+
var invariant = _dereq_(180);
|
|
9740
|
+
var validateDOMNesting = _dereq_(163);
|
|
9583
9741
|
|
|
9584
9742
|
/**
|
|
9585
9743
|
* Text nodes violate a couple assumptions that React makes about components:
|
|
@@ -9727,7 +9885,7 @@ _assign(ReactDOMTextComponent.prototype, {
|
|
|
9727
9885
|
});
|
|
9728
9886
|
|
|
9729
9887
|
module.exports = ReactDOMTextComponent;
|
|
9730
|
-
},{"
|
|
9888
|
+
},{"137":137,"155":155,"163":163,"180":180,"191":191,"46":46,"7":7,"8":8,"80":80}],61:[function(_dereq_,module,exports){
|
|
9731
9889
|
/**
|
|
9732
9890
|
* Copyright 2013-present, Facebook, Inc.
|
|
9733
9891
|
* All rights reserved.
|
|
@@ -9741,16 +9899,16 @@ module.exports = ReactDOMTextComponent;
|
|
|
9741
9899
|
|
|
9742
9900
|
'use strict';
|
|
9743
9901
|
|
|
9744
|
-
var _prodInvariant = _dereq_(
|
|
9745
|
-
_assign = _dereq_(
|
|
9902
|
+
var _prodInvariant = _dereq_(155),
|
|
9903
|
+
_assign = _dereq_(191);
|
|
9746
9904
|
|
|
9747
9905
|
var DisabledInputUtils = _dereq_(14);
|
|
9748
9906
|
var LinkedValueUtils = _dereq_(25);
|
|
9749
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9750
|
-
var ReactUpdates = _dereq_(
|
|
9907
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
9908
|
+
var ReactUpdates = _dereq_(109);
|
|
9751
9909
|
|
|
9752
|
-
var invariant = _dereq_(
|
|
9753
|
-
var warning = _dereq_(
|
|
9910
|
+
var invariant = _dereq_(180);
|
|
9911
|
+
var warning = _dereq_(190);
|
|
9754
9912
|
|
|
9755
9913
|
var didWarnValueLink = false;
|
|
9756
9914
|
var didWarnValDefaultVal = false;
|
|
@@ -9883,7 +10041,7 @@ function _handleChange(event) {
|
|
|
9883
10041
|
}
|
|
9884
10042
|
|
|
9885
10043
|
module.exports = ReactDOMTextarea;
|
|
9886
|
-
},{"
|
|
10044
|
+
},{"109":109,"14":14,"155":155,"180":180,"190":190,"191":191,"25":25,"46":46}],62:[function(_dereq_,module,exports){
|
|
9887
10045
|
/**
|
|
9888
10046
|
* Copyright 2015-present, Facebook, Inc.
|
|
9889
10047
|
* All rights reserved.
|
|
@@ -9897,9 +10055,9 @@ module.exports = ReactDOMTextarea;
|
|
|
9897
10055
|
|
|
9898
10056
|
'use strict';
|
|
9899
10057
|
|
|
9900
|
-
var _prodInvariant = _dereq_(
|
|
10058
|
+
var _prodInvariant = _dereq_(155);
|
|
9901
10059
|
|
|
9902
|
-
var invariant = _dereq_(
|
|
10060
|
+
var invariant = _dereq_(180);
|
|
9903
10061
|
|
|
9904
10062
|
/**
|
|
9905
10063
|
* Return the lowest common ancestor of A and B, or null if they are in
|
|
@@ -10020,7 +10178,7 @@ module.exports = {
|
|
|
10020
10178
|
traverseTwoPhase: traverseTwoPhase,
|
|
10021
10179
|
traverseEnterLeave: traverseEnterLeave
|
|
10022
10180
|
};
|
|
10023
|
-
},{"
|
|
10181
|
+
},{"155":155,"180":180}],63:[function(_dereq_,module,exports){
|
|
10024
10182
|
/**
|
|
10025
10183
|
* Copyright 2013-present, Facebook, Inc.
|
|
10026
10184
|
* All rights reserved.
|
|
@@ -10036,9 +10194,9 @@ module.exports = {
|
|
|
10036
10194
|
|
|
10037
10195
|
var DOMProperty = _dereq_(10);
|
|
10038
10196
|
var EventPluginRegistry = _dereq_(18);
|
|
10039
|
-
var ReactComponentTreeDevtool = _dereq_(
|
|
10197
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
10040
10198
|
|
|
10041
|
-
var warning = _dereq_(
|
|
10199
|
+
var warning = _dereq_(190);
|
|
10042
10200
|
|
|
10043
10201
|
if ("development" !== 'production') {
|
|
10044
10202
|
var reactProps = {
|
|
@@ -10133,7 +10291,7 @@ var ReactDOMUnknownPropertyDevtool = {
|
|
|
10133
10291
|
};
|
|
10134
10292
|
|
|
10135
10293
|
module.exports = ReactDOMUnknownPropertyDevtool;
|
|
10136
|
-
},{"10":10,"18":18,"
|
|
10294
|
+
},{"10":10,"18":18,"190":190,"38":38}],64:[function(_dereq_,module,exports){
|
|
10137
10295
|
/**
|
|
10138
10296
|
* Copyright 2016-present, Facebook, Inc.
|
|
10139
10297
|
* All rights reserved.
|
|
@@ -10147,13 +10305,14 @@ module.exports = ReactDOMUnknownPropertyDevtool;
|
|
|
10147
10305
|
|
|
10148
10306
|
'use strict';
|
|
10149
10307
|
|
|
10150
|
-
var ReactInvalidSetStateWarningDevTool = _dereq_(
|
|
10151
|
-
var ReactHostOperationHistoryDevtool = _dereq_(
|
|
10152
|
-
var ReactComponentTreeDevtool = _dereq_(
|
|
10153
|
-
var
|
|
10308
|
+
var ReactInvalidSetStateWarningDevTool = _dereq_(81);
|
|
10309
|
+
var ReactHostOperationHistoryDevtool = _dereq_(76);
|
|
10310
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
10311
|
+
var ReactChildrenMutationWarningDevtool = _dereq_(33);
|
|
10312
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
10154
10313
|
|
|
10155
|
-
var performanceNow = _dereq_(
|
|
10156
|
-
var warning = _dereq_(
|
|
10314
|
+
var performanceNow = _dereq_(188);
|
|
10315
|
+
var warning = _dereq_(190);
|
|
10157
10316
|
|
|
10158
10317
|
var eventHandlers = [];
|
|
10159
10318
|
var handlerDoesThrowForEvent = {};
|
|
@@ -10376,6 +10535,14 @@ var ReactDebugTool = {
|
|
|
10376
10535
|
checkDebugID(debugID);
|
|
10377
10536
|
emitEvent('onHostOperation', debugID, type, payload);
|
|
10378
10537
|
},
|
|
10538
|
+
onComponentHasMounted: function (debugID) {
|
|
10539
|
+
checkDebugID(debugID);
|
|
10540
|
+
emitEvent('onComponentHasMounted', debugID);
|
|
10541
|
+
},
|
|
10542
|
+
onComponentHasUpdated: function (debugID) {
|
|
10543
|
+
checkDebugID(debugID);
|
|
10544
|
+
emitEvent('onComponentHasUpdated', debugID);
|
|
10545
|
+
},
|
|
10379
10546
|
onSetState: function () {
|
|
10380
10547
|
emitEvent('onSetState');
|
|
10381
10548
|
},
|
|
@@ -10431,13 +10598,14 @@ var ReactDebugTool = {
|
|
|
10431
10598
|
|
|
10432
10599
|
ReactDebugTool.addDevtool(ReactInvalidSetStateWarningDevTool);
|
|
10433
10600
|
ReactDebugTool.addDevtool(ReactComponentTreeDevtool);
|
|
10601
|
+
ReactDebugTool.addDevtool(ReactChildrenMutationWarningDevtool);
|
|
10434
10602
|
var url = ExecutionEnvironment.canUseDOM && window.location.href || '';
|
|
10435
10603
|
if (/[?&]react_perf\b/.test(url)) {
|
|
10436
10604
|
ReactDebugTool.beginProfiling();
|
|
10437
10605
|
}
|
|
10438
10606
|
|
|
10439
10607
|
module.exports = ReactDebugTool;
|
|
10440
|
-
},{"
|
|
10608
|
+
},{"166":166,"188":188,"190":190,"33":33,"38":38,"76":76,"81":81}],65:[function(_dereq_,module,exports){
|
|
10441
10609
|
/**
|
|
10442
10610
|
* Copyright 2013-present, Facebook, Inc.
|
|
10443
10611
|
* All rights reserved.
|
|
@@ -10451,12 +10619,12 @@ module.exports = ReactDebugTool;
|
|
|
10451
10619
|
|
|
10452
10620
|
'use strict';
|
|
10453
10621
|
|
|
10454
|
-
var _assign = _dereq_(
|
|
10622
|
+
var _assign = _dereq_(191);
|
|
10455
10623
|
|
|
10456
|
-
var ReactUpdates = _dereq_(
|
|
10457
|
-
var Transaction = _dereq_(
|
|
10624
|
+
var ReactUpdates = _dereq_(109);
|
|
10625
|
+
var Transaction = _dereq_(129);
|
|
10458
10626
|
|
|
10459
|
-
var emptyFunction = _dereq_(
|
|
10627
|
+
var emptyFunction = _dereq_(172);
|
|
10460
10628
|
|
|
10461
10629
|
var RESET_BATCHED_UPDATES = {
|
|
10462
10630
|
initialize: emptyFunction,
|
|
@@ -10506,7 +10674,7 @@ var ReactDefaultBatchingStrategy = {
|
|
|
10506
10674
|
};
|
|
10507
10675
|
|
|
10508
10676
|
module.exports = ReactDefaultBatchingStrategy;
|
|
10509
|
-
},{"
|
|
10677
|
+
},{"109":109,"129":129,"172":172,"191":191}],66:[function(_dereq_,module,exports){
|
|
10510
10678
|
/**
|
|
10511
10679
|
* Copyright 2013-present, Facebook, Inc.
|
|
10512
10680
|
* All rights reserved.
|
|
@@ -10525,19 +10693,19 @@ var ChangeEventPlugin = _dereq_(6);
|
|
|
10525
10693
|
var DefaultEventPluginOrder = _dereq_(13);
|
|
10526
10694
|
var EnterLeaveEventPlugin = _dereq_(15);
|
|
10527
10695
|
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_(
|
|
10696
|
+
var ReactComponentBrowserEnvironment = _dereq_(36);
|
|
10697
|
+
var ReactDOMComponent = _dereq_(44);
|
|
10698
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
10699
|
+
var ReactDOMEmptyComponent = _dereq_(49);
|
|
10700
|
+
var ReactDOMTreeTraversal = _dereq_(62);
|
|
10701
|
+
var ReactDOMTextComponent = _dereq_(60);
|
|
10702
|
+
var ReactDefaultBatchingStrategy = _dereq_(65);
|
|
10703
|
+
var ReactEventListener = _dereq_(72);
|
|
10704
|
+
var ReactInjection = _dereq_(77);
|
|
10705
|
+
var ReactReconcileTransaction = _dereq_(96);
|
|
10706
|
+
var SVGDOMPropertyConfig = _dereq_(113);
|
|
10707
|
+
var SelectEventPlugin = _dereq_(114);
|
|
10708
|
+
var SimpleEventPlugin = _dereq_(115);
|
|
10541
10709
|
|
|
10542
10710
|
var alreadyInjected = false;
|
|
10543
10711
|
|
|
@@ -10591,7 +10759,7 @@ function inject() {
|
|
|
10591
10759
|
module.exports = {
|
|
10592
10760
|
inject: inject
|
|
10593
10761
|
};
|
|
10594
|
-
},{"
|
|
10762
|
+
},{"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
10763
|
/**
|
|
10596
10764
|
* Copyright 2014-present, Facebook, Inc.
|
|
10597
10765
|
* All rights reserved.
|
|
@@ -10605,12 +10773,12 @@ module.exports = {
|
|
|
10605
10773
|
|
|
10606
10774
|
'use strict';
|
|
10607
10775
|
|
|
10608
|
-
var _assign = _dereq_(
|
|
10776
|
+
var _assign = _dereq_(191);
|
|
10609
10777
|
|
|
10610
|
-
var ReactCurrentOwner = _dereq_(
|
|
10778
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
10611
10779
|
|
|
10612
|
-
var warning = _dereq_(
|
|
10613
|
-
var canDefineProperty = _dereq_(
|
|
10780
|
+
var warning = _dereq_(190);
|
|
10781
|
+
var canDefineProperty = _dereq_(133);
|
|
10614
10782
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
10615
10783
|
|
|
10616
10784
|
// The Symbol used to tag the ReactElement type. If there is no native Symbol
|
|
@@ -10691,6 +10859,7 @@ var ReactElement = function (type, key, ref, self, source, owner, props) {
|
|
|
10691
10859
|
// This can be replaced with a WeakMap once they are implemented in
|
|
10692
10860
|
// commonly used development environments.
|
|
10693
10861
|
element._store = {};
|
|
10862
|
+
var shadowChildren = Array.isArray(props.children) ? props.children.slice(0) : props.children;
|
|
10694
10863
|
|
|
10695
10864
|
// To make comparing ReactElements easier for testing purposes, we make
|
|
10696
10865
|
// the validation flag non-enumerable (where possible, which should
|
|
@@ -10710,6 +10879,12 @@ var ReactElement = function (type, key, ref, self, source, owner, props) {
|
|
|
10710
10879
|
writable: false,
|
|
10711
10880
|
value: self
|
|
10712
10881
|
});
|
|
10882
|
+
Object.defineProperty(element, '_shadowChildren', {
|
|
10883
|
+
configurable: false,
|
|
10884
|
+
enumerable: false,
|
|
10885
|
+
writable: false,
|
|
10886
|
+
value: shadowChildren
|
|
10887
|
+
});
|
|
10713
10888
|
// Two elements created in two different places should be considered
|
|
10714
10889
|
// equal for testing purposes and therefore we hide it from enumeration.
|
|
10715
10890
|
Object.defineProperty(element, '_source', {
|
|
@@ -10721,6 +10896,7 @@ var ReactElement = function (type, key, ref, self, source, owner, props) {
|
|
|
10721
10896
|
} else {
|
|
10722
10897
|
element._store.validated = false;
|
|
10723
10898
|
element._self = self;
|
|
10899
|
+
element._shadowChildren = shadowChildren;
|
|
10724
10900
|
element._source = source;
|
|
10725
10901
|
}
|
|
10726
10902
|
if (Object.freeze) {
|
|
@@ -10944,7 +11120,7 @@ ReactElement.isValidElement = function (object) {
|
|
|
10944
11120
|
ReactElement.REACT_ELEMENT_TYPE = REACT_ELEMENT_TYPE;
|
|
10945
11121
|
|
|
10946
11122
|
module.exports = ReactElement;
|
|
10947
|
-
},{"
|
|
11123
|
+
},{"133":133,"190":190,"191":191,"41":41}],68:[function(_dereq_,module,exports){
|
|
10948
11124
|
/**
|
|
10949
11125
|
* Copyright 2014-present, Facebook, Inc.
|
|
10950
11126
|
* All rights reserved.
|
|
@@ -10965,16 +11141,16 @@ module.exports = ReactElement;
|
|
|
10965
11141
|
|
|
10966
11142
|
'use strict';
|
|
10967
11143
|
|
|
10968
|
-
var ReactCurrentOwner = _dereq_(
|
|
10969
|
-
var ReactComponentTreeDevtool = _dereq_(
|
|
10970
|
-
var ReactElement = _dereq_(
|
|
10971
|
-
var ReactPropTypeLocations = _dereq_(
|
|
11144
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
11145
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
11146
|
+
var ReactElement = _dereq_(67);
|
|
11147
|
+
var ReactPropTypeLocations = _dereq_(92);
|
|
10972
11148
|
|
|
10973
|
-
var checkReactTypeSpec = _dereq_(
|
|
11149
|
+
var checkReactTypeSpec = _dereq_(134);
|
|
10974
11150
|
|
|
10975
|
-
var canDefineProperty = _dereq_(
|
|
10976
|
-
var getIteratorFn = _dereq_(
|
|
10977
|
-
var warning = _dereq_(
|
|
11151
|
+
var canDefineProperty = _dereq_(133);
|
|
11152
|
+
var getIteratorFn = _dereq_(146);
|
|
11153
|
+
var warning = _dereq_(190);
|
|
10978
11154
|
|
|
10979
11155
|
function getDeclarationErrorAddendum() {
|
|
10980
11156
|
if (ReactCurrentOwner.current) {
|
|
@@ -11171,7 +11347,7 @@ var ReactElementValidator = {
|
|
|
11171
11347
|
};
|
|
11172
11348
|
|
|
11173
11349
|
module.exports = ReactElementValidator;
|
|
11174
|
-
},{"
|
|
11350
|
+
},{"133":133,"134":134,"146":146,"190":190,"38":38,"41":41,"67":67,"92":92}],69:[function(_dereq_,module,exports){
|
|
11175
11351
|
/**
|
|
11176
11352
|
* Copyright 2014-present, Facebook, Inc.
|
|
11177
11353
|
* All rights reserved.
|
|
@@ -11202,7 +11378,7 @@ var ReactEmptyComponent = {
|
|
|
11202
11378
|
ReactEmptyComponent.injection = ReactEmptyComponentInjection;
|
|
11203
11379
|
|
|
11204
11380
|
module.exports = ReactEmptyComponent;
|
|
11205
|
-
},{}],
|
|
11381
|
+
},{}],70:[function(_dereq_,module,exports){
|
|
11206
11382
|
/**
|
|
11207
11383
|
* Copyright 2013-present, Facebook, Inc.
|
|
11208
11384
|
* All rights reserved.
|
|
@@ -11279,7 +11455,7 @@ if ("development" !== 'production') {
|
|
|
11279
11455
|
}
|
|
11280
11456
|
|
|
11281
11457
|
module.exports = ReactErrorUtils;
|
|
11282
|
-
},{}],
|
|
11458
|
+
},{}],71:[function(_dereq_,module,exports){
|
|
11283
11459
|
/**
|
|
11284
11460
|
* Copyright 2013-present, Facebook, Inc.
|
|
11285
11461
|
* All rights reserved.
|
|
@@ -11313,7 +11489,7 @@ var ReactEventEmitterMixin = {
|
|
|
11313
11489
|
};
|
|
11314
11490
|
|
|
11315
11491
|
module.exports = ReactEventEmitterMixin;
|
|
11316
|
-
},{"17":17}],
|
|
11492
|
+
},{"17":17}],72:[function(_dereq_,module,exports){
|
|
11317
11493
|
/**
|
|
11318
11494
|
* Copyright 2013-present, Facebook, Inc.
|
|
11319
11495
|
* All rights reserved.
|
|
@@ -11327,16 +11503,16 @@ module.exports = ReactEventEmitterMixin;
|
|
|
11327
11503
|
|
|
11328
11504
|
'use strict';
|
|
11329
11505
|
|
|
11330
|
-
var _assign = _dereq_(
|
|
11506
|
+
var _assign = _dereq_(191);
|
|
11331
11507
|
|
|
11332
|
-
var EventListener = _dereq_(
|
|
11333
|
-
var ExecutionEnvironment = _dereq_(
|
|
11508
|
+
var EventListener = _dereq_(165);
|
|
11509
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
11334
11510
|
var PooledClass = _dereq_(26);
|
|
11335
|
-
var ReactDOMComponentTree = _dereq_(
|
|
11336
|
-
var ReactUpdates = _dereq_(
|
|
11511
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
11512
|
+
var ReactUpdates = _dereq_(109);
|
|
11337
11513
|
|
|
11338
|
-
var getEventTarget = _dereq_(
|
|
11339
|
-
var getUnboundedScrollPosition = _dereq_(
|
|
11514
|
+
var getEventTarget = _dereq_(144);
|
|
11515
|
+
var getUnboundedScrollPosition = _dereq_(177);
|
|
11340
11516
|
|
|
11341
11517
|
/**
|
|
11342
11518
|
* Find the deepest React component completely containing the root of the
|
|
@@ -11471,7 +11647,7 @@ var ReactEventListener = {
|
|
|
11471
11647
|
};
|
|
11472
11648
|
|
|
11473
11649
|
module.exports = ReactEventListener;
|
|
11474
|
-
},{"
|
|
11650
|
+
},{"109":109,"144":144,"165":165,"166":166,"177":177,"191":191,"26":26,"46":46}],73:[function(_dereq_,module,exports){
|
|
11475
11651
|
/**
|
|
11476
11652
|
* Copyright 2013-present, Facebook, Inc.
|
|
11477
11653
|
* All rights reserved.
|
|
@@ -11494,7 +11670,7 @@ var ReactFeatureFlags = {
|
|
|
11494
11670
|
};
|
|
11495
11671
|
|
|
11496
11672
|
module.exports = ReactFeatureFlags;
|
|
11497
|
-
},{}],
|
|
11673
|
+
},{}],74:[function(_dereq_,module,exports){
|
|
11498
11674
|
/**
|
|
11499
11675
|
* Copyright 2015-present, Facebook, Inc.
|
|
11500
11676
|
* All rights reserved.
|
|
@@ -11508,14 +11684,14 @@ module.exports = ReactFeatureFlags;
|
|
|
11508
11684
|
|
|
11509
11685
|
'use strict';
|
|
11510
11686
|
|
|
11511
|
-
var _prodInvariant = _dereq_(
|
|
11687
|
+
var _prodInvariant = _dereq_(155);
|
|
11512
11688
|
|
|
11513
11689
|
var ReactChildren = _dereq_(32);
|
|
11514
|
-
var ReactElement = _dereq_(
|
|
11690
|
+
var ReactElement = _dereq_(67);
|
|
11515
11691
|
|
|
11516
|
-
var emptyFunction = _dereq_(
|
|
11517
|
-
var invariant = _dereq_(
|
|
11518
|
-
var warning = _dereq_(
|
|
11692
|
+
var emptyFunction = _dereq_(172);
|
|
11693
|
+
var invariant = _dereq_(180);
|
|
11694
|
+
var warning = _dereq_(190);
|
|
11519
11695
|
|
|
11520
11696
|
/**
|
|
11521
11697
|
* We used to allow keyed objects to serve as a collection of ReactElements,
|
|
@@ -11564,7 +11740,7 @@ var ReactFragment = {
|
|
|
11564
11740
|
};
|
|
11565
11741
|
|
|
11566
11742
|
module.exports = ReactFragment;
|
|
11567
|
-
},{"
|
|
11743
|
+
},{"155":155,"172":172,"180":180,"190":190,"32":32,"67":67}],75:[function(_dereq_,module,exports){
|
|
11568
11744
|
/**
|
|
11569
11745
|
* Copyright 2014-present, Facebook, Inc.
|
|
11570
11746
|
* All rights reserved.
|
|
@@ -11578,10 +11754,10 @@ module.exports = ReactFragment;
|
|
|
11578
11754
|
|
|
11579
11755
|
'use strict';
|
|
11580
11756
|
|
|
11581
|
-
var _prodInvariant = _dereq_(
|
|
11582
|
-
_assign = _dereq_(
|
|
11757
|
+
var _prodInvariant = _dereq_(155),
|
|
11758
|
+
_assign = _dereq_(191);
|
|
11583
11759
|
|
|
11584
|
-
var invariant = _dereq_(
|
|
11760
|
+
var invariant = _dereq_(180);
|
|
11585
11761
|
|
|
11586
11762
|
var genericComponentClass = null;
|
|
11587
11763
|
// This registry keeps track of wrapper classes around host tags.
|
|
@@ -11641,7 +11817,7 @@ var ReactHostComponent = {
|
|
|
11641
11817
|
};
|
|
11642
11818
|
|
|
11643
11819
|
module.exports = ReactHostComponent;
|
|
11644
|
-
},{"
|
|
11820
|
+
},{"155":155,"180":180,"191":191}],76:[function(_dereq_,module,exports){
|
|
11645
11821
|
/**
|
|
11646
11822
|
* Copyright 2016-present, Facebook, Inc.
|
|
11647
11823
|
* All rights reserved.
|
|
@@ -11679,7 +11855,7 @@ var ReactHostOperationHistoryDevtool = {
|
|
|
11679
11855
|
};
|
|
11680
11856
|
|
|
11681
11857
|
module.exports = ReactHostOperationHistoryDevtool;
|
|
11682
|
-
},{}],
|
|
11858
|
+
},{}],77:[function(_dereq_,module,exports){
|
|
11683
11859
|
/**
|
|
11684
11860
|
* Copyright 2013-present, Facebook, Inc.
|
|
11685
11861
|
* All rights reserved.
|
|
@@ -11696,12 +11872,12 @@ module.exports = ReactHostOperationHistoryDevtool;
|
|
|
11696
11872
|
var DOMProperty = _dereq_(10);
|
|
11697
11873
|
var EventPluginHub = _dereq_(17);
|
|
11698
11874
|
var EventPluginUtils = _dereq_(19);
|
|
11699
|
-
var ReactComponentEnvironment = _dereq_(
|
|
11700
|
-
var ReactClass = _dereq_(
|
|
11701
|
-
var ReactEmptyComponent = _dereq_(
|
|
11875
|
+
var ReactComponentEnvironment = _dereq_(37);
|
|
11876
|
+
var ReactClass = _dereq_(34);
|
|
11877
|
+
var ReactEmptyComponent = _dereq_(69);
|
|
11702
11878
|
var ReactBrowserEventEmitter = _dereq_(28);
|
|
11703
|
-
var ReactHostComponent = _dereq_(
|
|
11704
|
-
var ReactUpdates = _dereq_(
|
|
11879
|
+
var ReactHostComponent = _dereq_(75);
|
|
11880
|
+
var ReactUpdates = _dereq_(109);
|
|
11705
11881
|
|
|
11706
11882
|
var ReactInjection = {
|
|
11707
11883
|
Component: ReactComponentEnvironment.injection,
|
|
@@ -11716,7 +11892,7 @@ var ReactInjection = {
|
|
|
11716
11892
|
};
|
|
11717
11893
|
|
|
11718
11894
|
module.exports = ReactInjection;
|
|
11719
|
-
},{"10":10,"
|
|
11895
|
+
},{"10":10,"109":109,"17":17,"19":19,"28":28,"34":34,"37":37,"69":69,"75":75}],78:[function(_dereq_,module,exports){
|
|
11720
11896
|
/**
|
|
11721
11897
|
* Copyright 2013-present, Facebook, Inc.
|
|
11722
11898
|
* All rights reserved.
|
|
@@ -11730,11 +11906,11 @@ module.exports = ReactInjection;
|
|
|
11730
11906
|
|
|
11731
11907
|
'use strict';
|
|
11732
11908
|
|
|
11733
|
-
var ReactDOMSelection = _dereq_(
|
|
11909
|
+
var ReactDOMSelection = _dereq_(58);
|
|
11734
11910
|
|
|
11735
|
-
var containsNode = _dereq_(
|
|
11736
|
-
var focusNode = _dereq_(
|
|
11737
|
-
var getActiveElement = _dereq_(
|
|
11911
|
+
var containsNode = _dereq_(169);
|
|
11912
|
+
var focusNode = _dereq_(174);
|
|
11913
|
+
var getActiveElement = _dereq_(175);
|
|
11738
11914
|
|
|
11739
11915
|
function isInDocument(node) {
|
|
11740
11916
|
return containsNode(document.documentElement, node);
|
|
@@ -11841,7 +12017,7 @@ var ReactInputSelection = {
|
|
|
11841
12017
|
};
|
|
11842
12018
|
|
|
11843
12019
|
module.exports = ReactInputSelection;
|
|
11844
|
-
},{"
|
|
12020
|
+
},{"169":169,"174":174,"175":175,"58":58}],79:[function(_dereq_,module,exports){
|
|
11845
12021
|
/**
|
|
11846
12022
|
* Copyright 2013-present, Facebook, Inc.
|
|
11847
12023
|
* All rights reserved.
|
|
@@ -11890,7 +12066,7 @@ var ReactInstanceMap = {
|
|
|
11890
12066
|
};
|
|
11891
12067
|
|
|
11892
12068
|
module.exports = ReactInstanceMap;
|
|
11893
|
-
},{}],
|
|
12069
|
+
},{}],80:[function(_dereq_,module,exports){
|
|
11894
12070
|
/**
|
|
11895
12071
|
* Copyright 2016-present, Facebook, Inc.
|
|
11896
12072
|
* All rights reserved.
|
|
@@ -11907,12 +12083,12 @@ module.exports = ReactInstanceMap;
|
|
|
11907
12083
|
var debugTool = null;
|
|
11908
12084
|
|
|
11909
12085
|
if ("development" !== 'production') {
|
|
11910
|
-
var ReactDebugTool = _dereq_(
|
|
12086
|
+
var ReactDebugTool = _dereq_(64);
|
|
11911
12087
|
debugTool = ReactDebugTool;
|
|
11912
12088
|
}
|
|
11913
12089
|
|
|
11914
12090
|
module.exports = { debugTool: debugTool };
|
|
11915
|
-
},{"
|
|
12091
|
+
},{"64":64}],81:[function(_dereq_,module,exports){
|
|
11916
12092
|
/**
|
|
11917
12093
|
* Copyright 2016-present, Facebook, Inc.
|
|
11918
12094
|
* All rights reserved.
|
|
@@ -11926,7 +12102,7 @@ module.exports = { debugTool: debugTool };
|
|
|
11926
12102
|
|
|
11927
12103
|
'use strict';
|
|
11928
12104
|
|
|
11929
|
-
var warning = _dereq_(
|
|
12105
|
+
var warning = _dereq_(190);
|
|
11930
12106
|
|
|
11931
12107
|
if ("development" !== 'production') {
|
|
11932
12108
|
var processingChildContext = false;
|
|
@@ -11949,7 +12125,7 @@ var ReactInvalidSetStateWarningDevTool = {
|
|
|
11949
12125
|
};
|
|
11950
12126
|
|
|
11951
12127
|
module.exports = ReactInvalidSetStateWarningDevTool;
|
|
11952
|
-
},{"
|
|
12128
|
+
},{"190":190}],82:[function(_dereq_,module,exports){
|
|
11953
12129
|
/**
|
|
11954
12130
|
* Copyright 2013-present, Facebook, Inc.
|
|
11955
12131
|
* All rights reserved.
|
|
@@ -12021,7 +12197,7 @@ ReactLink.PropTypes = {
|
|
|
12021
12197
|
};
|
|
12022
12198
|
|
|
12023
12199
|
module.exports = ReactLink;
|
|
12024
|
-
},{"27":27}],
|
|
12200
|
+
},{"27":27}],83:[function(_dereq_,module,exports){
|
|
12025
12201
|
/**
|
|
12026
12202
|
* Copyright 2013-present, Facebook, Inc.
|
|
12027
12203
|
* All rights reserved.
|
|
@@ -12035,7 +12211,7 @@ module.exports = ReactLink;
|
|
|
12035
12211
|
|
|
12036
12212
|
'use strict';
|
|
12037
12213
|
|
|
12038
|
-
var adler32 = _dereq_(
|
|
12214
|
+
var adler32 = _dereq_(132);
|
|
12039
12215
|
|
|
12040
12216
|
var TAG_END = /\/?>/;
|
|
12041
12217
|
var COMMENT_START = /^<\!\-\-/;
|
|
@@ -12072,7 +12248,7 @@ var ReactMarkupChecksum = {
|
|
|
12072
12248
|
};
|
|
12073
12249
|
|
|
12074
12250
|
module.exports = ReactMarkupChecksum;
|
|
12075
|
-
},{"
|
|
12251
|
+
},{"132":132}],84:[function(_dereq_,module,exports){
|
|
12076
12252
|
/**
|
|
12077
12253
|
* Copyright 2013-present, Facebook, Inc.
|
|
12078
12254
|
* All rights reserved.
|
|
@@ -12086,30 +12262,30 @@ module.exports = ReactMarkupChecksum;
|
|
|
12086
12262
|
|
|
12087
12263
|
'use strict';
|
|
12088
12264
|
|
|
12089
|
-
var _prodInvariant = _dereq_(
|
|
12265
|
+
var _prodInvariant = _dereq_(155);
|
|
12090
12266
|
|
|
12091
12267
|
var DOMLazyTree = _dereq_(8);
|
|
12092
12268
|
var DOMProperty = _dereq_(10);
|
|
12093
12269
|
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_(
|
|
12270
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
12271
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
12272
|
+
var ReactDOMContainerInfo = _dereq_(47);
|
|
12273
|
+
var ReactDOMFeatureFlags = _dereq_(51);
|
|
12274
|
+
var ReactElement = _dereq_(67);
|
|
12275
|
+
var ReactFeatureFlags = _dereq_(73);
|
|
12276
|
+
var ReactInstanceMap = _dereq_(79);
|
|
12277
|
+
var ReactInstrumentation = _dereq_(80);
|
|
12278
|
+
var ReactMarkupChecksum = _dereq_(83);
|
|
12279
|
+
var ReactReconciler = _dereq_(97);
|
|
12280
|
+
var ReactUpdateQueue = _dereq_(108);
|
|
12281
|
+
var ReactUpdates = _dereq_(109);
|
|
12282
|
+
|
|
12283
|
+
var emptyObject = _dereq_(173);
|
|
12284
|
+
var instantiateReactComponent = _dereq_(150);
|
|
12285
|
+
var invariant = _dereq_(180);
|
|
12286
|
+
var setInnerHTML = _dereq_(157);
|
|
12287
|
+
var shouldUpdateReactComponent = _dereq_(160);
|
|
12288
|
+
var warning = _dereq_(190);
|
|
12113
12289
|
|
|
12114
12290
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
12115
12291
|
var ROOT_ATTR_NAME = DOMProperty.ROOT_ATTRIBUTE_NAME;
|
|
@@ -12572,7 +12748,7 @@ var ReactMount = {
|
|
|
12572
12748
|
};
|
|
12573
12749
|
|
|
12574
12750
|
module.exports = ReactMount;
|
|
12575
|
-
},{"10":10,"
|
|
12751
|
+
},{"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
12752
|
/**
|
|
12577
12753
|
* Copyright 2013-present, Facebook, Inc.
|
|
12578
12754
|
* All rights reserved.
|
|
@@ -12586,20 +12762,20 @@ module.exports = ReactMount;
|
|
|
12586
12762
|
|
|
12587
12763
|
'use strict';
|
|
12588
12764
|
|
|
12589
|
-
var _prodInvariant = _dereq_(
|
|
12765
|
+
var _prodInvariant = _dereq_(155);
|
|
12590
12766
|
|
|
12591
|
-
var ReactComponentEnvironment = _dereq_(
|
|
12592
|
-
var ReactInstanceMap = _dereq_(
|
|
12593
|
-
var ReactInstrumentation = _dereq_(
|
|
12594
|
-
var ReactMultiChildUpdateTypes = _dereq_(
|
|
12767
|
+
var ReactComponentEnvironment = _dereq_(37);
|
|
12768
|
+
var ReactInstanceMap = _dereq_(79);
|
|
12769
|
+
var ReactInstrumentation = _dereq_(80);
|
|
12770
|
+
var ReactMultiChildUpdateTypes = _dereq_(86);
|
|
12595
12771
|
|
|
12596
|
-
var ReactCurrentOwner = _dereq_(
|
|
12597
|
-
var ReactReconciler = _dereq_(
|
|
12772
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
12773
|
+
var ReactReconciler = _dereq_(97);
|
|
12598
12774
|
var ReactChildReconciler = _dereq_(31);
|
|
12599
12775
|
|
|
12600
|
-
var emptyFunction = _dereq_(
|
|
12601
|
-
var flattenChildren = _dereq_(
|
|
12602
|
-
var invariant = _dereq_(
|
|
12776
|
+
var emptyFunction = _dereq_(172);
|
|
12777
|
+
var flattenChildren = _dereq_(139);
|
|
12778
|
+
var invariant = _dereq_(180);
|
|
12603
12779
|
|
|
12604
12780
|
/**
|
|
12605
12781
|
* Make an update for markup to be rendered and inserted at a supplied index.
|
|
@@ -12775,7 +12951,7 @@ var ReactMultiChild = {
|
|
|
12775
12951
|
return ReactChildReconciler.instantiateChildren(nestedChildren, transaction, context);
|
|
12776
12952
|
},
|
|
12777
12953
|
|
|
12778
|
-
_reconcilerUpdateChildren: function (prevChildren, nextNestedChildrenElements, removedNodes, transaction, context) {
|
|
12954
|
+
_reconcilerUpdateChildren: function (prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context) {
|
|
12779
12955
|
var nextChildren;
|
|
12780
12956
|
if ("development" !== 'production') {
|
|
12781
12957
|
if (this._currentElement) {
|
|
@@ -12785,12 +12961,12 @@ var ReactMultiChild = {
|
|
|
12785
12961
|
} finally {
|
|
12786
12962
|
ReactCurrentOwner.current = null;
|
|
12787
12963
|
}
|
|
12788
|
-
ReactChildReconciler.updateChildren(prevChildren, nextChildren, removedNodes, transaction, context);
|
|
12964
|
+
ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context);
|
|
12789
12965
|
return nextChildren;
|
|
12790
12966
|
}
|
|
12791
12967
|
}
|
|
12792
12968
|
nextChildren = flattenChildren(nextNestedChildrenElements);
|
|
12793
|
-
ReactChildReconciler.updateChildren(prevChildren, nextChildren, removedNodes, transaction, context);
|
|
12969
|
+
ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context);
|
|
12794
12970
|
return nextChildren;
|
|
12795
12971
|
},
|
|
12796
12972
|
|
|
@@ -12887,7 +13063,8 @@ var ReactMultiChild = {
|
|
|
12887
13063
|
_updateChildren: function (nextNestedChildrenElements, transaction, context) {
|
|
12888
13064
|
var prevChildren = this._renderedChildren;
|
|
12889
13065
|
var removedNodes = {};
|
|
12890
|
-
var
|
|
13066
|
+
var mountImages = [];
|
|
13067
|
+
var nextChildren = this._reconcilerUpdateChildren(prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context);
|
|
12891
13068
|
if (!nextChildren && !prevChildren) {
|
|
12892
13069
|
return;
|
|
12893
13070
|
}
|
|
@@ -12895,8 +13072,10 @@ var ReactMultiChild = {
|
|
|
12895
13072
|
var name;
|
|
12896
13073
|
// `nextIndex` will increment for each child in `nextChildren`, but
|
|
12897
13074
|
// `lastIndex` will be the last index visited in `prevChildren`.
|
|
12898
|
-
var lastIndex = 0;
|
|
12899
13075
|
var nextIndex = 0;
|
|
13076
|
+
var lastIndex = 0;
|
|
13077
|
+
// `nextMountIndex` will increment for each newly mounted child.
|
|
13078
|
+
var nextMountIndex = 0;
|
|
12900
13079
|
var lastPlacedNode = null;
|
|
12901
13080
|
for (name in nextChildren) {
|
|
12902
13081
|
if (!nextChildren.hasOwnProperty(name)) {
|
|
@@ -12915,7 +13094,8 @@ var ReactMultiChild = {
|
|
|
12915
13094
|
// The `removedNodes` loop below will actually remove the child.
|
|
12916
13095
|
}
|
|
12917
13096
|
// The child must be instantiated before it's mounted.
|
|
12918
|
-
updates = enqueue(updates, this._mountChildAtIndex(nextChild, lastPlacedNode, nextIndex, transaction, context));
|
|
13097
|
+
updates = enqueue(updates, this._mountChildAtIndex(nextChild, mountImages[nextMountIndex], lastPlacedNode, nextIndex, transaction, context));
|
|
13098
|
+
nextMountIndex++;
|
|
12919
13099
|
}
|
|
12920
13100
|
nextIndex++;
|
|
12921
13101
|
lastPlacedNode = ReactReconciler.getHostNode(nextChild);
|
|
@@ -12998,8 +13178,7 @@ var ReactMultiChild = {
|
|
|
12998
13178
|
* @param {ReactReconcileTransaction} transaction
|
|
12999
13179
|
* @private
|
|
13000
13180
|
*/
|
|
13001
|
-
_mountChildAtIndex: function (child, afterNode, index, transaction, context) {
|
|
13002
|
-
var mountImage = ReactReconciler.mountComponent(child, transaction, this, this._hostContainerInfo, context);
|
|
13181
|
+
_mountChildAtIndex: function (child, mountImage, afterNode, index, transaction, context) {
|
|
13003
13182
|
child._mountIndex = index;
|
|
13004
13183
|
return this.createChild(child, afterNode, mountImage);
|
|
13005
13184
|
},
|
|
@@ -13023,7 +13202,7 @@ var ReactMultiChild = {
|
|
|
13023
13202
|
};
|
|
13024
13203
|
|
|
13025
13204
|
module.exports = ReactMultiChild;
|
|
13026
|
-
},{"
|
|
13205
|
+
},{"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
13206
|
/**
|
|
13028
13207
|
* Copyright 2013-present, Facebook, Inc.
|
|
13029
13208
|
* All rights reserved.
|
|
@@ -13037,7 +13216,7 @@ module.exports = ReactMultiChild;
|
|
|
13037
13216
|
|
|
13038
13217
|
'use strict';
|
|
13039
13218
|
|
|
13040
|
-
var keyMirror = _dereq_(
|
|
13219
|
+
var keyMirror = _dereq_(183);
|
|
13041
13220
|
|
|
13042
13221
|
/**
|
|
13043
13222
|
* When a component's children are updated, a series of update configuration
|
|
@@ -13056,7 +13235,7 @@ var ReactMultiChildUpdateTypes = keyMirror({
|
|
|
13056
13235
|
});
|
|
13057
13236
|
|
|
13058
13237
|
module.exports = ReactMultiChildUpdateTypes;
|
|
13059
|
-
},{"
|
|
13238
|
+
},{"183":183}],87:[function(_dereq_,module,exports){
|
|
13060
13239
|
/**
|
|
13061
13240
|
* Copyright 2013-present, Facebook, Inc.
|
|
13062
13241
|
* All rights reserved.
|
|
@@ -13071,11 +13250,11 @@ module.exports = ReactMultiChildUpdateTypes;
|
|
|
13071
13250
|
|
|
13072
13251
|
'use strict';
|
|
13073
13252
|
|
|
13074
|
-
var _prodInvariant = _dereq_(
|
|
13253
|
+
var _prodInvariant = _dereq_(155);
|
|
13075
13254
|
|
|
13076
|
-
var ReactElement = _dereq_(
|
|
13255
|
+
var ReactElement = _dereq_(67);
|
|
13077
13256
|
|
|
13078
|
-
var invariant = _dereq_(
|
|
13257
|
+
var invariant = _dereq_(180);
|
|
13079
13258
|
|
|
13080
13259
|
var ReactNodeTypes = {
|
|
13081
13260
|
HOST: 0,
|
|
@@ -13097,7 +13276,7 @@ var ReactNodeTypes = {
|
|
|
13097
13276
|
};
|
|
13098
13277
|
|
|
13099
13278
|
module.exports = ReactNodeTypes;
|
|
13100
|
-
},{"
|
|
13279
|
+
},{"155":155,"180":180,"67":67}],88:[function(_dereq_,module,exports){
|
|
13101
13280
|
/**
|
|
13102
13281
|
* Copyright 2015-present, Facebook, Inc.
|
|
13103
13282
|
* All rights reserved.
|
|
@@ -13111,7 +13290,7 @@ module.exports = ReactNodeTypes;
|
|
|
13111
13290
|
|
|
13112
13291
|
'use strict';
|
|
13113
13292
|
|
|
13114
|
-
var warning = _dereq_(
|
|
13293
|
+
var warning = _dereq_(190);
|
|
13115
13294
|
|
|
13116
13295
|
function warnNoop(publicInstance, callerName) {
|
|
13117
13296
|
if ("development" !== 'production') {
|
|
@@ -13194,7 +13373,7 @@ var ReactNoopUpdateQueue = {
|
|
|
13194
13373
|
};
|
|
13195
13374
|
|
|
13196
13375
|
module.exports = ReactNoopUpdateQueue;
|
|
13197
|
-
},{"
|
|
13376
|
+
},{"190":190}],89:[function(_dereq_,module,exports){
|
|
13198
13377
|
/**
|
|
13199
13378
|
* Copyright 2013-present, Facebook, Inc.
|
|
13200
13379
|
* All rights reserved.
|
|
@@ -13208,9 +13387,9 @@ module.exports = ReactNoopUpdateQueue;
|
|
|
13208
13387
|
|
|
13209
13388
|
'use strict';
|
|
13210
13389
|
|
|
13211
|
-
var _prodInvariant = _dereq_(
|
|
13390
|
+
var _prodInvariant = _dereq_(155);
|
|
13212
13391
|
|
|
13213
|
-
var invariant = _dereq_(
|
|
13392
|
+
var invariant = _dereq_(180);
|
|
13214
13393
|
|
|
13215
13394
|
/**
|
|
13216
13395
|
* ReactOwners are capable of storing references to owned components.
|
|
@@ -13289,7 +13468,7 @@ var ReactOwner = {
|
|
|
13289
13468
|
};
|
|
13290
13469
|
|
|
13291
13470
|
module.exports = ReactOwner;
|
|
13292
|
-
},{"
|
|
13471
|
+
},{"155":155,"180":180}],90:[function(_dereq_,module,exports){
|
|
13293
13472
|
/**
|
|
13294
13473
|
* Copyright 2016-present, Facebook, Inc.
|
|
13295
13474
|
* All rights reserved.
|
|
@@ -13303,12 +13482,12 @@ module.exports = ReactOwner;
|
|
|
13303
13482
|
|
|
13304
13483
|
'use strict';
|
|
13305
13484
|
|
|
13306
|
-
var _assign = _dereq_(
|
|
13485
|
+
var _assign = _dereq_(191);
|
|
13307
13486
|
|
|
13308
13487
|
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
13488
|
|
|
13310
|
-
var ReactDebugTool = _dereq_(
|
|
13311
|
-
var warning = _dereq_(
|
|
13489
|
+
var ReactDebugTool = _dereq_(64);
|
|
13490
|
+
var warning = _dereq_(190);
|
|
13312
13491
|
var alreadyWarned = false;
|
|
13313
13492
|
|
|
13314
13493
|
function roundFloat(val) {
|
|
@@ -13784,7 +13963,7 @@ var ReactPerfAnalysis = {
|
|
|
13784
13963
|
};
|
|
13785
13964
|
|
|
13786
13965
|
module.exports = ReactPerfAnalysis;
|
|
13787
|
-
},{"
|
|
13966
|
+
},{"190":190,"191":191,"64":64}],91:[function(_dereq_,module,exports){
|
|
13788
13967
|
/**
|
|
13789
13968
|
* Copyright 2013-present, Facebook, Inc.
|
|
13790
13969
|
* All rights reserved.
|
|
@@ -13809,7 +13988,7 @@ if ("development" !== 'production') {
|
|
|
13809
13988
|
}
|
|
13810
13989
|
|
|
13811
13990
|
module.exports = ReactPropTypeLocationNames;
|
|
13812
|
-
},{}],
|
|
13991
|
+
},{}],92:[function(_dereq_,module,exports){
|
|
13813
13992
|
/**
|
|
13814
13993
|
* Copyright 2013-present, Facebook, Inc.
|
|
13815
13994
|
* All rights reserved.
|
|
@@ -13823,7 +14002,7 @@ module.exports = ReactPropTypeLocationNames;
|
|
|
13823
14002
|
|
|
13824
14003
|
'use strict';
|
|
13825
14004
|
|
|
13826
|
-
var keyMirror = _dereq_(
|
|
14005
|
+
var keyMirror = _dereq_(183);
|
|
13827
14006
|
|
|
13828
14007
|
var ReactPropTypeLocations = keyMirror({
|
|
13829
14008
|
prop: null,
|
|
@@ -13832,7 +14011,7 @@ var ReactPropTypeLocations = keyMirror({
|
|
|
13832
14011
|
});
|
|
13833
14012
|
|
|
13834
14013
|
module.exports = ReactPropTypeLocations;
|
|
13835
|
-
},{"
|
|
14014
|
+
},{"183":183}],93:[function(_dereq_,module,exports){
|
|
13836
14015
|
/**
|
|
13837
14016
|
* Copyright 2013-present, Facebook, Inc.
|
|
13838
14017
|
* All rights reserved.
|
|
@@ -13846,11 +14025,13 @@ module.exports = ReactPropTypeLocations;
|
|
|
13846
14025
|
|
|
13847
14026
|
'use strict';
|
|
13848
14027
|
|
|
13849
|
-
var ReactElement = _dereq_(
|
|
13850
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
14028
|
+
var ReactElement = _dereq_(67);
|
|
14029
|
+
var ReactPropTypeLocationNames = _dereq_(91);
|
|
14030
|
+
var ReactPropTypesSecret = _dereq_(94);
|
|
13851
14031
|
|
|
13852
|
-
var emptyFunction = _dereq_(
|
|
13853
|
-
var getIteratorFn = _dereq_(
|
|
14032
|
+
var emptyFunction = _dereq_(172);
|
|
14033
|
+
var getIteratorFn = _dereq_(146);
|
|
14034
|
+
var warning = _dereq_(190);
|
|
13854
14035
|
|
|
13855
14036
|
/**
|
|
13856
14037
|
* Collection of methods that allow declaration and validation of props that are
|
|
@@ -13940,9 +14121,21 @@ function is(x, y) {
|
|
|
13940
14121
|
/*eslint-enable no-self-compare*/
|
|
13941
14122
|
|
|
13942
14123
|
function createChainableTypeChecker(validate) {
|
|
13943
|
-
|
|
14124
|
+
if ("development" !== 'production') {
|
|
14125
|
+
var manualPropTypeCallCache = {};
|
|
14126
|
+
}
|
|
14127
|
+
function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {
|
|
13944
14128
|
componentName = componentName || ANONYMOUS;
|
|
13945
14129
|
propFullName = propFullName || propName;
|
|
14130
|
+
if ("development" !== 'production') {
|
|
14131
|
+
if (secret !== ReactPropTypesSecret && typeof console !== 'undefined') {
|
|
14132
|
+
var cacheKey = componentName + ':' + propName;
|
|
14133
|
+
if (!manualPropTypeCallCache[cacheKey]) {
|
|
14134
|
+
"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;
|
|
14135
|
+
manualPropTypeCallCache[cacheKey] = true;
|
|
14136
|
+
}
|
|
14137
|
+
}
|
|
14138
|
+
}
|
|
13946
14139
|
if (props[propName] == null) {
|
|
13947
14140
|
var locationName = ReactPropTypeLocationNames[location];
|
|
13948
14141
|
if (isRequired) {
|
|
@@ -13961,7 +14154,7 @@ function createChainableTypeChecker(validate) {
|
|
|
13961
14154
|
}
|
|
13962
14155
|
|
|
13963
14156
|
function createPrimitiveTypeChecker(expectedType) {
|
|
13964
|
-
function validate(props, propName, componentName, location, propFullName) {
|
|
14157
|
+
function validate(props, propName, componentName, location, propFullName, secret) {
|
|
13965
14158
|
var propValue = props[propName];
|
|
13966
14159
|
var propType = getPropType(propValue);
|
|
13967
14160
|
if (propType !== expectedType) {
|
|
@@ -13994,7 +14187,7 @@ function createArrayOfTypeChecker(typeChecker) {
|
|
|
13994
14187
|
return new Error('Invalid ' + locationName + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));
|
|
13995
14188
|
}
|
|
13996
14189
|
for (var i = 0; i < propValue.length; i++) {
|
|
13997
|
-
var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']');
|
|
14190
|
+
var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);
|
|
13998
14191
|
if (error instanceof Error) {
|
|
13999
14192
|
return error;
|
|
14000
14193
|
}
|
|
@@ -14030,9 +14223,8 @@ function createInstanceTypeChecker(expectedClass) {
|
|
|
14030
14223
|
|
|
14031
14224
|
function createEnumTypeChecker(expectedValues) {
|
|
14032
14225
|
if (!Array.isArray(expectedValues)) {
|
|
14033
|
-
|
|
14034
|
-
|
|
14035
|
-
});
|
|
14226
|
+
"development" !== 'production' ? warning(false, 'Invalid argument supplied to oneOf, expected an instance of array.') : void 0;
|
|
14227
|
+
return emptyFunction.thatReturnsNull;
|
|
14036
14228
|
}
|
|
14037
14229
|
|
|
14038
14230
|
function validate(props, propName, componentName, location, propFullName) {
|
|
@@ -14063,7 +14255,7 @@ function createObjectOfTypeChecker(typeChecker) {
|
|
|
14063
14255
|
}
|
|
14064
14256
|
for (var key in propValue) {
|
|
14065
14257
|
if (propValue.hasOwnProperty(key)) {
|
|
14066
|
-
var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key);
|
|
14258
|
+
var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
|
|
14067
14259
|
if (error instanceof Error) {
|
|
14068
14260
|
return error;
|
|
14069
14261
|
}
|
|
@@ -14076,15 +14268,14 @@ function createObjectOfTypeChecker(typeChecker) {
|
|
|
14076
14268
|
|
|
14077
14269
|
function createUnionTypeChecker(arrayOfTypeCheckers) {
|
|
14078
14270
|
if (!Array.isArray(arrayOfTypeCheckers)) {
|
|
14079
|
-
|
|
14080
|
-
|
|
14081
|
-
});
|
|
14271
|
+
"development" !== 'production' ? warning(false, 'Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;
|
|
14272
|
+
return emptyFunction.thatReturnsNull;
|
|
14082
14273
|
}
|
|
14083
14274
|
|
|
14084
14275
|
function validate(props, propName, componentName, location, propFullName) {
|
|
14085
14276
|
for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
|
|
14086
14277
|
var checker = arrayOfTypeCheckers[i];
|
|
14087
|
-
if (checker(props, propName, componentName, location, propFullName) == null) {
|
|
14278
|
+
if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret) == null) {
|
|
14088
14279
|
return null;
|
|
14089
14280
|
}
|
|
14090
14281
|
}
|
|
@@ -14119,7 +14310,7 @@ function createShapeTypeChecker(shapeTypes) {
|
|
|
14119
14310
|
if (!checker) {
|
|
14120
14311
|
continue;
|
|
14121
14312
|
}
|
|
14122
|
-
var error = checker(propValue, key, componentName, location, propFullName + '.' + key);
|
|
14313
|
+
var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
|
|
14123
14314
|
if (error) {
|
|
14124
14315
|
return error;
|
|
14125
14316
|
}
|
|
@@ -14236,7 +14427,67 @@ function getClassName(propValue) {
|
|
|
14236
14427
|
}
|
|
14237
14428
|
|
|
14238
14429
|
module.exports = ReactPropTypes;
|
|
14239
|
-
},{"
|
|
14430
|
+
},{"146":146,"172":172,"190":190,"67":67,"91":91,"94":94}],94:[function(_dereq_,module,exports){
|
|
14431
|
+
/**
|
|
14432
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
14433
|
+
* All rights reserved.
|
|
14434
|
+
*
|
|
14435
|
+
* This source code is licensed under the BSD-style license found in the
|
|
14436
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
14437
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
14438
|
+
*
|
|
14439
|
+
* @providesModule ReactPropTypesSecret
|
|
14440
|
+
*/
|
|
14441
|
+
|
|
14442
|
+
'use strict';
|
|
14443
|
+
|
|
14444
|
+
var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
|
|
14445
|
+
|
|
14446
|
+
module.exports = ReactPropTypesSecret;
|
|
14447
|
+
},{}],95:[function(_dereq_,module,exports){
|
|
14448
|
+
/**
|
|
14449
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
14450
|
+
* All rights reserved.
|
|
14451
|
+
*
|
|
14452
|
+
* This source code is licensed under the BSD-style license found in the
|
|
14453
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
14454
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
14455
|
+
*
|
|
14456
|
+
* @providesModule ReactPureComponent
|
|
14457
|
+
*/
|
|
14458
|
+
|
|
14459
|
+
'use strict';
|
|
14460
|
+
|
|
14461
|
+
var _assign = _dereq_(191);
|
|
14462
|
+
|
|
14463
|
+
var ReactComponent = _dereq_(35);
|
|
14464
|
+
var ReactNoopUpdateQueue = _dereq_(88);
|
|
14465
|
+
|
|
14466
|
+
var emptyObject = _dereq_(173);
|
|
14467
|
+
|
|
14468
|
+
/**
|
|
14469
|
+
* Base class helpers for the updating state of a component.
|
|
14470
|
+
*/
|
|
14471
|
+
function ReactPureComponent(props, context, updater) {
|
|
14472
|
+
// Duplicated from ReactComponent.
|
|
14473
|
+
this.props = props;
|
|
14474
|
+
this.context = context;
|
|
14475
|
+
this.refs = emptyObject;
|
|
14476
|
+
// We initialize the default updater but the real one gets injected by the
|
|
14477
|
+
// renderer.
|
|
14478
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
14479
|
+
}
|
|
14480
|
+
|
|
14481
|
+
function ComponentDummy() {}
|
|
14482
|
+
ComponentDummy.prototype = ReactComponent.prototype;
|
|
14483
|
+
ReactPureComponent.prototype = new ComponentDummy();
|
|
14484
|
+
ReactPureComponent.prototype.constructor = ReactPureComponent;
|
|
14485
|
+
// Avoid an extra prototype jump for these methods.
|
|
14486
|
+
_assign(ReactPureComponent.prototype, ReactComponent.prototype);
|
|
14487
|
+
ReactPureComponent.prototype.isPureReactComponent = true;
|
|
14488
|
+
|
|
14489
|
+
module.exports = ReactPureComponent;
|
|
14490
|
+
},{"173":173,"191":191,"35":35,"88":88}],96:[function(_dereq_,module,exports){
|
|
14240
14491
|
/**
|
|
14241
14492
|
* Copyright 2013-present, Facebook, Inc.
|
|
14242
14493
|
* All rights reserved.
|
|
@@ -14250,15 +14501,15 @@ module.exports = ReactPropTypes;
|
|
|
14250
14501
|
|
|
14251
14502
|
'use strict';
|
|
14252
14503
|
|
|
14253
|
-
var _assign = _dereq_(
|
|
14504
|
+
var _assign = _dereq_(191);
|
|
14254
14505
|
|
|
14255
14506
|
var CallbackQueue = _dereq_(5);
|
|
14256
14507
|
var PooledClass = _dereq_(26);
|
|
14257
14508
|
var ReactBrowserEventEmitter = _dereq_(28);
|
|
14258
|
-
var ReactInputSelection = _dereq_(
|
|
14259
|
-
var ReactInstrumentation = _dereq_(
|
|
14260
|
-
var Transaction = _dereq_(
|
|
14261
|
-
var ReactUpdateQueue = _dereq_(
|
|
14509
|
+
var ReactInputSelection = _dereq_(78);
|
|
14510
|
+
var ReactInstrumentation = _dereq_(80);
|
|
14511
|
+
var Transaction = _dereq_(129);
|
|
14512
|
+
var ReactUpdateQueue = _dereq_(108);
|
|
14262
14513
|
|
|
14263
14514
|
/**
|
|
14264
14515
|
* Ensures that, when possible, the selection range (currently selected text
|
|
@@ -14415,7 +14666,7 @@ _assign(ReactReconcileTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
14415
14666
|
PooledClass.addPoolingTo(ReactReconcileTransaction);
|
|
14416
14667
|
|
|
14417
14668
|
module.exports = ReactReconcileTransaction;
|
|
14418
|
-
},{"
|
|
14669
|
+
},{"108":108,"129":129,"191":191,"26":26,"28":28,"5":5,"78":78,"80":80}],97:[function(_dereq_,module,exports){
|
|
14419
14670
|
/**
|
|
14420
14671
|
* Copyright 2013-present, Facebook, Inc.
|
|
14421
14672
|
* All rights reserved.
|
|
@@ -14429,12 +14680,10 @@ module.exports = ReactReconcileTransaction;
|
|
|
14429
14680
|
|
|
14430
14681
|
'use strict';
|
|
14431
14682
|
|
|
14432
|
-
var
|
|
14683
|
+
var ReactRef = _dereq_(98);
|
|
14684
|
+
var ReactInstrumentation = _dereq_(80);
|
|
14433
14685
|
|
|
14434
|
-
var
|
|
14435
|
-
var ReactInstrumentation = _dereq_(79);
|
|
14436
|
-
|
|
14437
|
-
var invariant = _dereq_(177);
|
|
14686
|
+
var warning = _dereq_(190);
|
|
14438
14687
|
|
|
14439
14688
|
/**
|
|
14440
14689
|
* Helper to call ReactRef.attachRefs with this composite component, split out
|
|
@@ -14571,7 +14820,7 @@ var ReactReconciler = {
|
|
|
14571
14820
|
if (internalInstance._updateBatchNumber !== updateBatchNumber) {
|
|
14572
14821
|
// The component's enqueued batch number should always be the current
|
|
14573
14822
|
// batch or the following one.
|
|
14574
|
-
|
|
14823
|
+
"development" !== 'production' ? warning(internalInstance._updateBatchNumber == null || internalInstance._updateBatchNumber === updateBatchNumber + 1, 'performUpdateIfNecessary: Unexpected batch number (current %s, ' + 'pending %s)', updateBatchNumber, internalInstance._updateBatchNumber) : void 0;
|
|
14575
14824
|
return;
|
|
14576
14825
|
}
|
|
14577
14826
|
if ("development" !== 'production') {
|
|
@@ -14592,7 +14841,7 @@ var ReactReconciler = {
|
|
|
14592
14841
|
};
|
|
14593
14842
|
|
|
14594
14843
|
module.exports = ReactReconciler;
|
|
14595
|
-
},{"
|
|
14844
|
+
},{"190":190,"80":80,"98":98}],98:[function(_dereq_,module,exports){
|
|
14596
14845
|
/**
|
|
14597
14846
|
* Copyright 2013-present, Facebook, Inc.
|
|
14598
14847
|
* All rights reserved.
|
|
@@ -14606,7 +14855,7 @@ module.exports = ReactReconciler;
|
|
|
14606
14855
|
|
|
14607
14856
|
'use strict';
|
|
14608
14857
|
|
|
14609
|
-
var ReactOwner = _dereq_(
|
|
14858
|
+
var ReactOwner = _dereq_(89);
|
|
14610
14859
|
|
|
14611
14860
|
var ReactRef = {};
|
|
14612
14861
|
|
|
@@ -14656,7 +14905,9 @@ ReactRef.shouldUpdateRefs = function (prevElement, nextElement) {
|
|
|
14656
14905
|
|
|
14657
14906
|
return(
|
|
14658
14907
|
// This has a few false positives w/r/t empty components.
|
|
14659
|
-
prevEmpty || nextEmpty || nextElement.
|
|
14908
|
+
prevEmpty || nextEmpty || nextElement.ref !== prevElement.ref ||
|
|
14909
|
+
// If owner changes but we have an unchanged function ref, don't update refs
|
|
14910
|
+
typeof nextElement.ref === 'string' && nextElement._owner !== prevElement._owner
|
|
14660
14911
|
);
|
|
14661
14912
|
};
|
|
14662
14913
|
|
|
@@ -14671,7 +14922,7 @@ ReactRef.detachRefs = function (instance, element) {
|
|
|
14671
14922
|
};
|
|
14672
14923
|
|
|
14673
14924
|
module.exports = ReactRef;
|
|
14674
|
-
},{"
|
|
14925
|
+
},{"89":89}],99:[function(_dereq_,module,exports){
|
|
14675
14926
|
/**
|
|
14676
14927
|
* Copyright 2014-present, Facebook, Inc.
|
|
14677
14928
|
* All rights reserved.
|
|
@@ -14694,7 +14945,7 @@ var ReactServerBatchingStrategy = {
|
|
|
14694
14945
|
};
|
|
14695
14946
|
|
|
14696
14947
|
module.exports = ReactServerBatchingStrategy;
|
|
14697
|
-
},{}],
|
|
14948
|
+
},{}],100:[function(_dereq_,module,exports){
|
|
14698
14949
|
/**
|
|
14699
14950
|
* Copyright 2013-present, Facebook, Inc.
|
|
14700
14951
|
* All rights reserved.
|
|
@@ -14707,21 +14958,21 @@ module.exports = ReactServerBatchingStrategy;
|
|
|
14707
14958
|
*/
|
|
14708
14959
|
'use strict';
|
|
14709
14960
|
|
|
14710
|
-
var _prodInvariant = _dereq_(
|
|
14961
|
+
var _prodInvariant = _dereq_(155);
|
|
14711
14962
|
|
|
14712
|
-
var ReactDOMContainerInfo = _dereq_(
|
|
14713
|
-
var ReactDefaultBatchingStrategy = _dereq_(
|
|
14714
|
-
var ReactElement = _dereq_(
|
|
14715
|
-
var ReactInstrumentation = _dereq_(
|
|
14716
|
-
var ReactMarkupChecksum = _dereq_(
|
|
14717
|
-
var ReactReconciler = _dereq_(
|
|
14718
|
-
var ReactServerBatchingStrategy = _dereq_(
|
|
14719
|
-
var ReactServerRenderingTransaction = _dereq_(
|
|
14720
|
-
var ReactUpdates = _dereq_(
|
|
14963
|
+
var ReactDOMContainerInfo = _dereq_(47);
|
|
14964
|
+
var ReactDefaultBatchingStrategy = _dereq_(65);
|
|
14965
|
+
var ReactElement = _dereq_(67);
|
|
14966
|
+
var ReactInstrumentation = _dereq_(80);
|
|
14967
|
+
var ReactMarkupChecksum = _dereq_(83);
|
|
14968
|
+
var ReactReconciler = _dereq_(97);
|
|
14969
|
+
var ReactServerBatchingStrategy = _dereq_(99);
|
|
14970
|
+
var ReactServerRenderingTransaction = _dereq_(101);
|
|
14971
|
+
var ReactUpdates = _dereq_(109);
|
|
14721
14972
|
|
|
14722
|
-
var emptyObject = _dereq_(
|
|
14723
|
-
var instantiateReactComponent = _dereq_(
|
|
14724
|
-
var invariant = _dereq_(
|
|
14973
|
+
var emptyObject = _dereq_(173);
|
|
14974
|
+
var instantiateReactComponent = _dereq_(150);
|
|
14975
|
+
var invariant = _dereq_(180);
|
|
14725
14976
|
|
|
14726
14977
|
/**
|
|
14727
14978
|
* @param {ReactElement} element
|
|
@@ -14777,7 +15028,7 @@ module.exports = {
|
|
|
14777
15028
|
renderToString: renderToString,
|
|
14778
15029
|
renderToStaticMarkup: renderToStaticMarkup
|
|
14779
15030
|
};
|
|
14780
|
-
},{"
|
|
15031
|
+
},{"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
15032
|
/**
|
|
14782
15033
|
* Copyright 2014-present, Facebook, Inc.
|
|
14783
15034
|
* All rights reserved.
|
|
@@ -14791,12 +15042,12 @@ module.exports = {
|
|
|
14791
15042
|
|
|
14792
15043
|
'use strict';
|
|
14793
15044
|
|
|
14794
|
-
var _assign = _dereq_(
|
|
15045
|
+
var _assign = _dereq_(191);
|
|
14795
15046
|
|
|
14796
15047
|
var PooledClass = _dereq_(26);
|
|
14797
|
-
var Transaction = _dereq_(
|
|
14798
|
-
var ReactInstrumentation = _dereq_(
|
|
14799
|
-
var ReactServerUpdateQueue = _dereq_(
|
|
15048
|
+
var Transaction = _dereq_(129);
|
|
15049
|
+
var ReactInstrumentation = _dereq_(80);
|
|
15050
|
+
var ReactServerUpdateQueue = _dereq_(102);
|
|
14800
15051
|
|
|
14801
15052
|
/**
|
|
14802
15053
|
* Executed within the scope of the `Transaction` instance. Consider these as
|
|
@@ -14868,7 +15119,7 @@ _assign(ReactServerRenderingTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
14868
15119
|
PooledClass.addPoolingTo(ReactServerRenderingTransaction);
|
|
14869
15120
|
|
|
14870
15121
|
module.exports = ReactServerRenderingTransaction;
|
|
14871
|
-
},{"
|
|
15122
|
+
},{"102":102,"129":129,"191":191,"26":26,"80":80}],102:[function(_dereq_,module,exports){
|
|
14872
15123
|
/**
|
|
14873
15124
|
* Copyright 2015-present, Facebook, Inc.
|
|
14874
15125
|
* All rights reserved.
|
|
@@ -14885,9 +15136,9 @@ module.exports = ReactServerRenderingTransaction;
|
|
|
14885
15136
|
|
|
14886
15137
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
14887
15138
|
|
|
14888
|
-
var ReactUpdateQueue = _dereq_(
|
|
14889
|
-
var Transaction = _dereq_(
|
|
14890
|
-
var warning = _dereq_(
|
|
15139
|
+
var ReactUpdateQueue = _dereq_(108);
|
|
15140
|
+
var Transaction = _dereq_(129);
|
|
15141
|
+
var warning = _dereq_(190);
|
|
14891
15142
|
|
|
14892
15143
|
function warnNoop(publicInstance, callerName) {
|
|
14893
15144
|
if ("development" !== 'production') {
|
|
@@ -15010,7 +15261,7 @@ var ReactServerUpdateQueue = function () {
|
|
|
15010
15261
|
}();
|
|
15011
15262
|
|
|
15012
15263
|
module.exports = ReactServerUpdateQueue;
|
|
15013
|
-
},{"
|
|
15264
|
+
},{"108":108,"129":129,"190":190}],103:[function(_dereq_,module,exports){
|
|
15014
15265
|
/**
|
|
15015
15266
|
* Copyright 2013-present, Facebook, Inc.
|
|
15016
15267
|
* All rights reserved.
|
|
@@ -15115,7 +15366,7 @@ ReactStateSetters.Mixin = {
|
|
|
15115
15366
|
};
|
|
15116
15367
|
|
|
15117
15368
|
module.exports = ReactStateSetters;
|
|
15118
|
-
},{}],
|
|
15369
|
+
},{}],104:[function(_dereq_,module,exports){
|
|
15119
15370
|
/**
|
|
15120
15371
|
* Copyright 2013-present, Facebook, Inc.
|
|
15121
15372
|
* All rights reserved.
|
|
@@ -15129,29 +15380,29 @@ module.exports = ReactStateSetters;
|
|
|
15129
15380
|
|
|
15130
15381
|
'use strict';
|
|
15131
15382
|
|
|
15132
|
-
var _prodInvariant = _dereq_(
|
|
15133
|
-
_assign = _dereq_(
|
|
15383
|
+
var _prodInvariant = _dereq_(155),
|
|
15384
|
+
_assign = _dereq_(191);
|
|
15134
15385
|
|
|
15135
15386
|
var EventConstants = _dereq_(16);
|
|
15136
15387
|
var EventPluginHub = _dereq_(17);
|
|
15137
15388
|
var EventPluginRegistry = _dereq_(18);
|
|
15138
15389
|
var EventPropagators = _dereq_(20);
|
|
15139
15390
|
var React = _dereq_(27);
|
|
15140
|
-
var ReactDefaultInjection = _dereq_(
|
|
15141
|
-
var ReactDOM = _dereq_(
|
|
15142
|
-
var ReactDOMComponentTree = _dereq_(
|
|
15143
|
-
var ReactElement = _dereq_(
|
|
15391
|
+
var ReactDefaultInjection = _dereq_(66);
|
|
15392
|
+
var ReactDOM = _dereq_(42);
|
|
15393
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
15394
|
+
var ReactElement = _dereq_(67);
|
|
15144
15395
|
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_(
|
|
15396
|
+
var ReactCompositeComponent = _dereq_(40);
|
|
15397
|
+
var ReactInstanceMap = _dereq_(79);
|
|
15398
|
+
var ReactInstrumentation = _dereq_(80);
|
|
15399
|
+
var ReactReconciler = _dereq_(97);
|
|
15400
|
+
var ReactUpdates = _dereq_(109);
|
|
15401
|
+
var SyntheticEvent = _dereq_(120);
|
|
15151
15402
|
|
|
15152
|
-
var emptyObject = _dereq_(
|
|
15153
|
-
var findDOMNode = _dereq_(
|
|
15154
|
-
var invariant = _dereq_(
|
|
15403
|
+
var emptyObject = _dereq_(173);
|
|
15404
|
+
var findDOMNode = _dereq_(138);
|
|
15405
|
+
var invariant = _dereq_(180);
|
|
15155
15406
|
|
|
15156
15407
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
15157
15408
|
|
|
@@ -15542,6 +15793,8 @@ function makeSimulator(eventType) {
|
|
|
15542
15793
|
|
|
15543
15794
|
var fakeNativeEvent = new Event();
|
|
15544
15795
|
fakeNativeEvent.target = node;
|
|
15796
|
+
fakeNativeEvent.type = eventType.toLowerCase();
|
|
15797
|
+
|
|
15545
15798
|
// We don't use SyntheticEvent.getPooled in order to not have to worry about
|
|
15546
15799
|
// properly destroying any properties assigned from `eventData` upon release
|
|
15547
15800
|
var event = new SyntheticEvent(dispatchConfig, ReactDOMComponentTree.getInstanceFromNode(node), fakeNativeEvent, node);
|
|
@@ -15630,7 +15883,7 @@ Object.keys(topLevelTypes).forEach(function (eventType) {
|
|
|
15630
15883
|
});
|
|
15631
15884
|
|
|
15632
15885
|
module.exports = ReactTestUtils;
|
|
15633
|
-
},{"
|
|
15886
|
+
},{"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
15887
|
/**
|
|
15635
15888
|
* Copyright 2013-present, Facebook, Inc.
|
|
15636
15889
|
* All rights reserved.
|
|
@@ -15644,7 +15897,7 @@ module.exports = ReactTestUtils;
|
|
|
15644
15897
|
|
|
15645
15898
|
'use strict';
|
|
15646
15899
|
|
|
15647
|
-
var flattenChildren = _dereq_(
|
|
15900
|
+
var flattenChildren = _dereq_(139);
|
|
15648
15901
|
|
|
15649
15902
|
var ReactTransitionChildMapping = {
|
|
15650
15903
|
/**
|
|
@@ -15734,7 +15987,7 @@ var ReactTransitionChildMapping = {
|
|
|
15734
15987
|
};
|
|
15735
15988
|
|
|
15736
15989
|
module.exports = ReactTransitionChildMapping;
|
|
15737
|
-
},{"
|
|
15990
|
+
},{"139":139}],106:[function(_dereq_,module,exports){
|
|
15738
15991
|
/**
|
|
15739
15992
|
* Copyright 2013-present, Facebook, Inc.
|
|
15740
15993
|
* All rights reserved.
|
|
@@ -15748,9 +16001,9 @@ module.exports = ReactTransitionChildMapping;
|
|
|
15748
16001
|
|
|
15749
16002
|
'use strict';
|
|
15750
16003
|
|
|
15751
|
-
var ExecutionEnvironment = _dereq_(
|
|
16004
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
15752
16005
|
|
|
15753
|
-
var getVendorPrefixedEventName = _dereq_(
|
|
16006
|
+
var getVendorPrefixedEventName = _dereq_(149);
|
|
15754
16007
|
|
|
15755
16008
|
var endEvents = [];
|
|
15756
16009
|
|
|
@@ -15808,7 +16061,7 @@ var ReactTransitionEvents = {
|
|
|
15808
16061
|
};
|
|
15809
16062
|
|
|
15810
16063
|
module.exports = ReactTransitionEvents;
|
|
15811
|
-
},{"
|
|
16064
|
+
},{"149":149,"166":166}],107:[function(_dereq_,module,exports){
|
|
15812
16065
|
/**
|
|
15813
16066
|
* Copyright 2013-present, Facebook, Inc.
|
|
15814
16067
|
* All rights reserved.
|
|
@@ -15822,13 +16075,13 @@ module.exports = ReactTransitionEvents;
|
|
|
15822
16075
|
|
|
15823
16076
|
'use strict';
|
|
15824
16077
|
|
|
15825
|
-
var _assign = _dereq_(
|
|
16078
|
+
var _assign = _dereq_(191);
|
|
15826
16079
|
|
|
15827
16080
|
var React = _dereq_(27);
|
|
15828
|
-
var ReactInstanceMap = _dereq_(
|
|
15829
|
-
var ReactTransitionChildMapping = _dereq_(
|
|
16081
|
+
var ReactInstanceMap = _dereq_(79);
|
|
16082
|
+
var ReactTransitionChildMapping = _dereq_(105);
|
|
15830
16083
|
|
|
15831
|
-
var emptyFunction = _dereq_(
|
|
16084
|
+
var emptyFunction = _dereq_(172);
|
|
15832
16085
|
|
|
15833
16086
|
/**
|
|
15834
16087
|
* A basis for animations. When children are declaratively added or removed,
|
|
@@ -16055,7 +16308,7 @@ var ReactTransitionGroup = React.createClass({
|
|
|
16055
16308
|
});
|
|
16056
16309
|
|
|
16057
16310
|
module.exports = ReactTransitionGroup;
|
|
16058
|
-
},{"
|
|
16311
|
+
},{"105":105,"172":172,"191":191,"27":27,"79":79}],108:[function(_dereq_,module,exports){
|
|
16059
16312
|
/**
|
|
16060
16313
|
* Copyright 2015-present, Facebook, Inc.
|
|
16061
16314
|
* All rights reserved.
|
|
@@ -16069,15 +16322,15 @@ module.exports = ReactTransitionGroup;
|
|
|
16069
16322
|
|
|
16070
16323
|
'use strict';
|
|
16071
16324
|
|
|
16072
|
-
var _prodInvariant = _dereq_(
|
|
16325
|
+
var _prodInvariant = _dereq_(155);
|
|
16073
16326
|
|
|
16074
|
-
var ReactCurrentOwner = _dereq_(
|
|
16075
|
-
var ReactInstanceMap = _dereq_(
|
|
16076
|
-
var ReactInstrumentation = _dereq_(
|
|
16077
|
-
var ReactUpdates = _dereq_(
|
|
16327
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
16328
|
+
var ReactInstanceMap = _dereq_(79);
|
|
16329
|
+
var ReactInstrumentation = _dereq_(80);
|
|
16330
|
+
var ReactUpdates = _dereq_(109);
|
|
16078
16331
|
|
|
16079
|
-
var invariant = _dereq_(
|
|
16080
|
-
var warning = _dereq_(
|
|
16332
|
+
var invariant = _dereq_(180);
|
|
16333
|
+
var warning = _dereq_(190);
|
|
16081
16334
|
|
|
16082
16335
|
function enqueueUpdate(internalInstance) {
|
|
16083
16336
|
ReactUpdates.enqueueUpdate(internalInstance);
|
|
@@ -16281,7 +16534,7 @@ var ReactUpdateQueue = {
|
|
|
16281
16534
|
};
|
|
16282
16535
|
|
|
16283
16536
|
module.exports = ReactUpdateQueue;
|
|
16284
|
-
},{"
|
|
16537
|
+
},{"109":109,"155":155,"180":180,"190":190,"41":41,"79":79,"80":80}],109:[function(_dereq_,module,exports){
|
|
16285
16538
|
/**
|
|
16286
16539
|
* Copyright 2013-present, Facebook, Inc.
|
|
16287
16540
|
* All rights reserved.
|
|
@@ -16295,16 +16548,16 @@ module.exports = ReactUpdateQueue;
|
|
|
16295
16548
|
|
|
16296
16549
|
'use strict';
|
|
16297
16550
|
|
|
16298
|
-
var _prodInvariant = _dereq_(
|
|
16299
|
-
_assign = _dereq_(
|
|
16551
|
+
var _prodInvariant = _dereq_(155),
|
|
16552
|
+
_assign = _dereq_(191);
|
|
16300
16553
|
|
|
16301
16554
|
var CallbackQueue = _dereq_(5);
|
|
16302
16555
|
var PooledClass = _dereq_(26);
|
|
16303
|
-
var ReactFeatureFlags = _dereq_(
|
|
16304
|
-
var ReactReconciler = _dereq_(
|
|
16305
|
-
var Transaction = _dereq_(
|
|
16556
|
+
var ReactFeatureFlags = _dereq_(73);
|
|
16557
|
+
var ReactReconciler = _dereq_(97);
|
|
16558
|
+
var Transaction = _dereq_(129);
|
|
16306
16559
|
|
|
16307
|
-
var invariant = _dereq_(
|
|
16560
|
+
var invariant = _dereq_(180);
|
|
16308
16561
|
|
|
16309
16562
|
var dirtyComponents = [];
|
|
16310
16563
|
var updateBatchNumber = 0;
|
|
@@ -16533,7 +16786,7 @@ var ReactUpdates = {
|
|
|
16533
16786
|
};
|
|
16534
16787
|
|
|
16535
16788
|
module.exports = ReactUpdates;
|
|
16536
|
-
},{"
|
|
16789
|
+
},{"129":129,"155":155,"180":180,"191":191,"26":26,"5":5,"73":73,"97":97}],110:[function(_dereq_,module,exports){
|
|
16537
16790
|
/**
|
|
16538
16791
|
* Copyright 2013-present, Facebook, Inc.
|
|
16539
16792
|
* All rights reserved.
|
|
@@ -16547,8 +16800,8 @@ module.exports = ReactUpdates;
|
|
|
16547
16800
|
|
|
16548
16801
|
'use strict';
|
|
16549
16802
|
|
|
16550
|
-
module.exports = '15.
|
|
16551
|
-
},{}],
|
|
16803
|
+
module.exports = '15.3.0-rc.1';
|
|
16804
|
+
},{}],111:[function(_dereq_,module,exports){
|
|
16552
16805
|
/**
|
|
16553
16806
|
* Copyright 2013-present, Facebook, Inc.
|
|
16554
16807
|
* All rights reserved.
|
|
@@ -16564,13 +16817,13 @@ module.exports = '15.2.1';
|
|
|
16564
16817
|
|
|
16565
16818
|
var LinkedStateMixin = _dereq_(24);
|
|
16566
16819
|
var React = _dereq_(27);
|
|
16567
|
-
var ReactComponentWithPureRenderMixin = _dereq_(
|
|
16820
|
+
var ReactComponentWithPureRenderMixin = _dereq_(39);
|
|
16568
16821
|
var ReactCSSTransitionGroup = _dereq_(29);
|
|
16569
|
-
var ReactFragment = _dereq_(
|
|
16570
|
-
var ReactTransitionGroup = _dereq_(
|
|
16822
|
+
var ReactFragment = _dereq_(74);
|
|
16823
|
+
var ReactTransitionGroup = _dereq_(107);
|
|
16571
16824
|
|
|
16572
|
-
var shallowCompare = _dereq_(
|
|
16573
|
-
var update = _dereq_(
|
|
16825
|
+
var shallowCompare = _dereq_(159);
|
|
16826
|
+
var update = _dereq_(162);
|
|
16574
16827
|
|
|
16575
16828
|
React.addons = {
|
|
16576
16829
|
CSSTransitionGroup: ReactCSSTransitionGroup,
|
|
@@ -16584,12 +16837,12 @@ React.addons = {
|
|
|
16584
16837
|
};
|
|
16585
16838
|
|
|
16586
16839
|
if ("development" !== 'production') {
|
|
16587
|
-
React.addons.Perf = _dereq_(
|
|
16588
|
-
React.addons.TestUtils = _dereq_(
|
|
16840
|
+
React.addons.Perf = _dereq_(90);
|
|
16841
|
+
React.addons.TestUtils = _dereq_(104);
|
|
16589
16842
|
}
|
|
16590
16843
|
|
|
16591
16844
|
module.exports = React;
|
|
16592
|
-
},{"
|
|
16845
|
+
},{"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
16846
|
/**
|
|
16594
16847
|
* Copyright 2013-present, Facebook, Inc.
|
|
16595
16848
|
* All rights reserved.
|
|
@@ -16603,11 +16856,11 @@ module.exports = React;
|
|
|
16603
16856
|
|
|
16604
16857
|
'use strict';
|
|
16605
16858
|
|
|
16606
|
-
var _assign = _dereq_(
|
|
16859
|
+
var _assign = _dereq_(191);
|
|
16607
16860
|
|
|
16608
|
-
var ReactDOM = _dereq_(
|
|
16609
|
-
var ReactDOMServer = _dereq_(
|
|
16610
|
-
var ReactWithAddons = _dereq_(
|
|
16861
|
+
var ReactDOM = _dereq_(42);
|
|
16862
|
+
var ReactDOMServer = _dereq_(59);
|
|
16863
|
+
var ReactWithAddons = _dereq_(111);
|
|
16611
16864
|
|
|
16612
16865
|
// `version` will be added here by ReactIsomorphic.
|
|
16613
16866
|
var ReactWithAddonsUMDEntry = _assign({
|
|
@@ -16616,7 +16869,7 @@ var ReactWithAddonsUMDEntry = _assign({
|
|
|
16616
16869
|
}, ReactWithAddons);
|
|
16617
16870
|
|
|
16618
16871
|
module.exports = ReactWithAddonsUMDEntry;
|
|
16619
|
-
},{"
|
|
16872
|
+
},{"111":111,"191":191,"42":42,"59":59}],113:[function(_dereq_,module,exports){
|
|
16620
16873
|
/**
|
|
16621
16874
|
* Copyright 2013-present, Facebook, Inc.
|
|
16622
16875
|
* All rights reserved.
|
|
@@ -16882,6 +17135,8 @@ var ATTRS = {
|
|
|
16882
17135
|
xlinkTitle: 'xlink:title',
|
|
16883
17136
|
xlinkType: 'xlink:type',
|
|
16884
17137
|
xmlBase: 'xml:base',
|
|
17138
|
+
xmlns: 0,
|
|
17139
|
+
xmlnsXlink: 'xmlns:xlink',
|
|
16885
17140
|
xmlLang: 'xml:lang',
|
|
16886
17141
|
xmlSpace: 'xml:space',
|
|
16887
17142
|
y: 0,
|
|
@@ -16917,7 +17172,7 @@ Object.keys(ATTRS).forEach(function (key) {
|
|
|
16917
17172
|
});
|
|
16918
17173
|
|
|
16919
17174
|
module.exports = SVGDOMPropertyConfig;
|
|
16920
|
-
},{}],
|
|
17175
|
+
},{}],114:[function(_dereq_,module,exports){
|
|
16921
17176
|
/**
|
|
16922
17177
|
* Copyright 2013-present, Facebook, Inc.
|
|
16923
17178
|
* All rights reserved.
|
|
@@ -16933,15 +17188,15 @@ module.exports = SVGDOMPropertyConfig;
|
|
|
16933
17188
|
|
|
16934
17189
|
var EventConstants = _dereq_(16);
|
|
16935
17190
|
var EventPropagators = _dereq_(20);
|
|
16936
|
-
var ExecutionEnvironment = _dereq_(
|
|
16937
|
-
var ReactDOMComponentTree = _dereq_(
|
|
16938
|
-
var ReactInputSelection = _dereq_(
|
|
16939
|
-
var SyntheticEvent = _dereq_(
|
|
17191
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
17192
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
17193
|
+
var ReactInputSelection = _dereq_(78);
|
|
17194
|
+
var SyntheticEvent = _dereq_(120);
|
|
16940
17195
|
|
|
16941
|
-
var getActiveElement = _dereq_(
|
|
16942
|
-
var isTextInputElement = _dereq_(
|
|
16943
|
-
var keyOf = _dereq_(
|
|
16944
|
-
var shallowEqual = _dereq_(
|
|
17196
|
+
var getActiveElement = _dereq_(175);
|
|
17197
|
+
var isTextInputElement = _dereq_(152);
|
|
17198
|
+
var keyOf = _dereq_(184);
|
|
17199
|
+
var shallowEqual = _dereq_(189);
|
|
16945
17200
|
|
|
16946
17201
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
16947
17202
|
|
|
@@ -17114,7 +17369,7 @@ var SelectEventPlugin = {
|
|
|
17114
17369
|
};
|
|
17115
17370
|
|
|
17116
17371
|
module.exports = SelectEventPlugin;
|
|
17117
|
-
},{"
|
|
17372
|
+
},{"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
17373
|
/**
|
|
17119
17374
|
* Copyright 2013-present, Facebook, Inc.
|
|
17120
17375
|
* All rights reserved.
|
|
@@ -17128,28 +17383,28 @@ module.exports = SelectEventPlugin;
|
|
|
17128
17383
|
|
|
17129
17384
|
'use strict';
|
|
17130
17385
|
|
|
17131
|
-
var _prodInvariant = _dereq_(
|
|
17386
|
+
var _prodInvariant = _dereq_(155);
|
|
17132
17387
|
|
|
17133
17388
|
var EventConstants = _dereq_(16);
|
|
17134
|
-
var EventListener = _dereq_(
|
|
17389
|
+
var EventListener = _dereq_(165);
|
|
17135
17390
|
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_(
|
|
17391
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
17392
|
+
var SyntheticAnimationEvent = _dereq_(116);
|
|
17393
|
+
var SyntheticClipboardEvent = _dereq_(117);
|
|
17394
|
+
var SyntheticEvent = _dereq_(120);
|
|
17395
|
+
var SyntheticFocusEvent = _dereq_(121);
|
|
17396
|
+
var SyntheticKeyboardEvent = _dereq_(123);
|
|
17397
|
+
var SyntheticMouseEvent = _dereq_(124);
|
|
17398
|
+
var SyntheticDragEvent = _dereq_(119);
|
|
17399
|
+
var SyntheticTouchEvent = _dereq_(125);
|
|
17400
|
+
var SyntheticTransitionEvent = _dereq_(126);
|
|
17401
|
+
var SyntheticUIEvent = _dereq_(127);
|
|
17402
|
+
var SyntheticWheelEvent = _dereq_(128);
|
|
17403
|
+
|
|
17404
|
+
var emptyFunction = _dereq_(172);
|
|
17405
|
+
var getEventCharCode = _dereq_(141);
|
|
17406
|
+
var invariant = _dereq_(180);
|
|
17407
|
+
var keyOf = _dereq_(184);
|
|
17153
17408
|
|
|
17154
17409
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
17155
17410
|
|
|
@@ -17602,6 +17857,10 @@ for (var type in topLevelEventsToDispatchConfig) {
|
|
|
17602
17857
|
var ON_CLICK_KEY = keyOf({ onClick: null });
|
|
17603
17858
|
var onClickListeners = {};
|
|
17604
17859
|
|
|
17860
|
+
function getDictionaryKey(inst) {
|
|
17861
|
+
return '.' + inst._rootNodeID;
|
|
17862
|
+
}
|
|
17863
|
+
|
|
17605
17864
|
var SimpleEventPlugin = {
|
|
17606
17865
|
|
|
17607
17866
|
eventTypes: eventTypes,
|
|
@@ -17725,26 +17984,26 @@ var SimpleEventPlugin = {
|
|
|
17725
17984
|
// fire. The workaround for this bug involves attaching an empty click
|
|
17726
17985
|
// listener on the target node.
|
|
17727
17986
|
if (registrationName === ON_CLICK_KEY) {
|
|
17728
|
-
var
|
|
17987
|
+
var key = getDictionaryKey(inst);
|
|
17729
17988
|
var node = ReactDOMComponentTree.getNodeFromInstance(inst);
|
|
17730
|
-
if (!onClickListeners[
|
|
17731
|
-
onClickListeners[
|
|
17989
|
+
if (!onClickListeners[key]) {
|
|
17990
|
+
onClickListeners[key] = EventListener.listen(node, 'click', emptyFunction);
|
|
17732
17991
|
}
|
|
17733
17992
|
}
|
|
17734
17993
|
},
|
|
17735
17994
|
|
|
17736
17995
|
willDeleteListener: function (inst, registrationName) {
|
|
17737
17996
|
if (registrationName === ON_CLICK_KEY) {
|
|
17738
|
-
var
|
|
17739
|
-
onClickListeners[
|
|
17740
|
-
delete onClickListeners[
|
|
17997
|
+
var key = getDictionaryKey(inst);
|
|
17998
|
+
onClickListeners[key].remove();
|
|
17999
|
+
delete onClickListeners[key];
|
|
17741
18000
|
}
|
|
17742
18001
|
}
|
|
17743
18002
|
|
|
17744
18003
|
};
|
|
17745
18004
|
|
|
17746
18005
|
module.exports = SimpleEventPlugin;
|
|
17747
|
-
},{"
|
|
18006
|
+
},{"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
18007
|
/**
|
|
17749
18008
|
* Copyright 2013-present, Facebook, Inc.
|
|
17750
18009
|
* All rights reserved.
|
|
@@ -17758,7 +18017,7 @@ module.exports = SimpleEventPlugin;
|
|
|
17758
18017
|
|
|
17759
18018
|
'use strict';
|
|
17760
18019
|
|
|
17761
|
-
var SyntheticEvent = _dereq_(
|
|
18020
|
+
var SyntheticEvent = _dereq_(120);
|
|
17762
18021
|
|
|
17763
18022
|
/**
|
|
17764
18023
|
* @interface Event
|
|
@@ -17784,7 +18043,7 @@ function SyntheticAnimationEvent(dispatchConfig, dispatchMarker, nativeEvent, na
|
|
|
17784
18043
|
SyntheticEvent.augmentClass(SyntheticAnimationEvent, AnimationEventInterface);
|
|
17785
18044
|
|
|
17786
18045
|
module.exports = SyntheticAnimationEvent;
|
|
17787
|
-
},{"
|
|
18046
|
+
},{"120":120}],117:[function(_dereq_,module,exports){
|
|
17788
18047
|
/**
|
|
17789
18048
|
* Copyright 2013-present, Facebook, Inc.
|
|
17790
18049
|
* All rights reserved.
|
|
@@ -17798,7 +18057,7 @@ module.exports = SyntheticAnimationEvent;
|
|
|
17798
18057
|
|
|
17799
18058
|
'use strict';
|
|
17800
18059
|
|
|
17801
|
-
var SyntheticEvent = _dereq_(
|
|
18060
|
+
var SyntheticEvent = _dereq_(120);
|
|
17802
18061
|
|
|
17803
18062
|
/**
|
|
17804
18063
|
* @interface Event
|
|
@@ -17823,7 +18082,7 @@ function SyntheticClipboardEvent(dispatchConfig, dispatchMarker, nativeEvent, na
|
|
|
17823
18082
|
SyntheticEvent.augmentClass(SyntheticClipboardEvent, ClipboardEventInterface);
|
|
17824
18083
|
|
|
17825
18084
|
module.exports = SyntheticClipboardEvent;
|
|
17826
|
-
},{"
|
|
18085
|
+
},{"120":120}],118:[function(_dereq_,module,exports){
|
|
17827
18086
|
/**
|
|
17828
18087
|
* Copyright 2013-present, Facebook, Inc.
|
|
17829
18088
|
* All rights reserved.
|
|
@@ -17837,7 +18096,7 @@ module.exports = SyntheticClipboardEvent;
|
|
|
17837
18096
|
|
|
17838
18097
|
'use strict';
|
|
17839
18098
|
|
|
17840
|
-
var SyntheticEvent = _dereq_(
|
|
18099
|
+
var SyntheticEvent = _dereq_(120);
|
|
17841
18100
|
|
|
17842
18101
|
/**
|
|
17843
18102
|
* @interface Event
|
|
@@ -17860,7 +18119,7 @@ function SyntheticCompositionEvent(dispatchConfig, dispatchMarker, nativeEvent,
|
|
|
17860
18119
|
SyntheticEvent.augmentClass(SyntheticCompositionEvent, CompositionEventInterface);
|
|
17861
18120
|
|
|
17862
18121
|
module.exports = SyntheticCompositionEvent;
|
|
17863
|
-
},{"
|
|
18122
|
+
},{"120":120}],119:[function(_dereq_,module,exports){
|
|
17864
18123
|
/**
|
|
17865
18124
|
* Copyright 2013-present, Facebook, Inc.
|
|
17866
18125
|
* All rights reserved.
|
|
@@ -17874,7 +18133,7 @@ module.exports = SyntheticCompositionEvent;
|
|
|
17874
18133
|
|
|
17875
18134
|
'use strict';
|
|
17876
18135
|
|
|
17877
|
-
var SyntheticMouseEvent = _dereq_(
|
|
18136
|
+
var SyntheticMouseEvent = _dereq_(124);
|
|
17878
18137
|
|
|
17879
18138
|
/**
|
|
17880
18139
|
* @interface DragEvent
|
|
@@ -17897,7 +18156,7 @@ function SyntheticDragEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeE
|
|
|
17897
18156
|
SyntheticMouseEvent.augmentClass(SyntheticDragEvent, DragEventInterface);
|
|
17898
18157
|
|
|
17899
18158
|
module.exports = SyntheticDragEvent;
|
|
17900
|
-
},{"
|
|
18159
|
+
},{"124":124}],120:[function(_dereq_,module,exports){
|
|
17901
18160
|
/**
|
|
17902
18161
|
* Copyright 2013-present, Facebook, Inc.
|
|
17903
18162
|
* All rights reserved.
|
|
@@ -17911,12 +18170,12 @@ module.exports = SyntheticDragEvent;
|
|
|
17911
18170
|
|
|
17912
18171
|
'use strict';
|
|
17913
18172
|
|
|
17914
|
-
var _assign = _dereq_(
|
|
18173
|
+
var _assign = _dereq_(191);
|
|
17915
18174
|
|
|
17916
18175
|
var PooledClass = _dereq_(26);
|
|
17917
18176
|
|
|
17918
|
-
var emptyFunction = _dereq_(
|
|
17919
|
-
var warning = _dereq_(
|
|
18177
|
+
var emptyFunction = _dereq_(172);
|
|
18178
|
+
var warning = _dereq_(190);
|
|
17920
18179
|
|
|
17921
18180
|
var didWarnForAddedNewProperty = false;
|
|
17922
18181
|
var isProxySupported = typeof Proxy === 'function';
|
|
@@ -18158,7 +18417,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
|
|
|
18158
18417
|
"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
18418
|
}
|
|
18160
18419
|
}
|
|
18161
|
-
},{"
|
|
18420
|
+
},{"172":172,"190":190,"191":191,"26":26}],121:[function(_dereq_,module,exports){
|
|
18162
18421
|
/**
|
|
18163
18422
|
* Copyright 2013-present, Facebook, Inc.
|
|
18164
18423
|
* All rights reserved.
|
|
@@ -18172,7 +18431,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
|
|
|
18172
18431
|
|
|
18173
18432
|
'use strict';
|
|
18174
18433
|
|
|
18175
|
-
var SyntheticUIEvent = _dereq_(
|
|
18434
|
+
var SyntheticUIEvent = _dereq_(127);
|
|
18176
18435
|
|
|
18177
18436
|
/**
|
|
18178
18437
|
* @interface FocusEvent
|
|
@@ -18195,7 +18454,7 @@ function SyntheticFocusEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
18195
18454
|
SyntheticUIEvent.augmentClass(SyntheticFocusEvent, FocusEventInterface);
|
|
18196
18455
|
|
|
18197
18456
|
module.exports = SyntheticFocusEvent;
|
|
18198
|
-
},{"
|
|
18457
|
+
},{"127":127}],122:[function(_dereq_,module,exports){
|
|
18199
18458
|
/**
|
|
18200
18459
|
* Copyright 2013-present, Facebook, Inc.
|
|
18201
18460
|
* All rights reserved.
|
|
@@ -18209,7 +18468,7 @@ module.exports = SyntheticFocusEvent;
|
|
|
18209
18468
|
|
|
18210
18469
|
'use strict';
|
|
18211
18470
|
|
|
18212
|
-
var SyntheticEvent = _dereq_(
|
|
18471
|
+
var SyntheticEvent = _dereq_(120);
|
|
18213
18472
|
|
|
18214
18473
|
/**
|
|
18215
18474
|
* @interface Event
|
|
@@ -18233,7 +18492,7 @@ function SyntheticInputEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
18233
18492
|
SyntheticEvent.augmentClass(SyntheticInputEvent, InputEventInterface);
|
|
18234
18493
|
|
|
18235
18494
|
module.exports = SyntheticInputEvent;
|
|
18236
|
-
},{"
|
|
18495
|
+
},{"120":120}],123:[function(_dereq_,module,exports){
|
|
18237
18496
|
/**
|
|
18238
18497
|
* Copyright 2013-present, Facebook, Inc.
|
|
18239
18498
|
* All rights reserved.
|
|
@@ -18247,11 +18506,11 @@ module.exports = SyntheticInputEvent;
|
|
|
18247
18506
|
|
|
18248
18507
|
'use strict';
|
|
18249
18508
|
|
|
18250
|
-
var SyntheticUIEvent = _dereq_(
|
|
18509
|
+
var SyntheticUIEvent = _dereq_(127);
|
|
18251
18510
|
|
|
18252
|
-
var getEventCharCode = _dereq_(
|
|
18253
|
-
var getEventKey = _dereq_(
|
|
18254
|
-
var getEventModifierState = _dereq_(
|
|
18511
|
+
var getEventCharCode = _dereq_(141);
|
|
18512
|
+
var getEventKey = _dereq_(142);
|
|
18513
|
+
var getEventModifierState = _dereq_(143);
|
|
18255
18514
|
|
|
18256
18515
|
/**
|
|
18257
18516
|
* @interface KeyboardEvent
|
|
@@ -18318,7 +18577,7 @@ function SyntheticKeyboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nat
|
|
|
18318
18577
|
SyntheticUIEvent.augmentClass(SyntheticKeyboardEvent, KeyboardEventInterface);
|
|
18319
18578
|
|
|
18320
18579
|
module.exports = SyntheticKeyboardEvent;
|
|
18321
|
-
},{"
|
|
18580
|
+
},{"127":127,"141":141,"142":142,"143":143}],124:[function(_dereq_,module,exports){
|
|
18322
18581
|
/**
|
|
18323
18582
|
* Copyright 2013-present, Facebook, Inc.
|
|
18324
18583
|
* All rights reserved.
|
|
@@ -18332,10 +18591,10 @@ module.exports = SyntheticKeyboardEvent;
|
|
|
18332
18591
|
|
|
18333
18592
|
'use strict';
|
|
18334
18593
|
|
|
18335
|
-
var SyntheticUIEvent = _dereq_(
|
|
18336
|
-
var ViewportMetrics = _dereq_(
|
|
18594
|
+
var SyntheticUIEvent = _dereq_(127);
|
|
18595
|
+
var ViewportMetrics = _dereq_(130);
|
|
18337
18596
|
|
|
18338
|
-
var getEventModifierState = _dereq_(
|
|
18597
|
+
var getEventModifierState = _dereq_(143);
|
|
18339
18598
|
|
|
18340
18599
|
/**
|
|
18341
18600
|
* @interface MouseEvent
|
|
@@ -18391,7 +18650,7 @@ function SyntheticMouseEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
18391
18650
|
SyntheticUIEvent.augmentClass(SyntheticMouseEvent, MouseEventInterface);
|
|
18392
18651
|
|
|
18393
18652
|
module.exports = SyntheticMouseEvent;
|
|
18394
|
-
},{"
|
|
18653
|
+
},{"127":127,"130":130,"143":143}],125:[function(_dereq_,module,exports){
|
|
18395
18654
|
/**
|
|
18396
18655
|
* Copyright 2013-present, Facebook, Inc.
|
|
18397
18656
|
* All rights reserved.
|
|
@@ -18405,9 +18664,9 @@ module.exports = SyntheticMouseEvent;
|
|
|
18405
18664
|
|
|
18406
18665
|
'use strict';
|
|
18407
18666
|
|
|
18408
|
-
var SyntheticUIEvent = _dereq_(
|
|
18667
|
+
var SyntheticUIEvent = _dereq_(127);
|
|
18409
18668
|
|
|
18410
|
-
var getEventModifierState = _dereq_(
|
|
18669
|
+
var getEventModifierState = _dereq_(143);
|
|
18411
18670
|
|
|
18412
18671
|
/**
|
|
18413
18672
|
* @interface TouchEvent
|
|
@@ -18437,7 +18696,7 @@ function SyntheticTouchEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
18437
18696
|
SyntheticUIEvent.augmentClass(SyntheticTouchEvent, TouchEventInterface);
|
|
18438
18697
|
|
|
18439
18698
|
module.exports = SyntheticTouchEvent;
|
|
18440
|
-
},{"
|
|
18699
|
+
},{"127":127,"143":143}],126:[function(_dereq_,module,exports){
|
|
18441
18700
|
/**
|
|
18442
18701
|
* Copyright 2013-present, Facebook, Inc.
|
|
18443
18702
|
* All rights reserved.
|
|
@@ -18451,7 +18710,7 @@ module.exports = SyntheticTouchEvent;
|
|
|
18451
18710
|
|
|
18452
18711
|
'use strict';
|
|
18453
18712
|
|
|
18454
|
-
var SyntheticEvent = _dereq_(
|
|
18713
|
+
var SyntheticEvent = _dereq_(120);
|
|
18455
18714
|
|
|
18456
18715
|
/**
|
|
18457
18716
|
* @interface Event
|
|
@@ -18477,7 +18736,7 @@ function SyntheticTransitionEvent(dispatchConfig, dispatchMarker, nativeEvent, n
|
|
|
18477
18736
|
SyntheticEvent.augmentClass(SyntheticTransitionEvent, TransitionEventInterface);
|
|
18478
18737
|
|
|
18479
18738
|
module.exports = SyntheticTransitionEvent;
|
|
18480
|
-
},{"
|
|
18739
|
+
},{"120":120}],127:[function(_dereq_,module,exports){
|
|
18481
18740
|
/**
|
|
18482
18741
|
* Copyright 2013-present, Facebook, Inc.
|
|
18483
18742
|
* All rights reserved.
|
|
@@ -18491,9 +18750,9 @@ module.exports = SyntheticTransitionEvent;
|
|
|
18491
18750
|
|
|
18492
18751
|
'use strict';
|
|
18493
18752
|
|
|
18494
|
-
var SyntheticEvent = _dereq_(
|
|
18753
|
+
var SyntheticEvent = _dereq_(120);
|
|
18495
18754
|
|
|
18496
|
-
var getEventTarget = _dereq_(
|
|
18755
|
+
var getEventTarget = _dereq_(144);
|
|
18497
18756
|
|
|
18498
18757
|
/**
|
|
18499
18758
|
* @interface UIEvent
|
|
@@ -18537,7 +18796,7 @@ function SyntheticUIEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEve
|
|
|
18537
18796
|
SyntheticEvent.augmentClass(SyntheticUIEvent, UIEventInterface);
|
|
18538
18797
|
|
|
18539
18798
|
module.exports = SyntheticUIEvent;
|
|
18540
|
-
},{"
|
|
18799
|
+
},{"120":120,"144":144}],128:[function(_dereq_,module,exports){
|
|
18541
18800
|
/**
|
|
18542
18801
|
* Copyright 2013-present, Facebook, Inc.
|
|
18543
18802
|
* All rights reserved.
|
|
@@ -18551,7 +18810,7 @@ module.exports = SyntheticUIEvent;
|
|
|
18551
18810
|
|
|
18552
18811
|
'use strict';
|
|
18553
18812
|
|
|
18554
|
-
var SyntheticMouseEvent = _dereq_(
|
|
18813
|
+
var SyntheticMouseEvent = _dereq_(124);
|
|
18555
18814
|
|
|
18556
18815
|
/**
|
|
18557
18816
|
* @interface WheelEvent
|
|
@@ -18592,7 +18851,7 @@ function SyntheticWheelEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
18592
18851
|
SyntheticMouseEvent.augmentClass(SyntheticWheelEvent, WheelEventInterface);
|
|
18593
18852
|
|
|
18594
18853
|
module.exports = SyntheticWheelEvent;
|
|
18595
|
-
},{"
|
|
18854
|
+
},{"124":124}],129:[function(_dereq_,module,exports){
|
|
18596
18855
|
/**
|
|
18597
18856
|
* Copyright 2013-present, Facebook, Inc.
|
|
18598
18857
|
* All rights reserved.
|
|
@@ -18606,9 +18865,9 @@ module.exports = SyntheticWheelEvent;
|
|
|
18606
18865
|
|
|
18607
18866
|
'use strict';
|
|
18608
18867
|
|
|
18609
|
-
var _prodInvariant = _dereq_(
|
|
18868
|
+
var _prodInvariant = _dereq_(155);
|
|
18610
18869
|
|
|
18611
|
-
var invariant = _dereq_(
|
|
18870
|
+
var invariant = _dereq_(180);
|
|
18612
18871
|
|
|
18613
18872
|
/**
|
|
18614
18873
|
* `Transaction` creates a black box that is able to wrap any method such that
|
|
@@ -18826,7 +19085,7 @@ var Transaction = {
|
|
|
18826
19085
|
};
|
|
18827
19086
|
|
|
18828
19087
|
module.exports = Transaction;
|
|
18829
|
-
},{"
|
|
19088
|
+
},{"155":155,"180":180}],130:[function(_dereq_,module,exports){
|
|
18830
19089
|
/**
|
|
18831
19090
|
* Copyright 2013-present, Facebook, Inc.
|
|
18832
19091
|
* All rights reserved.
|
|
@@ -18854,7 +19113,7 @@ var ViewportMetrics = {
|
|
|
18854
19113
|
};
|
|
18855
19114
|
|
|
18856
19115
|
module.exports = ViewportMetrics;
|
|
18857
|
-
},{}],
|
|
19116
|
+
},{}],131:[function(_dereq_,module,exports){
|
|
18858
19117
|
/**
|
|
18859
19118
|
* Copyright 2014-present, Facebook, Inc.
|
|
18860
19119
|
* All rights reserved.
|
|
@@ -18869,9 +19128,9 @@ module.exports = ViewportMetrics;
|
|
|
18869
19128
|
|
|
18870
19129
|
'use strict';
|
|
18871
19130
|
|
|
18872
|
-
var _prodInvariant = _dereq_(
|
|
19131
|
+
var _prodInvariant = _dereq_(155);
|
|
18873
19132
|
|
|
18874
|
-
var invariant = _dereq_(
|
|
19133
|
+
var invariant = _dereq_(180);
|
|
18875
19134
|
|
|
18876
19135
|
/**
|
|
18877
19136
|
* Accumulates items that must not be null or undefined into the first one. This
|
|
@@ -18913,7 +19172,7 @@ function accumulateInto(current, next) {
|
|
|
18913
19172
|
}
|
|
18914
19173
|
|
|
18915
19174
|
module.exports = accumulateInto;
|
|
18916
|
-
},{"
|
|
19175
|
+
},{"155":155,"180":180}],132:[function(_dereq_,module,exports){
|
|
18917
19176
|
/**
|
|
18918
19177
|
* Copyright 2013-present, Facebook, Inc.
|
|
18919
19178
|
* All rights reserved.
|
|
@@ -18958,7 +19217,7 @@ function adler32(data) {
|
|
|
18958
19217
|
}
|
|
18959
19218
|
|
|
18960
19219
|
module.exports = adler32;
|
|
18961
|
-
},{}],
|
|
19220
|
+
},{}],133:[function(_dereq_,module,exports){
|
|
18962
19221
|
/**
|
|
18963
19222
|
* Copyright 2013-present, Facebook, Inc.
|
|
18964
19223
|
* All rights reserved.
|
|
@@ -18983,7 +19242,7 @@ if ("development" !== 'production') {
|
|
|
18983
19242
|
}
|
|
18984
19243
|
|
|
18985
19244
|
module.exports = canDefineProperty;
|
|
18986
|
-
},{}],
|
|
19245
|
+
},{}],134:[function(_dereq_,module,exports){
|
|
18987
19246
|
/**
|
|
18988
19247
|
* Copyright 2013-present, Facebook, Inc.
|
|
18989
19248
|
* All rights reserved.
|
|
@@ -18997,12 +19256,13 @@ module.exports = canDefineProperty;
|
|
|
18997
19256
|
|
|
18998
19257
|
'use strict';
|
|
18999
19258
|
|
|
19000
|
-
var _prodInvariant = _dereq_(
|
|
19259
|
+
var _prodInvariant = _dereq_(155);
|
|
19001
19260
|
|
|
19002
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
19261
|
+
var ReactPropTypeLocationNames = _dereq_(91);
|
|
19262
|
+
var ReactPropTypesSecret = _dereq_(94);
|
|
19003
19263
|
|
|
19004
|
-
var invariant = _dereq_(
|
|
19005
|
-
var warning = _dereq_(
|
|
19264
|
+
var invariant = _dereq_(180);
|
|
19265
|
+
var warning = _dereq_(190);
|
|
19006
19266
|
|
|
19007
19267
|
var loggedTypeFailures = {};
|
|
19008
19268
|
|
|
@@ -19029,7 +19289,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
|
|
|
19029
19289
|
// This is intentionally an invariant that gets caught. It's the same
|
|
19030
19290
|
// behavior as without this statement except with a better message.
|
|
19031
19291
|
!(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);
|
|
19292
|
+
error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);
|
|
19033
19293
|
} catch (ex) {
|
|
19034
19294
|
error = ex;
|
|
19035
19295
|
}
|
|
@@ -19042,7 +19302,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
|
|
|
19042
19302
|
var componentStackInfo = '';
|
|
19043
19303
|
|
|
19044
19304
|
if ("development" !== 'production') {
|
|
19045
|
-
var ReactComponentTreeDevtool = _dereq_(
|
|
19305
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
19046
19306
|
if (debugID !== null) {
|
|
19047
19307
|
componentStackInfo = ReactComponentTreeDevtool.getStackAddendumByID(debugID);
|
|
19048
19308
|
} else if (element !== null) {
|
|
@@ -19057,7 +19317,7 @@ function checkReactTypeSpec(typeSpecs, values, location, componentName, element,
|
|
|
19057
19317
|
}
|
|
19058
19318
|
|
|
19059
19319
|
module.exports = checkReactTypeSpec;
|
|
19060
|
-
},{"
|
|
19320
|
+
},{"155":155,"180":180,"190":190,"38":38,"91":91,"94":94}],135:[function(_dereq_,module,exports){
|
|
19061
19321
|
/**
|
|
19062
19322
|
* Copyright 2013-present, Facebook, Inc.
|
|
19063
19323
|
* All rights reserved.
|
|
@@ -19090,7 +19350,7 @@ var createMicrosoftUnsafeLocalFunction = function (func) {
|
|
|
19090
19350
|
};
|
|
19091
19351
|
|
|
19092
19352
|
module.exports = createMicrosoftUnsafeLocalFunction;
|
|
19093
|
-
},{}],
|
|
19353
|
+
},{}],136:[function(_dereq_,module,exports){
|
|
19094
19354
|
/**
|
|
19095
19355
|
* Copyright 2013-present, Facebook, Inc.
|
|
19096
19356
|
* All rights reserved.
|
|
@@ -19105,7 +19365,7 @@ module.exports = createMicrosoftUnsafeLocalFunction;
|
|
|
19105
19365
|
'use strict';
|
|
19106
19366
|
|
|
19107
19367
|
var CSSProperty = _dereq_(3);
|
|
19108
|
-
var warning = _dereq_(
|
|
19368
|
+
var warning = _dereq_(190);
|
|
19109
19369
|
|
|
19110
19370
|
var isUnitlessNumber = CSSProperty.isUnitlessNumber;
|
|
19111
19371
|
var styleWarnings = {};
|
|
@@ -19170,7 +19430,7 @@ function dangerousStyleValue(name, value, component) {
|
|
|
19170
19430
|
}
|
|
19171
19431
|
|
|
19172
19432
|
module.exports = dangerousStyleValue;
|
|
19173
|
-
},{"
|
|
19433
|
+
},{"190":190,"3":3}],137:[function(_dereq_,module,exports){
|
|
19174
19434
|
/**
|
|
19175
19435
|
* Copyright 2016-present, Facebook, Inc.
|
|
19176
19436
|
* All rights reserved.
|
|
@@ -19293,7 +19553,7 @@ function escapeTextContentForBrowser(text) {
|
|
|
19293
19553
|
}
|
|
19294
19554
|
|
|
19295
19555
|
module.exports = escapeTextContentForBrowser;
|
|
19296
|
-
},{}],
|
|
19556
|
+
},{}],138:[function(_dereq_,module,exports){
|
|
19297
19557
|
/**
|
|
19298
19558
|
* Copyright 2013-present, Facebook, Inc.
|
|
19299
19559
|
* All rights reserved.
|
|
@@ -19307,15 +19567,15 @@ module.exports = escapeTextContentForBrowser;
|
|
|
19307
19567
|
|
|
19308
19568
|
'use strict';
|
|
19309
19569
|
|
|
19310
|
-
var _prodInvariant = _dereq_(
|
|
19570
|
+
var _prodInvariant = _dereq_(155);
|
|
19311
19571
|
|
|
19312
|
-
var ReactCurrentOwner = _dereq_(
|
|
19313
|
-
var ReactDOMComponentTree = _dereq_(
|
|
19314
|
-
var ReactInstanceMap = _dereq_(
|
|
19572
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
19573
|
+
var ReactDOMComponentTree = _dereq_(46);
|
|
19574
|
+
var ReactInstanceMap = _dereq_(79);
|
|
19315
19575
|
|
|
19316
|
-
var getHostComponentFromComposite = _dereq_(
|
|
19317
|
-
var invariant = _dereq_(
|
|
19318
|
-
var warning = _dereq_(
|
|
19576
|
+
var getHostComponentFromComposite = _dereq_(145);
|
|
19577
|
+
var invariant = _dereq_(180);
|
|
19578
|
+
var warning = _dereq_(190);
|
|
19319
19579
|
|
|
19320
19580
|
/**
|
|
19321
19581
|
* Returns the DOM node rendered by this element.
|
|
@@ -19354,7 +19614,7 @@ function findDOMNode(componentOrElement) {
|
|
|
19354
19614
|
}
|
|
19355
19615
|
|
|
19356
19616
|
module.exports = findDOMNode;
|
|
19357
|
-
},{"
|
|
19617
|
+
},{"145":145,"155":155,"180":180,"190":190,"41":41,"46":46,"79":79}],139:[function(_dereq_,module,exports){
|
|
19358
19618
|
/**
|
|
19359
19619
|
* Copyright 2013-present, Facebook, Inc.
|
|
19360
19620
|
* All rights reserved.
|
|
@@ -19370,8 +19630,8 @@ module.exports = findDOMNode;
|
|
|
19370
19630
|
'use strict';
|
|
19371
19631
|
|
|
19372
19632
|
var KeyEscapeUtils = _dereq_(23);
|
|
19373
|
-
var traverseAllChildren = _dereq_(
|
|
19374
|
-
var warning = _dereq_(
|
|
19633
|
+
var traverseAllChildren = _dereq_(161);
|
|
19634
|
+
var warning = _dereq_(190);
|
|
19375
19635
|
|
|
19376
19636
|
/**
|
|
19377
19637
|
* @param {function} traverseContext Context passed through traversal.
|
|
@@ -19385,7 +19645,7 @@ function flattenSingleChildIntoContext(traverseContext, child, name, selfDebugID
|
|
|
19385
19645
|
var result = traverseContext;
|
|
19386
19646
|
var keyUnique = result[name] === undefined;
|
|
19387
19647
|
if ("development" !== 'production') {
|
|
19388
|
-
var ReactComponentTreeDevtool = _dereq_(
|
|
19648
|
+
var ReactComponentTreeDevtool = _dereq_(38);
|
|
19389
19649
|
"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
19650
|
}
|
|
19391
19651
|
if (keyUnique && child != null) {
|
|
@@ -19416,7 +19676,7 @@ function flattenChildren(children, selfDebugID) {
|
|
|
19416
19676
|
}
|
|
19417
19677
|
|
|
19418
19678
|
module.exports = flattenChildren;
|
|
19419
|
-
},{"
|
|
19679
|
+
},{"161":161,"190":190,"23":23,"38":38}],140:[function(_dereq_,module,exports){
|
|
19420
19680
|
/**
|
|
19421
19681
|
* Copyright 2013-present, Facebook, Inc.
|
|
19422
19682
|
* All rights reserved.
|
|
@@ -19448,7 +19708,7 @@ function forEachAccumulated(arr, cb, scope) {
|
|
|
19448
19708
|
}
|
|
19449
19709
|
|
|
19450
19710
|
module.exports = forEachAccumulated;
|
|
19451
|
-
},{}],
|
|
19711
|
+
},{}],141:[function(_dereq_,module,exports){
|
|
19452
19712
|
/**
|
|
19453
19713
|
* Copyright 2013-present, Facebook, Inc.
|
|
19454
19714
|
* All rights reserved.
|
|
@@ -19499,7 +19759,7 @@ function getEventCharCode(nativeEvent) {
|
|
|
19499
19759
|
}
|
|
19500
19760
|
|
|
19501
19761
|
module.exports = getEventCharCode;
|
|
19502
|
-
},{}],
|
|
19762
|
+
},{}],142:[function(_dereq_,module,exports){
|
|
19503
19763
|
/**
|
|
19504
19764
|
* Copyright 2013-present, Facebook, Inc.
|
|
19505
19765
|
* All rights reserved.
|
|
@@ -19513,7 +19773,7 @@ module.exports = getEventCharCode;
|
|
|
19513
19773
|
|
|
19514
19774
|
'use strict';
|
|
19515
19775
|
|
|
19516
|
-
var getEventCharCode = _dereq_(
|
|
19776
|
+
var getEventCharCode = _dereq_(141);
|
|
19517
19777
|
|
|
19518
19778
|
/**
|
|
19519
19779
|
* Normalization of deprecated HTML5 `key` values
|
|
@@ -19602,7 +19862,7 @@ function getEventKey(nativeEvent) {
|
|
|
19602
19862
|
}
|
|
19603
19863
|
|
|
19604
19864
|
module.exports = getEventKey;
|
|
19605
|
-
},{"
|
|
19865
|
+
},{"141":141}],143:[function(_dereq_,module,exports){
|
|
19606
19866
|
/**
|
|
19607
19867
|
* Copyright 2013-present, Facebook, Inc.
|
|
19608
19868
|
* All rights reserved.
|
|
@@ -19646,7 +19906,7 @@ function getEventModifierState(nativeEvent) {
|
|
|
19646
19906
|
}
|
|
19647
19907
|
|
|
19648
19908
|
module.exports = getEventModifierState;
|
|
19649
|
-
},{}],
|
|
19909
|
+
},{}],144:[function(_dereq_,module,exports){
|
|
19650
19910
|
/**
|
|
19651
19911
|
* Copyright 2013-present, Facebook, Inc.
|
|
19652
19912
|
* All rights reserved.
|
|
@@ -19682,7 +19942,7 @@ function getEventTarget(nativeEvent) {
|
|
|
19682
19942
|
}
|
|
19683
19943
|
|
|
19684
19944
|
module.exports = getEventTarget;
|
|
19685
|
-
},{}],
|
|
19945
|
+
},{}],145:[function(_dereq_,module,exports){
|
|
19686
19946
|
/**
|
|
19687
19947
|
* Copyright 2013-present, Facebook, Inc.
|
|
19688
19948
|
* All rights reserved.
|
|
@@ -19696,7 +19956,7 @@ module.exports = getEventTarget;
|
|
|
19696
19956
|
|
|
19697
19957
|
'use strict';
|
|
19698
19958
|
|
|
19699
|
-
var ReactNodeTypes = _dereq_(
|
|
19959
|
+
var ReactNodeTypes = _dereq_(87);
|
|
19700
19960
|
|
|
19701
19961
|
function getHostComponentFromComposite(inst) {
|
|
19702
19962
|
var type;
|
|
@@ -19713,7 +19973,7 @@ function getHostComponentFromComposite(inst) {
|
|
|
19713
19973
|
}
|
|
19714
19974
|
|
|
19715
19975
|
module.exports = getHostComponentFromComposite;
|
|
19716
|
-
},{"
|
|
19976
|
+
},{"87":87}],146:[function(_dereq_,module,exports){
|
|
19717
19977
|
/**
|
|
19718
19978
|
* Copyright 2013-present, Facebook, Inc.
|
|
19719
19979
|
* All rights reserved.
|
|
@@ -19755,7 +20015,7 @@ function getIteratorFn(maybeIterable) {
|
|
|
19755
20015
|
}
|
|
19756
20016
|
|
|
19757
20017
|
module.exports = getIteratorFn;
|
|
19758
|
-
},{}],
|
|
20018
|
+
},{}],147:[function(_dereq_,module,exports){
|
|
19759
20019
|
/**
|
|
19760
20020
|
* Copyright 2013-present, Facebook, Inc.
|
|
19761
20021
|
* All rights reserved.
|
|
@@ -19830,7 +20090,7 @@ function getNodeForCharacterOffset(root, offset) {
|
|
|
19830
20090
|
}
|
|
19831
20091
|
|
|
19832
20092
|
module.exports = getNodeForCharacterOffset;
|
|
19833
|
-
},{}],
|
|
20093
|
+
},{}],148:[function(_dereq_,module,exports){
|
|
19834
20094
|
/**
|
|
19835
20095
|
* Copyright 2013-present, Facebook, Inc.
|
|
19836
20096
|
* All rights reserved.
|
|
@@ -19844,7 +20104,7 @@ module.exports = getNodeForCharacterOffset;
|
|
|
19844
20104
|
|
|
19845
20105
|
'use strict';
|
|
19846
20106
|
|
|
19847
|
-
var ExecutionEnvironment = _dereq_(
|
|
20107
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
19848
20108
|
|
|
19849
20109
|
var contentKey = null;
|
|
19850
20110
|
|
|
@@ -19864,7 +20124,7 @@ function getTextContentAccessor() {
|
|
|
19864
20124
|
}
|
|
19865
20125
|
|
|
19866
20126
|
module.exports = getTextContentAccessor;
|
|
19867
|
-
},{"
|
|
20127
|
+
},{"166":166}],149:[function(_dereq_,module,exports){
|
|
19868
20128
|
/**
|
|
19869
20129
|
* Copyright 2013-present, Facebook, Inc.
|
|
19870
20130
|
* All rights reserved.
|
|
@@ -19878,7 +20138,7 @@ module.exports = getTextContentAccessor;
|
|
|
19878
20138
|
|
|
19879
20139
|
'use strict';
|
|
19880
20140
|
|
|
19881
|
-
var ExecutionEnvironment = _dereq_(
|
|
20141
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
19882
20142
|
|
|
19883
20143
|
/**
|
|
19884
20144
|
* Generate a mapping of standard vendor prefixes using the defined style property and event name.
|
|
@@ -19966,7 +20226,7 @@ function getVendorPrefixedEventName(eventName) {
|
|
|
19966
20226
|
}
|
|
19967
20227
|
|
|
19968
20228
|
module.exports = getVendorPrefixedEventName;
|
|
19969
|
-
},{"
|
|
20229
|
+
},{"166":166}],150:[function(_dereq_,module,exports){
|
|
19970
20230
|
/**
|
|
19971
20231
|
* Copyright 2013-present, Facebook, Inc.
|
|
19972
20232
|
* All rights reserved.
|
|
@@ -19980,16 +20240,16 @@ module.exports = getVendorPrefixedEventName;
|
|
|
19980
20240
|
|
|
19981
20241
|
'use strict';
|
|
19982
20242
|
|
|
19983
|
-
var _prodInvariant = _dereq_(
|
|
19984
|
-
_assign = _dereq_(
|
|
20243
|
+
var _prodInvariant = _dereq_(155),
|
|
20244
|
+
_assign = _dereq_(191);
|
|
19985
20245
|
|
|
19986
|
-
var ReactCompositeComponent = _dereq_(
|
|
19987
|
-
var ReactEmptyComponent = _dereq_(
|
|
19988
|
-
var ReactHostComponent = _dereq_(
|
|
19989
|
-
var ReactInstrumentation = _dereq_(
|
|
20246
|
+
var ReactCompositeComponent = _dereq_(40);
|
|
20247
|
+
var ReactEmptyComponent = _dereq_(69);
|
|
20248
|
+
var ReactHostComponent = _dereq_(75);
|
|
20249
|
+
var ReactInstrumentation = _dereq_(80);
|
|
19990
20250
|
|
|
19991
|
-
var invariant = _dereq_(
|
|
19992
|
-
var warning = _dereq_(
|
|
20251
|
+
var invariant = _dereq_(180);
|
|
20252
|
+
var warning = _dereq_(190);
|
|
19993
20253
|
|
|
19994
20254
|
// To avoid a cyclic dependency, we create the final class in this module
|
|
19995
20255
|
var ReactCompositeComponentWrapper = function (element) {
|
|
@@ -20113,7 +20373,7 @@ function instantiateReactComponent(node, shouldHaveDebugID) {
|
|
|
20113
20373
|
}
|
|
20114
20374
|
|
|
20115
20375
|
module.exports = instantiateReactComponent;
|
|
20116
|
-
},{"
|
|
20376
|
+
},{"155":155,"180":180,"190":190,"191":191,"40":40,"69":69,"75":75,"80":80}],151:[function(_dereq_,module,exports){
|
|
20117
20377
|
/**
|
|
20118
20378
|
* Copyright 2013-present, Facebook, Inc.
|
|
20119
20379
|
* All rights reserved.
|
|
@@ -20127,7 +20387,7 @@ module.exports = instantiateReactComponent;
|
|
|
20127
20387
|
|
|
20128
20388
|
'use strict';
|
|
20129
20389
|
|
|
20130
|
-
var ExecutionEnvironment = _dereq_(
|
|
20390
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
20131
20391
|
|
|
20132
20392
|
var useHasFeature;
|
|
20133
20393
|
if (ExecutionEnvironment.canUseDOM) {
|
|
@@ -20174,7 +20434,7 @@ function isEventSupported(eventNameSuffix, capture) {
|
|
|
20174
20434
|
}
|
|
20175
20435
|
|
|
20176
20436
|
module.exports = isEventSupported;
|
|
20177
|
-
},{"
|
|
20437
|
+
},{"166":166}],152:[function(_dereq_,module,exports){
|
|
20178
20438
|
/**
|
|
20179
20439
|
* Copyright 2013-present, Facebook, Inc.
|
|
20180
20440
|
* All rights reserved.
|
|
@@ -20226,7 +20486,7 @@ function isTextInputElement(elem) {
|
|
|
20226
20486
|
}
|
|
20227
20487
|
|
|
20228
20488
|
module.exports = isTextInputElement;
|
|
20229
|
-
},{}],
|
|
20489
|
+
},{}],153:[function(_dereq_,module,exports){
|
|
20230
20490
|
/**
|
|
20231
20491
|
* Copyright 2013-present, Facebook, Inc.
|
|
20232
20492
|
* All rights reserved.
|
|
@@ -20239,11 +20499,11 @@ module.exports = isTextInputElement;
|
|
|
20239
20499
|
*/
|
|
20240
20500
|
'use strict';
|
|
20241
20501
|
|
|
20242
|
-
var _prodInvariant = _dereq_(
|
|
20502
|
+
var _prodInvariant = _dereq_(155);
|
|
20243
20503
|
|
|
20244
|
-
var ReactElement = _dereq_(
|
|
20504
|
+
var ReactElement = _dereq_(67);
|
|
20245
20505
|
|
|
20246
|
-
var invariant = _dereq_(
|
|
20506
|
+
var invariant = _dereq_(180);
|
|
20247
20507
|
|
|
20248
20508
|
/**
|
|
20249
20509
|
* Returns the first child in a collection of children and verifies that there
|
|
@@ -20265,7 +20525,7 @@ function onlyChild(children) {
|
|
|
20265
20525
|
}
|
|
20266
20526
|
|
|
20267
20527
|
module.exports = onlyChild;
|
|
20268
|
-
},{"
|
|
20528
|
+
},{"155":155,"180":180,"67":67}],154:[function(_dereq_,module,exports){
|
|
20269
20529
|
/**
|
|
20270
20530
|
* Copyright 2013-present, Facebook, Inc.
|
|
20271
20531
|
* All rights reserved.
|
|
@@ -20279,7 +20539,7 @@ module.exports = onlyChild;
|
|
|
20279
20539
|
|
|
20280
20540
|
'use strict';
|
|
20281
20541
|
|
|
20282
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
20542
|
+
var escapeTextContentForBrowser = _dereq_(137);
|
|
20283
20543
|
|
|
20284
20544
|
/**
|
|
20285
20545
|
* Escapes attribute value to prevent scripting attacks.
|
|
@@ -20292,7 +20552,7 @@ function quoteAttributeValueForBrowser(value) {
|
|
|
20292
20552
|
}
|
|
20293
20553
|
|
|
20294
20554
|
module.exports = quoteAttributeValueForBrowser;
|
|
20295
|
-
},{"
|
|
20555
|
+
},{"137":137}],155:[function(_dereq_,module,exports){
|
|
20296
20556
|
/**
|
|
20297
20557
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20298
20558
|
* All rights reserved.
|
|
@@ -20332,7 +20592,7 @@ function reactProdInvariant(code) {
|
|
|
20332
20592
|
}
|
|
20333
20593
|
|
|
20334
20594
|
module.exports = reactProdInvariant;
|
|
20335
|
-
},{}],
|
|
20595
|
+
},{}],156:[function(_dereq_,module,exports){
|
|
20336
20596
|
/**
|
|
20337
20597
|
* Copyright 2013-present, Facebook, Inc.
|
|
20338
20598
|
* All rights reserved.
|
|
@@ -20346,10 +20606,10 @@ module.exports = reactProdInvariant;
|
|
|
20346
20606
|
|
|
20347
20607
|
'use strict';
|
|
20348
20608
|
|
|
20349
|
-
var ReactMount = _dereq_(
|
|
20609
|
+
var ReactMount = _dereq_(84);
|
|
20350
20610
|
|
|
20351
20611
|
module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
20352
|
-
},{"
|
|
20612
|
+
},{"84":84}],157:[function(_dereq_,module,exports){
|
|
20353
20613
|
/**
|
|
20354
20614
|
* Copyright 2013-present, Facebook, Inc.
|
|
20355
20615
|
* All rights reserved.
|
|
@@ -20363,13 +20623,13 @@ module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
|
20363
20623
|
|
|
20364
20624
|
'use strict';
|
|
20365
20625
|
|
|
20366
|
-
var ExecutionEnvironment = _dereq_(
|
|
20626
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
20367
20627
|
var DOMNamespaces = _dereq_(9);
|
|
20368
20628
|
|
|
20369
20629
|
var WHITESPACE_TEST = /^[ \r\n\t\f]/;
|
|
20370
20630
|
var NONVISIBLE_TEST = /<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/;
|
|
20371
20631
|
|
|
20372
|
-
var createMicrosoftUnsafeLocalFunction = _dereq_(
|
|
20632
|
+
var createMicrosoftUnsafeLocalFunction = _dereq_(135);
|
|
20373
20633
|
|
|
20374
20634
|
// SVG temp container for IE lacking innerHTML
|
|
20375
20635
|
var reusableSVGContainer;
|
|
@@ -20448,7 +20708,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
20448
20708
|
}
|
|
20449
20709
|
|
|
20450
20710
|
module.exports = setInnerHTML;
|
|
20451
|
-
},{"
|
|
20711
|
+
},{"135":135,"166":166,"9":9}],158:[function(_dereq_,module,exports){
|
|
20452
20712
|
/**
|
|
20453
20713
|
* Copyright 2013-present, Facebook, Inc.
|
|
20454
20714
|
* All rights reserved.
|
|
@@ -20462,9 +20722,9 @@ module.exports = setInnerHTML;
|
|
|
20462
20722
|
|
|
20463
20723
|
'use strict';
|
|
20464
20724
|
|
|
20465
|
-
var ExecutionEnvironment = _dereq_(
|
|
20466
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
20467
|
-
var setInnerHTML = _dereq_(
|
|
20725
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
20726
|
+
var escapeTextContentForBrowser = _dereq_(137);
|
|
20727
|
+
var setInnerHTML = _dereq_(157);
|
|
20468
20728
|
|
|
20469
20729
|
/**
|
|
20470
20730
|
* Set the textContent property of a node, ensuring that whitespace is preserved
|
|
@@ -20497,7 +20757,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
20497
20757
|
}
|
|
20498
20758
|
|
|
20499
20759
|
module.exports = setTextContent;
|
|
20500
|
-
},{"
|
|
20760
|
+
},{"137":137,"157":157,"166":166}],159:[function(_dereq_,module,exports){
|
|
20501
20761
|
/**
|
|
20502
20762
|
* Copyright 2013-present, Facebook, Inc.
|
|
20503
20763
|
* All rights reserved.
|
|
@@ -20511,7 +20771,7 @@ module.exports = setTextContent;
|
|
|
20511
20771
|
|
|
20512
20772
|
'use strict';
|
|
20513
20773
|
|
|
20514
|
-
var shallowEqual = _dereq_(
|
|
20774
|
+
var shallowEqual = _dereq_(189);
|
|
20515
20775
|
|
|
20516
20776
|
/**
|
|
20517
20777
|
* Does a shallow comparison for props and state.
|
|
@@ -20523,7 +20783,7 @@ function shallowCompare(instance, nextProps, nextState) {
|
|
|
20523
20783
|
}
|
|
20524
20784
|
|
|
20525
20785
|
module.exports = shallowCompare;
|
|
20526
|
-
},{"
|
|
20786
|
+
},{"189":189}],160:[function(_dereq_,module,exports){
|
|
20527
20787
|
/**
|
|
20528
20788
|
* Copyright 2013-present, Facebook, Inc.
|
|
20529
20789
|
* All rights reserved.
|
|
@@ -20566,7 +20826,7 @@ function shouldUpdateReactComponent(prevElement, nextElement) {
|
|
|
20566
20826
|
}
|
|
20567
20827
|
|
|
20568
20828
|
module.exports = shouldUpdateReactComponent;
|
|
20569
|
-
},{}],
|
|
20829
|
+
},{}],161:[function(_dereq_,module,exports){
|
|
20570
20830
|
/**
|
|
20571
20831
|
* Copyright 2013-present, Facebook, Inc.
|
|
20572
20832
|
* All rights reserved.
|
|
@@ -20580,15 +20840,15 @@ module.exports = shouldUpdateReactComponent;
|
|
|
20580
20840
|
|
|
20581
20841
|
'use strict';
|
|
20582
20842
|
|
|
20583
|
-
var _prodInvariant = _dereq_(
|
|
20843
|
+
var _prodInvariant = _dereq_(155);
|
|
20584
20844
|
|
|
20585
|
-
var ReactCurrentOwner = _dereq_(
|
|
20586
|
-
var ReactElement = _dereq_(
|
|
20845
|
+
var ReactCurrentOwner = _dereq_(41);
|
|
20846
|
+
var ReactElement = _dereq_(67);
|
|
20587
20847
|
|
|
20588
|
-
var getIteratorFn = _dereq_(
|
|
20589
|
-
var invariant = _dereq_(
|
|
20848
|
+
var getIteratorFn = _dereq_(146);
|
|
20849
|
+
var invariant = _dereq_(180);
|
|
20590
20850
|
var KeyEscapeUtils = _dereq_(23);
|
|
20591
|
-
var warning = _dereq_(
|
|
20851
|
+
var warning = _dereq_(190);
|
|
20592
20852
|
|
|
20593
20853
|
var SEPARATOR = '.';
|
|
20594
20854
|
var SUBSEPARATOR = ':';
|
|
@@ -20667,7 +20927,14 @@ function traverseAllChildrenImpl(children, nameSoFar, callback, traverseContext)
|
|
|
20667
20927
|
}
|
|
20668
20928
|
} else {
|
|
20669
20929
|
if ("development" !== 'production') {
|
|
20670
|
-
|
|
20930
|
+
var mapsAsChildrenAddendum = '';
|
|
20931
|
+
if (ReactCurrentOwner.current) {
|
|
20932
|
+
var mapsAsChildrenOwnerName = ReactCurrentOwner.current.getName();
|
|
20933
|
+
if (mapsAsChildrenOwnerName) {
|
|
20934
|
+
mapsAsChildrenAddendum = ' Check the render method of `' + mapsAsChildrenOwnerName + '`.';
|
|
20935
|
+
}
|
|
20936
|
+
}
|
|
20937
|
+
"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
20938
|
didWarnAboutMaps = true;
|
|
20672
20939
|
}
|
|
20673
20940
|
// Iterator will provide entry [k,v] tuples rather than values.
|
|
@@ -20727,7 +20994,7 @@ function traverseAllChildren(children, callback, traverseContext) {
|
|
|
20727
20994
|
}
|
|
20728
20995
|
|
|
20729
20996
|
module.exports = traverseAllChildren;
|
|
20730
|
-
},{"
|
|
20997
|
+
},{"146":146,"155":155,"180":180,"190":190,"23":23,"41":41,"67":67}],162:[function(_dereq_,module,exports){
|
|
20731
20998
|
/**
|
|
20732
20999
|
* Copyright 2013-present, Facebook, Inc.
|
|
20733
21000
|
* All rights reserved.
|
|
@@ -20743,11 +21010,11 @@ module.exports = traverseAllChildren;
|
|
|
20743
21010
|
|
|
20744
21011
|
'use strict';
|
|
20745
21012
|
|
|
20746
|
-
var _prodInvariant = _dereq_(
|
|
20747
|
-
_assign = _dereq_(
|
|
21013
|
+
var _prodInvariant = _dereq_(155),
|
|
21014
|
+
_assign = _dereq_(191);
|
|
20748
21015
|
|
|
20749
|
-
var keyOf = _dereq_(
|
|
20750
|
-
var invariant = _dereq_(
|
|
21016
|
+
var keyOf = _dereq_(184);
|
|
21017
|
+
var invariant = _dereq_(180);
|
|
20751
21018
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
20752
21019
|
|
|
20753
21020
|
function shallowCopy(x) {
|
|
@@ -20841,7 +21108,7 @@ function update(value, spec) {
|
|
|
20841
21108
|
}
|
|
20842
21109
|
|
|
20843
21110
|
module.exports = update;
|
|
20844
|
-
},{"
|
|
21111
|
+
},{"155":155,"180":180,"184":184,"191":191}],163:[function(_dereq_,module,exports){
|
|
20845
21112
|
/**
|
|
20846
21113
|
* Copyright 2015-present, Facebook, Inc.
|
|
20847
21114
|
* All rights reserved.
|
|
@@ -20855,10 +21122,10 @@ module.exports = update;
|
|
|
20855
21122
|
|
|
20856
21123
|
'use strict';
|
|
20857
21124
|
|
|
20858
|
-
var _assign = _dereq_(
|
|
21125
|
+
var _assign = _dereq_(191);
|
|
20859
21126
|
|
|
20860
|
-
var emptyFunction = _dereq_(
|
|
20861
|
-
var warning = _dereq_(
|
|
21127
|
+
var emptyFunction = _dereq_(172);
|
|
21128
|
+
var warning = _dereq_(190);
|
|
20862
21129
|
|
|
20863
21130
|
var validateDOMNesting = emptyFunction;
|
|
20864
21131
|
|
|
@@ -21211,7 +21478,7 @@ if ("development" !== 'production') {
|
|
|
21211
21478
|
}
|
|
21212
21479
|
|
|
21213
21480
|
module.exports = validateDOMNesting;
|
|
21214
|
-
},{"
|
|
21481
|
+
},{"172":172,"190":190,"191":191}],164:[function(_dereq_,module,exports){
|
|
21215
21482
|
'use strict';
|
|
21216
21483
|
|
|
21217
21484
|
/**
|
|
@@ -21225,7 +21492,7 @@ module.exports = validateDOMNesting;
|
|
|
21225
21492
|
* @typechecks
|
|
21226
21493
|
*/
|
|
21227
21494
|
|
|
21228
|
-
var invariant = _dereq_(
|
|
21495
|
+
var invariant = _dereq_(180);
|
|
21229
21496
|
|
|
21230
21497
|
/**
|
|
21231
21498
|
* The CSSCore module specifies the API (and implements most of the methods)
|
|
@@ -21333,7 +21600,7 @@ var CSSCore = {
|
|
|
21333
21600
|
};
|
|
21334
21601
|
|
|
21335
21602
|
module.exports = CSSCore;
|
|
21336
|
-
},{"
|
|
21603
|
+
},{"180":180}],165:[function(_dereq_,module,exports){
|
|
21337
21604
|
'use strict';
|
|
21338
21605
|
|
|
21339
21606
|
/**
|
|
@@ -21354,7 +21621,7 @@ module.exports = CSSCore;
|
|
|
21354
21621
|
* @typechecks
|
|
21355
21622
|
*/
|
|
21356
21623
|
|
|
21357
|
-
var emptyFunction = _dereq_(
|
|
21624
|
+
var emptyFunction = _dereq_(172);
|
|
21358
21625
|
|
|
21359
21626
|
/**
|
|
21360
21627
|
* Upstream version of event listener. Does not take into account specific
|
|
@@ -21417,7 +21684,7 @@ var EventListener = {
|
|
|
21417
21684
|
};
|
|
21418
21685
|
|
|
21419
21686
|
module.exports = EventListener;
|
|
21420
|
-
},{"
|
|
21687
|
+
},{"172":172}],166:[function(_dereq_,module,exports){
|
|
21421
21688
|
/**
|
|
21422
21689
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
21423
21690
|
* All rights reserved.
|
|
@@ -21453,7 +21720,7 @@ var ExecutionEnvironment = {
|
|
|
21453
21720
|
};
|
|
21454
21721
|
|
|
21455
21722
|
module.exports = ExecutionEnvironment;
|
|
21456
|
-
},{}],
|
|
21723
|
+
},{}],167:[function(_dereq_,module,exports){
|
|
21457
21724
|
"use strict";
|
|
21458
21725
|
|
|
21459
21726
|
/**
|
|
@@ -21485,7 +21752,7 @@ function camelize(string) {
|
|
|
21485
21752
|
}
|
|
21486
21753
|
|
|
21487
21754
|
module.exports = camelize;
|
|
21488
|
-
},{}],
|
|
21755
|
+
},{}],168:[function(_dereq_,module,exports){
|
|
21489
21756
|
/**
|
|
21490
21757
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
21491
21758
|
* All rights reserved.
|
|
@@ -21499,7 +21766,7 @@ module.exports = camelize;
|
|
|
21499
21766
|
|
|
21500
21767
|
'use strict';
|
|
21501
21768
|
|
|
21502
|
-
var camelize = _dereq_(
|
|
21769
|
+
var camelize = _dereq_(167);
|
|
21503
21770
|
|
|
21504
21771
|
var msPattern = /^-ms-/;
|
|
21505
21772
|
|
|
@@ -21525,7 +21792,7 @@ function camelizeStyleName(string) {
|
|
|
21525
21792
|
}
|
|
21526
21793
|
|
|
21527
21794
|
module.exports = camelizeStyleName;
|
|
21528
|
-
},{"
|
|
21795
|
+
},{"167":167}],169:[function(_dereq_,module,exports){
|
|
21529
21796
|
'use strict';
|
|
21530
21797
|
|
|
21531
21798
|
/**
|
|
@@ -21539,7 +21806,7 @@ module.exports = camelizeStyleName;
|
|
|
21539
21806
|
*
|
|
21540
21807
|
*/
|
|
21541
21808
|
|
|
21542
|
-
var isTextNode = _dereq_(
|
|
21809
|
+
var isTextNode = _dereq_(182);
|
|
21543
21810
|
|
|
21544
21811
|
/*eslint-disable no-bitwise */
|
|
21545
21812
|
|
|
@@ -21565,7 +21832,7 @@ function containsNode(outerNode, innerNode) {
|
|
|
21565
21832
|
}
|
|
21566
21833
|
|
|
21567
21834
|
module.exports = containsNode;
|
|
21568
|
-
},{"
|
|
21835
|
+
},{"182":182}],170:[function(_dereq_,module,exports){
|
|
21569
21836
|
'use strict';
|
|
21570
21837
|
|
|
21571
21838
|
/**
|
|
@@ -21579,7 +21846,7 @@ module.exports = containsNode;
|
|
|
21579
21846
|
* @typechecks
|
|
21580
21847
|
*/
|
|
21581
21848
|
|
|
21582
|
-
var invariant = _dereq_(
|
|
21849
|
+
var invariant = _dereq_(180);
|
|
21583
21850
|
|
|
21584
21851
|
/**
|
|
21585
21852
|
* Convert array-like objects to arrays.
|
|
@@ -21692,7 +21959,7 @@ function createArrayFromMixed(obj) {
|
|
|
21692
21959
|
}
|
|
21693
21960
|
|
|
21694
21961
|
module.exports = createArrayFromMixed;
|
|
21695
|
-
},{"
|
|
21962
|
+
},{"180":180}],171:[function(_dereq_,module,exports){
|
|
21696
21963
|
'use strict';
|
|
21697
21964
|
|
|
21698
21965
|
/**
|
|
@@ -21708,11 +21975,11 @@ module.exports = createArrayFromMixed;
|
|
|
21708
21975
|
|
|
21709
21976
|
/*eslint-disable fb-www/unsafe-html*/
|
|
21710
21977
|
|
|
21711
|
-
var ExecutionEnvironment = _dereq_(
|
|
21978
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
21712
21979
|
|
|
21713
|
-
var createArrayFromMixed = _dereq_(
|
|
21714
|
-
var getMarkupWrap = _dereq_(
|
|
21715
|
-
var invariant = _dereq_(
|
|
21980
|
+
var createArrayFromMixed = _dereq_(170);
|
|
21981
|
+
var getMarkupWrap = _dereq_(176);
|
|
21982
|
+
var invariant = _dereq_(180);
|
|
21716
21983
|
|
|
21717
21984
|
/**
|
|
21718
21985
|
* Dummy container used to render all markup.
|
|
@@ -21776,7 +22043,7 @@ function createNodesFromMarkup(markup, handleScript) {
|
|
|
21776
22043
|
}
|
|
21777
22044
|
|
|
21778
22045
|
module.exports = createNodesFromMarkup;
|
|
21779
|
-
},{"
|
|
22046
|
+
},{"166":166,"170":170,"176":176,"180":180}],172:[function(_dereq_,module,exports){
|
|
21780
22047
|
"use strict";
|
|
21781
22048
|
|
|
21782
22049
|
/**
|
|
@@ -21815,7 +22082,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
|
|
|
21815
22082
|
};
|
|
21816
22083
|
|
|
21817
22084
|
module.exports = emptyFunction;
|
|
21818
|
-
},{}],
|
|
22085
|
+
},{}],173:[function(_dereq_,module,exports){
|
|
21819
22086
|
/**
|
|
21820
22087
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
21821
22088
|
* All rights reserved.
|
|
@@ -21835,7 +22102,7 @@ if ("development" !== 'production') {
|
|
|
21835
22102
|
}
|
|
21836
22103
|
|
|
21837
22104
|
module.exports = emptyObject;
|
|
21838
|
-
},{}],
|
|
22105
|
+
},{}],174:[function(_dereq_,module,exports){
|
|
21839
22106
|
/**
|
|
21840
22107
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
21841
22108
|
* All rights reserved.
|
|
@@ -21862,7 +22129,7 @@ function focusNode(node) {
|
|
|
21862
22129
|
}
|
|
21863
22130
|
|
|
21864
22131
|
module.exports = focusNode;
|
|
21865
|
-
},{}],
|
|
22132
|
+
},{}],175:[function(_dereq_,module,exports){
|
|
21866
22133
|
'use strict';
|
|
21867
22134
|
|
|
21868
22135
|
/**
|
|
@@ -21897,7 +22164,7 @@ function getActiveElement() /*?DOMElement*/{
|
|
|
21897
22164
|
}
|
|
21898
22165
|
|
|
21899
22166
|
module.exports = getActiveElement;
|
|
21900
|
-
},{}],
|
|
22167
|
+
},{}],176:[function(_dereq_,module,exports){
|
|
21901
22168
|
'use strict';
|
|
21902
22169
|
|
|
21903
22170
|
/**
|
|
@@ -21912,9 +22179,9 @@ module.exports = getActiveElement;
|
|
|
21912
22179
|
|
|
21913
22180
|
/*eslint-disable fb-www/unsafe-html */
|
|
21914
22181
|
|
|
21915
|
-
var ExecutionEnvironment = _dereq_(
|
|
22182
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
21916
22183
|
|
|
21917
|
-
var invariant = _dereq_(
|
|
22184
|
+
var invariant = _dereq_(180);
|
|
21918
22185
|
|
|
21919
22186
|
/**
|
|
21920
22187
|
* Dummy container used to detect which wraps are necessary.
|
|
@@ -21992,7 +22259,7 @@ function getMarkupWrap(nodeName) {
|
|
|
21992
22259
|
}
|
|
21993
22260
|
|
|
21994
22261
|
module.exports = getMarkupWrap;
|
|
21995
|
-
},{"
|
|
22262
|
+
},{"166":166,"180":180}],177:[function(_dereq_,module,exports){
|
|
21996
22263
|
/**
|
|
21997
22264
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
21998
22265
|
* All rights reserved.
|
|
@@ -22031,7 +22298,7 @@ function getUnboundedScrollPosition(scrollable) {
|
|
|
22031
22298
|
}
|
|
22032
22299
|
|
|
22033
22300
|
module.exports = getUnboundedScrollPosition;
|
|
22034
|
-
},{}],
|
|
22301
|
+
},{}],178:[function(_dereq_,module,exports){
|
|
22035
22302
|
'use strict';
|
|
22036
22303
|
|
|
22037
22304
|
/**
|
|
@@ -22064,7 +22331,7 @@ function hyphenate(string) {
|
|
|
22064
22331
|
}
|
|
22065
22332
|
|
|
22066
22333
|
module.exports = hyphenate;
|
|
22067
|
-
},{}],
|
|
22334
|
+
},{}],179:[function(_dereq_,module,exports){
|
|
22068
22335
|
/**
|
|
22069
22336
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22070
22337
|
* All rights reserved.
|
|
@@ -22078,7 +22345,7 @@ module.exports = hyphenate;
|
|
|
22078
22345
|
|
|
22079
22346
|
'use strict';
|
|
22080
22347
|
|
|
22081
|
-
var hyphenate = _dereq_(
|
|
22348
|
+
var hyphenate = _dereq_(178);
|
|
22082
22349
|
|
|
22083
22350
|
var msPattern = /^ms-/;
|
|
22084
22351
|
|
|
@@ -22103,7 +22370,7 @@ function hyphenateStyleName(string) {
|
|
|
22103
22370
|
}
|
|
22104
22371
|
|
|
22105
22372
|
module.exports = hyphenateStyleName;
|
|
22106
|
-
},{"
|
|
22373
|
+
},{"178":178}],180:[function(_dereq_,module,exports){
|
|
22107
22374
|
/**
|
|
22108
22375
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22109
22376
|
* All rights reserved.
|
|
@@ -22153,7 +22420,7 @@ function invariant(condition, format, a, b, c, d, e, f) {
|
|
|
22153
22420
|
}
|
|
22154
22421
|
|
|
22155
22422
|
module.exports = invariant;
|
|
22156
|
-
},{}],
|
|
22423
|
+
},{}],181:[function(_dereq_,module,exports){
|
|
22157
22424
|
'use strict';
|
|
22158
22425
|
|
|
22159
22426
|
/**
|
|
@@ -22176,7 +22443,7 @@ function isNode(object) {
|
|
|
22176
22443
|
}
|
|
22177
22444
|
|
|
22178
22445
|
module.exports = isNode;
|
|
22179
|
-
},{}],
|
|
22446
|
+
},{}],182:[function(_dereq_,module,exports){
|
|
22180
22447
|
'use strict';
|
|
22181
22448
|
|
|
22182
22449
|
/**
|
|
@@ -22190,7 +22457,7 @@ module.exports = isNode;
|
|
|
22190
22457
|
* @typechecks
|
|
22191
22458
|
*/
|
|
22192
22459
|
|
|
22193
|
-
var isNode = _dereq_(
|
|
22460
|
+
var isNode = _dereq_(181);
|
|
22194
22461
|
|
|
22195
22462
|
/**
|
|
22196
22463
|
* @param {*} object The object to check.
|
|
@@ -22201,7 +22468,7 @@ function isTextNode(object) {
|
|
|
22201
22468
|
}
|
|
22202
22469
|
|
|
22203
22470
|
module.exports = isTextNode;
|
|
22204
|
-
},{"
|
|
22471
|
+
},{"181":181}],183:[function(_dereq_,module,exports){
|
|
22205
22472
|
/**
|
|
22206
22473
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22207
22474
|
* All rights reserved.
|
|
@@ -22215,7 +22482,7 @@ module.exports = isTextNode;
|
|
|
22215
22482
|
|
|
22216
22483
|
'use strict';
|
|
22217
22484
|
|
|
22218
|
-
var invariant = _dereq_(
|
|
22485
|
+
var invariant = _dereq_(180);
|
|
22219
22486
|
|
|
22220
22487
|
/**
|
|
22221
22488
|
* Constructs an enumeration with keys equal to their value.
|
|
@@ -22249,7 +22516,7 @@ var keyMirror = function keyMirror(obj) {
|
|
|
22249
22516
|
};
|
|
22250
22517
|
|
|
22251
22518
|
module.exports = keyMirror;
|
|
22252
|
-
},{"
|
|
22519
|
+
},{"180":180}],184:[function(_dereq_,module,exports){
|
|
22253
22520
|
"use strict";
|
|
22254
22521
|
|
|
22255
22522
|
/**
|
|
@@ -22284,7 +22551,7 @@ var keyOf = function keyOf(oneKeyObj) {
|
|
|
22284
22551
|
};
|
|
22285
22552
|
|
|
22286
22553
|
module.exports = keyOf;
|
|
22287
|
-
},{}],
|
|
22554
|
+
},{}],185:[function(_dereq_,module,exports){
|
|
22288
22555
|
/**
|
|
22289
22556
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22290
22557
|
* All rights reserved.
|
|
@@ -22335,7 +22602,7 @@ function mapObject(object, callback, context) {
|
|
|
22335
22602
|
}
|
|
22336
22603
|
|
|
22337
22604
|
module.exports = mapObject;
|
|
22338
|
-
},{}],
|
|
22605
|
+
},{}],186:[function(_dereq_,module,exports){
|
|
22339
22606
|
/**
|
|
22340
22607
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22341
22608
|
* All rights reserved.
|
|
@@ -22365,7 +22632,7 @@ function memoizeStringOnly(callback) {
|
|
|
22365
22632
|
}
|
|
22366
22633
|
|
|
22367
22634
|
module.exports = memoizeStringOnly;
|
|
22368
|
-
},{}],
|
|
22635
|
+
},{}],187:[function(_dereq_,module,exports){
|
|
22369
22636
|
/**
|
|
22370
22637
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22371
22638
|
* All rights reserved.
|
|
@@ -22379,7 +22646,7 @@ module.exports = memoizeStringOnly;
|
|
|
22379
22646
|
|
|
22380
22647
|
'use strict';
|
|
22381
22648
|
|
|
22382
|
-
var ExecutionEnvironment = _dereq_(
|
|
22649
|
+
var ExecutionEnvironment = _dereq_(166);
|
|
22383
22650
|
|
|
22384
22651
|
var performance;
|
|
22385
22652
|
|
|
@@ -22388,7 +22655,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
22388
22655
|
}
|
|
22389
22656
|
|
|
22390
22657
|
module.exports = performance || {};
|
|
22391
|
-
},{"
|
|
22658
|
+
},{"166":166}],188:[function(_dereq_,module,exports){
|
|
22392
22659
|
'use strict';
|
|
22393
22660
|
|
|
22394
22661
|
/**
|
|
@@ -22402,7 +22669,7 @@ module.exports = performance || {};
|
|
|
22402
22669
|
* @typechecks
|
|
22403
22670
|
*/
|
|
22404
22671
|
|
|
22405
|
-
var performance = _dereq_(
|
|
22672
|
+
var performance = _dereq_(187);
|
|
22406
22673
|
|
|
22407
22674
|
var performanceNow;
|
|
22408
22675
|
|
|
@@ -22422,7 +22689,7 @@ if (performance.now) {
|
|
|
22422
22689
|
}
|
|
22423
22690
|
|
|
22424
22691
|
module.exports = performanceNow;
|
|
22425
|
-
},{"
|
|
22692
|
+
},{"187":187}],189:[function(_dereq_,module,exports){
|
|
22426
22693
|
/**
|
|
22427
22694
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
22428
22695
|
* All rights reserved.
|
|
@@ -22489,7 +22756,7 @@ function shallowEqual(objA, objB) {
|
|
|
22489
22756
|
}
|
|
22490
22757
|
|
|
22491
22758
|
module.exports = shallowEqual;
|
|
22492
|
-
},{}],
|
|
22759
|
+
},{}],190:[function(_dereq_,module,exports){
|
|
22493
22760
|
/**
|
|
22494
22761
|
* Copyright 2014-2015, Facebook, Inc.
|
|
22495
22762
|
* All rights reserved.
|
|
@@ -22502,7 +22769,7 @@ module.exports = shallowEqual;
|
|
|
22502
22769
|
|
|
22503
22770
|
'use strict';
|
|
22504
22771
|
|
|
22505
|
-
var emptyFunction = _dereq_(
|
|
22772
|
+
var emptyFunction = _dereq_(172);
|
|
22506
22773
|
|
|
22507
22774
|
/**
|
|
22508
22775
|
* Similar to invariant but only logs a warning if the condition is not met.
|
|
@@ -22546,7 +22813,7 @@ if ("development" !== 'production') {
|
|
|
22546
22813
|
}
|
|
22547
22814
|
|
|
22548
22815
|
module.exports = warning;
|
|
22549
|
-
},{"
|
|
22816
|
+
},{"172":172}],191:[function(_dereq_,module,exports){
|
|
22550
22817
|
'use strict';
|
|
22551
22818
|
/* eslint-disable no-unused-vars */
|
|
22552
22819
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -22631,5 +22898,5 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
|
22631
22898
|
return to;
|
|
22632
22899
|
};
|
|
22633
22900
|
|
|
22634
|
-
},{}]},{},[
|
|
22901
|
+
},{}]},{},[112])(112)
|
|
22635
22902
|
});
|