react 15.0.2-alpha.1 → 15.0.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 +916 -832
- package/dist/react-with-addons.min.js +6 -6
- package/dist/react.js +835 -754
- package/dist/react.min.js +6 -6
- 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 +5 -1
- package/lib/ReactDOMContainerInfo.js +1 -0
- package/lib/ReactDOMInput.js +2 -1
- 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/ReactNativeDefaultInjection.js +0 -3
- package/lib/ReactNativeEventEmitter.js +9 -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 +1 -1
- package/lib/OrderedMap.js +0 -454
- package/lib/PanResponder.js +0 -362
- package/lib/ReactNativeGlobalInteractionHandler.js +0 -33
- package/lib/ReactPropTransferer.js +0 -109
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* React (with addons) v15.0.2
|
|
2
|
+
* React (with addons) v15.0.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,8 @@ module.exports = DOMChildrenOperations;
|
|
|
1376
1376
|
|
|
1377
1377
|
'use strict';
|
|
1378
1378
|
|
|
1379
|
-
var createMicrosoftUnsafeLocalFunction = _dereq_(
|
|
1380
|
-
var setTextContent = _dereq_(
|
|
1379
|
+
var createMicrosoftUnsafeLocalFunction = _dereq_(129);
|
|
1380
|
+
var setTextContent = _dereq_(151);
|
|
1381
1381
|
|
|
1382
1382
|
/**
|
|
1383
1383
|
* In IE (8-11) and Edge, appending nodes with no children is dramatically
|
|
@@ -1468,7 +1468,7 @@ DOMLazyTree.queueHTML = queueHTML;
|
|
|
1468
1468
|
DOMLazyTree.queueText = queueText;
|
|
1469
1469
|
|
|
1470
1470
|
module.exports = DOMLazyTree;
|
|
1471
|
-
},{"
|
|
1471
|
+
},{"129":129,"151":151}],9:[function(_dereq_,module,exports){
|
|
1472
1472
|
/**
|
|
1473
1473
|
* Copyright 2013-present, Facebook, Inc.
|
|
1474
1474
|
* All rights reserved.
|
|
@@ -1503,7 +1503,7 @@ module.exports = DOMNamespaces;
|
|
|
1503
1503
|
|
|
1504
1504
|
'use strict';
|
|
1505
1505
|
|
|
1506
|
-
var invariant = _dereq_(
|
|
1506
|
+
var invariant = _dereq_(173);
|
|
1507
1507
|
|
|
1508
1508
|
function checkMask(value, bitmask) {
|
|
1509
1509
|
return (value & bitmask) === bitmask;
|
|
@@ -1703,7 +1703,7 @@ var DOMProperty = {
|
|
|
1703
1703
|
};
|
|
1704
1704
|
|
|
1705
1705
|
module.exports = DOMProperty;
|
|
1706
|
-
},{"
|
|
1706
|
+
},{"173":173}],11:[function(_dereq_,module,exports){
|
|
1707
1707
|
/**
|
|
1708
1708
|
* Copyright 2013-present, Facebook, Inc.
|
|
1709
1709
|
* All rights reserved.
|
|
@@ -1718,11 +1718,11 @@ module.exports = DOMProperty;
|
|
|
1718
1718
|
'use strict';
|
|
1719
1719
|
|
|
1720
1720
|
var DOMProperty = _dereq_(10);
|
|
1721
|
-
var ReactDOMInstrumentation = _dereq_(
|
|
1722
|
-
var ReactPerf = _dereq_(
|
|
1721
|
+
var ReactDOMInstrumentation = _dereq_(52);
|
|
1722
|
+
var ReactPerf = _dereq_(88);
|
|
1723
1723
|
|
|
1724
|
-
var quoteAttributeValueForBrowser = _dereq_(
|
|
1725
|
-
var warning = _dereq_(
|
|
1724
|
+
var quoteAttributeValueForBrowser = _dereq_(148);
|
|
1725
|
+
var warning = _dereq_(183);
|
|
1726
1726
|
|
|
1727
1727
|
var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + DOMProperty.ATTRIBUTE_NAME_START_CHAR + '][' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');
|
|
1728
1728
|
var illegalAttributeNameCache = {};
|
|
@@ -1917,7 +1917,7 @@ ReactPerf.measureMethods(DOMPropertyOperations, 'DOMPropertyOperations', {
|
|
|
1917
1917
|
});
|
|
1918
1918
|
|
|
1919
1919
|
module.exports = DOMPropertyOperations;
|
|
1920
|
-
},{"10":10,"
|
|
1920
|
+
},{"10":10,"148":148,"183":183,"52":52,"88":88}],12:[function(_dereq_,module,exports){
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Copyright 2013-present, Facebook, Inc.
|
|
1923
1923
|
* All rights reserved.
|
|
@@ -1932,12 +1932,12 @@ module.exports = DOMPropertyOperations;
|
|
|
1932
1932
|
'use strict';
|
|
1933
1933
|
|
|
1934
1934
|
var DOMLazyTree = _dereq_(8);
|
|
1935
|
-
var ExecutionEnvironment = _dereq_(
|
|
1935
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
1936
1936
|
|
|
1937
|
-
var createNodesFromMarkup = _dereq_(
|
|
1938
|
-
var emptyFunction = _dereq_(
|
|
1939
|
-
var getMarkupWrap = _dereq_(
|
|
1940
|
-
var invariant = _dereq_(
|
|
1937
|
+
var createNodesFromMarkup = _dereq_(164);
|
|
1938
|
+
var emptyFunction = _dereq_(165);
|
|
1939
|
+
var getMarkupWrap = _dereq_(169);
|
|
1940
|
+
var invariant = _dereq_(173);
|
|
1941
1941
|
|
|
1942
1942
|
var OPEN_TAG_NAME_EXP = /^(<[^ \/>]+)/;
|
|
1943
1943
|
var RESULT_INDEX_ATTR = 'data-danger-index';
|
|
@@ -2062,7 +2062,7 @@ var Danger = {
|
|
|
2062
2062
|
};
|
|
2063
2063
|
|
|
2064
2064
|
module.exports = Danger;
|
|
2065
|
-
},{"
|
|
2065
|
+
},{"159":159,"164":164,"165":165,"169":169,"173":173,"8":8}],13:[function(_dereq_,module,exports){
|
|
2066
2066
|
/**
|
|
2067
2067
|
* Copyright 2013-present, Facebook, Inc.
|
|
2068
2068
|
* All rights reserved.
|
|
@@ -2076,7 +2076,7 @@ module.exports = Danger;
|
|
|
2076
2076
|
|
|
2077
2077
|
'use strict';
|
|
2078
2078
|
|
|
2079
|
-
var keyOf = _dereq_(
|
|
2079
|
+
var keyOf = _dereq_(177);
|
|
2080
2080
|
|
|
2081
2081
|
/**
|
|
2082
2082
|
* Module that is injectable into `EventPluginHub`, that specifies a
|
|
@@ -2090,7 +2090,58 @@ var keyOf = _dereq_(175);
|
|
|
2090
2090
|
var DefaultEventPluginOrder = [keyOf({ ResponderEventPlugin: null }), keyOf({ SimpleEventPlugin: null }), keyOf({ TapEventPlugin: null }), keyOf({ EnterLeaveEventPlugin: null }), keyOf({ ChangeEventPlugin: null }), keyOf({ SelectEventPlugin: null }), keyOf({ BeforeInputEventPlugin: null })];
|
|
2091
2091
|
|
|
2092
2092
|
module.exports = DefaultEventPluginOrder;
|
|
2093
|
-
},{"
|
|
2093
|
+
},{"177":177}],14:[function(_dereq_,module,exports){
|
|
2094
|
+
/**
|
|
2095
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
2096
|
+
* All rights reserved.
|
|
2097
|
+
*
|
|
2098
|
+
* This source code is licensed under the BSD-style license found in the
|
|
2099
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
2100
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
2101
|
+
*
|
|
2102
|
+
* @providesModule DisabledInputUtils
|
|
2103
|
+
*/
|
|
2104
|
+
|
|
2105
|
+
'use strict';
|
|
2106
|
+
|
|
2107
|
+
var disableableMouseListenerNames = {
|
|
2108
|
+
onClick: true,
|
|
2109
|
+
onDoubleClick: true,
|
|
2110
|
+
onMouseDown: true,
|
|
2111
|
+
onMouseMove: true,
|
|
2112
|
+
onMouseUp: true,
|
|
2113
|
+
|
|
2114
|
+
onClickCapture: true,
|
|
2115
|
+
onDoubleClickCapture: true,
|
|
2116
|
+
onMouseDownCapture: true,
|
|
2117
|
+
onMouseMoveCapture: true,
|
|
2118
|
+
onMouseUpCapture: true
|
|
2119
|
+
};
|
|
2120
|
+
|
|
2121
|
+
/**
|
|
2122
|
+
* Implements a native component that does not receive mouse events
|
|
2123
|
+
* when `disabled` is set.
|
|
2124
|
+
*/
|
|
2125
|
+
var DisabledInputUtils = {
|
|
2126
|
+
getNativeProps: function (inst, props) {
|
|
2127
|
+
if (!props.disabled) {
|
|
2128
|
+
return props;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
// Copy the props, except the mouse listeners
|
|
2132
|
+
var nativeProps = {};
|
|
2133
|
+
for (var key in props) {
|
|
2134
|
+
if (!disableableMouseListenerNames[key] && props.hasOwnProperty(key)) {
|
|
2135
|
+
nativeProps[key] = props[key];
|
|
2136
|
+
}
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
return nativeProps;
|
|
2140
|
+
}
|
|
2141
|
+
};
|
|
2142
|
+
|
|
2143
|
+
module.exports = DisabledInputUtils;
|
|
2144
|
+
},{}],15:[function(_dereq_,module,exports){
|
|
2094
2145
|
/**
|
|
2095
2146
|
* Copyright 2013-present, Facebook, Inc.
|
|
2096
2147
|
* All rights reserved.
|
|
@@ -2104,12 +2155,12 @@ module.exports = DefaultEventPluginOrder;
|
|
|
2104
2155
|
|
|
2105
2156
|
'use strict';
|
|
2106
2157
|
|
|
2107
|
-
var EventConstants = _dereq_(
|
|
2108
|
-
var EventPropagators = _dereq_(
|
|
2109
|
-
var ReactDOMComponentTree = _dereq_(
|
|
2110
|
-
var SyntheticMouseEvent = _dereq_(
|
|
2158
|
+
var EventConstants = _dereq_(16);
|
|
2159
|
+
var EventPropagators = _dereq_(20);
|
|
2160
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
2161
|
+
var SyntheticMouseEvent = _dereq_(119);
|
|
2111
2162
|
|
|
2112
|
-
var keyOf = _dereq_(
|
|
2163
|
+
var keyOf = _dereq_(177);
|
|
2113
2164
|
|
|
2114
2165
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
2115
2166
|
|
|
@@ -2196,7 +2247,7 @@ var EnterLeaveEventPlugin = {
|
|
|
2196
2247
|
};
|
|
2197
2248
|
|
|
2198
2249
|
module.exports = EnterLeaveEventPlugin;
|
|
2199
|
-
},{"
|
|
2250
|
+
},{"119":119,"16":16,"177":177,"20":20,"44":44}],16:[function(_dereq_,module,exports){
|
|
2200
2251
|
/**
|
|
2201
2252
|
* Copyright 2013-present, Facebook, Inc.
|
|
2202
2253
|
* All rights reserved.
|
|
@@ -2210,7 +2261,7 @@ module.exports = EnterLeaveEventPlugin;
|
|
|
2210
2261
|
|
|
2211
2262
|
'use strict';
|
|
2212
2263
|
|
|
2213
|
-
var keyMirror = _dereq_(
|
|
2264
|
+
var keyMirror = _dereq_(176);
|
|
2214
2265
|
|
|
2215
2266
|
var PropagationPhases = keyMirror({ bubbled: null, captured: null });
|
|
2216
2267
|
|
|
@@ -2294,7 +2345,7 @@ var EventConstants = {
|
|
|
2294
2345
|
};
|
|
2295
2346
|
|
|
2296
2347
|
module.exports = EventConstants;
|
|
2297
|
-
},{"
|
|
2348
|
+
},{"176":176}],17:[function(_dereq_,module,exports){
|
|
2298
2349
|
/**
|
|
2299
2350
|
* Copyright 2013-present, Facebook, Inc.
|
|
2300
2351
|
* All rights reserved.
|
|
@@ -2308,13 +2359,13 @@ module.exports = EventConstants;
|
|
|
2308
2359
|
|
|
2309
2360
|
'use strict';
|
|
2310
2361
|
|
|
2311
|
-
var EventPluginRegistry = _dereq_(
|
|
2312
|
-
var EventPluginUtils = _dereq_(
|
|
2313
|
-
var ReactErrorUtils = _dereq_(
|
|
2362
|
+
var EventPluginRegistry = _dereq_(18);
|
|
2363
|
+
var EventPluginUtils = _dereq_(19);
|
|
2364
|
+
var ReactErrorUtils = _dereq_(69);
|
|
2314
2365
|
|
|
2315
|
-
var accumulateInto = _dereq_(
|
|
2316
|
-
var forEachAccumulated = _dereq_(
|
|
2317
|
-
var invariant = _dereq_(
|
|
2366
|
+
var accumulateInto = _dereq_(126);
|
|
2367
|
+
var forEachAccumulated = _dereq_(134);
|
|
2368
|
+
var invariant = _dereq_(173);
|
|
2318
2369
|
|
|
2319
2370
|
/**
|
|
2320
2371
|
* Internal store for event listeners
|
|
@@ -2530,7 +2581,7 @@ var EventPluginHub = {
|
|
|
2530
2581
|
};
|
|
2531
2582
|
|
|
2532
2583
|
module.exports = EventPluginHub;
|
|
2533
|
-
},{"
|
|
2584
|
+
},{"126":126,"134":134,"173":173,"18":18,"19":19,"69":69}],18:[function(_dereq_,module,exports){
|
|
2534
2585
|
/**
|
|
2535
2586
|
* Copyright 2013-present, Facebook, Inc.
|
|
2536
2587
|
* All rights reserved.
|
|
@@ -2544,7 +2595,7 @@ module.exports = EventPluginHub;
|
|
|
2544
2595
|
|
|
2545
2596
|
'use strict';
|
|
2546
2597
|
|
|
2547
|
-
var invariant = _dereq_(
|
|
2598
|
+
var invariant = _dereq_(173);
|
|
2548
2599
|
|
|
2549
2600
|
/**
|
|
2550
2601
|
* Injectable ordering of event plugins.
|
|
@@ -2772,7 +2823,7 @@ var EventPluginRegistry = {
|
|
|
2772
2823
|
};
|
|
2773
2824
|
|
|
2774
2825
|
module.exports = EventPluginRegistry;
|
|
2775
|
-
},{"
|
|
2826
|
+
},{"173":173}],19:[function(_dereq_,module,exports){
|
|
2776
2827
|
/**
|
|
2777
2828
|
* Copyright 2013-present, Facebook, Inc.
|
|
2778
2829
|
* All rights reserved.
|
|
@@ -2786,11 +2837,11 @@ module.exports = EventPluginRegistry;
|
|
|
2786
2837
|
|
|
2787
2838
|
'use strict';
|
|
2788
2839
|
|
|
2789
|
-
var EventConstants = _dereq_(
|
|
2790
|
-
var ReactErrorUtils = _dereq_(
|
|
2840
|
+
var EventConstants = _dereq_(16);
|
|
2841
|
+
var ReactErrorUtils = _dereq_(69);
|
|
2791
2842
|
|
|
2792
|
-
var invariant = _dereq_(
|
|
2793
|
-
var warning = _dereq_(
|
|
2843
|
+
var invariant = _dereq_(173);
|
|
2844
|
+
var warning = _dereq_(183);
|
|
2794
2845
|
|
|
2795
2846
|
/**
|
|
2796
2847
|
* Injected dependencies:
|
|
@@ -3000,7 +3051,7 @@ var EventPluginUtils = {
|
|
|
3000
3051
|
};
|
|
3001
3052
|
|
|
3002
3053
|
module.exports = EventPluginUtils;
|
|
3003
|
-
},{"
|
|
3054
|
+
},{"16":16,"173":173,"183":183,"69":69}],20:[function(_dereq_,module,exports){
|
|
3004
3055
|
/**
|
|
3005
3056
|
* Copyright 2013-present, Facebook, Inc.
|
|
3006
3057
|
* All rights reserved.
|
|
@@ -3014,13 +3065,13 @@ module.exports = EventPluginUtils;
|
|
|
3014
3065
|
|
|
3015
3066
|
'use strict';
|
|
3016
3067
|
|
|
3017
|
-
var EventConstants = _dereq_(
|
|
3018
|
-
var EventPluginHub = _dereq_(
|
|
3019
|
-
var EventPluginUtils = _dereq_(
|
|
3068
|
+
var EventConstants = _dereq_(16);
|
|
3069
|
+
var EventPluginHub = _dereq_(17);
|
|
3070
|
+
var EventPluginUtils = _dereq_(19);
|
|
3020
3071
|
|
|
3021
|
-
var accumulateInto = _dereq_(
|
|
3022
|
-
var forEachAccumulated = _dereq_(
|
|
3023
|
-
var warning = _dereq_(
|
|
3072
|
+
var accumulateInto = _dereq_(126);
|
|
3073
|
+
var forEachAccumulated = _dereq_(134);
|
|
3074
|
+
var warning = _dereq_(183);
|
|
3024
3075
|
|
|
3025
3076
|
var PropagationPhases = EventConstants.PropagationPhases;
|
|
3026
3077
|
var getListener = EventPluginHub.getListener;
|
|
@@ -3138,7 +3189,7 @@ var EventPropagators = {
|
|
|
3138
3189
|
};
|
|
3139
3190
|
|
|
3140
3191
|
module.exports = EventPropagators;
|
|
3141
|
-
},{"
|
|
3192
|
+
},{"126":126,"134":134,"16":16,"17":17,"183":183,"19":19}],21:[function(_dereq_,module,exports){
|
|
3142
3193
|
/**
|
|
3143
3194
|
* Copyright 2013-present, Facebook, Inc.
|
|
3144
3195
|
* All rights reserved.
|
|
@@ -3152,11 +3203,11 @@ module.exports = EventPropagators;
|
|
|
3152
3203
|
|
|
3153
3204
|
'use strict';
|
|
3154
3205
|
|
|
3155
|
-
var _assign = _dereq_(
|
|
3206
|
+
var _assign = _dereq_(184);
|
|
3156
3207
|
|
|
3157
|
-
var PooledClass = _dereq_(
|
|
3208
|
+
var PooledClass = _dereq_(26);
|
|
3158
3209
|
|
|
3159
|
-
var getTextContentAccessor = _dereq_(
|
|
3210
|
+
var getTextContentAccessor = _dereq_(142);
|
|
3160
3211
|
|
|
3161
3212
|
/**
|
|
3162
3213
|
* This helper class stores information about text content of a target node,
|
|
@@ -3234,7 +3285,7 @@ _assign(FallbackCompositionState.prototype, {
|
|
|
3234
3285
|
PooledClass.addPoolingTo(FallbackCompositionState);
|
|
3235
3286
|
|
|
3236
3287
|
module.exports = FallbackCompositionState;
|
|
3237
|
-
},{"
|
|
3288
|
+
},{"142":142,"184":184,"26":26}],22:[function(_dereq_,module,exports){
|
|
3238
3289
|
/**
|
|
3239
3290
|
* Copyright 2013-present, Facebook, Inc.
|
|
3240
3291
|
* All rights reserved.
|
|
@@ -3444,7 +3495,66 @@ var HTMLDOMPropertyConfig = {
|
|
|
3444
3495
|
};
|
|
3445
3496
|
|
|
3446
3497
|
module.exports = HTMLDOMPropertyConfig;
|
|
3447
|
-
},{"10":10}],
|
|
3498
|
+
},{"10":10}],23:[function(_dereq_,module,exports){
|
|
3499
|
+
/**
|
|
3500
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
3501
|
+
* All rights reserved.
|
|
3502
|
+
*
|
|
3503
|
+
* This source code is licensed under the BSD-style license found in the
|
|
3504
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
3505
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
3506
|
+
*
|
|
3507
|
+
* @providesModule KeyEscapeUtils
|
|
3508
|
+
*/
|
|
3509
|
+
|
|
3510
|
+
'use strict';
|
|
3511
|
+
|
|
3512
|
+
/**
|
|
3513
|
+
* Escape and wrap key so it is safe to use as a reactid
|
|
3514
|
+
*
|
|
3515
|
+
* @param {*} key to be escaped.
|
|
3516
|
+
* @return {string} the escaped key.
|
|
3517
|
+
*/
|
|
3518
|
+
|
|
3519
|
+
function escape(key) {
|
|
3520
|
+
var escapeRegex = /[=:]/g;
|
|
3521
|
+
var escaperLookup = {
|
|
3522
|
+
'=': '=0',
|
|
3523
|
+
':': '=2'
|
|
3524
|
+
};
|
|
3525
|
+
var escapedString = ('' + key).replace(escapeRegex, function (match) {
|
|
3526
|
+
return escaperLookup[match];
|
|
3527
|
+
});
|
|
3528
|
+
|
|
3529
|
+
return '$' + escapedString;
|
|
3530
|
+
}
|
|
3531
|
+
|
|
3532
|
+
/**
|
|
3533
|
+
* Unescape and unwrap key for human-readable display
|
|
3534
|
+
*
|
|
3535
|
+
* @param {string} key to unescape.
|
|
3536
|
+
* @return {string} the unescaped key.
|
|
3537
|
+
*/
|
|
3538
|
+
function unescape(key) {
|
|
3539
|
+
var unescapeRegex = /(=0|=2)/g;
|
|
3540
|
+
var unescaperLookup = {
|
|
3541
|
+
'=0': '=',
|
|
3542
|
+
'=2': ':'
|
|
3543
|
+
};
|
|
3544
|
+
var keySubstring = key[0] === '.' && key[1] === '$' ? key.substring(2) : key.substring(1);
|
|
3545
|
+
|
|
3546
|
+
return ('' + keySubstring).replace(unescapeRegex, function (match) {
|
|
3547
|
+
return unescaperLookup[match];
|
|
3548
|
+
});
|
|
3549
|
+
}
|
|
3550
|
+
|
|
3551
|
+
var KeyEscapeUtils = {
|
|
3552
|
+
escape: escape,
|
|
3553
|
+
unescape: unescape
|
|
3554
|
+
};
|
|
3555
|
+
|
|
3556
|
+
module.exports = KeyEscapeUtils;
|
|
3557
|
+
},{}],24:[function(_dereq_,module,exports){
|
|
3448
3558
|
/**
|
|
3449
3559
|
* Copyright 2013-present, Facebook, Inc.
|
|
3450
3560
|
* All rights reserved.
|
|
@@ -3458,8 +3568,8 @@ module.exports = HTMLDOMPropertyConfig;
|
|
|
3458
3568
|
|
|
3459
3569
|
'use strict';
|
|
3460
3570
|
|
|
3461
|
-
var ReactLink = _dereq_(
|
|
3462
|
-
var ReactStateSetters = _dereq_(
|
|
3571
|
+
var ReactLink = _dereq_(79);
|
|
3572
|
+
var ReactStateSetters = _dereq_(98);
|
|
3463
3573
|
|
|
3464
3574
|
/**
|
|
3465
3575
|
* A simple mixin around ReactLink.forState().
|
|
@@ -3480,7 +3590,7 @@ var LinkedStateMixin = {
|
|
|
3480
3590
|
};
|
|
3481
3591
|
|
|
3482
3592
|
module.exports = LinkedStateMixin;
|
|
3483
|
-
},{"
|
|
3593
|
+
},{"79":79,"98":98}],25:[function(_dereq_,module,exports){
|
|
3484
3594
|
/**
|
|
3485
3595
|
* Copyright 2013-present, Facebook, Inc.
|
|
3486
3596
|
* All rights reserved.
|
|
@@ -3494,11 +3604,11 @@ module.exports = LinkedStateMixin;
|
|
|
3494
3604
|
|
|
3495
3605
|
'use strict';
|
|
3496
3606
|
|
|
3497
|
-
var ReactPropTypes = _dereq_(
|
|
3498
|
-
var ReactPropTypeLocations = _dereq_(
|
|
3607
|
+
var ReactPropTypes = _dereq_(91);
|
|
3608
|
+
var ReactPropTypeLocations = _dereq_(90);
|
|
3499
3609
|
|
|
3500
|
-
var invariant = _dereq_(
|
|
3501
|
-
var warning = _dereq_(
|
|
3610
|
+
var invariant = _dereq_(173);
|
|
3611
|
+
var warning = _dereq_(183);
|
|
3502
3612
|
|
|
3503
3613
|
var hasReadOnlyValue = {
|
|
3504
3614
|
'button': true,
|
|
@@ -3614,7 +3724,7 @@ var LinkedValueUtils = {
|
|
|
3614
3724
|
};
|
|
3615
3725
|
|
|
3616
3726
|
module.exports = LinkedValueUtils;
|
|
3617
|
-
},{"
|
|
3727
|
+
},{"173":173,"183":183,"90":90,"91":91}],26:[function(_dereq_,module,exports){
|
|
3618
3728
|
/**
|
|
3619
3729
|
* Copyright 2013-present, Facebook, Inc.
|
|
3620
3730
|
* All rights reserved.
|
|
@@ -3628,7 +3738,7 @@ module.exports = LinkedValueUtils;
|
|
|
3628
3738
|
|
|
3629
3739
|
'use strict';
|
|
3630
3740
|
|
|
3631
|
-
var invariant = _dereq_(
|
|
3741
|
+
var invariant = _dereq_(173);
|
|
3632
3742
|
|
|
3633
3743
|
/**
|
|
3634
3744
|
* Static poolers. Several custom versions for each potential number of
|
|
@@ -3734,7 +3844,7 @@ var PooledClass = {
|
|
|
3734
3844
|
};
|
|
3735
3845
|
|
|
3736
3846
|
module.exports = PooledClass;
|
|
3737
|
-
},{"
|
|
3847
|
+
},{"173":173}],27:[function(_dereq_,module,exports){
|
|
3738
3848
|
/**
|
|
3739
3849
|
* Copyright 2013-present, Facebook, Inc.
|
|
3740
3850
|
* All rights reserved.
|
|
@@ -3748,19 +3858,19 @@ module.exports = PooledClass;
|
|
|
3748
3858
|
|
|
3749
3859
|
'use strict';
|
|
3750
3860
|
|
|
3751
|
-
var _assign = _dereq_(
|
|
3861
|
+
var _assign = _dereq_(184);
|
|
3752
3862
|
|
|
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_(
|
|
3863
|
+
var ReactChildren = _dereq_(32);
|
|
3864
|
+
var ReactComponent = _dereq_(34);
|
|
3865
|
+
var ReactClass = _dereq_(33);
|
|
3866
|
+
var ReactDOMFactories = _dereq_(48);
|
|
3867
|
+
var ReactElement = _dereq_(66);
|
|
3868
|
+
var ReactElementValidator = _dereq_(67);
|
|
3869
|
+
var ReactPropTypes = _dereq_(91);
|
|
3870
|
+
var ReactVersion = _dereq_(105);
|
|
3761
3871
|
|
|
3762
|
-
var onlyChild = _dereq_(
|
|
3763
|
-
var warning = _dereq_(
|
|
3872
|
+
var onlyChild = _dereq_(147);
|
|
3873
|
+
var warning = _dereq_(183);
|
|
3764
3874
|
|
|
3765
3875
|
var createElement = ReactElement.createElement;
|
|
3766
3876
|
var createFactory = ReactElement.createFactory;
|
|
@@ -3822,7 +3932,7 @@ var React = {
|
|
|
3822
3932
|
};
|
|
3823
3933
|
|
|
3824
3934
|
module.exports = React;
|
|
3825
|
-
},{"
|
|
3935
|
+
},{"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
3936
|
/**
|
|
3827
3937
|
* Copyright 2013-present, Facebook, Inc.
|
|
3828
3938
|
* All rights reserved.
|
|
@@ -3836,15 +3946,15 @@ module.exports = React;
|
|
|
3836
3946
|
|
|
3837
3947
|
'use strict';
|
|
3838
3948
|
|
|
3839
|
-
var _assign = _dereq_(
|
|
3949
|
+
var _assign = _dereq_(184);
|
|
3840
3950
|
|
|
3841
|
-
var EventConstants = _dereq_(
|
|
3842
|
-
var EventPluginRegistry = _dereq_(
|
|
3843
|
-
var ReactEventEmitterMixin = _dereq_(
|
|
3844
|
-
var ViewportMetrics = _dereq_(
|
|
3951
|
+
var EventConstants = _dereq_(16);
|
|
3952
|
+
var EventPluginRegistry = _dereq_(18);
|
|
3953
|
+
var ReactEventEmitterMixin = _dereq_(70);
|
|
3954
|
+
var ViewportMetrics = _dereq_(125);
|
|
3845
3955
|
|
|
3846
|
-
var getVendorPrefixedEventName = _dereq_(
|
|
3847
|
-
var isEventSupported = _dereq_(
|
|
3956
|
+
var getVendorPrefixedEventName = _dereq_(143);
|
|
3957
|
+
var isEventSupported = _dereq_(145);
|
|
3848
3958
|
|
|
3849
3959
|
/**
|
|
3850
3960
|
* Summary of `ReactBrowserEventEmitter` event handling:
|
|
@@ -4140,7 +4250,7 @@ var ReactBrowserEventEmitter = _assign({}, ReactEventEmitterMixin, {
|
|
|
4140
4250
|
});
|
|
4141
4251
|
|
|
4142
4252
|
module.exports = ReactBrowserEventEmitter;
|
|
4143
|
-
},{"
|
|
4253
|
+
},{"125":125,"143":143,"145":145,"16":16,"18":18,"184":184,"70":70}],29:[function(_dereq_,module,exports){
|
|
4144
4254
|
/**
|
|
4145
4255
|
* Copyright 2013-present, Facebook, Inc.
|
|
4146
4256
|
* All rights reserved.
|
|
@@ -4154,12 +4264,12 @@ module.exports = ReactBrowserEventEmitter;
|
|
|
4154
4264
|
|
|
4155
4265
|
'use strict';
|
|
4156
4266
|
|
|
4157
|
-
var _assign = _dereq_(
|
|
4267
|
+
var _assign = _dereq_(184);
|
|
4158
4268
|
|
|
4159
|
-
var React = _dereq_(
|
|
4269
|
+
var React = _dereq_(27);
|
|
4160
4270
|
|
|
4161
|
-
var ReactTransitionGroup = _dereq_(
|
|
4162
|
-
var ReactCSSTransitionGroupChild = _dereq_(
|
|
4271
|
+
var ReactTransitionGroup = _dereq_(102);
|
|
4272
|
+
var ReactCSSTransitionGroupChild = _dereq_(30);
|
|
4163
4273
|
|
|
4164
4274
|
function createTransitionTimeoutPropValidator(transitionType) {
|
|
4165
4275
|
var timeoutPropName = 'transition' + transitionType + 'Timeout';
|
|
@@ -4223,7 +4333,7 @@ var ReactCSSTransitionGroup = React.createClass({
|
|
|
4223
4333
|
});
|
|
4224
4334
|
|
|
4225
4335
|
module.exports = ReactCSSTransitionGroup;
|
|
4226
|
-
},{"
|
|
4336
|
+
},{"102":102,"184":184,"27":27,"30":30}],30:[function(_dereq_,module,exports){
|
|
4227
4337
|
/**
|
|
4228
4338
|
* Copyright 2013-present, Facebook, Inc.
|
|
4229
4339
|
* All rights reserved.
|
|
@@ -4237,13 +4347,13 @@ module.exports = ReactCSSTransitionGroup;
|
|
|
4237
4347
|
|
|
4238
4348
|
'use strict';
|
|
4239
4349
|
|
|
4240
|
-
var React = _dereq_(
|
|
4241
|
-
var ReactDOM = _dereq_(
|
|
4350
|
+
var React = _dereq_(27);
|
|
4351
|
+
var ReactDOM = _dereq_(40);
|
|
4242
4352
|
|
|
4243
|
-
var CSSCore = _dereq_(
|
|
4244
|
-
var ReactTransitionEvents = _dereq_(
|
|
4353
|
+
var CSSCore = _dereq_(157);
|
|
4354
|
+
var ReactTransitionEvents = _dereq_(101);
|
|
4245
4355
|
|
|
4246
|
-
var onlyChild = _dereq_(
|
|
4356
|
+
var onlyChild = _dereq_(147);
|
|
4247
4357
|
|
|
4248
4358
|
var TICK = 17;
|
|
4249
4359
|
|
|
@@ -4384,7 +4494,7 @@ var ReactCSSTransitionGroupChild = React.createClass({
|
|
|
4384
4494
|
});
|
|
4385
4495
|
|
|
4386
4496
|
module.exports = ReactCSSTransitionGroupChild;
|
|
4387
|
-
},{"
|
|
4497
|
+
},{"101":101,"147":147,"157":157,"27":27,"40":40}],31:[function(_dereq_,module,exports){
|
|
4388
4498
|
/**
|
|
4389
4499
|
* Copyright 2014-present, Facebook, Inc.
|
|
4390
4500
|
* All rights reserved.
|
|
@@ -4398,18 +4508,19 @@ module.exports = ReactCSSTransitionGroupChild;
|
|
|
4398
4508
|
|
|
4399
4509
|
'use strict';
|
|
4400
4510
|
|
|
4401
|
-
var ReactReconciler = _dereq_(
|
|
4511
|
+
var ReactReconciler = _dereq_(93);
|
|
4402
4512
|
|
|
4403
|
-
var instantiateReactComponent = _dereq_(
|
|
4404
|
-
var
|
|
4405
|
-
var
|
|
4406
|
-
var
|
|
4513
|
+
var instantiateReactComponent = _dereq_(144);
|
|
4514
|
+
var KeyEscapeUtils = _dereq_(23);
|
|
4515
|
+
var shouldUpdateReactComponent = _dereq_(153);
|
|
4516
|
+
var traverseAllChildren = _dereq_(154);
|
|
4517
|
+
var warning = _dereq_(183);
|
|
4407
4518
|
|
|
4408
4519
|
function instantiateChild(childInstances, child, name) {
|
|
4409
4520
|
// We found a component instance.
|
|
4410
4521
|
var keyUnique = childInstances[name] === undefined;
|
|
4411
4522
|
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;
|
|
4523
|
+
"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
4524
|
}
|
|
4414
4525
|
if (child != null && keyUnique) {
|
|
4415
4526
|
childInstances[name] = instantiateReactComponent(child);
|
|
@@ -4509,7 +4620,7 @@ var ReactChildReconciler = {
|
|
|
4509
4620
|
};
|
|
4510
4621
|
|
|
4511
4622
|
module.exports = ReactChildReconciler;
|
|
4512
|
-
},{"
|
|
4623
|
+
},{"144":144,"153":153,"154":154,"183":183,"23":23,"93":93}],32:[function(_dereq_,module,exports){
|
|
4513
4624
|
/**
|
|
4514
4625
|
* Copyright 2013-present, Facebook, Inc.
|
|
4515
4626
|
* All rights reserved.
|
|
@@ -4523,11 +4634,11 @@ module.exports = ReactChildReconciler;
|
|
|
4523
4634
|
|
|
4524
4635
|
'use strict';
|
|
4525
4636
|
|
|
4526
|
-
var PooledClass = _dereq_(
|
|
4527
|
-
var ReactElement = _dereq_(
|
|
4637
|
+
var PooledClass = _dereq_(26);
|
|
4638
|
+
var ReactElement = _dereq_(66);
|
|
4528
4639
|
|
|
4529
|
-
var emptyFunction = _dereq_(
|
|
4530
|
-
var traverseAllChildren = _dereq_(
|
|
4640
|
+
var emptyFunction = _dereq_(165);
|
|
4641
|
+
var traverseAllChildren = _dereq_(154);
|
|
4531
4642
|
|
|
4532
4643
|
var twoArgumentPooler = PooledClass.twoArgumentPooler;
|
|
4533
4644
|
var fourArgumentPooler = PooledClass.fourArgumentPooler;
|
|
@@ -4642,7 +4753,7 @@ function mapIntoWithKeyPrefixInternal(children, array, prefix, func, context) {
|
|
|
4642
4753
|
/**
|
|
4643
4754
|
* Maps children that are typically specified as `props.children`.
|
|
4644
4755
|
*
|
|
4645
|
-
* The provided mapFunction(child,
|
|
4756
|
+
* The provided mapFunction(child, index) will be called for each
|
|
4646
4757
|
* leaf child.
|
|
4647
4758
|
*
|
|
4648
4759
|
* @param {?*} children Children tree container.
|
|
@@ -4693,7 +4804,7 @@ var ReactChildren = {
|
|
|
4693
4804
|
};
|
|
4694
4805
|
|
|
4695
4806
|
module.exports = ReactChildren;
|
|
4696
|
-
},{"
|
|
4807
|
+
},{"154":154,"165":165,"26":26,"66":66}],33:[function(_dereq_,module,exports){
|
|
4697
4808
|
/**
|
|
4698
4809
|
* Copyright 2013-present, Facebook, Inc.
|
|
4699
4810
|
* All rights reserved.
|
|
@@ -4707,19 +4818,19 @@ module.exports = ReactChildren;
|
|
|
4707
4818
|
|
|
4708
4819
|
'use strict';
|
|
4709
4820
|
|
|
4710
|
-
var _assign = _dereq_(
|
|
4821
|
+
var _assign = _dereq_(184);
|
|
4711
4822
|
|
|
4712
|
-
var ReactComponent = _dereq_(
|
|
4713
|
-
var ReactElement = _dereq_(
|
|
4714
|
-
var ReactPropTypeLocations = _dereq_(
|
|
4715
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
4716
|
-
var ReactNoopUpdateQueue = _dereq_(
|
|
4823
|
+
var ReactComponent = _dereq_(34);
|
|
4824
|
+
var ReactElement = _dereq_(66);
|
|
4825
|
+
var ReactPropTypeLocations = _dereq_(90);
|
|
4826
|
+
var ReactPropTypeLocationNames = _dereq_(89);
|
|
4827
|
+
var ReactNoopUpdateQueue = _dereq_(86);
|
|
4717
4828
|
|
|
4718
|
-
var emptyObject = _dereq_(
|
|
4719
|
-
var invariant = _dereq_(
|
|
4720
|
-
var keyMirror = _dereq_(
|
|
4721
|
-
var keyOf = _dereq_(
|
|
4722
|
-
var warning = _dereq_(
|
|
4829
|
+
var emptyObject = _dereq_(166);
|
|
4830
|
+
var invariant = _dereq_(173);
|
|
4831
|
+
var keyMirror = _dereq_(176);
|
|
4832
|
+
var keyOf = _dereq_(177);
|
|
4833
|
+
var warning = _dereq_(183);
|
|
4723
4834
|
|
|
4724
4835
|
var MIXINS_KEY = keyOf({ mixins: null });
|
|
4725
4836
|
|
|
@@ -5417,7 +5528,7 @@ var ReactClass = {
|
|
|
5417
5528
|
};
|
|
5418
5529
|
|
|
5419
5530
|
module.exports = ReactClass;
|
|
5420
|
-
},{"
|
|
5531
|
+
},{"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
5532
|
/**
|
|
5422
5533
|
* Copyright 2013-present, Facebook, Inc.
|
|
5423
5534
|
* All rights reserved.
|
|
@@ -5431,13 +5542,13 @@ module.exports = ReactClass;
|
|
|
5431
5542
|
|
|
5432
5543
|
'use strict';
|
|
5433
5544
|
|
|
5434
|
-
var ReactNoopUpdateQueue = _dereq_(
|
|
5435
|
-
var ReactInstrumentation = _dereq_(
|
|
5545
|
+
var ReactNoopUpdateQueue = _dereq_(86);
|
|
5546
|
+
var ReactInstrumentation = _dereq_(77);
|
|
5436
5547
|
|
|
5437
|
-
var canDefineProperty = _dereq_(
|
|
5438
|
-
var emptyObject = _dereq_(
|
|
5439
|
-
var invariant = _dereq_(
|
|
5440
|
-
var warning = _dereq_(
|
|
5548
|
+
var canDefineProperty = _dereq_(128);
|
|
5549
|
+
var emptyObject = _dereq_(166);
|
|
5550
|
+
var invariant = _dereq_(173);
|
|
5551
|
+
var warning = _dereq_(183);
|
|
5441
5552
|
|
|
5442
5553
|
/**
|
|
5443
5554
|
* Base class helpers for the updating state of a component.
|
|
@@ -5539,7 +5650,7 @@ if ("development" !== 'production') {
|
|
|
5539
5650
|
}
|
|
5540
5651
|
|
|
5541
5652
|
module.exports = ReactComponent;
|
|
5542
|
-
},{"
|
|
5653
|
+
},{"128":128,"166":166,"173":173,"183":183,"77":77,"86":86}],35:[function(_dereq_,module,exports){
|
|
5543
5654
|
/**
|
|
5544
5655
|
* Copyright 2013-present, Facebook, Inc.
|
|
5545
5656
|
* All rights reserved.
|
|
@@ -5554,8 +5665,8 @@ module.exports = ReactComponent;
|
|
|
5554
5665
|
'use strict';
|
|
5555
5666
|
|
|
5556
5667
|
var DOMChildrenOperations = _dereq_(7);
|
|
5557
|
-
var ReactDOMIDOperations = _dereq_(
|
|
5558
|
-
var ReactPerf = _dereq_(
|
|
5668
|
+
var ReactDOMIDOperations = _dereq_(50);
|
|
5669
|
+
var ReactPerf = _dereq_(88);
|
|
5559
5670
|
|
|
5560
5671
|
/**
|
|
5561
5672
|
* Abstracts away all functionality of the reconciler that requires knowledge of
|
|
@@ -5584,7 +5695,7 @@ ReactPerf.measureMethods(ReactComponentBrowserEnvironment, 'ReactComponentBrowse
|
|
|
5584
5695
|
});
|
|
5585
5696
|
|
|
5586
5697
|
module.exports = ReactComponentBrowserEnvironment;
|
|
5587
|
-
},{"
|
|
5698
|
+
},{"50":50,"7":7,"88":88}],36:[function(_dereq_,module,exports){
|
|
5588
5699
|
/**
|
|
5589
5700
|
* Copyright 2014-present, Facebook, Inc.
|
|
5590
5701
|
* All rights reserved.
|
|
@@ -5598,7 +5709,7 @@ module.exports = ReactComponentBrowserEnvironment;
|
|
|
5598
5709
|
|
|
5599
5710
|
'use strict';
|
|
5600
5711
|
|
|
5601
|
-
var invariant = _dereq_(
|
|
5712
|
+
var invariant = _dereq_(173);
|
|
5602
5713
|
|
|
5603
5714
|
var injected = false;
|
|
5604
5715
|
|
|
@@ -5636,7 +5747,7 @@ var ReactComponentEnvironment = {
|
|
|
5636
5747
|
};
|
|
5637
5748
|
|
|
5638
5749
|
module.exports = ReactComponentEnvironment;
|
|
5639
|
-
},{"
|
|
5750
|
+
},{"173":173}],37:[function(_dereq_,module,exports){
|
|
5640
5751
|
/**
|
|
5641
5752
|
* Copyright 2013-present, Facebook, Inc.
|
|
5642
5753
|
* All rights reserved.
|
|
@@ -5650,7 +5761,7 @@ module.exports = ReactComponentEnvironment;
|
|
|
5650
5761
|
|
|
5651
5762
|
'use strict';
|
|
5652
5763
|
|
|
5653
|
-
var shallowCompare = _dereq_(
|
|
5764
|
+
var shallowCompare = _dereq_(152);
|
|
5654
5765
|
|
|
5655
5766
|
/**
|
|
5656
5767
|
* If your React component's render function is "pure", e.g. it will render the
|
|
@@ -5683,7 +5794,7 @@ var ReactComponentWithPureRenderMixin = {
|
|
|
5683
5794
|
};
|
|
5684
5795
|
|
|
5685
5796
|
module.exports = ReactComponentWithPureRenderMixin;
|
|
5686
|
-
},{"
|
|
5797
|
+
},{"152":152}],38:[function(_dereq_,module,exports){
|
|
5687
5798
|
/**
|
|
5688
5799
|
* Copyright 2013-present, Facebook, Inc.
|
|
5689
5800
|
* All rights reserved.
|
|
@@ -5697,25 +5808,25 @@ module.exports = ReactComponentWithPureRenderMixin;
|
|
|
5697
5808
|
|
|
5698
5809
|
'use strict';
|
|
5699
5810
|
|
|
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_(
|
|
5811
|
+
var _assign = _dereq_(184);
|
|
5812
|
+
|
|
5813
|
+
var ReactComponentEnvironment = _dereq_(36);
|
|
5814
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
5815
|
+
var ReactElement = _dereq_(66);
|
|
5816
|
+
var ReactErrorUtils = _dereq_(69);
|
|
5817
|
+
var ReactInstanceMap = _dereq_(76);
|
|
5818
|
+
var ReactInstrumentation = _dereq_(77);
|
|
5819
|
+
var ReactNodeTypes = _dereq_(85);
|
|
5820
|
+
var ReactPerf = _dereq_(88);
|
|
5821
|
+
var ReactPropTypeLocations = _dereq_(90);
|
|
5822
|
+
var ReactPropTypeLocationNames = _dereq_(89);
|
|
5823
|
+
var ReactReconciler = _dereq_(93);
|
|
5824
|
+
var ReactUpdateQueue = _dereq_(103);
|
|
5825
|
+
|
|
5826
|
+
var emptyObject = _dereq_(166);
|
|
5827
|
+
var invariant = _dereq_(173);
|
|
5828
|
+
var shouldUpdateReactComponent = _dereq_(153);
|
|
5829
|
+
var warning = _dereq_(183);
|
|
5719
5830
|
|
|
5720
5831
|
function getDeclarationErrorAddendum(component) {
|
|
5721
5832
|
var owner = component._currentElement._owner || null;
|
|
@@ -5742,6 +5853,10 @@ function warnIfInvalidElement(Component, element) {
|
|
|
5742
5853
|
}
|
|
5743
5854
|
}
|
|
5744
5855
|
|
|
5856
|
+
function shouldConstruct(Component) {
|
|
5857
|
+
return Component.prototype && Component.prototype.isReactComponent;
|
|
5858
|
+
}
|
|
5859
|
+
|
|
5745
5860
|
/**
|
|
5746
5861
|
* ------------------ The Life-Cycle of a Composite Component ------------------
|
|
5747
5862
|
*
|
|
@@ -5810,6 +5925,9 @@ var ReactCompositeComponentMixin = {
|
|
|
5810
5925
|
|
|
5811
5926
|
// See ReactUpdates and ReactUpdateQueue.
|
|
5812
5927
|
this._pendingCallbacks = null;
|
|
5928
|
+
|
|
5929
|
+
// ComponentWillUnmount shall only be called once
|
|
5930
|
+
this._calledComponentWillUnmount = false;
|
|
5813
5931
|
},
|
|
5814
5932
|
|
|
5815
5933
|
/**
|
|
@@ -5835,37 +5953,15 @@ var ReactCompositeComponentMixin = {
|
|
|
5835
5953
|
var Component = this._currentElement.type;
|
|
5836
5954
|
|
|
5837
5955
|
// Initialize the public class
|
|
5838
|
-
var inst;
|
|
5956
|
+
var inst = this._constructComponent(publicProps, publicContext);
|
|
5839
5957
|
var renderedElement;
|
|
5840
5958
|
|
|
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
|
-
}
|
|
5959
|
+
// Support functional components
|
|
5960
|
+
if (!shouldConstruct(Component) && (inst == null || inst.render == null)) {
|
|
5961
|
+
renderedElement = inst;
|
|
5962
|
+
warnIfInvalidElement(Component, renderedElement);
|
|
5963
|
+
!(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;
|
|
5964
|
+
inst = new StatelessComponent(Component);
|
|
5869
5965
|
}
|
|
5870
5966
|
|
|
5871
5967
|
if ("development" !== 'production') {
|
|
@@ -5930,6 +6026,28 @@ var ReactCompositeComponentMixin = {
|
|
|
5930
6026
|
return markup;
|
|
5931
6027
|
},
|
|
5932
6028
|
|
|
6029
|
+
_constructComponent: function (publicProps, publicContext) {
|
|
6030
|
+
if ("development" !== 'production') {
|
|
6031
|
+
ReactCurrentOwner.current = this;
|
|
6032
|
+
try {
|
|
6033
|
+
return this._constructComponentWithoutOwner(publicProps, publicContext);
|
|
6034
|
+
} finally {
|
|
6035
|
+
ReactCurrentOwner.current = null;
|
|
6036
|
+
}
|
|
6037
|
+
} else {
|
|
6038
|
+
return this._constructComponentWithoutOwner(publicProps, publicContext);
|
|
6039
|
+
}
|
|
6040
|
+
},
|
|
6041
|
+
|
|
6042
|
+
_constructComponentWithoutOwner: function (publicProps, publicContext) {
|
|
6043
|
+
var Component = this._currentElement.type;
|
|
6044
|
+
if (shouldConstruct(Component)) {
|
|
6045
|
+
return new Component(publicProps, publicContext, ReactUpdateQueue);
|
|
6046
|
+
} else {
|
|
6047
|
+
return Component(publicProps, publicContext, ReactUpdateQueue);
|
|
6048
|
+
}
|
|
6049
|
+
},
|
|
6050
|
+
|
|
5933
6051
|
performInitialMountWithErrorHandling: function (renderedElement, nativeParent, nativeContainerInfo, transaction, context) {
|
|
5934
6052
|
var markup;
|
|
5935
6053
|
var checkpoint = transaction.checkpoint();
|
|
@@ -5994,7 +6112,8 @@ var ReactCompositeComponentMixin = {
|
|
|
5994
6112
|
}
|
|
5995
6113
|
var inst = this._instance;
|
|
5996
6114
|
|
|
5997
|
-
if (inst.componentWillUnmount) {
|
|
6115
|
+
if (inst.componentWillUnmount && !inst._calledComponentWillUnmount) {
|
|
6116
|
+
inst._calledComponentWillUnmount = true;
|
|
5998
6117
|
if (safely) {
|
|
5999
6118
|
var name = this.getName() + '.componentWillUnmount()';
|
|
6000
6119
|
ReactErrorUtils.invokeGuardedCallback(name, inst.componentWillUnmount.bind(inst));
|
|
@@ -6470,7 +6589,7 @@ var ReactCompositeComponent = {
|
|
|
6470
6589
|
};
|
|
6471
6590
|
|
|
6472
6591
|
module.exports = ReactCompositeComponent;
|
|
6473
|
-
},{"
|
|
6592
|
+
},{"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
6593
|
/**
|
|
6475
6594
|
* Copyright 2013-present, Facebook, Inc.
|
|
6476
6595
|
* All rights reserved.
|
|
@@ -6502,7 +6621,7 @@ var ReactCurrentOwner = {
|
|
|
6502
6621
|
};
|
|
6503
6622
|
|
|
6504
6623
|
module.exports = ReactCurrentOwner;
|
|
6505
|
-
},{}],
|
|
6624
|
+
},{}],40:[function(_dereq_,module,exports){
|
|
6506
6625
|
/**
|
|
6507
6626
|
* Copyright 2013-present, Facebook, Inc.
|
|
6508
6627
|
* All rights reserved.
|
|
@@ -6518,18 +6637,18 @@ module.exports = ReactCurrentOwner;
|
|
|
6518
6637
|
|
|
6519
6638
|
'use strict';
|
|
6520
6639
|
|
|
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_(
|
|
6640
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
6641
|
+
var ReactDefaultInjection = _dereq_(63);
|
|
6642
|
+
var ReactMount = _dereq_(81);
|
|
6643
|
+
var ReactPerf = _dereq_(88);
|
|
6644
|
+
var ReactReconciler = _dereq_(93);
|
|
6645
|
+
var ReactUpdates = _dereq_(104);
|
|
6646
|
+
var ReactVersion = _dereq_(105);
|
|
6528
6647
|
|
|
6529
|
-
var findDOMNode = _dereq_(
|
|
6530
|
-
var getNativeComponentFromComposite = _dereq_(
|
|
6531
|
-
var renderSubtreeIntoContainer = _dereq_(
|
|
6532
|
-
var warning = _dereq_(
|
|
6648
|
+
var findDOMNode = _dereq_(132);
|
|
6649
|
+
var getNativeComponentFromComposite = _dereq_(140);
|
|
6650
|
+
var renderSubtreeIntoContainer = _dereq_(149);
|
|
6651
|
+
var warning = _dereq_(183);
|
|
6533
6652
|
|
|
6534
6653
|
ReactDefaultInjection.inject();
|
|
6535
6654
|
|
|
@@ -6571,7 +6690,7 @@ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVT
|
|
|
6571
6690
|
}
|
|
6572
6691
|
|
|
6573
6692
|
if ("development" !== 'production') {
|
|
6574
|
-
var ExecutionEnvironment = _dereq_(
|
|
6693
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
6575
6694
|
if (ExecutionEnvironment.canUseDOM && window.top === window.self) {
|
|
6576
6695
|
|
|
6577
6696
|
// First check if devtools is not installed
|
|
@@ -6607,7 +6726,7 @@ if ("development" !== 'production') {
|
|
|
6607
6726
|
}
|
|
6608
6727
|
|
|
6609
6728
|
module.exports = React;
|
|
6610
|
-
},{"
|
|
6729
|
+
},{"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
6730
|
/**
|
|
6612
6731
|
* Copyright 2013-present, Facebook, Inc.
|
|
6613
6732
|
* All rights reserved.
|
|
@@ -6621,44 +6740,18 @@ module.exports = React;
|
|
|
6621
6740
|
|
|
6622
6741
|
'use strict';
|
|
6623
6742
|
|
|
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
|
-
};
|
|
6743
|
+
var DisabledInputUtils = _dereq_(14);
|
|
6637
6744
|
|
|
6638
6745
|
/**
|
|
6639
6746
|
* Implements a <button> native component that does not receive mouse events
|
|
6640
6747
|
* when `disabled` is set.
|
|
6641
6748
|
*/
|
|
6642
6749
|
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
|
-
}
|
|
6750
|
+
getNativeProps: DisabledInputUtils.getNativeProps
|
|
6658
6751
|
};
|
|
6659
6752
|
|
|
6660
6753
|
module.exports = ReactDOMButton;
|
|
6661
|
-
},{}],
|
|
6754
|
+
},{"14":14}],42:[function(_dereq_,module,exports){
|
|
6662
6755
|
/**
|
|
6663
6756
|
* Copyright 2013-present, Facebook, Inc.
|
|
6664
6757
|
* All rights reserved.
|
|
@@ -6674,7 +6767,7 @@ module.exports = ReactDOMButton;
|
|
|
6674
6767
|
|
|
6675
6768
|
'use strict';
|
|
6676
6769
|
|
|
6677
|
-
var _assign = _dereq_(
|
|
6770
|
+
var _assign = _dereq_(184);
|
|
6678
6771
|
|
|
6679
6772
|
var AutoFocusUtils = _dereq_(1);
|
|
6680
6773
|
var CSSPropertyOperations = _dereq_(4);
|
|
@@ -6682,28 +6775,28 @@ var DOMLazyTree = _dereq_(8);
|
|
|
6682
6775
|
var DOMNamespaces = _dereq_(9);
|
|
6683
6776
|
var DOMProperty = _dereq_(10);
|
|
6684
6777
|
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
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
6701
|
-
var invariant = _dereq_(
|
|
6702
|
-
var isEventSupported = _dereq_(
|
|
6703
|
-
var keyOf = _dereq_(
|
|
6704
|
-
var shallowEqual = _dereq_(
|
|
6705
|
-
var validateDOMNesting = _dereq_(
|
|
6706
|
-
var warning = _dereq_(
|
|
6778
|
+
var EventConstants = _dereq_(16);
|
|
6779
|
+
var EventPluginHub = _dereq_(17);
|
|
6780
|
+
var EventPluginRegistry = _dereq_(18);
|
|
6781
|
+
var ReactBrowserEventEmitter = _dereq_(28);
|
|
6782
|
+
var ReactComponentBrowserEnvironment = _dereq_(35);
|
|
6783
|
+
var ReactDOMButton = _dereq_(41);
|
|
6784
|
+
var ReactDOMComponentFlags = _dereq_(43);
|
|
6785
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
6786
|
+
var ReactDOMInput = _dereq_(51);
|
|
6787
|
+
var ReactDOMOption = _dereq_(53);
|
|
6788
|
+
var ReactDOMSelect = _dereq_(54);
|
|
6789
|
+
var ReactDOMTextarea = _dereq_(58);
|
|
6790
|
+
var ReactMultiChild = _dereq_(82);
|
|
6791
|
+
var ReactPerf = _dereq_(88);
|
|
6792
|
+
|
|
6793
|
+
var escapeTextContentForBrowser = _dereq_(131);
|
|
6794
|
+
var invariant = _dereq_(173);
|
|
6795
|
+
var isEventSupported = _dereq_(145);
|
|
6796
|
+
var keyOf = _dereq_(177);
|
|
6797
|
+
var shallowEqual = _dereq_(182);
|
|
6798
|
+
var validateDOMNesting = _dereq_(156);
|
|
6799
|
+
var warning = _dereq_(183);
|
|
6707
6800
|
|
|
6708
6801
|
var Flags = ReactDOMComponentFlags;
|
|
6709
6802
|
var deleteListener = EventPluginHub.deleteListener;
|
|
@@ -6722,6 +6815,9 @@ var RESERVED_PROPS = {
|
|
|
6722
6815
|
suppressContentEditableWarning: null
|
|
6723
6816
|
};
|
|
6724
6817
|
|
|
6818
|
+
// Node type for document fragments (Node.DOCUMENT_FRAGMENT_NODE).
|
|
6819
|
+
var DOC_FRAGMENT_TYPE = 11;
|
|
6820
|
+
|
|
6725
6821
|
function getDeclarationErrorAddendum(internalInstance) {
|
|
6726
6822
|
if (internalInstance) {
|
|
6727
6823
|
var owner = internalInstance._currentElement._owner || null;
|
|
@@ -6818,7 +6914,8 @@ function enqueuePutListener(inst, registrationName, listener, transaction) {
|
|
|
6818
6914
|
"development" !== 'production' ? warning(registrationName !== 'onScroll' || isEventSupported('scroll', true), 'This browser doesn\'t support the `onScroll` event') : void 0;
|
|
6819
6915
|
}
|
|
6820
6916
|
var containerInfo = inst._nativeContainerInfo;
|
|
6821
|
-
var
|
|
6917
|
+
var isDocumentFragment = containerInfo._node && containerInfo._node.nodeType === DOC_FRAGMENT_TYPE;
|
|
6918
|
+
var doc = isDocumentFragment ? containerInfo._node : containerInfo._ownerDocument;
|
|
6822
6919
|
if (!doc) {
|
|
6823
6920
|
// Server rendering.
|
|
6824
6921
|
return;
|
|
@@ -7564,7 +7661,7 @@ ReactPerf.measureMethods(ReactDOMComponent.Mixin, 'ReactDOMComponent', {
|
|
|
7564
7661
|
_assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);
|
|
7565
7662
|
|
|
7566
7663
|
module.exports = ReactDOMComponent;
|
|
7567
|
-
},{"1":1,"10":10,"11":11,"
|
|
7664
|
+
},{"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}],43:[function(_dereq_,module,exports){
|
|
7568
7665
|
/**
|
|
7569
7666
|
* Copyright 2015-present, Facebook, Inc.
|
|
7570
7667
|
* All rights reserved.
|
|
@@ -7583,7 +7680,7 @@ var ReactDOMComponentFlags = {
|
|
|
7583
7680
|
};
|
|
7584
7681
|
|
|
7585
7682
|
module.exports = ReactDOMComponentFlags;
|
|
7586
|
-
},{}],
|
|
7683
|
+
},{}],44:[function(_dereq_,module,exports){
|
|
7587
7684
|
/**
|
|
7588
7685
|
* Copyright 2013-present, Facebook, Inc.
|
|
7589
7686
|
* All rights reserved.
|
|
@@ -7598,9 +7695,9 @@ module.exports = ReactDOMComponentFlags;
|
|
|
7598
7695
|
'use strict';
|
|
7599
7696
|
|
|
7600
7697
|
var DOMProperty = _dereq_(10);
|
|
7601
|
-
var ReactDOMComponentFlags = _dereq_(
|
|
7698
|
+
var ReactDOMComponentFlags = _dereq_(43);
|
|
7602
7699
|
|
|
7603
|
-
var invariant = _dereq_(
|
|
7700
|
+
var invariant = _dereq_(173);
|
|
7604
7701
|
|
|
7605
7702
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
7606
7703
|
var Flags = ReactDOMComponentFlags;
|
|
@@ -7770,7 +7867,7 @@ var ReactDOMComponentTree = {
|
|
|
7770
7867
|
};
|
|
7771
7868
|
|
|
7772
7869
|
module.exports = ReactDOMComponentTree;
|
|
7773
|
-
},{"10":10,"
|
|
7870
|
+
},{"10":10,"173":173,"43":43}],45:[function(_dereq_,module,exports){
|
|
7774
7871
|
/**
|
|
7775
7872
|
* Copyright 2013-present, Facebook, Inc.
|
|
7776
7873
|
* All rights reserved.
|
|
@@ -7784,7 +7881,7 @@ module.exports = ReactDOMComponentTree;
|
|
|
7784
7881
|
|
|
7785
7882
|
'use strict';
|
|
7786
7883
|
|
|
7787
|
-
var validateDOMNesting = _dereq_(
|
|
7884
|
+
var validateDOMNesting = _dereq_(156);
|
|
7788
7885
|
|
|
7789
7886
|
var DOC_NODE_TYPE = 9;
|
|
7790
7887
|
|
|
@@ -7793,6 +7890,7 @@ function ReactDOMContainerInfo(topLevelWrapper, node) {
|
|
|
7793
7890
|
_topLevelWrapper: topLevelWrapper,
|
|
7794
7891
|
_idCounter: 1,
|
|
7795
7892
|
_ownerDocument: node ? node.nodeType === DOC_NODE_TYPE ? node : node.ownerDocument : null,
|
|
7893
|
+
_node: node,
|
|
7796
7894
|
_tag: node ? node.nodeName.toLowerCase() : null,
|
|
7797
7895
|
_namespaceURI: node ? node.namespaceURI : null
|
|
7798
7896
|
};
|
|
@@ -7803,7 +7901,7 @@ function ReactDOMContainerInfo(topLevelWrapper, node) {
|
|
|
7803
7901
|
}
|
|
7804
7902
|
|
|
7805
7903
|
module.exports = ReactDOMContainerInfo;
|
|
7806
|
-
},{"
|
|
7904
|
+
},{"156":156}],46:[function(_dereq_,module,exports){
|
|
7807
7905
|
/**
|
|
7808
7906
|
* Copyright 2013-present, Facebook, Inc.
|
|
7809
7907
|
* All rights reserved.
|
|
@@ -7817,9 +7915,9 @@ module.exports = ReactDOMContainerInfo;
|
|
|
7817
7915
|
|
|
7818
7916
|
'use strict';
|
|
7819
7917
|
|
|
7820
|
-
var ReactDOMUnknownPropertyDevtool = _dereq_(
|
|
7918
|
+
var ReactDOMUnknownPropertyDevtool = _dereq_(60);
|
|
7821
7919
|
|
|
7822
|
-
var warning = _dereq_(
|
|
7920
|
+
var warning = _dereq_(183);
|
|
7823
7921
|
|
|
7824
7922
|
var eventHandlers = [];
|
|
7825
7923
|
var handlerDoesThrowForEvent = {};
|
|
@@ -7865,7 +7963,7 @@ var ReactDOMDebugTool = {
|
|
|
7865
7963
|
ReactDOMDebugTool.addDevtool(ReactDOMUnknownPropertyDevtool);
|
|
7866
7964
|
|
|
7867
7965
|
module.exports = ReactDOMDebugTool;
|
|
7868
|
-
},{"
|
|
7966
|
+
},{"183":183,"60":60}],47:[function(_dereq_,module,exports){
|
|
7869
7967
|
/**
|
|
7870
7968
|
* Copyright 2014-present, Facebook, Inc.
|
|
7871
7969
|
* All rights reserved.
|
|
@@ -7879,10 +7977,10 @@ module.exports = ReactDOMDebugTool;
|
|
|
7879
7977
|
|
|
7880
7978
|
'use strict';
|
|
7881
7979
|
|
|
7882
|
-
var _assign = _dereq_(
|
|
7980
|
+
var _assign = _dereq_(184);
|
|
7883
7981
|
|
|
7884
7982
|
var DOMLazyTree = _dereq_(8);
|
|
7885
|
-
var ReactDOMComponentTree = _dereq_(
|
|
7983
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
7886
7984
|
|
|
7887
7985
|
var ReactDOMEmptyComponent = function (instantiate) {
|
|
7888
7986
|
// ReactCompositeComponent uses this:
|
|
@@ -7926,7 +8024,7 @@ _assign(ReactDOMEmptyComponent.prototype, {
|
|
|
7926
8024
|
});
|
|
7927
8025
|
|
|
7928
8026
|
module.exports = ReactDOMEmptyComponent;
|
|
7929
|
-
},{"
|
|
8027
|
+
},{"184":184,"44":44,"8":8}],48:[function(_dereq_,module,exports){
|
|
7930
8028
|
/**
|
|
7931
8029
|
* Copyright 2013-present, Facebook, Inc.
|
|
7932
8030
|
* All rights reserved.
|
|
@@ -7940,10 +8038,10 @@ module.exports = ReactDOMEmptyComponent;
|
|
|
7940
8038
|
|
|
7941
8039
|
'use strict';
|
|
7942
8040
|
|
|
7943
|
-
var ReactElement = _dereq_(
|
|
7944
|
-
var ReactElementValidator = _dereq_(
|
|
8041
|
+
var ReactElement = _dereq_(66);
|
|
8042
|
+
var ReactElementValidator = _dereq_(67);
|
|
7945
8043
|
|
|
7946
|
-
var mapObject = _dereq_(
|
|
8044
|
+
var mapObject = _dereq_(178);
|
|
7947
8045
|
|
|
7948
8046
|
/**
|
|
7949
8047
|
* Create a factory that creates HTML tag elements.
|
|
@@ -8103,7 +8201,7 @@ var ReactDOMFactories = mapObject({
|
|
|
8103
8201
|
}, createDOMFactory);
|
|
8104
8202
|
|
|
8105
8203
|
module.exports = ReactDOMFactories;
|
|
8106
|
-
},{"
|
|
8204
|
+
},{"178":178,"66":66,"67":67}],49:[function(_dereq_,module,exports){
|
|
8107
8205
|
/**
|
|
8108
8206
|
* Copyright 2013-present, Facebook, Inc.
|
|
8109
8207
|
* All rights reserved.
|
|
@@ -8122,7 +8220,7 @@ var ReactDOMFeatureFlags = {
|
|
|
8122
8220
|
};
|
|
8123
8221
|
|
|
8124
8222
|
module.exports = ReactDOMFeatureFlags;
|
|
8125
|
-
},{}],
|
|
8223
|
+
},{}],50:[function(_dereq_,module,exports){
|
|
8126
8224
|
/**
|
|
8127
8225
|
* Copyright 2013-present, Facebook, Inc.
|
|
8128
8226
|
* All rights reserved.
|
|
@@ -8137,8 +8235,8 @@ module.exports = ReactDOMFeatureFlags;
|
|
|
8137
8235
|
'use strict';
|
|
8138
8236
|
|
|
8139
8237
|
var DOMChildrenOperations = _dereq_(7);
|
|
8140
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8141
|
-
var ReactPerf = _dereq_(
|
|
8238
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
8239
|
+
var ReactPerf = _dereq_(88);
|
|
8142
8240
|
|
|
8143
8241
|
/**
|
|
8144
8242
|
* Operations used to process updates to DOM nodes.
|
|
@@ -8162,7 +8260,7 @@ ReactPerf.measureMethods(ReactDOMIDOperations, 'ReactDOMIDOperations', {
|
|
|
8162
8260
|
});
|
|
8163
8261
|
|
|
8164
8262
|
module.exports = ReactDOMIDOperations;
|
|
8165
|
-
},{"
|
|
8263
|
+
},{"44":44,"7":7,"88":88}],51:[function(_dereq_,module,exports){
|
|
8166
8264
|
/**
|
|
8167
8265
|
* Copyright 2013-present, Facebook, Inc.
|
|
8168
8266
|
* All rights reserved.
|
|
@@ -8176,15 +8274,16 @@ module.exports = ReactDOMIDOperations;
|
|
|
8176
8274
|
|
|
8177
8275
|
'use strict';
|
|
8178
8276
|
|
|
8179
|
-
var _assign = _dereq_(
|
|
8277
|
+
var _assign = _dereq_(184);
|
|
8180
8278
|
|
|
8279
|
+
var DisabledInputUtils = _dereq_(14);
|
|
8181
8280
|
var DOMPropertyOperations = _dereq_(11);
|
|
8182
|
-
var LinkedValueUtils = _dereq_(
|
|
8183
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8184
|
-
var ReactUpdates = _dereq_(
|
|
8281
|
+
var LinkedValueUtils = _dereq_(25);
|
|
8282
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
8283
|
+
var ReactUpdates = _dereq_(104);
|
|
8185
8284
|
|
|
8186
|
-
var invariant = _dereq_(
|
|
8187
|
-
var warning = _dereq_(
|
|
8285
|
+
var invariant = _dereq_(173);
|
|
8286
|
+
var warning = _dereq_(183);
|
|
8188
8287
|
|
|
8189
8288
|
var didWarnValueLink = false;
|
|
8190
8289
|
var didWarnCheckedLink = false;
|
|
@@ -8234,7 +8333,7 @@ var ReactDOMInput = {
|
|
|
8234
8333
|
// Make sure we set .type before any other properties (setting .value
|
|
8235
8334
|
// before .type means .value is lost in IE11 and below)
|
|
8236
8335
|
type: undefined
|
|
8237
|
-
}, props, {
|
|
8336
|
+
}, DisabledInputUtils.getNativeProps(inst, props), {
|
|
8238
8337
|
defaultChecked: undefined,
|
|
8239
8338
|
defaultValue: undefined,
|
|
8240
8339
|
value: value != null ? value : inst._wrapperState.initialValue,
|
|
@@ -8366,7 +8465,7 @@ function _handleChange(event) {
|
|
|
8366
8465
|
}
|
|
8367
8466
|
|
|
8368
8467
|
module.exports = ReactDOMInput;
|
|
8369
|
-
},{"
|
|
8468
|
+
},{"104":104,"11":11,"14":14,"173":173,"183":183,"184":184,"25":25,"44":44}],52:[function(_dereq_,module,exports){
|
|
8370
8469
|
/**
|
|
8371
8470
|
* Copyright 2013-present, Facebook, Inc.
|
|
8372
8471
|
* All rights reserved.
|
|
@@ -8380,10 +8479,10 @@ module.exports = ReactDOMInput;
|
|
|
8380
8479
|
|
|
8381
8480
|
'use strict';
|
|
8382
8481
|
|
|
8383
|
-
var ReactDOMDebugTool = _dereq_(
|
|
8482
|
+
var ReactDOMDebugTool = _dereq_(46);
|
|
8384
8483
|
|
|
8385
8484
|
module.exports = { debugTool: ReactDOMDebugTool };
|
|
8386
|
-
},{"
|
|
8485
|
+
},{"46":46}],53:[function(_dereq_,module,exports){
|
|
8387
8486
|
/**
|
|
8388
8487
|
* Copyright 2013-present, Facebook, Inc.
|
|
8389
8488
|
* All rights reserved.
|
|
@@ -8397,13 +8496,13 @@ module.exports = { debugTool: ReactDOMDebugTool };
|
|
|
8397
8496
|
|
|
8398
8497
|
'use strict';
|
|
8399
8498
|
|
|
8400
|
-
var _assign = _dereq_(
|
|
8499
|
+
var _assign = _dereq_(184);
|
|
8401
8500
|
|
|
8402
|
-
var ReactChildren = _dereq_(
|
|
8403
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8404
|
-
var ReactDOMSelect = _dereq_(
|
|
8501
|
+
var ReactChildren = _dereq_(32);
|
|
8502
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
8503
|
+
var ReactDOMSelect = _dereq_(54);
|
|
8405
8504
|
|
|
8406
|
-
var warning = _dereq_(
|
|
8505
|
+
var warning = _dereq_(183);
|
|
8407
8506
|
|
|
8408
8507
|
/**
|
|
8409
8508
|
* Implements an <option> native component that warns when `selected` is set.
|
|
@@ -8417,8 +8516,16 @@ var ReactDOMOption = {
|
|
|
8417
8516
|
|
|
8418
8517
|
// Look up whether this option is 'selected'
|
|
8419
8518
|
var selectValue = null;
|
|
8420
|
-
if (nativeParent != null
|
|
8421
|
-
|
|
8519
|
+
if (nativeParent != null) {
|
|
8520
|
+
var selectParent = nativeParent;
|
|
8521
|
+
|
|
8522
|
+
if (selectParent._tag === 'optgroup') {
|
|
8523
|
+
selectParent = selectParent._nativeParent;
|
|
8524
|
+
}
|
|
8525
|
+
|
|
8526
|
+
if (selectParent != null && selectParent._tag === 'select') {
|
|
8527
|
+
selectValue = ReactDOMSelect.getSelectValueContext(selectParent);
|
|
8528
|
+
}
|
|
8422
8529
|
}
|
|
8423
8530
|
|
|
8424
8531
|
// If the value is null (e.g., no specified value or after initial mount)
|
|
@@ -8485,7 +8592,7 @@ var ReactDOMOption = {
|
|
|
8485
8592
|
};
|
|
8486
8593
|
|
|
8487
8594
|
module.exports = ReactDOMOption;
|
|
8488
|
-
},{"
|
|
8595
|
+
},{"183":183,"184":184,"32":32,"44":44,"54":54}],54:[function(_dereq_,module,exports){
|
|
8489
8596
|
/**
|
|
8490
8597
|
* Copyright 2013-present, Facebook, Inc.
|
|
8491
8598
|
* All rights reserved.
|
|
@@ -8499,13 +8606,14 @@ module.exports = ReactDOMOption;
|
|
|
8499
8606
|
|
|
8500
8607
|
'use strict';
|
|
8501
8608
|
|
|
8502
|
-
var _assign = _dereq_(
|
|
8609
|
+
var _assign = _dereq_(184);
|
|
8503
8610
|
|
|
8504
|
-
var
|
|
8505
|
-
var
|
|
8506
|
-
var
|
|
8611
|
+
var DisabledInputUtils = _dereq_(14);
|
|
8612
|
+
var LinkedValueUtils = _dereq_(25);
|
|
8613
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
8614
|
+
var ReactUpdates = _dereq_(104);
|
|
8507
8615
|
|
|
8508
|
-
var warning = _dereq_(
|
|
8616
|
+
var warning = _dereq_(183);
|
|
8509
8617
|
|
|
8510
8618
|
var didWarnValueLink = false;
|
|
8511
8619
|
var didWarnValueNull = false;
|
|
@@ -8624,7 +8732,7 @@ function updateOptions(inst, multiple, propValue) {
|
|
|
8624
8732
|
*/
|
|
8625
8733
|
var ReactDOMSelect = {
|
|
8626
8734
|
getNativeProps: function (inst, props) {
|
|
8627
|
-
return _assign({}, props, {
|
|
8735
|
+
return _assign({}, DisabledInputUtils.getNativeProps(inst, props), {
|
|
8628
8736
|
onChange: inst._wrapperState.onChange,
|
|
8629
8737
|
value: undefined
|
|
8630
8738
|
});
|
|
@@ -8698,7 +8806,7 @@ function _handleChange(event) {
|
|
|
8698
8806
|
}
|
|
8699
8807
|
|
|
8700
8808
|
module.exports = ReactDOMSelect;
|
|
8701
|
-
},{"
|
|
8809
|
+
},{"104":104,"14":14,"183":183,"184":184,"25":25,"44":44}],55:[function(_dereq_,module,exports){
|
|
8702
8810
|
/**
|
|
8703
8811
|
* Copyright 2013-present, Facebook, Inc.
|
|
8704
8812
|
* All rights reserved.
|
|
@@ -8712,10 +8820,10 @@ module.exports = ReactDOMSelect;
|
|
|
8712
8820
|
|
|
8713
8821
|
'use strict';
|
|
8714
8822
|
|
|
8715
|
-
var ExecutionEnvironment = _dereq_(
|
|
8823
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
8716
8824
|
|
|
8717
|
-
var getNodeForCharacterOffset = _dereq_(
|
|
8718
|
-
var getTextContentAccessor = _dereq_(
|
|
8825
|
+
var getNodeForCharacterOffset = _dereq_(141);
|
|
8826
|
+
var getTextContentAccessor = _dereq_(142);
|
|
8719
8827
|
|
|
8720
8828
|
/**
|
|
8721
8829
|
* While `isCollapsed` is available on the Selection object and `collapsed`
|
|
@@ -8911,7 +9019,7 @@ var ReactDOMSelection = {
|
|
|
8911
9019
|
};
|
|
8912
9020
|
|
|
8913
9021
|
module.exports = ReactDOMSelection;
|
|
8914
|
-
},{"
|
|
9022
|
+
},{"141":141,"142":142,"159":159}],56:[function(_dereq_,module,exports){
|
|
8915
9023
|
/**
|
|
8916
9024
|
* Copyright 2013-present, Facebook, Inc.
|
|
8917
9025
|
* All rights reserved.
|
|
@@ -8925,9 +9033,9 @@ module.exports = ReactDOMSelection;
|
|
|
8925
9033
|
|
|
8926
9034
|
'use strict';
|
|
8927
9035
|
|
|
8928
|
-
var ReactDefaultInjection = _dereq_(
|
|
8929
|
-
var ReactServerRendering = _dereq_(
|
|
8930
|
-
var ReactVersion = _dereq_(
|
|
9036
|
+
var ReactDefaultInjection = _dereq_(63);
|
|
9037
|
+
var ReactServerRendering = _dereq_(96);
|
|
9038
|
+
var ReactVersion = _dereq_(105);
|
|
8931
9039
|
|
|
8932
9040
|
ReactDefaultInjection.inject();
|
|
8933
9041
|
|
|
@@ -8938,7 +9046,7 @@ var ReactDOMServer = {
|
|
|
8938
9046
|
};
|
|
8939
9047
|
|
|
8940
9048
|
module.exports = ReactDOMServer;
|
|
8941
|
-
},{"
|
|
9049
|
+
},{"105":105,"63":63,"96":96}],57:[function(_dereq_,module,exports){
|
|
8942
9050
|
/**
|
|
8943
9051
|
* Copyright 2013-present, Facebook, Inc.
|
|
8944
9052
|
* All rights reserved.
|
|
@@ -8952,16 +9060,16 @@ module.exports = ReactDOMServer;
|
|
|
8952
9060
|
|
|
8953
9061
|
'use strict';
|
|
8954
9062
|
|
|
8955
|
-
var _assign = _dereq_(
|
|
9063
|
+
var _assign = _dereq_(184);
|
|
8956
9064
|
|
|
8957
9065
|
var DOMChildrenOperations = _dereq_(7);
|
|
8958
9066
|
var DOMLazyTree = _dereq_(8);
|
|
8959
|
-
var ReactDOMComponentTree = _dereq_(
|
|
8960
|
-
var ReactPerf = _dereq_(
|
|
9067
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
9068
|
+
var ReactPerf = _dereq_(88);
|
|
8961
9069
|
|
|
8962
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
8963
|
-
var invariant = _dereq_(
|
|
8964
|
-
var validateDOMNesting = _dereq_(
|
|
9070
|
+
var escapeTextContentForBrowser = _dereq_(131);
|
|
9071
|
+
var invariant = _dereq_(173);
|
|
9072
|
+
var validateDOMNesting = _dereq_(156);
|
|
8965
9073
|
|
|
8966
9074
|
/**
|
|
8967
9075
|
* Text nodes violate a couple assumptions that React makes about components:
|
|
@@ -9108,7 +9216,7 @@ ReactPerf.measureMethods(ReactDOMTextComponent.prototype, 'ReactDOMTextComponent
|
|
|
9108
9216
|
});
|
|
9109
9217
|
|
|
9110
9218
|
module.exports = ReactDOMTextComponent;
|
|
9111
|
-
},{"
|
|
9219
|
+
},{"131":131,"156":156,"173":173,"184":184,"44":44,"7":7,"8":8,"88":88}],58:[function(_dereq_,module,exports){
|
|
9112
9220
|
/**
|
|
9113
9221
|
* Copyright 2013-present, Facebook, Inc.
|
|
9114
9222
|
* All rights reserved.
|
|
@@ -9122,15 +9230,16 @@ module.exports = ReactDOMTextComponent;
|
|
|
9122
9230
|
|
|
9123
9231
|
'use strict';
|
|
9124
9232
|
|
|
9125
|
-
var _assign = _dereq_(
|
|
9233
|
+
var _assign = _dereq_(184);
|
|
9126
9234
|
|
|
9235
|
+
var DisabledInputUtils = _dereq_(14);
|
|
9127
9236
|
var DOMPropertyOperations = _dereq_(11);
|
|
9128
|
-
var LinkedValueUtils = _dereq_(
|
|
9129
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9130
|
-
var ReactUpdates = _dereq_(
|
|
9237
|
+
var LinkedValueUtils = _dereq_(25);
|
|
9238
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
9239
|
+
var ReactUpdates = _dereq_(104);
|
|
9131
9240
|
|
|
9132
|
-
var invariant = _dereq_(
|
|
9133
|
-
var warning = _dereq_(
|
|
9241
|
+
var invariant = _dereq_(173);
|
|
9242
|
+
var warning = _dereq_(183);
|
|
9134
9243
|
|
|
9135
9244
|
var didWarnValueLink = false;
|
|
9136
9245
|
var didWarnValueNull = false;
|
|
@@ -9172,7 +9281,7 @@ var ReactDOMTextarea = {
|
|
|
9172
9281
|
|
|
9173
9282
|
// Always set children to the same thing. In IE9, the selection range will
|
|
9174
9283
|
// get reset if `textContent` is mutated.
|
|
9175
|
-
var nativeProps = _assign({}, props, {
|
|
9284
|
+
var nativeProps = _assign({}, DisabledInputUtils.getNativeProps(inst, props), {
|
|
9176
9285
|
defaultValue: undefined,
|
|
9177
9286
|
value: undefined,
|
|
9178
9287
|
children: inst._wrapperState.initialValue,
|
|
@@ -9250,7 +9359,7 @@ function _handleChange(event) {
|
|
|
9250
9359
|
}
|
|
9251
9360
|
|
|
9252
9361
|
module.exports = ReactDOMTextarea;
|
|
9253
|
-
},{"
|
|
9362
|
+
},{"104":104,"11":11,"14":14,"173":173,"183":183,"184":184,"25":25,"44":44}],59:[function(_dereq_,module,exports){
|
|
9254
9363
|
/**
|
|
9255
9364
|
* Copyright 2015-present, Facebook, Inc.
|
|
9256
9365
|
* All rights reserved.
|
|
@@ -9264,7 +9373,7 @@ module.exports = ReactDOMTextarea;
|
|
|
9264
9373
|
|
|
9265
9374
|
'use strict';
|
|
9266
9375
|
|
|
9267
|
-
var invariant = _dereq_(
|
|
9376
|
+
var invariant = _dereq_(173);
|
|
9268
9377
|
|
|
9269
9378
|
/**
|
|
9270
9379
|
* Return the lowest common ancestor of A and B, or null if they are in
|
|
@@ -9385,7 +9494,7 @@ module.exports = {
|
|
|
9385
9494
|
traverseTwoPhase: traverseTwoPhase,
|
|
9386
9495
|
traverseEnterLeave: traverseEnterLeave
|
|
9387
9496
|
};
|
|
9388
|
-
},{"
|
|
9497
|
+
},{"173":173}],60:[function(_dereq_,module,exports){
|
|
9389
9498
|
/**
|
|
9390
9499
|
* Copyright 2013-present, Facebook, Inc.
|
|
9391
9500
|
* All rights reserved.
|
|
@@ -9400,9 +9509,9 @@ module.exports = {
|
|
|
9400
9509
|
'use strict';
|
|
9401
9510
|
|
|
9402
9511
|
var DOMProperty = _dereq_(10);
|
|
9403
|
-
var EventPluginRegistry = _dereq_(
|
|
9512
|
+
var EventPluginRegistry = _dereq_(18);
|
|
9404
9513
|
|
|
9405
|
-
var warning = _dereq_(
|
|
9514
|
+
var warning = _dereq_(183);
|
|
9406
9515
|
|
|
9407
9516
|
if ("development" !== 'production') {
|
|
9408
9517
|
var reactProps = {
|
|
@@ -9450,7 +9559,7 @@ var ReactDOMUnknownPropertyDevtool = {
|
|
|
9450
9559
|
};
|
|
9451
9560
|
|
|
9452
9561
|
module.exports = ReactDOMUnknownPropertyDevtool;
|
|
9453
|
-
},{"10":10,"
|
|
9562
|
+
},{"10":10,"18":18,"183":183}],61:[function(_dereq_,module,exports){
|
|
9454
9563
|
/**
|
|
9455
9564
|
* Copyright 2016-present, Facebook, Inc.
|
|
9456
9565
|
* All rights reserved.
|
|
@@ -9464,8 +9573,8 @@ module.exports = ReactDOMUnknownPropertyDevtool;
|
|
|
9464
9573
|
|
|
9465
9574
|
'use strict';
|
|
9466
9575
|
|
|
9467
|
-
var ReactInvalidSetStateWarningDevTool = _dereq_(
|
|
9468
|
-
var warning = _dereq_(
|
|
9576
|
+
var ReactInvalidSetStateWarningDevTool = _dereq_(78);
|
|
9577
|
+
var warning = _dereq_(183);
|
|
9469
9578
|
|
|
9470
9579
|
var eventHandlers = [];
|
|
9471
9580
|
var handlerDoesThrowForEvent = {};
|
|
@@ -9523,7 +9632,7 @@ var ReactDebugTool = {
|
|
|
9523
9632
|
ReactDebugTool.addDevtool(ReactInvalidSetStateWarningDevTool);
|
|
9524
9633
|
|
|
9525
9634
|
module.exports = ReactDebugTool;
|
|
9526
|
-
},{"
|
|
9635
|
+
},{"183":183,"78":78}],62:[function(_dereq_,module,exports){
|
|
9527
9636
|
/**
|
|
9528
9637
|
* Copyright 2013-present, Facebook, Inc.
|
|
9529
9638
|
* All rights reserved.
|
|
@@ -9537,12 +9646,12 @@ module.exports = ReactDebugTool;
|
|
|
9537
9646
|
|
|
9538
9647
|
'use strict';
|
|
9539
9648
|
|
|
9540
|
-
var _assign = _dereq_(
|
|
9649
|
+
var _assign = _dereq_(184);
|
|
9541
9650
|
|
|
9542
|
-
var ReactUpdates = _dereq_(
|
|
9543
|
-
var Transaction = _dereq_(
|
|
9651
|
+
var ReactUpdates = _dereq_(104);
|
|
9652
|
+
var Transaction = _dereq_(124);
|
|
9544
9653
|
|
|
9545
|
-
var emptyFunction = _dereq_(
|
|
9654
|
+
var emptyFunction = _dereq_(165);
|
|
9546
9655
|
|
|
9547
9656
|
var RESET_BATCHED_UPDATES = {
|
|
9548
9657
|
initialize: emptyFunction,
|
|
@@ -9592,7 +9701,7 @@ var ReactDefaultBatchingStrategy = {
|
|
|
9592
9701
|
};
|
|
9593
9702
|
|
|
9594
9703
|
module.exports = ReactDefaultBatchingStrategy;
|
|
9595
|
-
},{"
|
|
9704
|
+
},{"104":104,"124":124,"165":165,"184":184}],63:[function(_dereq_,module,exports){
|
|
9596
9705
|
/**
|
|
9597
9706
|
* Copyright 2013-present, Facebook, Inc.
|
|
9598
9707
|
* All rights reserved.
|
|
@@ -9609,22 +9718,22 @@ module.exports = ReactDefaultBatchingStrategy;
|
|
|
9609
9718
|
var BeforeInputEventPlugin = _dereq_(2);
|
|
9610
9719
|
var ChangeEventPlugin = _dereq_(6);
|
|
9611
9720
|
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_(
|
|
9721
|
+
var EnterLeaveEventPlugin = _dereq_(15);
|
|
9722
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
9723
|
+
var HTMLDOMPropertyConfig = _dereq_(22);
|
|
9724
|
+
var ReactComponentBrowserEnvironment = _dereq_(35);
|
|
9725
|
+
var ReactDOMComponent = _dereq_(42);
|
|
9726
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
9727
|
+
var ReactDOMEmptyComponent = _dereq_(47);
|
|
9728
|
+
var ReactDOMTreeTraversal = _dereq_(59);
|
|
9729
|
+
var ReactDOMTextComponent = _dereq_(57);
|
|
9730
|
+
var ReactDefaultBatchingStrategy = _dereq_(62);
|
|
9731
|
+
var ReactEventListener = _dereq_(71);
|
|
9732
|
+
var ReactInjection = _dereq_(74);
|
|
9733
|
+
var ReactReconcileTransaction = _dereq_(92);
|
|
9734
|
+
var SVGDOMPropertyConfig = _dereq_(108);
|
|
9735
|
+
var SelectEventPlugin = _dereq_(109);
|
|
9736
|
+
var SimpleEventPlugin = _dereq_(110);
|
|
9628
9737
|
|
|
9629
9738
|
var alreadyInjected = false;
|
|
9630
9739
|
|
|
@@ -9677,7 +9786,7 @@ function inject() {
|
|
|
9677
9786
|
if ("development" !== 'production') {
|
|
9678
9787
|
var url = ExecutionEnvironment.canUseDOM && window.location.href || '';
|
|
9679
9788
|
if (/[?&]react_perf\b/.test(url)) {
|
|
9680
|
-
var ReactDefaultPerf = _dereq_(
|
|
9789
|
+
var ReactDefaultPerf = _dereq_(64);
|
|
9681
9790
|
ReactDefaultPerf.start();
|
|
9682
9791
|
}
|
|
9683
9792
|
}
|
|
@@ -9686,7 +9795,7 @@ function inject() {
|
|
|
9686
9795
|
module.exports = {
|
|
9687
9796
|
inject: inject
|
|
9688
9797
|
};
|
|
9689
|
-
},{"
|
|
9798
|
+
},{"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
9799
|
/**
|
|
9691
9800
|
* Copyright 2013-present, Facebook, Inc.
|
|
9692
9801
|
* All rights reserved.
|
|
@@ -9701,13 +9810,13 @@ module.exports = {
|
|
|
9701
9810
|
'use strict';
|
|
9702
9811
|
|
|
9703
9812
|
var DOMProperty = _dereq_(10);
|
|
9704
|
-
var ReactDOMComponentTree = _dereq_(
|
|
9705
|
-
var ReactDefaultPerfAnalysis = _dereq_(
|
|
9706
|
-
var ReactMount = _dereq_(
|
|
9707
|
-
var ReactPerf = _dereq_(
|
|
9813
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
9814
|
+
var ReactDefaultPerfAnalysis = _dereq_(65);
|
|
9815
|
+
var ReactMount = _dereq_(81);
|
|
9816
|
+
var ReactPerf = _dereq_(88);
|
|
9708
9817
|
|
|
9709
|
-
var performanceNow = _dereq_(
|
|
9710
|
-
var warning = _dereq_(
|
|
9818
|
+
var performanceNow = _dereq_(181);
|
|
9819
|
+
var warning = _dereq_(183);
|
|
9711
9820
|
|
|
9712
9821
|
function roundFloat(val) {
|
|
9713
9822
|
return Math.floor(val * 100) / 100;
|
|
@@ -10003,7 +10112,7 @@ var ReactDefaultPerf = {
|
|
|
10003
10112
|
};
|
|
10004
10113
|
|
|
10005
10114
|
module.exports = ReactDefaultPerf;
|
|
10006
|
-
},{"10":10,"
|
|
10115
|
+
},{"10":10,"181":181,"183":183,"44":44,"65":65,"81":81,"88":88}],65:[function(_dereq_,module,exports){
|
|
10007
10116
|
/**
|
|
10008
10117
|
* Copyright 2013-present, Facebook, Inc.
|
|
10009
10118
|
* All rights reserved.
|
|
@@ -10019,7 +10128,7 @@ module.exports = ReactDefaultPerf;
|
|
|
10019
10128
|
|
|
10020
10129
|
// Don't try to save users less than 1.2ms (a number I made up)
|
|
10021
10130
|
|
|
10022
|
-
var _assign = _dereq_(
|
|
10131
|
+
var _assign = _dereq_(184);
|
|
10023
10132
|
|
|
10024
10133
|
var DONT_CARE_THRESHOLD = 1.2;
|
|
10025
10134
|
var DOM_OPERATION_TYPES = {
|
|
@@ -10175,12 +10284,13 @@ function getUnchangedComponents(measurement) {
|
|
|
10175
10284
|
// the amount of time it took to render the entire subtree.
|
|
10176
10285
|
var cleanComponents = {};
|
|
10177
10286
|
var writes = measurement.writes;
|
|
10287
|
+
var hierarchy = measurement.hierarchy;
|
|
10178
10288
|
var dirtyComposites = {};
|
|
10179
10289
|
Object.keys(writes).forEach(function (id) {
|
|
10180
10290
|
writes[id].forEach(function (write) {
|
|
10181
10291
|
// Root mounting (innerHTML set) is recorded with an ID of ''
|
|
10182
|
-
if (id !== '') {
|
|
10183
|
-
|
|
10292
|
+
if (id !== '' && hierarchy.hasOwnProperty(id)) {
|
|
10293
|
+
hierarchy[id].forEach(function (c) {
|
|
10184
10294
|
return dirtyComposites[c] = true;
|
|
10185
10295
|
});
|
|
10186
10296
|
}
|
|
@@ -10213,7 +10323,7 @@ var ReactDefaultPerfAnalysis = {
|
|
|
10213
10323
|
};
|
|
10214
10324
|
|
|
10215
10325
|
module.exports = ReactDefaultPerfAnalysis;
|
|
10216
|
-
},{"
|
|
10326
|
+
},{"184":184}],66:[function(_dereq_,module,exports){
|
|
10217
10327
|
/**
|
|
10218
10328
|
* Copyright 2014-present, Facebook, Inc.
|
|
10219
10329
|
* All rights reserved.
|
|
@@ -10227,12 +10337,12 @@ module.exports = ReactDefaultPerfAnalysis;
|
|
|
10227
10337
|
|
|
10228
10338
|
'use strict';
|
|
10229
10339
|
|
|
10230
|
-
var _assign = _dereq_(
|
|
10340
|
+
var _assign = _dereq_(184);
|
|
10231
10341
|
|
|
10232
|
-
var ReactCurrentOwner = _dereq_(
|
|
10342
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
10233
10343
|
|
|
10234
|
-
var warning = _dereq_(
|
|
10235
|
-
var canDefineProperty = _dereq_(
|
|
10344
|
+
var warning = _dereq_(183);
|
|
10345
|
+
var canDefineProperty = _dereq_(128);
|
|
10236
10346
|
|
|
10237
10347
|
// The Symbol used to tag the ReactElement type. If there is no native Symbol
|
|
10238
10348
|
// nor polyfill, then a plain number is used for performance.
|
|
@@ -10501,7 +10611,7 @@ ReactElement.isValidElement = function (object) {
|
|
|
10501
10611
|
};
|
|
10502
10612
|
|
|
10503
10613
|
module.exports = ReactElement;
|
|
10504
|
-
},{"
|
|
10614
|
+
},{"128":128,"183":183,"184":184,"39":39}],67:[function(_dereq_,module,exports){
|
|
10505
10615
|
/**
|
|
10506
10616
|
* Copyright 2014-present, Facebook, Inc.
|
|
10507
10617
|
* All rights reserved.
|
|
@@ -10522,15 +10632,15 @@ module.exports = ReactElement;
|
|
|
10522
10632
|
|
|
10523
10633
|
'use strict';
|
|
10524
10634
|
|
|
10525
|
-
var ReactElement = _dereq_(
|
|
10526
|
-
var ReactPropTypeLocations = _dereq_(
|
|
10527
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
10528
|
-
var ReactCurrentOwner = _dereq_(
|
|
10635
|
+
var ReactElement = _dereq_(66);
|
|
10636
|
+
var ReactPropTypeLocations = _dereq_(90);
|
|
10637
|
+
var ReactPropTypeLocationNames = _dereq_(89);
|
|
10638
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
10529
10639
|
|
|
10530
|
-
var canDefineProperty = _dereq_(
|
|
10531
|
-
var getIteratorFn = _dereq_(
|
|
10532
|
-
var invariant = _dereq_(
|
|
10533
|
-
var warning = _dereq_(
|
|
10640
|
+
var canDefineProperty = _dereq_(128);
|
|
10641
|
+
var getIteratorFn = _dereq_(139);
|
|
10642
|
+
var invariant = _dereq_(173);
|
|
10643
|
+
var warning = _dereq_(183);
|
|
10534
10644
|
|
|
10535
10645
|
function getDeclarationErrorAddendum() {
|
|
10536
10646
|
if (ReactCurrentOwner.current) {
|
|
@@ -10783,7 +10893,7 @@ var ReactElementValidator = {
|
|
|
10783
10893
|
};
|
|
10784
10894
|
|
|
10785
10895
|
module.exports = ReactElementValidator;
|
|
10786
|
-
},{"
|
|
10896
|
+
},{"128":128,"139":139,"173":173,"183":183,"39":39,"66":66,"89":89,"90":90}],68:[function(_dereq_,module,exports){
|
|
10787
10897
|
/**
|
|
10788
10898
|
* Copyright 2014-present, Facebook, Inc.
|
|
10789
10899
|
* All rights reserved.
|
|
@@ -10814,7 +10924,7 @@ var ReactEmptyComponent = {
|
|
|
10814
10924
|
ReactEmptyComponent.injection = ReactEmptyComponentInjection;
|
|
10815
10925
|
|
|
10816
10926
|
module.exports = ReactEmptyComponent;
|
|
10817
|
-
},{}],
|
|
10927
|
+
},{}],69:[function(_dereq_,module,exports){
|
|
10818
10928
|
/**
|
|
10819
10929
|
* Copyright 2013-present, Facebook, Inc.
|
|
10820
10930
|
* All rights reserved.
|
|
@@ -10891,7 +11001,7 @@ if ("development" !== 'production') {
|
|
|
10891
11001
|
}
|
|
10892
11002
|
|
|
10893
11003
|
module.exports = ReactErrorUtils;
|
|
10894
|
-
},{}],
|
|
11004
|
+
},{}],70:[function(_dereq_,module,exports){
|
|
10895
11005
|
/**
|
|
10896
11006
|
* Copyright 2013-present, Facebook, Inc.
|
|
10897
11007
|
* All rights reserved.
|
|
@@ -10905,7 +11015,7 @@ module.exports = ReactErrorUtils;
|
|
|
10905
11015
|
|
|
10906
11016
|
'use strict';
|
|
10907
11017
|
|
|
10908
|
-
var EventPluginHub = _dereq_(
|
|
11018
|
+
var EventPluginHub = _dereq_(17);
|
|
10909
11019
|
|
|
10910
11020
|
function runEventQueueInBatch(events) {
|
|
10911
11021
|
EventPluginHub.enqueueEvents(events);
|
|
@@ -10925,7 +11035,7 @@ var ReactEventEmitterMixin = {
|
|
|
10925
11035
|
};
|
|
10926
11036
|
|
|
10927
11037
|
module.exports = ReactEventEmitterMixin;
|
|
10928
|
-
},{"
|
|
11038
|
+
},{"17":17}],71:[function(_dereq_,module,exports){
|
|
10929
11039
|
/**
|
|
10930
11040
|
* Copyright 2013-present, Facebook, Inc.
|
|
10931
11041
|
* All rights reserved.
|
|
@@ -10939,16 +11049,16 @@ module.exports = ReactEventEmitterMixin;
|
|
|
10939
11049
|
|
|
10940
11050
|
'use strict';
|
|
10941
11051
|
|
|
10942
|
-
var _assign = _dereq_(
|
|
11052
|
+
var _assign = _dereq_(184);
|
|
10943
11053
|
|
|
10944
|
-
var EventListener = _dereq_(
|
|
10945
|
-
var ExecutionEnvironment = _dereq_(
|
|
10946
|
-
var PooledClass = _dereq_(
|
|
10947
|
-
var ReactDOMComponentTree = _dereq_(
|
|
10948
|
-
var ReactUpdates = _dereq_(
|
|
11054
|
+
var EventListener = _dereq_(158);
|
|
11055
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
11056
|
+
var PooledClass = _dereq_(26);
|
|
11057
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
11058
|
+
var ReactUpdates = _dereq_(104);
|
|
10949
11059
|
|
|
10950
|
-
var getEventTarget = _dereq_(
|
|
10951
|
-
var getUnboundedScrollPosition = _dereq_(
|
|
11060
|
+
var getEventTarget = _dereq_(138);
|
|
11061
|
+
var getUnboundedScrollPosition = _dereq_(170);
|
|
10952
11062
|
|
|
10953
11063
|
/**
|
|
10954
11064
|
* Find the deepest React component completely containing the root of the
|
|
@@ -11083,7 +11193,7 @@ var ReactEventListener = {
|
|
|
11083
11193
|
};
|
|
11084
11194
|
|
|
11085
11195
|
module.exports = ReactEventListener;
|
|
11086
|
-
},{"
|
|
11196
|
+
},{"104":104,"138":138,"158":158,"159":159,"170":170,"184":184,"26":26,"44":44}],72:[function(_dereq_,module,exports){
|
|
11087
11197
|
/**
|
|
11088
11198
|
* Copyright 2013-present, Facebook, Inc.
|
|
11089
11199
|
* All rights reserved.
|
|
@@ -11105,7 +11215,7 @@ var ReactFeatureFlags = {
|
|
|
11105
11215
|
};
|
|
11106
11216
|
|
|
11107
11217
|
module.exports = ReactFeatureFlags;
|
|
11108
|
-
},{}],
|
|
11218
|
+
},{}],73:[function(_dereq_,module,exports){
|
|
11109
11219
|
/**
|
|
11110
11220
|
* Copyright 2015-present, Facebook, Inc.
|
|
11111
11221
|
* All rights reserved.
|
|
@@ -11119,12 +11229,12 @@ module.exports = ReactFeatureFlags;
|
|
|
11119
11229
|
|
|
11120
11230
|
'use strict';
|
|
11121
11231
|
|
|
11122
|
-
var ReactChildren = _dereq_(
|
|
11123
|
-
var ReactElement = _dereq_(
|
|
11232
|
+
var ReactChildren = _dereq_(32);
|
|
11233
|
+
var ReactElement = _dereq_(66);
|
|
11124
11234
|
|
|
11125
|
-
var emptyFunction = _dereq_(
|
|
11126
|
-
var invariant = _dereq_(
|
|
11127
|
-
var warning = _dereq_(
|
|
11235
|
+
var emptyFunction = _dereq_(165);
|
|
11236
|
+
var invariant = _dereq_(173);
|
|
11237
|
+
var warning = _dereq_(183);
|
|
11128
11238
|
|
|
11129
11239
|
/**
|
|
11130
11240
|
* We used to allow keyed objects to serve as a collection of ReactElements,
|
|
@@ -11170,7 +11280,7 @@ var ReactFragment = {
|
|
|
11170
11280
|
};
|
|
11171
11281
|
|
|
11172
11282
|
module.exports = ReactFragment;
|
|
11173
|
-
},{"
|
|
11283
|
+
},{"165":165,"173":173,"183":183,"32":32,"66":66}],74:[function(_dereq_,module,exports){
|
|
11174
11284
|
/**
|
|
11175
11285
|
* Copyright 2013-present, Facebook, Inc.
|
|
11176
11286
|
* All rights reserved.
|
|
@@ -11185,15 +11295,15 @@ module.exports = ReactFragment;
|
|
|
11185
11295
|
'use strict';
|
|
11186
11296
|
|
|
11187
11297
|
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_(
|
|
11298
|
+
var EventPluginHub = _dereq_(17);
|
|
11299
|
+
var EventPluginUtils = _dereq_(19);
|
|
11300
|
+
var ReactComponentEnvironment = _dereq_(36);
|
|
11301
|
+
var ReactClass = _dereq_(33);
|
|
11302
|
+
var ReactEmptyComponent = _dereq_(68);
|
|
11303
|
+
var ReactBrowserEventEmitter = _dereq_(28);
|
|
11304
|
+
var ReactNativeComponent = _dereq_(84);
|
|
11305
|
+
var ReactPerf = _dereq_(88);
|
|
11306
|
+
var ReactUpdates = _dereq_(104);
|
|
11197
11307
|
|
|
11198
11308
|
var ReactInjection = {
|
|
11199
11309
|
Component: ReactComponentEnvironment.injection,
|
|
@@ -11209,7 +11319,7 @@ var ReactInjection = {
|
|
|
11209
11319
|
};
|
|
11210
11320
|
|
|
11211
11321
|
module.exports = ReactInjection;
|
|
11212
|
-
},{"10":10,"
|
|
11322
|
+
},{"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
11323
|
/**
|
|
11214
11324
|
* Copyright 2013-present, Facebook, Inc.
|
|
11215
11325
|
* All rights reserved.
|
|
@@ -11223,11 +11333,11 @@ module.exports = ReactInjection;
|
|
|
11223
11333
|
|
|
11224
11334
|
'use strict';
|
|
11225
11335
|
|
|
11226
|
-
var ReactDOMSelection = _dereq_(
|
|
11336
|
+
var ReactDOMSelection = _dereq_(55);
|
|
11227
11337
|
|
|
11228
|
-
var containsNode = _dereq_(
|
|
11229
|
-
var focusNode = _dereq_(
|
|
11230
|
-
var getActiveElement = _dereq_(
|
|
11338
|
+
var containsNode = _dereq_(162);
|
|
11339
|
+
var focusNode = _dereq_(167);
|
|
11340
|
+
var getActiveElement = _dereq_(168);
|
|
11231
11341
|
|
|
11232
11342
|
function isInDocument(node) {
|
|
11233
11343
|
return containsNode(document.documentElement, node);
|
|
@@ -11334,7 +11444,7 @@ var ReactInputSelection = {
|
|
|
11334
11444
|
};
|
|
11335
11445
|
|
|
11336
11446
|
module.exports = ReactInputSelection;
|
|
11337
|
-
},{"
|
|
11447
|
+
},{"162":162,"167":167,"168":168,"55":55}],76:[function(_dereq_,module,exports){
|
|
11338
11448
|
/**
|
|
11339
11449
|
* Copyright 2013-present, Facebook, Inc.
|
|
11340
11450
|
* All rights reserved.
|
|
@@ -11383,7 +11493,7 @@ var ReactInstanceMap = {
|
|
|
11383
11493
|
};
|
|
11384
11494
|
|
|
11385
11495
|
module.exports = ReactInstanceMap;
|
|
11386
|
-
},{}],
|
|
11496
|
+
},{}],77:[function(_dereq_,module,exports){
|
|
11387
11497
|
/**
|
|
11388
11498
|
* Copyright 2016-present, Facebook, Inc.
|
|
11389
11499
|
* All rights reserved.
|
|
@@ -11397,10 +11507,10 @@ module.exports = ReactInstanceMap;
|
|
|
11397
11507
|
|
|
11398
11508
|
'use strict';
|
|
11399
11509
|
|
|
11400
|
-
var ReactDebugTool = _dereq_(
|
|
11510
|
+
var ReactDebugTool = _dereq_(61);
|
|
11401
11511
|
|
|
11402
11512
|
module.exports = { debugTool: ReactDebugTool };
|
|
11403
|
-
},{"
|
|
11513
|
+
},{"61":61}],78:[function(_dereq_,module,exports){
|
|
11404
11514
|
/**
|
|
11405
11515
|
* Copyright 2016-present, Facebook, Inc.
|
|
11406
11516
|
* All rights reserved.
|
|
@@ -11414,7 +11524,7 @@ module.exports = { debugTool: ReactDebugTool };
|
|
|
11414
11524
|
|
|
11415
11525
|
'use strict';
|
|
11416
11526
|
|
|
11417
|
-
var warning = _dereq_(
|
|
11527
|
+
var warning = _dereq_(183);
|
|
11418
11528
|
|
|
11419
11529
|
if ("development" !== 'production') {
|
|
11420
11530
|
var processingChildContext = false;
|
|
@@ -11437,7 +11547,7 @@ var ReactInvalidSetStateWarningDevTool = {
|
|
|
11437
11547
|
};
|
|
11438
11548
|
|
|
11439
11549
|
module.exports = ReactInvalidSetStateWarningDevTool;
|
|
11440
|
-
},{"
|
|
11550
|
+
},{"183":183}],79:[function(_dereq_,module,exports){
|
|
11441
11551
|
/**
|
|
11442
11552
|
* Copyright 2013-present, Facebook, Inc.
|
|
11443
11553
|
* All rights reserved.
|
|
@@ -11474,7 +11584,7 @@ module.exports = ReactInvalidSetStateWarningDevTool;
|
|
|
11474
11584
|
* consumption of ReactLink easier; see LinkedValueUtils and LinkedStateMixin.
|
|
11475
11585
|
*/
|
|
11476
11586
|
|
|
11477
|
-
var React = _dereq_(
|
|
11587
|
+
var React = _dereq_(27);
|
|
11478
11588
|
|
|
11479
11589
|
/**
|
|
11480
11590
|
* @param {*} value current value of the link
|
|
@@ -11506,7 +11616,7 @@ ReactLink.PropTypes = {
|
|
|
11506
11616
|
};
|
|
11507
11617
|
|
|
11508
11618
|
module.exports = ReactLink;
|
|
11509
|
-
},{"
|
|
11619
|
+
},{"27":27}],80:[function(_dereq_,module,exports){
|
|
11510
11620
|
/**
|
|
11511
11621
|
* Copyright 2013-present, Facebook, Inc.
|
|
11512
11622
|
* All rights reserved.
|
|
@@ -11520,7 +11630,7 @@ module.exports = ReactLink;
|
|
|
11520
11630
|
|
|
11521
11631
|
'use strict';
|
|
11522
11632
|
|
|
11523
|
-
var adler32 = _dereq_(
|
|
11633
|
+
var adler32 = _dereq_(127);
|
|
11524
11634
|
|
|
11525
11635
|
var TAG_END = /\/?>/;
|
|
11526
11636
|
var COMMENT_START = /^<\!\-\-/;
|
|
@@ -11557,7 +11667,7 @@ var ReactMarkupChecksum = {
|
|
|
11557
11667
|
};
|
|
11558
11668
|
|
|
11559
11669
|
module.exports = ReactMarkupChecksum;
|
|
11560
|
-
},{"
|
|
11670
|
+
},{"127":127}],81:[function(_dereq_,module,exports){
|
|
11561
11671
|
/**
|
|
11562
11672
|
* Copyright 2013-present, Facebook, Inc.
|
|
11563
11673
|
* All rights reserved.
|
|
@@ -11573,26 +11683,26 @@ module.exports = ReactMarkupChecksum;
|
|
|
11573
11683
|
|
|
11574
11684
|
var DOMLazyTree = _dereq_(8);
|
|
11575
11685
|
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_(
|
|
11686
|
+
var ReactBrowserEventEmitter = _dereq_(28);
|
|
11687
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
11688
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
11689
|
+
var ReactDOMContainerInfo = _dereq_(45);
|
|
11690
|
+
var ReactDOMFeatureFlags = _dereq_(49);
|
|
11691
|
+
var ReactElement = _dereq_(66);
|
|
11692
|
+
var ReactFeatureFlags = _dereq_(72);
|
|
11693
|
+
var ReactInstrumentation = _dereq_(77);
|
|
11694
|
+
var ReactMarkupChecksum = _dereq_(80);
|
|
11695
|
+
var ReactPerf = _dereq_(88);
|
|
11696
|
+
var ReactReconciler = _dereq_(93);
|
|
11697
|
+
var ReactUpdateQueue = _dereq_(103);
|
|
11698
|
+
var ReactUpdates = _dereq_(104);
|
|
11699
|
+
|
|
11700
|
+
var emptyObject = _dereq_(166);
|
|
11701
|
+
var instantiateReactComponent = _dereq_(144);
|
|
11702
|
+
var invariant = _dereq_(173);
|
|
11703
|
+
var setInnerHTML = _dereq_(150);
|
|
11704
|
+
var shouldUpdateReactComponent = _dereq_(153);
|
|
11705
|
+
var warning = _dereq_(183);
|
|
11596
11706
|
|
|
11597
11707
|
var ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;
|
|
11598
11708
|
var ROOT_ATTR_NAME = DOMProperty.ROOT_ATTRIBUTE_NAME;
|
|
@@ -12036,7 +12146,7 @@ ReactPerf.measureMethods(ReactMount, 'ReactMount', {
|
|
|
12036
12146
|
});
|
|
12037
12147
|
|
|
12038
12148
|
module.exports = ReactMount;
|
|
12039
|
-
},{"10":10,"
|
|
12149
|
+
},{"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
12150
|
/**
|
|
12041
12151
|
* Copyright 2013-present, Facebook, Inc.
|
|
12042
12152
|
* All rights reserved.
|
|
@@ -12050,15 +12160,15 @@ module.exports = ReactMount;
|
|
|
12050
12160
|
|
|
12051
12161
|
'use strict';
|
|
12052
12162
|
|
|
12053
|
-
var ReactComponentEnvironment = _dereq_(
|
|
12054
|
-
var ReactMultiChildUpdateTypes = _dereq_(
|
|
12163
|
+
var ReactComponentEnvironment = _dereq_(36);
|
|
12164
|
+
var ReactMultiChildUpdateTypes = _dereq_(83);
|
|
12055
12165
|
|
|
12056
|
-
var ReactCurrentOwner = _dereq_(
|
|
12057
|
-
var ReactReconciler = _dereq_(
|
|
12058
|
-
var ReactChildReconciler = _dereq_(
|
|
12166
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
12167
|
+
var ReactReconciler = _dereq_(93);
|
|
12168
|
+
var ReactChildReconciler = _dereq_(31);
|
|
12059
12169
|
|
|
12060
|
-
var flattenChildren = _dereq_(
|
|
12061
|
-
var invariant = _dereq_(
|
|
12170
|
+
var flattenChildren = _dereq_(133);
|
|
12171
|
+
var invariant = _dereq_(173);
|
|
12062
12172
|
|
|
12063
12173
|
/**
|
|
12064
12174
|
* Make an update for markup to be rendered and inserted at a supplied index.
|
|
@@ -12439,7 +12549,7 @@ var ReactMultiChild = {
|
|
|
12439
12549
|
};
|
|
12440
12550
|
|
|
12441
12551
|
module.exports = ReactMultiChild;
|
|
12442
|
-
},{"
|
|
12552
|
+
},{"133":133,"173":173,"31":31,"36":36,"39":39,"83":83,"93":93}],83:[function(_dereq_,module,exports){
|
|
12443
12553
|
/**
|
|
12444
12554
|
* Copyright 2013-present, Facebook, Inc.
|
|
12445
12555
|
* All rights reserved.
|
|
@@ -12453,7 +12563,7 @@ module.exports = ReactMultiChild;
|
|
|
12453
12563
|
|
|
12454
12564
|
'use strict';
|
|
12455
12565
|
|
|
12456
|
-
var keyMirror = _dereq_(
|
|
12566
|
+
var keyMirror = _dereq_(176);
|
|
12457
12567
|
|
|
12458
12568
|
/**
|
|
12459
12569
|
* When a component's children are updated, a series of update configuration
|
|
@@ -12472,7 +12582,7 @@ var ReactMultiChildUpdateTypes = keyMirror({
|
|
|
12472
12582
|
});
|
|
12473
12583
|
|
|
12474
12584
|
module.exports = ReactMultiChildUpdateTypes;
|
|
12475
|
-
},{"
|
|
12585
|
+
},{"176":176}],84:[function(_dereq_,module,exports){
|
|
12476
12586
|
/**
|
|
12477
12587
|
* Copyright 2014-present, Facebook, Inc.
|
|
12478
12588
|
* All rights reserved.
|
|
@@ -12486,9 +12596,9 @@ module.exports = ReactMultiChildUpdateTypes;
|
|
|
12486
12596
|
|
|
12487
12597
|
'use strict';
|
|
12488
12598
|
|
|
12489
|
-
var _assign = _dereq_(
|
|
12599
|
+
var _assign = _dereq_(184);
|
|
12490
12600
|
|
|
12491
|
-
var invariant = _dereq_(
|
|
12601
|
+
var invariant = _dereq_(173);
|
|
12492
12602
|
|
|
12493
12603
|
var autoGenerateWrapperClass = null;
|
|
12494
12604
|
var genericComponentClass = null;
|
|
@@ -12568,7 +12678,7 @@ var ReactNativeComponent = {
|
|
|
12568
12678
|
};
|
|
12569
12679
|
|
|
12570
12680
|
module.exports = ReactNativeComponent;
|
|
12571
|
-
},{"
|
|
12681
|
+
},{"173":173,"184":184}],85:[function(_dereq_,module,exports){
|
|
12572
12682
|
/**
|
|
12573
12683
|
* Copyright 2013-present, Facebook, Inc.
|
|
12574
12684
|
* All rights reserved.
|
|
@@ -12582,9 +12692,9 @@ module.exports = ReactNativeComponent;
|
|
|
12582
12692
|
|
|
12583
12693
|
'use strict';
|
|
12584
12694
|
|
|
12585
|
-
var ReactElement = _dereq_(
|
|
12695
|
+
var ReactElement = _dereq_(66);
|
|
12586
12696
|
|
|
12587
|
-
var invariant = _dereq_(
|
|
12697
|
+
var invariant = _dereq_(173);
|
|
12588
12698
|
|
|
12589
12699
|
var ReactNodeTypes = {
|
|
12590
12700
|
NATIVE: 0,
|
|
@@ -12606,7 +12716,7 @@ var ReactNodeTypes = {
|
|
|
12606
12716
|
};
|
|
12607
12717
|
|
|
12608
12718
|
module.exports = ReactNodeTypes;
|
|
12609
|
-
},{"
|
|
12719
|
+
},{"173":173,"66":66}],86:[function(_dereq_,module,exports){
|
|
12610
12720
|
/**
|
|
12611
12721
|
* Copyright 2015-present, Facebook, Inc.
|
|
12612
12722
|
* All rights reserved.
|
|
@@ -12620,7 +12730,7 @@ module.exports = ReactNodeTypes;
|
|
|
12620
12730
|
|
|
12621
12731
|
'use strict';
|
|
12622
12732
|
|
|
12623
|
-
var warning = _dereq_(
|
|
12733
|
+
var warning = _dereq_(183);
|
|
12624
12734
|
|
|
12625
12735
|
function warnTDZ(publicInstance, callerName) {
|
|
12626
12736
|
if ("development" !== 'production') {
|
|
@@ -12702,7 +12812,7 @@ var ReactNoopUpdateQueue = {
|
|
|
12702
12812
|
};
|
|
12703
12813
|
|
|
12704
12814
|
module.exports = ReactNoopUpdateQueue;
|
|
12705
|
-
},{"
|
|
12815
|
+
},{"183":183}],87:[function(_dereq_,module,exports){
|
|
12706
12816
|
/**
|
|
12707
12817
|
* Copyright 2013-present, Facebook, Inc.
|
|
12708
12818
|
* All rights reserved.
|
|
@@ -12716,7 +12826,7 @@ module.exports = ReactNoopUpdateQueue;
|
|
|
12716
12826
|
|
|
12717
12827
|
'use strict';
|
|
12718
12828
|
|
|
12719
|
-
var invariant = _dereq_(
|
|
12829
|
+
var invariant = _dereq_(173);
|
|
12720
12830
|
|
|
12721
12831
|
/**
|
|
12722
12832
|
* ReactOwners are capable of storing references to owned components.
|
|
@@ -12795,7 +12905,7 @@ var ReactOwner = {
|
|
|
12795
12905
|
};
|
|
12796
12906
|
|
|
12797
12907
|
module.exports = ReactOwner;
|
|
12798
|
-
},{"
|
|
12908
|
+
},{"173":173}],88:[function(_dereq_,module,exports){
|
|
12799
12909
|
/**
|
|
12800
12910
|
* Copyright 2013-present, Facebook, Inc.
|
|
12801
12911
|
* All rights reserved.
|
|
@@ -12892,7 +13002,7 @@ function _noMeasure(objName, fnName, func) {
|
|
|
12892
13002
|
}
|
|
12893
13003
|
|
|
12894
13004
|
module.exports = ReactPerf;
|
|
12895
|
-
},{}],
|
|
13005
|
+
},{}],89:[function(_dereq_,module,exports){
|
|
12896
13006
|
/**
|
|
12897
13007
|
* Copyright 2013-present, Facebook, Inc.
|
|
12898
13008
|
* All rights reserved.
|
|
@@ -12917,7 +13027,7 @@ if ("development" !== 'production') {
|
|
|
12917
13027
|
}
|
|
12918
13028
|
|
|
12919
13029
|
module.exports = ReactPropTypeLocationNames;
|
|
12920
|
-
},{}],
|
|
13030
|
+
},{}],90:[function(_dereq_,module,exports){
|
|
12921
13031
|
/**
|
|
12922
13032
|
* Copyright 2013-present, Facebook, Inc.
|
|
12923
13033
|
* All rights reserved.
|
|
@@ -12931,7 +13041,7 @@ module.exports = ReactPropTypeLocationNames;
|
|
|
12931
13041
|
|
|
12932
13042
|
'use strict';
|
|
12933
13043
|
|
|
12934
|
-
var keyMirror = _dereq_(
|
|
13044
|
+
var keyMirror = _dereq_(176);
|
|
12935
13045
|
|
|
12936
13046
|
var ReactPropTypeLocations = keyMirror({
|
|
12937
13047
|
prop: null,
|
|
@@ -12940,7 +13050,7 @@ var ReactPropTypeLocations = keyMirror({
|
|
|
12940
13050
|
});
|
|
12941
13051
|
|
|
12942
13052
|
module.exports = ReactPropTypeLocations;
|
|
12943
|
-
},{"
|
|
13053
|
+
},{"176":176}],91:[function(_dereq_,module,exports){
|
|
12944
13054
|
/**
|
|
12945
13055
|
* Copyright 2013-present, Facebook, Inc.
|
|
12946
13056
|
* All rights reserved.
|
|
@@ -12954,11 +13064,11 @@ module.exports = ReactPropTypeLocations;
|
|
|
12954
13064
|
|
|
12955
13065
|
'use strict';
|
|
12956
13066
|
|
|
12957
|
-
var ReactElement = _dereq_(
|
|
12958
|
-
var ReactPropTypeLocationNames = _dereq_(
|
|
13067
|
+
var ReactElement = _dereq_(66);
|
|
13068
|
+
var ReactPropTypeLocationNames = _dereq_(89);
|
|
12959
13069
|
|
|
12960
|
-
var emptyFunction = _dereq_(
|
|
12961
|
-
var getIteratorFn = _dereq_(
|
|
13070
|
+
var emptyFunction = _dereq_(165);
|
|
13071
|
+
var getIteratorFn = _dereq_(139);
|
|
12962
13072
|
|
|
12963
13073
|
/**
|
|
12964
13074
|
* Collection of methods that allow declaration and validation of props that are
|
|
@@ -13321,7 +13431,7 @@ function getClassName(propValue) {
|
|
|
13321
13431
|
}
|
|
13322
13432
|
|
|
13323
13433
|
module.exports = ReactPropTypes;
|
|
13324
|
-
},{"
|
|
13434
|
+
},{"139":139,"165":165,"66":66,"89":89}],92:[function(_dereq_,module,exports){
|
|
13325
13435
|
/**
|
|
13326
13436
|
* Copyright 2013-present, Facebook, Inc.
|
|
13327
13437
|
* All rights reserved.
|
|
@@ -13335,13 +13445,13 @@ module.exports = ReactPropTypes;
|
|
|
13335
13445
|
|
|
13336
13446
|
'use strict';
|
|
13337
13447
|
|
|
13338
|
-
var _assign = _dereq_(
|
|
13448
|
+
var _assign = _dereq_(184);
|
|
13339
13449
|
|
|
13340
13450
|
var CallbackQueue = _dereq_(5);
|
|
13341
|
-
var PooledClass = _dereq_(
|
|
13342
|
-
var ReactBrowserEventEmitter = _dereq_(
|
|
13343
|
-
var ReactInputSelection = _dereq_(
|
|
13344
|
-
var Transaction = _dereq_(
|
|
13451
|
+
var PooledClass = _dereq_(26);
|
|
13452
|
+
var ReactBrowserEventEmitter = _dereq_(28);
|
|
13453
|
+
var ReactInputSelection = _dereq_(75);
|
|
13454
|
+
var Transaction = _dereq_(124);
|
|
13345
13455
|
|
|
13346
13456
|
/**
|
|
13347
13457
|
* Ensures that, when possible, the selection range (currently selected text
|
|
@@ -13484,7 +13594,7 @@ _assign(ReactReconcileTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
13484
13594
|
PooledClass.addPoolingTo(ReactReconcileTransaction);
|
|
13485
13595
|
|
|
13486
13596
|
module.exports = ReactReconcileTransaction;
|
|
13487
|
-
},{"
|
|
13597
|
+
},{"124":124,"184":184,"26":26,"28":28,"5":5,"75":75}],93:[function(_dereq_,module,exports){
|
|
13488
13598
|
/**
|
|
13489
13599
|
* Copyright 2013-present, Facebook, Inc.
|
|
13490
13600
|
* All rights reserved.
|
|
@@ -13498,8 +13608,8 @@ module.exports = ReactReconcileTransaction;
|
|
|
13498
13608
|
|
|
13499
13609
|
'use strict';
|
|
13500
13610
|
|
|
13501
|
-
var ReactRef = _dereq_(
|
|
13502
|
-
var ReactInstrumentation = _dereq_(
|
|
13611
|
+
var ReactRef = _dereq_(94);
|
|
13612
|
+
var ReactInstrumentation = _dereq_(77);
|
|
13503
13613
|
|
|
13504
13614
|
/**
|
|
13505
13615
|
* Helper to call ReactRef.attachRefs with this composite component, split out
|
|
@@ -13615,7 +13725,7 @@ var ReactReconciler = {
|
|
|
13615
13725
|
};
|
|
13616
13726
|
|
|
13617
13727
|
module.exports = ReactReconciler;
|
|
13618
|
-
},{"
|
|
13728
|
+
},{"77":77,"94":94}],94:[function(_dereq_,module,exports){
|
|
13619
13729
|
/**
|
|
13620
13730
|
* Copyright 2013-present, Facebook, Inc.
|
|
13621
13731
|
* All rights reserved.
|
|
@@ -13629,7 +13739,7 @@ module.exports = ReactReconciler;
|
|
|
13629
13739
|
|
|
13630
13740
|
'use strict';
|
|
13631
13741
|
|
|
13632
|
-
var ReactOwner = _dereq_(
|
|
13742
|
+
var ReactOwner = _dereq_(87);
|
|
13633
13743
|
|
|
13634
13744
|
var ReactRef = {};
|
|
13635
13745
|
|
|
@@ -13694,7 +13804,7 @@ ReactRef.detachRefs = function (instance, element) {
|
|
|
13694
13804
|
};
|
|
13695
13805
|
|
|
13696
13806
|
module.exports = ReactRef;
|
|
13697
|
-
},{"
|
|
13807
|
+
},{"87":87}],95:[function(_dereq_,module,exports){
|
|
13698
13808
|
/**
|
|
13699
13809
|
* Copyright 2014-present, Facebook, Inc.
|
|
13700
13810
|
* All rights reserved.
|
|
@@ -13717,7 +13827,7 @@ var ReactServerBatchingStrategy = {
|
|
|
13717
13827
|
};
|
|
13718
13828
|
|
|
13719
13829
|
module.exports = ReactServerBatchingStrategy;
|
|
13720
|
-
},{}],
|
|
13830
|
+
},{}],96:[function(_dereq_,module,exports){
|
|
13721
13831
|
/**
|
|
13722
13832
|
* Copyright 2013-present, Facebook, Inc.
|
|
13723
13833
|
* All rights reserved.
|
|
@@ -13730,17 +13840,17 @@ module.exports = ReactServerBatchingStrategy;
|
|
|
13730
13840
|
*/
|
|
13731
13841
|
'use strict';
|
|
13732
13842
|
|
|
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_(
|
|
13843
|
+
var ReactDOMContainerInfo = _dereq_(45);
|
|
13844
|
+
var ReactDefaultBatchingStrategy = _dereq_(62);
|
|
13845
|
+
var ReactElement = _dereq_(66);
|
|
13846
|
+
var ReactMarkupChecksum = _dereq_(80);
|
|
13847
|
+
var ReactServerBatchingStrategy = _dereq_(95);
|
|
13848
|
+
var ReactServerRenderingTransaction = _dereq_(97);
|
|
13849
|
+
var ReactUpdates = _dereq_(104);
|
|
13740
13850
|
|
|
13741
|
-
var emptyObject = _dereq_(
|
|
13742
|
-
var instantiateReactComponent = _dereq_(
|
|
13743
|
-
var invariant = _dereq_(
|
|
13851
|
+
var emptyObject = _dereq_(166);
|
|
13852
|
+
var instantiateReactComponent = _dereq_(144);
|
|
13853
|
+
var invariant = _dereq_(173);
|
|
13744
13854
|
|
|
13745
13855
|
/**
|
|
13746
13856
|
* @param {ReactElement} element
|
|
@@ -13783,7 +13893,7 @@ module.exports = {
|
|
|
13783
13893
|
renderToString: renderToString,
|
|
13784
13894
|
renderToStaticMarkup: renderToStaticMarkup
|
|
13785
13895
|
};
|
|
13786
|
-
},{"
|
|
13896
|
+
},{"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
13897
|
/**
|
|
13788
13898
|
* Copyright 2014-present, Facebook, Inc.
|
|
13789
13899
|
* All rights reserved.
|
|
@@ -13797,10 +13907,10 @@ module.exports = {
|
|
|
13797
13907
|
|
|
13798
13908
|
'use strict';
|
|
13799
13909
|
|
|
13800
|
-
var _assign = _dereq_(
|
|
13910
|
+
var _assign = _dereq_(184);
|
|
13801
13911
|
|
|
13802
|
-
var PooledClass = _dereq_(
|
|
13803
|
-
var Transaction = _dereq_(
|
|
13912
|
+
var PooledClass = _dereq_(26);
|
|
13913
|
+
var Transaction = _dereq_(124);
|
|
13804
13914
|
|
|
13805
13915
|
/**
|
|
13806
13916
|
* Executed within the scope of the `Transaction` instance. Consider these as
|
|
@@ -13853,7 +13963,7 @@ _assign(ReactServerRenderingTransaction.prototype, Transaction.Mixin, Mixin);
|
|
|
13853
13963
|
PooledClass.addPoolingTo(ReactServerRenderingTransaction);
|
|
13854
13964
|
|
|
13855
13965
|
module.exports = ReactServerRenderingTransaction;
|
|
13856
|
-
},{"
|
|
13966
|
+
},{"124":124,"184":184,"26":26}],98:[function(_dereq_,module,exports){
|
|
13857
13967
|
/**
|
|
13858
13968
|
* Copyright 2013-present, Facebook, Inc.
|
|
13859
13969
|
* All rights reserved.
|
|
@@ -13958,7 +14068,7 @@ ReactStateSetters.Mixin = {
|
|
|
13958
14068
|
};
|
|
13959
14069
|
|
|
13960
14070
|
module.exports = ReactStateSetters;
|
|
13961
|
-
},{}],
|
|
14071
|
+
},{}],99:[function(_dereq_,module,exports){
|
|
13962
14072
|
/**
|
|
13963
14073
|
* Copyright 2013-present, Facebook, Inc.
|
|
13964
14074
|
* All rights reserved.
|
|
@@ -13972,26 +14082,26 @@ module.exports = ReactStateSetters;
|
|
|
13972
14082
|
|
|
13973
14083
|
'use strict';
|
|
13974
14084
|
|
|
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_(
|
|
14085
|
+
var _assign = _dereq_(184);
|
|
14086
|
+
|
|
14087
|
+
var EventConstants = _dereq_(16);
|
|
14088
|
+
var EventPluginHub = _dereq_(17);
|
|
14089
|
+
var EventPluginRegistry = _dereq_(18);
|
|
14090
|
+
var EventPropagators = _dereq_(20);
|
|
14091
|
+
var React = _dereq_(27);
|
|
14092
|
+
var ReactDefaultInjection = _dereq_(63);
|
|
14093
|
+
var ReactDOM = _dereq_(40);
|
|
14094
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
14095
|
+
var ReactElement = _dereq_(66);
|
|
14096
|
+
var ReactBrowserEventEmitter = _dereq_(28);
|
|
14097
|
+
var ReactCompositeComponent = _dereq_(38);
|
|
14098
|
+
var ReactInstanceMap = _dereq_(76);
|
|
14099
|
+
var ReactUpdates = _dereq_(104);
|
|
14100
|
+
var SyntheticEvent = _dereq_(115);
|
|
14101
|
+
|
|
14102
|
+
var emptyObject = _dereq_(166);
|
|
14103
|
+
var findDOMNode = _dereq_(132);
|
|
14104
|
+
var invariant = _dereq_(173);
|
|
13995
14105
|
|
|
13996
14106
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
13997
14107
|
|
|
@@ -14113,9 +14223,6 @@ var ReactTestUtils = {
|
|
|
14113
14223
|
* @return {array} an array of all the matches.
|
|
14114
14224
|
*/
|
|
14115
14225
|
scryRenderedDOMComponentsWithClass: function (root, classNames) {
|
|
14116
|
-
if (!Array.isArray(classNames)) {
|
|
14117
|
-
classNames = classNames.split(/\s+/);
|
|
14118
|
-
}
|
|
14119
14226
|
return ReactTestUtils.findAllInRenderedTree(root, function (inst) {
|
|
14120
14227
|
if (ReactTestUtils.isDOMComponent(inst)) {
|
|
14121
14228
|
var className = inst.className;
|
|
@@ -14124,6 +14231,11 @@ var ReactTestUtils = {
|
|
|
14124
14231
|
className = inst.getAttribute('class') || '';
|
|
14125
14232
|
}
|
|
14126
14233
|
var classList = className.split(/\s+/);
|
|
14234
|
+
|
|
14235
|
+
if (!Array.isArray(classNames)) {
|
|
14236
|
+
!(classNames !== undefined) ? "development" !== 'production' ? invariant(false, 'TestUtils.scryRenderedDOMComponentsWithClass expects a ' + 'className as a second argument.') : invariant(false) : void 0;
|
|
14237
|
+
classNames = classNames.split(/\s+/);
|
|
14238
|
+
}
|
|
14127
14239
|
return classNames.every(function (name) {
|
|
14128
14240
|
return classList.indexOf(name) !== -1;
|
|
14129
14241
|
});
|
|
@@ -14295,6 +14407,7 @@ var ShallowComponentWrapper = function (element) {
|
|
|
14295
14407
|
this.construct(element);
|
|
14296
14408
|
};
|
|
14297
14409
|
_assign(ShallowComponentWrapper.prototype, ReactCompositeComponent.Mixin, {
|
|
14410
|
+
_constructComponent: ReactCompositeComponent.Mixin._constructComponentWithoutOwner,
|
|
14298
14411
|
_instantiateReactComponent: function (element) {
|
|
14299
14412
|
return new NoopInternalComponent(element);
|
|
14300
14413
|
},
|
|
@@ -14455,7 +14568,7 @@ Object.keys(topLevelTypes).forEach(function (eventType) {
|
|
|
14455
14568
|
});
|
|
14456
14569
|
|
|
14457
14570
|
module.exports = ReactTestUtils;
|
|
14458
|
-
},{"
|
|
14571
|
+
},{"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
14572
|
/**
|
|
14460
14573
|
* Copyright 2013-present, Facebook, Inc.
|
|
14461
14574
|
* All rights reserved.
|
|
@@ -14469,7 +14582,7 @@ module.exports = ReactTestUtils;
|
|
|
14469
14582
|
|
|
14470
14583
|
'use strict';
|
|
14471
14584
|
|
|
14472
|
-
var flattenChildren = _dereq_(
|
|
14585
|
+
var flattenChildren = _dereq_(133);
|
|
14473
14586
|
|
|
14474
14587
|
var ReactTransitionChildMapping = {
|
|
14475
14588
|
/**
|
|
@@ -14553,7 +14666,7 @@ var ReactTransitionChildMapping = {
|
|
|
14553
14666
|
};
|
|
14554
14667
|
|
|
14555
14668
|
module.exports = ReactTransitionChildMapping;
|
|
14556
|
-
},{"
|
|
14669
|
+
},{"133":133}],101:[function(_dereq_,module,exports){
|
|
14557
14670
|
/**
|
|
14558
14671
|
* Copyright 2013-present, Facebook, Inc.
|
|
14559
14672
|
* All rights reserved.
|
|
@@ -14567,9 +14680,9 @@ module.exports = ReactTransitionChildMapping;
|
|
|
14567
14680
|
|
|
14568
14681
|
'use strict';
|
|
14569
14682
|
|
|
14570
|
-
var ExecutionEnvironment = _dereq_(
|
|
14683
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
14571
14684
|
|
|
14572
|
-
var getVendorPrefixedEventName = _dereq_(
|
|
14685
|
+
var getVendorPrefixedEventName = _dereq_(143);
|
|
14573
14686
|
|
|
14574
14687
|
var endEvents = [];
|
|
14575
14688
|
|
|
@@ -14627,7 +14740,7 @@ var ReactTransitionEvents = {
|
|
|
14627
14740
|
};
|
|
14628
14741
|
|
|
14629
14742
|
module.exports = ReactTransitionEvents;
|
|
14630
|
-
},{"
|
|
14743
|
+
},{"143":143,"159":159}],102:[function(_dereq_,module,exports){
|
|
14631
14744
|
/**
|
|
14632
14745
|
* Copyright 2013-present, Facebook, Inc.
|
|
14633
14746
|
* All rights reserved.
|
|
@@ -14641,12 +14754,12 @@ module.exports = ReactTransitionEvents;
|
|
|
14641
14754
|
|
|
14642
14755
|
'use strict';
|
|
14643
14756
|
|
|
14644
|
-
var _assign = _dereq_(
|
|
14757
|
+
var _assign = _dereq_(184);
|
|
14645
14758
|
|
|
14646
|
-
var React = _dereq_(
|
|
14647
|
-
var ReactTransitionChildMapping = _dereq_(
|
|
14759
|
+
var React = _dereq_(27);
|
|
14760
|
+
var ReactTransitionChildMapping = _dereq_(100);
|
|
14648
14761
|
|
|
14649
|
-
var emptyFunction = _dereq_(
|
|
14762
|
+
var emptyFunction = _dereq_(165);
|
|
14650
14763
|
|
|
14651
14764
|
var ReactTransitionGroup = React.createClass({
|
|
14652
14765
|
displayName: 'ReactTransitionGroup',
|
|
@@ -14834,7 +14947,7 @@ var ReactTransitionGroup = React.createClass({
|
|
|
14834
14947
|
});
|
|
14835
14948
|
|
|
14836
14949
|
module.exports = ReactTransitionGroup;
|
|
14837
|
-
},{"
|
|
14950
|
+
},{"100":100,"165":165,"184":184,"27":27}],103:[function(_dereq_,module,exports){
|
|
14838
14951
|
/**
|
|
14839
14952
|
* Copyright 2015-present, Facebook, Inc.
|
|
14840
14953
|
* All rights reserved.
|
|
@@ -14848,12 +14961,12 @@ module.exports = ReactTransitionGroup;
|
|
|
14848
14961
|
|
|
14849
14962
|
'use strict';
|
|
14850
14963
|
|
|
14851
|
-
var ReactCurrentOwner = _dereq_(
|
|
14852
|
-
var ReactInstanceMap = _dereq_(
|
|
14853
|
-
var ReactUpdates = _dereq_(
|
|
14964
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
14965
|
+
var ReactInstanceMap = _dereq_(76);
|
|
14966
|
+
var ReactUpdates = _dereq_(104);
|
|
14854
14967
|
|
|
14855
|
-
var invariant = _dereq_(
|
|
14856
|
-
var warning = _dereq_(
|
|
14968
|
+
var invariant = _dereq_(173);
|
|
14969
|
+
var warning = _dereq_(183);
|
|
14857
14970
|
|
|
14858
14971
|
function enqueueUpdate(internalInstance) {
|
|
14859
14972
|
ReactUpdates.enqueueUpdate(internalInstance);
|
|
@@ -15050,7 +15163,7 @@ var ReactUpdateQueue = {
|
|
|
15050
15163
|
};
|
|
15051
15164
|
|
|
15052
15165
|
module.exports = ReactUpdateQueue;
|
|
15053
|
-
},{"
|
|
15166
|
+
},{"104":104,"173":173,"183":183,"39":39,"76":76}],104:[function(_dereq_,module,exports){
|
|
15054
15167
|
/**
|
|
15055
15168
|
* Copyright 2013-present, Facebook, Inc.
|
|
15056
15169
|
* All rights reserved.
|
|
@@ -15064,16 +15177,16 @@ module.exports = ReactUpdateQueue;
|
|
|
15064
15177
|
|
|
15065
15178
|
'use strict';
|
|
15066
15179
|
|
|
15067
|
-
var _assign = _dereq_(
|
|
15180
|
+
var _assign = _dereq_(184);
|
|
15068
15181
|
|
|
15069
15182
|
var CallbackQueue = _dereq_(5);
|
|
15070
|
-
var PooledClass = _dereq_(
|
|
15071
|
-
var ReactFeatureFlags = _dereq_(
|
|
15072
|
-
var ReactPerf = _dereq_(
|
|
15073
|
-
var ReactReconciler = _dereq_(
|
|
15074
|
-
var Transaction = _dereq_(
|
|
15183
|
+
var PooledClass = _dereq_(26);
|
|
15184
|
+
var ReactFeatureFlags = _dereq_(72);
|
|
15185
|
+
var ReactPerf = _dereq_(88);
|
|
15186
|
+
var ReactReconciler = _dereq_(93);
|
|
15187
|
+
var Transaction = _dereq_(124);
|
|
15075
15188
|
|
|
15076
|
-
var invariant = _dereq_(
|
|
15189
|
+
var invariant = _dereq_(173);
|
|
15077
15190
|
|
|
15078
15191
|
var dirtyComponents = [];
|
|
15079
15192
|
var asapCallbackQueue = CallbackQueue.getPooled();
|
|
@@ -15292,7 +15405,7 @@ var ReactUpdates = {
|
|
|
15292
15405
|
};
|
|
15293
15406
|
|
|
15294
15407
|
module.exports = ReactUpdates;
|
|
15295
|
-
},{"
|
|
15408
|
+
},{"124":124,"173":173,"184":184,"26":26,"5":5,"72":72,"88":88,"93":93}],105:[function(_dereq_,module,exports){
|
|
15296
15409
|
/**
|
|
15297
15410
|
* Copyright 2013-present, Facebook, Inc.
|
|
15298
15411
|
* All rights reserved.
|
|
@@ -15306,8 +15419,8 @@ module.exports = ReactUpdates;
|
|
|
15306
15419
|
|
|
15307
15420
|
'use strict';
|
|
15308
15421
|
|
|
15309
|
-
module.exports = '15.0.2
|
|
15310
|
-
},{}],
|
|
15422
|
+
module.exports = '15.0.2';
|
|
15423
|
+
},{}],106:[function(_dereq_,module,exports){
|
|
15311
15424
|
/**
|
|
15312
15425
|
* Copyright 2013-present, Facebook, Inc.
|
|
15313
15426
|
* All rights reserved.
|
|
@@ -15321,15 +15434,15 @@ module.exports = '15.0.2-alpha.1';
|
|
|
15321
15434
|
|
|
15322
15435
|
'use strict';
|
|
15323
15436
|
|
|
15324
|
-
var LinkedStateMixin = _dereq_(
|
|
15325
|
-
var React = _dereq_(
|
|
15326
|
-
var ReactComponentWithPureRenderMixin = _dereq_(
|
|
15327
|
-
var ReactCSSTransitionGroup = _dereq_(
|
|
15328
|
-
var ReactFragment = _dereq_(
|
|
15329
|
-
var ReactTransitionGroup = _dereq_(
|
|
15437
|
+
var LinkedStateMixin = _dereq_(24);
|
|
15438
|
+
var React = _dereq_(27);
|
|
15439
|
+
var ReactComponentWithPureRenderMixin = _dereq_(37);
|
|
15440
|
+
var ReactCSSTransitionGroup = _dereq_(29);
|
|
15441
|
+
var ReactFragment = _dereq_(73);
|
|
15442
|
+
var ReactTransitionGroup = _dereq_(102);
|
|
15330
15443
|
|
|
15331
|
-
var shallowCompare = _dereq_(
|
|
15332
|
-
var update = _dereq_(
|
|
15444
|
+
var shallowCompare = _dereq_(152);
|
|
15445
|
+
var update = _dereq_(155);
|
|
15333
15446
|
|
|
15334
15447
|
React.addons = {
|
|
15335
15448
|
CSSTransitionGroup: ReactCSSTransitionGroup,
|
|
@@ -15343,12 +15456,12 @@ React.addons = {
|
|
|
15343
15456
|
};
|
|
15344
15457
|
|
|
15345
15458
|
if ("development" !== 'production') {
|
|
15346
|
-
React.addons.Perf = _dereq_(
|
|
15347
|
-
React.addons.TestUtils = _dereq_(
|
|
15459
|
+
React.addons.Perf = _dereq_(64);
|
|
15460
|
+
React.addons.TestUtils = _dereq_(99);
|
|
15348
15461
|
}
|
|
15349
15462
|
|
|
15350
15463
|
module.exports = React;
|
|
15351
|
-
},{"
|
|
15464
|
+
},{"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
15465
|
/**
|
|
15353
15466
|
* Copyright 2013-present, Facebook, Inc.
|
|
15354
15467
|
* All rights reserved.
|
|
@@ -15362,11 +15475,11 @@ module.exports = React;
|
|
|
15362
15475
|
|
|
15363
15476
|
'use strict';
|
|
15364
15477
|
|
|
15365
|
-
var _assign = _dereq_(
|
|
15478
|
+
var _assign = _dereq_(184);
|
|
15366
15479
|
|
|
15367
|
-
var ReactDOM = _dereq_(
|
|
15368
|
-
var ReactDOMServer = _dereq_(
|
|
15369
|
-
var ReactWithAddons = _dereq_(
|
|
15480
|
+
var ReactDOM = _dereq_(40);
|
|
15481
|
+
var ReactDOMServer = _dereq_(56);
|
|
15482
|
+
var ReactWithAddons = _dereq_(106);
|
|
15370
15483
|
|
|
15371
15484
|
// `version` will be added here by ReactIsomorphic.
|
|
15372
15485
|
var ReactWithAddonsUMDEntry = _assign({
|
|
@@ -15375,7 +15488,7 @@ var ReactWithAddonsUMDEntry = _assign({
|
|
|
15375
15488
|
}, ReactWithAddons);
|
|
15376
15489
|
|
|
15377
15490
|
module.exports = ReactWithAddonsUMDEntry;
|
|
15378
|
-
},{"
|
|
15491
|
+
},{"106":106,"184":184,"40":40,"56":56}],108:[function(_dereq_,module,exports){
|
|
15379
15492
|
/**
|
|
15380
15493
|
* Copyright 2013-present, Facebook, Inc.
|
|
15381
15494
|
* All rights reserved.
|
|
@@ -15668,7 +15781,7 @@ var SVGDOMPropertyConfig = {
|
|
|
15668
15781
|
DOMAttributeNames: {}
|
|
15669
15782
|
};
|
|
15670
15783
|
|
|
15671
|
-
Object.keys(ATTRS).
|
|
15784
|
+
Object.keys(ATTRS).forEach(function (key) {
|
|
15672
15785
|
SVGDOMPropertyConfig.Properties[key] = 0;
|
|
15673
15786
|
if (ATTRS[key]) {
|
|
15674
15787
|
SVGDOMPropertyConfig.DOMAttributeNames[key] = ATTRS[key];
|
|
@@ -15676,7 +15789,7 @@ Object.keys(ATTRS).map(function (key) {
|
|
|
15676
15789
|
});
|
|
15677
15790
|
|
|
15678
15791
|
module.exports = SVGDOMPropertyConfig;
|
|
15679
|
-
},{}],
|
|
15792
|
+
},{}],109:[function(_dereq_,module,exports){
|
|
15680
15793
|
/**
|
|
15681
15794
|
* Copyright 2013-present, Facebook, Inc.
|
|
15682
15795
|
* All rights reserved.
|
|
@@ -15690,17 +15803,17 @@ module.exports = SVGDOMPropertyConfig;
|
|
|
15690
15803
|
|
|
15691
15804
|
'use strict';
|
|
15692
15805
|
|
|
15693
|
-
var EventConstants = _dereq_(
|
|
15694
|
-
var EventPropagators = _dereq_(
|
|
15695
|
-
var ExecutionEnvironment = _dereq_(
|
|
15696
|
-
var ReactDOMComponentTree = _dereq_(
|
|
15697
|
-
var ReactInputSelection = _dereq_(
|
|
15698
|
-
var SyntheticEvent = _dereq_(
|
|
15806
|
+
var EventConstants = _dereq_(16);
|
|
15807
|
+
var EventPropagators = _dereq_(20);
|
|
15808
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
15809
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
15810
|
+
var ReactInputSelection = _dereq_(75);
|
|
15811
|
+
var SyntheticEvent = _dereq_(115);
|
|
15699
15812
|
|
|
15700
|
-
var getActiveElement = _dereq_(
|
|
15701
|
-
var isTextInputElement = _dereq_(
|
|
15702
|
-
var keyOf = _dereq_(
|
|
15703
|
-
var shallowEqual = _dereq_(
|
|
15813
|
+
var getActiveElement = _dereq_(168);
|
|
15814
|
+
var isTextInputElement = _dereq_(146);
|
|
15815
|
+
var keyOf = _dereq_(177);
|
|
15816
|
+
var shallowEqual = _dereq_(182);
|
|
15704
15817
|
|
|
15705
15818
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
15706
15819
|
|
|
@@ -15873,7 +15986,7 @@ var SelectEventPlugin = {
|
|
|
15873
15986
|
};
|
|
15874
15987
|
|
|
15875
15988
|
module.exports = SelectEventPlugin;
|
|
15876
|
-
},{"
|
|
15989
|
+
},{"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
15990
|
/**
|
|
15878
15991
|
* Copyright 2013-present, Facebook, Inc.
|
|
15879
15992
|
* All rights reserved.
|
|
@@ -15887,26 +16000,26 @@ module.exports = SelectEventPlugin;
|
|
|
15887
16000
|
|
|
15888
16001
|
'use strict';
|
|
15889
16002
|
|
|
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_(
|
|
16003
|
+
var EventConstants = _dereq_(16);
|
|
16004
|
+
var EventListener = _dereq_(158);
|
|
16005
|
+
var EventPropagators = _dereq_(20);
|
|
16006
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
16007
|
+
var SyntheticAnimationEvent = _dereq_(111);
|
|
16008
|
+
var SyntheticClipboardEvent = _dereq_(112);
|
|
16009
|
+
var SyntheticEvent = _dereq_(115);
|
|
16010
|
+
var SyntheticFocusEvent = _dereq_(116);
|
|
16011
|
+
var SyntheticKeyboardEvent = _dereq_(118);
|
|
16012
|
+
var SyntheticMouseEvent = _dereq_(119);
|
|
16013
|
+
var SyntheticDragEvent = _dereq_(114);
|
|
16014
|
+
var SyntheticTouchEvent = _dereq_(120);
|
|
16015
|
+
var SyntheticTransitionEvent = _dereq_(121);
|
|
16016
|
+
var SyntheticUIEvent = _dereq_(122);
|
|
16017
|
+
var SyntheticWheelEvent = _dereq_(123);
|
|
16018
|
+
|
|
16019
|
+
var emptyFunction = _dereq_(165);
|
|
16020
|
+
var getEventCharCode = _dereq_(135);
|
|
16021
|
+
var invariant = _dereq_(173);
|
|
16022
|
+
var keyOf = _dereq_(177);
|
|
15910
16023
|
|
|
15911
16024
|
var topLevelTypes = EventConstants.topLevelTypes;
|
|
15912
16025
|
|
|
@@ -16501,7 +16614,7 @@ var SimpleEventPlugin = {
|
|
|
16501
16614
|
};
|
|
16502
16615
|
|
|
16503
16616
|
module.exports = SimpleEventPlugin;
|
|
16504
|
-
},{"
|
|
16617
|
+
},{"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
16618
|
/**
|
|
16506
16619
|
* Copyright 2013-present, Facebook, Inc.
|
|
16507
16620
|
* All rights reserved.
|
|
@@ -16515,7 +16628,7 @@ module.exports = SimpleEventPlugin;
|
|
|
16515
16628
|
|
|
16516
16629
|
'use strict';
|
|
16517
16630
|
|
|
16518
|
-
var SyntheticEvent = _dereq_(
|
|
16631
|
+
var SyntheticEvent = _dereq_(115);
|
|
16519
16632
|
|
|
16520
16633
|
/**
|
|
16521
16634
|
* @interface Event
|
|
@@ -16541,7 +16654,7 @@ function SyntheticAnimationEvent(dispatchConfig, dispatchMarker, nativeEvent, na
|
|
|
16541
16654
|
SyntheticEvent.augmentClass(SyntheticAnimationEvent, AnimationEventInterface);
|
|
16542
16655
|
|
|
16543
16656
|
module.exports = SyntheticAnimationEvent;
|
|
16544
|
-
},{"
|
|
16657
|
+
},{"115":115}],112:[function(_dereq_,module,exports){
|
|
16545
16658
|
/**
|
|
16546
16659
|
* Copyright 2013-present, Facebook, Inc.
|
|
16547
16660
|
* All rights reserved.
|
|
@@ -16555,7 +16668,7 @@ module.exports = SyntheticAnimationEvent;
|
|
|
16555
16668
|
|
|
16556
16669
|
'use strict';
|
|
16557
16670
|
|
|
16558
|
-
var SyntheticEvent = _dereq_(
|
|
16671
|
+
var SyntheticEvent = _dereq_(115);
|
|
16559
16672
|
|
|
16560
16673
|
/**
|
|
16561
16674
|
* @interface Event
|
|
@@ -16580,7 +16693,7 @@ function SyntheticClipboardEvent(dispatchConfig, dispatchMarker, nativeEvent, na
|
|
|
16580
16693
|
SyntheticEvent.augmentClass(SyntheticClipboardEvent, ClipboardEventInterface);
|
|
16581
16694
|
|
|
16582
16695
|
module.exports = SyntheticClipboardEvent;
|
|
16583
|
-
},{"
|
|
16696
|
+
},{"115":115}],113:[function(_dereq_,module,exports){
|
|
16584
16697
|
/**
|
|
16585
16698
|
* Copyright 2013-present, Facebook, Inc.
|
|
16586
16699
|
* All rights reserved.
|
|
@@ -16594,7 +16707,7 @@ module.exports = SyntheticClipboardEvent;
|
|
|
16594
16707
|
|
|
16595
16708
|
'use strict';
|
|
16596
16709
|
|
|
16597
|
-
var SyntheticEvent = _dereq_(
|
|
16710
|
+
var SyntheticEvent = _dereq_(115);
|
|
16598
16711
|
|
|
16599
16712
|
/**
|
|
16600
16713
|
* @interface Event
|
|
@@ -16617,7 +16730,7 @@ function SyntheticCompositionEvent(dispatchConfig, dispatchMarker, nativeEvent,
|
|
|
16617
16730
|
SyntheticEvent.augmentClass(SyntheticCompositionEvent, CompositionEventInterface);
|
|
16618
16731
|
|
|
16619
16732
|
module.exports = SyntheticCompositionEvent;
|
|
16620
|
-
},{"
|
|
16733
|
+
},{"115":115}],114:[function(_dereq_,module,exports){
|
|
16621
16734
|
/**
|
|
16622
16735
|
* Copyright 2013-present, Facebook, Inc.
|
|
16623
16736
|
* All rights reserved.
|
|
@@ -16631,7 +16744,7 @@ module.exports = SyntheticCompositionEvent;
|
|
|
16631
16744
|
|
|
16632
16745
|
'use strict';
|
|
16633
16746
|
|
|
16634
|
-
var SyntheticMouseEvent = _dereq_(
|
|
16747
|
+
var SyntheticMouseEvent = _dereq_(119);
|
|
16635
16748
|
|
|
16636
16749
|
/**
|
|
16637
16750
|
* @interface DragEvent
|
|
@@ -16654,7 +16767,7 @@ function SyntheticDragEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeE
|
|
|
16654
16767
|
SyntheticMouseEvent.augmentClass(SyntheticDragEvent, DragEventInterface);
|
|
16655
16768
|
|
|
16656
16769
|
module.exports = SyntheticDragEvent;
|
|
16657
|
-
},{"
|
|
16770
|
+
},{"119":119}],115:[function(_dereq_,module,exports){
|
|
16658
16771
|
/**
|
|
16659
16772
|
* Copyright 2013-present, Facebook, Inc.
|
|
16660
16773
|
* All rights reserved.
|
|
@@ -16668,12 +16781,12 @@ module.exports = SyntheticDragEvent;
|
|
|
16668
16781
|
|
|
16669
16782
|
'use strict';
|
|
16670
16783
|
|
|
16671
|
-
var _assign = _dereq_(
|
|
16784
|
+
var _assign = _dereq_(184);
|
|
16672
16785
|
|
|
16673
|
-
var PooledClass = _dereq_(
|
|
16786
|
+
var PooledClass = _dereq_(26);
|
|
16674
16787
|
|
|
16675
|
-
var emptyFunction = _dereq_(
|
|
16676
|
-
var warning = _dereq_(
|
|
16788
|
+
var emptyFunction = _dereq_(165);
|
|
16789
|
+
var warning = _dereq_(183);
|
|
16677
16790
|
|
|
16678
16791
|
var didWarnForAddedNewProperty = false;
|
|
16679
16792
|
var isProxySupported = typeof Proxy === 'function';
|
|
@@ -16822,7 +16935,7 @@ _assign(SyntheticEvent.prototype, {
|
|
|
16822
16935
|
this[shouldBeReleasedProperties[i]] = null;
|
|
16823
16936
|
}
|
|
16824
16937
|
if ("development" !== 'production') {
|
|
16825
|
-
var noop = _dereq_(
|
|
16938
|
+
var noop = _dereq_(165);
|
|
16826
16939
|
Object.defineProperty(this, 'nativeEvent', getPooledWarningPropertyDefinition('nativeEvent', null));
|
|
16827
16940
|
Object.defineProperty(this, 'preventDefault', getPooledWarningPropertyDefinition('preventDefault', noop));
|
|
16828
16941
|
Object.defineProperty(this, 'stopPropagation', getPooledWarningPropertyDefinition('stopPropagation', noop));
|
|
@@ -16916,7 +17029,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
|
|
|
16916
17029
|
"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
17030
|
}
|
|
16918
17031
|
}
|
|
16919
|
-
},{"
|
|
17032
|
+
},{"165":165,"183":183,"184":184,"26":26}],116:[function(_dereq_,module,exports){
|
|
16920
17033
|
/**
|
|
16921
17034
|
* Copyright 2013-present, Facebook, Inc.
|
|
16922
17035
|
* All rights reserved.
|
|
@@ -16930,7 +17043,7 @@ function getPooledWarningPropertyDefinition(propName, getVal) {
|
|
|
16930
17043
|
|
|
16931
17044
|
'use strict';
|
|
16932
17045
|
|
|
16933
|
-
var SyntheticUIEvent = _dereq_(
|
|
17046
|
+
var SyntheticUIEvent = _dereq_(122);
|
|
16934
17047
|
|
|
16935
17048
|
/**
|
|
16936
17049
|
* @interface FocusEvent
|
|
@@ -16953,7 +17066,7 @@ function SyntheticFocusEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
16953
17066
|
SyntheticUIEvent.augmentClass(SyntheticFocusEvent, FocusEventInterface);
|
|
16954
17067
|
|
|
16955
17068
|
module.exports = SyntheticFocusEvent;
|
|
16956
|
-
},{"
|
|
17069
|
+
},{"122":122}],117:[function(_dereq_,module,exports){
|
|
16957
17070
|
/**
|
|
16958
17071
|
* Copyright 2013-present, Facebook, Inc.
|
|
16959
17072
|
* All rights reserved.
|
|
@@ -16967,7 +17080,7 @@ module.exports = SyntheticFocusEvent;
|
|
|
16967
17080
|
|
|
16968
17081
|
'use strict';
|
|
16969
17082
|
|
|
16970
|
-
var SyntheticEvent = _dereq_(
|
|
17083
|
+
var SyntheticEvent = _dereq_(115);
|
|
16971
17084
|
|
|
16972
17085
|
/**
|
|
16973
17086
|
* @interface Event
|
|
@@ -16991,7 +17104,7 @@ function SyntheticInputEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
16991
17104
|
SyntheticEvent.augmentClass(SyntheticInputEvent, InputEventInterface);
|
|
16992
17105
|
|
|
16993
17106
|
module.exports = SyntheticInputEvent;
|
|
16994
|
-
},{"
|
|
17107
|
+
},{"115":115}],118:[function(_dereq_,module,exports){
|
|
16995
17108
|
/**
|
|
16996
17109
|
* Copyright 2013-present, Facebook, Inc.
|
|
16997
17110
|
* All rights reserved.
|
|
@@ -17005,11 +17118,11 @@ module.exports = SyntheticInputEvent;
|
|
|
17005
17118
|
|
|
17006
17119
|
'use strict';
|
|
17007
17120
|
|
|
17008
|
-
var SyntheticUIEvent = _dereq_(
|
|
17121
|
+
var SyntheticUIEvent = _dereq_(122);
|
|
17009
17122
|
|
|
17010
|
-
var getEventCharCode = _dereq_(
|
|
17011
|
-
var getEventKey = _dereq_(
|
|
17012
|
-
var getEventModifierState = _dereq_(
|
|
17123
|
+
var getEventCharCode = _dereq_(135);
|
|
17124
|
+
var getEventKey = _dereq_(136);
|
|
17125
|
+
var getEventModifierState = _dereq_(137);
|
|
17013
17126
|
|
|
17014
17127
|
/**
|
|
17015
17128
|
* @interface KeyboardEvent
|
|
@@ -17076,7 +17189,7 @@ function SyntheticKeyboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nat
|
|
|
17076
17189
|
SyntheticUIEvent.augmentClass(SyntheticKeyboardEvent, KeyboardEventInterface);
|
|
17077
17190
|
|
|
17078
17191
|
module.exports = SyntheticKeyboardEvent;
|
|
17079
|
-
},{"
|
|
17192
|
+
},{"122":122,"135":135,"136":136,"137":137}],119:[function(_dereq_,module,exports){
|
|
17080
17193
|
/**
|
|
17081
17194
|
* Copyright 2013-present, Facebook, Inc.
|
|
17082
17195
|
* All rights reserved.
|
|
@@ -17090,10 +17203,10 @@ module.exports = SyntheticKeyboardEvent;
|
|
|
17090
17203
|
|
|
17091
17204
|
'use strict';
|
|
17092
17205
|
|
|
17093
|
-
var SyntheticUIEvent = _dereq_(
|
|
17094
|
-
var ViewportMetrics = _dereq_(
|
|
17206
|
+
var SyntheticUIEvent = _dereq_(122);
|
|
17207
|
+
var ViewportMetrics = _dereq_(125);
|
|
17095
17208
|
|
|
17096
|
-
var getEventModifierState = _dereq_(
|
|
17209
|
+
var getEventModifierState = _dereq_(137);
|
|
17097
17210
|
|
|
17098
17211
|
/**
|
|
17099
17212
|
* @interface MouseEvent
|
|
@@ -17149,7 +17262,7 @@ function SyntheticMouseEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
17149
17262
|
SyntheticUIEvent.augmentClass(SyntheticMouseEvent, MouseEventInterface);
|
|
17150
17263
|
|
|
17151
17264
|
module.exports = SyntheticMouseEvent;
|
|
17152
|
-
},{"
|
|
17265
|
+
},{"122":122,"125":125,"137":137}],120:[function(_dereq_,module,exports){
|
|
17153
17266
|
/**
|
|
17154
17267
|
* Copyright 2013-present, Facebook, Inc.
|
|
17155
17268
|
* All rights reserved.
|
|
@@ -17163,9 +17276,9 @@ module.exports = SyntheticMouseEvent;
|
|
|
17163
17276
|
|
|
17164
17277
|
'use strict';
|
|
17165
17278
|
|
|
17166
|
-
var SyntheticUIEvent = _dereq_(
|
|
17279
|
+
var SyntheticUIEvent = _dereq_(122);
|
|
17167
17280
|
|
|
17168
|
-
var getEventModifierState = _dereq_(
|
|
17281
|
+
var getEventModifierState = _dereq_(137);
|
|
17169
17282
|
|
|
17170
17283
|
/**
|
|
17171
17284
|
* @interface TouchEvent
|
|
@@ -17195,7 +17308,7 @@ function SyntheticTouchEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
17195
17308
|
SyntheticUIEvent.augmentClass(SyntheticTouchEvent, TouchEventInterface);
|
|
17196
17309
|
|
|
17197
17310
|
module.exports = SyntheticTouchEvent;
|
|
17198
|
-
},{"
|
|
17311
|
+
},{"122":122,"137":137}],121:[function(_dereq_,module,exports){
|
|
17199
17312
|
/**
|
|
17200
17313
|
* Copyright 2013-present, Facebook, Inc.
|
|
17201
17314
|
* All rights reserved.
|
|
@@ -17209,7 +17322,7 @@ module.exports = SyntheticTouchEvent;
|
|
|
17209
17322
|
|
|
17210
17323
|
'use strict';
|
|
17211
17324
|
|
|
17212
|
-
var SyntheticEvent = _dereq_(
|
|
17325
|
+
var SyntheticEvent = _dereq_(115);
|
|
17213
17326
|
|
|
17214
17327
|
/**
|
|
17215
17328
|
* @interface Event
|
|
@@ -17235,7 +17348,7 @@ function SyntheticTransitionEvent(dispatchConfig, dispatchMarker, nativeEvent, n
|
|
|
17235
17348
|
SyntheticEvent.augmentClass(SyntheticTransitionEvent, TransitionEventInterface);
|
|
17236
17349
|
|
|
17237
17350
|
module.exports = SyntheticTransitionEvent;
|
|
17238
|
-
},{"
|
|
17351
|
+
},{"115":115}],122:[function(_dereq_,module,exports){
|
|
17239
17352
|
/**
|
|
17240
17353
|
* Copyright 2013-present, Facebook, Inc.
|
|
17241
17354
|
* All rights reserved.
|
|
@@ -17249,9 +17362,9 @@ module.exports = SyntheticTransitionEvent;
|
|
|
17249
17362
|
|
|
17250
17363
|
'use strict';
|
|
17251
17364
|
|
|
17252
|
-
var SyntheticEvent = _dereq_(
|
|
17365
|
+
var SyntheticEvent = _dereq_(115);
|
|
17253
17366
|
|
|
17254
|
-
var getEventTarget = _dereq_(
|
|
17367
|
+
var getEventTarget = _dereq_(138);
|
|
17255
17368
|
|
|
17256
17369
|
/**
|
|
17257
17370
|
* @interface UIEvent
|
|
@@ -17295,7 +17408,7 @@ function SyntheticUIEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEve
|
|
|
17295
17408
|
SyntheticEvent.augmentClass(SyntheticUIEvent, UIEventInterface);
|
|
17296
17409
|
|
|
17297
17410
|
module.exports = SyntheticUIEvent;
|
|
17298
|
-
},{"
|
|
17411
|
+
},{"115":115,"138":138}],123:[function(_dereq_,module,exports){
|
|
17299
17412
|
/**
|
|
17300
17413
|
* Copyright 2013-present, Facebook, Inc.
|
|
17301
17414
|
* All rights reserved.
|
|
@@ -17309,7 +17422,7 @@ module.exports = SyntheticUIEvent;
|
|
|
17309
17422
|
|
|
17310
17423
|
'use strict';
|
|
17311
17424
|
|
|
17312
|
-
var SyntheticMouseEvent = _dereq_(
|
|
17425
|
+
var SyntheticMouseEvent = _dereq_(119);
|
|
17313
17426
|
|
|
17314
17427
|
/**
|
|
17315
17428
|
* @interface WheelEvent
|
|
@@ -17350,7 +17463,7 @@ function SyntheticWheelEvent(dispatchConfig, dispatchMarker, nativeEvent, native
|
|
|
17350
17463
|
SyntheticMouseEvent.augmentClass(SyntheticWheelEvent, WheelEventInterface);
|
|
17351
17464
|
|
|
17352
17465
|
module.exports = SyntheticWheelEvent;
|
|
17353
|
-
},{"
|
|
17466
|
+
},{"119":119}],124:[function(_dereq_,module,exports){
|
|
17354
17467
|
/**
|
|
17355
17468
|
* Copyright 2013-present, Facebook, Inc.
|
|
17356
17469
|
* All rights reserved.
|
|
@@ -17364,7 +17477,7 @@ module.exports = SyntheticWheelEvent;
|
|
|
17364
17477
|
|
|
17365
17478
|
'use strict';
|
|
17366
17479
|
|
|
17367
|
-
var invariant = _dereq_(
|
|
17480
|
+
var invariant = _dereq_(173);
|
|
17368
17481
|
|
|
17369
17482
|
/**
|
|
17370
17483
|
* `Transaction` creates a black box that is able to wrap any method such that
|
|
@@ -17582,7 +17695,7 @@ var Transaction = {
|
|
|
17582
17695
|
};
|
|
17583
17696
|
|
|
17584
17697
|
module.exports = Transaction;
|
|
17585
|
-
},{"
|
|
17698
|
+
},{"173":173}],125:[function(_dereq_,module,exports){
|
|
17586
17699
|
/**
|
|
17587
17700
|
* Copyright 2013-present, Facebook, Inc.
|
|
17588
17701
|
* All rights reserved.
|
|
@@ -17610,7 +17723,7 @@ var ViewportMetrics = {
|
|
|
17610
17723
|
};
|
|
17611
17724
|
|
|
17612
17725
|
module.exports = ViewportMetrics;
|
|
17613
|
-
},{}],
|
|
17726
|
+
},{}],126:[function(_dereq_,module,exports){
|
|
17614
17727
|
/**
|
|
17615
17728
|
* Copyright 2014-present, Facebook, Inc.
|
|
17616
17729
|
* All rights reserved.
|
|
@@ -17624,7 +17737,7 @@ module.exports = ViewportMetrics;
|
|
|
17624
17737
|
|
|
17625
17738
|
'use strict';
|
|
17626
17739
|
|
|
17627
|
-
var invariant = _dereq_(
|
|
17740
|
+
var invariant = _dereq_(173);
|
|
17628
17741
|
|
|
17629
17742
|
/**
|
|
17630
17743
|
*
|
|
@@ -17670,7 +17783,7 @@ function accumulateInto(current, next) {
|
|
|
17670
17783
|
}
|
|
17671
17784
|
|
|
17672
17785
|
module.exports = accumulateInto;
|
|
17673
|
-
},{"
|
|
17786
|
+
},{"173":173}],127:[function(_dereq_,module,exports){
|
|
17674
17787
|
/**
|
|
17675
17788
|
* Copyright 2013-present, Facebook, Inc.
|
|
17676
17789
|
* All rights reserved.
|
|
@@ -17714,7 +17827,7 @@ function adler32(data) {
|
|
|
17714
17827
|
}
|
|
17715
17828
|
|
|
17716
17829
|
module.exports = adler32;
|
|
17717
|
-
},{}],
|
|
17830
|
+
},{}],128:[function(_dereq_,module,exports){
|
|
17718
17831
|
/**
|
|
17719
17832
|
* Copyright 2013-present, Facebook, Inc.
|
|
17720
17833
|
* All rights reserved.
|
|
@@ -17739,7 +17852,7 @@ if ("development" !== 'production') {
|
|
|
17739
17852
|
}
|
|
17740
17853
|
|
|
17741
17854
|
module.exports = canDefineProperty;
|
|
17742
|
-
},{}],
|
|
17855
|
+
},{}],129:[function(_dereq_,module,exports){
|
|
17743
17856
|
/**
|
|
17744
17857
|
* Copyright 2013-present, Facebook, Inc.
|
|
17745
17858
|
* All rights reserved.
|
|
@@ -17772,7 +17885,7 @@ var createMicrosoftUnsafeLocalFunction = function (func) {
|
|
|
17772
17885
|
};
|
|
17773
17886
|
|
|
17774
17887
|
module.exports = createMicrosoftUnsafeLocalFunction;
|
|
17775
|
-
},{}],
|
|
17888
|
+
},{}],130:[function(_dereq_,module,exports){
|
|
17776
17889
|
/**
|
|
17777
17890
|
* Copyright 2013-present, Facebook, Inc.
|
|
17778
17891
|
* All rights reserved.
|
|
@@ -17787,7 +17900,7 @@ module.exports = createMicrosoftUnsafeLocalFunction;
|
|
|
17787
17900
|
'use strict';
|
|
17788
17901
|
|
|
17789
17902
|
var CSSProperty = _dereq_(3);
|
|
17790
|
-
var warning = _dereq_(
|
|
17903
|
+
var warning = _dereq_(183);
|
|
17791
17904
|
|
|
17792
17905
|
var isUnitlessNumber = CSSProperty.isUnitlessNumber;
|
|
17793
17906
|
var styleWarnings = {};
|
|
@@ -17850,7 +17963,7 @@ function dangerousStyleValue(name, value, component) {
|
|
|
17850
17963
|
}
|
|
17851
17964
|
|
|
17852
17965
|
module.exports = dangerousStyleValue;
|
|
17853
|
-
},{"
|
|
17966
|
+
},{"183":183,"3":3}],131:[function(_dereq_,module,exports){
|
|
17854
17967
|
/**
|
|
17855
17968
|
* Copyright 2013-present, Facebook, Inc.
|
|
17856
17969
|
* All rights reserved.
|
|
@@ -17889,7 +18002,7 @@ function escapeTextContentForBrowser(text) {
|
|
|
17889
18002
|
}
|
|
17890
18003
|
|
|
17891
18004
|
module.exports = escapeTextContentForBrowser;
|
|
17892
|
-
},{}],
|
|
18005
|
+
},{}],132:[function(_dereq_,module,exports){
|
|
17893
18006
|
/**
|
|
17894
18007
|
* Copyright 2013-present, Facebook, Inc.
|
|
17895
18008
|
* All rights reserved.
|
|
@@ -17903,13 +18016,13 @@ module.exports = escapeTextContentForBrowser;
|
|
|
17903
18016
|
|
|
17904
18017
|
'use strict';
|
|
17905
18018
|
|
|
17906
|
-
var ReactCurrentOwner = _dereq_(
|
|
17907
|
-
var ReactDOMComponentTree = _dereq_(
|
|
17908
|
-
var ReactInstanceMap = _dereq_(
|
|
18019
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
18020
|
+
var ReactDOMComponentTree = _dereq_(44);
|
|
18021
|
+
var ReactInstanceMap = _dereq_(76);
|
|
17909
18022
|
|
|
17910
|
-
var getNativeComponentFromComposite = _dereq_(
|
|
17911
|
-
var invariant = _dereq_(
|
|
17912
|
-
var warning = _dereq_(
|
|
18023
|
+
var getNativeComponentFromComposite = _dereq_(140);
|
|
18024
|
+
var invariant = _dereq_(173);
|
|
18025
|
+
var warning = _dereq_(183);
|
|
17913
18026
|
|
|
17914
18027
|
/**
|
|
17915
18028
|
* Returns the DOM node rendered by this element.
|
|
@@ -17946,7 +18059,7 @@ function findDOMNode(componentOrElement) {
|
|
|
17946
18059
|
}
|
|
17947
18060
|
|
|
17948
18061
|
module.exports = findDOMNode;
|
|
17949
|
-
},{"
|
|
18062
|
+
},{"140":140,"173":173,"183":183,"39":39,"44":44,"76":76}],133:[function(_dereq_,module,exports){
|
|
17950
18063
|
/**
|
|
17951
18064
|
* Copyright 2013-present, Facebook, Inc.
|
|
17952
18065
|
* All rights reserved.
|
|
@@ -17960,8 +18073,9 @@ module.exports = findDOMNode;
|
|
|
17960
18073
|
|
|
17961
18074
|
'use strict';
|
|
17962
18075
|
|
|
17963
|
-
var
|
|
17964
|
-
var
|
|
18076
|
+
var KeyEscapeUtils = _dereq_(23);
|
|
18077
|
+
var traverseAllChildren = _dereq_(154);
|
|
18078
|
+
var warning = _dereq_(183);
|
|
17965
18079
|
|
|
17966
18080
|
/**
|
|
17967
18081
|
* @param {function} traverseContext Context passed through traversal.
|
|
@@ -17973,7 +18087,7 @@ function flattenSingleChildIntoContext(traverseContext, child, name) {
|
|
|
17973
18087
|
var result = traverseContext;
|
|
17974
18088
|
var keyUnique = result[name] === undefined;
|
|
17975
18089
|
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;
|
|
18090
|
+
"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
18091
|
}
|
|
17978
18092
|
if (keyUnique && child != null) {
|
|
17979
18093
|
result[name] = child;
|
|
@@ -17995,7 +18109,7 @@ function flattenChildren(children) {
|
|
|
17995
18109
|
}
|
|
17996
18110
|
|
|
17997
18111
|
module.exports = flattenChildren;
|
|
17998
|
-
},{"
|
|
18112
|
+
},{"154":154,"183":183,"23":23}],134:[function(_dereq_,module,exports){
|
|
17999
18113
|
/**
|
|
18000
18114
|
* Copyright 2013-present, Facebook, Inc.
|
|
18001
18115
|
* All rights reserved.
|
|
@@ -18026,7 +18140,7 @@ var forEachAccumulated = function (arr, cb, scope) {
|
|
|
18026
18140
|
};
|
|
18027
18141
|
|
|
18028
18142
|
module.exports = forEachAccumulated;
|
|
18029
|
-
},{}],
|
|
18143
|
+
},{}],135:[function(_dereq_,module,exports){
|
|
18030
18144
|
/**
|
|
18031
18145
|
* Copyright 2013-present, Facebook, Inc.
|
|
18032
18146
|
* All rights reserved.
|
|
@@ -18077,7 +18191,7 @@ function getEventCharCode(nativeEvent) {
|
|
|
18077
18191
|
}
|
|
18078
18192
|
|
|
18079
18193
|
module.exports = getEventCharCode;
|
|
18080
|
-
},{}],
|
|
18194
|
+
},{}],136:[function(_dereq_,module,exports){
|
|
18081
18195
|
/**
|
|
18082
18196
|
* Copyright 2013-present, Facebook, Inc.
|
|
18083
18197
|
* All rights reserved.
|
|
@@ -18091,7 +18205,7 @@ module.exports = getEventCharCode;
|
|
|
18091
18205
|
|
|
18092
18206
|
'use strict';
|
|
18093
18207
|
|
|
18094
|
-
var getEventCharCode = _dereq_(
|
|
18208
|
+
var getEventCharCode = _dereq_(135);
|
|
18095
18209
|
|
|
18096
18210
|
/**
|
|
18097
18211
|
* Normalization of deprecated HTML5 `key` values
|
|
@@ -18180,7 +18294,7 @@ function getEventKey(nativeEvent) {
|
|
|
18180
18294
|
}
|
|
18181
18295
|
|
|
18182
18296
|
module.exports = getEventKey;
|
|
18183
|
-
},{"
|
|
18297
|
+
},{"135":135}],137:[function(_dereq_,module,exports){
|
|
18184
18298
|
/**
|
|
18185
18299
|
* Copyright 2013-present, Facebook, Inc.
|
|
18186
18300
|
* All rights reserved.
|
|
@@ -18224,7 +18338,7 @@ function getEventModifierState(nativeEvent) {
|
|
|
18224
18338
|
}
|
|
18225
18339
|
|
|
18226
18340
|
module.exports = getEventModifierState;
|
|
18227
|
-
},{}],
|
|
18341
|
+
},{}],138:[function(_dereq_,module,exports){
|
|
18228
18342
|
/**
|
|
18229
18343
|
* Copyright 2013-present, Facebook, Inc.
|
|
18230
18344
|
* All rights reserved.
|
|
@@ -18260,7 +18374,7 @@ function getEventTarget(nativeEvent) {
|
|
|
18260
18374
|
}
|
|
18261
18375
|
|
|
18262
18376
|
module.exports = getEventTarget;
|
|
18263
|
-
},{}],
|
|
18377
|
+
},{}],139:[function(_dereq_,module,exports){
|
|
18264
18378
|
/**
|
|
18265
18379
|
* Copyright 2013-present, Facebook, Inc.
|
|
18266
18380
|
* All rights reserved.
|
|
@@ -18301,7 +18415,7 @@ function getIteratorFn(maybeIterable) {
|
|
|
18301
18415
|
}
|
|
18302
18416
|
|
|
18303
18417
|
module.exports = getIteratorFn;
|
|
18304
|
-
},{}],
|
|
18418
|
+
},{}],140:[function(_dereq_,module,exports){
|
|
18305
18419
|
/**
|
|
18306
18420
|
* Copyright 2013-present, Facebook, Inc.
|
|
18307
18421
|
* All rights reserved.
|
|
@@ -18315,7 +18429,7 @@ module.exports = getIteratorFn;
|
|
|
18315
18429
|
|
|
18316
18430
|
'use strict';
|
|
18317
18431
|
|
|
18318
|
-
var ReactNodeTypes = _dereq_(
|
|
18432
|
+
var ReactNodeTypes = _dereq_(85);
|
|
18319
18433
|
|
|
18320
18434
|
function getNativeComponentFromComposite(inst) {
|
|
18321
18435
|
var type;
|
|
@@ -18332,7 +18446,7 @@ function getNativeComponentFromComposite(inst) {
|
|
|
18332
18446
|
}
|
|
18333
18447
|
|
|
18334
18448
|
module.exports = getNativeComponentFromComposite;
|
|
18335
|
-
},{"
|
|
18449
|
+
},{"85":85}],141:[function(_dereq_,module,exports){
|
|
18336
18450
|
/**
|
|
18337
18451
|
* Copyright 2013-present, Facebook, Inc.
|
|
18338
18452
|
* All rights reserved.
|
|
@@ -18407,7 +18521,7 @@ function getNodeForCharacterOffset(root, offset) {
|
|
|
18407
18521
|
}
|
|
18408
18522
|
|
|
18409
18523
|
module.exports = getNodeForCharacterOffset;
|
|
18410
|
-
},{}],
|
|
18524
|
+
},{}],142:[function(_dereq_,module,exports){
|
|
18411
18525
|
/**
|
|
18412
18526
|
* Copyright 2013-present, Facebook, Inc.
|
|
18413
18527
|
* All rights reserved.
|
|
@@ -18421,7 +18535,7 @@ module.exports = getNodeForCharacterOffset;
|
|
|
18421
18535
|
|
|
18422
18536
|
'use strict';
|
|
18423
18537
|
|
|
18424
|
-
var ExecutionEnvironment = _dereq_(
|
|
18538
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
18425
18539
|
|
|
18426
18540
|
var contentKey = null;
|
|
18427
18541
|
|
|
@@ -18441,7 +18555,7 @@ function getTextContentAccessor() {
|
|
|
18441
18555
|
}
|
|
18442
18556
|
|
|
18443
18557
|
module.exports = getTextContentAccessor;
|
|
18444
|
-
},{"
|
|
18558
|
+
},{"159":159}],143:[function(_dereq_,module,exports){
|
|
18445
18559
|
/**
|
|
18446
18560
|
* Copyright 2013-present, Facebook, Inc.
|
|
18447
18561
|
* All rights reserved.
|
|
@@ -18455,7 +18569,7 @@ module.exports = getTextContentAccessor;
|
|
|
18455
18569
|
|
|
18456
18570
|
'use strict';
|
|
18457
18571
|
|
|
18458
|
-
var ExecutionEnvironment = _dereq_(
|
|
18572
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
18459
18573
|
|
|
18460
18574
|
/**
|
|
18461
18575
|
* Generate a mapping of standard vendor prefixes using the defined style property and event name.
|
|
@@ -18543,7 +18657,7 @@ function getVendorPrefixedEventName(eventName) {
|
|
|
18543
18657
|
}
|
|
18544
18658
|
|
|
18545
18659
|
module.exports = getVendorPrefixedEventName;
|
|
18546
|
-
},{"
|
|
18660
|
+
},{"159":159}],144:[function(_dereq_,module,exports){
|
|
18547
18661
|
/**
|
|
18548
18662
|
* Copyright 2013-present, Facebook, Inc.
|
|
18549
18663
|
* All rights reserved.
|
|
@@ -18557,14 +18671,14 @@ module.exports = getVendorPrefixedEventName;
|
|
|
18557
18671
|
|
|
18558
18672
|
'use strict';
|
|
18559
18673
|
|
|
18560
|
-
var _assign = _dereq_(
|
|
18674
|
+
var _assign = _dereq_(184);
|
|
18561
18675
|
|
|
18562
|
-
var ReactCompositeComponent = _dereq_(
|
|
18563
|
-
var ReactEmptyComponent = _dereq_(
|
|
18564
|
-
var ReactNativeComponent = _dereq_(
|
|
18676
|
+
var ReactCompositeComponent = _dereq_(38);
|
|
18677
|
+
var ReactEmptyComponent = _dereq_(68);
|
|
18678
|
+
var ReactNativeComponent = _dereq_(84);
|
|
18565
18679
|
|
|
18566
|
-
var invariant = _dereq_(
|
|
18567
|
-
var warning = _dereq_(
|
|
18680
|
+
var invariant = _dereq_(173);
|
|
18681
|
+
var warning = _dereq_(183);
|
|
18568
18682
|
|
|
18569
18683
|
// To avoid a cyclic dependency, we create the final class in this module
|
|
18570
18684
|
var ReactCompositeComponentWrapper = function (element) {
|
|
@@ -18655,7 +18769,7 @@ function instantiateReactComponent(node) {
|
|
|
18655
18769
|
}
|
|
18656
18770
|
|
|
18657
18771
|
module.exports = instantiateReactComponent;
|
|
18658
|
-
},{"
|
|
18772
|
+
},{"173":173,"183":183,"184":184,"38":38,"68":68,"84":84}],145:[function(_dereq_,module,exports){
|
|
18659
18773
|
/**
|
|
18660
18774
|
* Copyright 2013-present, Facebook, Inc.
|
|
18661
18775
|
* All rights reserved.
|
|
@@ -18669,7 +18783,7 @@ module.exports = instantiateReactComponent;
|
|
|
18669
18783
|
|
|
18670
18784
|
'use strict';
|
|
18671
18785
|
|
|
18672
|
-
var ExecutionEnvironment = _dereq_(
|
|
18786
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
18673
18787
|
|
|
18674
18788
|
var useHasFeature;
|
|
18675
18789
|
if (ExecutionEnvironment.canUseDOM) {
|
|
@@ -18716,7 +18830,7 @@ function isEventSupported(eventNameSuffix, capture) {
|
|
|
18716
18830
|
}
|
|
18717
18831
|
|
|
18718
18832
|
module.exports = isEventSupported;
|
|
18719
|
-
},{"
|
|
18833
|
+
},{"159":159}],146:[function(_dereq_,module,exports){
|
|
18720
18834
|
/**
|
|
18721
18835
|
* Copyright 2013-present, Facebook, Inc.
|
|
18722
18836
|
* All rights reserved.
|
|
@@ -18758,7 +18872,7 @@ function isTextInputElement(elem) {
|
|
|
18758
18872
|
}
|
|
18759
18873
|
|
|
18760
18874
|
module.exports = isTextInputElement;
|
|
18761
|
-
},{}],
|
|
18875
|
+
},{}],147:[function(_dereq_,module,exports){
|
|
18762
18876
|
/**
|
|
18763
18877
|
* Copyright 2013-present, Facebook, Inc.
|
|
18764
18878
|
* All rights reserved.
|
|
@@ -18771,9 +18885,9 @@ module.exports = isTextInputElement;
|
|
|
18771
18885
|
*/
|
|
18772
18886
|
'use strict';
|
|
18773
18887
|
|
|
18774
|
-
var ReactElement = _dereq_(
|
|
18888
|
+
var ReactElement = _dereq_(66);
|
|
18775
18889
|
|
|
18776
|
-
var invariant = _dereq_(
|
|
18890
|
+
var invariant = _dereq_(173);
|
|
18777
18891
|
|
|
18778
18892
|
/**
|
|
18779
18893
|
* Returns the first child in a collection of children and verifies that there
|
|
@@ -18783,7 +18897,7 @@ var invariant = _dereq_(171);
|
|
|
18783
18897
|
* of children.
|
|
18784
18898
|
*
|
|
18785
18899
|
* @param {?object} children Child collection structure.
|
|
18786
|
-
* @return {
|
|
18900
|
+
* @return {ReactElement} The first and only `ReactElement` contained in the
|
|
18787
18901
|
* structure.
|
|
18788
18902
|
*/
|
|
18789
18903
|
function onlyChild(children) {
|
|
@@ -18792,7 +18906,7 @@ function onlyChild(children) {
|
|
|
18792
18906
|
}
|
|
18793
18907
|
|
|
18794
18908
|
module.exports = onlyChild;
|
|
18795
|
-
},{"
|
|
18909
|
+
},{"173":173,"66":66}],148:[function(_dereq_,module,exports){
|
|
18796
18910
|
/**
|
|
18797
18911
|
* Copyright 2013-present, Facebook, Inc.
|
|
18798
18912
|
* All rights reserved.
|
|
@@ -18806,7 +18920,7 @@ module.exports = onlyChild;
|
|
|
18806
18920
|
|
|
18807
18921
|
'use strict';
|
|
18808
18922
|
|
|
18809
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
18923
|
+
var escapeTextContentForBrowser = _dereq_(131);
|
|
18810
18924
|
|
|
18811
18925
|
/**
|
|
18812
18926
|
* Escapes attribute value to prevent scripting attacks.
|
|
@@ -18819,7 +18933,7 @@ function quoteAttributeValueForBrowser(value) {
|
|
|
18819
18933
|
}
|
|
18820
18934
|
|
|
18821
18935
|
module.exports = quoteAttributeValueForBrowser;
|
|
18822
|
-
},{"
|
|
18936
|
+
},{"131":131}],149:[function(_dereq_,module,exports){
|
|
18823
18937
|
/**
|
|
18824
18938
|
* Copyright 2013-present, Facebook, Inc.
|
|
18825
18939
|
* All rights reserved.
|
|
@@ -18833,10 +18947,10 @@ module.exports = quoteAttributeValueForBrowser;
|
|
|
18833
18947
|
|
|
18834
18948
|
'use strict';
|
|
18835
18949
|
|
|
18836
|
-
var ReactMount = _dereq_(
|
|
18950
|
+
var ReactMount = _dereq_(81);
|
|
18837
18951
|
|
|
18838
18952
|
module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
18839
|
-
},{"
|
|
18953
|
+
},{"81":81}],150:[function(_dereq_,module,exports){
|
|
18840
18954
|
/**
|
|
18841
18955
|
* Copyright 2013-present, Facebook, Inc.
|
|
18842
18956
|
* All rights reserved.
|
|
@@ -18850,12 +18964,12 @@ module.exports = ReactMount.renderSubtreeIntoContainer;
|
|
|
18850
18964
|
|
|
18851
18965
|
'use strict';
|
|
18852
18966
|
|
|
18853
|
-
var ExecutionEnvironment = _dereq_(
|
|
18967
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
18854
18968
|
|
|
18855
18969
|
var WHITESPACE_TEST = /^[ \r\n\t\f]/;
|
|
18856
18970
|
var NONVISIBLE_TEST = /<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/;
|
|
18857
18971
|
|
|
18858
|
-
var createMicrosoftUnsafeLocalFunction = _dereq_(
|
|
18972
|
+
var createMicrosoftUnsafeLocalFunction = _dereq_(129);
|
|
18859
18973
|
|
|
18860
18974
|
/**
|
|
18861
18975
|
* Set the innerHTML property of a node, ensuring that whitespace is preserved
|
|
@@ -18919,7 +19033,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
18919
19033
|
}
|
|
18920
19034
|
|
|
18921
19035
|
module.exports = setInnerHTML;
|
|
18922
|
-
},{"
|
|
19036
|
+
},{"129":129,"159":159}],151:[function(_dereq_,module,exports){
|
|
18923
19037
|
/**
|
|
18924
19038
|
* Copyright 2013-present, Facebook, Inc.
|
|
18925
19039
|
* All rights reserved.
|
|
@@ -18933,9 +19047,9 @@ module.exports = setInnerHTML;
|
|
|
18933
19047
|
|
|
18934
19048
|
'use strict';
|
|
18935
19049
|
|
|
18936
|
-
var ExecutionEnvironment = _dereq_(
|
|
18937
|
-
var escapeTextContentForBrowser = _dereq_(
|
|
18938
|
-
var setInnerHTML = _dereq_(
|
|
19050
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
19051
|
+
var escapeTextContentForBrowser = _dereq_(131);
|
|
19052
|
+
var setInnerHTML = _dereq_(150);
|
|
18939
19053
|
|
|
18940
19054
|
/**
|
|
18941
19055
|
* Set the textContent property of a node, ensuring that whitespace is preserved
|
|
@@ -18960,7 +19074,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
18960
19074
|
}
|
|
18961
19075
|
|
|
18962
19076
|
module.exports = setTextContent;
|
|
18963
|
-
},{"
|
|
19077
|
+
},{"131":131,"150":150,"159":159}],152:[function(_dereq_,module,exports){
|
|
18964
19078
|
/**
|
|
18965
19079
|
* Copyright 2013-present, Facebook, Inc.
|
|
18966
19080
|
* All rights reserved.
|
|
@@ -18974,7 +19088,7 @@ module.exports = setTextContent;
|
|
|
18974
19088
|
|
|
18975
19089
|
'use strict';
|
|
18976
19090
|
|
|
18977
|
-
var shallowEqual = _dereq_(
|
|
19091
|
+
var shallowEqual = _dereq_(182);
|
|
18978
19092
|
|
|
18979
19093
|
/**
|
|
18980
19094
|
* Does a shallow comparison for props and state.
|
|
@@ -18985,7 +19099,7 @@ function shallowCompare(instance, nextProps, nextState) {
|
|
|
18985
19099
|
}
|
|
18986
19100
|
|
|
18987
19101
|
module.exports = shallowCompare;
|
|
18988
|
-
},{"
|
|
19102
|
+
},{"182":182}],153:[function(_dereq_,module,exports){
|
|
18989
19103
|
/**
|
|
18990
19104
|
* Copyright 2013-present, Facebook, Inc.
|
|
18991
19105
|
* All rights reserved.
|
|
@@ -19028,7 +19142,7 @@ function shouldUpdateReactComponent(prevElement, nextElement) {
|
|
|
19028
19142
|
}
|
|
19029
19143
|
|
|
19030
19144
|
module.exports = shouldUpdateReactComponent;
|
|
19031
|
-
},{}],
|
|
19145
|
+
},{}],154:[function(_dereq_,module,exports){
|
|
19032
19146
|
/**
|
|
19033
19147
|
* Copyright 2013-present, Facebook, Inc.
|
|
19034
19148
|
* All rights reserved.
|
|
@@ -19042,12 +19156,13 @@ module.exports = shouldUpdateReactComponent;
|
|
|
19042
19156
|
|
|
19043
19157
|
'use strict';
|
|
19044
19158
|
|
|
19045
|
-
var ReactCurrentOwner = _dereq_(
|
|
19046
|
-
var ReactElement = _dereq_(
|
|
19159
|
+
var ReactCurrentOwner = _dereq_(39);
|
|
19160
|
+
var ReactElement = _dereq_(66);
|
|
19047
19161
|
|
|
19048
|
-
var getIteratorFn = _dereq_(
|
|
19049
|
-
var invariant = _dereq_(
|
|
19050
|
-
var
|
|
19162
|
+
var getIteratorFn = _dereq_(139);
|
|
19163
|
+
var invariant = _dereq_(173);
|
|
19164
|
+
var KeyEscapeUtils = _dereq_(23);
|
|
19165
|
+
var warning = _dereq_(183);
|
|
19051
19166
|
|
|
19052
19167
|
var SEPARATOR = '.';
|
|
19053
19168
|
var SUBSEPARATOR = ':';
|
|
@@ -19057,19 +19172,8 @@ var SUBSEPARATOR = ':';
|
|
|
19057
19172
|
* pattern.
|
|
19058
19173
|
*/
|
|
19059
19174
|
|
|
19060
|
-
var userProvidedKeyEscaperLookup = {
|
|
19061
|
-
'=': '=0',
|
|
19062
|
-
':': '=2'
|
|
19063
|
-
};
|
|
19064
|
-
|
|
19065
|
-
var userProvidedKeyEscapeRegex = /[=:]/g;
|
|
19066
|
-
|
|
19067
19175
|
var didWarnAboutMaps = false;
|
|
19068
19176
|
|
|
19069
|
-
function userProvidedKeyEscaper(match) {
|
|
19070
|
-
return userProvidedKeyEscaperLookup[match];
|
|
19071
|
-
}
|
|
19072
|
-
|
|
19073
19177
|
/**
|
|
19074
19178
|
* Generate a key string that identifies a component within a set.
|
|
19075
19179
|
*
|
|
@@ -19082,33 +19186,12 @@ function getComponentKey(component, index) {
|
|
|
19082
19186
|
// that we don't block potential future ES APIs.
|
|
19083
19187
|
if (component && typeof component === 'object' && component.key != null) {
|
|
19084
19188
|
// Explicit key
|
|
19085
|
-
return
|
|
19189
|
+
return KeyEscapeUtils.escape(component.key);
|
|
19086
19190
|
}
|
|
19087
19191
|
// Implicit key determined by the index in the set
|
|
19088
19192
|
return index.toString(36);
|
|
19089
19193
|
}
|
|
19090
19194
|
|
|
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
19195
|
/**
|
|
19113
19196
|
* @param {?*} children Children tree container.
|
|
19114
19197
|
* @param {!string} nameSoFar Name of the key path so far.
|
|
@@ -19166,7 +19249,7 @@ function traverseAllChildrenImpl(children, nameSoFar, callback, traverseContext)
|
|
|
19166
19249
|
var entry = step.value;
|
|
19167
19250
|
if (entry) {
|
|
19168
19251
|
child = entry[1];
|
|
19169
|
-
nextName = nextNamePrefix +
|
|
19252
|
+
nextName = nextNamePrefix + KeyEscapeUtils.escape(entry[0]) + SUBSEPARATOR + getComponentKey(child, 0);
|
|
19170
19253
|
subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);
|
|
19171
19254
|
}
|
|
19172
19255
|
}
|
|
@@ -19218,7 +19301,7 @@ function traverseAllChildren(children, callback, traverseContext) {
|
|
|
19218
19301
|
}
|
|
19219
19302
|
|
|
19220
19303
|
module.exports = traverseAllChildren;
|
|
19221
|
-
},{"
|
|
19304
|
+
},{"139":139,"173":173,"183":183,"23":23,"39":39,"66":66}],155:[function(_dereq_,module,exports){
|
|
19222
19305
|
/**
|
|
19223
19306
|
* Copyright 2013-present, Facebook, Inc.
|
|
19224
19307
|
* All rights reserved.
|
|
@@ -19234,10 +19317,10 @@ module.exports = traverseAllChildren;
|
|
|
19234
19317
|
|
|
19235
19318
|
'use strict';
|
|
19236
19319
|
|
|
19237
|
-
var _assign = _dereq_(
|
|
19320
|
+
var _assign = _dereq_(184);
|
|
19238
19321
|
|
|
19239
|
-
var keyOf = _dereq_(
|
|
19240
|
-
var invariant = _dereq_(
|
|
19322
|
+
var keyOf = _dereq_(177);
|
|
19323
|
+
var invariant = _dereq_(173);
|
|
19241
19324
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
19242
19325
|
|
|
19243
19326
|
function shallowCopy(x) {
|
|
@@ -19327,7 +19410,7 @@ function update(value, spec) {
|
|
|
19327
19410
|
}
|
|
19328
19411
|
|
|
19329
19412
|
module.exports = update;
|
|
19330
|
-
},{"
|
|
19413
|
+
},{"173":173,"177":177,"184":184}],156:[function(_dereq_,module,exports){
|
|
19331
19414
|
/**
|
|
19332
19415
|
* Copyright 2015-present, Facebook, Inc.
|
|
19333
19416
|
* All rights reserved.
|
|
@@ -19341,10 +19424,10 @@ module.exports = update;
|
|
|
19341
19424
|
|
|
19342
19425
|
'use strict';
|
|
19343
19426
|
|
|
19344
|
-
var _assign = _dereq_(
|
|
19427
|
+
var _assign = _dereq_(184);
|
|
19345
19428
|
|
|
19346
|
-
var emptyFunction = _dereq_(
|
|
19347
|
-
var warning = _dereq_(
|
|
19429
|
+
var emptyFunction = _dereq_(165);
|
|
19430
|
+
var warning = _dereq_(183);
|
|
19348
19431
|
|
|
19349
19432
|
var validateDOMNesting = emptyFunction;
|
|
19350
19433
|
|
|
@@ -19503,6 +19586,7 @@ if ("development" !== 'production') {
|
|
|
19503
19586
|
case 'rt':
|
|
19504
19587
|
return impliedEndTags.indexOf(parentTag) === -1;
|
|
19505
19588
|
|
|
19589
|
+
case 'body':
|
|
19506
19590
|
case 'caption':
|
|
19507
19591
|
case 'col':
|
|
19508
19592
|
case 'colgroup':
|
|
@@ -19696,7 +19780,7 @@ if ("development" !== 'production') {
|
|
|
19696
19780
|
}
|
|
19697
19781
|
|
|
19698
19782
|
module.exports = validateDOMNesting;
|
|
19699
|
-
},{"
|
|
19783
|
+
},{"165":165,"183":183,"184":184}],157:[function(_dereq_,module,exports){
|
|
19700
19784
|
'use strict';
|
|
19701
19785
|
|
|
19702
19786
|
/**
|
|
@@ -19710,7 +19794,7 @@ module.exports = validateDOMNesting;
|
|
|
19710
19794
|
* @typechecks
|
|
19711
19795
|
*/
|
|
19712
19796
|
|
|
19713
|
-
var invariant = _dereq_(
|
|
19797
|
+
var invariant = _dereq_(173);
|
|
19714
19798
|
|
|
19715
19799
|
/**
|
|
19716
19800
|
* The CSSCore module specifies the API (and implements most of the methods)
|
|
@@ -19818,7 +19902,7 @@ var CSSCore = {
|
|
|
19818
19902
|
};
|
|
19819
19903
|
|
|
19820
19904
|
module.exports = CSSCore;
|
|
19821
|
-
},{"
|
|
19905
|
+
},{"173":173}],158:[function(_dereq_,module,exports){
|
|
19822
19906
|
'use strict';
|
|
19823
19907
|
|
|
19824
19908
|
/**
|
|
@@ -19839,7 +19923,7 @@ module.exports = CSSCore;
|
|
|
19839
19923
|
* @typechecks
|
|
19840
19924
|
*/
|
|
19841
19925
|
|
|
19842
|
-
var emptyFunction = _dereq_(
|
|
19926
|
+
var emptyFunction = _dereq_(165);
|
|
19843
19927
|
|
|
19844
19928
|
/**
|
|
19845
19929
|
* Upstream version of event listener. Does not take into account specific
|
|
@@ -19902,7 +19986,7 @@ var EventListener = {
|
|
|
19902
19986
|
};
|
|
19903
19987
|
|
|
19904
19988
|
module.exports = EventListener;
|
|
19905
|
-
},{"
|
|
19989
|
+
},{"165":165}],159:[function(_dereq_,module,exports){
|
|
19906
19990
|
/**
|
|
19907
19991
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
19908
19992
|
* All rights reserved.
|
|
@@ -19938,7 +20022,7 @@ var ExecutionEnvironment = {
|
|
|
19938
20022
|
};
|
|
19939
20023
|
|
|
19940
20024
|
module.exports = ExecutionEnvironment;
|
|
19941
|
-
},{}],
|
|
20025
|
+
},{}],160:[function(_dereq_,module,exports){
|
|
19942
20026
|
"use strict";
|
|
19943
20027
|
|
|
19944
20028
|
/**
|
|
@@ -19970,7 +20054,7 @@ function camelize(string) {
|
|
|
19970
20054
|
}
|
|
19971
20055
|
|
|
19972
20056
|
module.exports = camelize;
|
|
19973
|
-
},{}],
|
|
20057
|
+
},{}],161:[function(_dereq_,module,exports){
|
|
19974
20058
|
/**
|
|
19975
20059
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
19976
20060
|
* All rights reserved.
|
|
@@ -19984,7 +20068,7 @@ module.exports = camelize;
|
|
|
19984
20068
|
|
|
19985
20069
|
'use strict';
|
|
19986
20070
|
|
|
19987
|
-
var camelize = _dereq_(
|
|
20071
|
+
var camelize = _dereq_(160);
|
|
19988
20072
|
|
|
19989
20073
|
var msPattern = /^-ms-/;
|
|
19990
20074
|
|
|
@@ -20010,7 +20094,7 @@ function camelizeStyleName(string) {
|
|
|
20010
20094
|
}
|
|
20011
20095
|
|
|
20012
20096
|
module.exports = camelizeStyleName;
|
|
20013
|
-
},{"
|
|
20097
|
+
},{"160":160}],162:[function(_dereq_,module,exports){
|
|
20014
20098
|
'use strict';
|
|
20015
20099
|
|
|
20016
20100
|
/**
|
|
@@ -20024,7 +20108,7 @@ module.exports = camelizeStyleName;
|
|
|
20024
20108
|
* @typechecks
|
|
20025
20109
|
*/
|
|
20026
20110
|
|
|
20027
|
-
var isTextNode = _dereq_(
|
|
20111
|
+
var isTextNode = _dereq_(175);
|
|
20028
20112
|
|
|
20029
20113
|
/*eslint-disable no-bitwise */
|
|
20030
20114
|
|
|
@@ -20054,7 +20138,7 @@ function containsNode(outerNode, innerNode) {
|
|
|
20054
20138
|
}
|
|
20055
20139
|
|
|
20056
20140
|
module.exports = containsNode;
|
|
20057
|
-
},{"
|
|
20141
|
+
},{"175":175}],163:[function(_dereq_,module,exports){
|
|
20058
20142
|
'use strict';
|
|
20059
20143
|
|
|
20060
20144
|
/**
|
|
@@ -20068,7 +20152,7 @@ module.exports = containsNode;
|
|
|
20068
20152
|
* @typechecks
|
|
20069
20153
|
*/
|
|
20070
20154
|
|
|
20071
|
-
var invariant = _dereq_(
|
|
20155
|
+
var invariant = _dereq_(173);
|
|
20072
20156
|
|
|
20073
20157
|
/**
|
|
20074
20158
|
* Convert array-like objects to arrays.
|
|
@@ -20181,7 +20265,7 @@ function createArrayFromMixed(obj) {
|
|
|
20181
20265
|
}
|
|
20182
20266
|
|
|
20183
20267
|
module.exports = createArrayFromMixed;
|
|
20184
|
-
},{"
|
|
20268
|
+
},{"173":173}],164:[function(_dereq_,module,exports){
|
|
20185
20269
|
'use strict';
|
|
20186
20270
|
|
|
20187
20271
|
/**
|
|
@@ -20197,11 +20281,11 @@ module.exports = createArrayFromMixed;
|
|
|
20197
20281
|
|
|
20198
20282
|
/*eslint-disable fb-www/unsafe-html*/
|
|
20199
20283
|
|
|
20200
|
-
var ExecutionEnvironment = _dereq_(
|
|
20284
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
20201
20285
|
|
|
20202
|
-
var createArrayFromMixed = _dereq_(
|
|
20203
|
-
var getMarkupWrap = _dereq_(
|
|
20204
|
-
var invariant = _dereq_(
|
|
20286
|
+
var createArrayFromMixed = _dereq_(163);
|
|
20287
|
+
var getMarkupWrap = _dereq_(169);
|
|
20288
|
+
var invariant = _dereq_(173);
|
|
20205
20289
|
|
|
20206
20290
|
/**
|
|
20207
20291
|
* Dummy container used to render all markup.
|
|
@@ -20265,7 +20349,7 @@ function createNodesFromMarkup(markup, handleScript) {
|
|
|
20265
20349
|
}
|
|
20266
20350
|
|
|
20267
20351
|
module.exports = createNodesFromMarkup;
|
|
20268
|
-
},{"
|
|
20352
|
+
},{"159":159,"163":163,"169":169,"173":173}],165:[function(_dereq_,module,exports){
|
|
20269
20353
|
"use strict";
|
|
20270
20354
|
|
|
20271
20355
|
/**
|
|
@@ -20303,7 +20387,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
|
|
|
20303
20387
|
};
|
|
20304
20388
|
|
|
20305
20389
|
module.exports = emptyFunction;
|
|
20306
|
-
},{}],
|
|
20390
|
+
},{}],166:[function(_dereq_,module,exports){
|
|
20307
20391
|
/**
|
|
20308
20392
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20309
20393
|
* All rights reserved.
|
|
@@ -20323,7 +20407,7 @@ if ("development" !== 'production') {
|
|
|
20323
20407
|
}
|
|
20324
20408
|
|
|
20325
20409
|
module.exports = emptyObject;
|
|
20326
|
-
},{}],
|
|
20410
|
+
},{}],167:[function(_dereq_,module,exports){
|
|
20327
20411
|
/**
|
|
20328
20412
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20329
20413
|
* All rights reserved.
|
|
@@ -20350,7 +20434,7 @@ function focusNode(node) {
|
|
|
20350
20434
|
}
|
|
20351
20435
|
|
|
20352
20436
|
module.exports = focusNode;
|
|
20353
|
-
},{}],
|
|
20437
|
+
},{}],168:[function(_dereq_,module,exports){
|
|
20354
20438
|
'use strict';
|
|
20355
20439
|
|
|
20356
20440
|
/**
|
|
@@ -20385,7 +20469,7 @@ function getActiveElement() /*?DOMElement*/{
|
|
|
20385
20469
|
}
|
|
20386
20470
|
|
|
20387
20471
|
module.exports = getActiveElement;
|
|
20388
|
-
},{}],
|
|
20472
|
+
},{}],169:[function(_dereq_,module,exports){
|
|
20389
20473
|
'use strict';
|
|
20390
20474
|
|
|
20391
20475
|
/**
|
|
@@ -20400,9 +20484,9 @@ module.exports = getActiveElement;
|
|
|
20400
20484
|
|
|
20401
20485
|
/*eslint-disable fb-www/unsafe-html */
|
|
20402
20486
|
|
|
20403
|
-
var ExecutionEnvironment = _dereq_(
|
|
20487
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
20404
20488
|
|
|
20405
|
-
var invariant = _dereq_(
|
|
20489
|
+
var invariant = _dereq_(173);
|
|
20406
20490
|
|
|
20407
20491
|
/**
|
|
20408
20492
|
* Dummy container used to detect which wraps are necessary.
|
|
@@ -20480,7 +20564,7 @@ function getMarkupWrap(nodeName) {
|
|
|
20480
20564
|
}
|
|
20481
20565
|
|
|
20482
20566
|
module.exports = getMarkupWrap;
|
|
20483
|
-
},{"
|
|
20567
|
+
},{"159":159,"173":173}],170:[function(_dereq_,module,exports){
|
|
20484
20568
|
/**
|
|
20485
20569
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20486
20570
|
* All rights reserved.
|
|
@@ -20519,7 +20603,7 @@ function getUnboundedScrollPosition(scrollable) {
|
|
|
20519
20603
|
}
|
|
20520
20604
|
|
|
20521
20605
|
module.exports = getUnboundedScrollPosition;
|
|
20522
|
-
},{}],
|
|
20606
|
+
},{}],171:[function(_dereq_,module,exports){
|
|
20523
20607
|
'use strict';
|
|
20524
20608
|
|
|
20525
20609
|
/**
|
|
@@ -20552,7 +20636,7 @@ function hyphenate(string) {
|
|
|
20552
20636
|
}
|
|
20553
20637
|
|
|
20554
20638
|
module.exports = hyphenate;
|
|
20555
|
-
},{}],
|
|
20639
|
+
},{}],172:[function(_dereq_,module,exports){
|
|
20556
20640
|
/**
|
|
20557
20641
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20558
20642
|
* All rights reserved.
|
|
@@ -20566,7 +20650,7 @@ module.exports = hyphenate;
|
|
|
20566
20650
|
|
|
20567
20651
|
'use strict';
|
|
20568
20652
|
|
|
20569
|
-
var hyphenate = _dereq_(
|
|
20653
|
+
var hyphenate = _dereq_(171);
|
|
20570
20654
|
|
|
20571
20655
|
var msPattern = /^ms-/;
|
|
20572
20656
|
|
|
@@ -20591,7 +20675,7 @@ function hyphenateStyleName(string) {
|
|
|
20591
20675
|
}
|
|
20592
20676
|
|
|
20593
20677
|
module.exports = hyphenateStyleName;
|
|
20594
|
-
},{"
|
|
20678
|
+
},{"171":171}],173:[function(_dereq_,module,exports){
|
|
20595
20679
|
/**
|
|
20596
20680
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20597
20681
|
* All rights reserved.
|
|
@@ -20641,7 +20725,7 @@ function invariant(condition, format, a, b, c, d, e, f) {
|
|
|
20641
20725
|
}
|
|
20642
20726
|
|
|
20643
20727
|
module.exports = invariant;
|
|
20644
|
-
},{}],
|
|
20728
|
+
},{}],174:[function(_dereq_,module,exports){
|
|
20645
20729
|
'use strict';
|
|
20646
20730
|
|
|
20647
20731
|
/**
|
|
@@ -20664,7 +20748,7 @@ function isNode(object) {
|
|
|
20664
20748
|
}
|
|
20665
20749
|
|
|
20666
20750
|
module.exports = isNode;
|
|
20667
|
-
},{}],
|
|
20751
|
+
},{}],175:[function(_dereq_,module,exports){
|
|
20668
20752
|
'use strict';
|
|
20669
20753
|
|
|
20670
20754
|
/**
|
|
@@ -20678,7 +20762,7 @@ module.exports = isNode;
|
|
|
20678
20762
|
* @typechecks
|
|
20679
20763
|
*/
|
|
20680
20764
|
|
|
20681
|
-
var isNode = _dereq_(
|
|
20765
|
+
var isNode = _dereq_(174);
|
|
20682
20766
|
|
|
20683
20767
|
/**
|
|
20684
20768
|
* @param {*} object The object to check.
|
|
@@ -20689,7 +20773,7 @@ function isTextNode(object) {
|
|
|
20689
20773
|
}
|
|
20690
20774
|
|
|
20691
20775
|
module.exports = isTextNode;
|
|
20692
|
-
},{"
|
|
20776
|
+
},{"174":174}],176:[function(_dereq_,module,exports){
|
|
20693
20777
|
/**
|
|
20694
20778
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20695
20779
|
* All rights reserved.
|
|
@@ -20703,7 +20787,7 @@ module.exports = isTextNode;
|
|
|
20703
20787
|
|
|
20704
20788
|
'use strict';
|
|
20705
20789
|
|
|
20706
|
-
var invariant = _dereq_(
|
|
20790
|
+
var invariant = _dereq_(173);
|
|
20707
20791
|
|
|
20708
20792
|
/**
|
|
20709
20793
|
* Constructs an enumeration with keys equal to their value.
|
|
@@ -20737,7 +20821,7 @@ var keyMirror = function (obj) {
|
|
|
20737
20821
|
};
|
|
20738
20822
|
|
|
20739
20823
|
module.exports = keyMirror;
|
|
20740
|
-
},{"
|
|
20824
|
+
},{"173":173}],177:[function(_dereq_,module,exports){
|
|
20741
20825
|
"use strict";
|
|
20742
20826
|
|
|
20743
20827
|
/**
|
|
@@ -20772,7 +20856,7 @@ var keyOf = function (oneKeyObj) {
|
|
|
20772
20856
|
};
|
|
20773
20857
|
|
|
20774
20858
|
module.exports = keyOf;
|
|
20775
|
-
},{}],
|
|
20859
|
+
},{}],178:[function(_dereq_,module,exports){
|
|
20776
20860
|
/**
|
|
20777
20861
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20778
20862
|
* All rights reserved.
|
|
@@ -20823,7 +20907,7 @@ function mapObject(object, callback, context) {
|
|
|
20823
20907
|
}
|
|
20824
20908
|
|
|
20825
20909
|
module.exports = mapObject;
|
|
20826
|
-
},{}],
|
|
20910
|
+
},{}],179:[function(_dereq_,module,exports){
|
|
20827
20911
|
/**
|
|
20828
20912
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20829
20913
|
* All rights reserved.
|
|
@@ -20855,7 +20939,7 @@ function memoizeStringOnly(callback) {
|
|
|
20855
20939
|
}
|
|
20856
20940
|
|
|
20857
20941
|
module.exports = memoizeStringOnly;
|
|
20858
|
-
},{}],
|
|
20942
|
+
},{}],180:[function(_dereq_,module,exports){
|
|
20859
20943
|
/**
|
|
20860
20944
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20861
20945
|
* All rights reserved.
|
|
@@ -20869,7 +20953,7 @@ module.exports = memoizeStringOnly;
|
|
|
20869
20953
|
|
|
20870
20954
|
'use strict';
|
|
20871
20955
|
|
|
20872
|
-
var ExecutionEnvironment = _dereq_(
|
|
20956
|
+
var ExecutionEnvironment = _dereq_(159);
|
|
20873
20957
|
|
|
20874
20958
|
var performance;
|
|
20875
20959
|
|
|
@@ -20878,7 +20962,7 @@ if (ExecutionEnvironment.canUseDOM) {
|
|
|
20878
20962
|
}
|
|
20879
20963
|
|
|
20880
20964
|
module.exports = performance || {};
|
|
20881
|
-
},{"
|
|
20965
|
+
},{"159":159}],181:[function(_dereq_,module,exports){
|
|
20882
20966
|
'use strict';
|
|
20883
20967
|
|
|
20884
20968
|
/**
|
|
@@ -20892,7 +20976,7 @@ module.exports = performance || {};
|
|
|
20892
20976
|
* @typechecks
|
|
20893
20977
|
*/
|
|
20894
20978
|
|
|
20895
|
-
var performance = _dereq_(
|
|
20979
|
+
var performance = _dereq_(180);
|
|
20896
20980
|
|
|
20897
20981
|
var performanceNow;
|
|
20898
20982
|
|
|
@@ -20912,7 +20996,7 @@ if (performance.now) {
|
|
|
20912
20996
|
}
|
|
20913
20997
|
|
|
20914
20998
|
module.exports = performanceNow;
|
|
20915
|
-
},{"
|
|
20999
|
+
},{"180":180}],182:[function(_dereq_,module,exports){
|
|
20916
21000
|
/**
|
|
20917
21001
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
20918
21002
|
* All rights reserved.
|
|
@@ -20979,7 +21063,7 @@ function shallowEqual(objA, objB) {
|
|
|
20979
21063
|
}
|
|
20980
21064
|
|
|
20981
21065
|
module.exports = shallowEqual;
|
|
20982
|
-
},{}],
|
|
21066
|
+
},{}],183:[function(_dereq_,module,exports){
|
|
20983
21067
|
/**
|
|
20984
21068
|
* Copyright 2014-2015, Facebook, Inc.
|
|
20985
21069
|
* All rights reserved.
|
|
@@ -20992,7 +21076,7 @@ module.exports = shallowEqual;
|
|
|
20992
21076
|
|
|
20993
21077
|
'use strict';
|
|
20994
21078
|
|
|
20995
|
-
var emptyFunction = _dereq_(
|
|
21079
|
+
var emptyFunction = _dereq_(165);
|
|
20996
21080
|
|
|
20997
21081
|
/**
|
|
20998
21082
|
* Similar to invariant but only logs a warning if the condition is not met.
|
|
@@ -21036,7 +21120,7 @@ if ("development" !== 'production') {
|
|
|
21036
21120
|
}
|
|
21037
21121
|
|
|
21038
21122
|
module.exports = warning;
|
|
21039
|
-
},{"
|
|
21123
|
+
},{"165":165}],184:[function(_dereq_,module,exports){
|
|
21040
21124
|
/* eslint-disable no-unused-vars */
|
|
21041
21125
|
'use strict';
|
|
21042
21126
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -21077,5 +21161,5 @@ module.exports = Object.assign || function (target, source) {
|
|
|
21077
21161
|
return to;
|
|
21078
21162
|
};
|
|
21079
21163
|
|
|
21080
|
-
},{}]},{},[
|
|
21164
|
+
},{}]},{},[107])(107)
|
|
21081
21165
|
});
|