react 15.0.2-alpha.3 → 15.0.3-alpha.2
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 +982 -843
- package/dist/react-with-addons.min.js +6 -6
- package/dist/react.js +901 -765
- package/dist/react.min.js +6 -6
- package/lib/DOMLazyTree.js +9 -2
- package/lib/DisabledInputUtils.js +50 -0
- package/lib/KeyEscapeUtils.js +58 -0
- package/lib/ReactChildReconciler.js +2 -1
- package/lib/ReactChildren.js +1 -1
- package/lib/ReactCompositeComponent.js +38 -30
- package/lib/ReactDOMButton.js +2 -28
- package/lib/ReactDOMComponent.js +10 -6
- package/lib/ReactDOMContainerInfo.js +1 -0
- package/lib/ReactDOMInput.js +3 -2
- package/lib/ReactDOMOption.js +10 -2
- package/lib/ReactDOMSelect.js +2 -1
- package/lib/ReactDOMTextarea.js +2 -1
- package/lib/ReactDefaultPerfAnalysis.js +3 -2
- package/lib/ReactNativeAttributePayload.js +7 -36
- package/lib/{IOSNativeBridgeEventPlugin.js → ReactNativeBridgeEventPlugin.js} +8 -5
- package/lib/ReactNativeDefaultInjection.js +15 -12
- package/lib/ReactNativeEventEmitter.js +6 -3
- package/lib/{IOSDefaultEventPluginOrder.js → ReactNativeEventPluginOrder.js} +3 -3
- package/lib/ReactServerRenderingTransaction.js +5 -1
- package/lib/ReactTestUtils.js +6 -3
- package/lib/ReactVersion.js +1 -1
- package/lib/SVGDOMPropertyConfig.js +1 -1
- package/lib/flattenChildren.js +2 -1
- package/lib/onlyChild.js +1 -1
- package/lib/traverseAllChildren.js +3 -34
- package/lib/validateDOMNesting.js +1 -0
- package/package.json +2 -2
- package/lib/OrderedMap.js +0 -454
- package/lib/ReactPropTransferer.js +0 -109
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* React (with addons) v15.0.
|
|
2
|
+
* React (with addons) v15.0.3-alpha.2
|
|
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_(44);
|
|
19
19
|
|
|
20
|
-
var focusNode = _dereq_(
|
|
20
|
+
var focusNode = _dereq_(167);
|
|
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
|
+
},{"167":167,"44":44}],2:[function(_dereq_,module,exports){
|
|
30
30
|
/**
|
|
31
31
|
* Copyright 2013-present Facebook, Inc.
|
|
32
32
|
* All rights reserved.
|
|
@@ -40,14 +40,14 @@ module.exports = AutoFocusUtils;
|
|
|
40
40
|
|
|
41
41
|
'use strict';
|
|
42
42
|
|
|
43
|
-
var EventConstants = _dereq_(
|
|
44
|
-
var EventPropagators = _dereq_(
|
|
45
|
-
var ExecutionEnvironment = _dereq_(
|
|
46
|
-
var FallbackCompositionState = _dereq_(
|
|
47
|
-
var SyntheticCompositionEvent = _dereq_(
|
|
48
|
-
var SyntheticInputEvent = _dereq_(
|
|
43
|
+
var EventConstants = _dereq_(16);
|
|
44
|
+
var EventPropagators = _dereq_(20);
|
|
45
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
46
|
+
var FallbackCompositionState = _dereq_(21);
|
|
47
|
+
var SyntheticCompositionEvent = _dereq_(113);
|
|
48
|
+
var SyntheticInputEvent = _dereq_(117);
|
|
49
49
|
|
|
50
|
-
var keyOf = _dereq_(
|
|
50
|
+
var keyOf = _dereq_(177);
|
|
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
|
+
},{"113":113,"117":117,"159":159,"16":16,"177":177,"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 ReactPerf = _dereq_(
|
|
582
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
583
|
+
var ReactPerf = _dereq_(88);
|
|
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_(161);
|
|
586
|
+
var dangerousStyleValue = _dereq_(130);
|
|
587
|
+
var hyphenateStyleName = _dereq_(172);
|
|
588
|
+
var memoizeStringOnly = _dereq_(179);
|
|
589
|
+
var warning = _dereq_(183);
|
|
590
590
|
|
|
591
591
|
var processStyleName = memoizeStringOnly(function (styleName) {
|
|
592
592
|
return hyphenateStyleName(styleName);
|
|
@@ -770,7 +770,7 @@ ReactPerf.measureMethods(CSSPropertyOperations, 'CSSPropertyOperations', {
|
|
|
770
770
|
});
|
|
771
771
|
|
|
772
772
|
module.exports = CSSPropertyOperations;
|
|
773
|
-
},{"
|
|
773
|
+
},{"130":130,"159":159,"161":161,"172":172,"179":179,"183":183,"3":3,"88":88}],5:[function(_dereq_,module,exports){
|
|
774
774
|
/**
|
|
775
775
|
* Copyright 2013-present, Facebook, Inc.
|
|
776
776
|
* All rights reserved.
|
|
@@ -784,11 +784,11 @@ module.exports = CSSPropertyOperations;
|
|
|
784
784
|
|
|
785
785
|
'use strict';
|
|
786
786
|
|
|
787
|
-
var _assign = _dereq_(
|
|
787
|
+
var _assign = _dereq_(184);
|
|
788
788
|
|
|
789
|
-
var PooledClass = _dereq_(
|
|
789
|
+
var PooledClass = _dereq_(26);
|
|
790
790
|
|
|
791
|
-
var invariant = _dereq_(
|
|
791
|
+
var invariant = _dereq_(173);
|
|
792
792
|
|
|
793
793
|
/**
|
|
794
794
|
* A specialized pseudo-event module to help keep track of components waiting to
|
|
@@ -876,7 +876,7 @@ _assign(CallbackQueue.prototype, {
|
|
|
876
876
|
PooledClass.addPoolingTo(CallbackQueue);
|
|
877
877
|
|
|
878
878
|
module.exports = CallbackQueue;
|
|
879
|
-
},{"
|
|
879
|
+
},{"173":173,"184":184,"26":26}],6:[function(_dereq_,module,exports){
|
|
880
880
|
/**
|
|
881
881
|
* Copyright 2013-present, Facebook, Inc.
|
|
882
882
|
* All rights reserved.
|
|
@@ -890,18 +890,18 @@ module.exports = CallbackQueue;
|
|
|
890
890
|
|
|
891
891
|
'use strict';
|
|
892
892
|
|
|
893
|
-
var EventConstants = _dereq_(
|
|
894
|
-
var EventPluginHub = _dereq_(
|
|
895
|
-
var EventPropagators = _dereq_(
|
|
896
|
-
var ExecutionEnvironment = _dereq_(
|
|
897
|
-
var ReactDOMComponentTree = _dereq_(
|
|
898
|
-
var ReactUpdates = _dereq_(
|
|
899
|
-
var SyntheticEvent = _dereq_(
|
|
893
|
+
var EventConstants = _dereq_(16);
|
|
894
|
+
var EventPluginHub = _dereq_(17);
|
|
895
|
+
var EventPropagators = _dereq_(20);
|
|
896
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
897
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
898
|
+
var ReactUpdates = _dereq_(104);
|
|
899
|
+
var SyntheticEvent = _dereq_(115);
|
|
900
900
|
|
|
901
|
-
var getEventTarget = _dereq_(
|
|
902
|
-
var isEventSupported = _dereq_(
|
|
903
|
-
var isTextInputElement = _dereq_(
|
|
904
|
-
var keyOf = _dereq_(
|
|
901
|
+
var getEventTarget = _dereq_(138);
|
|
902
|
+
var isEventSupported = _dereq_(145);
|
|
903
|
+
var isTextInputElement = _dereq_(146);
|
|
904
|
+
var keyOf = _dereq_(177);
|
|
905
905
|
|
|
906
906
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
907
907
|
|
|
@@ -1202,7 +1202,7 @@ var ChangeEventPlugin = {
|
|
|
1202
1202
|
};
|
|
1203
1203
|
|
|
1204
1204
|
module.exports = ChangeEventPlugin;
|
|
1205
|
-
},{"
|
|
1205
|
+
},{"104":104,"115":115,"138":138,"145":145,"146":146,"159":159,"16":16,"17":17,"177":177,"20":20,"44":44}],7:[function(_dereq_,module,exports){
|
|
1206
1206
|
/**
|
|
1207
1207
|
* Copyright 2013-present, Facebook, Inc.
|
|
1208
1208
|
* All rights reserved.
|
|
@@ -1218,12 +1218,12 @@ module.exports = ChangeEventPlugin;
|
|
|
1218
1218
|
|
|
1219
1219
|
var DOMLazyTree = _dereq_(8);
|
|
1220
1220
|
var Danger = _dereq_(12);
|
|
1221
|
-
var ReactMultiChildUpdateTypes = _dereq_(
|
|
1222
|
-
var ReactPerf = _dereq_(
|
|
1221
|
+
var ReactMultiChildUpdateTypes = _dereq_(83);
|
|
1222
|
+
var ReactPerf = _dereq_(88);
|
|
1223
1223
|
|
|
1224
|
-
var createMicrosoftUnsafeLocalFunction = _dereq_(
|
|
1225
|
-
var setInnerHTML = _dereq_(
|
|
1226
|
-
var setTextContent = _dereq_(
|
|
1224
|
+
var createMicrosoftUnsafeLocalFunction = _dereq_(129);
|
|
1225
|
+
var setInnerHTML = _dereq_(150);
|
|
1226
|
+
var setTextContent = _dereq_(151);
|
|
1227
1227
|
|
|
1228
1228
|
function getNodeAfter(parentNode, node) {
|
|
1229
1229
|
// Special case for text components, which return [open, close] comments
|
|
@@ -1362,7 +1362,7 @@ ReactPerf.measureMethods(DOMChildrenOperations, 'DOMChildrenOperations', {
|
|
|
1362
1362
|
});
|
|
1363
1363
|
|
|
1364
1364
|
module.exports = DOMChildrenOperations;
|
|
1365
|
-
},{"12":12,"
|
|
1365
|
+
},{"12":12,"129":129,"150":150,"151":151,"8":8,"83":83,"88":88}],8:[function(_dereq_,module,exports){
|
|
1366
1366
|
/**
|
|
1367
1367
|
* Copyright 2015-present, Facebook, Inc.
|
|
1368
1368
|
* All rights reserved.
|
|
@@ -1376,8 +1376,13 @@ module.exports = DOMChildrenOperations;
|
|
|
1376
1376
|
|
|
1377
1377
|
'use strict';
|
|
1378
1378
|
|
|
1379
|
-
var
|
|
1380
|
-
|
|
1379
|
+
var DOMNamespaces = _dereq_(9);
|
|
1380
|
+
|
|
1381
|
+
var createMicrosoftUnsafeLocalFunction = _dereq_(129);
|
|
1382
|
+
var setTextContent = _dereq_(151);
|
|
1383
|
+
|
|
1384
|
+
var ELEMENT_NODE_TYPE = 1;
|
|
1385
|
+
var DOCUMENT_FRAGMENT_NODE_TYPE = 11;
|
|
1381
1386
|
|
|
1382
1387
|
/**
|
|
1383
1388
|
* In IE (8-11) and Edge, appending nodes with no children is dramatically
|
|
@@ -1413,8 +1418,10 @@ var insertTreeBefore = createMicrosoftUnsafeLocalFunction(function (parentNode,
|
|
|
1413
1418
|
// DocumentFragments aren't actually part of the DOM after insertion so
|
|
1414
1419
|
// appending children won't update the DOM. We need to ensure the fragment
|
|
1415
1420
|
// is properly populated first, breaking out of our lazy approach for just
|
|
1416
|
-
// this level.
|
|
1417
|
-
|
|
1421
|
+
// this level. Also, some <object> plugins (like Flash Player) will read
|
|
1422
|
+
// <param> nodes immediately upon insertion into the DOM, so <object>
|
|
1423
|
+
// must also be populated prior to insertion into the DOM.
|
|
1424
|
+
if (tree.node.nodeType === DOCUMENT_FRAGMENT_NODE_TYPE || tree.node.nodeType === ELEMENT_NODE_TYPE && tree.node.nodeName.toLowerCase() === 'object' && (tree.node.namespaceURI == null || tree.node.namespaceURI === DOMNamespaces.html)) {
|
|
1418
1425
|
insertTreeChildren(tree);
|
|
1419
1426
|
parentNode.insertBefore(tree.node, referenceNode);
|
|
1420
1427
|
} else {
|
|
@@ -1468,7 +1475,7 @@ DOMLazyTree.queueHTML = queueHTML;
|
|
|
1468
1475
|
DOMLazyTree.queueText = queueText;
|
|
1469
1476
|
|
|
1470
1477
|
module.exports = DOMLazyTree;
|
|
1471
|
-
},{"
|
|
1478
|
+
},{"129":129,"151":151,"9":9}],9:[function(_dereq_,module,exports){
|
|
1472
1479
|
/**
|
|
1473
1480
|
* Copyright 2013-present, Facebook, Inc.
|
|
1474
1481
|
* All rights reserved.
|
|
@@ -1503,7 +1510,7 @@ module.exports = DOMNamespaces;
|
|
|
1503
1510
|
|
|
1504
1511
|
'use strict';
|
|
1505
1512
|
|
|
1506
|
-
var invariant = _dereq_(
|
|
1513
|
+
var invariant = _dereq_(173);
|
|
1507
1514
|
|
|
1508
1515
|
function checkMask(value, bitmask) {
|
|
1509
1516
|
return (value & bitmask) === bitmask;
|
|
@@ -1703,7 +1710,7 @@ var DOMProperty = {
|
|
|
1703
1710
|
};
|
|
1704
1711
|
|
|
1705
1712
|
module.exports = DOMProperty;
|
|
1706
|
-
},{"
|
|
1713
|
+
},{"173":173}],11:[function(_dereq_,module,exports){
|
|
1707
1714
|
/**
|
|
1708
1715
|
* Copyright 2013-present, Facebook, Inc.
|
|
1709
1716
|
* All rights reserved.
|
|
@@ -1718,11 +1725,11 @@ module.exports = DOMProperty;
|
|
|
1718
1725
|
'use strict';
|
|
1719
1726
|
|
|
1720
1727
|
var DOMProperty = _dereq_(10);
|
|
1721
|
-
var ReactDOMInstrumentation = _dereq_(
|
|
1722
|
-
var ReactPerf = _dereq_(
|
|
1728
|
+
var ReactDOMInstrumentation = _dereq_(52);
|
|
1729
|
+
var ReactPerf = _dereq_(88);
|
|
1723
1730
|
|
|
1724
|
-
var quoteAttributeValueForBrowser = _dereq_(
|
|
1725
|
-
var warning = _dereq_(
|
|
1731
|
+
var quoteAttributeValueForBrowser = _dereq_(148);
|
|
1732
|
+
var warning = _dereq_(183);
|
|
1726
1733
|
|
|
1727
1734
|
var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + DOMProperty.ATTRIBUTE_NAME_START_CHAR + '][' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');
|
|
1728
1735
|
var illegalAttributeNameCache = {};
|
|
@@ -1917,7 +1924,7 @@ ReactPerf.measureMethods(DOMPropertyOperations, 'DOMPropertyOperations', {
|
|
|
1917
1924
|
});
|
|
1918
1925
|
|
|
1919
1926
|
module.exports = DOMPropertyOperations;
|
|
1920
|
-
},{"10":10,"
|
|
1927
|
+
},{"10":10,"148":148,"183":183,"52":52,"88":88}],12:[function(_dereq_,module,exports){
|
|
1921
1928
|
/**
|
|
1922
1929
|
* Copyright 2013-present, Facebook, Inc.
|
|
1923
1930
|
* All rights reserved.
|
|
@@ -1932,12 +1939,12 @@ module.exports = DOMPropertyOperations;
|
|
|
1932
1939
|
'use strict';
|
|
1933
1940
|
|
|
1934
1941
|
var DOMLazyTree = _dereq_(8);
|
|
1935
|
-
var ExecutionEnvironment = _dereq_(
|
|
1942
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
1936
1943
|
|
|
1937
|
-
var createNodesFromMarkup = _dereq_(
|
|
1938
|
-
var emptyFunction = _dereq_(
|
|
1939
|
-
var getMarkupWrap = _dereq_(
|
|
1940
|
-
var invariant = _dereq_(
|
|
1944
|
+
var createNodesFromMarkup = _dereq_(164);
|
|
1945
|
+
var emptyFunction = _dereq_(165);
|
|
1946
|
+
var getMarkupWrap = _dereq_(169);
|
|
1947
|
+
var invariant = _dereq_(173);
|
|
1941
1948
|
|
|
1942
1949
|
var OPEN_TAG_NAME_EXP = /^(<[^ \/>]+)/;
|
|
1943
1950
|
var RESULT_INDEX_ATTR = 'data-danger-index';
|
|
@@ -2062,7 +2069,7 @@ var Danger = {
|
|
|
2062
2069
|
};
|
|
2063
2070
|
|
|
2064
2071
|
module.exports = Danger;
|
|
2065
|
-
},{"
|
|
2072
|
+
},{"159":159,"164":164,"165":165,"169":169,"173":173,"8":8}],13:[function(_dereq_,module,exports){
|
|
2066
2073
|
/**
|
|
2067
2074
|
* Copyright 2013-present, Facebook, Inc.
|
|
2068
2075
|
* All rights reserved.
|
|
@@ -2076,7 +2083,7 @@ module.exports = Danger;
|
|
|
2076
2083
|
|
|
2077
2084
|
'use strict';
|
|
2078
2085
|
|
|
2079
|
-
var keyOf = _dereq_(
|
|
2086
|
+
var keyOf = _dereq_(177);
|
|
2080
2087
|
|
|
2081
2088
|
/**
|
|
2082
2089
|
* Module that is injectable into `EventPluginHub`, that specifies a
|
|
@@ -2090,7 +2097,58 @@ var keyOf = _dereq_(175);
|
|
|
2090
2097
|
var DefaultEventPluginOrder = [keyOf({ ResponderEventPlugin: null }), keyOf({ SimpleEventPlugin: null }), keyOf({ TapEventPlugin: null }), keyOf({ EnterLeaveEventPlugin: null }), keyOf({ ChangeEventPlugin: null }), keyOf({ SelectEventPlugin: null }), keyOf({ BeforeInputEventPlugin: null })];
|
|
2091
2098
|
|
|
2092
2099
|
module.exports = DefaultEventPluginOrder;
|
|
2093
|
-
},{"
|
|
2100
|
+
},{"177":177}],14:[function(_dereq_,module,exports){
|
|
2101
|
+
/**
|
|
2102
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
2103
|
+
* All rights reserved.
|
|
2104
|
+
*
|
|
2105
|
+
* This source code is licensed under the BSD-style license found in the
|
|
2106
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
2107
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2108
|
+
*
|
|
2109
|
+
* @providesModule DisabledInputUtils
|
|
2110
|
+
*/
|
|
2111
|
+
|
|
2112
|
+
'use strict';
|
|
2113
|
+
|
|
2114
|
+
var disableableMouseListenerNames = {
|
|
2115
|
+
onClick: true,
|
|
2116
|
+
onDoubleClick: true,
|
|
2117
|
+
onMouseDown: true,
|
|
2118
|
+
onMouseMove: true,
|
|
2119
|
+
onMouseUp: true,
|
|
2120
|
+
|
|
2121
|
+
onClickCapture: true,
|
|
2122
|
+
onDoubleClickCapture: true,
|
|
2123
|
+
onMouseDownCapture: true,
|
|
2124
|
+
onMouseMoveCapture: true,
|
|
2125
|
+
onMouseUpCapture: true
|
|
2126
|
+
};
|
|
2127
|
+
|
|
2128
|
+
/**
|
|
2129
|
+
* Implements a native component that does not receive mouse events
|
|
2130
|
+
* when `disabled` is set.
|
|
2131
|
+
*/
|
|
2132
|
+
var DisabledInputUtils = {
|
|
2133
|
+
getNativeProps: function (inst, props) {
|
|
2134
|
+
if (!props.disabled) {
|
|
2135
|
+
return props;
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
// Copy the props, except the mouse listeners
|
|
2139
|
+
var nativeProps = {};
|
|
2140
|
+
for (var key in props) {
|
|
2141
|
+
if (!disableableMouseListenerNames[key] && props.hasOwnProperty(key)) {
|
|
2142
|
+
nativeProps[key] = props[key];
|
|
2143
|
+
}
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
return nativeProps;
|
|
2147
|
+
}
|
|
2148
|
+
};
|
|
2149
|
+
|
|
2150
|
+
module.exports = DisabledInputUtils;
|
|
2151
|
+
},{}],15:[function(_dereq_,module,exports){
|
|
2094
2152
|
/**
|
|
2095
2153
|
* Copyright 2013-present, Facebook, Inc.
|
|
2096
2154
|
* All rights reserved.
|
|
@@ -2104,12 +2162,12 @@ module.exports = DefaultEventPluginOrder;
|
|
|
2104
2162
|
|
|
2105
2163
|
'use strict';
|
|
2106
2164
|
|
|
2107
|
-
var EventConstants = _dereq_(
|
|
2108
|
-
var EventPropagators = _dereq_(
|
|
2109
|
-
var ReactDOMComponentTree = _dereq_(
|
|
2110
|
-
var SyntheticMouseEvent = _dereq_(
|
|
2165
|
+
var EventConstants = _dereq_(16);
|
|
2166
|
+
var EventPropagators = _dereq_(20);
|
|
2167
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
2168
|
+
var SyntheticMouseEvent = _dereq_(119);
|
|
2111
2169
|
|
|
2112
|
-
var keyOf = _dereq_(
|
|
2170
|
+
var keyOf = _dereq_(177);
|
|
2113
2171
|
|
|
2114
2172
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
2115
2173
|
|
|
@@ -2196,7 +2254,7 @@ var EnterLeaveEventPlugin = {
|
|
|
2196
2254
|
};
|
|
2197
2255
|
|
|
2198
2256
|
module.exports = EnterLeaveEventPlugin;
|
|
2199
|
-
},{"
|
|
2257
|
+
},{"119":119,"16":16,"177":177,"20":20,"44":44}],16:[function(_dereq_,module,exports){
|
|
2200
2258
|
/**
|
|
2201
2259
|
* Copyright 2013-present, Facebook, Inc.
|
|
2202
2260
|
* All rights reserved.
|
|
@@ -2210,7 +2268,7 @@ module.exports = EnterLeaveEventPlugin;
|
|
|
2210
2268
|
|
|
2211
2269
|
'use strict';
|
|
2212
2270
|
|
|
2213
|
-
var keyMirror = _dereq_(
|
|
2271
|
+
var keyMirror = _dereq_(176);
|
|
2214
2272
|
|
|
2215
2273
|
var PropagationPhases = keyMirror({ bubbled: null, captured: null });
|
|
2216
2274
|
|
|
@@ -2294,7 +2352,7 @@ var EventConstants = {
|
|
|
2294
2352
|
};
|
|
2295
2353
|
|
|
2296
2354
|
module.exports = EventConstants;
|
|
2297
|
-
},{"
|
|
2355
|
+
},{"176":176}],17:[function(_dereq_,module,exports){
|
|
2298
2356
|
/**
|
|
2299
2357
|
* Copyright 2013-present, Facebook, Inc.
|
|
2300
2358
|
* All rights reserved.
|
|
@@ -2308,13 +2366,13 @@ module.exports = EventConstants;
|
|
|
2308
2366
|
|
|
2309
2367
|
'use strict';
|
|
2310
2368
|
|
|
2311
|
-
var EventPluginRegistry = _dereq_(
|
|
2312
|
-
var EventPluginUtils = _dereq_(
|
|
2313
|
-
var ReactErrorUtils = _dereq_(
|
|
2369
|
+
var EventPluginRegistry = _dereq_(18);
|
|
2370
|
+
var EventPluginUtils = _dereq_(19);
|
|
2371
|
+
var ReactErrorUtils = _dereq_(69);
|
|
2314
2372
|
|
|
2315
|
-
var accumulateInto = _dereq_(
|
|
2316
|
-
var forEachAccumulated = _dereq_(
|
|
2317
|
-
var invariant = _dereq_(
|
|
2373
|
+
var accumulateInto = _dereq_(126);
|
|
2374
|
+
var forEachAccumulated = _dereq_(134);
|
|
2375
|
+
var invariant = _dereq_(173);
|
|
2318
2376
|
|
|
2319
2377
|
/**
|
|
2320
2378
|
* Internal store for event listeners
|
|
@@ -2530,7 +2588,7 @@ var EventPluginHub = {
|
|
|
2530
2588
|
};
|
|
2531
2589
|
|
|
2532
2590
|
module.exports = EventPluginHub;
|
|
2533
|
-
},{"
|
|
2591
|
+
},{"126":126,"134":134,"173":173,"18":18,"19":19,"69":69}],18:[function(_dereq_,module,exports){
|
|
2534
2592
|
/**
|
|
2535
2593
|
* Copyright 2013-present, Facebook, Inc.
|
|
2536
2594
|
* All rights reserved.
|
|
@@ -2544,7 +2602,7 @@ module.exports = EventPluginHub;
|
|
|
2544
2602
|
|
|
2545
2603
|
'use strict';
|
|
2546
2604
|
|
|
2547
|
-
var invariant = _dereq_(
|
|
2605
|
+
var invariant = _dereq_(173);
|
|
2548
2606
|
|
|
2549
2607
|
/**
|
|
2550
2608
|
* Injectable ordering of event plugins.
|
|
@@ -2772,7 +2830,7 @@ var EventPluginRegistry = {
|
|
|
2772
2830
|
};
|
|
2773
2831
|
|
|
2774
2832
|
module.exports = EventPluginRegistry;
|
|
2775
|
-
},{"
|
|
2833
|
+
},{"173":173}],19:[function(_dereq_,module,exports){
|
|
2776
2834
|
/**
|
|
2777
2835
|
* Copyright 2013-present, Facebook, Inc.
|
|
2778
2836
|
* All rights reserved.
|
|
@@ -2786,11 +2844,11 @@ module.exports = EventPluginRegistry;
|
|
|
2786
2844
|
|
|
2787
2845
|
'use strict';
|
|
2788
2846
|
|
|
2789
|
-
var EventConstants = _dereq_(
|
|
2790
|
-
var ReactErrorUtils = _dereq_(
|
|
2847
|
+
var EventConstants = _dereq_(16);
|
|
2848
|
+
var ReactErrorUtils = _dereq_(69);
|
|
2791
2849
|
|
|
2792
|
-
var invariant = _dereq_(
|
|
2793
|
-
var warning = _dereq_(
|
|
2850
|
+
var invariant = _dereq_(173);
|
|
2851
|
+
var warning = _dereq_(183);
|
|
2794
2852
|
|
|
2795
2853
|
/**
|
|
2796
2854
|
* Injected dependencies:
|
|
@@ -3000,7 +3058,7 @@ var EventPluginUtils = {
|
|
|
3000
3058
|
};
|
|
3001
3059
|
|
|
3002
3060
|
module.exports = EventPluginUtils;
|
|
3003
|
-
},{"
|
|
3061
|
+
},{"16":16,"173":173,"183":183,"69":69}],20:[function(_dereq_,module,exports){
|
|
3004
3062
|
/**
|
|
3005
3063
|
* Copyright 2013-present, Facebook, Inc.
|
|
3006
3064
|
* All rights reserved.
|
|
@@ -3014,13 +3072,13 @@ module.exports = EventPluginUtils;
|
|
|
3014
3072
|
|
|
3015
3073
|
'use strict';
|
|
3016
3074
|
|
|
3017
|
-
var EventConstants = _dereq_(
|
|
3018
|
-
var EventPluginHub = _dereq_(
|
|
3019
|
-
var EventPluginUtils = _dereq_(
|
|
3075
|
+
var EventConstants = _dereq_(16);
|
|
3076
|
+
var EventPluginHub = _dereq_(17);
|
|
3077
|
+
var EventPluginUtils = _dereq_(19);
|
|
3020
3078
|
|
|
3021
|
-
var accumulateInto = _dereq_(
|
|
3022
|
-
var forEachAccumulated = _dereq_(
|
|
3023
|
-
var warning = _dereq_(
|
|
3079
|
+
var accumulateInto = _dereq_(126);
|
|
3080
|
+
var forEachAccumulated = _dereq_(134);
|
|
3081
|
+
var warning = _dereq_(183);
|
|
3024
3082
|
|
|
3025
3083
|
var PropagationPhases = EventConstants.PropagationPhases;
|
|
3026
3084
|
var getListener = EventPluginHub.getListener;
|
|
@@ -3138,7 +3196,7 @@ var EventPropagators = {
|
|
|
3138
3196
|
};
|
|
3139
3197
|
|
|
3140
3198
|
module.exports = EventPropagators;
|
|
3141
|
-
},{"
|
|
3199
|
+
},{"126":126,"134":134,"16":16,"17":17,"183":183,"19":19}],21:[function(_dereq_,module,exports){
|
|
3142
3200
|
/**
|
|
3143
3201
|
* Copyright 2013-present, Facebook, Inc.
|
|
3144
3202
|
* All rights reserved.
|
|
@@ -3152,11 +3210,11 @@ module.exports = EventPropagators;
|
|
|
3152
3210
|
|
|
3153
3211
|
'use strict';
|
|
3154
3212
|
|
|
3155
|
-
var _assign = _dereq_(
|
|
3213
|
+
var _assign = _dereq_(184);
|
|
3156
3214
|
|
|
3157
|
-
var PooledClass = _dereq_(
|
|
3215
|
+
var PooledClass = _dereq_(26);
|
|
3158
3216
|
|
|
3159
|
-
var getTextContentAccessor = _dereq_(
|
|
3217
|
+
var getTextContentAccessor = _dereq_(142);
|
|
3160
3218
|
|
|
3161
3219
|
/**
|
|
3162
3220
|
* This helper class stores information about text content of a target node,
|
|
@@ -3234,7 +3292,7 @@ _assign(FallbackCompositionState.prototype, {
|
|
|
3234
3292
|
PooledClass.addPoolingTo(FallbackCompositionState);
|
|
3235
3293
|
|
|
3236
3294
|
module.exports = FallbackCompositionState;
|
|
3237
|
-
},{"
|
|
3295
|
+
},{"142":142,"184":184,"26":26}],22:[function(_dereq_,module,exports){
|
|
3238
3296
|
/**
|
|
3239
3297
|
* Copyright 2013-present, Facebook, Inc.
|
|
3240
3298
|
* All rights reserved.
|
|
@@ -3444,7 +3502,66 @@ var HTMLDOMPropertyConfig = {
|
|
|
3444
3502
|
};
|
|
3445
3503
|
|
|
3446
3504
|
module.exports = HTMLDOMPropertyConfig;
|
|
3447
|
-
},{"10":10}],
|
|
3505
|
+
},{"10":10}],23:[function(_dereq_,module,exports){
|
|
3506
|
+
/**
|
|
3507
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
3508
|
+
* All rights reserved.
|
|
3509
|
+
*
|
|
3510
|
+
* This source code is licensed under the BSD-style license found in the
|
|
3511
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
3512
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3513
|
+
*
|
|
3514
|
+
* @providesModule KeyEscapeUtils
|
|
3515
|
+
*/
|
|
3516
|
+
|
|
3517
|
+
'use strict';
|
|
3518
|
+
|
|
3519
|
+
/**
|
|
3520
|
+
* Escape and wrap key so it is safe to use as a reactid
|
|
3521
|
+
*
|
|
3522
|
+
* @param {*} key to be escaped.
|
|
3523
|
+
* @return {string} the escaped key.
|
|
3524
|
+
*/
|
|
3525
|
+
|
|
3526
|
+
function escape(key) {
|
|
3527
|
+
var escapeRegex = /[=:]/g;
|
|
3528
|
+
var escaperLookup = {
|
|
3529
|
+
'=': '=0',
|
|
3530
|
+
':': '=2'
|
|
3531
|
+
};
|
|
3532
|
+
var escapedString = ('' + key).replace(escapeRegex, function (match) {
|
|
3533
|
+
return escaperLookup[match];
|
|
3534
|
+
});
|
|
3535
|
+
|
|
3536
|
+
return '$' + escapedString;
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
/**
|
|
3540
|
+
* Unescape and unwrap key for human-readable display
|
|
3541
|
+
*
|
|
3542
|
+
* @param {string} key to unescape.
|
|
3543
|
+
* @return {string} the unescaped key.
|
|
3544
|
+
*/
|
|
3545
|
+
function unescape(key) {
|
|
3546
|
+
var unescapeRegex = /(=0|=2)/g;
|
|
3547
|
+
var unescaperLookup = {
|
|
3548
|
+
'=0': '=',
|
|
3549
|
+
'=2': ':'
|
|
3550
|
+
};
|
|
3551
|
+
var keySubstring = key[0] === '.' && key[1] === '$' ? key.substring(2) : key.substring(1);
|
|
3552
|
+
|
|
3553
|
+
return ('' + keySubstring).replace(unescapeRegex, function (match) {
|
|
3554
|
+
return unescaperLookup[match];
|
|
3555
|
+
});
|
|
3556
|
+
}
|
|
3557
|
+
|
|
3558
|
+
var KeyEscapeUtils = {
|
|
3559
|
+
escape: escape,
|
|
3560
|
+
unescape: unescape
|
|
3561
|
+
};
|
|
3562
|
+
|
|
3563
|
+
module.exports = KeyEscapeUtils;
|
|
3564
|
+
},{}],24:[function(_dereq_,module,exports){
|
|
3448
3565
|
/**
|
|
3449
3566
|
* Copyright 2013-present, Facebook, Inc.
|
|
3450
3567
|
* All rights reserved.
|
|
@@ -3458,8 +3575,8 @@ module.exports = HTMLDOMPropertyConfig;
|
|
|
3458
3575
|
|
|
3459
3576
|
'use strict';
|
|
3460
3577
|
|
|
3461
|
-
var ReactLink = _dereq_(
|
|
3462
|
-
var ReactStateSetters = _dereq_(
|
|
3578
|
+
var ReactLink = _dereq_(79);
|
|
3579
|
+
var ReactStateSetters = _dereq_(98);
|
|
3463
3580
|
|
|
3464
3581
|
/**
|
|
3465
3582
|
* A simple mixin around ReactLink.forState().
|
|
@@ -3480,7 +3597,7 @@ var LinkedStateMixin = {
|
|
|
3480
3597
|
};
|
|
3481
3598
|
|
|
3482
3599
|
module.exports = LinkedStateMixin;
|
|
3483
|
-
},{"
|
|
3600
|
+
},{"79":79,"98":98}],25:[function(_dereq_,module,exports){
|
|
3484
3601
|
/**
|
|
3485
3602
|
* Copyright 2013-present, Facebook, Inc.
|
|
3486
3603
|
* All rights reserved.
|
|
@@ -3494,11 +3611,11 @@ module.exports = LinkedStateMixin;
|
|
|
3494
3611
|
|
|
3495
3612
|
'use strict';
|
|
3496
3613
|
|
|
3497
|
-
var ReactPropTypes = _dereq_(
|
|
3498
|
-
var ReactPropTypeLocations = _dereq_(
|
|
3614
|
+
var ReactPropTypes = _dereq_(91);
|
|
3615
|
+
var ReactPropTypeLocations = _dereq_(90);
|
|
3499
3616
|
|
|
3500
|
-
var invariant = _dereq_(
|
|
3501
|
-
var warning = _dereq_(
|
|
3617
|
+
var invariant = _dereq_(173);
|
|
3618
|
+
var warning = _dereq_(183);
|
|
3502
3619
|
|
|
3503
3620
|
var hasReadOnlyValue = {
|
|
3504
3621
|
'button': true,
|
|
@@ -3614,7 +3731,7 @@ var LinkedValueUtils = {
|
|
|
3614
3731
|
};
|
|
3615
3732
|
|
|
3616
3733
|
module.exports = LinkedValueUtils;
|
|
3617
|
-
},{"
|
|
3734
|
+
},{"173":173,"183":183,"90":90,"91":91}],26:[function(_dereq_,module,exports){
|
|
3618
3735
|
/**
|
|
3619
3736
|
* Copyright 2013-present, Facebook, Inc.
|
|
3620
3737
|
* All rights reserved.
|
|
@@ -3628,7 +3745,7 @@ module.exports = LinkedValueUtils;
|
|
|
3628
3745
|
|
|
3629
3746
|
'use strict';
|
|
3630
3747
|
|
|
3631
|
-
var invariant = _dereq_(
|
|
3748
|
+
var invariant = _dereq_(173);
|
|
3632
3749
|
|
|
3633
3750
|
/**
|
|
3634
3751
|
* Static poolers. Several custom versions for each potential number of
|
|
@@ -3734,7 +3851,7 @@ var PooledClass = {
|
|
|
3734
3851
|
};
|
|
3735
3852
|
|
|
3736
3853
|
module.exports = PooledClass;
|
|
3737
|
-
},{"
|
|
3854
|
+
},{"173":173}],27:[function(_dereq_,module,exports){
|
|
3738
3855
|
/**
|
|
3739
3856
|
* Copyright 2013-present, Facebook, Inc.
|
|
3740
3857
|
* All rights reserved.
|
|
@@ -3748,19 +3865,19 @@ module.exports = PooledClass;
|
|
|
3748
3865
|
|
|
3749
3866
|
'use strict';
|
|
3750
3867
|
|
|
3751
|
-
var _assign = _dereq_(
|
|
3868
|
+
var _assign = _dereq_(184);
|
|
3752
3869
|
|
|
3753
|
-
var ReactChildren = _dereq_(
|
|
3754
|
-
var ReactComponent = _dereq_(
|
|
3755
|
-
var ReactClass = _dereq_(
|
|
3756
|
-
var ReactDOMFactories = _dereq_(
|
|
3757
|
-
var ReactElement = _dereq_(
|
|
3758
|
-
var ReactElementValidator = _dereq_(
|
|
3759
|
-
var ReactPropTypes = _dereq_(
|
|
3760
|
-
var ReactVersion = _dereq_(
|
|
3870
|
+
var ReactChildren = _dereq_(32);
|
|
3871
|
+
var ReactComponent = _dereq_(34);
|
|
3872
|
+
var ReactClass = _dereq_(33);
|
|
3873
|
+
var ReactDOMFactories = _dereq_(48);
|
|
3874
|
+
var ReactElement = _dereq_(66);
|
|
3875
|
+
var ReactElementValidator = _dereq_(67);
|
|
3876
|
+
var ReactPropTypes = _dereq_(91);
|
|
3877
|
+
var ReactVersion = _dereq_(105);
|
|
3761
3878
|
|
|
3762
|
-
var onlyChild = _dereq_(
|
|
3763
|
-
var warning = _dereq_(
|
|
3879
|
+
var onlyChild = _dereq_(147);
|
|
3880
|
+
var warning = _dereq_(183);
|
|
3764
3881
|
|
|
3765
3882
|
var createElement = ReactElement.createElement;
|
|
3766
3883
|
var createFactory = ReactElement.createFactory;
|
|
@@ -3822,7 +3939,7 @@ var React = {
|
|
|
3822
3939
|
};
|
|
3823
3940
|
|
|
3824
3941
|
module.exports = React;
|
|
3825
|
-
},{"
|
|
3942
|
+
},{"105":105,"147":147,"183":183,"184":184,"32":32,"33":33,"34":34,"48":48,"66":66,"67":67,"91":91}],28:[function(_dereq_,module,exports){
|
|
3826
3943
|
/**
|
|
3827
3944
|
* Copyright 2013-present, Facebook, Inc.
|
|
3828
3945
|
* All rights reserved.
|
|
@@ -3836,15 +3953,15 @@ module.exports = React;
|
|
|
3836
3953
|
|
|
3837
3954
|
'use strict';
|
|
3838
3955
|
|
|
3839
|
-
var _assign = _dereq_(
|
|
3956
|
+
var _assign = _dereq_(184);
|
|
3840
3957
|
|
|
3841
|
-
var EventConstants = _dereq_(
|
|
3842
|
-
var EventPluginRegistry = _dereq_(
|
|
3843
|
-
var ReactEventEmitterMixin = _dereq_(
|
|
3844
|
-
var ViewportMetrics = _dereq_(
|
|
3958
|
+
var EventConstants = _dereq_(16);
|
|
3959
|
+
var EventPluginRegistry = _dereq_(18);
|
|
3960
|
+
var ReactEventEmitterMixin = _dereq_(70);
|
|
3961
|
+
var ViewportMetrics = _dereq_(125);
|
|
3845
3962
|
|
|
3846
|
-
var getVendorPrefixedEventName = _dereq_(
|
|
3847
|
-
var isEventSupported = _dereq_(
|
|
3963
|
+
var getVendorPrefixedEventName = _dereq_(143);
|
|
3964
|
+
var isEventSupported = _dereq_(145);
|
|
3848
3965
|
|
|
3849
3966
|
/**
|
|
3850
3967
|
* Summary of `ReactBrowserEventEmitter` event handling:
|
|
@@ -4140,7 +4257,7 @@ var ReactBrowserEventEmitter = _assign({}, ReactEventEmitterMixin, {
|
|
|
4140
4257
|
});
|
|
4141
4258
|
|
|
4142
4259
|
module.exports = ReactBrowserEventEmitter;
|
|
4143
|
-
},{"
|
|
4260
|
+
},{"125":125,"143":143,"145":145,"16":16,"18":18,"184":184,"70":70}],29:[function(_dereq_,module,exports){
|
|
4144
4261
|
/**
|
|
4145
4262
|
* Copyright 2013-present, Facebook, Inc.
|
|
4146
4263
|
* All rights reserved.
|
|
@@ -4154,12 +4271,12 @@ module.exports = ReactBrowserEventEmitter;
|
|
|
4154
4271
|
|
|
4155
4272
|
'use strict';
|
|
4156
4273
|
|
|
4157
|
-
var _assign = _dereq_(
|
|
4274
|
+
var _assign = _dereq_(184);
|
|
4158
4275
|
|
|
4159
|
-
var React = _dereq_(
|
|
4276
|
+
var React = _dereq_(27);
|
|
4160
4277
|
|
|
4161
|
-
var ReactTransitionGroup = _dereq_(
|
|
4162
|
-
var ReactCSSTransitionGroupChild = _dereq_(
|
|
4278
|
+
var ReactTransitionGroup = _dereq_(102);
|
|
4279
|
+
var ReactCSSTransitionGroupChild = _dereq_(30);
|
|
4163
4280
|
|
|
4164
4281
|
function createTransitionTimeoutPropValidator(transitionType) {
|
|
4165
4282
|
var timeoutPropName = 'transition' + transitionType + 'Timeout';
|
|
@@ -4223,7 +4340,7 @@ var ReactCSSTransitionGroup = React.createClass({
|
|
|
4223
4340
|
});
|
|
4224
4341
|
|
|
4225
4342
|
module.exports = ReactCSSTransitionGroup;
|
|
4226
|
-
},{"
|
|
4343
|
+
},{"102":102,"184":184,"27":27,"30":30}],30:[function(_dereq_,module,exports){
|
|
4227
4344
|
/**
|
|
4228
4345
|
* Copyright 2013-present, Facebook, Inc.
|
|
4229
4346
|
* All rights reserved.
|
|
@@ -4237,13 +4354,13 @@ module.exports = ReactCSSTransitionGroup;
|
|
|
4237
4354
|
|
|
4238
4355
|
'use strict';
|
|
4239
4356
|
|
|
4240
|
-
var React = _dereq_(
|
|
4241
|
-
var ReactDOM = _dereq_(
|
|
4357
|
+
var React = _dereq_(27);
|
|
4358
|
+
var ReactDOM = _dereq_(40);
|
|
4242
4359
|
|
|
4243
|
-
var CSSCore = _dereq_(
|
|
4244
|
-
var ReactTransitionEvents = _dereq_(
|
|
4360
|
+
var CSSCore = _dereq_(157);
|
|
4361
|
+
var ReactTransitionEvents = _dereq_(101);
|
|
4245
4362
|
|
|
4246
|
-
var onlyChild = _dereq_(
|
|
4363
|
+
var onlyChild = _dereq_(147);
|
|
4247
4364
|
|
|
4248
4365
|
var TICK = 17;
|
|
4249
4366
|
|
|
@@ -4384,7 +4501,7 @@ var ReactCSSTransitionGroupChild = React.createClass({
|
|
|
4384
4501
|
});
|
|
4385
4502
|
|
|
4386
4503
|
module.exports = ReactCSSTransitionGroupChild;
|
|
4387
|
-
},{"
|
|
4504
|
+
},{"101":101,"147":147,"157":157,"27":27,"40":40}],31:[function(_dereq_,module,exports){
|
|
4388
4505
|
/**
|
|
4389
4506
|
* Copyright 2014-present, Facebook, Inc.
|
|
4390
4507
|
* All rights reserved.
|
|
@@ -4398,18 +4515,19 @@ module.exports = ReactCSSTransitionGroupChild;
|
|
|
4398
4515
|
|
|
4399
4516
|
'use strict';
|
|
4400
4517
|
|
|
4401
|
-
var ReactReconciler = _dereq_(
|
|
4518
|
+
var ReactReconciler = _dereq_(93);
|
|
4402
4519
|
|
|
4403
|
-
var instantiateReactComponent = _dereq_(
|
|
4404
|
-
var
|
|
4405
|
-
var
|
|
4406
|
-
var
|
|
4520
|
+
var instantiateReactComponent = _dereq_(144);
|
|
4521
|
+
var KeyEscapeUtils = _dereq_(23);
|
|
4522
|
+
var shouldUpdateReactComponent = _dereq_(153);
|
|
4523
|
+
var traverseAllChildren = _dereq_(154);
|
|
4524
|
+
var warning = _dereq_(183);
|
|
4407
4525
|
|
|
4408
4526
|
function instantiateChild(childInstances, child, name) {
|
|
4409
4527
|
// We found a component instance.
|
|
4410
4528
|
var keyUnique = childInstances[name] === undefined;
|
|
4411
4529
|
if ("development" !== 'production') {
|
|
4412
|
-
"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.', name) : void 0;
|
|
4530
|
+
"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.', KeyEscapeUtils.unescape(name)) : void 0;
|
|
4413
4531
|
}
|
|
4414
4532
|
if (child != null && keyUnique) {
|
|
4415
4533
|
childInstances[name] = instantiateReactComponent(child);
|
|
@@ -4509,7 +4627,7 @@ var ReactChildReconciler = {
|
|
|
4509
4627
|
};
|
|
4510
4628
|
|
|
4511
4629
|
module.exports = ReactChildReconciler;
|
|
4512
|
-
},{"
|
|
4630
|
+
},{"144":144,"153":153,"154":154,"183":183,"23":23,"93":93}],32:[function(_dereq_,module,exports){
|
|
4513
4631
|
/**
|
|
4514
4632
|
* Copyright 2013-present, Facebook, Inc.
|
|
4515
4633
|
* All rights reserved.
|
|
@@ -4523,11 +4641,11 @@ module.exports = ReactChildReconciler;
|
|
|
4523
4641
|
|
|
4524
4642
|
'use strict';
|
|
4525
4643
|
|
|
4526
|
-
var PooledClass = _dereq_(
|
|
4527
|
-
var ReactElement = _dereq_(
|
|
4644
|
+
var PooledClass = _dereq_(26);
|
|
4645
|
+
var ReactElement = _dereq_(66);
|
|
4528
4646
|
|
|
4529
|
-
var emptyFunction = _dereq_(
|
|
4530
|
-
var traverseAllChildren = _dereq_(
|
|
4647
|
+
var emptyFunction = _dereq_(165);
|
|
4648
|
+
var traverseAllChildren = _dereq_(154);
|
|
4531
4649
|
|
|
4532
4650
|
var twoArgumentPooler = PooledClass.twoArgumentPooler;
|
|
4533
4651
|
var fourArgumentPooler = PooledClass.fourArgumentPooler;
|
|
@@ -4642,7 +4760,7 @@ function mapIntoWithKeyPrefixInternal(children, array, prefix, func, context) {
|
|
|
4642
4760
|
/**
|
|
4643
4761
|
* Maps children that are typically specified as `props.children`.
|
|
4644
4762
|
*
|
|
4645
|
-
* The provided mapFunction(child,
|
|
4763
|
+
* The provided mapFunction(child, index) will be called for each
|
|
4646
4764
|
* leaf child.
|
|
4647
4765
|
*
|
|
4648
4766
|
* @param {?*} children Children tree container.
|
|
@@ -4693,7 +4811,7 @@ var ReactChildren = {
|
|
|
4693
4811
|
};
|
|
4694
4812
|
|
|
4695
4813
|
module.exports = ReactChildren;
|
|
4696
|
-
},{"
|
|
4814
|
+
},{"154":154,"165":165,"26":26,"66":66}],33:[function(_dereq_,module,exports){
|
|
4697
4815
|
/**
|
|
4698
4816
|
* Copyright 2013-present, Facebook, Inc.
|
|
4699
4817
|
* All rights reserved.
|
|
@@ -4707,19 +4825,19 @@ module.exports = ReactChildren;
|
|
|
4707
4825
|
|
|
4708
4826
|
'use strict';
|
|
4709
4827
|
|
|
4710
|
-
var _assign = _dereq_(
|
|
4828
|
+
var _assign = _dereq_(184);
|
|
4711
4829
|
|
|
4712
|
-
var ReactComponent = _dereq_(
|
|
4713
|
-
var ReactElement = _dereq_(
|
|
4714
|
-
var ReactPropTypeLocations = _dereq_(
|
|
4715
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
4716
|
-
var ReactNoopUpdateQueue = _dereq_(
|
|
4830
|
+
var ReactComponent = _dereq_(34);
|
|
4831
|
+
var ReactElement = _dereq_(66);
|
|
4832
|
+
var ReactPropTypeLocations = _dereq_(90);
|
|
4833
|
+
var ReactPropTypeLocationNames = _dereq_(89);
|
|
4834
|
+
var ReactNoopUpdateQueue = _dereq_(86);
|
|
4717
4835
|
|
|
4718
|
-
var emptyObject = _dereq_(
|
|
4719
|
-
var invariant = _dereq_(
|
|
4720
|
-
var keyMirror = _dereq_(
|
|
4721
|
-
var keyOf = _dereq_(
|
|
4722
|
-
var warning = _dereq_(
|
|
4836
|
+
var emptyObject = _dereq_(166);
|
|
4837
|
+
var invariant = _dereq_(173);
|
|
4838
|
+
var keyMirror = _dereq_(176);
|
|
4839
|
+
var keyOf = _dereq_(177);
|
|
4840
|
+
var warning = _dereq_(183);
|
|
4723
4841
|
|
|
4724
4842
|
var MIXINS_KEY = keyOf({ mixins: null });
|
|
4725
4843
|
|
|
@@ -5417,7 +5535,7 @@ var ReactClass = {
|
|
|
5417
5535
|
};
|
|
5418
5536
|
|
|
5419
5537
|
module.exports = ReactClass;
|
|
5420
|
-
},{"
|
|
5538
|
+
},{"166":166,"173":173,"176":176,"177":177,"183":183,"184":184,"34":34,"66":66,"86":86,"89":89,"90":90}],34:[function(_dereq_,module,exports){
|
|
5421
5539
|
/**
|
|
5422
5540
|
* Copyright 2013-present, Facebook, Inc.
|
|
5423
5541
|
* All rights reserved.
|
|
@@ -5431,13 +5549,13 @@ module.exports = ReactClass;
|
|
|
5431
5549
|
|
|
5432
5550
|
'use strict';
|
|
5433
5551
|
|
|
5434
|
-
var ReactNoopUpdateQueue = _dereq_(
|
|
5435
|
-
var ReactInstrumentation = _dereq_(
|
|
5552
|
+
var ReactNoopUpdateQueue = _dereq_(86);
|
|
5553
|
+
var ReactInstrumentation = _dereq_(77);
|
|
5436
5554
|
|
|
5437
|
-
var canDefineProperty = _dereq_(
|
|
5438
|
-
var emptyObject = _dereq_(
|
|
5439
|
-
var invariant = _dereq_(
|
|
5440
|
-
var warning = _dereq_(
|
|
5555
|
+
var canDefineProperty = _dereq_(128);
|
|
5556
|
+
var emptyObject = _dereq_(166);
|
|
5557
|
+
var invariant = _dereq_(173);
|
|
5558
|
+
var warning = _dereq_(183);
|
|
5441
5559
|
|
|
5442
5560
|
/**
|
|
5443
5561
|
* Base class helpers for the updating state of a component.
|
|
@@ -5539,7 +5657,7 @@ if ("development" !== 'production') {
|
|
|
5539
5657
|
}
|
|
5540
5658
|
|
|
5541
5659
|
module.exports = ReactComponent;
|
|
5542
|
-
},{"
|
|
5660
|
+
},{"128":128,"166":166,"173":173,"183":183,"77":77,"86":86}],35:[function(_dereq_,module,exports){
|
|
5543
5661
|
/**
|
|
5544
5662
|
* Copyright 2013-present, Facebook, Inc.
|
|
5545
5663
|
* All rights reserved.
|
|
@@ -5554,8 +5672,8 @@ module.exports = ReactComponent;
|
|
|
5554
5672
|
'use strict';
|
|
5555
5673
|
|
|
5556
5674
|
var DOMChildrenOperations = _dereq_(7);
|
|
5557
|
-
var ReactDOMIDOperations = _dereq_(
|
|
5558
|
-
var ReactPerf = _dereq_(
|
|
5675
|
+
var ReactDOMIDOperations = _dereq_(50);
|
|
5676
|
+
var ReactPerf = _dereq_(88);
|
|
5559
5677
|
|
|
5560
5678
|
/**
|
|
5561
5679
|
* Abstracts away all functionality of the reconciler that requires knowledge of
|
|
@@ -5584,7 +5702,7 @@ ReactPerf.measureMethods(ReactComponentBrowserEnvironment, 'ReactComponentBrowse
|
|
|
5584
5702
|
});
|
|
5585
5703
|
|
|
5586
5704
|
module.exports = ReactComponentBrowserEnvironment;
|
|
5587
|
-
},{"
|
|
5705
|
+
},{"50":50,"7":7,"88":88}],36:[function(_dereq_,module,exports){
|
|
5588
5706
|
/**
|
|
5589
5707
|
* Copyright 2014-present, Facebook, Inc.
|
|
5590
5708
|
* All rights reserved.
|
|
@@ -5598,7 +5716,7 @@ module.exports = ReactComponentBrowserEnvironment;
|
|
|
5598
5716
|
|
|
5599
5717
|
'use strict';
|
|
5600
5718
|
|
|
5601
|
-
var invariant = _dereq_(
|
|
5719
|
+
var invariant = _dereq_(173);
|
|
5602
5720
|
|
|
5603
5721
|
var injected = false;
|
|
5604
5722
|
|
|
@@ -5636,7 +5754,7 @@ var ReactComponentEnvironment = {
|
|
|
5636
5754
|
};
|
|
5637
5755
|
|
|
5638
5756
|
module.exports = ReactComponentEnvironment;
|
|
5639
|
-
},{"
|
|
5757
|
+
},{"173":173}],37:[function(_dereq_,module,exports){
|
|
5640
5758
|
/**
|
|
5641
5759
|
* Copyright 2013-present, Facebook, Inc.
|
|
5642
5760
|
* All rights reserved.
|
|
@@ -5650,7 +5768,7 @@ module.exports = ReactComponentEnvironment;
|
|
|
5650
5768
|
|
|
5651
5769
|
'use strict';
|
|
5652
5770
|
|
|
5653
|
-
var shallowCompare = _dereq_(
|
|
5771
|
+
var shallowCompare = _dereq_(152);
|
|
5654
5772
|
|
|
5655
5773
|
/**
|
|
5656
5774
|
* If your React component's render function is "pure", e.g. it will render the
|
|
@@ -5683,7 +5801,7 @@ var ReactComponentWithPureRenderMixin = {
|
|
|
5683
5801
|
};
|
|
5684
5802
|
|
|
5685
5803
|
module.exports = ReactComponentWithPureRenderMixin;
|
|
5686
|
-
},{"
|
|
5804
|
+
},{"152":152}],38:[function(_dereq_,module,exports){
|
|
5687
5805
|
/**
|
|
5688
5806
|
* Copyright 2013-present, Facebook, Inc.
|
|
5689
5807
|
* All rights reserved.
|
|
@@ -5697,25 +5815,25 @@ module.exports = ReactComponentWithPureRenderMixin;
|
|
|
5697
5815
|
|
|
5698
5816
|
'use strict';
|
|
5699
5817
|
|
|
5700
|
-
var _assign = _dereq_(
|
|
5701
|
-
|
|
5702
|
-
var ReactComponentEnvironment = _dereq_(
|
|
5703
|
-
var ReactCurrentOwner = _dereq_(
|
|
5704
|
-
var ReactElement = _dereq_(
|
|
5705
|
-
var ReactErrorUtils = _dereq_(
|
|
5706
|
-
var ReactInstanceMap = _dereq_(
|
|
5707
|
-
var ReactInstrumentation = _dereq_(
|
|
5708
|
-
var ReactNodeTypes = _dereq_(
|
|
5709
|
-
var ReactPerf = _dereq_(
|
|
5710
|
-
var ReactPropTypeLocations = _dereq_(
|
|
5711
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
5712
|
-
var ReactReconciler = _dereq_(
|
|
5713
|
-
var ReactUpdateQueue = _dereq_(
|
|
5714
|
-
|
|
5715
|
-
var emptyObject = _dereq_(
|
|
5716
|
-
var invariant = _dereq_(
|
|
5717
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
5718
|
-
var warning = _dereq_(
|
|
5818
|
+
var _assign = _dereq_(184);
|
|
5819
|
+
|
|
5820
|
+
var ReactComponentEnvironment = _dereq_(36);
|
|
5821
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
5822
|
+
var ReactElement = _dereq_(66);
|
|
5823
|
+
var ReactErrorUtils = _dereq_(69);
|
|
5824
|
+
var ReactInstanceMap = _dereq_(76);
|
|
5825
|
+
var ReactInstrumentation = _dereq_(77);
|
|
5826
|
+
var ReactNodeTypes = _dereq_(85);
|
|
5827
|
+
var ReactPerf = _dereq_(88);
|
|
5828
|
+
var ReactPropTypeLocations = _dereq_(90);
|
|
5829
|
+
var ReactPropTypeLocationNames = _dereq_(89);
|
|
5830
|
+
var ReactReconciler = _dereq_(93);
|
|
5831
|
+
var ReactUpdateQueue = _dereq_(103);
|
|
5832
|
+
|
|
5833
|
+
var emptyObject = _dereq_(166);
|
|
5834
|
+
var invariant = _dereq_(173);
|
|
5835
|
+
var shouldUpdateReactComponent = _dereq_(153);
|
|
5836
|
+
var warning = _dereq_(183);
|
|
5719
5837
|
|
|
5720
5838
|
function getDeclarationErrorAddendum(component) {
|
|
5721
5839
|
var owner = component._currentElement._owner || null;
|
|
@@ -5742,6 +5860,10 @@ function warnIfInvalidElement(Component, element) {
|
|
|
5742
5860
|
}
|
|
5743
5861
|
}
|
|
5744
5862
|
|
|
5863
|
+
function shouldConstruct(Component) {
|
|
5864
|
+
return Component.prototype && Component.prototype.isReactComponent;
|
|
5865
|
+
}
|
|
5866
|
+
|
|
5745
5867
|
/**
|
|
5746
5868
|
* ------------------ The Life-Cycle of a Composite Component ------------------
|
|
5747
5869
|
*
|
|
@@ -5810,6 +5932,9 @@ var ReactCompositeComponentMixin = {
|
|
|
5810
5932
|
|
|
5811
5933
|
// See ReactUpdates and ReactUpdateQueue.
|
|
5812
5934
|
this._pendingCallbacks = null;
|
|
5935
|
+
|
|
5936
|
+
// ComponentWillUnmount shall only be called once
|
|
5937
|
+
this._calledComponentWillUnmount = false;
|
|
5813
5938
|
},
|
|
5814
5939
|
|
|
5815
5940
|
/**
|
|
@@ -5835,37 +5960,15 @@ var ReactCompositeComponentMixin = {
|
|
|
5835
5960
|
var Component = this._currentElement.type;
|
|
5836
5961
|
|
|
5837
5962
|
// Initialize the public class
|
|
5838
|
-
var inst;
|
|
5963
|
+
var inst = this._constructComponent(publicProps, publicContext);
|
|
5839
5964
|
var renderedElement;
|
|
5840
5965
|
|
|
5841
|
-
|
|
5842
|
-
|
|
5843
|
-
|
|
5844
|
-
|
|
5845
|
-
|
|
5846
|
-
|
|
5847
|
-
ReactCurrentOwner.current = null;
|
|
5848
|
-
}
|
|
5849
|
-
} else {
|
|
5850
|
-
inst = new Component(publicProps, publicContext, ReactUpdateQueue);
|
|
5851
|
-
}
|
|
5852
|
-
} else {
|
|
5853
|
-
if ("development" !== 'production') {
|
|
5854
|
-
ReactCurrentOwner.current = this;
|
|
5855
|
-
try {
|
|
5856
|
-
inst = Component(publicProps, publicContext, ReactUpdateQueue);
|
|
5857
|
-
} finally {
|
|
5858
|
-
ReactCurrentOwner.current = null;
|
|
5859
|
-
}
|
|
5860
|
-
} else {
|
|
5861
|
-
inst = Component(publicProps, publicContext, ReactUpdateQueue);
|
|
5862
|
-
}
|
|
5863
|
-
if (inst == null || inst.render == null) {
|
|
5864
|
-
renderedElement = inst;
|
|
5865
|
-
warnIfInvalidElement(Component, renderedElement);
|
|
5866
|
-
!(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') : invariant(false) : void 0;
|
|
5867
|
-
inst = new StatelessComponent(Component);
|
|
5868
|
-
}
|
|
5966
|
+
// Support functional components
|
|
5967
|
+
if (!shouldConstruct(Component) && (inst == null || inst.render == null)) {
|
|
5968
|
+
renderedElement = inst;
|
|
5969
|
+
warnIfInvalidElement(Component, renderedElement);
|
|
5970
|
+
!(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') : invariant(false) : void 0;
|
|
5971
|
+
inst = new StatelessComponent(Component);
|
|
5869
5972
|
}
|
|
5870
5973
|
|
|
5871
5974
|
if ("development" !== 'production') {
|
|
@@ -5930,6 +6033,28 @@ var ReactCompositeComponentMixin = {
|
|
|
5930
6033
|
return markup;
|
|
5931
6034
|
},
|
|
5932
6035
|
|
|
6036
|
+
_constructComponent: function (publicProps, publicContext) {
|
|
6037
|
+
if ("development" !== 'production') {
|
|
6038
|
+
ReactCurrentOwner.current = this;
|
|
6039
|
+
try {
|
|
6040
|
+
return this._constructComponentWithoutOwner(publicProps, publicContext);
|
|
6041
|
+
} finally {
|
|
6042
|
+
ReactCurrentOwner.current = null;
|
|
6043
|
+
}
|
|
6044
|
+
} else {
|
|
6045
|
+
return this._constructComponentWithoutOwner(publicProps, publicContext);
|
|
6046
|
+
}
|
|
6047
|
+
},
|
|
6048
|
+
|
|
6049
|
+
_constructComponentWithoutOwner: function (publicProps, publicContext) {
|
|
6050
|
+
var Component = this._currentElement.type;
|
|
6051
|
+
if (shouldConstruct(Component)) {
|
|
6052
|
+
return new Component(publicProps, publicContext, ReactUpdateQueue);
|
|
6053
|
+
} else {
|
|
6054
|
+
return Component(publicProps, publicContext, ReactUpdateQueue);
|
|
6055
|
+
}
|
|
6056
|
+
},
|
|
6057
|
+
|
|
5933
6058
|
performInitialMountWithErrorHandling: function (renderedElement, nativeParent, nativeContainerInfo, transaction, context) {
|
|
5934
6059
|
var markup;
|
|
5935
6060
|
var checkpoint = transaction.checkpoint();
|
|
@@ -5994,7 +6119,8 @@ var ReactCompositeComponentMixin = {
|
|
|
5994
6119
|
}
|
|
5995
6120
|
var inst = this._instance;
|
|
5996
6121
|
|
|
5997
|
-
if (inst.componentWillUnmount) {
|
|
6122
|
+
if (inst.componentWillUnmount && !inst._calledComponentWillUnmount) {
|
|
6123
|
+
inst._calledComponentWillUnmount = true;
|
|
5998
6124
|
if (safely) {
|
|
5999
6125
|
var name = this.getName() + '.componentWillUnmount()';
|
|
6000
6126
|
ReactErrorUtils.invokeGuardedCallback(name, inst.componentWillUnmount.bind(inst));
|
|
@@ -6470,7 +6596,7 @@ var ReactCompositeComponent = {
|
|
|
6470
6596
|
};
|
|
6471
6597
|
|
|
6472
6598
|
module.exports = ReactCompositeComponent;
|
|
6473
|
-
},{"
|
|
6599
|
+
},{"103":103,"153":153,"166":166,"173":173,"183":183,"184":184,"36":36,"39":39,"66":66,"69":69,"76":76,"77":77,"85":85,"88":88,"89":89,"90":90,"93":93}],39:[function(_dereq_,module,exports){
|
|
6474
6600
|
/**
|
|
6475
6601
|
* Copyright 2013-present, Facebook, Inc.
|
|
6476
6602
|
* All rights reserved.
|
|
@@ -6502,7 +6628,7 @@ var ReactCurrentOwner = {
|
|
|
6502
6628
|
};
|
|
6503
6629
|
|
|
6504
6630
|
module.exports = ReactCurrentOwner;
|
|
6505
|
-
},{}],
|
|
6631
|
+
},{}],40:[function(_dereq_,module,exports){
|
|
6506
6632
|
/**
|
|
6507
6633
|
* Copyright 2013-present, Facebook, Inc.
|
|
6508
6634
|
* All rights reserved.
|
|
@@ -6518,18 +6644,18 @@ module.exports = ReactCurrentOwner;
|
|
|
6518
6644
|
|
|
6519
6645
|
'use strict';
|
|
6520
6646
|
|
|
6521
|
-
var ReactDOMComponentTree = _dereq_(
|
|
6522
|
-
var ReactDefaultInjection = _dereq_(
|
|
6523
|
-
var ReactMount = _dereq_(
|
|
6524
|
-
var ReactPerf = _dereq_(
|
|
6525
|
-
var ReactReconciler = _dereq_(
|
|
6526
|
-
var ReactUpdates = _dereq_(
|
|
6527
|
-
var ReactVersion = _dereq_(
|
|
6647
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
6648
|
+
var ReactDefaultInjection = _dereq_(63);
|
|
6649
|
+
var ReactMount = _dereq_(81);
|
|
6650
|
+
var ReactPerf = _dereq_(88);
|
|
6651
|
+
var ReactReconciler = _dereq_(93);
|
|
6652
|
+
var ReactUpdates = _dereq_(104);
|
|
6653
|
+
var ReactVersion = _dereq_(105);
|
|
6528
6654
|
|
|
6529
|
-
var findDOMNode = _dereq_(
|
|
6530
|
-
var getNativeComponentFromComposite = _dereq_(
|
|
6531
|
-
var renderSubtreeIntoContainer = _dereq_(
|
|
6532
|
-
var warning = _dereq_(
|
|
6655
|
+
var findDOMNode = _dereq_(132);
|
|
6656
|
+
var getNativeComponentFromComposite = _dereq_(140);
|
|
6657
|
+
var renderSubtreeIntoContainer = _dereq_(149);
|
|
6658
|
+
var warning = _dereq_(183);
|
|
6533
6659
|
|
|
6534
6660
|
ReactDefaultInjection.inject();
|
|
6535
6661
|
|
|
@@ -6571,7 +6697,7 @@ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVT
|
|
|
6571
6697
|
}
|
|
6572
6698
|
|
|
6573
6699
|
if ("development" !== 'production') {
|
|
6574
|
-
var ExecutionEnvironment = _dereq_(
|
|
6700
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
6575
6701
|
if (ExecutionEnvironment.canUseDOM && window.top === window.self) {
|
|
6576
6702
|
|
|
6577
6703
|
// First check if devtools is not installed
|
|
@@ -6607,7 +6733,7 @@ if ("development" !== 'production') {
|
|
|
6607
6733
|
}
|
|
6608
6734
|
|
|
6609
6735
|
module.exports = React;
|
|
6610
|
-
},{"
|
|
6736
|
+
},{"104":104,"105":105,"132":132,"140":140,"149":149,"159":159,"183":183,"44":44,"63":63,"81":81,"88":88,"93":93}],41:[function(_dereq_,module,exports){
|
|
6611
6737
|
/**
|
|
6612
6738
|
* Copyright 2013-present, Facebook, Inc.
|
|
6613
6739
|
* All rights reserved.
|
|
@@ -6621,44 +6747,18 @@ module.exports = React;
|
|
|
6621
6747
|
|
|
6622
6748
|
'use strict';
|
|
6623
6749
|
|
|
6624
|
-
var
|
|
6625
|
-
onClick: true,
|
|
6626
|
-
onDoubleClick: true,
|
|
6627
|
-
onMouseDown: true,
|
|
6628
|
-
onMouseMove: true,
|
|
6629
|
-
onMouseUp: true,
|
|
6630
|
-
|
|
6631
|
-
onClickCapture: true,
|
|
6632
|
-
onDoubleClickCapture: true,
|
|
6633
|
-
onMouseDownCapture: true,
|
|
6634
|
-
onMouseMoveCapture: true,
|
|
6635
|
-
onMouseUpCapture: true
|
|
6636
|
-
};
|
|
6750
|
+
var DisabledInputUtils = _dereq_(14);
|
|
6637
6751
|
|
|
6638
6752
|
/**
|
|
6639
6753
|
* Implements a <button> native component that does not receive mouse events
|
|
6640
6754
|
* when `disabled` is set.
|
|
6641
6755
|
*/
|
|
6642
6756
|
var ReactDOMButton = {
|
|
6643
|
-
getNativeProps:
|
|
6644
|
-
if (!props.disabled) {
|
|
6645
|
-
return props;
|
|
6646
|
-
}
|
|
6647
|
-
|
|
6648
|
-
// Copy the props, except the mouse listeners
|
|
6649
|
-
var nativeProps = {};
|
|
6650
|
-
for (var key in props) {
|
|
6651
|
-
if (props.hasOwnProperty(key) && !mouseListenerNames[key]) {
|
|
6652
|
-
nativeProps[key] = props[key];
|
|
6653
|
-
}
|
|
6654
|
-
}
|
|
6655
|
-
|
|
6656
|
-
return nativeProps;
|
|
6657
|
-
}
|
|
6757
|
+
getNativeProps: DisabledInputUtils.getNativeProps
|
|
6658
6758
|
};
|
|
6659
6759
|
|
|
6660
6760
|
module.exports = ReactDOMButton;
|
|
6661
|
-
},{}],
|
|
6761
|
+
},{"14":14}],42:[function(_dereq_,module,exports){
|
|
6662
6762
|
/**
|
|
6663
6763
|
* Copyright 2013-present, Facebook, Inc.
|
|
6664
6764
|
* All rights reserved.
|
|
@@ -6674,7 +6774,7 @@ module.exports = ReactDOMButton;
|
|
|
6674
6774
|
|
|
6675
6775
|
'use strict';
|
|
6676
6776
|
|
|
6677
|
-
var _assign = _dereq_(
|
|
6777
|
+
var _assign = _dereq_(184);
|
|
6678
6778
|
|
|
6679
6779
|
var AutoFocusUtils = _dereq_(1);
|
|
6680
6780
|
var CSSPropertyOperations = _dereq_(4);
|
|
@@ -6682,28 +6782,29 @@ var DOMLazyTree = _dereq_(8);
|
|
|
6682
6782
|
var DOMNamespaces = _dereq_(9);
|
|
6683
6783
|
var DOMProperty = _dereq_(10);
|
|
6684
6784
|
var DOMPropertyOperations = _dereq_(11);
|
|
6685
|
-
var EventConstants = _dereq_(
|
|
6686
|
-
var EventPluginHub = _dereq_(
|
|
6687
|
-
var EventPluginRegistry = _dereq_(
|
|
6688
|
-
var ReactBrowserEventEmitter = _dereq_(
|
|
6689
|
-
var ReactComponentBrowserEnvironment = _dereq_(
|
|
6690
|
-
var ReactDOMButton = _dereq_(
|
|
6691
|
-
var ReactDOMComponentFlags = _dereq_(
|
|
6692
|
-
var ReactDOMComponentTree = _dereq_(
|
|
6693
|
-
var ReactDOMInput = _dereq_(
|
|
6694
|
-
var ReactDOMOption = _dereq_(
|
|
6695
|
-
var ReactDOMSelect = _dereq_(
|
|
6696
|
-
var ReactDOMTextarea = _dereq_(
|
|
6697
|
-
var ReactMultiChild = _dereq_(
|
|
6698
|
-
var ReactPerf = _dereq_(
|
|
6699
|
-
|
|
6700
|
-
|
|
6701
|
-
var
|
|
6702
|
-
var
|
|
6703
|
-
var
|
|
6704
|
-
var
|
|
6705
|
-
var
|
|
6706
|
-
var
|
|
6785
|
+
var EventConstants = _dereq_(16);
|
|
6786
|
+
var EventPluginHub = _dereq_(17);
|
|
6787
|
+
var EventPluginRegistry = _dereq_(18);
|
|
6788
|
+
var ReactBrowserEventEmitter = _dereq_(28);
|
|
6789
|
+
var ReactComponentBrowserEnvironment = _dereq_(35);
|
|
6790
|
+
var ReactDOMButton = _dereq_(41);
|
|
6791
|
+
var ReactDOMComponentFlags = _dereq_(43);
|
|
6792
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
6793
|
+
var ReactDOMInput = _dereq_(51);
|
|
6794
|
+
var ReactDOMOption = _dereq_(53);
|
|
6795
|
+
var ReactDOMSelect = _dereq_(54);
|
|
6796
|
+
var ReactDOMTextarea = _dereq_(58);
|
|
6797
|
+
var ReactMultiChild = _dereq_(82);
|
|
6798
|
+
var ReactPerf = _dereq_(88);
|
|
6799
|
+
var ReactServerRenderingTransaction = _dereq_(97);
|
|
6800
|
+
|
|
6801
|
+
var escapeTextContentForBrowser = _dereq_(131);
|
|
6802
|
+
var invariant = _dereq_(173);
|
|
6803
|
+
var isEventSupported = _dereq_(145);
|
|
6804
|
+
var keyOf = _dereq_(177);
|
|
6805
|
+
var shallowEqual = _dereq_(182);
|
|
6806
|
+
var validateDOMNesting = _dereq_(156);
|
|
6807
|
+
var warning = _dereq_(183);
|
|
6707
6808
|
|
|
6708
6809
|
var Flags = ReactDOMComponentFlags;
|
|
6709
6810
|
var deleteListener = EventPluginHub.deleteListener;
|
|
@@ -6722,6 +6823,9 @@ var RESERVED_PROPS = {
|
|
|
6722
6823
|
suppressContentEditableWarning: null
|
|
6723
6824
|
};
|
|
6724
6825
|
|
|
6826
|
+
// Node type for document fragments (Node.DOCUMENT_FRAGMENT_NODE).
|
|
6827
|
+
var DOC_FRAGMENT_TYPE = 11;
|
|
6828
|
+
|
|
6725
6829
|
function getDeclarationErrorAddendum(internalInstance) {
|
|
6726
6830
|
if (internalInstance) {
|
|
6727
6831
|
var owner = internalInstance._currentElement._owner || null;
|
|
@@ -6812,17 +6916,17 @@ function assertValidProps(component, props) {
|
|
|
6812
6916
|
}
|
|
6813
6917
|
|
|
6814
6918
|
function enqueuePutListener(inst, registrationName, listener, transaction) {
|
|
6919
|
+
if (transaction instanceof ReactServerRenderingTransaction) {
|
|
6920
|
+
return;
|
|
6921
|
+
}
|
|
6815
6922
|
if ("development" !== 'production') {
|
|
6816
6923
|
// IE8 has no API for event capturing and the `onScroll` event doesn't
|
|
6817
6924
|
// bubble.
|
|
6818
6925
|
"development" !== 'production' ? warning(registrationName !== 'onScroll' || isEventSupported('scroll', true), 'This browser doesn\'t support the `onScroll` event') : void 0;
|
|
6819
6926
|
}
|
|
6820
6927
|
var containerInfo = inst._nativeContainerInfo;
|
|
6821
|
-
var
|
|
6822
|
-
|
|
6823
|
-
// Server rendering.
|
|
6824
|
-
return;
|
|
6825
|
-
}
|
|
6928
|
+
var isDocumentFragment = containerInfo._node && containerInfo._node.nodeType === DOC_FRAGMENT_TYPE;
|
|
6929
|
+
var doc = isDocumentFragment ? containerInfo._node : containerInfo._ownerDocument;
|
|
6826
6930
|
listenTo(registrationName, doc);
|
|
6827
6931
|
transaction.getReactMountReady().enqueue(putListener, {
|
|
6828
6932
|
inst: inst,
|
|
@@ -7116,7 +7220,7 @@ ReactDOMComponent.Mixin = {
|
|
|
7116
7220
|
div.innerHTML = '<' + type + '></' + type + '>';
|
|
7117
7221
|
el = div.removeChild(div.firstChild);
|
|
7118
7222
|
} else {
|
|
7119
|
-
el = ownerDocument.createElement(this._currentElement.type);
|
|
7223
|
+
el = ownerDocument.createElement(this._currentElement.type, props.is || null);
|
|
7120
7224
|
}
|
|
7121
7225
|
} else {
|
|
7122
7226
|
el = ownerDocument.createElementNS(namespaceURI, this._currentElement.type);
|
|
@@ -7564,7 +7668,7 @@ ReactPerf.measureMethods(ReactDOMComponent.Mixin, 'ReactDOMComponent', {
|
|
|
7564
7668
|
_assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);
|
|
7565
7669
|
|
|
7566
7670
|
module.exports = ReactDOMComponent;
|
|
7567
|
-
},{"1":1,"10":10,"11":11,"
|
|
7671
|
+
},{"1":1,"10":10,"11":11,"131":131,"145":145,"156":156,"16":16,"17":17,"173":173,"177":177,"18":18,"182":182,"183":183,"184":184,"28":28,"35":35,"4":4,"41":41,"43":43,"44":44,"51":51,"53":53,"54":54,"58":58,"8":8,"82":82,"88":88,"9":9,"97":97}],43:[function(_dereq_,module,exports){
|
|
7568
7672
|
/**
|
|
7569
7673
|
* Copyright 2015-present, Facebook, Inc.
|
|
7570
7674
|
* All rights reserved.
|
|
@@ -7583,7 +7687,7 @@ var ReactDOMComponentFlags = {
|
|
|
7583
7687
|
};
|
|
7584
7688
|
|
|
7585
7689
|
module.exports = ReactDOMComponentFlags;
|
|
7586
|
-
},{}],
|
|
7690
|
+
},{}],44:[function(_dereq_,module,exports){
|
|
7587
7691
|
/**
|
|
7588
7692
|
* Copyright 2013-present, Facebook, Inc.
|
|
7589
7693
|
* All rights reserved.
|
|
@@ -7598,9 +7702,9 @@ module.exports = ReactDOMComponentFlags;
|
|
|
7598
7702
|
'use strict';
|
|
7599
7703
|
|
|
7600
7704
|
var DOMProperty = _dereq_(10);
|
|
7601
|
-
var ReactDOMComponentFlags = _dereq_(
|
|
7705
|
+
var ReactDOMComponentFlags = _dereq_(43);
|
|
7602
7706
|
|
|
7603
|
-
var invariant = _dereq_(
|
|
7707
|
+
var invariant = _dereq_(173);
|
|
7604
7708
|
|
|
7605
7709
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
7606
7710
|
var Flags = ReactDOMComponentFlags;
|
|
@@ -7770,7 +7874,7 @@ var ReactDOMComponentTree = {
|
|
|
7770
7874
|
};
|
|
7771
7875
|
|
|
7772
7876
|
module.exports = ReactDOMComponentTree;
|
|
7773
|
-
},{"10":10,"
|
|
7877
|
+
},{"10":10,"173":173,"43":43}],45:[function(_dereq_,module,exports){
|
|
7774
7878
|
/**
|
|
7775
7879
|
* Copyright 2013-present, Facebook, Inc.
|
|
7776
7880
|
* All rights reserved.
|
|
@@ -7784,7 +7888,7 @@ module.exports = ReactDOMComponentTree;
|
|
|
7784
7888
|
|
|
7785
7889
|
'use strict';
|
|
7786
7890
|
|
|
7787
|
-
var validateDOMNesting = _dereq_(
|
|
7891
|
+
var validateDOMNesting = _dereq_(156);
|
|
7788
7892
|
|
|
7789
7893
|
var DOC_NODE_TYPE = 9;
|
|
7790
7894
|
|
|
@@ -7793,6 +7897,7 @@ function ReactDOMContainerInfo(topLevelWrapper, node) {
|
|
|
7793
7897
|
_topLevelWrapper: topLevelWrapper,
|
|
7794
7898
|
_idCounter: 1,
|
|
7795
7899
|
_ownerDocument: node ? node.nodeType === DOC_NODE_TYPE ? node : node.ownerDocument : null,
|
|
7900
|
+
_node: node,
|
|
7796
7901
|
_tag: node ? node.nodeName.toLowerCase() : null,
|
|
7797
7902
|
_namespaceURI: node ? node.namespaceURI : null
|
|
7798
7903
|
};
|
|
@@ -7803,7 +7908,7 @@ function ReactDOMContainerInfo(topLevelWrapper, node) {
|
|
|
7803
7908
|
}
|
|
7804
7909
|
|
|
7805
7910
|
module.exports = ReactDOMContainerInfo;
|
|
7806
|
-
},{"
|
|
7911
|
+
},{"156":156}],46:[function(_dereq_,module,exports){
|
|
7807
7912
|
/**
|
|
7808
7913
|
* Copyright 2013-present, Facebook, Inc.
|
|
7809
7914
|
* All rights reserved.
|
|
@@ -7817,9 +7922,9 @@ module.exports = ReactDOMContainerInfo;
|
|
|
7817
7922
|
|
|
7818
7923
|
'use strict';
|
|
7819
7924
|
|
|
7820
|
-
var ReactDOMUnknownPropertyDevtool = _dereq_(
|
|
7925
|
+
var ReactDOMUnknownPropertyDevtool = _dereq_(60);
|
|
7821
7926
|
|
|
7822
|
-
var warning = _dereq_(
|
|
7927
|
+
var warning = _dereq_(183);
|
|
7823
7928
|
|
|
7824
7929
|
var eventHandlers = [];
|
|
7825
7930
|
var handlerDoesThrowForEvent = {};
|
|
@@ -7865,7 +7970,7 @@ var ReactDOMDebugTool = {
|
|
|
7865
7970
|
ReactDOMDebugTool.addDevtool(ReactDOMUnknownPropertyDevtool);
|
|
7866
7971
|
|
|
7867
7972
|
module.exports = ReactDOMDebugTool;
|
|
7868
|
-
},{"
|
|
7973
|
+
},{"183":183,"60":60}],47:[function(_dereq_,module,exports){
|
|
7869
7974
|
/**
|
|
7870
7975
|
* Copyright 2014-present, Facebook, Inc.
|
|
7871
7976
|
* All rights reserved.
|
|
@@ -7879,10 +7984,10 @@ module.exports = ReactDOMDebugTool;
|
|
|
7879
7984
|
|
|
7880
7985
|
'use strict';
|
|
7881
7986
|
|
|
7882
|
-
var _assign = _dereq_(
|
|
7987
|
+
var _assign = _dereq_(184);
|
|
7883
7988
|
|
|
7884
7989
|
var DOMLazyTree = _dereq_(8);
|
|
7885
|
-
var ReactDOMComponentTree = _dereq_(
|
|
7990
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
7886
7991
|
|
|
7887
7992
|
var ReactDOMEmptyComponent = function (instantiate) {
|
|
7888
7993
|
// ReactCompositeComponent uses this:
|
|
@@ -7926,7 +8031,7 @@ _assign(ReactDOMEmptyComponent.prototype, {
|
|
|
7926
8031
|
});
|
|
7927
8032
|
|
|
7928
8033
|
module.exports = ReactDOMEmptyComponent;
|
|
7929
|
-
},{"
|
|
8034
|
+
},{"184":184,"44":44,"8":8}],48:[function(_dereq_,module,exports){
|
|
7930
8035
|
/**
|
|
7931
8036
|
* Copyright 2013-present, Facebook, Inc.
|
|
7932
8037
|
* All rights reserved.
|
|
@@ -7940,10 +8045,10 @@ module.exports = ReactDOMEmptyComponent;
|
|
|
7940
8045
|
|
|
7941
8046
|
'use strict';
|
|
7942
8047
|
|
|
7943
|
-
var ReactElement = _dereq_(
|
|
7944
|
-
var ReactElementValidator = _dereq_(
|
|
8048
|
+
var ReactElement = _dereq_(66);
|
|
8049
|
+
var ReactElementValidator = _dereq_(67);
|
|
7945
8050
|
|
|
7946
|
-
var mapObject = _dereq_(
|
|
8051
|
+
var mapObject = _dereq_(178);
|
|
7947
8052
|
|
|
7948
8053
|
/**
|
|
7949
8054
|
* Create a factory that creates HTML tag elements.
|
|
@@ -8103,7 +8208,7 @@ var ReactDOMFactories = mapObject({
|
|
|
8103
8208
|
}, createDOMFactory);
|
|
8104
8209
|
|
|
8105
8210
|
module.exports = ReactDOMFactories;
|
|
8106
|
-
},{"
|
|
8211
|
+
},{"178":178,"66":66,"67":67}],49:[function(_dereq_,module,exports){
|
|
8107
8212
|
/**
|
|
8108
8213
|
* Copyright 2013-present, Facebook, Inc.
|
|
8109
8214
|
* All rights reserved.
|
|
@@ -8122,7 +8227,7 @@ var ReactDOMFeatureFlags = {
|
|
|
8122
8227
|
};
|
|
8123
8228
|
|
|
8124
8229
|
module.exports = ReactDOMFeatureFlags;
|
|
8125
|
-
},{}],
|
|
8230
|
+
},{}],50:[function(_dereq_,module,exports){
|
|
8126
8231
|
/**
|
|
8127
8232
|
* Copyright 2013-present, Facebook, Inc.
|
|
8128
8233
|
* All rights reserved.
|
|
@@ -8137,8 +8242,8 @@ module.exports = ReactDOMFeatureFlags;
|
|
|
8137
8242
|
'use strict';
|
|
8138
8243
|
|
|
8139
8244
|
var DOMChildrenOperations = _dereq_(7);
|
|
8140
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8141
|
-
var ReactPerf = _dereq_(
|
|
8245
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
8246
|
+
var ReactPerf = _dereq_(88);
|
|
8142
8247
|
|
|
8143
8248
|
/**
|
|
8144
8249
|
* Operations used to process updates to DOM nodes.
|
|
@@ -8162,7 +8267,7 @@ ReactPerf.measureMethods(ReactDOMIDOperations, 'ReactDOMIDOperations', {
|
|
|
8162
8267
|
});
|
|
8163
8268
|
|
|
8164
8269
|
module.exports = ReactDOMIDOperations;
|
|
8165
|
-
},{"
|
|
8270
|
+
},{"44":44,"7":7,"88":88}],51:[function(_dereq_,module,exports){
|
|
8166
8271
|
/**
|
|
8167
8272
|
* Copyright 2013-present, Facebook, Inc.
|
|
8168
8273
|
* All rights reserved.
|
|
@@ -8176,15 +8281,16 @@ module.exports = ReactDOMIDOperations;
|
|
|
8176
8281
|
|
|
8177
8282
|
'use strict';
|
|
8178
8283
|
|
|
8179
|
-
var _assign = _dereq_(
|
|
8284
|
+
var _assign = _dereq_(184);
|
|
8180
8285
|
|
|
8286
|
+
var DisabledInputUtils = _dereq_(14);
|
|
8181
8287
|
var DOMPropertyOperations = _dereq_(11);
|
|
8182
|
-
var LinkedValueUtils = _dereq_(
|
|
8183
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8184
|
-
var ReactUpdates = _dereq_(
|
|
8288
|
+
var LinkedValueUtils = _dereq_(25);
|
|
8289
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
8290
|
+
var ReactUpdates = _dereq_(104);
|
|
8185
8291
|
|
|
8186
|
-
var invariant = _dereq_(
|
|
8187
|
-
var warning = _dereq_(
|
|
8292
|
+
var invariant = _dereq_(173);
|
|
8293
|
+
var warning = _dereq_(183);
|
|
8188
8294
|
|
|
8189
8295
|
var didWarnValueLink = false;
|
|
8190
8296
|
var didWarnCheckedLink = false;
|
|
@@ -8234,7 +8340,7 @@ var ReactDOMInput = {
|
|
|
8234
8340
|
// Make sure we set .type before any other properties (setting .value
|
|
8235
8341
|
// before .type means .value is lost in IE11 and below)
|
|
8236
8342
|
type: undefined
|
|
8237
|
-
}, props, {
|
|
8343
|
+
}, DisabledInputUtils.getNativeProps(inst, props), {
|
|
8238
8344
|
defaultChecked: undefined,
|
|
8239
8345
|
defaultValue: undefined,
|
|
8240
8346
|
value: value != null ? value : inst._wrapperState.initialValue,
|
|
@@ -8293,7 +8399,7 @@ var ReactDOMInput = {
|
|
|
8293
8399
|
var owner = inst._currentElement._owner;
|
|
8294
8400
|
|
|
8295
8401
|
if ((initialValue || !inst._wrapperState.controlled) && controlled && !didWarnUncontrolledToControlled) {
|
|
8296
|
-
"development" !== 'production' ? warning(false, '%s is changing
|
|
8402
|
+
"development" !== 'production' ? warning(false, '%s is changing an uncontrolled input of type %s to be controlled. ' + 'Input elements should not switch from uncontrolled to controlled (or vice versa). ' + 'Decide between using a controlled or uncontrolled input ' + 'element for the lifetime of the component. More info: https://fb.me/react-controlled-components', owner && owner.getName() || 'A component', props.type) : void 0;
|
|
8297
8403
|
didWarnUncontrolledToControlled = true;
|
|
8298
8404
|
}
|
|
8299
8405
|
if (inst._wrapperState.controlled && (defaultValue || !controlled) && !didWarnControlledToUncontrolled) {
|
|
@@ -8366,7 +8472,7 @@ function _handleChange(event) {
|
|
|
8366
8472
|
}
|
|
8367
8473
|
|
|
8368
8474
|
module.exports = ReactDOMInput;
|
|
8369
|
-
},{"
|
|
8475
|
+
},{"104":104,"11":11,"14":14,"173":173,"183":183,"184":184,"25":25,"44":44}],52:[function(_dereq_,module,exports){
|
|
8370
8476
|
/**
|
|
8371
8477
|
* Copyright 2013-present, Facebook, Inc.
|
|
8372
8478
|
* All rights reserved.
|
|
@@ -8380,10 +8486,10 @@ module.exports = ReactDOMInput;
|
|
|
8380
8486
|
|
|
8381
8487
|
'use strict';
|
|
8382
8488
|
|
|
8383
|
-
var ReactDOMDebugTool = _dereq_(
|
|
8489
|
+
var ReactDOMDebugTool = _dereq_(46);
|
|
8384
8490
|
|
|
8385
8491
|
module.exports = { debugTool: ReactDOMDebugTool };
|
|
8386
|
-
},{"
|
|
8492
|
+
},{"46":46}],53:[function(_dereq_,module,exports){
|
|
8387
8493
|
/**
|
|
8388
8494
|
* Copyright 2013-present, Facebook, Inc.
|
|
8389
8495
|
* All rights reserved.
|
|
@@ -8397,13 +8503,13 @@ module.exports = { debugTool: ReactDOMDebugTool };
|
|
|
8397
8503
|
|
|
8398
8504
|
'use strict';
|
|
8399
8505
|
|
|
8400
|
-
var _assign = _dereq_(
|
|
8506
|
+
var _assign = _dereq_(184);
|
|
8401
8507
|
|
|
8402
|
-
var ReactChildren = _dereq_(
|
|
8403
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8404
|
-
var ReactDOMSelect = _dereq_(
|
|
8508
|
+
var ReactChildren = _dereq_(32);
|
|
8509
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
8510
|
+
var ReactDOMSelect = _dereq_(54);
|
|
8405
8511
|
|
|
8406
|
-
var warning = _dereq_(
|
|
8512
|
+
var warning = _dereq_(183);
|
|
8407
8513
|
|
|
8408
8514
|
/**
|
|
8409
8515
|
* Implements an <option> native component that warns when `selected` is set.
|
|
@@ -8417,8 +8523,16 @@ var ReactDOMOption = {
|
|
|
8417
8523
|
|
|
8418
8524
|
// Look up whether this option is 'selected'
|
|
8419
8525
|
var selectValue = null;
|
|
8420
|
-
if (nativeParent != null
|
|
8421
|
-
|
|
8526
|
+
if (nativeParent != null) {
|
|
8527
|
+
var selectParent = nativeParent;
|
|
8528
|
+
|
|
8529
|
+
if (selectParent._tag === 'optgroup') {
|
|
8530
|
+
selectParent = selectParent._nativeParent;
|
|
8531
|
+
}
|
|
8532
|
+
|
|
8533
|
+
if (selectParent != null && selectParent._tag === 'select') {
|
|
8534
|
+
selectValue = ReactDOMSelect.getSelectValueContext(selectParent);
|
|
8535
|
+
}
|
|
8422
8536
|
}
|
|
8423
8537
|
|
|
8424
8538
|
// If the value is null (e.g., no specified value or after initial mount)
|
|
@@ -8485,7 +8599,7 @@ var ReactDOMOption = {
|
|
|
8485
8599
|
};
|
|
8486
8600
|
|
|
8487
8601
|
module.exports = ReactDOMOption;
|
|
8488
|
-
},{"
|
|
8602
|
+
},{"183":183,"184":184,"32":32,"44":44,"54":54}],54:[function(_dereq_,module,exports){
|
|
8489
8603
|
/**
|
|
8490
8604
|
* Copyright 2013-present, Facebook, Inc.
|
|
8491
8605
|
* All rights reserved.
|
|
@@ -8499,13 +8613,14 @@ module.exports = ReactDOMOption;
|
|
|
8499
8613
|
|
|
8500
8614
|
'use strict';
|
|
8501
8615
|
|
|
8502
|
-
var _assign = _dereq_(
|
|
8616
|
+
var _assign = _dereq_(184);
|
|
8503
8617
|
|
|
8504
|
-
var
|
|
8505
|
-
var
|
|
8506
|
-
var
|
|
8618
|
+
var DisabledInputUtils = _dereq_(14);
|
|
8619
|
+
var LinkedValueUtils = _dereq_(25);
|
|
8620
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
8621
|
+
var ReactUpdates = _dereq_(104);
|
|
8507
8622
|
|
|
8508
|
-
var warning = _dereq_(
|
|
8623
|
+
var warning = _dereq_(183);
|
|
8509
8624
|
|
|
8510
8625
|
var didWarnValueLink = false;
|
|
8511
8626
|
var didWarnValueNull = false;
|
|
@@ -8624,7 +8739,7 @@ function updateOptions(inst, multiple, propValue) {
|
|
|
8624
8739
|
*/
|
|
8625
8740
|
var ReactDOMSelect = {
|
|
8626
8741
|
getNativeProps: function (inst, props) {
|
|
8627
|
-
return _assign({}, props, {
|
|
8742
|
+
return _assign({}, DisabledInputUtils.getNativeProps(inst, props), {
|
|
8628
8743
|
onChange: inst._wrapperState.onChange,
|
|
8629
8744
|
value: undefined
|
|
8630
8745
|
});
|
|
@@ -8698,7 +8813,7 @@ function _handleChange(event) {
|
|
|
8698
8813
|
}
|
|
8699
8814
|
|
|
8700
8815
|
module.exports = ReactDOMSelect;
|
|
8701
|
-
},{"
|
|
8816
|
+
},{"104":104,"14":14,"183":183,"184":184,"25":25,"44":44}],55:[function(_dereq_,module,exports){
|
|
8702
8817
|
/**
|
|
8703
8818
|
* Copyright 2013-present, Facebook, Inc.
|
|
8704
8819
|
* All rights reserved.
|
|
@@ -8712,10 +8827,10 @@ module.exports = ReactDOMSelect;
|
|
|
8712
8827
|
|
|
8713
8828
|
'use strict';
|
|
8714
8829
|
|
|
8715
|
-
var ExecutionEnvironment = _dereq_(
|
|
8830
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
8716
8831
|
|
|
8717
|
-
var getNodeForCharacterOffset = _dereq_(
|
|
8718
|
-
var getTextContentAccessor = _dereq_(
|
|
8832
|
+
var getNodeForCharacterOffset = _dereq_(141);
|
|
8833
|
+
var getTextContentAccessor = _dereq_(142);
|
|
8719
8834
|
|
|
8720
8835
|
/**
|
|
8721
8836
|
* While `isCollapsed` is available on the Selection object and `collapsed`
|
|
@@ -8911,7 +9026,7 @@ var ReactDOMSelection = {
|
|
|
8911
9026
|
};
|
|
8912
9027
|
|
|
8913
9028
|
module.exports = ReactDOMSelection;
|
|
8914
|
-
},{"
|
|
9029
|
+
},{"141":141,"142":142,"159":159}],56:[function(_dereq_,module,exports){
|
|
8915
9030
|
/**
|
|
8916
9031
|
* Copyright 2013-present, Facebook, Inc.
|
|
8917
9032
|
* All rights reserved.
|
|
@@ -8925,9 +9040,9 @@ module.exports = ReactDOMSelection;
|
|
|
8925
9040
|
|
|
8926
9041
|
'use strict';
|
|
8927
9042
|
|
|
8928
|
-
var ReactDefaultInjection = _dereq_(
|
|
8929
|
-
var ReactServerRendering = _dereq_(
|
|
8930
|
-
var ReactVersion = _dereq_(
|
|
9043
|
+
var ReactDefaultInjection = _dereq_(63);
|
|
9044
|
+
var ReactServerRendering = _dereq_(96);
|
|
9045
|
+
var ReactVersion = _dereq_(105);
|
|
8931
9046
|
|
|
8932
9047
|
ReactDefaultInjection.inject();
|
|
8933
9048
|
|
|
@@ -8938,7 +9053,7 @@ var ReactDOMServer = {
|
|
|
8938
9053
|
};
|
|
8939
9054
|
|
|
8940
9055
|
module.exports = ReactDOMServer;
|
|
8941
|
-
},{"
|
|
9056
|
+
},{"105":105,"63":63,"96":96}],57:[function(_dereq_,module,exports){
|
|
8942
9057
|
/**
|
|
8943
9058
|
* Copyright 2013-present, Facebook, Inc.
|
|
8944
9059
|
* All rights reserved.
|
|
@@ -8952,16 +9067,16 @@ module.exports = ReactDOMServer;
|
|
|
8952
9067
|
|
|
8953
9068
|
'use strict';
|
|
8954
9069
|
|
|
8955
|
-
var _assign = _dereq_(
|
|
9070
|
+
var _assign = _dereq_(184);
|
|
8956
9071
|
|
|
8957
9072
|
var DOMChildrenOperations = _dereq_(7);
|
|
8958
9073
|
var DOMLazyTree = _dereq_(8);
|
|
8959
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8960
|
-
var ReactPerf = _dereq_(
|
|
9074
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
9075
|
+
var ReactPerf = _dereq_(88);
|
|
8961
9076
|
|
|
8962
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
8963
|
-
var invariant = _dereq_(
|
|
8964
|
-
var validateDOMNesting = _dereq_(
|
|
9077
|
+
var escapeTextContentForBrowser = _dereq_(131);
|
|
9078
|
+
var invariant = _dereq_(173);
|
|
9079
|
+
var validateDOMNesting = _dereq_(156);
|
|
8965
9080
|
|
|
8966
9081
|
/**
|
|
8967
9082
|
* Text nodes violate a couple assumptions that React makes about components:
|
|
@@ -9108,7 +9223,7 @@ ReactPerf.measureMethods(ReactDOMTextComponent.prototype, 'ReactDOMTextComponent
|
|
|
9108
9223
|
});
|
|
9109
9224
|
|
|
9110
9225
|
module.exports = ReactDOMTextComponent;
|
|
9111
|
-
},{"
|
|
9226
|
+
},{"131":131,"156":156,"173":173,"184":184,"44":44,"7":7,"8":8,"88":88}],58:[function(_dereq_,module,exports){
|
|
9112
9227
|
/**
|
|
9113
9228
|
* Copyright 2013-present, Facebook, Inc.
|
|
9114
9229
|
* All rights reserved.
|
|
@@ -9122,15 +9237,16 @@ module.exports = ReactDOMTextComponent;
|
|
|
9122
9237
|
|
|
9123
9238
|
'use strict';
|
|
9124
9239
|
|
|
9125
|
-
var _assign = _dereq_(
|
|
9240
|
+
var _assign = _dereq_(184);
|
|
9126
9241
|
|
|
9242
|
+
var DisabledInputUtils = _dereq_(14);
|
|
9127
9243
|
var DOMPropertyOperations = _dereq_(11);
|
|
9128
|
-
var LinkedValueUtils = _dereq_(
|
|
9129
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9130
|
-
var ReactUpdates = _dereq_(
|
|
9244
|
+
var LinkedValueUtils = _dereq_(25);
|
|
9245
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
9246
|
+
var ReactUpdates = _dereq_(104);
|
|
9131
9247
|
|
|
9132
|
-
var invariant = _dereq_(
|
|
9133
|
-
var warning = _dereq_(
|
|
9248
|
+
var invariant = _dereq_(173);
|
|
9249
|
+
var warning = _dereq_(183);
|
|
9134
9250
|
|
|
9135
9251
|
var didWarnValueLink = false;
|
|
9136
9252
|
var didWarnValueNull = false;
|
|
@@ -9172,7 +9288,7 @@ var ReactDOMTextarea = {
|
|
|
9172
9288
|
|
|
9173
9289
|
// Always set children to the same thing. In IE9, the selection range will
|
|
9174
9290
|
// get reset if `textContent` is mutated.
|
|
9175
|
-
var nativeProps = _assign({}, props, {
|
|
9291
|
+
var nativeProps = _assign({}, DisabledInputUtils.getNativeProps(inst, props), {
|
|
9176
9292
|
defaultValue: undefined,
|
|
9177
9293
|
value: undefined,
|
|
9178
9294
|
children: inst._wrapperState.initialValue,
|
|
@@ -9250,7 +9366,7 @@ function _handleChange(event) {
|
|
|
9250
9366
|
}
|
|
9251
9367
|
|
|
9252
9368
|
module.exports = ReactDOMTextarea;
|
|
9253
|
-
},{"
|
|
9369
|
+
},{"104":104,"11":11,"14":14,"173":173,"183":183,"184":184,"25":25,"44":44}],59:[function(_dereq_,module,exports){
|
|
9254
9370
|
/**
|
|
9255
9371
|
* Copyright 2015-present, Facebook, Inc.
|
|
9256
9372
|
* All rights reserved.
|
|
@@ -9264,7 +9380,7 @@ module.exports = ReactDOMTextarea;
|
|
|
9264
9380
|
|
|
9265
9381
|
'use strict';
|
|
9266
9382
|
|
|
9267
|
-
var invariant = _dereq_(
|
|
9383
|
+
var invariant = _dereq_(173);
|
|
9268
9384
|
|
|
9269
9385
|
/**
|
|
9270
9386
|
* Return the lowest common ancestor of A and B, or null if they are in
|
|
@@ -9385,7 +9501,7 @@ module.exports = {
|
|
|
9385
9501
|
traverseTwoPhase: traverseTwoPhase,
|
|
9386
9502
|
traverseEnterLeave: traverseEnterLeave
|
|
9387
9503
|
};
|
|
9388
|
-
},{"
|
|
9504
|
+
},{"173":173}],60:[function(_dereq_,module,exports){
|
|
9389
9505
|
/**
|
|
9390
9506
|
* Copyright 2013-present, Facebook, Inc.
|
|
9391
9507
|
* All rights reserved.
|
|
@@ -9400,9 +9516,9 @@ module.exports = {
|
|
|
9400
9516
|
'use strict';
|
|
9401
9517
|
|
|
9402
9518
|
var DOMProperty = _dereq_(10);
|
|
9403
|
-
var EventPluginRegistry = _dereq_(
|
|
9519
|
+
var EventPluginRegistry = _dereq_(18);
|
|
9404
9520
|
|
|
9405
|
-
var warning = _dereq_(
|
|
9521
|
+
var warning = _dereq_(183);
|
|
9406
9522
|
|
|
9407
9523
|
if ("development" !== 'production') {
|
|
9408
9524
|
var reactProps = {
|
|
@@ -9450,7 +9566,7 @@ var ReactDOMUnknownPropertyDevtool = {
|
|
|
9450
9566
|
};
|
|
9451
9567
|
|
|
9452
9568
|
module.exports = ReactDOMUnknownPropertyDevtool;
|
|
9453
|
-
},{"10":10,"
|
|
9569
|
+
},{"10":10,"18":18,"183":183}],61:[function(_dereq_,module,exports){
|
|
9454
9570
|
/**
|
|
9455
9571
|
* Copyright 2016-present, Facebook, Inc.
|
|
9456
9572
|
* All rights reserved.
|
|
@@ -9464,8 +9580,8 @@ module.exports = ReactDOMUnknownPropertyDevtool;
|
|
|
9464
9580
|
|
|
9465
9581
|
'use strict';
|
|
9466
9582
|
|
|
9467
|
-
var ReactInvalidSetStateWarningDevTool = _dereq_(
|
|
9468
|
-
var warning = _dereq_(
|
|
9583
|
+
var ReactInvalidSetStateWarningDevTool = _dereq_(78);
|
|
9584
|
+
var warning = _dereq_(183);
|
|
9469
9585
|
|
|
9470
9586
|
var eventHandlers = [];
|
|
9471
9587
|
var handlerDoesThrowForEvent = {};
|
|
@@ -9523,7 +9639,7 @@ var ReactDebugTool = {
|
|
|
9523
9639
|
ReactDebugTool.addDevtool(ReactInvalidSetStateWarningDevTool);
|
|
9524
9640
|
|
|
9525
9641
|
module.exports = ReactDebugTool;
|
|
9526
|
-
},{"
|
|
9642
|
+
},{"183":183,"78":78}],62:[function(_dereq_,module,exports){
|
|
9527
9643
|
/**
|
|
9528
9644
|
* Copyright 2013-present, Facebook, Inc.
|
|
9529
9645
|
* All rights reserved.
|
|
@@ -9537,12 +9653,12 @@ module.exports = ReactDebugTool;
|
|
|
9537
9653
|
|
|
9538
9654
|
'use strict';
|
|
9539
9655
|
|
|
9540
|
-
var _assign = _dereq_(
|
|
9656
|
+
var _assign = _dereq_(184);
|
|
9541
9657
|
|
|
9542
|
-
var ReactUpdates = _dereq_(
|
|
9543
|
-
var Transaction = _dereq_(
|
|
9658
|
+
var ReactUpdates = _dereq_(104);
|
|
9659
|
+
var Transaction = _dereq_(124);
|
|
9544
9660
|
|
|
9545
|
-
var emptyFunction = _dereq_(
|
|
9661
|
+
var emptyFunction = _dereq_(165);
|
|
9546
9662
|
|
|
9547
9663
|
var RESET_BATCHED_UPDATES = {
|
|
9548
9664
|
initialize: emptyFunction,
|
|
@@ -9592,7 +9708,7 @@ var ReactDefaultBatchingStrategy = {
|
|
|
9592
9708
|
};
|
|
9593
9709
|
|
|
9594
9710
|
module.exports = ReactDefaultBatchingStrategy;
|
|
9595
|
-
},{"
|
|
9711
|
+
},{"104":104,"124":124,"165":165,"184":184}],63:[function(_dereq_,module,exports){
|
|
9596
9712
|
/**
|
|
9597
9713
|
* Copyright 2013-present, Facebook, Inc.
|
|
9598
9714
|
* All rights reserved.
|
|
@@ -9609,22 +9725,22 @@ module.exports = ReactDefaultBatchingStrategy;
|
|
|
9609
9725
|
var BeforeInputEventPlugin = _dereq_(2);
|
|
9610
9726
|
var ChangeEventPlugin = _dereq_(6);
|
|
9611
9727
|
var DefaultEventPluginOrder = _dereq_(13);
|
|
9612
|
-
var EnterLeaveEventPlugin = _dereq_(
|
|
9613
|
-
var ExecutionEnvironment = _dereq_(
|
|
9614
|
-
var HTMLDOMPropertyConfig = _dereq_(
|
|
9615
|
-
var ReactComponentBrowserEnvironment = _dereq_(
|
|
9616
|
-
var ReactDOMComponent = _dereq_(
|
|
9617
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9618
|
-
var ReactDOMEmptyComponent = _dereq_(
|
|
9619
|
-
var ReactDOMTreeTraversal = _dereq_(
|
|
9620
|
-
var ReactDOMTextComponent = _dereq_(
|
|
9621
|
-
var ReactDefaultBatchingStrategy = _dereq_(
|
|
9622
|
-
var ReactEventListener = _dereq_(
|
|
9623
|
-
var ReactInjection = _dereq_(
|
|
9624
|
-
var ReactReconcileTransaction = _dereq_(
|
|
9625
|
-
var SVGDOMPropertyConfig = _dereq_(
|
|
9626
|
-
var SelectEventPlugin = _dereq_(
|
|
9627
|
-
var SimpleEventPlugin = _dereq_(
|
|
9728
|
+
var EnterLeaveEventPlugin = _dereq_(15);
|
|
9729
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
9730
|
+
var HTMLDOMPropertyConfig = _dereq_(22);
|
|
9731
|
+
var ReactComponentBrowserEnvironment = _dereq_(35);
|
|
9732
|
+
var ReactDOMComponent = _dereq_(42);
|
|
9733
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
9734
|
+
var ReactDOMEmptyComponent = _dereq_(47);
|
|
9735
|
+
var ReactDOMTreeTraversal = _dereq_(59);
|
|
9736
|
+
var ReactDOMTextComponent = _dereq_(57);
|
|
9737
|
+
var ReactDefaultBatchingStrategy = _dereq_(62);
|
|
9738
|
+
var ReactEventListener = _dereq_(71);
|
|
9739
|
+
var ReactInjection = _dereq_(74);
|
|
9740
|
+
var ReactReconcileTransaction = _dereq_(92);
|
|
9741
|
+
var SVGDOMPropertyConfig = _dereq_(108);
|
|
9742
|
+
var SelectEventPlugin = _dereq_(109);
|
|
9743
|
+
var SimpleEventPlugin = _dereq_(110);
|
|
9628
9744
|
|
|
9629
9745
|
var alreadyInjected = false;
|
|
9630
9746
|
|
|
@@ -9677,7 +9793,7 @@ function inject() {
|
|
|
9677
9793
|
if ("development" !== 'production') {
|
|
9678
9794
|
var url = ExecutionEnvironment.canUseDOM && window.location.href || '';
|
|
9679
9795
|
if (/[?&]react_perf\b/.test(url)) {
|
|
9680
|
-
var ReactDefaultPerf = _dereq_(
|
|
9796
|
+
var ReactDefaultPerf = _dereq_(64);
|
|
9681
9797
|
ReactDefaultPerf.start();
|
|
9682
9798
|
}
|
|
9683
9799
|
}
|
|
@@ -9686,7 +9802,7 @@ function inject() {
|
|
|
9686
9802
|
module.exports = {
|
|
9687
9803
|
inject: inject
|
|
9688
9804
|
};
|
|
9689
|
-
},{"
|
|
9805
|
+
},{"108":108,"109":109,"110":110,"13":13,"15":15,"159":159,"2":2,"22":22,"35":35,"42":42,"44":44,"47":47,"57":57,"59":59,"6":6,"62":62,"64":64,"71":71,"74":74,"92":92}],64:[function(_dereq_,module,exports){
|
|
9690
9806
|
/**
|
|
9691
9807
|
* Copyright 2013-present, Facebook, Inc.
|
|
9692
9808
|
* All rights reserved.
|
|
@@ -9701,13 +9817,13 @@ module.exports = {
|
|
|
9701
9817
|
'use strict';
|
|
9702
9818
|
|
|
9703
9819
|
var DOMProperty = _dereq_(10);
|
|
9704
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9705
|
-
var ReactDefaultPerfAnalysis = _dereq_(
|
|
9706
|
-
var ReactMount = _dereq_(
|
|
9707
|
-
var ReactPerf = _dereq_(
|
|
9820
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
9821
|
+
var ReactDefaultPerfAnalysis = _dereq_(65);
|
|
9822
|
+
var ReactMount = _dereq_(81);
|
|
9823
|
+
var ReactPerf = _dereq_(88);
|
|
9708
9824
|
|
|
9709
|
-
var performanceNow = _dereq_(
|
|
9710
|
-
var warning = _dereq_(
|
|
9825
|
+
var performanceNow = _dereq_(181);
|
|
9826
|
+
var warning = _dereq_(183);
|
|
9711
9827
|
|
|
9712
9828
|
function roundFloat(val) {
|
|
9713
9829
|
return Math.floor(val * 100) / 100;
|
|
@@ -10003,7 +10119,7 @@ var ReactDefaultPerf = {
|
|
|
10003
10119
|
};
|
|
10004
10120
|
|
|
10005
10121
|
module.exports = ReactDefaultPerf;
|
|
10006
|
-
},{"10":10,"
|
|
10122
|
+
},{"10":10,"181":181,"183":183,"44":44,"65":65,"81":81,"88":88}],65:[function(_dereq_,module,exports){
|
|
10007
10123
|
/**
|
|
10008
10124
|
* Copyright 2013-present, Facebook, Inc.
|
|
10009
10125
|
* All rights reserved.
|
|
@@ -10019,7 +10135,7 @@ module.exports = ReactDefaultPerf;
|
|
|
10019
10135
|
|
|
10020
10136
|
// Don't try to save users less than 1.2ms (a number I made up)
|
|
10021
10137
|
|
|
10022
|
-
var _assign = _dereq_(
|
|
10138
|
+
var _assign = _dereq_(184);
|
|
10023
10139
|
|
|
10024
10140
|
var DONT_CARE_THRESHOLD = 1.2;
|
|
10025
10141
|
var DOM_OPERATION_TYPES = {
|
|
@@ -10175,12 +10291,13 @@ function getUnchangedComponents(measurement) {
|
|
|
10175
10291
|
// the amount of time it took to render the entire subtree.
|
|
10176
10292
|
var cleanComponents = {};
|
|
10177
10293
|
var writes = measurement.writes;
|
|
10294
|
+
var hierarchy = measurement.hierarchy;
|
|
10178
10295
|
var dirtyComposites = {};
|
|
10179
10296
|
Object.keys(writes).forEach(function (id) {
|
|
10180
10297
|
writes[id].forEach(function (write) {
|
|
10181
10298
|
// Root mounting (innerHTML set) is recorded with an ID of ''
|
|
10182
|
-
if (id !== '') {
|
|
10183
|
-
|
|
10299
|
+
if (id !== '' && hierarchy.hasOwnProperty(id)) {
|
|
10300
|
+
hierarchy[id].forEach(function (c) {
|
|
10184
10301
|
return dirtyComposites[c] = true;
|
|
10185
10302
|
});
|
|
10186
10303
|
}
|
|
@@ -10213,7 +10330,7 @@ var ReactDefaultPerfAnalysis = {
|
|
|
10213
10330
|
};
|
|
10214
10331
|
|
|
10215
10332
|
module.exports = ReactDefaultPerfAnalysis;
|
|
10216
|
-
},{"
|
|
10333
|
+
},{"184":184}],66:[function(_dereq_,module,exports){
|
|
10217
10334
|
/**
|
|
10218
10335
|
* Copyright 2014-present, Facebook, Inc.
|
|
10219
10336
|
* All rights reserved.
|
|
@@ -10227,12 +10344,12 @@ module.exports = ReactDefaultPerfAnalysis;
|
|
|
10227
10344
|
|
|
10228
10345
|
'use strict';
|
|
10229
10346
|
|
|
10230
|
-
var _assign = _dereq_(
|
|
10347
|
+
var _assign = _dereq_(184);
|
|
10231
10348
|
|
|
10232
|
-
var ReactCurrentOwner = _dereq_(
|
|
10349
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
10233
10350
|
|
|
10234
|
-
var warning = _dereq_(
|
|
10235
|
-
var canDefineProperty = _dereq_(
|
|
10351
|
+
var warning = _dereq_(183);
|
|
10352
|
+
var canDefineProperty = _dereq_(128);
|
|
10236
10353
|
|
|
10237
10354
|
// The Symbol used to tag the ReactElement type. If there is no native Symbol
|
|
10238
10355
|
// nor polyfill, then a plain number is used for performance.
|
|
@@ -10501,7 +10618,7 @@ ReactElement.isValidElement = function (object) {
|
|
|
10501
10618
|
};
|
|
10502
10619
|
|
|
10503
10620
|
module.exports = ReactElement;
|
|
10504
|
-
},{"
|
|
10621
|
+
},{"128":128,"183":183,"184":184,"39":39}],67:[function(_dereq_,module,exports){
|
|
10505
10622
|
/**
|
|
10506
10623
|
* Copyright 2014-present, Facebook, Inc.
|
|
10507
10624
|
* All rights reserved.
|
|
@@ -10522,15 +10639,15 @@ module.exports = ReactElement;
|
|
|
10522
10639
|
|
|
10523
10640
|
'use strict';
|
|
10524
10641
|
|
|
10525
|
-
var ReactElement = _dereq_(
|
|
10526
|
-
var ReactPropTypeLocations = _dereq_(
|
|
10527
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
10528
|
-
var ReactCurrentOwner = _dereq_(
|
|
10642
|
+
var ReactElement = _dereq_(66);
|
|
10643
|
+
var ReactPropTypeLocations = _dereq_(90);
|
|
10644
|
+
var ReactPropTypeLocationNames = _dereq_(89);
|
|
10645
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
10529
10646
|
|
|
10530
|
-
var canDefineProperty = _dereq_(
|
|
10531
|
-
var getIteratorFn = _dereq_(
|
|
10532
|
-
var invariant = _dereq_(
|
|
10533
|
-
var warning = _dereq_(
|
|
10647
|
+
var canDefineProperty = _dereq_(128);
|
|
10648
|
+
var getIteratorFn = _dereq_(139);
|
|
10649
|
+
var invariant = _dereq_(173);
|
|
10650
|
+
var warning = _dereq_(183);
|
|
10534
10651
|
|
|
10535
10652
|
function getDeclarationErrorAddendum() {
|
|
10536
10653
|
if (ReactCurrentOwner.current) {
|
|
@@ -10783,7 +10900,7 @@ var ReactElementValidator = {
|
|
|
10783
10900
|
};
|
|
10784
10901
|
|
|
10785
10902
|
module.exports = ReactElementValidator;
|
|
10786
|
-
},{"
|
|
10903
|
+
},{"128":128,"139":139,"173":173,"183":183,"39":39,"66":66,"89":89,"90":90}],68:[function(_dereq_,module,exports){
|
|
10787
10904
|
/**
|
|
10788
10905
|
* Copyright 2014-present, Facebook, Inc.
|
|
10789
10906
|
* All rights reserved.
|
|
@@ -10814,7 +10931,7 @@ var ReactEmptyComponent = {
|
|
|
10814
10931
|
ReactEmptyComponent.injection = ReactEmptyComponentInjection;
|
|
10815
10932
|
|
|
10816
10933
|
module.exports = ReactEmptyComponent;
|
|
10817
|
-
},{}],
|
|
10934
|
+
},{}],69:[function(_dereq_,module,exports){
|
|
10818
10935
|
/**
|
|
10819
10936
|
* Copyright 2013-present, Facebook, Inc.
|
|
10820
10937
|
* All rights reserved.
|
|
@@ -10891,7 +11008,7 @@ if ("development" !== 'production') {
|
|
|
10891
11008
|
}
|
|
10892
11009
|
|
|
10893
11010
|
module.exports = ReactErrorUtils;
|
|
10894
|
-
},{}],
|
|
11011
|
+
},{}],70:[function(_dereq_,module,exports){
|
|
10895
11012
|
/**
|
|
10896
11013
|
* Copyright 2013-present, Facebook, Inc.
|
|
10897
11014
|
* All rights reserved.
|
|
@@ -10905,7 +11022,7 @@ module.exports = ReactErrorUtils;
|
|
|
10905
11022
|
|
|
10906
11023
|
'use strict';
|
|
10907
11024
|
|
|
10908
|
-
var EventPluginHub = _dereq_(
|
|
11025
|
+
var EventPluginHub = _dereq_(17);
|
|
10909
11026
|
|
|
10910
11027
|
function runEventQueueInBatch(events) {
|
|
10911
11028
|
EventPluginHub.enqueueEvents(events);
|
|
@@ -10925,7 +11042,7 @@ var ReactEventEmitterMixin = {
|
|
|
10925
11042
|
};
|
|
10926
11043
|
|
|
10927
11044
|
module.exports = ReactEventEmitterMixin;
|
|
10928
|
-
},{"
|
|
11045
|
+
},{"17":17}],71:[function(_dereq_,module,exports){
|
|
10929
11046
|
/**
|
|
10930
11047
|
* Copyright 2013-present, Facebook, Inc.
|
|
10931
11048
|
* All rights reserved.
|
|
@@ -10939,16 +11056,16 @@ module.exports = ReactEventEmitterMixin;
|
|
|
10939
11056
|
|
|
10940
11057
|
'use strict';
|
|
10941
11058
|
|
|
10942
|
-
var _assign = _dereq_(
|
|
11059
|
+
var _assign = _dereq_(184);
|
|
10943
11060
|
|
|
10944
|
-
var EventListener = _dereq_(
|
|
10945
|
-
var ExecutionEnvironment = _dereq_(
|
|
10946
|
-
var PooledClass = _dereq_(
|
|
10947
|
-
var ReactDOMComponentTree = _dereq_(
|
|
10948
|
-
var ReactUpdates = _dereq_(
|
|
11061
|
+
var EventListener = _dereq_(158);
|
|
11062
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
11063
|
+
var PooledClass = _dereq_(26);
|
|
11064
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
11065
|
+
var ReactUpdates = _dereq_(104);
|
|
10949
11066
|
|
|
10950
|
-
var getEventTarget = _dereq_(
|
|
10951
|
-
var getUnboundedScrollPosition = _dereq_(
|
|
11067
|
+
var getEventTarget = _dereq_(138);
|
|
11068
|
+
var getUnboundedScrollPosition = _dereq_(170);
|
|
10952
11069
|
|
|
10953
11070
|
/**
|
|
10954
11071
|
* Find the deepest React component completely containing the root of the
|
|
@@ -11083,7 +11200,7 @@ var ReactEventListener = {
|
|
|
11083
11200
|
};
|
|
11084
11201
|
|
|
11085
11202
|
module.exports = ReactEventListener;
|
|
11086
|
-
},{"
|
|
11203
|
+
},{"104":104,"138":138,"158":158,"159":159,"170":170,"184":184,"26":26,"44":44}],72:[function(_dereq_,module,exports){
|
|
11087
11204
|
/**
|
|
11088
11205
|
* Copyright 2013-present, Facebook, Inc.
|
|
11089
11206
|
* All rights reserved.
|
|
@@ -11105,7 +11222,7 @@ var ReactFeatureFlags = {
|
|
|
11105
11222
|
};
|
|
11106
11223
|
|
|
11107
11224
|
module.exports = ReactFeatureFlags;
|
|
11108
|
-
},{}],
|
|
11225
|
+
},{}],73:[function(_dereq_,module,exports){
|
|
11109
11226
|
/**
|
|
11110
11227
|
* Copyright 2015-present, Facebook, Inc.
|
|
11111
11228
|
* All rights reserved.
|
|
@@ -11119,12 +11236,12 @@ module.exports = ReactFeatureFlags;
|
|
|
11119
11236
|
|
|
11120
11237
|
'use strict';
|
|
11121
11238
|
|
|
11122
|
-
var ReactChildren = _dereq_(
|
|
11123
|
-
var ReactElement = _dereq_(
|
|
11239
|
+
var ReactChildren = _dereq_(32);
|
|
11240
|
+
var ReactElement = _dereq_(66);
|
|
11124
11241
|
|
|
11125
|
-
var emptyFunction = _dereq_(
|
|
11126
|
-
var invariant = _dereq_(
|
|
11127
|
-
var warning = _dereq_(
|
|
11242
|
+
var emptyFunction = _dereq_(165);
|
|
11243
|
+
var invariant = _dereq_(173);
|
|
11244
|
+
var warning = _dereq_(183);
|
|
11128
11245
|
|
|
11129
11246
|
/**
|
|
11130
11247
|
* We used to allow keyed objects to serve as a collection of ReactElements,
|
|
@@ -11170,7 +11287,7 @@ var ReactFragment = {
|
|
|
11170
11287
|
};
|
|
11171
11288
|
|
|
11172
11289
|
module.exports = ReactFragment;
|
|
11173
|
-
},{"
|
|
11290
|
+
},{"165":165,"173":173,"183":183,"32":32,"66":66}],74:[function(_dereq_,module,exports){
|
|
11174
11291
|
/**
|
|
11175
11292
|
* Copyright 2013-present, Facebook, Inc.
|
|
11176
11293
|
* All rights reserved.
|
|
@@ -11185,15 +11302,15 @@ module.exports = ReactFragment;
|
|
|
11185
11302
|
'use strict';
|
|
11186
11303
|
|
|
11187
11304
|
var DOMProperty = _dereq_(10);
|
|
11188
|
-
var EventPluginHub = _dereq_(
|
|
11189
|
-
var EventPluginUtils = _dereq_(
|
|
11190
|
-
var ReactComponentEnvironment = _dereq_(
|
|
11191
|
-
var ReactClass = _dereq_(
|
|
11192
|
-
var ReactEmptyComponent = _dereq_(
|
|
11193
|
-
var ReactBrowserEventEmitter = _dereq_(
|
|
11194
|
-
var ReactNativeComponent = _dereq_(
|
|
11195
|
-
var ReactPerf = _dereq_(
|
|
11196
|
-
var ReactUpdates = _dereq_(
|
|
11305
|
+
var EventPluginHub = _dereq_(17);
|
|
11306
|
+
var EventPluginUtils = _dereq_(19);
|
|
11307
|
+
var ReactComponentEnvironment = _dereq_(36);
|
|
11308
|
+
var ReactClass = _dereq_(33);
|
|
11309
|
+
var ReactEmptyComponent = _dereq_(68);
|
|
11310
|
+
var ReactBrowserEventEmitter = _dereq_(28);
|
|
11311
|
+
var ReactNativeComponent = _dereq_(84);
|
|
11312
|
+
var ReactPerf = _dereq_(88);
|
|
11313
|
+
var ReactUpdates = _dereq_(104);
|
|
11197
11314
|
|
|
11198
11315
|
var ReactInjection = {
|
|
11199
11316
|
Component: ReactComponentEnvironment.injection,
|
|
@@ -11209,7 +11326,7 @@ var ReactInjection = {
|
|
|
11209
11326
|
};
|
|
11210
11327
|
|
|
11211
11328
|
module.exports = ReactInjection;
|
|
11212
|
-
},{"10":10,"
|
|
11329
|
+
},{"10":10,"104":104,"17":17,"19":19,"28":28,"33":33,"36":36,"68":68,"84":84,"88":88}],75:[function(_dereq_,module,exports){
|
|
11213
11330
|
/**
|
|
11214
11331
|
* Copyright 2013-present, Facebook, Inc.
|
|
11215
11332
|
* All rights reserved.
|
|
@@ -11223,11 +11340,11 @@ module.exports = ReactInjection;
|
|
|
11223
11340
|
|
|
11224
11341
|
'use strict';
|
|
11225
11342
|
|
|
11226
|
-
var ReactDOMSelection = _dereq_(
|
|
11343
|
+
var ReactDOMSelection = _dereq_(55);
|
|
11227
11344
|
|
|
11228
|
-
var containsNode = _dereq_(
|
|
11229
|
-
var focusNode = _dereq_(
|
|
11230
|
-
var getActiveElement = _dereq_(
|
|
11345
|
+
var containsNode = _dereq_(162);
|
|
11346
|
+
var focusNode = _dereq_(167);
|
|
11347
|
+
var getActiveElement = _dereq_(168);
|
|
11231
11348
|
|
|
11232
11349
|
function isInDocument(node) {
|
|
11233
11350
|
return containsNode(document.documentElement, node);
|
|
@@ -11334,7 +11451,7 @@ var ReactInputSelection = {
|
|
|
11334
11451
|
};
|
|
11335
11452
|
|
|
11336
11453
|
module.exports = ReactInputSelection;
|
|
11337
|
-
},{"
|
|
11454
|
+
},{"162":162,"167":167,"168":168,"55":55}],76:[function(_dereq_,module,exports){
|
|
11338
11455
|
/**
|
|
11339
11456
|
* Copyright 2013-present, Facebook, Inc.
|
|
11340
11457
|
* All rights reserved.
|
|
@@ -11383,7 +11500,7 @@ var ReactInstanceMap = {
|
|
|
11383
11500
|
};
|
|
11384
11501
|
|
|
11385
11502
|
module.exports = ReactInstanceMap;
|
|
11386
|
-
},{}],
|
|
11503
|
+
},{}],77:[function(_dereq_,module,exports){
|
|
11387
11504
|
/**
|
|
11388
11505
|
* Copyright 2016-present, Facebook, Inc.
|
|
11389
11506
|
* All rights reserved.
|
|
@@ -11397,10 +11514,10 @@ module.exports = ReactInstanceMap;
|
|
|
11397
11514
|
|
|
11398
11515
|
'use strict';
|
|
11399
11516
|
|
|
11400
|
-
var ReactDebugTool = _dereq_(
|
|
11517
|
+
var ReactDebugTool = _dereq_(61);
|
|
11401
11518
|
|
|
11402
11519
|
module.exports = { debugTool: ReactDebugTool };
|
|
11403
|
-
},{"
|
|
11520
|
+
},{"61":61}],78:[function(_dereq_,module,exports){
|
|
11404
11521
|
/**
|
|
11405
11522
|
* Copyright 2016-present, Facebook, Inc.
|
|
11406
11523
|
* All rights reserved.
|
|
@@ -11414,7 +11531,7 @@ module.exports = { debugTool: ReactDebugTool };
|
|
|
11414
11531
|
|
|
11415
11532
|
'use strict';
|
|
11416
11533
|
|
|
11417
|
-
var warning = _dereq_(
|
|
11534
|
+
var warning = _dereq_(183);
|
|
11418
11535
|
|
|
11419
11536
|
if ("development" !== 'production') {
|
|
11420
11537
|
var processingChildContext = false;
|
|
@@ -11437,7 +11554,7 @@ var ReactInvalidSetStateWarningDevTool = {
|
|
|
11437
11554
|
};
|
|
11438
11555
|
|
|
11439
11556
|
module.exports = ReactInvalidSetStateWarningDevTool;
|
|
11440
|
-
},{"
|
|
11557
|
+
},{"183":183}],79:[function(_dereq_,module,exports){
|
|
11441
11558
|
/**
|
|
11442
11559
|
* Copyright 2013-present, Facebook, Inc.
|
|
11443
11560
|
* All rights reserved.
|
|
@@ -11474,7 +11591,7 @@ module.exports = ReactInvalidSetStateWarningDevTool;
|
|
|
11474
11591
|
* consumption of ReactLink easier; see LinkedValueUtils and LinkedStateMixin.
|
|
11475
11592
|
*/
|
|
11476
11593
|
|
|
11477
|
-
var React = _dereq_(
|
|
11594
|
+
var React = _dereq_(27);
|
|
11478
11595
|
|
|
11479
11596
|
/**
|
|
11480
11597
|
* @param {*} value current value of the link
|
|
@@ -11506,7 +11623,7 @@ ReactLink.PropTypes = {
|
|
|
11506
11623
|
};
|
|
11507
11624
|
|
|
11508
11625
|
module.exports = ReactLink;
|
|
11509
|
-
},{"
|
|
11626
|
+
},{"27":27}],80:[function(_dereq_,module,exports){
|
|
11510
11627
|
/**
|
|
11511
11628
|
* Copyright 2013-present, Facebook, Inc.
|
|
11512
11629
|
* All rights reserved.
|
|
@@ -11520,7 +11637,7 @@ module.exports = ReactLink;
|
|
|
11520
11637
|
|
|
11521
11638
|
'use strict';
|
|
11522
11639
|
|
|
11523
|
-
var adler32 = _dereq_(
|
|
11640
|
+
var adler32 = _dereq_(127);
|
|
11524
11641
|
|
|
11525
11642
|
var TAG_END = /\/?>/;
|
|
11526
11643
|
var COMMENT_START = /^<\!\-\-/;
|
|
@@ -11557,7 +11674,7 @@ var ReactMarkupChecksum = {
|
|
|
11557
11674
|
};
|
|
11558
11675
|
|
|
11559
11676
|
module.exports = ReactMarkupChecksum;
|
|
11560
|
-
},{"
|
|
11677
|
+
},{"127":127}],81:[function(_dereq_,module,exports){
|
|
11561
11678
|
/**
|
|
11562
11679
|
* Copyright 2013-present, Facebook, Inc.
|
|
11563
11680
|
* All rights reserved.
|
|
@@ -11573,26 +11690,26 @@ module.exports = ReactMarkupChecksum;
|
|
|
11573
11690
|
|
|
11574
11691
|
var DOMLazyTree = _dereq_(8);
|
|
11575
11692
|
var DOMProperty = _dereq_(10);
|
|
11576
|
-
var ReactBrowserEventEmitter = _dereq_(
|
|
11577
|
-
var ReactCurrentOwner = _dereq_(
|
|
11578
|
-
var ReactDOMComponentTree = _dereq_(
|
|
11579
|
-
var ReactDOMContainerInfo = _dereq_(
|
|
11580
|
-
var ReactDOMFeatureFlags = _dereq_(
|
|
11581
|
-
var ReactElement = _dereq_(
|
|
11582
|
-
var ReactFeatureFlags = _dereq_(
|
|
11583
|
-
var ReactInstrumentation = _dereq_(
|
|
11584
|
-
var ReactMarkupChecksum = _dereq_(
|
|
11585
|
-
var ReactPerf = _dereq_(
|
|
11586
|
-
var ReactReconciler = _dereq_(
|
|
11587
|
-
var ReactUpdateQueue = _dereq_(
|
|
11588
|
-
var ReactUpdates = _dereq_(
|
|
11589
|
-
|
|
11590
|
-
var emptyObject = _dereq_(
|
|
11591
|
-
var instantiateReactComponent = _dereq_(
|
|
11592
|
-
var invariant = _dereq_(
|
|
11593
|
-
var setInnerHTML = _dereq_(
|
|
11594
|
-
var shouldUpdateReactComponent = _dereq_(
|
|
11595
|
-
var warning = _dereq_(
|
|
11693
|
+
var ReactBrowserEventEmitter = _dereq_(28);
|
|
11694
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
11695
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
11696
|
+
var ReactDOMContainerInfo = _dereq_(45);
|
|
11697
|
+
var ReactDOMFeatureFlags = _dereq_(49);
|
|
11698
|
+
var ReactElement = _dereq_(66);
|
|
11699
|
+
var ReactFeatureFlags = _dereq_(72);
|
|
11700
|
+
var ReactInstrumentation = _dereq_(77);
|
|
11701
|
+
var ReactMarkupChecksum = _dereq_(80);
|
|
11702
|
+
var ReactPerf = _dereq_(88);
|
|
11703
|
+
var ReactReconciler = _dereq_(93);
|
|
11704
|
+
var ReactUpdateQueue = _dereq_(103);
|
|
11705
|
+
var ReactUpdates = _dereq_(104);
|
|
11706
|
+
|
|
11707
|
+
var emptyObject = _dereq_(166);
|
|
11708
|
+
var instantiateReactComponent = _dereq_(144);
|
|
11709
|
+
var invariant = _dereq_(173);
|
|
11710
|
+
var setInnerHTML = _dereq_(150);
|
|
11711
|
+
var shouldUpdateReactComponent = _dereq_(153);
|
|
11712
|
+
var warning = _dereq_(183);
|
|
11596
11713
|
|
|
11597
11714
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
11598
11715
|
var ROOT_ATTR_NAME = DOMProperty.ROOT_ATTRIBUTE_NAME;
|
|
@@ -12036,7 +12153,7 @@ ReactPerf.measureMethods(ReactMount, 'ReactMount', {
|
|
|
12036
12153
|
});
|
|
12037
12154
|
|
|
12038
12155
|
module.exports = ReactMount;
|
|
12039
|
-
},{"10":10,"
|
|
12156
|
+
},{"10":10,"103":103,"104":104,"144":144,"150":150,"153":153,"166":166,"173":173,"183":183,"28":28,"39":39,"44":44,"45":45,"49":49,"66":66,"72":72,"77":77,"8":8,"80":80,"88":88,"93":93}],82:[function(_dereq_,module,exports){
|
|
12040
12157
|
/**
|
|
12041
12158
|
* Copyright 2013-present, Facebook, Inc.
|
|
12042
12159
|
* All rights reserved.
|
|
@@ -12050,15 +12167,15 @@ module.exports = ReactMount;
|
|
|
12050
12167
|
|
|
12051
12168
|
'use strict';
|
|
12052
12169
|
|
|
12053
|
-
var ReactComponentEnvironment = _dereq_(
|
|
12054
|
-
var ReactMultiChildUpdateTypes = _dereq_(
|
|
12170
|
+
var ReactComponentEnvironment = _dereq_(36);
|
|
12171
|
+
var ReactMultiChildUpdateTypes = _dereq_(83);
|
|
12055
12172
|
|
|
12056
|
-
var ReactCurrentOwner = _dereq_(
|
|
12057
|
-
var ReactReconciler = _dereq_(
|
|
12058
|
-
var ReactChildReconciler = _dereq_(
|
|
12173
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
12174
|
+
var ReactReconciler = _dereq_(93);
|
|
12175
|
+
var ReactChildReconciler = _dereq_(31);
|
|
12059
12176
|
|
|
12060
|
-
var flattenChildren = _dereq_(
|
|
12061
|
-
var invariant = _dereq_(
|
|
12177
|
+
var flattenChildren = _dereq_(133);
|
|
12178
|
+
var invariant = _dereq_(173);
|
|
12062
12179
|
|
|
12063
12180
|
/**
|
|
12064
12181
|
* Make an update for markup to be rendered and inserted at a supplied index.
|
|
@@ -12439,7 +12556,7 @@ var ReactMultiChild = {
|
|
|
12439
12556
|
};
|
|
12440
12557
|
|
|
12441
12558
|
module.exports = ReactMultiChild;
|
|
12442
|
-
},{"
|
|
12559
|
+
},{"133":133,"173":173,"31":31,"36":36,"39":39,"83":83,"93":93}],83:[function(_dereq_,module,exports){
|
|
12443
12560
|
/**
|
|
12444
12561
|
* Copyright 2013-present, Facebook, Inc.
|
|
12445
12562
|
* All rights reserved.
|
|
@@ -12453,7 +12570,7 @@ module.exports = ReactMultiChild;
|
|
|
12453
12570
|
|
|
12454
12571
|
'use strict';
|
|
12455
12572
|
|
|
12456
|
-
var keyMirror = _dereq_(
|
|
12573
|
+
var keyMirror = _dereq_(176);
|
|
12457
12574
|
|
|
12458
12575
|
/**
|
|
12459
12576
|
* When a component's children are updated, a series of update configuration
|
|
@@ -12472,7 +12589,7 @@ var ReactMultiChildUpdateTypes = keyMirror({
|
|
|
12472
12589
|
});
|
|
12473
12590
|
|
|
12474
12591
|
module.exports = ReactMultiChildUpdateTypes;
|
|
12475
|
-
},{"
|
|
12592
|
+
},{"176":176}],84:[function(_dereq_,module,exports){
|
|
12476
12593
|
/**
|
|
12477
12594
|
* Copyright 2014-present, Facebook, Inc.
|
|
12478
12595
|
* All rights reserved.
|
|
@@ -12486,9 +12603,9 @@ module.exports = ReactMultiChildUpdateTypes;
|
|
|
12486
12603
|
|
|
12487
12604
|
'use strict';
|
|
12488
12605
|
|
|
12489
|
-
var _assign = _dereq_(
|
|
12606
|
+
var _assign = _dereq_(184);
|
|
12490
12607
|
|
|
12491
|
-
var invariant = _dereq_(
|
|
12608
|
+
var invariant = _dereq_(173);
|
|
12492
12609
|
|
|
12493
12610
|
var autoGenerateWrapperClass = null;
|
|
12494
12611
|
var genericComponentClass = null;
|
|
@@ -12568,7 +12685,7 @@ var ReactNativeComponent = {
|
|
|
12568
12685
|
};
|
|
12569
12686
|
|
|
12570
12687
|
module.exports = ReactNativeComponent;
|
|
12571
|
-
},{"
|
|
12688
|
+
},{"173":173,"184":184}],85:[function(_dereq_,module,exports){
|
|
12572
12689
|
/**
|
|
12573
12690
|
* Copyright 2013-present, Facebook, Inc.
|
|
12574
12691
|
* All rights reserved.
|
|
@@ -12582,9 +12699,9 @@ module.exports = ReactNativeComponent;
|
|
|
12582
12699
|
|
|
12583
12700
|
'use strict';
|
|
12584
12701
|
|
|
12585
|
-
var ReactElement = _dereq_(
|
|
12702
|
+
var ReactElement = _dereq_(66);
|
|
12586
12703
|
|
|
12587
|
-
var invariant = _dereq_(
|
|
12704
|
+
var invariant = _dereq_(173);
|
|
12588
12705
|
|
|
12589
12706
|
var ReactNodeTypes = {
|
|
12590
12707
|
NATIVE: 0,
|
|
@@ -12606,7 +12723,7 @@ var ReactNodeTypes = {
|
|
|
12606
12723
|
};
|
|
12607
12724
|
|
|
12608
12725
|
module.exports = ReactNodeTypes;
|
|
12609
|
-
},{"
|
|
12726
|
+
},{"173":173,"66":66}],86:[function(_dereq_,module,exports){
|
|
12610
12727
|
/**
|
|
12611
12728
|
* Copyright 2015-present, Facebook, Inc.
|
|
12612
12729
|
* All rights reserved.
|
|
@@ -12620,7 +12737,7 @@ module.exports = ReactNodeTypes;
|
|
|
12620
12737
|
|
|
12621
12738
|
'use strict';
|
|
12622
12739
|
|
|
12623
|
-
var warning = _dereq_(
|
|
12740
|
+
var warning = _dereq_(183);
|
|
12624
12741
|
|
|
12625
12742
|
function warnTDZ(publicInstance, callerName) {
|
|
12626
12743
|
if ("development" !== 'production') {
|
|
@@ -12702,7 +12819,7 @@ var ReactNoopUpdateQueue = {
|
|
|
12702
12819
|
};
|
|
12703
12820
|
|
|
12704
12821
|
module.exports = ReactNoopUpdateQueue;
|
|
12705
|
-
},{"
|
|
12822
|
+
},{"183":183}],87:[function(_dereq_,module,exports){
|
|
12706
12823
|
/**
|
|
12707
12824
|
* Copyright 2013-present, Facebook, Inc.
|
|
12708
12825
|
* All rights reserved.
|
|
@@ -12716,7 +12833,7 @@ module.exports = ReactNoopUpdateQueue;
|
|
|
12716
12833
|
|
|
12717
12834
|
'use strict';
|
|
12718
12835
|
|
|
12719
|
-
var invariant = _dereq_(
|
|
12836
|
+
var invariant = _dereq_(173);
|
|
12720
12837
|
|
|
12721
12838
|
/**
|
|
12722
12839
|
* ReactOwners are capable of storing references to owned components.
|
|
@@ -12795,7 +12912,7 @@ var ReactOwner = {
|
|
|
12795
12912
|
};
|
|
12796
12913
|
|
|
12797
12914
|
module.exports = ReactOwner;
|
|
12798
|
-
},{"
|
|
12915
|
+
},{"173":173}],88:[function(_dereq_,module,exports){
|
|
12799
12916
|
/**
|
|
12800
12917
|
* Copyright 2013-present, Facebook, Inc.
|
|
12801
12918
|
* All rights reserved.
|
|
@@ -12892,7 +13009,7 @@ function _noMeasure(objName, fnName, func) {
|
|
|
12892
13009
|
}
|
|
12893
13010
|
|
|
12894
13011
|
module.exports = ReactPerf;
|
|
12895
|
-
},{}],
|
|
13012
|
+
},{}],89:[function(_dereq_,module,exports){
|
|
12896
13013
|
/**
|
|
12897
13014
|
* Copyright 2013-present, Facebook, Inc.
|
|
12898
13015
|
* All rights reserved.
|
|
@@ -12917,7 +13034,7 @@ if ("development" !== 'production') {
|
|
|
12917
13034
|
}
|
|
12918
13035
|
|
|
12919
13036
|
module.exports = ReactPropTypeLocationNames;
|
|
12920
|
-
},{}],
|
|
13037
|
+
},{}],90:[function(_dereq_,module,exports){
|
|
12921
13038
|
/**
|
|
12922
13039
|
* Copyright 2013-present, Facebook, Inc.
|
|
12923
13040
|
* All rights reserved.
|
|
@@ -12931,7 +13048,7 @@ module.exports = ReactPropTypeLocationNames;
|
|
|
12931
13048
|
|
|
12932
13049
|
'use strict';
|
|
12933
13050
|
|
|
12934
|
-
var keyMirror = _dereq_(
|
|
13051
|
+
var keyMirror = _dereq_(176);
|
|
12935
13052
|
|
|
12936
13053
|
var ReactPropTypeLocations = keyMirror({
|
|
12937
13054
|
prop: null,
|
|
@@ -12940,7 +13057,7 @@ var ReactPropTypeLocations = keyMirror({
|
|
|
12940
13057
|
});
|
|
12941
13058
|
|
|
12942
13059
|
module.exports = ReactPropTypeLocations;
|
|
12943
|
-
},{"
|
|
13060
|
+
},{"176":176}],91:[function(_dereq_,module,exports){
|
|
12944
13061
|
/**
|
|
12945
13062
|
* Copyright 2013-present, Facebook, Inc.
|
|
12946
13063
|
* All rights reserved.
|
|
@@ -12954,11 +13071,11 @@ module.exports = ReactPropTypeLocations;
|
|
|
12954
13071
|
|
|
12955
13072
|
'use strict';
|
|
12956
13073
|
|
|
12957
|
-
var ReactElement = _dereq_(
|
|
12958
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
13074
|
+
var ReactElement = _dereq_(66);
|
|
13075
|
+
var ReactPropTypeLocationNames = _dereq_(89);
|
|
12959
13076
|
|
|
12960
|
-
var emptyFunction = _dereq_(
|
|
12961
|
-
var getIteratorFn = _dereq_(
|
|
13077
|
+
var emptyFunction = _dereq_(165);
|
|
13078
|
+
var getIteratorFn = _dereq_(139);
|
|
12962
13079
|
|
|
12963
13080
|
/**
|
|
12964
13081
|
* Collection of methods that allow declaration and validation of props that are
|
|
@@ -13321,7 +13438,7 @@ function getClassName(propValue) {
|
|
|
13321
13438
|
}
|
|
13322
13439
|
|
|
13323
13440
|
module.exports = ReactPropTypes;
|
|
13324
|
-
},{"
|
|
13441
|
+
},{"139":139,"165":165,"66":66,"89":89}],92:[function(_dereq_,module,exports){
|
|
13325
13442
|
/**
|
|
13326
13443
|
* Copyright 2013-present, Facebook, Inc.
|
|
13327
13444
|
* All rights reserved.
|
|
@@ -13335,13 +13452,13 @@ module.exports = ReactPropTypes;
|
|
|
13335
13452
|
|
|
13336
13453
|
'use strict';
|
|
13337
13454
|
|
|
13338
|
-
var _assign = _dereq_(
|
|
13455
|
+
var _assign = _dereq_(184);
|
|
13339
13456
|
|
|
13340
13457
|
var CallbackQueue = _dereq_(5);
|
|
13341
|
-
var PooledClass = _dereq_(
|
|
13342
|
-
var ReactBrowserEventEmitter = _dereq_(
|
|
13343
|
-
var ReactInputSelection = _dereq_(
|
|
13344
|
-
var Transaction = _dereq_(
|
|
13458
|
+
var PooledClass = _dereq_(26);
|
|
13459
|
+
var ReactBrowserEventEmitter = _dereq_(28);
|
|
13460
|
+
var ReactInputSelection = _dereq_(75);
|
|
13461
|
+
var Transaction = _dereq_(124);
|
|
13345
13462
|
|
|
13346
13463
|
/**
|
|
13347
13464
|
* Ensures that, when possible, the selection range (currently selected text
|
|
@@ -13484,7 +13601,7 @@ _assign(ReactReconcileTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
13484
13601
|
PooledClass.addPoolingTo(ReactReconcileTransaction);
|
|
13485
13602
|
|
|
13486
13603
|
module.exports = ReactReconcileTransaction;
|
|
13487
|
-
},{"
|
|
13604
|
+
},{"124":124,"184":184,"26":26,"28":28,"5":5,"75":75}],93:[function(_dereq_,module,exports){
|
|
13488
13605
|
/**
|
|
13489
13606
|
* Copyright 2013-present, Facebook, Inc.
|
|
13490
13607
|
* All rights reserved.
|
|
@@ -13498,8 +13615,8 @@ module.exports = ReactReconcileTransaction;
|
|
|
13498
13615
|
|
|
13499
13616
|
'use strict';
|
|
13500
13617
|
|
|
13501
|
-
var ReactRef = _dereq_(
|
|
13502
|
-
var ReactInstrumentation = _dereq_(
|
|
13618
|
+
var ReactRef = _dereq_(94);
|
|
13619
|
+
var ReactInstrumentation = _dereq_(77);
|
|
13503
13620
|
|
|
13504
13621
|
/**
|
|
13505
13622
|
* Helper to call ReactRef.attachRefs with this composite component, split out
|
|
@@ -13615,7 +13732,7 @@ var ReactReconciler = {
|
|
|
13615
13732
|
};
|
|
13616
13733
|
|
|
13617
13734
|
module.exports = ReactReconciler;
|
|
13618
|
-
},{"
|
|
13735
|
+
},{"77":77,"94":94}],94:[function(_dereq_,module,exports){
|
|
13619
13736
|
/**
|
|
13620
13737
|
* Copyright 2013-present, Facebook, Inc.
|
|
13621
13738
|
* All rights reserved.
|
|
@@ -13629,7 +13746,7 @@ module.exports = ReactReconciler;
|
|
|
13629
13746
|
|
|
13630
13747
|
'use strict';
|
|
13631
13748
|
|
|
13632
|
-
var ReactOwner = _dereq_(
|
|
13749
|
+
var ReactOwner = _dereq_(87);
|
|
13633
13750
|
|
|
13634
13751
|
var ReactRef = {};
|
|
13635
13752
|
|
|
@@ -13694,7 +13811,7 @@ ReactRef.detachRefs = function (instance, element) {
|
|
|
13694
13811
|
};
|
|
13695
13812
|
|
|
13696
13813
|
module.exports = ReactRef;
|
|
13697
|
-
},{"
|
|
13814
|
+
},{"87":87}],95:[function(_dereq_,module,exports){
|
|
13698
13815
|
/**
|
|
13699
13816
|
* Copyright 2014-present, Facebook, Inc.
|
|
13700
13817
|
* All rights reserved.
|
|
@@ -13717,7 +13834,7 @@ var ReactServerBatchingStrategy = {
|
|
|
13717
13834
|
};
|
|
13718
13835
|
|
|
13719
13836
|
module.exports = ReactServerBatchingStrategy;
|
|
13720
|
-
},{}],
|
|
13837
|
+
},{}],96:[function(_dereq_,module,exports){
|
|
13721
13838
|
/**
|
|
13722
13839
|
* Copyright 2013-present, Facebook, Inc.
|
|
13723
13840
|
* All rights reserved.
|
|
@@ -13730,17 +13847,17 @@ module.exports = ReactServerBatchingStrategy;
|
|
|
13730
13847
|
*/
|
|
13731
13848
|
'use strict';
|
|
13732
13849
|
|
|
13733
|
-
var ReactDOMContainerInfo = _dereq_(
|
|
13734
|
-
var ReactDefaultBatchingStrategy = _dereq_(
|
|
13735
|
-
var ReactElement = _dereq_(
|
|
13736
|
-
var ReactMarkupChecksum = _dereq_(
|
|
13737
|
-
var ReactServerBatchingStrategy = _dereq_(
|
|
13738
|
-
var ReactServerRenderingTransaction = _dereq_(
|
|
13739
|
-
var ReactUpdates = _dereq_(
|
|
13850
|
+
var ReactDOMContainerInfo = _dereq_(45);
|
|
13851
|
+
var ReactDefaultBatchingStrategy = _dereq_(62);
|
|
13852
|
+
var ReactElement = _dereq_(66);
|
|
13853
|
+
var ReactMarkupChecksum = _dereq_(80);
|
|
13854
|
+
var ReactServerBatchingStrategy = _dereq_(95);
|
|
13855
|
+
var ReactServerRenderingTransaction = _dereq_(97);
|
|
13856
|
+
var ReactUpdates = _dereq_(104);
|
|
13740
13857
|
|
|
13741
|
-
var emptyObject = _dereq_(
|
|
13742
|
-
var instantiateReactComponent = _dereq_(
|
|
13743
|
-
var invariant = _dereq_(
|
|
13858
|
+
var emptyObject = _dereq_(166);
|
|
13859
|
+
var instantiateReactComponent = _dereq_(144);
|
|
13860
|
+
var invariant = _dereq_(173);
|
|
13744
13861
|
|
|
13745
13862
|
/**
|
|
13746
13863
|
* @param {ReactElement} element
|
|
@@ -13783,7 +13900,7 @@ module.exports = {
|
|
|
13783
13900
|
renderToString: renderToString,
|
|
13784
13901
|
renderToStaticMarkup: renderToStaticMarkup
|
|
13785
13902
|
};
|
|
13786
|
-
},{"
|
|
13903
|
+
},{"104":104,"144":144,"166":166,"173":173,"45":45,"62":62,"66":66,"80":80,"95":95,"97":97}],97:[function(_dereq_,module,exports){
|
|
13787
13904
|
/**
|
|
13788
13905
|
* Copyright 2014-present, Facebook, Inc.
|
|
13789
13906
|
* All rights reserved.
|
|
@@ -13797,10 +13914,10 @@ module.exports = {
|
|
|
13797
13914
|
|
|
13798
13915
|
'use strict';
|
|
13799
13916
|
|
|
13800
|
-
var _assign = _dereq_(
|
|
13917
|
+
var _assign = _dereq_(184);
|
|
13801
13918
|
|
|
13802
|
-
var PooledClass = _dereq_(
|
|
13803
|
-
var Transaction = _dereq_(
|
|
13919
|
+
var PooledClass = _dereq_(26);
|
|
13920
|
+
var Transaction = _dereq_(124);
|
|
13804
13921
|
|
|
13805
13922
|
/**
|
|
13806
13923
|
* Executed within the scope of the `Transaction` instance. Consider these as
|
|
@@ -13845,7 +13962,11 @@ var Mixin = {
|
|
|
13845
13962
|
* `PooledClass` looks for this, and will invoke this before allowing this
|
|
13846
13963
|
* instance to be reused.
|
|
13847
13964
|
*/
|
|
13848
|
-
destructor: function () {}
|
|
13965
|
+
destructor: function () {},
|
|
13966
|
+
|
|
13967
|
+
checkpoint: function () {},
|
|
13968
|
+
|
|
13969
|
+
rollback: function () {}
|
|
13849
13970
|
};
|
|
13850
13971
|
|
|
13851
13972
|
_assign(ReactServerRenderingTransaction.prototype, Transaction.Mixin, Mixin);
|
|
@@ -13853,7 +13974,7 @@ _assign(ReactServerRenderingTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
13853
13974
|
PooledClass.addPoolingTo(ReactServerRenderingTransaction);
|
|
13854
13975
|
|
|
13855
13976
|
module.exports = ReactServerRenderingTransaction;
|
|
13856
|
-
},{"
|
|
13977
|
+
},{"124":124,"184":184,"26":26}],98:[function(_dereq_,module,exports){
|
|
13857
13978
|
/**
|
|
13858
13979
|
* Copyright 2013-present, Facebook, Inc.
|
|
13859
13980
|
* All rights reserved.
|
|
@@ -13958,7 +14079,7 @@ ReactStateSetters.Mixin = {
|
|
|
13958
14079
|
};
|
|
13959
14080
|
|
|
13960
14081
|
module.exports = ReactStateSetters;
|
|
13961
|
-
},{}],
|
|
14082
|
+
},{}],99:[function(_dereq_,module,exports){
|
|
13962
14083
|
/**
|
|
13963
14084
|
* Copyright 2013-present, Facebook, Inc.
|
|
13964
14085
|
* All rights reserved.
|
|
@@ -13972,26 +14093,26 @@ module.exports = ReactStateSetters;
|
|
|
13972
14093
|
|
|
13973
14094
|
'use strict';
|
|
13974
14095
|
|
|
13975
|
-
var _assign = _dereq_(
|
|
13976
|
-
|
|
13977
|
-
var EventConstants = _dereq_(
|
|
13978
|
-
var EventPluginHub = _dereq_(
|
|
13979
|
-
var EventPluginRegistry = _dereq_(
|
|
13980
|
-
var EventPropagators = _dereq_(
|
|
13981
|
-
var React = _dereq_(
|
|
13982
|
-
var ReactDefaultInjection = _dereq_(
|
|
13983
|
-
var ReactDOM = _dereq_(
|
|
13984
|
-
var ReactDOMComponentTree = _dereq_(
|
|
13985
|
-
var ReactElement = _dereq_(
|
|
13986
|
-
var ReactBrowserEventEmitter = _dereq_(
|
|
13987
|
-
var ReactCompositeComponent = _dereq_(
|
|
13988
|
-
var ReactInstanceMap = _dereq_(
|
|
13989
|
-
var ReactUpdates = _dereq_(
|
|
13990
|
-
var SyntheticEvent = _dereq_(
|
|
13991
|
-
|
|
13992
|
-
var emptyObject = _dereq_(
|
|
13993
|
-
var findDOMNode = _dereq_(
|
|
13994
|
-
var invariant = _dereq_(
|
|
14096
|
+
var _assign = _dereq_(184);
|
|
14097
|
+
|
|
14098
|
+
var EventConstants = _dereq_(16);
|
|
14099
|
+
var EventPluginHub = _dereq_(17);
|
|
14100
|
+
var EventPluginRegistry = _dereq_(18);
|
|
14101
|
+
var EventPropagators = _dereq_(20);
|
|
14102
|
+
var React = _dereq_(27);
|
|
14103
|
+
var ReactDefaultInjection = _dereq_(63);
|
|
14104
|
+
var ReactDOM = _dereq_(40);
|
|
14105
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
14106
|
+
var ReactElement = _dereq_(66);
|
|
14107
|
+
var ReactBrowserEventEmitter = _dereq_(28);
|
|
14108
|
+
var ReactCompositeComponent = _dereq_(38);
|
|
14109
|
+
var ReactInstanceMap = _dereq_(76);
|
|
14110
|
+
var ReactUpdates = _dereq_(104);
|
|
14111
|
+
var SyntheticEvent = _dereq_(115);
|
|
14112
|
+
|
|
14113
|
+
var emptyObject = _dereq_(166);
|
|
14114
|
+
var findDOMNode = _dereq_(132);
|
|
14115
|
+
var invariant = _dereq_(173);
|
|
13995
14116
|
|
|
13996
14117
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
13997
14118
|
|
|
@@ -14113,9 +14234,6 @@ var ReactTestUtils = {
|
|
|
14113
14234
|
* @return {array} an array of all the matches.
|
|
14114
14235
|
*/
|
|
14115
14236
|
scryRenderedDOMComponentsWithClass: function (root, classNames) {
|
|
14116
|
-
if (!Array.isArray(classNames)) {
|
|
14117
|
-
classNames = classNames.split(/\s+/);
|
|
14118
|
-
}
|
|
14119
14237
|
return ReactTestUtils.findAllInRenderedTree(root, function (inst) {
|
|
14120
14238
|
if (ReactTestUtils.isDOMComponent(inst)) {
|
|
14121
14239
|
var className = inst.className;
|
|
@@ -14124,6 +14242,11 @@ var ReactTestUtils = {
|
|
|
14124
14242
|
className = inst.getAttribute('class') || '';
|
|
14125
14243
|
}
|
|
14126
14244
|
var classList = className.split(/\s+/);
|
|
14245
|
+
|
|
14246
|
+
if (!Array.isArray(classNames)) {
|
|
14247
|
+
!(classNames !== undefined) ? "development" !== 'production' ? invariant(false, 'TestUtils.scryRenderedDOMComponentsWithClass expects a ' + 'className as a second argument.') : invariant(false) : void 0;
|
|
14248
|
+
classNames = classNames.split(/\s+/);
|
|
14249
|
+
}
|
|
14127
14250
|
return classNames.every(function (name) {
|
|
14128
14251
|
return classList.indexOf(name) !== -1;
|
|
14129
14252
|
});
|
|
@@ -14295,6 +14418,7 @@ var ShallowComponentWrapper = function (element) {
|
|
|
14295
14418
|
this.construct(element);
|
|
14296
14419
|
};
|
|
14297
14420
|
_assign(ShallowComponentWrapper.prototype, ReactCompositeComponent.Mixin, {
|
|
14421
|
+
_constructComponent: ReactCompositeComponent.Mixin._constructComponentWithoutOwner,
|
|
14298
14422
|
_instantiateReactComponent: function (element) {
|
|
14299
14423
|
return new NoopInternalComponent(element);
|
|
14300
14424
|
},
|
|
@@ -14455,7 +14579,7 @@ Object.keys(topLevelTypes).forEach(function (eventType) {
|
|
|
14455
14579
|
});
|
|
14456
14580
|
|
|
14457
14581
|
module.exports = ReactTestUtils;
|
|
14458
|
-
},{"
|
|
14582
|
+
},{"104":104,"115":115,"132":132,"16":16,"166":166,"17":17,"173":173,"18":18,"184":184,"20":20,"27":27,"28":28,"38":38,"40":40,"44":44,"63":63,"66":66,"76":76}],100:[function(_dereq_,module,exports){
|
|
14459
14583
|
/**
|
|
14460
14584
|
* Copyright 2013-present, Facebook, Inc.
|
|
14461
14585
|
* All rights reserved.
|
|
@@ -14469,7 +14593,7 @@ module.exports = ReactTestUtils;
|
|
|
14469
14593
|
|
|
14470
14594
|
'use strict';
|
|
14471
14595
|
|
|
14472
|
-
var flattenChildren = _dereq_(
|
|
14596
|
+
var flattenChildren = _dereq_(133);
|
|
14473
14597
|
|
|
14474
14598
|
var ReactTransitionChildMapping = {
|
|
14475
14599
|
/**
|
|
@@ -14553,7 +14677,7 @@ var ReactTransitionChildMapping = {
|
|
|
14553
14677
|
};
|
|
14554
14678
|
|
|
14555
14679
|
module.exports = ReactTransitionChildMapping;
|
|
14556
|
-
},{"
|
|
14680
|
+
},{"133":133}],101:[function(_dereq_,module,exports){
|
|
14557
14681
|
/**
|
|
14558
14682
|
* Copyright 2013-present, Facebook, Inc.
|
|
14559
14683
|
* All rights reserved.
|
|
@@ -14567,9 +14691,9 @@ module.exports = ReactTransitionChildMapping;
|
|
|
14567
14691
|
|
|
14568
14692
|
'use strict';
|
|
14569
14693
|
|
|
14570
|
-
var ExecutionEnvironment = _dereq_(
|
|
14694
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
14571
14695
|
|
|
14572
|
-
var getVendorPrefixedEventName = _dereq_(
|
|
14696
|
+
var getVendorPrefixedEventName = _dereq_(143);
|
|
14573
14697
|
|
|
14574
14698
|
var endEvents = [];
|
|
14575
14699
|
|
|
@@ -14627,7 +14751,7 @@ var ReactTransitionEvents = {
|
|
|
14627
14751
|
};
|
|
14628
14752
|
|
|
14629
14753
|
module.exports = ReactTransitionEvents;
|
|
14630
|
-
},{"
|
|
14754
|
+
},{"143":143,"159":159}],102:[function(_dereq_,module,exports){
|
|
14631
14755
|
/**
|
|
14632
14756
|
* Copyright 2013-present, Facebook, Inc.
|
|
14633
14757
|
* All rights reserved.
|
|
@@ -14641,12 +14765,12 @@ module.exports = ReactTransitionEvents;
|
|
|
14641
14765
|
|
|
14642
14766
|
'use strict';
|
|
14643
14767
|
|
|
14644
|
-
var _assign = _dereq_(
|
|
14768
|
+
var _assign = _dereq_(184);
|
|
14645
14769
|
|
|
14646
|
-
var React = _dereq_(
|
|
14647
|
-
var ReactTransitionChildMapping = _dereq_(
|
|
14770
|
+
var React = _dereq_(27);
|
|
14771
|
+
var ReactTransitionChildMapping = _dereq_(100);
|
|
14648
14772
|
|
|
14649
|
-
var emptyFunction = _dereq_(
|
|
14773
|
+
var emptyFunction = _dereq_(165);
|
|
14650
14774
|
|
|
14651
14775
|
var ReactTransitionGroup = React.createClass({
|
|
14652
14776
|
displayName: 'ReactTransitionGroup',
|
|
@@ -14834,7 +14958,7 @@ var ReactTransitionGroup = React.createClass({
|
|
|
14834
14958
|
});
|
|
14835
14959
|
|
|
14836
14960
|
module.exports = ReactTransitionGroup;
|
|
14837
|
-
},{"
|
|
14961
|
+
},{"100":100,"165":165,"184":184,"27":27}],103:[function(_dereq_,module,exports){
|
|
14838
14962
|
/**
|
|
14839
14963
|
* Copyright 2015-present, Facebook, Inc.
|
|
14840
14964
|
* All rights reserved.
|
|
@@ -14848,12 +14972,12 @@ module.exports = ReactTransitionGroup;
|
|
|
14848
14972
|
|
|
14849
14973
|
'use strict';
|
|
14850
14974
|
|
|
14851
|
-
var ReactCurrentOwner = _dereq_(
|
|
14852
|
-
var ReactInstanceMap = _dereq_(
|
|
14853
|
-
var ReactUpdates = _dereq_(
|
|
14975
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
14976
|
+
var ReactInstanceMap = _dereq_(76);
|
|
14977
|
+
var ReactUpdates = _dereq_(104);
|
|
14854
14978
|
|
|
14855
|
-
var invariant = _dereq_(
|
|
14856
|
-
var warning = _dereq_(
|
|
14979
|
+
var invariant = _dereq_(173);
|
|
14980
|
+
var warning = _dereq_(183);
|
|
14857
14981
|
|
|
14858
14982
|
function enqueueUpdate(internalInstance) {
|
|
14859
14983
|
ReactUpdates.enqueueUpdate(internalInstance);
|
|
@@ -15050,7 +15174,7 @@ var ReactUpdateQueue = {
|
|
|
15050
15174
|
};
|
|
15051
15175
|
|
|
15052
15176
|
module.exports = ReactUpdateQueue;
|
|
15053
|
-
},{"
|
|
15177
|
+
},{"104":104,"173":173,"183":183,"39":39,"76":76}],104:[function(_dereq_,module,exports){
|
|
15054
15178
|
/**
|
|
15055
15179
|
* Copyright 2013-present, Facebook, Inc.
|
|
15056
15180
|
* All rights reserved.
|
|
@@ -15064,16 +15188,16 @@ module.exports = ReactUpdateQueue;
|
|
|
15064
15188
|
|
|
15065
15189
|
'use strict';
|
|
15066
15190
|
|
|
15067
|
-
var _assign = _dereq_(
|
|
15191
|
+
var _assign = _dereq_(184);
|
|
15068
15192
|
|
|
15069
15193
|
var CallbackQueue = _dereq_(5);
|
|
15070
|
-
var PooledClass = _dereq_(
|
|
15071
|
-
var ReactFeatureFlags = _dereq_(
|
|
15072
|
-
var ReactPerf = _dereq_(
|
|
15073
|
-
var ReactReconciler = _dereq_(
|
|
15074
|
-
var Transaction = _dereq_(
|
|
15194
|
+
var PooledClass = _dereq_(26);
|
|
15195
|
+
var ReactFeatureFlags = _dereq_(72);
|
|
15196
|
+
var ReactPerf = _dereq_(88);
|
|
15197
|
+
var ReactReconciler = _dereq_(93);
|
|
15198
|
+
var Transaction = _dereq_(124);
|
|
15075
15199
|
|
|
15076
|
-
var invariant = _dereq_(
|
|
15200
|
+
var invariant = _dereq_(173);
|
|
15077
15201
|
|
|
15078
15202
|
var dirtyComponents = [];
|
|
15079
15203
|
var asapCallbackQueue = CallbackQueue.getPooled();
|
|
@@ -15292,7 +15416,7 @@ var ReactUpdates = {
|
|
|
15292
15416
|
};
|
|
15293
15417
|
|
|
15294
15418
|
module.exports = ReactUpdates;
|
|
15295
|
-
},{"
|
|
15419
|
+
},{"124":124,"173":173,"184":184,"26":26,"5":5,"72":72,"88":88,"93":93}],105:[function(_dereq_,module,exports){
|
|
15296
15420
|
/**
|
|
15297
15421
|
* Copyright 2013-present, Facebook, Inc.
|
|
15298
15422
|
* All rights reserved.
|
|
@@ -15306,8 +15430,8 @@ module.exports = ReactUpdates;
|
|
|
15306
15430
|
|
|
15307
15431
|
'use strict';
|
|
15308
15432
|
|
|
15309
|
-
module.exports = '15.0.
|
|
15310
|
-
},{}],
|
|
15433
|
+
module.exports = '15.0.3-alpha.2';
|
|
15434
|
+
},{}],106:[function(_dereq_,module,exports){
|
|
15311
15435
|
/**
|
|
15312
15436
|
* Copyright 2013-present, Facebook, Inc.
|
|
15313
15437
|
* All rights reserved.
|
|
@@ -15321,15 +15445,15 @@ module.exports = '15.0.2-alpha.3';
|
|
|
15321
15445
|
|
|
15322
15446
|
'use strict';
|
|
15323
15447
|
|
|
15324
|
-
var LinkedStateMixin = _dereq_(
|
|
15325
|
-
var React = _dereq_(
|
|
15326
|
-
var ReactComponentWithPureRenderMixin = _dereq_(
|
|
15327
|
-
var ReactCSSTransitionGroup = _dereq_(
|
|
15328
|
-
var ReactFragment = _dereq_(
|
|
15329
|
-
var ReactTransitionGroup = _dereq_(
|
|
15448
|
+
var LinkedStateMixin = _dereq_(24);
|
|
15449
|
+
var React = _dereq_(27);
|
|
15450
|
+
var ReactComponentWithPureRenderMixin = _dereq_(37);
|
|
15451
|
+
var ReactCSSTransitionGroup = _dereq_(29);
|
|
15452
|
+
var ReactFragment = _dereq_(73);
|
|
15453
|
+
var ReactTransitionGroup = _dereq_(102);
|
|
15330
15454
|
|
|
15331
|
-
var shallowCompare = _dereq_(
|
|
15332
|
-
var update = _dereq_(
|
|
15455
|
+
var shallowCompare = _dereq_(152);
|
|
15456
|
+
var update = _dereq_(155);
|
|
15333
15457
|
|
|
15334
15458
|
React.addons = {
|
|
15335
15459
|
CSSTransitionGroup: ReactCSSTransitionGroup,
|
|
@@ -15343,12 +15467,12 @@ React.addons = {
|
|
|
15343
15467
|
};
|
|
15344
15468
|
|
|
15345
15469
|
if ("development" !== 'production') {
|
|
15346
|
-
React.addons.Perf = _dereq_(
|
|
15347
|
-
React.addons.TestUtils = _dereq_(
|
|
15470
|
+
React.addons.Perf = _dereq_(64);
|
|
15471
|
+
React.addons.TestUtils = _dereq_(99);
|
|
15348
15472
|
}
|
|
15349
15473
|
|
|
15350
15474
|
module.exports = React;
|
|
15351
|
-
},{"
|
|
15475
|
+
},{"102":102,"152":152,"155":155,"24":24,"27":27,"29":29,"37":37,"64":64,"73":73,"99":99}],107:[function(_dereq_,module,exports){
|
|
15352
15476
|
/**
|
|
15353
15477
|
* Copyright 2013-present, Facebook, Inc.
|
|
15354
15478
|
* All rights reserved.
|
|
@@ -15362,11 +15486,11 @@ module.exports = React;
|
|
|
15362
15486
|
|
|
15363
15487
|
'use strict';
|
|
15364
15488
|
|
|
15365
|
-
var _assign = _dereq_(
|
|
15489
|
+
var _assign = _dereq_(184);
|
|
15366
15490
|
|
|
15367
|
-
var ReactDOM = _dereq_(
|
|
15368
|
-
var ReactDOMServer = _dereq_(
|
|
15369
|
-
var ReactWithAddons = _dereq_(
|
|
15491
|
+
var ReactDOM = _dereq_(40);
|
|
15492
|
+
var ReactDOMServer = _dereq_(56);
|
|
15493
|
+
var ReactWithAddons = _dereq_(106);
|
|
15370
15494
|
|
|
15371
15495
|
// `version` will be added here by ReactIsomorphic.
|
|
15372
15496
|
var ReactWithAddonsUMDEntry = _assign({
|
|
@@ -15375,7 +15499,7 @@ var ReactWithAddonsUMDEntry = _assign({
|
|
|
15375
15499
|
}, ReactWithAddons);
|
|
15376
15500
|
|
|
15377
15501
|
module.exports = ReactWithAddonsUMDEntry;
|
|
15378
|
-
},{"
|
|
15502
|
+
},{"106":106,"184":184,"40":40,"56":56}],108:[function(_dereq_,module,exports){
|
|
15379
15503
|
/**
|
|
15380
15504
|
* Copyright 2013-present, Facebook, Inc.
|
|
15381
15505
|
* All rights reserved.
|
|
@@ -15668,7 +15792,7 @@ var SVGDOMPropertyConfig = {
|
|
|
15668
15792
|
DOMAttributeNames: {}
|
|
15669
15793
|
};
|
|
15670
15794
|
|
|
15671
|
-
Object.keys(ATTRS).
|
|
15795
|
+
Object.keys(ATTRS).forEach(function (key) {
|
|
15672
15796
|
SVGDOMPropertyConfig.Properties[key] = 0;
|
|
15673
15797
|
if (ATTRS[key]) {
|
|
15674
15798
|
SVGDOMPropertyConfig.DOMAttributeNames[key] = ATTRS[key];
|
|
@@ -15676,7 +15800,7 @@ Object.keys(ATTRS).map(function (key) {
|
|
|
15676
15800
|
});
|
|
15677
15801
|
|
|
15678
15802
|
module.exports = SVGDOMPropertyConfig;
|
|
15679
|
-
},{}],
|
|
15803
|
+
},{}],109:[function(_dereq_,module,exports){
|
|
15680
15804
|
/**
|
|
15681
15805
|
* Copyright 2013-present, Facebook, Inc.
|
|
15682
15806
|
* All rights reserved.
|
|
@@ -15690,17 +15814,17 @@ module.exports = SVGDOMPropertyConfig;
|
|
|
15690
15814
|
|
|
15691
15815
|
'use strict';
|
|
15692
15816
|
|
|
15693
|
-
var EventConstants = _dereq_(
|
|
15694
|
-
var EventPropagators = _dereq_(
|
|
15695
|
-
var ExecutionEnvironment = _dereq_(
|
|
15696
|
-
var ReactDOMComponentTree = _dereq_(
|
|
15697
|
-
var ReactInputSelection = _dereq_(
|
|
15698
|
-
var SyntheticEvent = _dereq_(
|
|
15817
|
+
var EventConstants = _dereq_(16);
|
|
15818
|
+
var EventPropagators = _dereq_(20);
|
|
15819
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
15820
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
15821
|
+
var ReactInputSelection = _dereq_(75);
|
|
15822
|
+
var SyntheticEvent = _dereq_(115);
|
|
15699
15823
|
|
|
15700
|
-
var getActiveElement = _dereq_(
|
|
15701
|
-
var isTextInputElement = _dereq_(
|
|
15702
|
-
var keyOf = _dereq_(
|
|
15703
|
-
var shallowEqual = _dereq_(
|
|
15824
|
+
var getActiveElement = _dereq_(168);
|
|
15825
|
+
var isTextInputElement = _dereq_(146);
|
|
15826
|
+
var keyOf = _dereq_(177);
|
|
15827
|
+
var shallowEqual = _dereq_(182);
|
|
15704
15828
|
|
|
15705
15829
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
15706
15830
|
|
|
@@ -15873,7 +15997,7 @@ var SelectEventPlugin = {
|
|
|
15873
15997
|
};
|
|
15874
15998
|
|
|
15875
15999
|
module.exports = SelectEventPlugin;
|
|
15876
|
-
},{"
|
|
16000
|
+
},{"115":115,"146":146,"159":159,"16":16,"168":168,"177":177,"182":182,"20":20,"44":44,"75":75}],110:[function(_dereq_,module,exports){
|
|
15877
16001
|
/**
|
|
15878
16002
|
* Copyright 2013-present, Facebook, Inc.
|
|
15879
16003
|
* All rights reserved.
|
|
@@ -15887,26 +16011,26 @@ module.exports = SelectEventPlugin;
|
|
|
15887
16011
|
|
|
15888
16012
|
'use strict';
|
|
15889
16013
|
|
|
15890
|
-
var EventConstants = _dereq_(
|
|
15891
|
-
var EventListener = _dereq_(
|
|
15892
|
-
var EventPropagators = _dereq_(
|
|
15893
|
-
var ReactDOMComponentTree = _dereq_(
|
|
15894
|
-
var SyntheticAnimationEvent = _dereq_(
|
|
15895
|
-
var SyntheticClipboardEvent = _dereq_(
|
|
15896
|
-
var SyntheticEvent = _dereq_(
|
|
15897
|
-
var SyntheticFocusEvent = _dereq_(
|
|
15898
|
-
var SyntheticKeyboardEvent = _dereq_(
|
|
15899
|
-
var SyntheticMouseEvent = _dereq_(
|
|
15900
|
-
var SyntheticDragEvent = _dereq_(
|
|
15901
|
-
var SyntheticTouchEvent = _dereq_(
|
|
15902
|
-
var SyntheticTransitionEvent = _dereq_(
|
|
15903
|
-
var SyntheticUIEvent = _dereq_(
|
|
15904
|
-
var SyntheticWheelEvent = _dereq_(
|
|
15905
|
-
|
|
15906
|
-
var emptyFunction = _dereq_(
|
|
15907
|
-
var getEventCharCode = _dereq_(
|
|
15908
|
-
var invariant = _dereq_(
|
|
15909
|
-
var keyOf = _dereq_(
|
|
16014
|
+
var EventConstants = _dereq_(16);
|
|
16015
|
+
var EventListener = _dereq_(158);
|
|
16016
|
+
var EventPropagators = _dereq_(20);
|
|
16017
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
16018
|
+
var SyntheticAnimationEvent = _dereq_(111);
|
|
16019
|
+
var SyntheticClipboardEvent = _dereq_(112);
|
|
16020
|
+
var SyntheticEvent = _dereq_(115);
|
|
16021
|
+
var SyntheticFocusEvent = _dereq_(116);
|
|
16022
|
+
var SyntheticKeyboardEvent = _dereq_(118);
|
|
16023
|
+
var SyntheticMouseEvent = _dereq_(119);
|
|
16024
|
+
var SyntheticDragEvent = _dereq_(114);
|
|
16025
|
+
var SyntheticTouchEvent = _dereq_(120);
|
|
16026
|
+
var SyntheticTransitionEvent = _dereq_(121);
|
|
16027
|
+
var SyntheticUIEvent = _dereq_(122);
|
|
16028
|
+
var SyntheticWheelEvent = _dereq_(123);
|
|
16029
|
+
|
|
16030
|
+
var emptyFunction = _dereq_(165);
|
|
16031
|
+
var getEventCharCode = _dereq_(135);
|
|
16032
|
+
var invariant = _dereq_(173);
|
|
16033
|
+
var keyOf = _dereq_(177);
|
|
15910
16034
|
|
|
15911
16035
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
15912
16036
|
|
|
@@ -16501,7 +16625,7 @@ var SimpleEventPlugin = {
|
|
|
16501
16625
|
};
|
|
16502
16626
|
|
|
16503
16627
|
module.exports = SimpleEventPlugin;
|
|
16504
|
-
},{"
|
|
16628
|
+
},{"111":111,"112":112,"114":114,"115":115,"116":116,"118":118,"119":119,"120":120,"121":121,"122":122,"123":123,"135":135,"158":158,"16":16,"165":165,"173":173,"177":177,"20":20,"44":44}],111:[function(_dereq_,module,exports){
|
|
16505
16629
|
/**
|
|
16506
16630
|
* Copyright 2013-present, Facebook, Inc.
|
|
16507
16631
|
* All rights reserved.
|
|
@@ -16515,7 +16639,7 @@ module.exports = SimpleEventPlugin;
|
|
|
16515
16639
|
|
|
16516
16640
|
'use strict';
|
|
16517
16641
|
|
|
16518
|
-
var SyntheticEvent = _dereq_(
|
|
16642
|
+
var SyntheticEvent = _dereq_(115);
|
|
16519
16643
|
|
|
16520
16644
|
/**
|
|
16521
16645
|
* @interface Event
|
|
@@ -16541,7 +16665,7 @@ function SyntheticAnimationEvent(dispatchConfig, dispatchMarker, nativeEvent, na
|
|
|
16541
16665
|
SyntheticEvent.augmentClass(SyntheticAnimationEvent, AnimationEventInterface);
|
|
16542
16666
|
|
|
16543
16667
|
module.exports = SyntheticAnimationEvent;
|
|
16544
|
-
},{"
|
|
16668
|
+
},{"115":115}],112:[function(_dereq_,module,exports){
|
|
16545
16669
|
/**
|
|
16546
16670
|
* Copyright 2013-present, Facebook, Inc.
|
|
16547
16671
|
* All rights reserved.
|
|
@@ -16555,7 +16679,7 @@ module.exports = SyntheticAnimationEvent;
|
|
|
16555
16679
|
|
|
16556
16680
|
'use strict';
|
|
16557
16681
|
|
|
16558
|
-
var SyntheticEvent = _dereq_(
|
|
16682
|
+
var SyntheticEvent = _dereq_(115);
|
|
16559
16683
|
|
|
16560
16684
|
/**
|
|
16561
16685
|
* @interface Event
|
|
@@ -16580,7 +16704,7 @@ function SyntheticClipboardEvent(dispatchConfig, dispatchMarker, nativeEvent, na
|
|
|
16580
16704
|
SyntheticEvent.augmentClass(SyntheticClipboardEvent, ClipboardEventInterface);
|
|
16581
16705
|
|
|
16582
16706
|
module.exports = SyntheticClipboardEvent;
|
|
16583
|
-
},{"
|
|
16707
|
+
},{"115":115}],113:[function(_dereq_,module,exports){
|
|
16584
16708
|
/**
|
|
16585
16709
|
* Copyright 2013-present, Facebook, Inc.
|
|
16586
16710
|
* All rights reserved.
|
|
@@ -16594,7 +16718,7 @@ module.exports = SyntheticClipboardEvent;
|
|
|
16594
16718
|
|
|
16595
16719
|
'use strict';
|
|
16596
16720
|
|
|
16597
|
-
var SyntheticEvent = _dereq_(
|
|
16721
|
+
var SyntheticEvent = _dereq_(115);
|
|
16598
16722
|
|
|
16599
16723
|
/**
|
|
16600
16724
|
* @interface Event
|
|
@@ -16617,7 +16741,7 @@ function SyntheticCompositionEvent(dispatchConfig, dispatchMarker, nativeEvent,
|
|
|
16617
16741
|
SyntheticEvent.augmentClass(SyntheticCompositionEvent, CompositionEventInterface);
|
|
16618
16742
|
|
|
16619
16743
|
module.exports = SyntheticCompositionEvent;
|
|
16620
|
-
},{"
|
|
16744
|
+
},{"115":115}],114:[function(_dereq_,module,exports){
|
|
16621
16745
|
/**
|
|
16622
16746
|
* Copyright 2013-present, Facebook, Inc.
|
|
16623
16747
|
* All rights reserved.
|
|
@@ -16631,7 +16755,7 @@ module.exports = SyntheticCompositionEvent;
|
|
|
16631
16755
|
|
|
16632
16756
|
'use strict';
|
|
16633
16757
|
|
|
16634
|
-
var SyntheticMouseEvent = _dereq_(
|
|
16758
|
+
var SyntheticMouseEvent = _dereq_(119);
|
|
16635
16759
|
|
|
16636
16760
|
/**
|
|
16637
16761
|
* @interface DragEvent
|
|
@@ -16654,7 +16778,7 @@ function SyntheticDragEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeE
|
|
|
16654
16778
|
SyntheticMouseEvent.augmentClass(SyntheticDragEvent, DragEventInterface);
|
|
16655
16779
|
|
|
16656
16780
|
module.exports = SyntheticDragEvent;
|
|
16657
|
-
},{"
|
|
16781
|
+
},{"119":119}],115:[function(_dereq_,module,exports){
|
|
16658
16782
|
/**
|
|
16659
16783
|
* Copyright 2013-present, Facebook, Inc.
|
|
16660
16784
|
* All rights reserved.
|
|
@@ -16668,12 +16792,12 @@ module.exports = SyntheticDragEvent;
|
|
|
16668
16792
|
|
|
16669
16793
|
'use strict';
|
|
16670
16794
|
|
|
16671
|
-
var _assign = _dereq_(
|
|
16795
|
+
var _assign = _dereq_(184);
|
|
16672
16796
|
|
|
16673
|
-
var PooledClass = _dereq_(
|
|
16797
|
+
var PooledClass = _dereq_(26);
|
|
16674
16798
|
|
|
16675
|
-
var emptyFunction = _dereq_(
|
|
16676
|
-
var warning = _dereq_(
|
|
16799
|
+
var emptyFunction = _dereq_(165);
|
|
16800
|
+
var warning = _dereq_(183);
|
|
16677
16801
|
|
|
16678
16802
|
var didWarnForAddedNewProperty = false;
|
|
16679
16803
|
var isProxySupported = typeof Proxy === 'function';
|
|
@@ -16822,7 +16946,7 @@ _assign(SyntheticEvent.prototype, {
|
|
|
16822
16946
|
this[shouldBeReleasedProperties[i]] = null;
|
|
16823
16947
|
}
|
|
16824
16948
|
if ("development" !== 'production') {
|
|
16825
|
-
var noop = _dereq_(
|
|
16949
|
+
var noop = _dereq_(165);
|
|
16826
16950
|
Object.defineProperty(this, 'nativeEvent', getPooledWarningPropertyDefinition('nativeEvent', null));
|
|
16827
16951
|
Object.defineProperty(this, 'preventDefault', getPooledWarningPropertyDefinition('preventDefault', noop));
|
|
16828
16952
|
Object.defineProperty(this, 'stopPropagation', getPooledWarningPropertyDefinition('stopPropagation', noop));
|
|
@@ -16916,7 +17040,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
|
|
|
16916
17040
|
"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;
|
|
16917
17041
|
}
|
|
16918
17042
|
}
|
|
16919
|
-
},{"
|
|
17043
|
+
},{"165":165,"183":183,"184":184,"26":26}],116:[function(_dereq_,module,exports){
|
|
16920
17044
|
/**
|
|
16921
17045
|
* Copyright 2013-present, Facebook, Inc.
|
|
16922
17046
|
* All rights reserved.
|
|
@@ -16930,7 +17054,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
|
|
|
16930
17054
|
|
|
16931
17055
|
'use strict';
|
|
16932
17056
|
|
|
16933
|
-
var SyntheticUIEvent = _dereq_(
|
|
17057
|
+
var SyntheticUIEvent = _dereq_(122);
|
|
16934
17058
|
|
|
16935
17059
|
/**
|
|
16936
17060
|
* @interface FocusEvent
|
|
@@ -16953,7 +17077,7 @@ function SyntheticFocusEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
16953
17077
|
SyntheticUIEvent.augmentClass(SyntheticFocusEvent, FocusEventInterface);
|
|
16954
17078
|
|
|
16955
17079
|
module.exports = SyntheticFocusEvent;
|
|
16956
|
-
},{"
|
|
17080
|
+
},{"122":122}],117:[function(_dereq_,module,exports){
|
|
16957
17081
|
/**
|
|
16958
17082
|
* Copyright 2013-present, Facebook, Inc.
|
|
16959
17083
|
* All rights reserved.
|
|
@@ -16967,7 +17091,7 @@ module.exports = SyntheticFocusEvent;
|
|
|
16967
17091
|
|
|
16968
17092
|
'use strict';
|
|
16969
17093
|
|
|
16970
|
-
var SyntheticEvent = _dereq_(
|
|
17094
|
+
var SyntheticEvent = _dereq_(115);
|
|
16971
17095
|
|
|
16972
17096
|
/**
|
|
16973
17097
|
* @interface Event
|
|
@@ -16991,7 +17115,7 @@ function SyntheticInputEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
16991
17115
|
SyntheticEvent.augmentClass(SyntheticInputEvent, InputEventInterface);
|
|
16992
17116
|
|
|
16993
17117
|
module.exports = SyntheticInputEvent;
|
|
16994
|
-
},{"
|
|
17118
|
+
},{"115":115}],118:[function(_dereq_,module,exports){
|
|
16995
17119
|
/**
|
|
16996
17120
|
* Copyright 2013-present, Facebook, Inc.
|
|
16997
17121
|
* All rights reserved.
|
|
@@ -17005,11 +17129,11 @@ module.exports = SyntheticInputEvent;
|
|
|
17005
17129
|
|
|
17006
17130
|
'use strict';
|
|
17007
17131
|
|
|
17008
|
-
var SyntheticUIEvent = _dereq_(
|
|
17132
|
+
var SyntheticUIEvent = _dereq_(122);
|
|
17009
17133
|
|
|
17010
|
-
var getEventCharCode = _dereq_(
|
|
17011
|
-
var getEventKey = _dereq_(
|
|
17012
|
-
var getEventModifierState = _dereq_(
|
|
17134
|
+
var getEventCharCode = _dereq_(135);
|
|
17135
|
+
var getEventKey = _dereq_(136);
|
|
17136
|
+
var getEventModifierState = _dereq_(137);
|
|
17013
17137
|
|
|
17014
17138
|
/**
|
|
17015
17139
|
* @interface KeyboardEvent
|
|
@@ -17076,7 +17200,7 @@ function SyntheticKeyboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nat
|
|
|
17076
17200
|
SyntheticUIEvent.augmentClass(SyntheticKeyboardEvent, KeyboardEventInterface);
|
|
17077
17201
|
|
|
17078
17202
|
module.exports = SyntheticKeyboardEvent;
|
|
17079
|
-
},{"
|
|
17203
|
+
},{"122":122,"135":135,"136":136,"137":137}],119:[function(_dereq_,module,exports){
|
|
17080
17204
|
/**
|
|
17081
17205
|
* Copyright 2013-present, Facebook, Inc.
|
|
17082
17206
|
* All rights reserved.
|
|
@@ -17090,10 +17214,10 @@ module.exports = SyntheticKeyboardEvent;
|
|
|
17090
17214
|
|
|
17091
17215
|
'use strict';
|
|
17092
17216
|
|
|
17093
|
-
var SyntheticUIEvent = _dereq_(
|
|
17094
|
-
var ViewportMetrics = _dereq_(
|
|
17217
|
+
var SyntheticUIEvent = _dereq_(122);
|
|
17218
|
+
var ViewportMetrics = _dereq_(125);
|
|
17095
17219
|
|
|
17096
|
-
var getEventModifierState = _dereq_(
|
|
17220
|
+
var getEventModifierState = _dereq_(137);
|
|
17097
17221
|
|
|
17098
17222
|
/**
|
|
17099
17223
|
* @interface MouseEvent
|
|
@@ -17149,7 +17273,7 @@ function SyntheticMouseEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
17149
17273
|
SyntheticUIEvent.augmentClass(SyntheticMouseEvent, MouseEventInterface);
|
|
17150
17274
|
|
|
17151
17275
|
module.exports = SyntheticMouseEvent;
|
|
17152
|
-
},{"
|
|
17276
|
+
},{"122":122,"125":125,"137":137}],120:[function(_dereq_,module,exports){
|
|
17153
17277
|
/**
|
|
17154
17278
|
* Copyright 2013-present, Facebook, Inc.
|
|
17155
17279
|
* All rights reserved.
|
|
@@ -17163,9 +17287,9 @@ module.exports = SyntheticMouseEvent;
|
|
|
17163
17287
|
|
|
17164
17288
|
'use strict';
|
|
17165
17289
|
|
|
17166
|
-
var SyntheticUIEvent = _dereq_(
|
|
17290
|
+
var SyntheticUIEvent = _dereq_(122);
|
|
17167
17291
|
|
|
17168
|
-
var getEventModifierState = _dereq_(
|
|
17292
|
+
var getEventModifierState = _dereq_(137);
|
|
17169
17293
|
|
|
17170
17294
|
/**
|
|
17171
17295
|
* @interface TouchEvent
|
|
@@ -17195,7 +17319,7 @@ function SyntheticTouchEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
17195
17319
|
SyntheticUIEvent.augmentClass(SyntheticTouchEvent, TouchEventInterface);
|
|
17196
17320
|
|
|
17197
17321
|
module.exports = SyntheticTouchEvent;
|
|
17198
|
-
},{"
|
|
17322
|
+
},{"122":122,"137":137}],121:[function(_dereq_,module,exports){
|
|
17199
17323
|
/**
|
|
17200
17324
|
* Copyright 2013-present, Facebook, Inc.
|
|
17201
17325
|
* All rights reserved.
|
|
@@ -17209,7 +17333,7 @@ module.exports = SyntheticTouchEvent;
|
|
|
17209
17333
|
|
|
17210
17334
|
'use strict';
|
|
17211
17335
|
|
|
17212
|
-
var SyntheticEvent = _dereq_(
|
|
17336
|
+
var SyntheticEvent = _dereq_(115);
|
|
17213
17337
|
|
|
17214
17338
|
/**
|
|
17215
17339
|
* @interface Event
|
|
@@ -17235,7 +17359,7 @@ function SyntheticTransitionEvent(dispatchConfig, dispatchMarker, nativeEvent, n
|
|
|
17235
17359
|
SyntheticEvent.augmentClass(SyntheticTransitionEvent, TransitionEventInterface);
|
|
17236
17360
|
|
|
17237
17361
|
module.exports = SyntheticTransitionEvent;
|
|
17238
|
-
},{"
|
|
17362
|
+
},{"115":115}],122:[function(_dereq_,module,exports){
|
|
17239
17363
|
/**
|
|
17240
17364
|
* Copyright 2013-present, Facebook, Inc.
|
|
17241
17365
|
* All rights reserved.
|
|
@@ -17249,9 +17373,9 @@ module.exports = SyntheticTransitionEvent;
|
|
|
17249
17373
|
|
|
17250
17374
|
'use strict';
|
|
17251
17375
|
|
|
17252
|
-
var SyntheticEvent = _dereq_(
|
|
17376
|
+
var SyntheticEvent = _dereq_(115);
|
|
17253
17377
|
|
|
17254
|
-
var getEventTarget = _dereq_(
|
|
17378
|
+
var getEventTarget = _dereq_(138);
|
|
17255
17379
|
|
|
17256
17380
|
/**
|
|
17257
17381
|
* @interface UIEvent
|
|
@@ -17295,7 +17419,7 @@ function SyntheticUIEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEve
|
|
|
17295
17419
|
SyntheticEvent.augmentClass(SyntheticUIEvent, UIEventInterface);
|
|
17296
17420
|
|
|
17297
17421
|
module.exports = SyntheticUIEvent;
|
|
17298
|
-
},{"
|
|
17422
|
+
},{"115":115,"138":138}],123:[function(_dereq_,module,exports){
|
|
17299
17423
|
/**
|
|
17300
17424
|
* Copyright 2013-present, Facebook, Inc.
|
|
17301
17425
|
* All rights reserved.
|
|
@@ -17309,7 +17433,7 @@ module.exports = SyntheticUIEvent;
|
|
|
17309
17433
|
|
|
17310
17434
|
'use strict';
|
|
17311
17435
|
|
|
17312
|
-
var SyntheticMouseEvent = _dereq_(
|
|
17436
|
+
var SyntheticMouseEvent = _dereq_(119);
|
|
17313
17437
|
|
|
17314
17438
|
/**
|
|
17315
17439
|
* @interface WheelEvent
|
|
@@ -17350,7 +17474,7 @@ function SyntheticWheelEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
17350
17474
|
SyntheticMouseEvent.augmentClass(SyntheticWheelEvent, WheelEventInterface);
|
|
17351
17475
|
|
|
17352
17476
|
module.exports = SyntheticWheelEvent;
|
|
17353
|
-
},{"
|
|
17477
|
+
},{"119":119}],124:[function(_dereq_,module,exports){
|
|
17354
17478
|
/**
|
|
17355
17479
|
* Copyright 2013-present, Facebook, Inc.
|
|
17356
17480
|
* All rights reserved.
|
|
@@ -17364,7 +17488,7 @@ module.exports = SyntheticWheelEvent;
|
|
|
17364
17488
|
|
|
17365
17489
|
'use strict';
|
|
17366
17490
|
|
|
17367
|
-
var invariant = _dereq_(
|
|
17491
|
+
var invariant = _dereq_(173);
|
|
17368
17492
|
|
|
17369
17493
|
/**
|
|
17370
17494
|
* `Transaction` creates a black box that is able to wrap any method such that
|
|
@@ -17582,7 +17706,7 @@ var Transaction = {
|
|
|
17582
17706
|
};
|
|
17583
17707
|
|
|
17584
17708
|
module.exports = Transaction;
|
|
17585
|
-
},{"
|
|
17709
|
+
},{"173":173}],125:[function(_dereq_,module,exports){
|
|
17586
17710
|
/**
|
|
17587
17711
|
* Copyright 2013-present, Facebook, Inc.
|
|
17588
17712
|
* All rights reserved.
|
|
@@ -17610,7 +17734,7 @@ var ViewportMetrics = {
|
|
|
17610
17734
|
};
|
|
17611
17735
|
|
|
17612
17736
|
module.exports = ViewportMetrics;
|
|
17613
|
-
},{}],
|
|
17737
|
+
},{}],126:[function(_dereq_,module,exports){
|
|
17614
17738
|
/**
|
|
17615
17739
|
* Copyright 2014-present, Facebook, Inc.
|
|
17616
17740
|
* All rights reserved.
|
|
@@ -17624,7 +17748,7 @@ module.exports = ViewportMetrics;
|
|
|
17624
17748
|
|
|
17625
17749
|
'use strict';
|
|
17626
17750
|
|
|
17627
|
-
var invariant = _dereq_(
|
|
17751
|
+
var invariant = _dereq_(173);
|
|
17628
17752
|
|
|
17629
17753
|
/**
|
|
17630
17754
|
*
|
|
@@ -17670,7 +17794,7 @@ function accumulateInto(current, next) {
|
|
|
17670
17794
|
}
|
|
17671
17795
|
|
|
17672
17796
|
module.exports = accumulateInto;
|
|
17673
|
-
},{"
|
|
17797
|
+
},{"173":173}],127:[function(_dereq_,module,exports){
|
|
17674
17798
|
/**
|
|
17675
17799
|
* Copyright 2013-present, Facebook, Inc.
|
|
17676
17800
|
* All rights reserved.
|
|
@@ -17714,7 +17838,7 @@ function adler32(data) {
|
|
|
17714
17838
|
}
|
|
17715
17839
|
|
|
17716
17840
|
module.exports = adler32;
|
|
17717
|
-
},{}],
|
|
17841
|
+
},{}],128:[function(_dereq_,module,exports){
|
|
17718
17842
|
/**
|
|
17719
17843
|
* Copyright 2013-present, Facebook, Inc.
|
|
17720
17844
|
* All rights reserved.
|
|
@@ -17739,7 +17863,7 @@ if ("development" !== 'production') {
|
|
|
17739
17863
|
}
|
|
17740
17864
|
|
|
17741
17865
|
module.exports = canDefineProperty;
|
|
17742
|
-
},{}],
|
|
17866
|
+
},{}],129:[function(_dereq_,module,exports){
|
|
17743
17867
|
/**
|
|
17744
17868
|
* Copyright 2013-present, Facebook, Inc.
|
|
17745
17869
|
* All rights reserved.
|
|
@@ -17772,7 +17896,7 @@ var createMicrosoftUnsafeLocalFunction = function (func) {
|
|
|
17772
17896
|
};
|
|
17773
17897
|
|
|
17774
17898
|
module.exports = createMicrosoftUnsafeLocalFunction;
|
|
17775
|
-
},{}],
|
|
17899
|
+
},{}],130:[function(_dereq_,module,exports){
|
|
17776
17900
|
/**
|
|
17777
17901
|
* Copyright 2013-present, Facebook, Inc.
|
|
17778
17902
|
* All rights reserved.
|
|
@@ -17787,7 +17911,7 @@ module.exports = createMicrosoftUnsafeLocalFunction;
|
|
|
17787
17911
|
'use strict';
|
|
17788
17912
|
|
|
17789
17913
|
var CSSProperty = _dereq_(3);
|
|
17790
|
-
var warning = _dereq_(
|
|
17914
|
+
var warning = _dereq_(183);
|
|
17791
17915
|
|
|
17792
17916
|
var isUnitlessNumber = CSSProperty.isUnitlessNumber;
|
|
17793
17917
|
var styleWarnings = {};
|
|
@@ -17850,7 +17974,7 @@ function dangerousStyleValue(name, value, component) {
|
|
|
17850
17974
|
}
|
|
17851
17975
|
|
|
17852
17976
|
module.exports = dangerousStyleValue;
|
|
17853
|
-
},{"
|
|
17977
|
+
},{"183":183,"3":3}],131:[function(_dereq_,module,exports){
|
|
17854
17978
|
/**
|
|
17855
17979
|
* Copyright 2013-present, Facebook, Inc.
|
|
17856
17980
|
* All rights reserved.
|
|
@@ -17889,7 +18013,7 @@ function escapeTextContentForBrowser(text) {
|
|
|
17889
18013
|
}
|
|
17890
18014
|
|
|
17891
18015
|
module.exports = escapeTextContentForBrowser;
|
|
17892
|
-
},{}],
|
|
18016
|
+
},{}],132:[function(_dereq_,module,exports){
|
|
17893
18017
|
/**
|
|
17894
18018
|
* Copyright 2013-present, Facebook, Inc.
|
|
17895
18019
|
* All rights reserved.
|
|
@@ -17903,13 +18027,13 @@ module.exports = escapeTextContentForBrowser;
|
|
|
17903
18027
|
|
|
17904
18028
|
'use strict';
|
|
17905
18029
|
|
|
17906
|
-
var ReactCurrentOwner = _dereq_(
|
|
17907
|
-
var ReactDOMComponentTree = _dereq_(
|
|
17908
|
-
var ReactInstanceMap = _dereq_(
|
|
18030
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
18031
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
18032
|
+
var ReactInstanceMap = _dereq_(76);
|
|
17909
18033
|
|
|
17910
|
-
var getNativeComponentFromComposite = _dereq_(
|
|
17911
|
-
var invariant = _dereq_(
|
|
17912
|
-
var warning = _dereq_(
|
|
18034
|
+
var getNativeComponentFromComposite = _dereq_(140);
|
|
18035
|
+
var invariant = _dereq_(173);
|
|
18036
|
+
var warning = _dereq_(183);
|
|
17913
18037
|
|
|
17914
18038
|
/**
|
|
17915
18039
|
* Returns the DOM node rendered by this element.
|
|
@@ -17946,7 +18070,7 @@ function findDOMNode(componentOrElement) {
|
|
|
17946
18070
|
}
|
|
17947
18071
|
|
|
17948
18072
|
module.exports = findDOMNode;
|
|
17949
|
-
},{"
|
|
18073
|
+
},{"140":140,"173":173,"183":183,"39":39,"44":44,"76":76}],133:[function(_dereq_,module,exports){
|
|
17950
18074
|
/**
|
|
17951
18075
|
* Copyright 2013-present, Facebook, Inc.
|
|
17952
18076
|
* All rights reserved.
|
|
@@ -17960,8 +18084,9 @@ module.exports = findDOMNode;
|
|
|
17960
18084
|
|
|
17961
18085
|
'use strict';
|
|
17962
18086
|
|
|
17963
|
-
var
|
|
17964
|
-
var
|
|
18087
|
+
var KeyEscapeUtils = _dereq_(23);
|
|
18088
|
+
var traverseAllChildren = _dereq_(154);
|
|
18089
|
+
var warning = _dereq_(183);
|
|
17965
18090
|
|
|
17966
18091
|
/**
|
|
17967
18092
|
* @param {function} traverseContext Context passed through traversal.
|
|
@@ -17973,7 +18098,7 @@ function flattenSingleChildIntoContext(traverseContext, child, name) {
|
|
|
17973
18098
|
var result = traverseContext;
|
|
17974
18099
|
var keyUnique = result[name] === undefined;
|
|
17975
18100
|
if ("development" !== 'production') {
|
|
17976
|
-
"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.', name) : void 0;
|
|
18101
|
+
"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.', KeyEscapeUtils.unescape(name)) : void 0;
|
|
17977
18102
|
}
|
|
17978
18103
|
if (keyUnique && child != null) {
|
|
17979
18104
|
result[name] = child;
|
|
@@ -17995,7 +18120,7 @@ function flattenChildren(children) {
|
|
|
17995
18120
|
}
|
|
17996
18121
|
|
|
17997
18122
|
module.exports = flattenChildren;
|
|
17998
|
-
},{"
|
|
18123
|
+
},{"154":154,"183":183,"23":23}],134:[function(_dereq_,module,exports){
|
|
17999
18124
|
/**
|
|
18000
18125
|
* Copyright 2013-present, Facebook, Inc.
|
|
18001
18126
|
* All rights reserved.
|
|
@@ -18026,7 +18151,7 @@ var forEachAccumulated = function (arr, cb, scope) {
|
|
|
18026
18151
|
};
|
|
18027
18152
|
|
|
18028
18153
|
module.exports = forEachAccumulated;
|
|
18029
|
-
},{}],
|
|
18154
|
+
},{}],135:[function(_dereq_,module,exports){
|
|
18030
18155
|
/**
|
|
18031
18156
|
* Copyright 2013-present, Facebook, Inc.
|
|
18032
18157
|
* All rights reserved.
|
|
@@ -18077,7 +18202,7 @@ function getEventCharCode(nativeEvent) {
|
|
|
18077
18202
|
}
|
|
18078
18203
|
|
|
18079
18204
|
module.exports = getEventCharCode;
|
|
18080
|
-
},{}],
|
|
18205
|
+
},{}],136:[function(_dereq_,module,exports){
|
|
18081
18206
|
/**
|
|
18082
18207
|
* Copyright 2013-present, Facebook, Inc.
|
|
18083
18208
|
* All rights reserved.
|
|
@@ -18091,7 +18216,7 @@ module.exports = getEventCharCode;
|
|
|
18091
18216
|
|
|
18092
18217
|
'use strict';
|
|
18093
18218
|
|
|
18094
|
-
var getEventCharCode = _dereq_(
|
|
18219
|
+
var getEventCharCode = _dereq_(135);
|
|
18095
18220
|
|
|
18096
18221
|
/**
|
|
18097
18222
|
* Normalization of deprecated HTML5 `key` values
|
|
@@ -18180,7 +18305,7 @@ function getEventKey(nativeEvent) {
|
|
|
18180
18305
|
}
|
|
18181
18306
|
|
|
18182
18307
|
module.exports = getEventKey;
|
|
18183
|
-
},{"
|
|
18308
|
+
},{"135":135}],137:[function(_dereq_,module,exports){
|
|
18184
18309
|
/**
|
|
18185
18310
|
* Copyright 2013-present, Facebook, Inc.
|
|
18186
18311
|
* All rights reserved.
|
|
@@ -18224,7 +18349,7 @@ function getEventModifierState(nativeEvent) {
|
|
|
18224
18349
|
}
|
|
18225
18350
|
|
|
18226
18351
|
module.exports = getEventModifierState;
|
|
18227
|
-
},{}],
|
|
18352
|
+
},{}],138:[function(_dereq_,module,exports){
|
|
18228
18353
|
/**
|
|
18229
18354
|
* Copyright 2013-present, Facebook, Inc.
|
|
18230
18355
|
* All rights reserved.
|
|
@@ -18260,7 +18385,7 @@ function getEventTarget(nativeEvent) {
|
|
|
18260
18385
|
}
|
|
18261
18386
|
|
|
18262
18387
|
module.exports = getEventTarget;
|
|
18263
|
-
},{}],
|
|
18388
|
+
},{}],139:[function(_dereq_,module,exports){
|
|
18264
18389
|
/**
|
|
18265
18390
|
* Copyright 2013-present, Facebook, Inc.
|
|
18266
18391
|
* All rights reserved.
|
|
@@ -18301,7 +18426,7 @@ function getIteratorFn(maybeIterable) {
|
|
|
18301
18426
|
}
|
|
18302
18427
|
|
|
18303
18428
|
module.exports = getIteratorFn;
|
|
18304
|
-
},{}],
|
|
18429
|
+
},{}],140:[function(_dereq_,module,exports){
|
|
18305
18430
|
/**
|
|
18306
18431
|
* Copyright 2013-present, Facebook, Inc.
|
|
18307
18432
|
* All rights reserved.
|
|
@@ -18315,7 +18440,7 @@ module.exports = getIteratorFn;
|
|
|
18315
18440
|
|
|
18316
18441
|
'use strict';
|
|
18317
18442
|
|
|
18318
|
-
var ReactNodeTypes = _dereq_(
|
|
18443
|
+
var ReactNodeTypes = _dereq_(85);
|
|
18319
18444
|
|
|
18320
18445
|
function getNativeComponentFromComposite(inst) {
|
|
18321
18446
|
var type;
|
|
@@ -18332,7 +18457,7 @@ function getNativeComponentFromComposite(inst) {
|
|
|
18332
18457
|
}
|
|
18333
18458
|
|
|
18334
18459
|
module.exports = getNativeComponentFromComposite;
|
|
18335
|
-
},{"
|
|
18460
|
+
},{"85":85}],141:[function(_dereq_,module,exports){
|
|
18336
18461
|
/**
|
|
18337
18462
|
* Copyright 2013-present, Facebook, Inc.
|
|
18338
18463
|
* All rights reserved.
|
|
@@ -18407,7 +18532,7 @@ function getNodeForCharacterOffset(root, offset) {
|
|
|
18407
18532
|
}
|
|
18408
18533
|
|
|
18409
18534
|
module.exports = getNodeForCharacterOffset;
|
|
18410
|
-
},{}],
|
|
18535
|
+
},{}],142:[function(_dereq_,module,exports){
|
|
18411
18536
|
/**
|
|
18412
18537
|
* Copyright 2013-present, Facebook, Inc.
|
|
18413
18538
|
* All rights reserved.
|
|
@@ -18421,7 +18546,7 @@ module.exports = getNodeForCharacterOffset;
|
|
|
18421
18546
|
|
|
18422
18547
|
'use strict';
|
|
18423
18548
|
|
|
18424
|
-
var ExecutionEnvironment = _dereq_(
|
|
18549
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
18425
18550
|
|
|
18426
18551
|
var contentKey = null;
|
|
18427
18552
|
|
|
@@ -18441,7 +18566,7 @@ function getTextContentAccessor() {
|
|
|
18441
18566
|
}
|
|
18442
18567
|
|
|
18443
18568
|
module.exports = getTextContentAccessor;
|
|
18444
|
-
},{"
|
|
18569
|
+
},{"159":159}],143:[function(_dereq_,module,exports){
|
|
18445
18570
|
/**
|
|
18446
18571
|
* Copyright 2013-present, Facebook, Inc.
|
|
18447
18572
|
* All rights reserved.
|
|
@@ -18455,7 +18580,7 @@ module.exports = getTextContentAccessor;
|
|
|
18455
18580
|
|
|
18456
18581
|
'use strict';
|
|
18457
18582
|
|
|
18458
|
-
var ExecutionEnvironment = _dereq_(
|
|
18583
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
18459
18584
|
|
|
18460
18585
|
/**
|
|
18461
18586
|
* Generate a mapping of standard vendor prefixes using the defined style property and event name.
|
|
@@ -18543,7 +18668,7 @@ function getVendorPrefixedEventName(eventName) {
|
|
|
18543
18668
|
}
|
|
18544
18669
|
|
|
18545
18670
|
module.exports = getVendorPrefixedEventName;
|
|
18546
|
-
},{"
|
|
18671
|
+
},{"159":159}],144:[function(_dereq_,module,exports){
|
|
18547
18672
|
/**
|
|
18548
18673
|
* Copyright 2013-present, Facebook, Inc.
|
|
18549
18674
|
* All rights reserved.
|
|
@@ -18557,14 +18682,14 @@ module.exports = getVendorPrefixedEventName;
|
|
|
18557
18682
|
|
|
18558
18683
|
'use strict';
|
|
18559
18684
|
|
|
18560
|
-
var _assign = _dereq_(
|
|
18685
|
+
var _assign = _dereq_(184);
|
|
18561
18686
|
|
|
18562
|
-
var ReactCompositeComponent = _dereq_(
|
|
18563
|
-
var ReactEmptyComponent = _dereq_(
|
|
18564
|
-
var ReactNativeComponent = _dereq_(
|
|
18687
|
+
var ReactCompositeComponent = _dereq_(38);
|
|
18688
|
+
var ReactEmptyComponent = _dereq_(68);
|
|
18689
|
+
var ReactNativeComponent = _dereq_(84);
|
|
18565
18690
|
|
|
18566
|
-
var invariant = _dereq_(
|
|
18567
|
-
var warning = _dereq_(
|
|
18691
|
+
var invariant = _dereq_(173);
|
|
18692
|
+
var warning = _dereq_(183);
|
|
18568
18693
|
|
|
18569
18694
|
// To avoid a cyclic dependency, we create the final class in this module
|
|
18570
18695
|
var ReactCompositeComponentWrapper = function (element) {
|
|
@@ -18655,7 +18780,7 @@ function instantiateReactComponent(node) {
|
|
|
18655
18780
|
}
|
|
18656
18781
|
|
|
18657
18782
|
module.exports = instantiateReactComponent;
|
|
18658
|
-
},{"
|
|
18783
|
+
},{"173":173,"183":183,"184":184,"38":38,"68":68,"84":84}],145:[function(_dereq_,module,exports){
|
|
18659
18784
|
/**
|
|
18660
18785
|
* Copyright 2013-present, Facebook, Inc.
|
|
18661
18786
|
* All rights reserved.
|
|
@@ -18669,7 +18794,7 @@ module.exports = instantiateReactComponent;
|
|
|
18669
18794
|
|
|
18670
18795
|
'use strict';
|
|
18671
18796
|
|
|
18672
|
-
var ExecutionEnvironment = _dereq_(
|
|
18797
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
18673
18798
|
|
|
18674
18799
|
var useHasFeature;
|
|
18675
18800
|
if (ExecutionEnvironment.canUseDOM) {
|
|
@@ -18716,7 +18841,7 @@ function isEventSupported(eventNameSuffix, capture) {
|
|
|
18716
18841
|
}
|
|
18717
18842
|
|
|
18718
18843
|
module.exports = isEventSupported;
|
|
18719
|
-
},{"
|
|
18844
|
+
},{"159":159}],146:[function(_dereq_,module,exports){
|
|
18720
18845
|
/**
|
|
18721
18846
|
* Copyright 2013-present, Facebook, Inc.
|
|
18722
18847
|
* All rights reserved.
|
|
@@ -18758,7 +18883,7 @@ function isTextInputElement(elem) {
|
|
|
18758
18883
|
}
|
|
18759
18884
|
|
|
18760
18885
|
module.exports = isTextInputElement;
|
|
18761
|
-
},{}],
|
|
18886
|
+
},{}],147:[function(_dereq_,module,exports){
|
|
18762
18887
|
/**
|
|
18763
18888
|
* Copyright 2013-present, Facebook, Inc.
|
|
18764
18889
|
* All rights reserved.
|
|
@@ -18771,9 +18896,9 @@ module.exports = isTextInputElement;
|
|
|
18771
18896
|
*/
|
|
18772
18897
|
'use strict';
|
|
18773
18898
|
|
|
18774
|
-
var ReactElement = _dereq_(
|
|
18899
|
+
var ReactElement = _dereq_(66);
|
|
18775
18900
|
|
|
18776
|
-
var invariant = _dereq_(
|
|
18901
|
+
var invariant = _dereq_(173);
|
|
18777
18902
|
|
|
18778
18903
|
/**
|
|
18779
18904
|
* Returns the first child in a collection of children and verifies that there
|
|
@@ -18783,7 +18908,7 @@ var invariant = _dereq_(171);
|
|
|
18783
18908
|
* of children.
|
|
18784
18909
|
*
|
|
18785
18910
|
* @param {?object} children Child collection structure.
|
|
18786
|
-
* @return {
|
|
18911
|
+
* @return {ReactElement} The first and only `ReactElement` contained in the
|
|
18787
18912
|
* structure.
|
|
18788
18913
|
*/
|
|
18789
18914
|
function onlyChild(children) {
|
|
@@ -18792,7 +18917,7 @@ function onlyChild(children) {
|
|
|
18792
18917
|
}
|
|
18793
18918
|
|
|
18794
18919
|
module.exports = onlyChild;
|
|
18795
|
-
},{"
|
|
18920
|
+
},{"173":173,"66":66}],148:[function(_dereq_,module,exports){
|
|
18796
18921
|
/**
|
|
18797
18922
|
* Copyright 2013-present, Facebook, Inc.
|
|
18798
18923
|
* All rights reserved.
|
|
@@ -18806,7 +18931,7 @@ module.exports = onlyChild;
|
|
|
18806
18931
|
|
|
18807
18932
|
'use strict';
|
|
18808
18933
|
|
|
18809
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
18934
|
+
var escapeTextContentForBrowser = _dereq_(131);
|
|
18810
18935
|
|
|
18811
18936
|
/**
|
|
18812
18937
|
* Escapes attribute value to prevent scripting attacks.
|
|
@@ -18819,7 +18944,7 @@ function quoteAttributeValueForBrowser(value) {
|
|
|
18819
18944
|
}
|
|
18820
18945
|
|
|
18821
18946
|
module.exports = quoteAttributeValueForBrowser;
|
|
18822
|
-
},{"
|
|
18947
|
+
},{"131":131}],149:[function(_dereq_,module,exports){
|
|
18823
18948
|
/**
|
|
18824
18949
|
* Copyright 2013-present, Facebook, Inc.
|
|
18825
18950
|
* All rights reserved.
|
|
@@ -18833,10 +18958,10 @@ module.exports = quoteAttributeValueForBrowser;
|
|
|
18833
18958
|
|
|
18834
18959
|
'use strict';
|
|
18835
18960
|
|
|
18836
|
-
var ReactMount = _dereq_(
|
|
18961
|
+
var ReactMount = _dereq_(81);
|
|
18837
18962
|
|
|
18838
18963
|
module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
18839
|
-
},{"
|
|
18964
|
+
},{"81":81}],150:[function(_dereq_,module,exports){
|
|
18840
18965
|
/**
|
|
18841
18966
|
* Copyright 2013-present, Facebook, Inc.
|
|
18842
18967
|
* All rights reserved.
|
|
@@ -18850,12 +18975,12 @@ module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
|
18850
18975
|
|
|
18851
18976
|
'use strict';
|
|
18852
18977
|
|
|
18853
|
-
var ExecutionEnvironment = _dereq_(
|
|
18978
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
18854
18979
|
|
|
18855
18980
|
var WHITESPACE_TEST = /^[ \r\n\t\f]/;
|
|
18856
18981
|
var NONVISIBLE_TEST = /<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/;
|
|
18857
18982
|
|
|
18858
|
-
var createMicrosoftUnsafeLocalFunction = _dereq_(
|
|
18983
|
+
var createMicrosoftUnsafeLocalFunction = _dereq_(129);
|
|
18859
18984
|
|
|
18860
18985
|
/**
|
|
18861
18986
|
* Set the innerHTML property of a node, ensuring that whitespace is preserved
|
|
@@ -18919,7 +19044,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
18919
19044
|
}
|
|
18920
19045
|
|
|
18921
19046
|
module.exports = setInnerHTML;
|
|
18922
|
-
},{"
|
|
19047
|
+
},{"129":129,"159":159}],151:[function(_dereq_,module,exports){
|
|
18923
19048
|
/**
|
|
18924
19049
|
* Copyright 2013-present, Facebook, Inc.
|
|
18925
19050
|
* All rights reserved.
|
|
@@ -18933,9 +19058,9 @@ module.exports = setInnerHTML;
|
|
|
18933
19058
|
|
|
18934
19059
|
'use strict';
|
|
18935
19060
|
|
|
18936
|
-
var ExecutionEnvironment = _dereq_(
|
|
18937
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
18938
|
-
var setInnerHTML = _dereq_(
|
|
19061
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
19062
|
+
var escapeTextContentForBrowser = _dereq_(131);
|
|
19063
|
+
var setInnerHTML = _dereq_(150);
|
|
18939
19064
|
|
|
18940
19065
|
/**
|
|
18941
19066
|
* Set the textContent property of a node, ensuring that whitespace is preserved
|
|
@@ -18960,7 +19085,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
18960
19085
|
}
|
|
18961
19086
|
|
|
18962
19087
|
module.exports = setTextContent;
|
|
18963
|
-
},{"
|
|
19088
|
+
},{"131":131,"150":150,"159":159}],152:[function(_dereq_,module,exports){
|
|
18964
19089
|
/**
|
|
18965
19090
|
* Copyright 2013-present, Facebook, Inc.
|
|
18966
19091
|
* All rights reserved.
|
|
@@ -18974,7 +19099,7 @@ module.exports = setTextContent;
|
|
|
18974
19099
|
|
|
18975
19100
|
'use strict';
|
|
18976
19101
|
|
|
18977
|
-
var shallowEqual = _dereq_(
|
|
19102
|
+
var shallowEqual = _dereq_(182);
|
|
18978
19103
|
|
|
18979
19104
|
/**
|
|
18980
19105
|
* Does a shallow comparison for props and state.
|
|
@@ -18985,7 +19110,7 @@ function shallowCompare(instance, nextProps, nextState) {
|
|
|
18985
19110
|
}
|
|
18986
19111
|
|
|
18987
19112
|
module.exports = shallowCompare;
|
|
18988
|
-
},{"
|
|
19113
|
+
},{"182":182}],153:[function(_dereq_,module,exports){
|
|
18989
19114
|
/**
|
|
18990
19115
|
* Copyright 2013-present, Facebook, Inc.
|
|
18991
19116
|
* All rights reserved.
|
|
@@ -19028,7 +19153,7 @@ function shouldUpdateReactComponent(prevElement, nextElement) {
|
|
|
19028
19153
|
}
|
|
19029
19154
|
|
|
19030
19155
|
module.exports = shouldUpdateReactComponent;
|
|
19031
|
-
},{}],
|
|
19156
|
+
},{}],154:[function(_dereq_,module,exports){
|
|
19032
19157
|
/**
|
|
19033
19158
|
* Copyright 2013-present, Facebook, Inc.
|
|
19034
19159
|
* All rights reserved.
|
|
@@ -19042,12 +19167,13 @@ module.exports = shouldUpdateReactComponent;
|
|
|
19042
19167
|
|
|
19043
19168
|
'use strict';
|
|
19044
19169
|
|
|
19045
|
-
var ReactCurrentOwner = _dereq_(
|
|
19046
|
-
var ReactElement = _dereq_(
|
|
19170
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
19171
|
+
var ReactElement = _dereq_(66);
|
|
19047
19172
|
|
|
19048
|
-
var getIteratorFn = _dereq_(
|
|
19049
|
-
var invariant = _dereq_(
|
|
19050
|
-
var
|
|
19173
|
+
var getIteratorFn = _dereq_(139);
|
|
19174
|
+
var invariant = _dereq_(173);
|
|
19175
|
+
var KeyEscapeUtils = _dereq_(23);
|
|
19176
|
+
var warning = _dereq_(183);
|
|
19051
19177
|
|
|
19052
19178
|
var SEPARATOR = '.';
|
|
19053
19179
|
var SUBSEPARATOR = ':';
|
|
@@ -19057,19 +19183,8 @@ var SUBSEPARATOR = ':';
|
|
|
19057
19183
|
* pattern.
|
|
19058
19184
|
*/
|
|
19059
19185
|
|
|
19060
|
-
var userProvidedKeyEscaperLookup = {
|
|
19061
|
-
'=': '=0',
|
|
19062
|
-
':': '=2'
|
|
19063
|
-
};
|
|
19064
|
-
|
|
19065
|
-
var userProvidedKeyEscapeRegex = /[=:]/g;
|
|
19066
|
-
|
|
19067
19186
|
var didWarnAboutMaps = false;
|
|
19068
19187
|
|
|
19069
|
-
function userProvidedKeyEscaper(match) {
|
|
19070
|
-
return userProvidedKeyEscaperLookup[match];
|
|
19071
|
-
}
|
|
19072
|
-
|
|
19073
19188
|
/**
|
|
19074
19189
|
* Generate a key string that identifies a component within a set.
|
|
19075
19190
|
*
|
|
@@ -19082,33 +19197,12 @@ function getComponentKey(component, index) {
|
|
|
19082
19197
|
// that we don't block potential future ES APIs.
|
|
19083
19198
|
if (component && typeof component === 'object' && component.key != null) {
|
|
19084
19199
|
// Explicit key
|
|
19085
|
-
return
|
|
19200
|
+
return KeyEscapeUtils.escape(component.key);
|
|
19086
19201
|
}
|
|
19087
19202
|
// Implicit key determined by the index in the set
|
|
19088
19203
|
return index.toString(36);
|
|
19089
19204
|
}
|
|
19090
19205
|
|
|
19091
|
-
/**
|
|
19092
|
-
* Escape a component key so that it is safe to use in a reactid.
|
|
19093
|
-
*
|
|
19094
|
-
* @param {*} text Component key to be escaped.
|
|
19095
|
-
* @return {string} An escaped string.
|
|
19096
|
-
*/
|
|
19097
|
-
function escapeUserProvidedKey(text) {
|
|
19098
|
-
return ('' + text).replace(userProvidedKeyEscapeRegex, userProvidedKeyEscaper);
|
|
19099
|
-
}
|
|
19100
|
-
|
|
19101
|
-
/**
|
|
19102
|
-
* Wrap a `key` value explicitly provided by the user to distinguish it from
|
|
19103
|
-
* implicitly-generated keys generated by a component's index in its parent.
|
|
19104
|
-
*
|
|
19105
|
-
* @param {string} key Value of a user-provided `key` attribute
|
|
19106
|
-
* @return {string}
|
|
19107
|
-
*/
|
|
19108
|
-
function wrapUserProvidedKey(key) {
|
|
19109
|
-
return '$' + escapeUserProvidedKey(key);
|
|
19110
|
-
}
|
|
19111
|
-
|
|
19112
19206
|
/**
|
|
19113
19207
|
* @param {?*} children Children tree container.
|
|
19114
19208
|
* @param {!string} nameSoFar Name of the key path so far.
|
|
@@ -19166,7 +19260,7 @@ function traverseAllChildrenImpl(children, nameSoFar, callback, traverseContext)
|
|
|
19166
19260
|
var entry = step.value;
|
|
19167
19261
|
if (entry) {
|
|
19168
19262
|
child = entry[1];
|
|
19169
|
-
nextName = nextNamePrefix +
|
|
19263
|
+
nextName = nextNamePrefix + KeyEscapeUtils.escape(entry[0]) + SUBSEPARATOR + getComponentKey(child, 0);
|
|
19170
19264
|
subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);
|
|
19171
19265
|
}
|
|
19172
19266
|
}
|
|
@@ -19218,7 +19312,7 @@ function traverseAllChildren(children, callback, traverseContext) {
|
|
|
19218
19312
|
}
|
|
19219
19313
|
|
|
19220
19314
|
module.exports = traverseAllChildren;
|
|
19221
|
-
},{"
|
|
19315
|
+
},{"139":139,"173":173,"183":183,"23":23,"39":39,"66":66}],155:[function(_dereq_,module,exports){
|
|
19222
19316
|
/**
|
|
19223
19317
|
* Copyright 2013-present, Facebook, Inc.
|
|
19224
19318
|
* All rights reserved.
|
|
@@ -19234,10 +19328,10 @@ module.exports = traverseAllChildren;
|
|
|
19234
19328
|
|
|
19235
19329
|
'use strict';
|
|
19236
19330
|
|
|
19237
|
-
var _assign = _dereq_(
|
|
19331
|
+
var _assign = _dereq_(184);
|
|
19238
19332
|
|
|
19239
|
-
var keyOf = _dereq_(
|
|
19240
|
-
var invariant = _dereq_(
|
|
19333
|
+
var keyOf = _dereq_(177);
|
|
19334
|
+
var invariant = _dereq_(173);
|
|
19241
19335
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
19242
19336
|
|
|
19243
19337
|
function shallowCopy(x) {
|
|
@@ -19327,7 +19421,7 @@ function update(value, spec) {
|
|
|
19327
19421
|
}
|
|
19328
19422
|
|
|
19329
19423
|
module.exports = update;
|
|
19330
|
-
},{"
|
|
19424
|
+
},{"173":173,"177":177,"184":184}],156:[function(_dereq_,module,exports){
|
|
19331
19425
|
/**
|
|
19332
19426
|
* Copyright 2015-present, Facebook, Inc.
|
|
19333
19427
|
* All rights reserved.
|
|
@@ -19341,10 +19435,10 @@ module.exports = update;
|
|
|
19341
19435
|
|
|
19342
19436
|
'use strict';
|
|
19343
19437
|
|
|
19344
|
-
var _assign = _dereq_(
|
|
19438
|
+
var _assign = _dereq_(184);
|
|
19345
19439
|
|
|
19346
|
-
var emptyFunction = _dereq_(
|
|
19347
|
-
var warning = _dereq_(
|
|
19440
|
+
var emptyFunction = _dereq_(165);
|
|
19441
|
+
var warning = _dereq_(183);
|
|
19348
19442
|
|
|
19349
19443
|
var validateDOMNesting = emptyFunction;
|
|
19350
19444
|
|
|
@@ -19503,6 +19597,7 @@ if ("development" !== 'production') {
|
|
|
19503
19597
|
case 'rt':
|
|
19504
19598
|
return impliedEndTags.indexOf(parentTag) === -1;
|
|
19505
19599
|
|
|
19600
|
+
case 'body':
|
|
19506
19601
|
case 'caption':
|
|
19507
19602
|
case 'col':
|
|
19508
19603
|
case 'colgroup':
|
|
@@ -19696,7 +19791,7 @@ if ("development" !== 'production') {
|
|
|
19696
19791
|
}
|
|
19697
19792
|
|
|
19698
19793
|
module.exports = validateDOMNesting;
|
|
19699
|
-
},{"
|
|
19794
|
+
},{"165":165,"183":183,"184":184}],157:[function(_dereq_,module,exports){
|
|
19700
19795
|
'use strict';
|
|
19701
19796
|
|
|
19702
19797
|
/**
|
|
@@ -19710,7 +19805,7 @@ module.exports = validateDOMNesting;
|
|
|
19710
19805
|
* @typechecks
|
|
19711
19806
|
*/
|
|
19712
19807
|
|
|
19713
|
-
var invariant = _dereq_(
|
|
19808
|
+
var invariant = _dereq_(173);
|
|
19714
19809
|
|
|
19715
19810
|
/**
|
|
19716
19811
|
* The CSSCore module specifies the API (and implements most of the methods)
|
|
@@ -19818,7 +19913,7 @@ var CSSCore = {
|
|
|
19818
19913
|
};
|
|
19819
19914
|
|
|
19820
19915
|
module.exports = CSSCore;
|
|
19821
|
-
},{"
|
|
19916
|
+
},{"173":173}],158:[function(_dereq_,module,exports){
|
|
19822
19917
|
'use strict';
|
|
19823
19918
|
|
|
19824
19919
|
/**
|
|
@@ -19839,7 +19934,7 @@ module.exports = CSSCore;
|
|
|
19839
19934
|
* @typechecks
|
|
19840
19935
|
*/
|
|
19841
19936
|
|
|
19842
|
-
var emptyFunction = _dereq_(
|
|
19937
|
+
var emptyFunction = _dereq_(165);
|
|
19843
19938
|
|
|
19844
19939
|
/**
|
|
19845
19940
|
* Upstream version of event listener. Does not take into account specific
|
|
@@ -19902,7 +19997,7 @@ var EventListener = {
|
|
|
19902
19997
|
};
|
|
19903
19998
|
|
|
19904
19999
|
module.exports = EventListener;
|
|
19905
|
-
},{"
|
|
20000
|
+
},{"165":165}],159:[function(_dereq_,module,exports){
|
|
19906
20001
|
/**
|
|
19907
20002
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
19908
20003
|
* All rights reserved.
|
|
@@ -19938,7 +20033,7 @@ var ExecutionEnvironment = {
|
|
|
19938
20033
|
};
|
|
19939
20034
|
|
|
19940
20035
|
module.exports = ExecutionEnvironment;
|
|
19941
|
-
},{}],
|
|
20036
|
+
},{}],160:[function(_dereq_,module,exports){
|
|
19942
20037
|
"use strict";
|
|
19943
20038
|
|
|
19944
20039
|
/**
|
|
@@ -19970,7 +20065,7 @@ function camelize(string) {
|
|
|
19970
20065
|
}
|
|
19971
20066
|
|
|
19972
20067
|
module.exports = camelize;
|
|
19973
|
-
},{}],
|
|
20068
|
+
},{}],161:[function(_dereq_,module,exports){
|
|
19974
20069
|
/**
|
|
19975
20070
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
19976
20071
|
* All rights reserved.
|
|
@@ -19984,7 +20079,7 @@ module.exports = camelize;
|
|
|
19984
20079
|
|
|
19985
20080
|
'use strict';
|
|
19986
20081
|
|
|
19987
|
-
var camelize = _dereq_(
|
|
20082
|
+
var camelize = _dereq_(160);
|
|
19988
20083
|
|
|
19989
20084
|
var msPattern = /^-ms-/;
|
|
19990
20085
|
|
|
@@ -20010,7 +20105,7 @@ function camelizeStyleName(string) {
|
|
|
20010
20105
|
}
|
|
20011
20106
|
|
|
20012
20107
|
module.exports = camelizeStyleName;
|
|
20013
|
-
},{"
|
|
20108
|
+
},{"160":160}],162:[function(_dereq_,module,exports){
|
|
20014
20109
|
'use strict';
|
|
20015
20110
|
|
|
20016
20111
|
/**
|
|
@@ -20024,7 +20119,7 @@ module.exports = camelizeStyleName;
|
|
|
20024
20119
|
* @typechecks
|
|
20025
20120
|
*/
|
|
20026
20121
|
|
|
20027
|
-
var isTextNode = _dereq_(
|
|
20122
|
+
var isTextNode = _dereq_(175);
|
|
20028
20123
|
|
|
20029
20124
|
/*eslint-disable no-bitwise */
|
|
20030
20125
|
|
|
@@ -20054,7 +20149,7 @@ function containsNode(outerNode, innerNode) {
|
|
|
20054
20149
|
}
|
|
20055
20150
|
|
|
20056
20151
|
module.exports = containsNode;
|
|
20057
|
-
},{"
|
|
20152
|
+
},{"175":175}],163:[function(_dereq_,module,exports){
|
|
20058
20153
|
'use strict';
|
|
20059
20154
|
|
|
20060
20155
|
/**
|
|
@@ -20068,7 +20163,7 @@ module.exports = containsNode;
|
|
|
20068
20163
|
* @typechecks
|
|
20069
20164
|
*/
|
|
20070
20165
|
|
|
20071
|
-
var invariant = _dereq_(
|
|
20166
|
+
var invariant = _dereq_(173);
|
|
20072
20167
|
|
|
20073
20168
|
/**
|
|
20074
20169
|
* Convert array-like objects to arrays.
|
|
@@ -20181,7 +20276,7 @@ function createArrayFromMixed(obj) {
|
|
|
20181
20276
|
}
|
|
20182
20277
|
|
|
20183
20278
|
module.exports = createArrayFromMixed;
|
|
20184
|
-
},{"
|
|
20279
|
+
},{"173":173}],164:[function(_dereq_,module,exports){
|
|
20185
20280
|
'use strict';
|
|
20186
20281
|
|
|
20187
20282
|
/**
|
|
@@ -20197,11 +20292,11 @@ module.exports = createArrayFromMixed;
|
|
|
20197
20292
|
|
|
20198
20293
|
/*eslint-disable fb-www/unsafe-html*/
|
|
20199
20294
|
|
|
20200
|
-
var ExecutionEnvironment = _dereq_(
|
|
20295
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
20201
20296
|
|
|
20202
|
-
var createArrayFromMixed = _dereq_(
|
|
20203
|
-
var getMarkupWrap = _dereq_(
|
|
20204
|
-
var invariant = _dereq_(
|
|
20297
|
+
var createArrayFromMixed = _dereq_(163);
|
|
20298
|
+
var getMarkupWrap = _dereq_(169);
|
|
20299
|
+
var invariant = _dereq_(173);
|
|
20205
20300
|
|
|
20206
20301
|
/**
|
|
20207
20302
|
* Dummy container used to render all markup.
|
|
@@ -20265,7 +20360,7 @@ function createNodesFromMarkup(markup, handleScript) {
|
|
|
20265
20360
|
}
|
|
20266
20361
|
|
|
20267
20362
|
module.exports = createNodesFromMarkup;
|
|
20268
|
-
},{"
|
|
20363
|
+
},{"159":159,"163":163,"169":169,"173":173}],165:[function(_dereq_,module,exports){
|
|
20269
20364
|
"use strict";
|
|
20270
20365
|
|
|
20271
20366
|
/**
|
|
@@ -20303,7 +20398,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
|
|
|
20303
20398
|
};
|
|
20304
20399
|
|
|
20305
20400
|
module.exports = emptyFunction;
|
|
20306
|
-
},{}],
|
|
20401
|
+
},{}],166:[function(_dereq_,module,exports){
|
|
20307
20402
|
/**
|
|
20308
20403
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20309
20404
|
* All rights reserved.
|
|
@@ -20323,7 +20418,7 @@ if ("development" !== 'production') {
|
|
|
20323
20418
|
}
|
|
20324
20419
|
|
|
20325
20420
|
module.exports = emptyObject;
|
|
20326
|
-
},{}],
|
|
20421
|
+
},{}],167:[function(_dereq_,module,exports){
|
|
20327
20422
|
/**
|
|
20328
20423
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20329
20424
|
* All rights reserved.
|
|
@@ -20350,7 +20445,7 @@ function focusNode(node) {
|
|
|
20350
20445
|
}
|
|
20351
20446
|
|
|
20352
20447
|
module.exports = focusNode;
|
|
20353
|
-
},{}],
|
|
20448
|
+
},{}],168:[function(_dereq_,module,exports){
|
|
20354
20449
|
'use strict';
|
|
20355
20450
|
|
|
20356
20451
|
/**
|
|
@@ -20385,7 +20480,7 @@ function getActiveElement() /*?DOMElement*/{
|
|
|
20385
20480
|
}
|
|
20386
20481
|
|
|
20387
20482
|
module.exports = getActiveElement;
|
|
20388
|
-
},{}],
|
|
20483
|
+
},{}],169:[function(_dereq_,module,exports){
|
|
20389
20484
|
'use strict';
|
|
20390
20485
|
|
|
20391
20486
|
/**
|
|
@@ -20400,9 +20495,9 @@ module.exports = getActiveElement;
|
|
|
20400
20495
|
|
|
20401
20496
|
/*eslint-disable fb-www/unsafe-html */
|
|
20402
20497
|
|
|
20403
|
-
var ExecutionEnvironment = _dereq_(
|
|
20498
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
20404
20499
|
|
|
20405
|
-
var invariant = _dereq_(
|
|
20500
|
+
var invariant = _dereq_(173);
|
|
20406
20501
|
|
|
20407
20502
|
/**
|
|
20408
20503
|
* Dummy container used to detect which wraps are necessary.
|
|
@@ -20480,7 +20575,7 @@ function getMarkupWrap(nodeName) {
|
|
|
20480
20575
|
}
|
|
20481
20576
|
|
|
20482
20577
|
module.exports = getMarkupWrap;
|
|
20483
|
-
},{"
|
|
20578
|
+
},{"159":159,"173":173}],170:[function(_dereq_,module,exports){
|
|
20484
20579
|
/**
|
|
20485
20580
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20486
20581
|
* All rights reserved.
|
|
@@ -20519,7 +20614,7 @@ function getUnboundedScrollPosition(scrollable) {
|
|
|
20519
20614
|
}
|
|
20520
20615
|
|
|
20521
20616
|
module.exports = getUnboundedScrollPosition;
|
|
20522
|
-
},{}],
|
|
20617
|
+
},{}],171:[function(_dereq_,module,exports){
|
|
20523
20618
|
'use strict';
|
|
20524
20619
|
|
|
20525
20620
|
/**
|
|
@@ -20552,7 +20647,7 @@ function hyphenate(string) {
|
|
|
20552
20647
|
}
|
|
20553
20648
|
|
|
20554
20649
|
module.exports = hyphenate;
|
|
20555
|
-
},{}],
|
|
20650
|
+
},{}],172:[function(_dereq_,module,exports){
|
|
20556
20651
|
/**
|
|
20557
20652
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20558
20653
|
* All rights reserved.
|
|
@@ -20566,7 +20661,7 @@ module.exports = hyphenate;
|
|
|
20566
20661
|
|
|
20567
20662
|
'use strict';
|
|
20568
20663
|
|
|
20569
|
-
var hyphenate = _dereq_(
|
|
20664
|
+
var hyphenate = _dereq_(171);
|
|
20570
20665
|
|
|
20571
20666
|
var msPattern = /^ms-/;
|
|
20572
20667
|
|
|
@@ -20591,7 +20686,7 @@ function hyphenateStyleName(string) {
|
|
|
20591
20686
|
}
|
|
20592
20687
|
|
|
20593
20688
|
module.exports = hyphenateStyleName;
|
|
20594
|
-
},{"
|
|
20689
|
+
},{"171":171}],173:[function(_dereq_,module,exports){
|
|
20595
20690
|
/**
|
|
20596
20691
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20597
20692
|
* All rights reserved.
|
|
@@ -20641,7 +20736,7 @@ function invariant(condition, format, a, b, c, d, e, f) {
|
|
|
20641
20736
|
}
|
|
20642
20737
|
|
|
20643
20738
|
module.exports = invariant;
|
|
20644
|
-
},{}],
|
|
20739
|
+
},{}],174:[function(_dereq_,module,exports){
|
|
20645
20740
|
'use strict';
|
|
20646
20741
|
|
|
20647
20742
|
/**
|
|
@@ -20664,7 +20759,7 @@ function isNode(object) {
|
|
|
20664
20759
|
}
|
|
20665
20760
|
|
|
20666
20761
|
module.exports = isNode;
|
|
20667
|
-
},{}],
|
|
20762
|
+
},{}],175:[function(_dereq_,module,exports){
|
|
20668
20763
|
'use strict';
|
|
20669
20764
|
|
|
20670
20765
|
/**
|
|
@@ -20678,7 +20773,7 @@ module.exports = isNode;
|
|
|
20678
20773
|
* @typechecks
|
|
20679
20774
|
*/
|
|
20680
20775
|
|
|
20681
|
-
var isNode = _dereq_(
|
|
20776
|
+
var isNode = _dereq_(174);
|
|
20682
20777
|
|
|
20683
20778
|
/**
|
|
20684
20779
|
* @param {*} object The object to check.
|
|
@@ -20689,7 +20784,7 @@ function isTextNode(object) {
|
|
|
20689
20784
|
}
|
|
20690
20785
|
|
|
20691
20786
|
module.exports = isTextNode;
|
|
20692
|
-
},{"
|
|
20787
|
+
},{"174":174}],176:[function(_dereq_,module,exports){
|
|
20693
20788
|
/**
|
|
20694
20789
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20695
20790
|
* All rights reserved.
|
|
@@ -20703,7 +20798,7 @@ module.exports = isTextNode;
|
|
|
20703
20798
|
|
|
20704
20799
|
'use strict';
|
|
20705
20800
|
|
|
20706
|
-
var invariant = _dereq_(
|
|
20801
|
+
var invariant = _dereq_(173);
|
|
20707
20802
|
|
|
20708
20803
|
/**
|
|
20709
20804
|
* Constructs an enumeration with keys equal to their value.
|
|
@@ -20737,7 +20832,7 @@ var keyMirror = function (obj) {
|
|
|
20737
20832
|
};
|
|
20738
20833
|
|
|
20739
20834
|
module.exports = keyMirror;
|
|
20740
|
-
},{"
|
|
20835
|
+
},{"173":173}],177:[function(_dereq_,module,exports){
|
|
20741
20836
|
"use strict";
|
|
20742
20837
|
|
|
20743
20838
|
/**
|
|
@@ -20772,7 +20867,7 @@ var keyOf = function (oneKeyObj) {
|
|
|
20772
20867
|
};
|
|
20773
20868
|
|
|
20774
20869
|
module.exports = keyOf;
|
|
20775
|
-
},{}],
|
|
20870
|
+
},{}],178:[function(_dereq_,module,exports){
|
|
20776
20871
|
/**
|
|
20777
20872
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20778
20873
|
* All rights reserved.
|
|
@@ -20823,7 +20918,7 @@ function mapObject(object, callback, context) {
|
|
|
20823
20918
|
}
|
|
20824
20919
|
|
|
20825
20920
|
module.exports = mapObject;
|
|
20826
|
-
},{}],
|
|
20921
|
+
},{}],179:[function(_dereq_,module,exports){
|
|
20827
20922
|
/**
|
|
20828
20923
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20829
20924
|
* All rights reserved.
|
|
@@ -20855,7 +20950,7 @@ function memoizeStringOnly(callback) {
|
|
|
20855
20950
|
}
|
|
20856
20951
|
|
|
20857
20952
|
module.exports = memoizeStringOnly;
|
|
20858
|
-
},{}],
|
|
20953
|
+
},{}],180:[function(_dereq_,module,exports){
|
|
20859
20954
|
/**
|
|
20860
20955
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20861
20956
|
* All rights reserved.
|
|
@@ -20869,7 +20964,7 @@ module.exports = memoizeStringOnly;
|
|
|
20869
20964
|
|
|
20870
20965
|
'use strict';
|
|
20871
20966
|
|
|
20872
|
-
var ExecutionEnvironment = _dereq_(
|
|
20967
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
20873
20968
|
|
|
20874
20969
|
var performance;
|
|
20875
20970
|
|
|
@@ -20878,7 +20973,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
20878
20973
|
}
|
|
20879
20974
|
|
|
20880
20975
|
module.exports = performance || {};
|
|
20881
|
-
},{"
|
|
20976
|
+
},{"159":159}],181:[function(_dereq_,module,exports){
|
|
20882
20977
|
'use strict';
|
|
20883
20978
|
|
|
20884
20979
|
/**
|
|
@@ -20892,7 +20987,7 @@ module.exports = performance || {};
|
|
|
20892
20987
|
* @typechecks
|
|
20893
20988
|
*/
|
|
20894
20989
|
|
|
20895
|
-
var performance = _dereq_(
|
|
20990
|
+
var performance = _dereq_(180);
|
|
20896
20991
|
|
|
20897
20992
|
var performanceNow;
|
|
20898
20993
|
|
|
@@ -20912,7 +21007,7 @@ if (performance.now) {
|
|
|
20912
21007
|
}
|
|
20913
21008
|
|
|
20914
21009
|
module.exports = performanceNow;
|
|
20915
|
-
},{"
|
|
21010
|
+
},{"180":180}],182:[function(_dereq_,module,exports){
|
|
20916
21011
|
/**
|
|
20917
21012
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20918
21013
|
* All rights reserved.
|
|
@@ -20979,7 +21074,7 @@ function shallowEqual(objA, objB) {
|
|
|
20979
21074
|
}
|
|
20980
21075
|
|
|
20981
21076
|
module.exports = shallowEqual;
|
|
20982
|
-
},{}],
|
|
21077
|
+
},{}],183:[function(_dereq_,module,exports){
|
|
20983
21078
|
/**
|
|
20984
21079
|
* Copyright 2014-2015, Facebook, Inc.
|
|
20985
21080
|
* All rights reserved.
|
|
@@ -20992,7 +21087,7 @@ module.exports = shallowEqual;
|
|
|
20992
21087
|
|
|
20993
21088
|
'use strict';
|
|
20994
21089
|
|
|
20995
|
-
var emptyFunction = _dereq_(
|
|
21090
|
+
var emptyFunction = _dereq_(165);
|
|
20996
21091
|
|
|
20997
21092
|
/**
|
|
20998
21093
|
* Similar to invariant but only logs a warning if the condition is not met.
|
|
@@ -21036,9 +21131,9 @@ if ("development" !== 'production') {
|
|
|
21036
21131
|
}
|
|
21037
21132
|
|
|
21038
21133
|
module.exports = warning;
|
|
21039
|
-
},{"
|
|
21040
|
-
/* eslint-disable no-unused-vars */
|
|
21134
|
+
},{"165":165}],184:[function(_dereq_,module,exports){
|
|
21041
21135
|
'use strict';
|
|
21136
|
+
/* eslint-disable no-unused-vars */
|
|
21042
21137
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
21043
21138
|
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
|
21044
21139
|
|
|
@@ -21050,7 +21145,51 @@ function toObject(val) {
|
|
|
21050
21145
|
return Object(val);
|
|
21051
21146
|
}
|
|
21052
21147
|
|
|
21053
|
-
|
|
21148
|
+
function shouldUseNative() {
|
|
21149
|
+
try {
|
|
21150
|
+
if (!Object.assign) {
|
|
21151
|
+
return false;
|
|
21152
|
+
}
|
|
21153
|
+
|
|
21154
|
+
// Detect buggy property enumeration order in older V8 versions.
|
|
21155
|
+
|
|
21156
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=4118
|
|
21157
|
+
var test1 = new String('abc'); // eslint-disable-line
|
|
21158
|
+
test1[5] = 'de';
|
|
21159
|
+
if (Object.getOwnPropertyNames(test1)[0] === '5') {
|
|
21160
|
+
return false;
|
|
21161
|
+
}
|
|
21162
|
+
|
|
21163
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
21164
|
+
var test2 = {};
|
|
21165
|
+
for (var i = 0; i < 10; i++) {
|
|
21166
|
+
test2['_' + String.fromCharCode(i)] = i;
|
|
21167
|
+
}
|
|
21168
|
+
var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
|
|
21169
|
+
return test2[n];
|
|
21170
|
+
});
|
|
21171
|
+
if (order2.join('') !== '0123456789') {
|
|
21172
|
+
return false;
|
|
21173
|
+
}
|
|
21174
|
+
|
|
21175
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
21176
|
+
var test3 = {};
|
|
21177
|
+
'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
|
|
21178
|
+
test3[letter] = letter;
|
|
21179
|
+
});
|
|
21180
|
+
if (Object.keys(Object.assign({}, test3)).join('') !==
|
|
21181
|
+
'abcdefghijklmnopqrst') {
|
|
21182
|
+
return false;
|
|
21183
|
+
}
|
|
21184
|
+
|
|
21185
|
+
return true;
|
|
21186
|
+
} catch (e) {
|
|
21187
|
+
// We don't expect any of the above to throw, but better to be safe.
|
|
21188
|
+
return false;
|
|
21189
|
+
}
|
|
21190
|
+
}
|
|
21191
|
+
|
|
21192
|
+
module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
21054
21193
|
var from;
|
|
21055
21194
|
var to = toObject(target);
|
|
21056
21195
|
var symbols;
|
|
@@ -21077,5 +21216,5 @@ module.exports = Object.assign || function (target, source) {
|
|
|
21077
21216
|
return to;
|
|
21078
21217
|
};
|
|
21079
21218
|
|
|
21080
|
-
},{}]},{},[
|
|
21219
|
+
},{}]},{},[107])(107)
|
|
21081
21220
|
});
|